@seamapi/types 1.716.0 → 1.717.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 +12 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +46 -46
- package/dist/index.cjs +12 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -14
- package/lib/seam/connect/models/devices/capability-properties/access-code.d.ts +11 -11
- package/lib/seam/connect/models/devices/capability-properties/access-code.js +2 -1
- package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -5
- package/lib/seam/connect/models/devices/device.d.ts +7 -7
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -5
- package/lib/seam/connect/openapi.js +7 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +20 -20
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +7 -0
- package/src/lib/seam/connect/route-types.ts +20 -0
package/dist/connect.d.cts
CHANGED
|
@@ -12129,11 +12129,11 @@ declare const batch: z.ZodObject<{
|
|
|
12129
12129
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
12130
12130
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
12131
12131
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
12132
|
-
constraint_type: z.ZodEnum<["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", "unique_first_four_digits"]>;
|
|
12132
|
+
constraint_type: z.ZodEnum<["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", "unique_first_four_digits", "no_all_same_digits"]>;
|
|
12133
12133
|
}, "strip", z.ZodTypeAny, {
|
|
12134
|
-
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" | "unique_first_four_digits";
|
|
12134
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
12135
12135
|
}, {
|
|
12136
|
-
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" | "unique_first_four_digits";
|
|
12136
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
12137
12137
|
}>, z.ZodObject<{
|
|
12138
12138
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
12139
12139
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12164,7 +12164,7 @@ declare const batch: z.ZodObject<{
|
|
|
12164
12164
|
}, "strip", z.ZodTypeAny, {
|
|
12165
12165
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
12166
12166
|
code_constraints?: ({
|
|
12167
|
-
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" | "unique_first_four_digits";
|
|
12167
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
12168
12168
|
} | {
|
|
12169
12169
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
12170
12170
|
min_length?: number | undefined;
|
|
@@ -12182,7 +12182,7 @@ declare const batch: z.ZodObject<{
|
|
|
12182
12182
|
}, {
|
|
12183
12183
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
12184
12184
|
code_constraints?: ({
|
|
12185
|
-
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" | "unique_first_four_digits";
|
|
12185
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
12186
12186
|
} | {
|
|
12187
12187
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
12188
12188
|
min_length?: number | undefined;
|
|
@@ -14005,7 +14005,7 @@ declare const batch: z.ZodObject<{
|
|
|
14005
14005
|
} & {
|
|
14006
14006
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
14007
14007
|
code_constraints?: ({
|
|
14008
|
-
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" | "unique_first_four_digits";
|
|
14008
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
14009
14009
|
} | {
|
|
14010
14010
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
14011
14011
|
min_length?: number | undefined;
|
|
@@ -14703,7 +14703,7 @@ declare const batch: z.ZodObject<{
|
|
|
14703
14703
|
} & {
|
|
14704
14704
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
14705
14705
|
code_constraints?: ({
|
|
14706
|
-
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" | "unique_first_four_digits";
|
|
14706
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
14707
14707
|
} | {
|
|
14708
14708
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
14709
14709
|
min_length?: number | undefined;
|
|
@@ -23506,11 +23506,11 @@ declare const batch: z.ZodObject<{
|
|
|
23506
23506
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
23507
23507
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
23508
23508
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
23509
|
-
constraint_type: z.ZodEnum<["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", "unique_first_four_digits"]>;
|
|
23509
|
+
constraint_type: z.ZodEnum<["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", "unique_first_four_digits", "no_all_same_digits"]>;
|
|
23510
23510
|
}, "strip", z.ZodTypeAny, {
|
|
23511
|
-
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" | "unique_first_four_digits";
|
|
23511
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
23512
23512
|
}, {
|
|
23513
|
-
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" | "unique_first_four_digits";
|
|
23513
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
23514
23514
|
}>, z.ZodObject<{
|
|
23515
23515
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
23516
23516
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23541,7 +23541,7 @@ declare const batch: z.ZodObject<{
|
|
|
23541
23541
|
}, "strip", z.ZodTypeAny, {
|
|
23542
23542
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
23543
23543
|
code_constraints?: ({
|
|
23544
|
-
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" | "unique_first_four_digits";
|
|
23544
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
23545
23545
|
} | {
|
|
23546
23546
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
23547
23547
|
min_length?: number | undefined;
|
|
@@ -23559,7 +23559,7 @@ declare const batch: z.ZodObject<{
|
|
|
23559
23559
|
}, {
|
|
23560
23560
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
23561
23561
|
code_constraints?: ({
|
|
23562
|
-
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" | "unique_first_four_digits";
|
|
23562
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
23563
23563
|
} | {
|
|
23564
23564
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
23565
23565
|
min_length?: number | undefined;
|
|
@@ -32801,7 +32801,7 @@ declare const batch: z.ZodObject<{
|
|
|
32801
32801
|
} & {
|
|
32802
32802
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
32803
32803
|
code_constraints?: ({
|
|
32804
|
-
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" | "unique_first_four_digits";
|
|
32804
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
32805
32805
|
} | {
|
|
32806
32806
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
32807
32807
|
min_length?: number | undefined;
|
|
@@ -36928,7 +36928,7 @@ declare const batch: z.ZodObject<{
|
|
|
36928
36928
|
} & {
|
|
36929
36929
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
36930
36930
|
code_constraints?: ({
|
|
36931
|
-
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" | "unique_first_four_digits";
|
|
36931
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
36932
36932
|
} | {
|
|
36933
36933
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
36934
36934
|
min_length?: number | undefined;
|
|
@@ -43524,11 +43524,11 @@ declare const device: z.ZodObject<{
|
|
|
43524
43524
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
43525
43525
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
43526
43526
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
43527
|
-
constraint_type: z.ZodEnum<["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", "unique_first_four_digits"]>;
|
|
43527
|
+
constraint_type: z.ZodEnum<["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", "unique_first_four_digits", "no_all_same_digits"]>;
|
|
43528
43528
|
}, "strip", z.ZodTypeAny, {
|
|
43529
|
-
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" | "unique_first_four_digits";
|
|
43529
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
43530
43530
|
}, {
|
|
43531
|
-
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" | "unique_first_four_digits";
|
|
43531
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
43532
43532
|
}>, z.ZodObject<{
|
|
43533
43533
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
43534
43534
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -43559,7 +43559,7 @@ declare const device: z.ZodObject<{
|
|
|
43559
43559
|
}, "strip", z.ZodTypeAny, {
|
|
43560
43560
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
43561
43561
|
code_constraints?: ({
|
|
43562
|
-
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" | "unique_first_four_digits";
|
|
43562
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
43563
43563
|
} | {
|
|
43564
43564
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
43565
43565
|
min_length?: number | undefined;
|
|
@@ -43577,7 +43577,7 @@ declare const device: z.ZodObject<{
|
|
|
43577
43577
|
}, {
|
|
43578
43578
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
43579
43579
|
code_constraints?: ({
|
|
43580
|
-
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" | "unique_first_four_digits";
|
|
43580
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
43581
43581
|
} | {
|
|
43582
43582
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
43583
43583
|
min_length?: number | undefined;
|
|
@@ -45400,7 +45400,7 @@ declare const device: z.ZodObject<{
|
|
|
45400
45400
|
} & {
|
|
45401
45401
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
45402
45402
|
code_constraints?: ({
|
|
45403
|
-
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" | "unique_first_four_digits";
|
|
45403
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
45404
45404
|
} | {
|
|
45405
45405
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
45406
45406
|
min_length?: number | undefined;
|
|
@@ -46098,7 +46098,7 @@ declare const device: z.ZodObject<{
|
|
|
46098
46098
|
} & {
|
|
46099
46099
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
46100
46100
|
code_constraints?: ({
|
|
46101
|
-
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" | "unique_first_four_digits";
|
|
46101
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
46102
46102
|
} | {
|
|
46103
46103
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
46104
46104
|
min_length?: number | undefined;
|
|
@@ -48034,11 +48034,11 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
48034
48034
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
48035
48035
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
48036
48036
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
48037
|
-
constraint_type: z.ZodEnum<["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", "unique_first_four_digits"]>;
|
|
48037
|
+
constraint_type: z.ZodEnum<["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", "unique_first_four_digits", "no_all_same_digits"]>;
|
|
48038
48038
|
}, "strip", z.ZodTypeAny, {
|
|
48039
|
-
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" | "unique_first_four_digits";
|
|
48039
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
48040
48040
|
}, {
|
|
48041
|
-
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" | "unique_first_four_digits";
|
|
48041
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
48042
48042
|
}>, z.ZodObject<{
|
|
48043
48043
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
48044
48044
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -48069,7 +48069,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
48069
48069
|
}, "strip", z.ZodTypeAny, {
|
|
48070
48070
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
48071
48071
|
code_constraints?: ({
|
|
48072
|
-
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" | "unique_first_four_digits";
|
|
48072
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
48073
48073
|
} | {
|
|
48074
48074
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
48075
48075
|
min_length?: number | undefined;
|
|
@@ -48087,7 +48087,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
48087
48087
|
}, {
|
|
48088
48088
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
48089
48089
|
code_constraints?: ({
|
|
48090
|
-
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" | "unique_first_four_digits";
|
|
48090
|
+
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" | "unique_first_four_digits" | "no_all_same_digits";
|
|
48091
48091
|
} | {
|
|
48092
48092
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
48093
48093
|
min_length?: number | undefined;
|
|
@@ -127840,7 +127840,7 @@ type Routes = {
|
|
|
127840
127840
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
127841
127841
|
code_constraints?: (({
|
|
127842
127842
|
/** Code constraint type for access codes. */
|
|
127843
|
-
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' | 'unique_first_four_digits';
|
|
127843
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
127844
127844
|
} | {
|
|
127845
127845
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
127846
127846
|
/** Minimum name length constraint for access codes. */
|
|
@@ -131338,7 +131338,7 @@ type Routes = {
|
|
|
131338
131338
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
131339
131339
|
code_constraints?: (({
|
|
131340
131340
|
/** Code constraint type for access codes. */
|
|
131341
|
-
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' | 'unique_first_four_digits';
|
|
131341
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
131342
131342
|
} | {
|
|
131343
131343
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
131344
131344
|
/** Minimum name length constraint for access codes. */
|
|
@@ -145107,7 +145107,7 @@ type Routes = {
|
|
|
145107
145107
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
145108
145108
|
code_constraints?: (({
|
|
145109
145109
|
/** Code constraint type for access codes. */
|
|
145110
|
-
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' | 'unique_first_four_digits';
|
|
145110
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
145111
145111
|
} | {
|
|
145112
145112
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
145113
145113
|
/** Minimum name length constraint for access codes. */
|
|
@@ -145778,7 +145778,7 @@ type Routes = {
|
|
|
145778
145778
|
/** Array of device types for which you want to list devices. */
|
|
145779
145779
|
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
145780
145780
|
/** Manufacturer for which you want to list devices. */
|
|
145781
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq') | undefined;
|
|
145781
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq') | undefined;
|
|
145782
145782
|
/** Array of device IDs for which you want to list devices. */
|
|
145783
145783
|
device_ids?: string[] | undefined;
|
|
145784
145784
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -146435,7 +146435,7 @@ type Routes = {
|
|
|
146435
146435
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
146436
146436
|
code_constraints?: (({
|
|
146437
146437
|
/** Code constraint type for access codes. */
|
|
146438
|
-
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' | 'unique_first_four_digits';
|
|
146438
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
146439
146439
|
} | {
|
|
146440
146440
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
146441
146441
|
/** Minimum name length constraint for access codes. */
|
|
@@ -147674,7 +147674,7 @@ type Routes = {
|
|
|
147674
147674
|
/** Array of device types for which you want to list devices. */
|
|
147675
147675
|
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
147676
147676
|
/** Manufacturer for which you want to list devices. */
|
|
147677
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq') | undefined;
|
|
147677
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq') | undefined;
|
|
147678
147678
|
/** Array of device IDs for which you want to list devices. */
|
|
147679
147679
|
device_ids?: string[] | undefined;
|
|
147680
147680
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -153091,7 +153091,7 @@ type Routes = {
|
|
|
153091
153091
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
153092
153092
|
code_constraints?: (({
|
|
153093
153093
|
/** Code constraint type for access codes. */
|
|
153094
|
-
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' | 'unique_first_four_digits';
|
|
153094
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
153095
153095
|
} | {
|
|
153096
153096
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
153097
153097
|
/** Minimum name length constraint for access codes. */
|
|
@@ -154369,7 +154369,7 @@ type Routes = {
|
|
|
154369
154369
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
154370
154370
|
code_constraints?: (({
|
|
154371
154371
|
/** Code constraint type for access codes. */
|
|
154372
|
-
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' | 'unique_first_four_digits';
|
|
154372
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
154373
154373
|
} | {
|
|
154374
154374
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
154375
154375
|
/** Minimum name length constraint for access codes. */
|
|
@@ -155040,7 +155040,7 @@ type Routes = {
|
|
|
155040
155040
|
/** Device types of the locks that you want to list. */
|
|
155041
155041
|
device_types?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock')[] | undefined;
|
|
155042
155042
|
/** Manufacturer of the locks that you want to list. */
|
|
155043
|
-
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'korelock' | 'kwikset2' | 'smartthings' | 'ultraloq') | undefined;
|
|
155043
|
+
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'korelock' | 'kwikset2' | 'smartthings' | 'ultraloq') | undefined;
|
|
155044
155044
|
/** Array of device IDs for which you want to list devices. */
|
|
155045
155045
|
device_ids?: string[] | undefined;
|
|
155046
155046
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -155697,7 +155697,7 @@ type Routes = {
|
|
|
155697
155697
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
155698
155698
|
code_constraints?: (({
|
|
155699
155699
|
/** Code constraint type for access codes. */
|
|
155700
|
-
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' | 'unique_first_four_digits';
|
|
155700
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
155701
155701
|
} | {
|
|
155702
155702
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
155703
155703
|
/** Minimum name length constraint for access codes. */
|
|
@@ -156974,7 +156974,7 @@ type Routes = {
|
|
|
156974
156974
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
156975
156975
|
code_constraints?: (({
|
|
156976
156976
|
/** Code constraint type for access codes. */
|
|
156977
|
-
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' | 'unique_first_four_digits';
|
|
156977
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
156978
156978
|
} | {
|
|
156979
156979
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
156980
156980
|
/** Minimum name length constraint for access codes. */
|
|
@@ -163384,7 +163384,7 @@ type Routes = {
|
|
|
163384
163384
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
163385
163385
|
code_constraints?: (({
|
|
163386
163386
|
/** Code constraint type for access codes. */
|
|
163387
|
-
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' | 'unique_first_four_digits';
|
|
163387
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
163388
163388
|
} | {
|
|
163389
163389
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
163390
163390
|
/** Minimum name length constraint for access codes. */
|
|
@@ -164661,7 +164661,7 @@ type Routes = {
|
|
|
164661
164661
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
164662
164662
|
code_constraints?: (({
|
|
164663
164663
|
/** Code constraint type for access codes. */
|
|
164664
|
-
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' | 'unique_first_four_digits';
|
|
164664
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
164665
164665
|
} | {
|
|
164666
164666
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
164667
164667
|
/** Minimum name length constraint for access codes. */
|
|
@@ -174800,7 +174800,7 @@ type Routes = {
|
|
|
174800
174800
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
174801
174801
|
code_constraints?: (({
|
|
174802
174802
|
/** Code constraint type for access codes. */
|
|
174803
|
-
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' | 'unique_first_four_digits';
|
|
174803
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
174804
174804
|
} | {
|
|
174805
174805
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
174806
174806
|
/** Minimum name length constraint for access codes. */
|
|
@@ -180528,7 +180528,7 @@ type Routes = {
|
|
|
180528
180528
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
180529
180529
|
code_constraints?: (({
|
|
180530
180530
|
/** Code constraint type for access codes. */
|
|
180531
|
-
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' | 'unique_first_four_digits';
|
|
180531
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
180532
180532
|
} | {
|
|
180533
180533
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
180534
180534
|
/** Minimum name length constraint for access codes. */
|
|
@@ -184410,7 +184410,7 @@ type Routes = {
|
|
|
184410
184410
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
184411
184411
|
code_constraints?: (({
|
|
184412
184412
|
/** Code constraint type for access codes. */
|
|
184413
|
-
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' | 'unique_first_four_digits';
|
|
184413
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
184414
184414
|
} | {
|
|
184415
184415
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
184416
184416
|
/** Minimum name length constraint for access codes. */
|
|
@@ -185687,7 +185687,7 @@ type Routes = {
|
|
|
185687
185687
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
185688
185688
|
code_constraints?: (({
|
|
185689
185689
|
/** Code constraint type for access codes. */
|
|
185690
|
-
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' | 'unique_first_four_digits';
|
|
185690
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
185691
185691
|
} | {
|
|
185692
185692
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
185693
185693
|
/** Minimum name length constraint for access codes. */
|
|
@@ -192984,7 +192984,7 @@ type Routes = {
|
|
|
192984
192984
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
192985
192985
|
code_constraints?: (({
|
|
192986
192986
|
/** Code constraint type for access codes. */
|
|
192987
|
-
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' | 'unique_first_four_digits';
|
|
192987
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
192988
192988
|
} | {
|
|
192989
192989
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
192990
192990
|
/** Minimum name length constraint for access codes. */
|
|
@@ -194263,7 +194263,7 @@ type Routes = {
|
|
|
194263
194263
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
194264
194264
|
code_constraints?: (({
|
|
194265
194265
|
/** Code constraint type for access codes. */
|
|
194266
|
-
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' | 'unique_first_four_digits';
|
|
194266
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
194267
194267
|
} | {
|
|
194268
194268
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
194269
194269
|
/** Minimum name length constraint for access codes. */
|
|
@@ -196507,7 +196507,7 @@ type Routes = {
|
|
|
196507
196507
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
196508
196508
|
code_constraints?: (({
|
|
196509
196509
|
/** Code constraint type for access codes. */
|
|
196510
|
-
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' | 'unique_first_four_digits';
|
|
196510
|
+
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' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
196511
196511
|
} | {
|
|
196512
196512
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
196513
196513
|
/** Minimum name length constraint for access codes. */
|
package/dist/index.cjs
CHANGED
|
@@ -75,15 +75,17 @@ var access_code_code_constraint = zod.z.object({
|
|
|
75
75
|
"start_date_in_future",
|
|
76
76
|
// Kwikset
|
|
77
77
|
"no_ascending_or_descending_sequence",
|
|
78
|
-
// Tedee
|
|
78
|
+
// Tedee, Korelock
|
|
79
79
|
"at_least_three_unique_digits",
|
|
80
80
|
// Tedee
|
|
81
81
|
"cannot_contain_089",
|
|
82
82
|
// TTLock
|
|
83
83
|
"cannot_contain_0789",
|
|
84
84
|
// TTLock (for some cylinder devices only)
|
|
85
|
-
"unique_first_four_digits"
|
|
85
|
+
"unique_first_four_digits",
|
|
86
86
|
// Schlage
|
|
87
|
+
"no_all_same_digits"
|
|
88
|
+
// Korelock
|
|
87
89
|
]).describe(`Code constraint type for access codes.`)
|
|
88
90
|
}).describe(`Code constraint for access codes.`);
|
|
89
91
|
var access_code_name_constraint = zod.z.object({
|
|
@@ -16708,7 +16710,8 @@ var openapi_default = {
|
|
|
16708
16710
|
"at_least_three_unique_digits",
|
|
16709
16711
|
"cannot_contain_089",
|
|
16710
16712
|
"cannot_contain_0789",
|
|
16711
|
-
"unique_first_four_digits"
|
|
16713
|
+
"unique_first_four_digits",
|
|
16714
|
+
"no_all_same_digits"
|
|
16712
16715
|
],
|
|
16713
16716
|
type: "string"
|
|
16714
16717
|
}
|
|
@@ -47008,6 +47011,7 @@ var openapi_default = {
|
|
|
47008
47011
|
"controlbyweb",
|
|
47009
47012
|
"dormakaba_oracode",
|
|
47010
47013
|
"tedee",
|
|
47014
|
+
"korelock",
|
|
47011
47015
|
"akiles",
|
|
47012
47016
|
"ecobee",
|
|
47013
47017
|
"honeywell_resideo",
|
|
@@ -47488,6 +47492,7 @@ var openapi_default = {
|
|
|
47488
47492
|
"controlbyweb",
|
|
47489
47493
|
"dormakaba_oracode",
|
|
47490
47494
|
"tedee",
|
|
47495
|
+
"korelock",
|
|
47491
47496
|
"akiles",
|
|
47492
47497
|
"ecobee",
|
|
47493
47498
|
"honeywell_resideo",
|
|
@@ -48833,6 +48838,7 @@ var openapi_default = {
|
|
|
48833
48838
|
"controlbyweb",
|
|
48834
48839
|
"dormakaba_oracode",
|
|
48835
48840
|
"tedee",
|
|
48841
|
+
"korelock",
|
|
48836
48842
|
"akiles",
|
|
48837
48843
|
"ecobee",
|
|
48838
48844
|
"honeywell_resideo",
|
|
@@ -49312,6 +49318,7 @@ var openapi_default = {
|
|
|
49312
49318
|
"controlbyweb",
|
|
49313
49319
|
"dormakaba_oracode",
|
|
49314
49320
|
"tedee",
|
|
49321
|
+
"korelock",
|
|
49315
49322
|
"akiles",
|
|
49316
49323
|
"ecobee",
|
|
49317
49324
|
"honeywell_resideo",
|
|
@@ -51303,6 +51310,7 @@ var openapi_default = {
|
|
|
51303
51310
|
"four_suites",
|
|
51304
51311
|
"dormakaba_oracode",
|
|
51305
51312
|
"tedee",
|
|
51313
|
+
"korelock",
|
|
51306
51314
|
"akiles",
|
|
51307
51315
|
"korelock",
|
|
51308
51316
|
"kwikset2",
|
|
@@ -51710,6 +51718,7 @@ var openapi_default = {
|
|
|
51710
51718
|
"four_suites",
|
|
51711
51719
|
"dormakaba_oracode",
|
|
51712
51720
|
"tedee",
|
|
51721
|
+
"korelock",
|
|
51713
51722
|
"akiles",
|
|
51714
51723
|
"korelock",
|
|
51715
51724
|
"kwikset2",
|