@seamapi/types 1.680.0 → 1.682.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 +19 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +102 -38
- package/dist/index.cjs +19 -10
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +16 -16
- package/lib/seam/connect/models/access-codes/managed-access-code.js +5 -5
- 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 +5 -5
- package/lib/seam/connect/models/batch.d.ts +28 -14
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +8 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +45 -11
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +7 -5
- package/src/lib/seam/connect/models/devices/device-metadata.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +11 -4
- package/src/lib/seam/connect/route-types.ts +45 -11
|
@@ -366,6 +366,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
366
366
|
battery_level: z.ZodString;
|
|
367
367
|
locked_state: z.ZodString;
|
|
368
368
|
model: z.ZodOptional<z.ZodString>;
|
|
369
|
+
has_custom_pin_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
369
370
|
}, "strip", z.ZodTypeAny, {
|
|
370
371
|
lock_id: string;
|
|
371
372
|
customer_reference: string;
|
|
@@ -373,6 +374,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
373
374
|
battery_level: string;
|
|
374
375
|
locked_state: string;
|
|
375
376
|
model?: string | undefined;
|
|
377
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
376
378
|
}, {
|
|
377
379
|
lock_id: string;
|
|
378
380
|
customer_reference: string;
|
|
@@ -380,6 +382,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
380
382
|
battery_level: string;
|
|
381
383
|
locked_state: string;
|
|
382
384
|
model?: string | undefined;
|
|
385
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
383
386
|
}>>;
|
|
384
387
|
genie_metadata: z.ZodOptional<z.ZodObject<{
|
|
385
388
|
device_name: z.ZodString;
|
|
@@ -1057,6 +1060,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
1057
1060
|
battery_level: string;
|
|
1058
1061
|
locked_state: string;
|
|
1059
1062
|
model?: string | undefined;
|
|
1063
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
1060
1064
|
} | undefined;
|
|
1061
1065
|
august_metadata?: {
|
|
1062
1066
|
lock_id: string;
|
|
@@ -1320,6 +1324,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
1320
1324
|
battery_level: string;
|
|
1321
1325
|
locked_state: string;
|
|
1322
1326
|
model?: string | undefined;
|
|
1327
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
1323
1328
|
} | undefined;
|
|
1324
1329
|
august_metadata?: {
|
|
1325
1330
|
lock_id: string;
|
|
@@ -643,7 +643,7 @@ export default {
|
|
|
643
643
|
type: 'object',
|
|
644
644
|
},
|
|
645
645
|
{
|
|
646
|
-
description: 'No
|
|
646
|
+
description: 'No Dormakaba Oracode user levels configured for the requested time range.',
|
|
647
647
|
properties: {
|
|
648
648
|
created_at: {
|
|
649
649
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -652,7 +652,7 @@ export default {
|
|
|
652
652
|
},
|
|
653
653
|
error_code: {
|
|
654
654
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
655
|
-
enum: ['
|
|
655
|
+
enum: ['dormakaba_oracode_invalid_time_range'],
|
|
656
656
|
type: 'string',
|
|
657
657
|
},
|
|
658
658
|
is_access_code_error: {
|
|
@@ -10156,6 +10156,10 @@ export default {
|
|
|
10156
10156
|
description: 'Customer reference for a Salto KS device.',
|
|
10157
10157
|
type: 'string',
|
|
10158
10158
|
},
|
|
10159
|
+
has_custom_pin_subscription: {
|
|
10160
|
+
description: 'Indicates whether the site has a Salto KS subscription that supports custom PINs.',
|
|
10161
|
+
type: 'boolean',
|
|
10162
|
+
},
|
|
10159
10163
|
lock_id: {
|
|
10160
10164
|
description: 'Lock ID for a Salto KS device.',
|
|
10161
10165
|
type: 'string',
|
|
@@ -20007,7 +20011,7 @@ export default {
|
|
|
20007
20011
|
type: 'object',
|
|
20008
20012
|
},
|
|
20009
20013
|
{
|
|
20010
|
-
description: 'No
|
|
20014
|
+
description: 'No Dormakaba Oracode user levels configured for the requested time range.',
|
|
20011
20015
|
properties: {
|
|
20012
20016
|
created_at: {
|
|
20013
20017
|
description: 'Date and time at which Seam created the error.',
|
|
@@ -20016,7 +20020,7 @@ export default {
|
|
|
20016
20020
|
},
|
|
20017
20021
|
error_code: {
|
|
20018
20022
|
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
20019
|
-
enum: ['
|
|
20023
|
+
enum: ['dormakaba_oracode_invalid_time_range'],
|
|
20020
20024
|
type: 'string',
|
|
20021
20025
|
},
|
|
20022
20026
|
is_access_code_error: {
|