@seamapi/types 1.420.1 → 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 +8436 -291
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +17330 -7907
- 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 +17338 -7917
- package/lib/seam/connect/openapi.js +10315 -2170
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -3
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-credential-provisioning-automation.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +11577 -3113
- 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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.421.0",
|
|
4
4
|
"description": "TypeScript types for the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"zod": "^3.24.0"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
|
-
"@seamapi/blueprint": "^0.50.
|
|
95
|
+
"@seamapi/blueprint": "^0.50.1",
|
|
96
96
|
"@types/node": "^20.8.10",
|
|
97
97
|
"concurrently": "^8.2.0",
|
|
98
98
|
"del-cli": "^5.0.0",
|
|
@@ -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
|
`)
|