@seamapi/types 1.420.2 → 1.421.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 +6 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +11 -5
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.js +1 -0
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +6 -2
- package/lib/seam/connect/openapi.js +6 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential-provisioning-automation.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +11 -2
- package/src/lib/seam/connect/route-types.ts +5 -3
|
@@ -45669,7 +45669,7 @@ export interface Routes {
|
|
|
45669
45669
|
jsonBody: {};
|
|
45670
45670
|
commonParams: {
|
|
45671
45671
|
/** Collection key. */
|
|
45672
|
-
collection_key
|
|
45672
|
+
collection_key?: string | undefined;
|
|
45673
45673
|
};
|
|
45674
45674
|
formData: {};
|
|
45675
45675
|
jsonResponse: {
|
|
@@ -62396,7 +62396,8 @@ export interface Routes {
|
|
|
62396
62396
|
};
|
|
62397
62397
|
formData: {};
|
|
62398
62398
|
jsonResponse: {
|
|
62399
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development).
|
|
62399
|
+
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development).
|
|
62400
|
+
* @deprecated Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials. */
|
|
62400
62401
|
enrollment_automation: {
|
|
62401
62402
|
/** ID of the enrollment automation. */
|
|
62402
62403
|
enrollment_automation_id: string;
|
|
@@ -62430,7 +62431,8 @@ export interface Routes {
|
|
|
62430
62431
|
};
|
|
62431
62432
|
formData: {};
|
|
62432
62433
|
jsonResponse: {
|
|
62433
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development).
|
|
62434
|
+
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development).
|
|
62435
|
+
* @deprecated Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials. */
|
|
62434
62436
|
enrollment_automation: {
|
|
62435
62437
|
/** ID of the enrollment automation. */
|
|
62436
62438
|
enrollment_automation_id: string;
|
package/package.json
CHANGED
|
@@ -44,6 +44,7 @@ export const enrollment_automation = z.object({
|
|
|
44
44
|
}).describe(`
|
|
45
45
|
---
|
|
46
46
|
route_path: /user_identities/enrollment_automations
|
|
47
|
+
deprecated: Will be removed. Instead, link the \`user_identity\` to the \`acs_user\` in the access system in which you want to issue credentials.
|
|
47
48
|
---
|
|
48
49
|
Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development).
|
|
49
50
|
`)
|
|
@@ -12869,6 +12869,7 @@ export default {
|
|
|
12869
12869
|
'x-route-path': '/devices',
|
|
12870
12870
|
},
|
|
12871
12871
|
enrollment_automation: {
|
|
12872
|
+
deprecated: true,
|
|
12872
12873
|
description:
|
|
12873
12874
|
'Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development).',
|
|
12874
12875
|
properties: {
|
|
@@ -12910,6 +12911,8 @@ export default {
|
|
|
12910
12911
|
'workspace_id',
|
|
12911
12912
|
],
|
|
12912
12913
|
type: 'object',
|
|
12914
|
+
'x-deprecated':
|
|
12915
|
+
'Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials.',
|
|
12913
12916
|
'x-route-path': '/user_identities/enrollment_automations',
|
|
12914
12917
|
},
|
|
12915
12918
|
event: {
|
|
@@ -42907,7 +42910,6 @@ export default {
|
|
|
42907
42910
|
{
|
|
42908
42911
|
in: 'query',
|
|
42909
42912
|
name: 'collection_key',
|
|
42910
|
-
required: true,
|
|
42911
42913
|
schema: { description: 'Collection key.', type: 'string' },
|
|
42912
42914
|
},
|
|
42913
42915
|
],
|
|
@@ -43002,7 +43004,6 @@ export default {
|
|
|
43002
43004
|
type: 'string',
|
|
43003
43005
|
},
|
|
43004
43006
|
},
|
|
43005
|
-
required: ['collection_key'],
|
|
43006
43007
|
type: 'object',
|
|
43007
43008
|
},
|
|
43008
43009
|
},
|
|
@@ -50091,6 +50092,8 @@ export default {
|
|
|
50091
50092
|
],
|
|
50092
50093
|
summary: '/user_identities/enrollment_automations/delete',
|
|
50093
50094
|
tags: ['/user_identities'],
|
|
50095
|
+
'x-deprecated':
|
|
50096
|
+
'Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials.',
|
|
50094
50097
|
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
50095
50098
|
'x-fern-sdk-method-name': 'delete',
|
|
50096
50099
|
'x-response-key': null,
|
|
@@ -50201,6 +50204,8 @@ export default {
|
|
|
50201
50204
|
],
|
|
50202
50205
|
summary: '/user_identities/enrollment_automations/get',
|
|
50203
50206
|
tags: ['/user_identities'],
|
|
50207
|
+
'x-deprecated':
|
|
50208
|
+
'Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials.',
|
|
50204
50209
|
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
50205
50210
|
'x-fern-sdk-method-name': 'get',
|
|
50206
50211
|
'x-fern-sdk-return-value': 'enrollment_automation',
|
|
@@ -50285,6 +50290,8 @@ export default {
|
|
|
50285
50290
|
],
|
|
50286
50291
|
summary: '/user_identities/enrollment_automations/launch',
|
|
50287
50292
|
tags: ['/user_identities'],
|
|
50293
|
+
'x-deprecated':
|
|
50294
|
+
'Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials.',
|
|
50288
50295
|
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
50289
50296
|
'x-fern-sdk-method-name': 'launch',
|
|
50290
50297
|
'x-fern-sdk-return-value': 'enrollment_automation',
|
|
@@ -50402,6 +50409,8 @@ export default {
|
|
|
50402
50409
|
],
|
|
50403
50410
|
summary: '/user_identities/enrollment_automations/list',
|
|
50404
50411
|
tags: ['/user_identities'],
|
|
50412
|
+
'x-deprecated':
|
|
50413
|
+
'Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials.',
|
|
50405
50414
|
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
50406
50415
|
'x-fern-sdk-method-name': 'list',
|
|
50407
50416
|
'x-fern-sdk-return-value': 'enrollment_automations',
|
|
@@ -53185,7 +53185,7 @@ export interface Routes {
|
|
|
53185
53185
|
jsonBody: {}
|
|
53186
53186
|
commonParams: {
|
|
53187
53187
|
/** Collection key. */
|
|
53188
|
-
collection_key
|
|
53188
|
+
collection_key?: string | undefined
|
|
53189
53189
|
}
|
|
53190
53190
|
formData: {}
|
|
53191
53191
|
jsonResponse: {
|
|
@@ -72430,7 +72430,8 @@ export interface Routes {
|
|
|
72430
72430
|
}
|
|
72431
72431
|
formData: {}
|
|
72432
72432
|
jsonResponse: {
|
|
72433
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development).
|
|
72433
|
+
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development).
|
|
72434
|
+
* @deprecated Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials. */
|
|
72434
72435
|
enrollment_automation: {
|
|
72435
72436
|
/** ID of the enrollment automation. */
|
|
72436
72437
|
enrollment_automation_id: string
|
|
@@ -72464,7 +72465,8 @@ export interface Routes {
|
|
|
72464
72465
|
}
|
|
72465
72466
|
formData: {}
|
|
72466
72467
|
jsonResponse: {
|
|
72467
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development).
|
|
72468
|
+
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development).
|
|
72469
|
+
* @deprecated Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials. */
|
|
72468
72470
|
enrollment_automation: {
|
|
72469
72471
|
/** ID of the enrollment automation. */
|
|
72470
72472
|
enrollment_automation_id: string
|