@seamapi/types 1.700.0 → 1.701.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 +60 -0
- package/dist/index.cjs +36 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +47 -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
|
@@ -11866,6 +11866,10 @@ export type Routes = {
|
|
|
11866
11866
|
commonParams: {
|
|
11867
11867
|
/** Customer key for which you want to list access grants. */
|
|
11868
11868
|
customer_key?: string | undefined;
|
|
11869
|
+
/** Numerical limit on the number of access grants to return. */
|
|
11870
|
+
limit?: number;
|
|
11871
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
11872
|
+
page_cursor?: (string | undefined) | null;
|
|
11869
11873
|
/** ID of user identity by which you want to filter the list of Access Grants. */
|
|
11870
11874
|
user_identity_id?: string | undefined;
|
|
11871
11875
|
/** ID of the access system by which you want to filter the list of Access Grants. */
|
|
@@ -11950,6 +11954,15 @@ export type Routes = {
|
|
|
11950
11954
|
/** ID of the customization profile associated with the Access Grant. */
|
|
11951
11955
|
customization_profile_id?: string | undefined;
|
|
11952
11956
|
}[];
|
|
11957
|
+
/** Information about the current page of results. */
|
|
11958
|
+
pagination: {
|
|
11959
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
11960
|
+
next_page_cursor: string | null;
|
|
11961
|
+
/** Indicates whether there is another page of results after this one. */
|
|
11962
|
+
has_next_page: boolean;
|
|
11963
|
+
/** URL to get the next page of results. */
|
|
11964
|
+
next_page_url: string | null;
|
|
11965
|
+
};
|
|
11953
11966
|
};
|
|
11954
11967
|
maxDuration: undefined;
|
|
11955
11968
|
};
|
package/package.json
CHANGED
|
@@ -29856,6 +29856,27 @@ export default {
|
|
|
29856
29856
|
type: 'string',
|
|
29857
29857
|
},
|
|
29858
29858
|
},
|
|
29859
|
+
{
|
|
29860
|
+
in: 'query',
|
|
29861
|
+
name: 'limit',
|
|
29862
|
+
schema: {
|
|
29863
|
+
default: 500,
|
|
29864
|
+
description:
|
|
29865
|
+
'Numerical limit on the number of access grants to return.',
|
|
29866
|
+
format: 'float',
|
|
29867
|
+
type: 'number',
|
|
29868
|
+
},
|
|
29869
|
+
},
|
|
29870
|
+
{
|
|
29871
|
+
in: 'query',
|
|
29872
|
+
name: 'page_cursor',
|
|
29873
|
+
schema: {
|
|
29874
|
+
description:
|
|
29875
|
+
"Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
29876
|
+
nullable: true,
|
|
29877
|
+
type: 'string',
|
|
29878
|
+
},
|
|
29879
|
+
},
|
|
29859
29880
|
{
|
|
29860
29881
|
in: 'query',
|
|
29861
29882
|
name: 'user_identity_id',
|
|
@@ -29934,8 +29955,9 @@ export default {
|
|
|
29934
29955
|
type: 'array',
|
|
29935
29956
|
},
|
|
29936
29957
|
ok: { type: 'boolean' },
|
|
29958
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
29937
29959
|
},
|
|
29938
|
-
required: ['access_grants', 'ok'],
|
|
29960
|
+
required: ['access_grants', 'pagination', 'ok'],
|
|
29939
29961
|
type: 'object',
|
|
29940
29962
|
},
|
|
29941
29963
|
},
|
|
@@ -29989,12 +30011,25 @@ export default {
|
|
|
29989
30011
|
'Customer key for which you want to list access grants.',
|
|
29990
30012
|
type: 'string',
|
|
29991
30013
|
},
|
|
30014
|
+
limit: {
|
|
30015
|
+
default: 500,
|
|
30016
|
+
description:
|
|
30017
|
+
'Numerical limit on the number of access grants to return.',
|
|
30018
|
+
format: 'float',
|
|
30019
|
+
type: 'number',
|
|
30020
|
+
},
|
|
29992
30021
|
location_id: {
|
|
29993
30022
|
deprecated: true,
|
|
29994
30023
|
format: 'uuid',
|
|
29995
30024
|
type: 'string',
|
|
29996
30025
|
'x-deprecated': 'Use `space_id`.',
|
|
29997
30026
|
},
|
|
30027
|
+
page_cursor: {
|
|
30028
|
+
description:
|
|
30029
|
+
"Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
30030
|
+
nullable: true,
|
|
30031
|
+
type: 'string',
|
|
30032
|
+
},
|
|
29998
30033
|
reservation_key: {
|
|
29999
30034
|
description: 'Filter Access Grants by reservation_key.',
|
|
30000
30035
|
type: 'string',
|
|
@@ -30028,8 +30063,9 @@ export default {
|
|
|
30028
30063
|
type: 'array',
|
|
30029
30064
|
},
|
|
30030
30065
|
ok: { type: 'boolean' },
|
|
30066
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
30031
30067
|
},
|
|
30032
|
-
required: ['access_grants', 'ok'],
|
|
30068
|
+
required: ['access_grants', 'pagination', 'ok'],
|
|
30033
30069
|
type: 'object',
|
|
30034
30070
|
},
|
|
30035
30071
|
},
|
|
@@ -13611,6 +13611,10 @@ export type Routes = {
|
|
|
13611
13611
|
commonParams: {
|
|
13612
13612
|
/** Customer key for which you want to list access grants. */
|
|
13613
13613
|
customer_key?: string | undefined
|
|
13614
|
+
/** Numerical limit on the number of access grants to return. */
|
|
13615
|
+
limit?: number
|
|
13616
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
13617
|
+
page_cursor?: (string | undefined) | null
|
|
13614
13618
|
/** ID of user identity by which you want to filter the list of Access Grants. */
|
|
13615
13619
|
user_identity_id?: string | undefined
|
|
13616
13620
|
/** ID of the access system by which you want to filter the list of Access Grants. */
|
|
@@ -13695,6 +13699,15 @@ export type Routes = {
|
|
|
13695
13699
|
/** ID of the customization profile associated with the Access Grant. */
|
|
13696
13700
|
customization_profile_id?: string | undefined
|
|
13697
13701
|
}[]
|
|
13702
|
+
/** Information about the current page of results. */
|
|
13703
|
+
pagination: {
|
|
13704
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
13705
|
+
next_page_cursor: string | null
|
|
13706
|
+
/** Indicates whether there is another page of results after this one. */
|
|
13707
|
+
has_next_page: boolean
|
|
13708
|
+
/** URL to get the next page of results. */
|
|
13709
|
+
next_page_url: string | null
|
|
13710
|
+
}
|
|
13698
13711
|
}
|
|
13699
13712
|
maxDuration: undefined
|
|
13700
13713
|
}
|