@seamapi/types 1.209.0 → 1.210.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 +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +72 -4
- package/lib/seam/connect/models/acs/acs-system.d.ts +23 -0
- package/lib/seam/connect/models/acs/acs-system.js +7 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +9 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +34 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +9 -0
- package/src/lib/seam/connect/route-types.ts +56 -10
package/dist/connect.d.cts
CHANGED
|
@@ -586,6 +586,19 @@ declare const acs_system: z.ZodObject<{
|
|
|
586
586
|
acs_system_id: z.ZodString;
|
|
587
587
|
external_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building"]>>;
|
|
588
588
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
589
|
+
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
590
|
+
mobile_access_uuid: z.ZodString;
|
|
591
|
+
system_id: z.ZodString;
|
|
592
|
+
lan_address: z.ZodString;
|
|
593
|
+
}, "strip", z.ZodTypeAny, {
|
|
594
|
+
mobile_access_uuid: string;
|
|
595
|
+
system_id: string;
|
|
596
|
+
lan_address: string;
|
|
597
|
+
}, {
|
|
598
|
+
mobile_access_uuid: string;
|
|
599
|
+
system_id: string;
|
|
600
|
+
lan_address: string;
|
|
601
|
+
}>>;
|
|
589
602
|
system_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building"]>>;
|
|
590
603
|
system_type_display_name: z.ZodOptional<z.ZodString>;
|
|
591
604
|
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -613,6 +626,11 @@ declare const acs_system: z.ZodObject<{
|
|
|
613
626
|
connected_account_ids: string[];
|
|
614
627
|
external_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
615
628
|
external_type_display_name?: string | undefined;
|
|
629
|
+
visionline_metadata?: {
|
|
630
|
+
mobile_access_uuid: string;
|
|
631
|
+
system_id: string;
|
|
632
|
+
lan_address: string;
|
|
633
|
+
} | undefined;
|
|
616
634
|
system_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
617
635
|
system_type_display_name?: string | undefined;
|
|
618
636
|
can_automate_enrollment?: boolean | undefined;
|
|
@@ -639,6 +657,11 @@ declare const acs_system: z.ZodObject<{
|
|
|
639
657
|
connected_account_ids: string[];
|
|
640
658
|
external_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
641
659
|
external_type_display_name?: string | undefined;
|
|
660
|
+
visionline_metadata?: {
|
|
661
|
+
mobile_access_uuid: string;
|
|
662
|
+
system_id: string;
|
|
663
|
+
lan_address: string;
|
|
664
|
+
} | undefined;
|
|
642
665
|
system_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
643
666
|
system_type_display_name?: string | undefined;
|
|
644
667
|
can_automate_enrollment?: boolean | undefined;
|
|
@@ -8478,6 +8501,21 @@ declare const _default: {
|
|
|
8478
8501
|
type: string;
|
|
8479
8502
|
'x-deprecated': string;
|
|
8480
8503
|
};
|
|
8504
|
+
visionline_metadata: {
|
|
8505
|
+
properties: {
|
|
8506
|
+
lan_address: {
|
|
8507
|
+
type: string;
|
|
8508
|
+
};
|
|
8509
|
+
mobile_access_uuid: {
|
|
8510
|
+
type: string;
|
|
8511
|
+
};
|
|
8512
|
+
system_id: {
|
|
8513
|
+
type: string;
|
|
8514
|
+
};
|
|
8515
|
+
};
|
|
8516
|
+
required: string[];
|
|
8517
|
+
type: string;
|
|
8518
|
+
};
|
|
8481
8519
|
warnings: {
|
|
8482
8520
|
items: {
|
|
8483
8521
|
properties: {};
|
|
@@ -27463,6 +27501,11 @@ interface Routes {
|
|
|
27463
27501
|
external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
27464
27502
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
27465
27503
|
external_type_display_name?: string | undefined;
|
|
27504
|
+
visionline_metadata?: {
|
|
27505
|
+
mobile_access_uuid: string;
|
|
27506
|
+
system_id: string;
|
|
27507
|
+
lan_address: string;
|
|
27508
|
+
} | undefined;
|
|
27466
27509
|
/**
|
|
27467
27510
|
* @deprecated Use `external_type`. */
|
|
27468
27511
|
system_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
@@ -27528,6 +27571,11 @@ interface Routes {
|
|
|
27528
27571
|
external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
27529
27572
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
27530
27573
|
external_type_display_name?: string | undefined;
|
|
27574
|
+
visionline_metadata?: {
|
|
27575
|
+
mobile_access_uuid: string;
|
|
27576
|
+
system_id: string;
|
|
27577
|
+
lan_address: string;
|
|
27578
|
+
} | undefined;
|
|
27531
27579
|
/**
|
|
27532
27580
|
* @deprecated Use `external_type`. */
|
|
27533
27581
|
system_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
@@ -27592,6 +27640,11 @@ interface Routes {
|
|
|
27592
27640
|
external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
27593
27641
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
27594
27642
|
external_type_display_name?: string | undefined;
|
|
27643
|
+
visionline_metadata?: {
|
|
27644
|
+
mobile_access_uuid: string;
|
|
27645
|
+
system_id: string;
|
|
27646
|
+
lan_address: string;
|
|
27647
|
+
} | undefined;
|
|
27595
27648
|
/**
|
|
27596
27649
|
* @deprecated Use `external_type`. */
|
|
27597
27650
|
system_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
@@ -33713,7 +33766,7 @@ interface Routes {
|
|
|
33713
33766
|
}) & ({
|
|
33714
33767
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
33715
33768
|
code_constraints?: (Array<{
|
|
33716
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089';
|
|
33769
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789';
|
|
33717
33770
|
} | {
|
|
33718
33771
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
33719
33772
|
min_length?: number | undefined;
|
|
@@ -33922,13 +33975,18 @@ interface Routes {
|
|
|
33922
33975
|
workspace_id: string;
|
|
33923
33976
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
33924
33977
|
errors: Array<{
|
|
33978
|
+
message: string;
|
|
33979
|
+
is_device_error: true;
|
|
33925
33980
|
error_code: string;
|
|
33981
|
+
} | {
|
|
33926
33982
|
message: string;
|
|
33983
|
+
is_connected_account_error: true;
|
|
33984
|
+
error_code: string;
|
|
33927
33985
|
}>;
|
|
33928
33986
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
33929
33987
|
warnings: Array<{
|
|
33930
|
-
warning_code: string;
|
|
33931
33988
|
message: string;
|
|
33989
|
+
warning_code: string;
|
|
33932
33990
|
}>;
|
|
33933
33991
|
/** Date and time at which the device object was created. */
|
|
33934
33992
|
created_at: string;
|
|
@@ -34223,7 +34281,7 @@ interface Routes {
|
|
|
34223
34281
|
}) & ({
|
|
34224
34282
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
34225
34283
|
code_constraints?: (Array<{
|
|
34226
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089';
|
|
34284
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789';
|
|
34227
34285
|
} | {
|
|
34228
34286
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
34229
34287
|
min_length?: number | undefined;
|
|
@@ -34432,13 +34490,18 @@ interface Routes {
|
|
|
34432
34490
|
workspace_id: string;
|
|
34433
34491
|
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
34434
34492
|
errors: Array<{
|
|
34493
|
+
message: string;
|
|
34494
|
+
is_device_error: true;
|
|
34435
34495
|
error_code: string;
|
|
34496
|
+
} | {
|
|
34436
34497
|
message: string;
|
|
34498
|
+
is_connected_account_error: true;
|
|
34499
|
+
error_code: string;
|
|
34437
34500
|
}>;
|
|
34438
34501
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
34439
34502
|
warnings: Array<{
|
|
34440
|
-
warning_code: string;
|
|
34441
34503
|
message: string;
|
|
34504
|
+
warning_code: string;
|
|
34442
34505
|
}>;
|
|
34443
34506
|
/** Date and time at which the device object was created. */
|
|
34444
34507
|
created_at: string;
|
|
@@ -40184,6 +40247,11 @@ interface Routes {
|
|
|
40184
40247
|
external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
40185
40248
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
40186
40249
|
external_type_display_name?: string | undefined;
|
|
40250
|
+
visionline_metadata?: {
|
|
40251
|
+
mobile_access_uuid: string;
|
|
40252
|
+
system_id: string;
|
|
40253
|
+
lan_address: string;
|
|
40254
|
+
} | undefined;
|
|
40187
40255
|
/**
|
|
40188
40256
|
* @deprecated Use `external_type`. */
|
|
40189
40257
|
system_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
@@ -105,6 +105,19 @@ export declare const acs_system: z.ZodObject<{
|
|
|
105
105
|
acs_system_id: z.ZodString;
|
|
106
106
|
external_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building"]>>;
|
|
107
107
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
108
|
+
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
109
|
+
mobile_access_uuid: z.ZodString;
|
|
110
|
+
system_id: z.ZodString;
|
|
111
|
+
lan_address: z.ZodString;
|
|
112
|
+
}, "strip", z.ZodTypeAny, {
|
|
113
|
+
mobile_access_uuid: string;
|
|
114
|
+
system_id: string;
|
|
115
|
+
lan_address: string;
|
|
116
|
+
}, {
|
|
117
|
+
mobile_access_uuid: string;
|
|
118
|
+
system_id: string;
|
|
119
|
+
lan_address: string;
|
|
120
|
+
}>>;
|
|
108
121
|
system_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building"]>>;
|
|
109
122
|
system_type_display_name: z.ZodOptional<z.ZodString>;
|
|
110
123
|
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -132,6 +145,11 @@ export declare const acs_system: z.ZodObject<{
|
|
|
132
145
|
connected_account_ids: string[];
|
|
133
146
|
external_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
134
147
|
external_type_display_name?: string | undefined;
|
|
148
|
+
visionline_metadata?: {
|
|
149
|
+
mobile_access_uuid: string;
|
|
150
|
+
system_id: string;
|
|
151
|
+
lan_address: string;
|
|
152
|
+
} | undefined;
|
|
135
153
|
system_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
136
154
|
system_type_display_name?: string | undefined;
|
|
137
155
|
can_automate_enrollment?: boolean | undefined;
|
|
@@ -158,6 +176,11 @@ export declare const acs_system: z.ZodObject<{
|
|
|
158
176
|
connected_account_ids: string[];
|
|
159
177
|
external_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
160
178
|
external_type_display_name?: string | undefined;
|
|
179
|
+
visionline_metadata?: {
|
|
180
|
+
mobile_access_uuid: string;
|
|
181
|
+
system_id: string;
|
|
182
|
+
lan_address: string;
|
|
183
|
+
} | undefined;
|
|
161
184
|
system_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
162
185
|
system_type_display_name?: string | undefined;
|
|
163
186
|
can_automate_enrollment?: boolean | undefined;
|
|
@@ -75,6 +75,13 @@ export const acs_system = z
|
|
|
75
75
|
.string()
|
|
76
76
|
.describe('Display name that corresponds to the brand-specific terminology for the `acs_system` type.')
|
|
77
77
|
.optional(),
|
|
78
|
+
visionline_metadata: z
|
|
79
|
+
.object({
|
|
80
|
+
mobile_access_uuid: z.string(),
|
|
81
|
+
system_id: z.string(),
|
|
82
|
+
lan_address: z.string(),
|
|
83
|
+
})
|
|
84
|
+
.optional(),
|
|
78
85
|
system_type: acs_system_external_type
|
|
79
86
|
.describe(`
|
|
80
87
|
---
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-system.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-system.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"acs-system.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-system.ts"],"names":[],"mappings":"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"}
|
|
@@ -587,6 +587,21 @@ declare const _default: {
|
|
|
587
587
|
type: string;
|
|
588
588
|
'x-deprecated': string;
|
|
589
589
|
};
|
|
590
|
+
visionline_metadata: {
|
|
591
|
+
properties: {
|
|
592
|
+
lan_address: {
|
|
593
|
+
type: string;
|
|
594
|
+
};
|
|
595
|
+
mobile_access_uuid: {
|
|
596
|
+
type: string;
|
|
597
|
+
};
|
|
598
|
+
system_id: {
|
|
599
|
+
type: string;
|
|
600
|
+
};
|
|
601
|
+
};
|
|
602
|
+
required: string[];
|
|
603
|
+
type: string;
|
|
604
|
+
};
|
|
590
605
|
warnings: {
|
|
591
606
|
items: {
|
|
592
607
|
properties: {};
|
|
@@ -553,6 +553,15 @@ export default {
|
|
|
553
553
|
type: 'string',
|
|
554
554
|
'x-deprecated': 'Use `external_type_display_name`.',
|
|
555
555
|
},
|
|
556
|
+
visionline_metadata: {
|
|
557
|
+
properties: {
|
|
558
|
+
lan_address: { type: 'string' },
|
|
559
|
+
mobile_access_uuid: { type: 'string' },
|
|
560
|
+
system_id: { type: 'string' },
|
|
561
|
+
},
|
|
562
|
+
required: ['mobile_access_uuid', 'system_id', 'lan_address'],
|
|
563
|
+
type: 'object',
|
|
564
|
+
},
|
|
556
565
|
warnings: {
|
|
557
566
|
items: { properties: {}, type: 'object' },
|
|
558
567
|
type: 'array',
|