@seamapi/types 1.758.0 → 1.759.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 +36 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +54 -0
- package/dist/index.cjs +36 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +41 -0
- package/lib/seam/connect/openapi.js +34 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +13 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +38 -2
- package/src/lib/seam/connect/route-types.ts +13 -0
|
@@ -13055,6 +13055,10 @@ export type Routes = {
|
|
|
13055
13055
|
acs_entrance_id?: string | undefined;
|
|
13056
13056
|
/** Filter unmanaged Access Grants by reservation_key. */
|
|
13057
13057
|
reservation_key?: string | undefined;
|
|
13058
|
+
/** Numerical limit on the number of unmanaged access grants to return. */
|
|
13059
|
+
limit?: number;
|
|
13060
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
13061
|
+
page_cursor?: (string | undefined) | null;
|
|
13058
13062
|
};
|
|
13059
13063
|
formData: {};
|
|
13060
13064
|
jsonResponse: {
|
|
@@ -13207,6 +13211,15 @@ export type Routes = {
|
|
|
13207
13211
|
/** ID of user identity to which the Access Grant gives access. */
|
|
13208
13212
|
user_identity_id?: string | undefined;
|
|
13209
13213
|
}[];
|
|
13214
|
+
/** Information about the current page of results. */
|
|
13215
|
+
pagination: {
|
|
13216
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
13217
|
+
next_page_cursor: string | null;
|
|
13218
|
+
/** Indicates whether there is another page of results after this one. */
|
|
13219
|
+
has_next_page: boolean;
|
|
13220
|
+
/** URL to get the next page of results. */
|
|
13221
|
+
next_page_url: string | null;
|
|
13222
|
+
};
|
|
13210
13223
|
};
|
|
13211
13224
|
maxDuration: undefined;
|
|
13212
13225
|
};
|
package/package.json
CHANGED
|
@@ -36106,6 +36106,27 @@ export default {
|
|
|
36106
36106
|
type: 'string',
|
|
36107
36107
|
},
|
|
36108
36108
|
},
|
|
36109
|
+
{
|
|
36110
|
+
in: 'query',
|
|
36111
|
+
name: 'limit',
|
|
36112
|
+
schema: {
|
|
36113
|
+
default: 500,
|
|
36114
|
+
description:
|
|
36115
|
+
'Numerical limit on the number of unmanaged access grants to return.',
|
|
36116
|
+
format: 'float',
|
|
36117
|
+
type: 'number',
|
|
36118
|
+
},
|
|
36119
|
+
},
|
|
36120
|
+
{
|
|
36121
|
+
in: 'query',
|
|
36122
|
+
name: 'page_cursor',
|
|
36123
|
+
schema: {
|
|
36124
|
+
description:
|
|
36125
|
+
"Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
36126
|
+
nullable: true,
|
|
36127
|
+
type: 'string',
|
|
36128
|
+
},
|
|
36129
|
+
},
|
|
36109
36130
|
],
|
|
36110
36131
|
responses: {
|
|
36111
36132
|
200: {
|
|
@@ -36687,8 +36708,9 @@ export default {
|
|
|
36687
36708
|
type: 'array',
|
|
36688
36709
|
},
|
|
36689
36710
|
ok: { type: 'boolean' },
|
|
36711
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
36690
36712
|
},
|
|
36691
|
-
required: ['access_grants', 'ok'],
|
|
36713
|
+
required: ['access_grants', 'pagination', 'ok'],
|
|
36692
36714
|
type: 'object',
|
|
36693
36715
|
},
|
|
36694
36716
|
},
|
|
@@ -36733,6 +36755,19 @@ export default {
|
|
|
36733
36755
|
format: 'uuid',
|
|
36734
36756
|
type: 'string',
|
|
36735
36757
|
},
|
|
36758
|
+
limit: {
|
|
36759
|
+
default: 500,
|
|
36760
|
+
description:
|
|
36761
|
+
'Numerical limit on the number of unmanaged access grants to return.',
|
|
36762
|
+
format: 'float',
|
|
36763
|
+
type: 'number',
|
|
36764
|
+
},
|
|
36765
|
+
page_cursor: {
|
|
36766
|
+
description:
|
|
36767
|
+
"Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
36768
|
+
nullable: true,
|
|
36769
|
+
type: 'string',
|
|
36770
|
+
},
|
|
36736
36771
|
reservation_key: {
|
|
36737
36772
|
description:
|
|
36738
36773
|
'Filter unmanaged Access Grants by reservation_key.',
|
|
@@ -37330,8 +37365,9 @@ export default {
|
|
|
37330
37365
|
type: 'array',
|
|
37331
37366
|
},
|
|
37332
37367
|
ok: { type: 'boolean' },
|
|
37368
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
37333
37369
|
},
|
|
37334
|
-
required: ['access_grants', 'ok'],
|
|
37370
|
+
required: ['access_grants', 'pagination', 'ok'],
|
|
37335
37371
|
type: 'object',
|
|
37336
37372
|
},
|
|
37337
37373
|
},
|
|
@@ -14984,6 +14984,10 @@ export type Routes = {
|
|
|
14984
14984
|
acs_entrance_id?: string | undefined
|
|
14985
14985
|
/** Filter unmanaged Access Grants by reservation_key. */
|
|
14986
14986
|
reservation_key?: string | undefined
|
|
14987
|
+
/** Numerical limit on the number of unmanaged access grants to return. */
|
|
14988
|
+
limit?: number
|
|
14989
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
14990
|
+
page_cursor?: (string | undefined) | null
|
|
14987
14991
|
}
|
|
14988
14992
|
formData: {}
|
|
14989
14993
|
jsonResponse: {
|
|
@@ -15146,6 +15150,15 @@ export type Routes = {
|
|
|
15146
15150
|
/** ID of user identity to which the Access Grant gives access. */
|
|
15147
15151
|
user_identity_id?: string | undefined
|
|
15148
15152
|
}[]
|
|
15153
|
+
/** Information about the current page of results. */
|
|
15154
|
+
pagination: {
|
|
15155
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
15156
|
+
next_page_cursor: string | null
|
|
15157
|
+
/** Indicates whether there is another page of results after this one. */
|
|
15158
|
+
has_next_page: boolean
|
|
15159
|
+
/** URL to get the next page of results. */
|
|
15160
|
+
next_page_url: string | null
|
|
15161
|
+
}
|
|
15149
15162
|
}
|
|
15150
15163
|
maxDuration: undefined
|
|
15151
15164
|
}
|