@seamapi/types 1.303.0 → 1.303.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 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6 -0
- package/lib/seam/connect/models/acs/acs-user.js +8 -8
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +3 -0
- package/lib/seam/connect/openapi.js +3 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +16 -16
- package/src/lib/seam/connect/openapi.ts +6 -0
- package/src/lib/seam/connect/route-types.ts +3 -0
|
@@ -7905,6 +7905,7 @@ export interface Routes {
|
|
|
7905
7905
|
commonParams: {};
|
|
7906
7906
|
formData: {};
|
|
7907
7907
|
jsonResponse: {
|
|
7908
|
+
/** Represents a [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
7908
7909
|
acs_user: {
|
|
7909
7910
|
/** ID of the `acs_user`. */
|
|
7910
7911
|
acs_user_id: string;
|
|
@@ -8020,6 +8021,7 @@ export interface Routes {
|
|
|
8020
8021
|
};
|
|
8021
8022
|
formData: {};
|
|
8022
8023
|
jsonResponse: {
|
|
8024
|
+
/** Represents a [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
8023
8025
|
acs_user: {
|
|
8024
8026
|
/** ID of the `acs_user`. */
|
|
8025
8027
|
acs_user_id: string;
|
|
@@ -8332,6 +8334,7 @@ export interface Routes {
|
|
|
8332
8334
|
};
|
|
8333
8335
|
formData: {};
|
|
8334
8336
|
jsonResponse: {
|
|
8337
|
+
/** Represents an unmanaged [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
8335
8338
|
acs_user: {
|
|
8336
8339
|
/** ID of the `acs_user`. */
|
|
8337
8340
|
acs_user_id: string;
|
package/package.json
CHANGED
|
@@ -234,25 +234,25 @@ const common_acs_user = z
|
|
|
234
234
|
})
|
|
235
235
|
.merge(user_fields)
|
|
236
236
|
|
|
237
|
-
export const acs_user = common_acs_user
|
|
238
|
-
|
|
239
|
-
.object({
|
|
237
|
+
export const acs_user = common_acs_user
|
|
238
|
+
.merge(
|
|
239
|
+
z.object({
|
|
240
240
|
is_managed: z.literal(true),
|
|
241
|
-
})
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
),
|
|
245
|
-
)
|
|
241
|
+
}),
|
|
242
|
+
)
|
|
243
|
+
.describe(
|
|
244
|
+
'Represents a [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
245
|
+
)
|
|
246
246
|
|
|
247
|
-
export const unmanaged_acs_user = common_acs_user
|
|
248
|
-
|
|
249
|
-
.object({
|
|
247
|
+
export const unmanaged_acs_user = common_acs_user
|
|
248
|
+
.merge(
|
|
249
|
+
z.object({
|
|
250
250
|
is_managed: z.literal(false),
|
|
251
|
-
})
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
),
|
|
255
|
-
)
|
|
251
|
+
}),
|
|
252
|
+
)
|
|
253
|
+
.describe(
|
|
254
|
+
'Represents an unmanaged [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
255
|
+
)
|
|
256
256
|
|
|
257
257
|
export type AcsUser = z.output<typeof acs_user>
|
|
258
258
|
export type AcsUnmanagedUser = z.output<typeof unmanaged_acs_user>
|
|
@@ -1050,6 +1050,8 @@ export default {
|
|
|
1050
1050
|
type: 'object',
|
|
1051
1051
|
},
|
|
1052
1052
|
acs_user: {
|
|
1053
|
+
description:
|
|
1054
|
+
'Represents a [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
1053
1055
|
properties: {
|
|
1054
1056
|
access_schedule: {
|
|
1055
1057
|
description:
|
|
@@ -11725,6 +11727,8 @@ export default {
|
|
|
11725
11727
|
schema: {
|
|
11726
11728
|
properties: {
|
|
11727
11729
|
acs_user: {
|
|
11730
|
+
description:
|
|
11731
|
+
'Represents an unmanaged [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
11728
11732
|
properties: {
|
|
11729
11733
|
access_schedule: {
|
|
11730
11734
|
description:
|
|
@@ -12118,6 +12122,8 @@ export default {
|
|
|
12118
12122
|
properties: {
|
|
12119
12123
|
acs_users: {
|
|
12120
12124
|
items: {
|
|
12125
|
+
description:
|
|
12126
|
+
'Represents an unmanaged [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
12121
12127
|
properties: {
|
|
12122
12128
|
access_schedule: {
|
|
12123
12129
|
description:
|
|
@@ -9240,6 +9240,7 @@ export interface Routes {
|
|
|
9240
9240
|
commonParams: {}
|
|
9241
9241
|
formData: {}
|
|
9242
9242
|
jsonResponse: {
|
|
9243
|
+
/** Represents a [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
9243
9244
|
acs_user: {
|
|
9244
9245
|
/** ID of the `acs_user`. */
|
|
9245
9246
|
acs_user_id: string
|
|
@@ -9375,6 +9376,7 @@ export interface Routes {
|
|
|
9375
9376
|
}
|
|
9376
9377
|
formData: {}
|
|
9377
9378
|
jsonResponse: {
|
|
9379
|
+
/** Represents a [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
9378
9380
|
acs_user: {
|
|
9379
9381
|
/** ID of the `acs_user`. */
|
|
9380
9382
|
acs_user_id: string
|
|
@@ -9748,6 +9750,7 @@ export interface Routes {
|
|
|
9748
9750
|
}
|
|
9749
9751
|
formData: {}
|
|
9750
9752
|
jsonResponse: {
|
|
9753
|
+
/** Represents an unmanaged [user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
9751
9754
|
acs_user: {
|
|
9752
9755
|
/** ID of the `acs_user`. */
|
|
9753
9756
|
acs_user_id: string
|