@seamapi/types 1.764.0 → 1.766.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 +65 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +210 -0
- package/dist/index.cjs +65 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +58 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +9 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +21 -0
- package/lib/seam/connect/models/batch.d.ts +58 -0
- package/lib/seam/connect/models/customer/customer-portal.d.ts +14 -0
- package/lib/seam/connect/models/customer/customer-portal.js +5 -0
- 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 +58 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +81 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +12 -0
- package/src/lib/seam/connect/models/customer/customer-portal.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +69 -0
- package/src/lib/seam/connect/route-types.ts +92 -0
|
@@ -1488,6 +1488,27 @@ export default {
|
|
|
1488
1488
|
required: ['message', 'warning_code'],
|
|
1489
1489
|
type: 'object',
|
|
1490
1490
|
},
|
|
1491
|
+
{
|
|
1492
|
+
description: 'A backup access code has been pulled and is being used in place of this access code.',
|
|
1493
|
+
properties: {
|
|
1494
|
+
created_at: {
|
|
1495
|
+
description: 'Date and time at which Seam created the warning.',
|
|
1496
|
+
format: 'date-time',
|
|
1497
|
+
type: 'string',
|
|
1498
|
+
},
|
|
1499
|
+
message: {
|
|
1500
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1501
|
+
type: 'string',
|
|
1502
|
+
},
|
|
1503
|
+
warning_code: {
|
|
1504
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1505
|
+
enum: ['using_backup_access_code'],
|
|
1506
|
+
type: 'string',
|
|
1507
|
+
},
|
|
1508
|
+
},
|
|
1509
|
+
required: ['message', 'warning_code'],
|
|
1510
|
+
type: 'object',
|
|
1511
|
+
},
|
|
1491
1512
|
{
|
|
1492
1513
|
description: 'Access code is being deleted.',
|
|
1493
1514
|
properties: {
|
|
@@ -24274,6 +24295,27 @@ export default {
|
|
|
24274
24295
|
required: ['message', 'warning_code'],
|
|
24275
24296
|
type: 'object',
|
|
24276
24297
|
},
|
|
24298
|
+
{
|
|
24299
|
+
description: 'A backup access code has been pulled and is being used in place of this access code.',
|
|
24300
|
+
properties: {
|
|
24301
|
+
created_at: {
|
|
24302
|
+
description: 'Date and time at which Seam created the warning.',
|
|
24303
|
+
format: 'date-time',
|
|
24304
|
+
type: 'string',
|
|
24305
|
+
},
|
|
24306
|
+
message: {
|
|
24307
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
24308
|
+
type: 'string',
|
|
24309
|
+
},
|
|
24310
|
+
warning_code: {
|
|
24311
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
24312
|
+
enum: ['using_backup_access_code'],
|
|
24313
|
+
type: 'string',
|
|
24314
|
+
},
|
|
24315
|
+
},
|
|
24316
|
+
required: ['message', 'warning_code'],
|
|
24317
|
+
type: 'object',
|
|
24318
|
+
},
|
|
24277
24319
|
{
|
|
24278
24320
|
description: 'Access code is being deleted.',
|
|
24279
24321
|
properties: {
|
|
@@ -44884,6 +44926,7 @@ export default {
|
|
|
44884
44926
|
manage: {
|
|
44885
44927
|
exclude: false,
|
|
44886
44928
|
exclude_reservation_management: false,
|
|
44929
|
+
exclude_reservation_technical_details: false,
|
|
44887
44930
|
exclude_staff_management: false,
|
|
44888
44931
|
},
|
|
44889
44932
|
manage_devices: { exclude: false },
|
|
@@ -45027,6 +45070,11 @@ export default {
|
|
|
45027
45070
|
description: 'Indicates whether the customer can manage reservations for their properties.',
|
|
45028
45071
|
type: 'boolean',
|
|
45029
45072
|
},
|
|
45073
|
+
exclude_reservation_technical_details: {
|
|
45074
|
+
default: false,
|
|
45075
|
+
description: 'Indicates whether to exclude technical details from reservation views.',
|
|
45076
|
+
type: 'boolean',
|
|
45077
|
+
},
|
|
45030
45078
|
exclude_staff_management: {
|
|
45031
45079
|
default: false,
|
|
45032
45080
|
description: 'Indicates whether the customer can manage staff for their properties.',
|
|
@@ -60742,6 +60790,11 @@ export default {
|
|
|
60742
60790
|
description: 'Indicates whether the customer can manage reservations for their properties.',
|
|
60743
60791
|
type: 'boolean',
|
|
60744
60792
|
},
|
|
60793
|
+
exclude_reservation_technical_details: {
|
|
60794
|
+
default: false,
|
|
60795
|
+
description: 'Indicates whether to exclude technical details from reservation views.',
|
|
60796
|
+
type: 'boolean',
|
|
60797
|
+
},
|
|
60745
60798
|
exclude_staff_management: {
|
|
60746
60799
|
default: false,
|
|
60747
60800
|
description: 'Indicates whether the customer can manage staff for their properties.',
|
|
@@ -61110,6 +61163,11 @@ export default {
|
|
|
61110
61163
|
description: 'Indicates whether the customer can manage reservations for their properties.',
|
|
61111
61164
|
type: 'boolean',
|
|
61112
61165
|
},
|
|
61166
|
+
exclude_reservation_technical_details: {
|
|
61167
|
+
default: false,
|
|
61168
|
+
description: 'Indicates whether to exclude technical details from reservation views.',
|
|
61169
|
+
type: 'boolean',
|
|
61170
|
+
},
|
|
61113
61171
|
exclude_staff_management: {
|
|
61114
61172
|
default: false,
|
|
61115
61173
|
description: 'Indicates whether the customer can manage staff for their properties.',
|