@seamapi/types 1.403.0 → 1.404.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 +11 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16 -3
- package/lib/seam/connect/openapi.d.ts +10 -1
- package/lib/seam/connect/openapi.js +11 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +13 -2
- package/src/lib/seam/connect/route-types.ts +6 -2
|
@@ -15722,8 +15722,12 @@ export interface Routes {
|
|
|
15722
15722
|
queryParams: {};
|
|
15723
15723
|
jsonBody: {};
|
|
15724
15724
|
commonParams: {
|
|
15725
|
-
/** ID of the access system user for whom you want to list accessible entrances. */
|
|
15726
|
-
acs_user_id
|
|
15725
|
+
/** ID of the access system user for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id. */
|
|
15726
|
+
acs_user_id?: string | undefined;
|
|
15727
|
+
/** ID of the user identity for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id. */
|
|
15728
|
+
user_identity_id?: string | undefined;
|
|
15729
|
+
/** ID of the access system for which you want to list accessible entrances. You can only provide acs_system_id with user_identity_id. */
|
|
15730
|
+
acs_system_id?: string | undefined;
|
|
15727
15731
|
};
|
|
15728
15732
|
formData: {};
|
|
15729
15733
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -24880,14 +24880,25 @@ export default {
|
|
|
24880
24880
|
'application/json': {
|
|
24881
24881
|
schema: {
|
|
24882
24882
|
properties: {
|
|
24883
|
+
acs_system_id: {
|
|
24884
|
+
description:
|
|
24885
|
+
'ID of the access system for which you want to list accessible entrances. You can only provide acs_system_id with user_identity_id.',
|
|
24886
|
+
format: 'uuid',
|
|
24887
|
+
type: 'string',
|
|
24888
|
+
},
|
|
24883
24889
|
acs_user_id: {
|
|
24884
24890
|
description:
|
|
24885
|
-
'ID of the access system user for whom you want to list accessible entrances.',
|
|
24891
|
+
'ID of the access system user for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id.',
|
|
24892
|
+
format: 'uuid',
|
|
24893
|
+
type: 'string',
|
|
24894
|
+
},
|
|
24895
|
+
user_identity_id: {
|
|
24896
|
+
description:
|
|
24897
|
+
'ID of the user identity for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id.',
|
|
24886
24898
|
format: 'uuid',
|
|
24887
24899
|
type: 'string',
|
|
24888
24900
|
},
|
|
24889
24901
|
},
|
|
24890
|
-
required: ['acs_user_id'],
|
|
24891
24902
|
type: 'object',
|
|
24892
24903
|
},
|
|
24893
24904
|
},
|
|
@@ -18230,8 +18230,12 @@ export interface Routes {
|
|
|
18230
18230
|
queryParams: {}
|
|
18231
18231
|
jsonBody: {}
|
|
18232
18232
|
commonParams: {
|
|
18233
|
-
/** ID of the access system user for whom you want to list accessible entrances. */
|
|
18234
|
-
acs_user_id
|
|
18233
|
+
/** ID of the access system user for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id. */
|
|
18234
|
+
acs_user_id?: string | undefined
|
|
18235
|
+
/** ID of the user identity for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id. */
|
|
18236
|
+
user_identity_id?: string | undefined
|
|
18237
|
+
/** ID of the access system for which you want to list accessible entrances. You can only provide acs_system_id with user_identity_id. */
|
|
18238
|
+
acs_system_id?: string | undefined
|
|
18235
18239
|
}
|
|
18236
18240
|
formData: {}
|
|
18237
18241
|
jsonResponse: {
|