-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update package-lock * feat: Sign request signer group ID * Update test * Add integration test
- Loading branch information
1 parent
22384ab
commit 11bf5d2
Showing
22 changed files
with
282 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/schemas/shield-information-barrier-reports.generated.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import * as schemas from '.'; | ||
/** | ||
* List of Shield Information Barrier Reports | ||
* | ||
* The part of an API response that describes marker | ||
* based pagination | ||
*/ | ||
export interface ShieldInformationBarrierReports { | ||
/** | ||
* The limit that was used for these entries. This will be the same as the | ||
* `limit` query parameter unless that value exceeded the maximum value | ||
* allowed. The maximum value varies by API. | ||
* Example: 1000 | ||
*/ | ||
limit?: number; | ||
/** | ||
* The marker for the start of the next page of results. | ||
* Example: JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii | ||
*/ | ||
next_marker?: string; | ||
/** | ||
* A list of shield information | ||
* barrier reports. | ||
*/ | ||
entries?: schemas.ShieldInformationBarrierReport[]; | ||
} |
26 changes: 26 additions & 0 deletions
26
src/schemas/shield-information-barrier-segment-members.generated.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import * as schemas from '.'; | ||
/** | ||
* List of Shield Information Barrier Segment Members | ||
* | ||
* The part of an API response that describes marker | ||
* based pagination | ||
*/ | ||
export interface ShieldInformationBarrierSegmentMembers { | ||
/** | ||
* The limit that was used for these entries. This will be the same as the | ||
* `limit` query parameter unless that value exceeded the maximum value | ||
* allowed. The maximum value varies by API. | ||
* Example: 1000 | ||
*/ | ||
limit?: number; | ||
/** | ||
* The marker for the start of the next page of results. | ||
* Example: JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii | ||
*/ | ||
next_marker?: string; | ||
/** | ||
* A list of shield information | ||
* barrier segment members | ||
*/ | ||
entries?: schemas.ShieldInformationBarrierSegmentMember[]; | ||
} |
26 changes: 26 additions & 0 deletions
26
src/schemas/shield-information-barrier-segment-restrictions.generated.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import * as schemas from '.'; | ||
/** | ||
* List of Shield Information Barrier Segment Restrictions | ||
* | ||
* The part of an API response that describes marker | ||
* based pagination | ||
*/ | ||
export interface ShieldInformationBarrierSegmentRestrictions { | ||
/** | ||
* The limit that was used for these entries. This will be the same as the | ||
* `limit` query parameter unless that value exceeded the maximum value | ||
* allowed. The maximum value varies by API. | ||
* Example: 1000 | ||
*/ | ||
limit?: number; | ||
/** | ||
* The marker for the start of the next page of results. | ||
* Example: JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii | ||
*/ | ||
next_marker?: string; | ||
/** | ||
* A list of shield information barrier | ||
* segment restriction objects | ||
*/ | ||
entries?: schemas.ShieldInformationBarrierSegmentRestriction[]; | ||
} |
26 changes: 26 additions & 0 deletions
26
src/schemas/shield-information-barrier-segments.generated.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import * as schemas from '.'; | ||
/** | ||
* List of Shield Information Barrier Segments | ||
* | ||
* The part of an API response that describes marker | ||
* based pagination | ||
*/ | ||
export interface ShieldInformationBarrierSegments { | ||
/** | ||
* The limit that was used for these entries. This will be the same as the | ||
* `limit` query parameter unless that value exceeded the maximum value | ||
* allowed. The maximum value varies by API. | ||
* Example: 1000 | ||
*/ | ||
limit?: number; | ||
/** | ||
* The marker for the start of the next page of results. | ||
* Example: JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii | ||
*/ | ||
next_marker?: string; | ||
/** | ||
* A list of shield information barrier | ||
* segments | ||
*/ | ||
entries?: schemas.ShieldInformationBarrierSegment[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import * as schemas from '.'; | ||
/** | ||
* List of Shield Information Barriers | ||
* | ||
* The part of an API response that describes marker | ||
* based pagination | ||
*/ | ||
export interface ShieldInformationBarriers { | ||
/** | ||
* The limit that was used for these entries. This will be the same as the | ||
* `limit` query parameter unless that value exceeded the maximum value | ||
* allowed. The maximum value varies by API. | ||
* Example: 1000 | ||
*/ | ||
limit?: number; | ||
/** | ||
* The marker for the start of the next page of results. | ||
* Example: JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii | ||
*/ | ||
next_marker?: string; | ||
/** | ||
* A list of shield information barrier objects | ||
*/ | ||
entries?: schemas.ShieldInformationBarrier[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.