@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
package/dist/connect.d.cts
CHANGED
|
@@ -38228,13 +38228,22 @@ declare const _default: {
|
|
|
38228
38228
|
'application/json': {
|
|
38229
38229
|
schema: {
|
|
38230
38230
|
properties: {
|
|
38231
|
+
acs_system_id: {
|
|
38232
|
+
description: string;
|
|
38233
|
+
format: string;
|
|
38234
|
+
type: string;
|
|
38235
|
+
};
|
|
38231
38236
|
acs_user_id: {
|
|
38232
38237
|
description: string;
|
|
38233
38238
|
format: string;
|
|
38234
38239
|
type: string;
|
|
38235
38240
|
};
|
|
38241
|
+
user_identity_id: {
|
|
38242
|
+
description: string;
|
|
38243
|
+
format: string;
|
|
38244
|
+
type: string;
|
|
38245
|
+
};
|
|
38236
38246
|
};
|
|
38237
|
-
required: string[];
|
|
38238
38247
|
type: string;
|
|
38239
38248
|
};
|
|
38240
38249
|
};
|
|
@@ -68982,8 +68991,12 @@ interface Routes {
|
|
|
68982
68991
|
queryParams: {};
|
|
68983
68992
|
jsonBody: {};
|
|
68984
68993
|
commonParams: {
|
|
68985
|
-
/** ID of the access system user for whom you want to list accessible entrances. */
|
|
68986
|
-
acs_user_id
|
|
68994
|
+
/** 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. */
|
|
68995
|
+
acs_user_id?: string | undefined;
|
|
68996
|
+
/** ID of the user identity for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id. */
|
|
68997
|
+
user_identity_id?: string | undefined;
|
|
68998
|
+
/** ID of the access system for which you want to list accessible entrances. You can only provide acs_system_id with user_identity_id. */
|
|
68999
|
+
acs_system_id?: string | undefined;
|
|
68987
69000
|
};
|
|
68988
69001
|
formData: {};
|
|
68989
69002
|
jsonResponse: {
|
|
@@ -16865,13 +16865,22 @@ declare const _default: {
|
|
|
16865
16865
|
'application/json': {
|
|
16866
16866
|
schema: {
|
|
16867
16867
|
properties: {
|
|
16868
|
+
acs_system_id: {
|
|
16869
|
+
description: string;
|
|
16870
|
+
format: string;
|
|
16871
|
+
type: string;
|
|
16872
|
+
};
|
|
16868
16873
|
acs_user_id: {
|
|
16869
16874
|
description: string;
|
|
16870
16875
|
format: string;
|
|
16871
16876
|
type: string;
|
|
16872
16877
|
};
|
|
16878
|
+
user_identity_id: {
|
|
16879
|
+
description: string;
|
|
16880
|
+
format: string;
|
|
16881
|
+
type: string;
|
|
16882
|
+
};
|
|
16873
16883
|
};
|
|
16874
|
-
required: string[];
|
|
16875
16884
|
type: string;
|
|
16876
16885
|
};
|
|
16877
16886
|
};
|
|
@@ -22830,13 +22830,22 @@ export default {
|
|
|
22830
22830
|
'application/json': {
|
|
22831
22831
|
schema: {
|
|
22832
22832
|
properties: {
|
|
22833
|
+
acs_system_id: {
|
|
22834
|
+
description: 'ID of the access system for which you want to list accessible entrances. You can only provide acs_system_id with user_identity_id.',
|
|
22835
|
+
format: 'uuid',
|
|
22836
|
+
type: 'string',
|
|
22837
|
+
},
|
|
22833
22838
|
acs_user_id: {
|
|
22834
|
-
description: 'ID of the access system user for whom you want to list accessible entrances.',
|
|
22839
|
+
description: '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.',
|
|
22840
|
+
format: 'uuid',
|
|
22841
|
+
type: 'string',
|
|
22842
|
+
},
|
|
22843
|
+
user_identity_id: {
|
|
22844
|
+
description: 'ID of the user identity for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id.',
|
|
22835
22845
|
format: 'uuid',
|
|
22836
22846
|
type: 'string',
|
|
22837
22847
|
},
|
|
22838
22848
|
},
|
|
22839
|
-
required: ['acs_user_id'],
|
|
22840
22849
|
type: 'object',
|
|
22841
22850
|
},
|
|
22842
22851
|
},
|