@seamapi/types 1.367.1 → 1.367.2
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 +39 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -0
- package/lib/seam/connect/models/acs/acs-system.js +8 -1
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/pending-modifications.d.ts +178 -0
- package/lib/seam/connect/models/acs/acs-users/pending-modifications.js +38 -0
- package/lib/seam/connect/models/acs/acs-users/pending-modifications.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +2 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +10 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-modifications.ts +47 -0
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +8 -0
package/dist/connect.cjs
CHANGED
|
@@ -2217,7 +2217,13 @@ var salto_ks_subscription_limit_almost_reached3 = common_acs_system_warning.exte
|
|
|
2217
2217
|
);
|
|
2218
2218
|
var time_zone_does_not_match_location = common_acs_system_warning.extend({
|
|
2219
2219
|
warning_code: zod.z.literal("time_zone_does_not_match_location").describe(warning_code_description6),
|
|
2220
|
-
misconfigured_acs_entrance_ids: zod.z.array(zod.z.string().uuid()).optional()
|
|
2220
|
+
misconfigured_acs_entrance_ids: zod.z.array(zod.z.string().uuid()).optional().describe(
|
|
2221
|
+
`
|
|
2222
|
+
---
|
|
2223
|
+
deprecated: this field is deprecated.
|
|
2224
|
+
---
|
|
2225
|
+
`
|
|
2226
|
+
)
|
|
2221
2227
|
}).describe(
|
|
2222
2228
|
"Indicates the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) time zone could not be determined because the reported physical location does not match the time zone configured on the physical [ACS entrances](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
|
|
2223
2229
|
);
|
|
@@ -2365,6 +2371,35 @@ var acs_user_pending_modification = zod.z.discriminatedUnion(
|
|
|
2365
2371
|
acs_access_group_membership_pending_modification
|
|
2366
2372
|
]
|
|
2367
2373
|
);
|
|
2374
|
+
zod.z.object({
|
|
2375
|
+
"profile.full_name": common_pending_modification.extend({
|
|
2376
|
+
modification_code: zod.z.literal("profile"),
|
|
2377
|
+
modified_from: zod.z.object({
|
|
2378
|
+
full_name: zod.z.string().nullable()
|
|
2379
|
+
}),
|
|
2380
|
+
modified_to: zod.z.object({
|
|
2381
|
+
full_name: zod.z.string().nullable()
|
|
2382
|
+
})
|
|
2383
|
+
}).optional().nullable(),
|
|
2384
|
+
"profile.email_address": common_pending_modification.extend({
|
|
2385
|
+
modification_code: zod.z.literal("profile"),
|
|
2386
|
+
modified_from: zod.z.object({
|
|
2387
|
+
email_address: zod.z.string().email().nullable()
|
|
2388
|
+
}),
|
|
2389
|
+
modified_to: zod.z.object({
|
|
2390
|
+
email_address: zod.z.string().email().nullable()
|
|
2391
|
+
})
|
|
2392
|
+
}).optional().nullable(),
|
|
2393
|
+
"profile.phone_number": common_pending_modification.extend({
|
|
2394
|
+
modification_code: zod.z.literal("profile"),
|
|
2395
|
+
modified_from: zod.z.object({
|
|
2396
|
+
phone_number: phone_number.nullable()
|
|
2397
|
+
}),
|
|
2398
|
+
modified_to: zod.z.object({
|
|
2399
|
+
phone_number: phone_number.nullable()
|
|
2400
|
+
})
|
|
2401
|
+
}).optional().nullable()
|
|
2402
|
+
});
|
|
2368
2403
|
|
|
2369
2404
|
// src/lib/seam/connect/models/acs/acs-users/acs-user.ts
|
|
2370
2405
|
var acs_user_external_type = zod.z.enum([
|
|
@@ -6035,8 +6070,10 @@ var openapi_default = {
|
|
|
6035
6070
|
type: "string"
|
|
6036
6071
|
},
|
|
6037
6072
|
misconfigured_acs_entrance_ids: {
|
|
6073
|
+
deprecated: true,
|
|
6038
6074
|
items: { format: "uuid", type: "string" },
|
|
6039
|
-
type: "array"
|
|
6075
|
+
type: "array",
|
|
6076
|
+
"x-deprecated": "this field is deprecated."
|
|
6040
6077
|
},
|
|
6041
6078
|
warning_code: {
|
|
6042
6079
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|