@seamapi/types 1.420.2 → 1.421.1
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 +9 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +14 -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 +9 -2
- package/lib/seam/connect/openapi.js +9 -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 +17 -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
|
},
|
|
@@ -50041,6 +50042,8 @@ export default {
|
|
|
50041
50042
|
],
|
|
50042
50043
|
summary: '/user_identities/enrollment_automations/delete',
|
|
50043
50044
|
tags: ['/user_identities'],
|
|
50045
|
+
'x-deprecated':
|
|
50046
|
+
'Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials.',
|
|
50044
50047
|
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
50045
50048
|
'x-fern-sdk-method-name': 'delete',
|
|
50046
50049
|
'x-response-key': null,
|
|
@@ -50091,6 +50094,8 @@ export default {
|
|
|
50091
50094
|
],
|
|
50092
50095
|
summary: '/user_identities/enrollment_automations/delete',
|
|
50093
50096
|
tags: ['/user_identities'],
|
|
50097
|
+
'x-deprecated':
|
|
50098
|
+
'Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials.',
|
|
50094
50099
|
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
50095
50100
|
'x-fern-sdk-method-name': 'delete',
|
|
50096
50101
|
'x-response-key': null,
|
|
@@ -50144,6 +50149,8 @@ export default {
|
|
|
50144
50149
|
],
|
|
50145
50150
|
summary: '/user_identities/enrollment_automations/get',
|
|
50146
50151
|
tags: ['/user_identities'],
|
|
50152
|
+
'x-deprecated':
|
|
50153
|
+
'Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials.',
|
|
50147
50154
|
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
50148
50155
|
'x-fern-sdk-method-name': 'get',
|
|
50149
50156
|
'x-fern-sdk-return-value': 'enrollment_automation',
|
|
@@ -50201,6 +50208,8 @@ export default {
|
|
|
50201
50208
|
],
|
|
50202
50209
|
summary: '/user_identities/enrollment_automations/get',
|
|
50203
50210
|
tags: ['/user_identities'],
|
|
50211
|
+
'x-deprecated':
|
|
50212
|
+
'Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials.',
|
|
50204
50213
|
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
50205
50214
|
'x-fern-sdk-method-name': 'get',
|
|
50206
50215
|
'x-fern-sdk-return-value': 'enrollment_automation',
|
|
@@ -50285,6 +50294,8 @@ export default {
|
|
|
50285
50294
|
],
|
|
50286
50295
|
summary: '/user_identities/enrollment_automations/launch',
|
|
50287
50296
|
tags: ['/user_identities'],
|
|
50297
|
+
'x-deprecated':
|
|
50298
|
+
'Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials.',
|
|
50288
50299
|
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
50289
50300
|
'x-fern-sdk-method-name': 'launch',
|
|
50290
50301
|
'x-fern-sdk-return-value': 'enrollment_automation',
|
|
@@ -50342,6 +50353,8 @@ export default {
|
|
|
50342
50353
|
],
|
|
50343
50354
|
summary: '/user_identities/enrollment_automations/list',
|
|
50344
50355
|
tags: ['/user_identities'],
|
|
50356
|
+
'x-deprecated':
|
|
50357
|
+
'Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials.',
|
|
50345
50358
|
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
50346
50359
|
'x-fern-sdk-method-name': 'list',
|
|
50347
50360
|
'x-fern-sdk-return-value': 'enrollment_automations',
|
|
@@ -50402,6 +50415,8 @@ export default {
|
|
|
50402
50415
|
],
|
|
50403
50416
|
summary: '/user_identities/enrollment_automations/list',
|
|
50404
50417
|
tags: ['/user_identities'],
|
|
50418
|
+
'x-deprecated':
|
|
50419
|
+
'Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials.',
|
|
50405
50420
|
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
50406
50421
|
'x-fern-sdk-method-name': 'list',
|
|
50407
50422
|
'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
|