@seamapi/types 1.387.0 → 1.388.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 +49 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +84 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +93 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +7 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/openapi.js +40 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +42 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +10 -0
- package/src/lib/seam/connect/openapi.ts +46 -0
- package/src/lib/seam/connect/route-types.ts +49 -0
package/dist/connect.cjs
CHANGED
|
@@ -2645,15 +2645,22 @@ var unknown_issue_with_acs_user = common_acs_user_warning.extend({
|
|
|
2645
2645
|
}).describe(
|
|
2646
2646
|
"An unknown issue occurred while syncing the state of this [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) with the provider. This issue may affect the proper functioning of this user."
|
|
2647
2647
|
);
|
|
2648
|
+
var latch_resident_user = common_acs_user_warning.extend({
|
|
2649
|
+
warning_code: zod.z.literal("latch_resident_user")
|
|
2650
|
+
}).describe(
|
|
2651
|
+
"Indicates that the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was created on Latch Mission Control. Please use the Latch Mission Control to manage this user."
|
|
2652
|
+
);
|
|
2648
2653
|
zod.z.object({
|
|
2649
2654
|
being_deleted: acs_users_being_deleted.optional().nullable(),
|
|
2650
2655
|
salto_ks_user_not_subscribed: acs_users_salto_ks_user_not_subscribed.optional().nullable(),
|
|
2651
|
-
unknown_issue_with_acs_user: unknown_issue_with_acs_user.optional().nullable()
|
|
2656
|
+
unknown_issue_with_acs_user: unknown_issue_with_acs_user.optional().nullable(),
|
|
2657
|
+
latch_resident_user: latch_resident_user.optional().nullable()
|
|
2652
2658
|
});
|
|
2653
2659
|
var acs_users_warnings = zod.z.discriminatedUnion("warning_code", [
|
|
2654
2660
|
acs_users_being_deleted,
|
|
2655
2661
|
acs_users_salto_ks_user_not_subscribed,
|
|
2656
|
-
unknown_issue_with_acs_user
|
|
2662
|
+
unknown_issue_with_acs_user,
|
|
2663
|
+
latch_resident_user
|
|
2657
2664
|
]).describe(
|
|
2658
2665
|
"Warnings associated with the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management)."
|
|
2659
2666
|
);
|
|
@@ -7412,6 +7419,26 @@ var openapi_default = {
|
|
|
7412
7419
|
},
|
|
7413
7420
|
required: ["created_at", "message", "warning_code"],
|
|
7414
7421
|
type: "object"
|
|
7422
|
+
},
|
|
7423
|
+
{
|
|
7424
|
+
description: "Indicates that the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was created on Latch Mission Control. Please use the Latch Mission Control to manage this user.",
|
|
7425
|
+
properties: {
|
|
7426
|
+
created_at: {
|
|
7427
|
+
description: "Date and time at which Seam created the warning.",
|
|
7428
|
+
format: "date-time",
|
|
7429
|
+
type: "string"
|
|
7430
|
+
},
|
|
7431
|
+
message: {
|
|
7432
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
7433
|
+
type: "string"
|
|
7434
|
+
},
|
|
7435
|
+
warning_code: {
|
|
7436
|
+
enum: ["latch_resident_user"],
|
|
7437
|
+
type: "string"
|
|
7438
|
+
}
|
|
7439
|
+
},
|
|
7440
|
+
required: ["created_at", "message", "warning_code"],
|
|
7441
|
+
type: "object"
|
|
7415
7442
|
}
|
|
7416
7443
|
]
|
|
7417
7444
|
},
|
|
@@ -20446,6 +20473,26 @@ var openapi_default = {
|
|
|
20446
20473
|
},
|
|
20447
20474
|
required: ["created_at", "message", "warning_code"],
|
|
20448
20475
|
type: "object"
|
|
20476
|
+
},
|
|
20477
|
+
{
|
|
20478
|
+
description: "Indicates that the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was created on Latch Mission Control. Please use the Latch Mission Control to manage this user.",
|
|
20479
|
+
properties: {
|
|
20480
|
+
created_at: {
|
|
20481
|
+
description: "Date and time at which Seam created the warning.",
|
|
20482
|
+
format: "date-time",
|
|
20483
|
+
type: "string"
|
|
20484
|
+
},
|
|
20485
|
+
message: {
|
|
20486
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
20487
|
+
type: "string"
|
|
20488
|
+
},
|
|
20489
|
+
warning_code: {
|
|
20490
|
+
enum: ["latch_resident_user"],
|
|
20491
|
+
type: "string"
|
|
20492
|
+
}
|
|
20493
|
+
},
|
|
20494
|
+
required: ["created_at", "message", "warning_code"],
|
|
20495
|
+
type: "object"
|
|
20449
20496
|
}
|
|
20450
20497
|
]
|
|
20451
20498
|
},
|