@seamapi/types 1.370.1 → 1.370.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 +21 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +83 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +32 -0
- package/lib/seam/connect/models/acs/acs-users/pending-modifications.d.ts +29 -0
- package/lib/seam/connect/models/acs/acs-users/pending-modifications.js +5 -0
- package/lib/seam/connect/models/acs/acs-users/pending-modifications.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +30 -0
- package/lib/seam/connect/openapi.js +16 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +21 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-modifications.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +16 -0
- package/src/lib/seam/connect/route-types.ts +28 -0
package/dist/connect.cjs
CHANGED
|
@@ -2357,6 +2357,9 @@ var schedule = start_end_schedule;
|
|
|
2357
2357
|
var common_pending_modification = zod.z.object({
|
|
2358
2358
|
created_at: zod.z.string().datetime()
|
|
2359
2359
|
});
|
|
2360
|
+
var lifecycle_create = common_pending_modification.extend({
|
|
2361
|
+
modification_code: zod.z.literal("create")
|
|
2362
|
+
});
|
|
2360
2363
|
var acs_user_profile = zod.z.object({
|
|
2361
2364
|
email_address: zod.z.string().email().nullable(),
|
|
2362
2365
|
full_name: zod.z.string().nullable(),
|
|
@@ -2391,6 +2394,7 @@ var acs_access_group_membership_pending_modification = common_pending_modificati
|
|
|
2391
2394
|
var acs_user_pending_modification = zod.z.discriminatedUnion(
|
|
2392
2395
|
"modification_code",
|
|
2393
2396
|
[
|
|
2397
|
+
lifecycle_create,
|
|
2394
2398
|
profile_pending_modification,
|
|
2395
2399
|
access_schedule_pending_modification,
|
|
2396
2400
|
suspension_state_pending_modification,
|
|
@@ -2398,6 +2402,7 @@ var acs_user_pending_modification = zod.z.discriminatedUnion(
|
|
|
2398
2402
|
]
|
|
2399
2403
|
);
|
|
2400
2404
|
zod.z.object({
|
|
2405
|
+
lifecycle_create: lifecycle_create.optional().nullable(),
|
|
2401
2406
|
"profile.full_name": common_pending_modification.extend({
|
|
2402
2407
|
modification_code: zod.z.literal("profile"),
|
|
2403
2408
|
modified_from: zod.z.object({
|
|
@@ -6354,6 +6359,14 @@ var openapi_default = {
|
|
|
6354
6359
|
items: {
|
|
6355
6360
|
discriminator: { propertyName: "modification_code" },
|
|
6356
6361
|
oneOf: [
|
|
6362
|
+
{
|
|
6363
|
+
properties: {
|
|
6364
|
+
created_at: { format: "date-time", type: "string" },
|
|
6365
|
+
modification_code: { enum: ["create"], type: "string" }
|
|
6366
|
+
},
|
|
6367
|
+
required: ["created_at", "modification_code"],
|
|
6368
|
+
type: "object"
|
|
6369
|
+
},
|
|
6357
6370
|
{
|
|
6358
6371
|
properties: {
|
|
6359
6372
|
created_at: { format: "date-time", type: "string" },
|
|
@@ -17907,6 +17920,14 @@ var openapi_default = {
|
|
|
17907
17920
|
items: {
|
|
17908
17921
|
discriminator: { propertyName: "modification_code" },
|
|
17909
17922
|
oneOf: [
|
|
17923
|
+
{
|
|
17924
|
+
properties: {
|
|
17925
|
+
created_at: { format: "date-time", type: "string" },
|
|
17926
|
+
modification_code: { enum: ["create"], type: "string" }
|
|
17927
|
+
},
|
|
17928
|
+
required: ["created_at", "modification_code"],
|
|
17929
|
+
type: "object"
|
|
17930
|
+
},
|
|
17910
17931
|
{
|
|
17911
17932
|
properties: {
|
|
17912
17933
|
created_at: { format: "date-time", type: "string" },
|