@seamapi/types 1.614.0 → 1.616.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 +18 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -0
- package/dist/index.cjs +18 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +3 -3
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +1 -1
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +14 -0
- package/lib/seam/connect/models/customer/customer-portal.js +9 -1
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +16 -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 +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +11 -1
- package/src/lib/seam/connect/openapi.ts +19 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
package/dist/connect.cjs
CHANGED
|
@@ -3328,7 +3328,7 @@ zod.z.object({
|
|
|
3328
3328
|
deleting: deleting.optional().nullable(),
|
|
3329
3329
|
deferring_creation: deferring_creation.optional().nullable(),
|
|
3330
3330
|
updating_access_schedule: updating_access_schedule_mutation.optional().nullable(),
|
|
3331
|
-
updating_group_membership: zod.z.
|
|
3331
|
+
updating_group_membership: zod.z.record(zod.z.string().uuid(), updating_group_membership_mutation).optional().nullable(),
|
|
3332
3332
|
updating_suspension_state: updating_suspension_state_mutation.optional().nullable(),
|
|
3333
3333
|
"updating_user_information.full_name": common_pending_mutation.extend({
|
|
3334
3334
|
mutation_code: zod.z.literal("updating_user_information"),
|
|
@@ -43246,7 +43246,8 @@ var openapi_default = {
|
|
|
43246
43246
|
connect: { exclude: false },
|
|
43247
43247
|
manage: {
|
|
43248
43248
|
exclude: false,
|
|
43249
|
-
exclude_reservation_management: false
|
|
43249
|
+
exclude_reservation_management: false,
|
|
43250
|
+
exclude_staff_management: false
|
|
43250
43251
|
},
|
|
43251
43252
|
manage_devices: { exclude: false },
|
|
43252
43253
|
organize: { exclude: false }
|
|
@@ -43315,6 +43316,11 @@ var openapi_default = {
|
|
|
43315
43316
|
default: false,
|
|
43316
43317
|
description: "Indicates whether the customer can manage reservations for their properties.",
|
|
43317
43318
|
type: "boolean"
|
|
43319
|
+
},
|
|
43320
|
+
exclude_staff_management: {
|
|
43321
|
+
default: false,
|
|
43322
|
+
description: "Indicates whether the customer can manage staff for their properties.",
|
|
43323
|
+
type: "boolean"
|
|
43318
43324
|
}
|
|
43319
43325
|
},
|
|
43320
43326
|
type: "object"
|
|
@@ -54318,6 +54324,11 @@ var openapi_default = {
|
|
|
54318
54324
|
default: false,
|
|
54319
54325
|
description: "Indicates whether the customer can manage reservations for their properties.",
|
|
54320
54326
|
type: "boolean"
|
|
54327
|
+
},
|
|
54328
|
+
exclude_staff_management: {
|
|
54329
|
+
default: false,
|
|
54330
|
+
description: "Indicates whether the customer can manage staff for their properties.",
|
|
54331
|
+
type: "boolean"
|
|
54321
54332
|
}
|
|
54322
54333
|
},
|
|
54323
54334
|
type: "object"
|
|
@@ -54599,6 +54610,11 @@ var openapi_default = {
|
|
|
54599
54610
|
default: false,
|
|
54600
54611
|
description: "Indicates whether the customer can manage reservations for their properties.",
|
|
54601
54612
|
type: "boolean"
|
|
54613
|
+
},
|
|
54614
|
+
exclude_staff_management: {
|
|
54615
|
+
default: false,
|
|
54616
|
+
description: "Indicates whether the customer can manage staff for their properties.",
|
|
54617
|
+
type: "boolean"
|
|
54602
54618
|
}
|
|
54603
54619
|
},
|
|
54604
54620
|
type: "object"
|