@seamapi/types 1.706.0 → 1.708.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +31 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +29 -0
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +14 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -11805,6 +11805,8 @@ export type Routes = {
|
|
|
11805
11805
|
queryParams: {};
|
|
11806
11806
|
jsonBody: {};
|
|
11807
11807
|
commonParams: {
|
|
11808
|
+
/** IDs of the access grants to retrieve. */
|
|
11809
|
+
access_grant_ids?: string[] | undefined;
|
|
11808
11810
|
/** Customer key for which you want to list access grants. */
|
|
11809
11811
|
customer_key?: string | undefined;
|
|
11810
11812
|
/** Numerical limit on the number of access grants to return. */
|
package/package.json
CHANGED
|
@@ -29900,6 +29900,15 @@ export default {
|
|
|
29900
29900
|
description: 'Gets an Access Grant.',
|
|
29901
29901
|
operationId: 'accessGrantsListGet',
|
|
29902
29902
|
parameters: [
|
|
29903
|
+
{
|
|
29904
|
+
in: 'query',
|
|
29905
|
+
name: 'access_grant_ids',
|
|
29906
|
+
schema: {
|
|
29907
|
+
description: 'IDs of the access grants to retrieve.',
|
|
29908
|
+
items: { format: 'uuid', type: 'string' },
|
|
29909
|
+
type: 'array',
|
|
29910
|
+
},
|
|
29911
|
+
},
|
|
29903
29912
|
{
|
|
29904
29913
|
in: 'query',
|
|
29905
29914
|
name: 'customer_key',
|
|
@@ -30043,6 +30052,11 @@ export default {
|
|
|
30043
30052
|
'application/json': {
|
|
30044
30053
|
schema: {
|
|
30045
30054
|
properties: {
|
|
30055
|
+
access_grant_ids: {
|
|
30056
|
+
description: 'IDs of the access grants to retrieve.',
|
|
30057
|
+
items: { format: 'uuid', type: 'string' },
|
|
30058
|
+
type: 'array',
|
|
30059
|
+
},
|
|
30046
30060
|
access_grant_key: {
|
|
30047
30061
|
description: 'Filter Access Grants by access_grant_key.',
|
|
30048
30062
|
type: 'string',
|
|
@@ -13545,6 +13545,8 @@ export type Routes = {
|
|
|
13545
13545
|
queryParams: {}
|
|
13546
13546
|
jsonBody: {}
|
|
13547
13547
|
commonParams: {
|
|
13548
|
+
/** IDs of the access grants to retrieve. */
|
|
13549
|
+
access_grant_ids?: string[] | undefined
|
|
13548
13550
|
/** Customer key for which you want to list access grants. */
|
|
13549
13551
|
customer_key?: string | undefined
|
|
13550
13552
|
/** Numerical limit on the number of access grants to return. */
|