@seamapi/types 1.475.0 → 1.477.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 +91 -28
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +107 -47
- package/dist/index.cjs +91 -28
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +55 -55
- package/lib/seam/connect/models/customization_profiles/customization_profile.d.ts +4 -1
- package/lib/seam/connect/models/customization_profiles/customization_profile.js +11 -3
- package/lib/seam/connect/models/customization_profiles/customization_profile.js.map +1 -1
- 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 +1 -0
- 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.d.ts +52 -0
- package/lib/seam/connect/openapi.js +64 -11
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +25 -20
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customization_profiles/customization_profile.ts +11 -3
- package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +65 -11
- package/src/lib/seam/connect/route-types.ts +25 -3
|
@@ -1565,11 +1565,11 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1565
1565
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
1566
1566
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1567
1567
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1568
|
-
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"]>;
|
|
1568
|
+
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"]>;
|
|
1569
1569
|
}, "strip", z.ZodTypeAny, {
|
|
1570
|
-
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";
|
|
1570
|
+
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";
|
|
1571
1571
|
}, {
|
|
1572
|
-
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";
|
|
1572
|
+
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";
|
|
1573
1573
|
}>, z.ZodObject<{
|
|
1574
1574
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
1575
1575
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1600,7 +1600,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1600
1600
|
}, "strip", z.ZodTypeAny, {
|
|
1601
1601
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
1602
1602
|
code_constraints?: ({
|
|
1603
|
-
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";
|
|
1603
|
+
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";
|
|
1604
1604
|
} | {
|
|
1605
1605
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
1606
1606
|
min_length?: number | undefined;
|
|
@@ -1618,7 +1618,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1618
1618
|
}, {
|
|
1619
1619
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
1620
1620
|
code_constraints?: ({
|
|
1621
|
-
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";
|
|
1621
|
+
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";
|
|
1622
1622
|
} | {
|
|
1623
1623
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
1624
1624
|
min_length?: number | undefined;
|
|
@@ -3359,7 +3359,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3359
3359
|
} & {
|
|
3360
3360
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
3361
3361
|
code_constraints?: ({
|
|
3362
|
-
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";
|
|
3362
|
+
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";
|
|
3363
3363
|
} | {
|
|
3364
3364
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
3365
3365
|
min_length?: number | undefined;
|
|
@@ -4015,7 +4015,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4015
4015
|
} & {
|
|
4016
4016
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
4017
4017
|
code_constraints?: ({
|
|
4018
|
-
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";
|
|
4018
|
+
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";
|
|
4019
4019
|
} | {
|
|
4020
4020
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
4021
4021
|
min_length?: number | undefined;
|
|
@@ -5623,7 +5623,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5623
5623
|
} & {
|
|
5624
5624
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
5625
5625
|
code_constraints?: ({
|
|
5626
|
-
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";
|
|
5626
|
+
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";
|
|
5627
5627
|
} | {
|
|
5628
5628
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
5629
5629
|
min_length?: number | undefined;
|
|
@@ -6488,7 +6488,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6488
6488
|
} & {
|
|
6489
6489
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
6490
6490
|
code_constraints?: ({
|
|
6491
|
-
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";
|
|
6491
|
+
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";
|
|
6492
6492
|
} | {
|
|
6493
6493
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
6494
6494
|
min_length?: number | undefined;
|
|
@@ -8419,11 +8419,11 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8419
8419
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
8420
8420
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
8421
8421
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
8422
|
-
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"]>;
|
|
8422
|
+
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"]>;
|
|
8423
8423
|
}, "strip", z.ZodTypeAny, {
|
|
8424
|
-
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";
|
|
8424
|
+
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";
|
|
8425
8425
|
}, {
|
|
8426
|
-
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";
|
|
8426
|
+
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";
|
|
8427
8427
|
}>, z.ZodObject<{
|
|
8428
8428
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
8429
8429
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8454,7 +8454,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8454
8454
|
}, "strip", z.ZodTypeAny, {
|
|
8455
8455
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
8456
8456
|
code_constraints?: ({
|
|
8457
|
-
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";
|
|
8457
|
+
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";
|
|
8458
8458
|
} | {
|
|
8459
8459
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
8460
8460
|
min_length?: number | undefined;
|
|
@@ -8472,7 +8472,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8472
8472
|
}, {
|
|
8473
8473
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
8474
8474
|
code_constraints?: ({
|
|
8475
|
-
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";
|
|
8475
|
+
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";
|
|
8476
8476
|
} | {
|
|
8477
8477
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
8478
8478
|
min_length?: number | undefined;
|
|
@@ -10213,7 +10213,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10213
10213
|
} & {
|
|
10214
10214
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
10215
10215
|
code_constraints?: ({
|
|
10216
|
-
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";
|
|
10216
|
+
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";
|
|
10217
10217
|
} | {
|
|
10218
10218
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
10219
10219
|
min_length?: number | undefined;
|
|
@@ -10869,7 +10869,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10869
10869
|
} & {
|
|
10870
10870
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
10871
10871
|
code_constraints?: ({
|
|
10872
|
-
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";
|
|
10872
|
+
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";
|
|
10873
10873
|
} | {
|
|
10874
10874
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
10875
10875
|
min_length?: number | undefined;
|
|
@@ -12587,7 +12587,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12587
12587
|
} & {
|
|
12588
12588
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
12589
12589
|
code_constraints?: ({
|
|
12590
|
-
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";
|
|
12590
|
+
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";
|
|
12591
12591
|
} | {
|
|
12592
12592
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
12593
12593
|
min_length?: number | undefined;
|
|
@@ -13479,7 +13479,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13479
13479
|
} & {
|
|
13480
13480
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
13481
13481
|
code_constraints?: ({
|
|
13482
|
-
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";
|
|
13482
|
+
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";
|
|
13483
13483
|
} | {
|
|
13484
13484
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
13485
13485
|
min_length?: number | undefined;
|
|
@@ -15437,11 +15437,11 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15437
15437
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
15438
15438
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
15439
15439
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
15440
|
-
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"]>;
|
|
15440
|
+
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"]>;
|
|
15441
15441
|
}, "strip", z.ZodTypeAny, {
|
|
15442
|
-
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";
|
|
15442
|
+
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";
|
|
15443
15443
|
}, {
|
|
15444
|
-
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";
|
|
15444
|
+
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";
|
|
15445
15445
|
}>, z.ZodObject<{
|
|
15446
15446
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
15447
15447
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15472,7 +15472,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15472
15472
|
}, "strip", z.ZodTypeAny, {
|
|
15473
15473
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
15474
15474
|
code_constraints?: ({
|
|
15475
|
-
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";
|
|
15475
|
+
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";
|
|
15476
15476
|
} | {
|
|
15477
15477
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
15478
15478
|
min_length?: number | undefined;
|
|
@@ -15490,7 +15490,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15490
15490
|
}, {
|
|
15491
15491
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
15492
15492
|
code_constraints?: ({
|
|
15493
|
-
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";
|
|
15493
|
+
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";
|
|
15494
15494
|
} | {
|
|
15495
15495
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
15496
15496
|
min_length?: number | undefined;
|
|
@@ -17231,7 +17231,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17231
17231
|
} & {
|
|
17232
17232
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
17233
17233
|
code_constraints?: ({
|
|
17234
|
-
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";
|
|
17234
|
+
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";
|
|
17235
17235
|
} | {
|
|
17236
17236
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
17237
17237
|
min_length?: number | undefined;
|
|
@@ -17887,7 +17887,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17887
17887
|
} & {
|
|
17888
17888
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
17889
17889
|
code_constraints?: ({
|
|
17890
|
-
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";
|
|
17890
|
+
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";
|
|
17891
17891
|
} | {
|
|
17892
17892
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
17893
17893
|
min_length?: number | undefined;
|
|
@@ -18820,7 +18820,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18820
18820
|
} & {
|
|
18821
18821
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
18822
18822
|
code_constraints?: ({
|
|
18823
|
-
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";
|
|
18823
|
+
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";
|
|
18824
18824
|
} | {
|
|
18825
18825
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
18826
18826
|
min_length?: number | undefined;
|
|
@@ -19548,7 +19548,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19548
19548
|
} & {
|
|
19549
19549
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
19550
19550
|
code_constraints?: ({
|
|
19551
|
-
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";
|
|
19551
|
+
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";
|
|
19552
19552
|
} | {
|
|
19553
19553
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
19554
19554
|
min_length?: number | undefined;
|
|
@@ -21507,11 +21507,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
21507
21507
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
21508
21508
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
21509
21509
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
21510
|
-
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"]>;
|
|
21510
|
+
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"]>;
|
|
21511
21511
|
}, "strip", z.ZodTypeAny, {
|
|
21512
|
-
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";
|
|
21512
|
+
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";
|
|
21513
21513
|
}, {
|
|
21514
|
-
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";
|
|
21514
|
+
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";
|
|
21515
21515
|
}>, z.ZodObject<{
|
|
21516
21516
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
21517
21517
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -21542,7 +21542,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
21542
21542
|
}, "strip", z.ZodTypeAny, {
|
|
21543
21543
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
21544
21544
|
code_constraints?: ({
|
|
21545
|
-
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";
|
|
21545
|
+
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";
|
|
21546
21546
|
} | {
|
|
21547
21547
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
21548
21548
|
min_length?: number | undefined;
|
|
@@ -21560,7 +21560,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
21560
21560
|
}, {
|
|
21561
21561
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
21562
21562
|
code_constraints?: ({
|
|
21563
|
-
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";
|
|
21563
|
+
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";
|
|
21564
21564
|
} | {
|
|
21565
21565
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
21566
21566
|
min_length?: number | undefined;
|
|
@@ -23301,7 +23301,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23301
23301
|
} & {
|
|
23302
23302
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
23303
23303
|
code_constraints?: ({
|
|
23304
|
-
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";
|
|
23304
|
+
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";
|
|
23305
23305
|
} | {
|
|
23306
23306
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
23307
23307
|
min_length?: number | undefined;
|
|
@@ -23957,7 +23957,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23957
23957
|
} & {
|
|
23958
23958
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
23959
23959
|
code_constraints?: ({
|
|
23960
|
-
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";
|
|
23960
|
+
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";
|
|
23961
23961
|
} | {
|
|
23962
23962
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
23963
23963
|
min_length?: number | undefined;
|
|
@@ -31468,11 +31468,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
31468
31468
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
31469
31469
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
31470
31470
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
31471
|
-
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"]>;
|
|
31471
|
+
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"]>;
|
|
31472
31472
|
}, "strip", z.ZodTypeAny, {
|
|
31473
|
-
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";
|
|
31473
|
+
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";
|
|
31474
31474
|
}, {
|
|
31475
|
-
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";
|
|
31475
|
+
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";
|
|
31476
31476
|
}>, z.ZodObject<{
|
|
31477
31477
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
31478
31478
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -31503,7 +31503,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
31503
31503
|
}, "strip", z.ZodTypeAny, {
|
|
31504
31504
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
31505
31505
|
code_constraints?: ({
|
|
31506
|
-
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";
|
|
31506
|
+
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";
|
|
31507
31507
|
} | {
|
|
31508
31508
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
31509
31509
|
min_length?: number | undefined;
|
|
@@ -31521,7 +31521,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
31521
31521
|
}, {
|
|
31522
31522
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
31523
31523
|
code_constraints?: ({
|
|
31524
|
-
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";
|
|
31524
|
+
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";
|
|
31525
31525
|
} | {
|
|
31526
31526
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
31527
31527
|
min_length?: number | undefined;
|
|
@@ -33985,7 +33985,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33985
33985
|
} & {
|
|
33986
33986
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
33987
33987
|
code_constraints?: ({
|
|
33988
|
-
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";
|
|
33988
|
+
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";
|
|
33989
33989
|
} | {
|
|
33990
33990
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
33991
33991
|
min_length?: number | undefined;
|
|
@@ -36117,7 +36117,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
36117
36117
|
} & {
|
|
36118
36118
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
36119
36119
|
code_constraints?: ({
|
|
36120
|
-
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";
|
|
36120
|
+
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";
|
|
36121
36121
|
} | {
|
|
36122
36122
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
36123
36123
|
min_length?: number | undefined;
|
|
@@ -39480,11 +39480,11 @@ export declare const batch: z.ZodObject<{
|
|
|
39480
39480
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
39481
39481
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
39482
39482
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
39483
|
-
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"]>;
|
|
39483
|
+
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"]>;
|
|
39484
39484
|
}, "strip", z.ZodTypeAny, {
|
|
39485
|
-
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";
|
|
39485
|
+
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";
|
|
39486
39486
|
}, {
|
|
39487
|
-
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";
|
|
39487
|
+
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";
|
|
39488
39488
|
}>, z.ZodObject<{
|
|
39489
39489
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
39490
39490
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -39515,7 +39515,7 @@ export declare const batch: z.ZodObject<{
|
|
|
39515
39515
|
}, "strip", z.ZodTypeAny, {
|
|
39516
39516
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
39517
39517
|
code_constraints?: ({
|
|
39518
|
-
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";
|
|
39518
|
+
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";
|
|
39519
39519
|
} | {
|
|
39520
39520
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
39521
39521
|
min_length?: number | undefined;
|
|
@@ -39533,7 +39533,7 @@ export declare const batch: z.ZodObject<{
|
|
|
39533
39533
|
}, {
|
|
39534
39534
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
39535
39535
|
code_constraints?: ({
|
|
39536
|
-
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";
|
|
39536
|
+
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";
|
|
39537
39537
|
} | {
|
|
39538
39538
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
39539
39539
|
min_length?: number | undefined;
|
|
@@ -41274,7 +41274,7 @@ export declare const batch: z.ZodObject<{
|
|
|
41274
41274
|
} & {
|
|
41275
41275
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
41276
41276
|
code_constraints?: ({
|
|
41277
|
-
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";
|
|
41277
|
+
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";
|
|
41278
41278
|
} | {
|
|
41279
41279
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
41280
41280
|
min_length?: number | undefined;
|
|
@@ -41930,7 +41930,7 @@ export declare const batch: z.ZodObject<{
|
|
|
41930
41930
|
} & {
|
|
41931
41931
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
41932
41932
|
code_constraints?: ({
|
|
41933
|
-
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";
|
|
41933
|
+
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";
|
|
41934
41934
|
} | {
|
|
41935
41935
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
41936
41936
|
min_length?: number | undefined;
|
|
@@ -49441,11 +49441,11 @@ export declare const batch: z.ZodObject<{
|
|
|
49441
49441
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
49442
49442
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
49443
49443
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
49444
|
-
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"]>;
|
|
49444
|
+
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"]>;
|
|
49445
49445
|
}, "strip", z.ZodTypeAny, {
|
|
49446
|
-
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";
|
|
49446
|
+
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";
|
|
49447
49447
|
}, {
|
|
49448
|
-
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";
|
|
49448
|
+
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";
|
|
49449
49449
|
}>, z.ZodObject<{
|
|
49450
49450
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
49451
49451
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -49476,7 +49476,7 @@ export declare const batch: z.ZodObject<{
|
|
|
49476
49476
|
}, "strip", z.ZodTypeAny, {
|
|
49477
49477
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
49478
49478
|
code_constraints?: ({
|
|
49479
|
-
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";
|
|
49479
|
+
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";
|
|
49480
49480
|
} | {
|
|
49481
49481
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
49482
49482
|
min_length?: number | undefined;
|
|
@@ -49494,7 +49494,7 @@ export declare const batch: z.ZodObject<{
|
|
|
49494
49494
|
}, {
|
|
49495
49495
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
49496
49496
|
code_constraints?: ({
|
|
49497
|
-
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";
|
|
49497
|
+
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";
|
|
49498
49498
|
} | {
|
|
49499
49499
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
49500
49500
|
min_length?: number | undefined;
|
|
@@ -51958,7 +51958,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51958
51958
|
} & {
|
|
51959
51959
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
51960
51960
|
code_constraints?: ({
|
|
51961
|
-
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";
|
|
51961
|
+
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";
|
|
51962
51962
|
} | {
|
|
51963
51963
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
51964
51964
|
min_length?: number | undefined;
|
|
@@ -54090,7 +54090,7 @@ export declare const batch: z.ZodObject<{
|
|
|
54090
54090
|
} & {
|
|
54091
54091
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
54092
54092
|
code_constraints?: ({
|
|
54093
|
-
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";
|
|
54093
|
+
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";
|
|
54094
54094
|
} | {
|
|
54095
54095
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
54096
54096
|
min_length?: number | undefined;
|
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const customization_profile: z.ZodObject<{
|
|
3
|
-
workspace_id: z.ZodString;
|
|
4
3
|
customization_profile_id: z.ZodString;
|
|
4
|
+
workspace_id: z.ZodString;
|
|
5
|
+
created_at: z.ZodString;
|
|
5
6
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
6
7
|
primary_color: z.ZodOptional<z.ZodString>;
|
|
7
8
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
8
9
|
}, "strip", z.ZodTypeAny, {
|
|
9
10
|
workspace_id: string;
|
|
11
|
+
created_at: string;
|
|
10
12
|
customization_profile_id: string;
|
|
11
13
|
logo_url?: string | undefined;
|
|
12
14
|
primary_color?: string | undefined;
|
|
13
15
|
secondary_color?: string | undefined;
|
|
14
16
|
}, {
|
|
15
17
|
workspace_id: string;
|
|
18
|
+
created_at: string;
|
|
16
19
|
customization_profile_id: string;
|
|
17
20
|
logo_url?: string | undefined;
|
|
18
21
|
primary_color?: string | undefined;
|
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export const customization_profile = z.object({
|
|
3
|
-
workspace_id: z.string().uuid(),
|
|
4
3
|
customization_profile_id: z.string().uuid(),
|
|
5
|
-
|
|
4
|
+
workspace_id: z.string().uuid(),
|
|
5
|
+
created_at: z.string().datetime(),
|
|
6
|
+
logo_url: z.string().url().optional(),
|
|
6
7
|
primary_color: z.string().optional(),
|
|
7
8
|
secondary_color: z.string().optional(),
|
|
8
|
-
})
|
|
9
|
+
}).describe(`
|
|
10
|
+
---
|
|
11
|
+
title: Customization Profile
|
|
12
|
+
undocumented: Unreleased.
|
|
13
|
+
route_path: /workspaces/customization_profiles
|
|
14
|
+
---
|
|
15
|
+
A customization profile.
|
|
16
|
+
`);
|
|
9
17
|
//# sourceMappingURL=customization_profile.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customization_profile.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customization_profiles/customization_profile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,
|
|
1
|
+
{"version":3,"file":"customization_profile.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customization_profiles/customization_profile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC3C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACrC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACvC,CAAC,CAAC,QAAQ,CAAC;;;;;;;CAOX,CAAC,CAAA"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const access_code_code_constraint: z.ZodObject<{
|
|
3
|
-
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"]>;
|
|
3
|
+
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"]>;
|
|
4
4
|
}, "strip", z.ZodTypeAny, {
|
|
5
|
-
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";
|
|
5
|
+
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";
|
|
6
6
|
}, {
|
|
7
|
-
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";
|
|
7
|
+
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";
|
|
8
8
|
}>;
|
|
9
9
|
export declare const access_code_name_constraint: z.ZodObject<{
|
|
10
10
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
@@ -20,11 +20,11 @@ export declare const access_code_name_constraint: z.ZodObject<{
|
|
|
20
20
|
max_length?: number | undefined;
|
|
21
21
|
}>;
|
|
22
22
|
export declare const access_code_constraint: z.ZodUnion<[z.ZodObject<{
|
|
23
|
-
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"]>;
|
|
23
|
+
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"]>;
|
|
24
24
|
}, "strip", z.ZodTypeAny, {
|
|
25
|
-
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";
|
|
25
|
+
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";
|
|
26
26
|
}, {
|
|
27
|
-
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";
|
|
27
|
+
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";
|
|
28
28
|
}>, z.ZodObject<{
|
|
29
29
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
30
30
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -42,11 +42,11 @@ export type AccessCodeConstraint = z.infer<typeof access_code_constraint>;
|
|
|
42
42
|
export declare const access_code_capability_properties: z.ZodObject<{
|
|
43
43
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
44
44
|
code_constraints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
45
|
-
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"]>;
|
|
45
|
+
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"]>;
|
|
46
46
|
}, "strip", z.ZodTypeAny, {
|
|
47
|
-
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";
|
|
47
|
+
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";
|
|
48
48
|
}, {
|
|
49
|
-
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";
|
|
49
|
+
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";
|
|
50
50
|
}>, z.ZodObject<{
|
|
51
51
|
constraint_type: z.ZodEnum<["name_length", "name_must_be_unique"]>;
|
|
52
52
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -67,7 +67,7 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
67
67
|
}, "strip", z.ZodTypeAny, {
|
|
68
68
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
69
69
|
code_constraints?: ({
|
|
70
|
-
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";
|
|
70
|
+
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";
|
|
71
71
|
} | {
|
|
72
72
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
73
73
|
min_length?: number | undefined;
|
|
@@ -80,7 +80,7 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
80
80
|
}, {
|
|
81
81
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
82
82
|
code_constraints?: ({
|
|
83
|
-
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";
|
|
83
|
+
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";
|
|
84
84
|
} | {
|
|
85
85
|
constraint_type: "name_length" | "name_must_be_unique";
|
|
86
86
|
min_length?: number | undefined;
|
|
@@ -13,6 +13,7 @@ export const access_code_code_constraint = z
|
|
|
13
13
|
'at_least_three_unique_digits', // Tedee
|
|
14
14
|
'cannot_contain_089', // TTLock
|
|
15
15
|
'cannot_contain_0789', // TTLock (for some cylinder devices only)
|
|
16
|
+
'unique_first_four_digits', // Schlage
|
|
16
17
|
])
|
|
17
18
|
.describe(`Code constraint type for access codes.`),
|
|
18
19
|
})
|