@seamapi/types 1.678.0 → 1.680.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 +537 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +211 -0
- package/dist/index.cjs +537 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -0
- package/lib/seam/connect/models/customer/customer-portal.d.ts +8 -0
- package/lib/seam/connect/models/customer/customer-portal.js +5 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.d.ts +122 -0
- package/lib/seam/connect/openapi.js +535 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +63 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +10 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +541 -1
- package/src/lib/seam/connect/route-types.ts +498 -0
package/dist/connect.d.cts
CHANGED
|
@@ -11683,14 +11683,17 @@ declare const batch: z.ZodObject<{
|
|
|
11683
11683
|
device_id: z.ZodString;
|
|
11684
11684
|
device_name: z.ZodString;
|
|
11685
11685
|
device_type: z.ZodString;
|
|
11686
|
+
time_zone: z.ZodNullable<z.ZodString>;
|
|
11686
11687
|
}, "strip", z.ZodTypeAny, {
|
|
11687
11688
|
device_id: string;
|
|
11688
11689
|
device_name: string;
|
|
11689
11690
|
device_type: string;
|
|
11691
|
+
time_zone: string | null;
|
|
11690
11692
|
}, {
|
|
11691
11693
|
device_id: string;
|
|
11692
11694
|
device_name: string;
|
|
11693
11695
|
device_type: string;
|
|
11696
|
+
time_zone: string | null;
|
|
11694
11697
|
}>>;
|
|
11695
11698
|
}, "strip", z.ZodTypeAny, {
|
|
11696
11699
|
ecobee_metadata?: {
|
|
@@ -11953,6 +11956,7 @@ declare const batch: z.ZodObject<{
|
|
|
11953
11956
|
device_id: string;
|
|
11954
11957
|
device_name: string;
|
|
11955
11958
|
device_type: string;
|
|
11959
|
+
time_zone: string | null;
|
|
11956
11960
|
} | undefined;
|
|
11957
11961
|
}, {
|
|
11958
11962
|
ecobee_metadata?: {
|
|
@@ -12215,6 +12219,7 @@ declare const batch: z.ZodObject<{
|
|
|
12215
12219
|
device_id: string;
|
|
12216
12220
|
device_name: string;
|
|
12217
12221
|
device_type: string;
|
|
12222
|
+
time_zone: string | null;
|
|
12218
12223
|
} | undefined;
|
|
12219
12224
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
12220
12225
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -14035,6 +14040,7 @@ declare const batch: z.ZodObject<{
|
|
|
14035
14040
|
device_id: string;
|
|
14036
14041
|
device_name: string;
|
|
14037
14042
|
device_type: string;
|
|
14043
|
+
time_zone: string | null;
|
|
14038
14044
|
} | undefined;
|
|
14039
14045
|
} & {
|
|
14040
14046
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -14708,6 +14714,7 @@ declare const batch: z.ZodObject<{
|
|
|
14708
14714
|
device_id: string;
|
|
14709
14715
|
device_name: string;
|
|
14710
14716
|
device_type: string;
|
|
14717
|
+
time_zone: string | null;
|
|
14711
14718
|
} | undefined;
|
|
14712
14719
|
} & {
|
|
14713
14720
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -22872,14 +22879,17 @@ declare const batch: z.ZodObject<{
|
|
|
22872
22879
|
device_id: z.ZodString;
|
|
22873
22880
|
device_name: z.ZodString;
|
|
22874
22881
|
device_type: z.ZodString;
|
|
22882
|
+
time_zone: z.ZodNullable<z.ZodString>;
|
|
22875
22883
|
}, "strip", z.ZodTypeAny, {
|
|
22876
22884
|
device_id: string;
|
|
22877
22885
|
device_name: string;
|
|
22878
22886
|
device_type: string;
|
|
22887
|
+
time_zone: string | null;
|
|
22879
22888
|
}, {
|
|
22880
22889
|
device_id: string;
|
|
22881
22890
|
device_name: string;
|
|
22882
22891
|
device_type: string;
|
|
22892
|
+
time_zone: string | null;
|
|
22883
22893
|
}>>;
|
|
22884
22894
|
}, "strip", z.ZodTypeAny, {
|
|
22885
22895
|
ecobee_metadata?: {
|
|
@@ -23142,6 +23152,7 @@ declare const batch: z.ZodObject<{
|
|
|
23142
23152
|
device_id: string;
|
|
23143
23153
|
device_name: string;
|
|
23144
23154
|
device_type: string;
|
|
23155
|
+
time_zone: string | null;
|
|
23145
23156
|
} | undefined;
|
|
23146
23157
|
}, {
|
|
23147
23158
|
ecobee_metadata?: {
|
|
@@ -23404,6 +23415,7 @@ declare const batch: z.ZodObject<{
|
|
|
23404
23415
|
device_id: string;
|
|
23405
23416
|
device_name: string;
|
|
23406
23417
|
device_type: string;
|
|
23418
|
+
time_zone: string | null;
|
|
23407
23419
|
} | undefined;
|
|
23408
23420
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
23409
23421
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -32511,6 +32523,7 @@ declare const batch: z.ZodObject<{
|
|
|
32511
32523
|
device_id: string;
|
|
32512
32524
|
device_name: string;
|
|
32513
32525
|
device_type: string;
|
|
32526
|
+
time_zone: string | null;
|
|
32514
32527
|
} | undefined;
|
|
32515
32528
|
} & {
|
|
32516
32529
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -36567,6 +36580,7 @@ declare const batch: z.ZodObject<{
|
|
|
36567
36580
|
device_id: string;
|
|
36568
36581
|
device_name: string;
|
|
36569
36582
|
device_type: string;
|
|
36583
|
+
time_zone: string | null;
|
|
36570
36584
|
} | undefined;
|
|
36571
36585
|
} & {
|
|
36572
36586
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -42507,14 +42521,17 @@ declare const device: z.ZodObject<{
|
|
|
42507
42521
|
device_id: z.ZodString;
|
|
42508
42522
|
device_name: z.ZodString;
|
|
42509
42523
|
device_type: z.ZodString;
|
|
42524
|
+
time_zone: z.ZodNullable<z.ZodString>;
|
|
42510
42525
|
}, "strip", z.ZodTypeAny, {
|
|
42511
42526
|
device_id: string;
|
|
42512
42527
|
device_name: string;
|
|
42513
42528
|
device_type: string;
|
|
42529
|
+
time_zone: string | null;
|
|
42514
42530
|
}, {
|
|
42515
42531
|
device_id: string;
|
|
42516
42532
|
device_name: string;
|
|
42517
42533
|
device_type: string;
|
|
42534
|
+
time_zone: string | null;
|
|
42518
42535
|
}>>;
|
|
42519
42536
|
}, "strip", z.ZodTypeAny, {
|
|
42520
42537
|
ecobee_metadata?: {
|
|
@@ -42777,6 +42794,7 @@ declare const device: z.ZodObject<{
|
|
|
42777
42794
|
device_id: string;
|
|
42778
42795
|
device_name: string;
|
|
42779
42796
|
device_type: string;
|
|
42797
|
+
time_zone: string | null;
|
|
42780
42798
|
} | undefined;
|
|
42781
42799
|
}, {
|
|
42782
42800
|
ecobee_metadata?: {
|
|
@@ -43039,6 +43057,7 @@ declare const device: z.ZodObject<{
|
|
|
43039
43057
|
device_id: string;
|
|
43040
43058
|
device_name: string;
|
|
43041
43059
|
device_type: string;
|
|
43060
|
+
time_zone: string | null;
|
|
43042
43061
|
} | undefined;
|
|
43043
43062
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
43044
43063
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -44859,6 +44878,7 @@ declare const device: z.ZodObject<{
|
|
|
44859
44878
|
device_id: string;
|
|
44860
44879
|
device_name: string;
|
|
44861
44880
|
device_type: string;
|
|
44881
|
+
time_zone: string | null;
|
|
44862
44882
|
} | undefined;
|
|
44863
44883
|
} & {
|
|
44864
44884
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -45532,6 +45552,7 @@ declare const device: z.ZodObject<{
|
|
|
45532
45552
|
device_id: string;
|
|
45533
45553
|
device_name: string;
|
|
45534
45554
|
device_type: string;
|
|
45555
|
+
time_zone: string | null;
|
|
45535
45556
|
} | undefined;
|
|
45536
45557
|
} & {
|
|
45537
45558
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -46876,14 +46897,17 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46876
46897
|
device_id: z.ZodString;
|
|
46877
46898
|
device_name: z.ZodString;
|
|
46878
46899
|
device_type: z.ZodString;
|
|
46900
|
+
time_zone: z.ZodNullable<z.ZodString>;
|
|
46879
46901
|
}, "strip", z.ZodTypeAny, {
|
|
46880
46902
|
device_id: string;
|
|
46881
46903
|
device_name: string;
|
|
46882
46904
|
device_type: string;
|
|
46905
|
+
time_zone: string | null;
|
|
46883
46906
|
}, {
|
|
46884
46907
|
device_id: string;
|
|
46885
46908
|
device_name: string;
|
|
46886
46909
|
device_type: string;
|
|
46910
|
+
time_zone: string | null;
|
|
46887
46911
|
}>>;
|
|
46888
46912
|
}, "strip", z.ZodTypeAny, {
|
|
46889
46913
|
ecobee_metadata?: {
|
|
@@ -47146,6 +47170,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47146
47170
|
device_id: string;
|
|
47147
47171
|
device_name: string;
|
|
47148
47172
|
device_type: string;
|
|
47173
|
+
time_zone: string | null;
|
|
47149
47174
|
} | undefined;
|
|
47150
47175
|
}, {
|
|
47151
47176
|
ecobee_metadata?: {
|
|
@@ -47408,6 +47433,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47408
47433
|
device_id: string;
|
|
47409
47434
|
device_name: string;
|
|
47410
47435
|
device_type: string;
|
|
47436
|
+
time_zone: string | null;
|
|
47411
47437
|
} | undefined;
|
|
47412
47438
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
47413
47439
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -59241,6 +59267,11 @@ declare const _default: {
|
|
|
59241
59267
|
description: string;
|
|
59242
59268
|
type: string;
|
|
59243
59269
|
};
|
|
59270
|
+
time_zone: {
|
|
59271
|
+
description: string;
|
|
59272
|
+
nullable: boolean;
|
|
59273
|
+
type: string;
|
|
59274
|
+
};
|
|
59244
59275
|
};
|
|
59245
59276
|
required: string[];
|
|
59246
59277
|
type: string;
|
|
@@ -86112,6 +86143,15 @@ declare const _default: {
|
|
|
86112
86143
|
enum: string[];
|
|
86113
86144
|
type: string;
|
|
86114
86145
|
};
|
|
86146
|
+
property_listing_filter: {
|
|
86147
|
+
additionalProperties: {
|
|
86148
|
+
oneOf: {
|
|
86149
|
+
type: string;
|
|
86150
|
+
}[];
|
|
86151
|
+
};
|
|
86152
|
+
description: string;
|
|
86153
|
+
type: string;
|
|
86154
|
+
};
|
|
86115
86155
|
customer_data?: never;
|
|
86116
86156
|
};
|
|
86117
86157
|
type: string;
|
|
@@ -86912,6 +86952,7 @@ declare const _default: {
|
|
|
86912
86952
|
is_embedded?: never;
|
|
86913
86953
|
landing_page?: never;
|
|
86914
86954
|
locale?: never;
|
|
86955
|
+
property_listing_filter?: never;
|
|
86915
86956
|
};
|
|
86916
86957
|
type: string;
|
|
86917
86958
|
default?: never;
|
|
@@ -89044,6 +89085,95 @@ declare const _default: {
|
|
|
89044
89085
|
'x-title': string;
|
|
89045
89086
|
};
|
|
89046
89087
|
};
|
|
89088
|
+
'/devices/report_provider_metadata': {
|
|
89089
|
+
post: {
|
|
89090
|
+
description: string;
|
|
89091
|
+
operationId: string;
|
|
89092
|
+
requestBody: {
|
|
89093
|
+
content: {
|
|
89094
|
+
'application/json': {
|
|
89095
|
+
schema: {
|
|
89096
|
+
properties: {
|
|
89097
|
+
devices: {
|
|
89098
|
+
description: string;
|
|
89099
|
+
items: {
|
|
89100
|
+
properties: {
|
|
89101
|
+
device_id: {
|
|
89102
|
+
description: string;
|
|
89103
|
+
format: string;
|
|
89104
|
+
type: string;
|
|
89105
|
+
};
|
|
89106
|
+
ultraloq_metadata: {
|
|
89107
|
+
description: string;
|
|
89108
|
+
properties: {
|
|
89109
|
+
time_zone: {
|
|
89110
|
+
description: string;
|
|
89111
|
+
enum: string[];
|
|
89112
|
+
type: string;
|
|
89113
|
+
};
|
|
89114
|
+
};
|
|
89115
|
+
required: string[];
|
|
89116
|
+
type: string;
|
|
89117
|
+
};
|
|
89118
|
+
};
|
|
89119
|
+
required: string[];
|
|
89120
|
+
type: string;
|
|
89121
|
+
};
|
|
89122
|
+
minItems: number;
|
|
89123
|
+
type: string;
|
|
89124
|
+
};
|
|
89125
|
+
};
|
|
89126
|
+
required: string[];
|
|
89127
|
+
type: string;
|
|
89128
|
+
};
|
|
89129
|
+
};
|
|
89130
|
+
};
|
|
89131
|
+
};
|
|
89132
|
+
responses: {
|
|
89133
|
+
200: {
|
|
89134
|
+
content: {
|
|
89135
|
+
'application/json': {
|
|
89136
|
+
schema: {
|
|
89137
|
+
properties: {
|
|
89138
|
+
ok: {
|
|
89139
|
+
type: string;
|
|
89140
|
+
};
|
|
89141
|
+
};
|
|
89142
|
+
required: string[];
|
|
89143
|
+
type: string;
|
|
89144
|
+
};
|
|
89145
|
+
};
|
|
89146
|
+
};
|
|
89147
|
+
description: string;
|
|
89148
|
+
};
|
|
89149
|
+
400: {
|
|
89150
|
+
description: string;
|
|
89151
|
+
};
|
|
89152
|
+
401: {
|
|
89153
|
+
description: string;
|
|
89154
|
+
};
|
|
89155
|
+
};
|
|
89156
|
+
security: ({
|
|
89157
|
+
pat_with_workspace: never[];
|
|
89158
|
+
console_session_with_workspace?: never;
|
|
89159
|
+
api_key?: never;
|
|
89160
|
+
} | {
|
|
89161
|
+
console_session_with_workspace: never[];
|
|
89162
|
+
pat_with_workspace?: never;
|
|
89163
|
+
api_key?: never;
|
|
89164
|
+
} | {
|
|
89165
|
+
api_key: never[];
|
|
89166
|
+
pat_with_workspace?: never;
|
|
89167
|
+
console_session_with_workspace?: never;
|
|
89168
|
+
})[];
|
|
89169
|
+
summary: string;
|
|
89170
|
+
tags: string[];
|
|
89171
|
+
'x-fern-sdk-group-name': string[];
|
|
89172
|
+
'x-fern-sdk-method-name': string;
|
|
89173
|
+
'x-response-key': null;
|
|
89174
|
+
'x-title': string;
|
|
89175
|
+
};
|
|
89176
|
+
};
|
|
89047
89177
|
'/devices/simulate/connect': {
|
|
89048
89178
|
post: {
|
|
89049
89179
|
description: string;
|
|
@@ -98976,6 +99106,15 @@ declare const _default: {
|
|
|
98976
99106
|
enum: string[];
|
|
98977
99107
|
type: string;
|
|
98978
99108
|
};
|
|
99109
|
+
property_listing_filter: {
|
|
99110
|
+
additionalProperties: {
|
|
99111
|
+
oneOf: {
|
|
99112
|
+
type: string;
|
|
99113
|
+
}[];
|
|
99114
|
+
};
|
|
99115
|
+
description: string;
|
|
99116
|
+
type: string;
|
|
99117
|
+
};
|
|
98979
99118
|
};
|
|
98980
99119
|
type: string;
|
|
98981
99120
|
};
|
|
@@ -99387,6 +99526,15 @@ declare const _default: {
|
|
|
99387
99526
|
enum: string[];
|
|
99388
99527
|
type: string;
|
|
99389
99528
|
};
|
|
99529
|
+
property_listing_filter: {
|
|
99530
|
+
additionalProperties: {
|
|
99531
|
+
oneOf: {
|
|
99532
|
+
type: string;
|
|
99533
|
+
}[];
|
|
99534
|
+
};
|
|
99535
|
+
description: string;
|
|
99536
|
+
type: string;
|
|
99537
|
+
};
|
|
99390
99538
|
};
|
|
99391
99539
|
type: string;
|
|
99392
99540
|
};
|
|
@@ -124666,6 +124814,8 @@ type Routes = {
|
|
|
124666
124814
|
device_name: string;
|
|
124667
124815
|
/** Device type for an Ultraloq device. */
|
|
124668
124816
|
device_type: string;
|
|
124817
|
+
/** IANA timezone for the Ultraloq device. */
|
|
124818
|
+
time_zone: string | null;
|
|
124669
124819
|
} | undefined;
|
|
124670
124820
|
}) & ({
|
|
124671
124821
|
/** */
|
|
@@ -128055,6 +128205,8 @@ type Routes = {
|
|
|
128055
128205
|
device_name: string;
|
|
128056
128206
|
/** Device type for an Ultraloq device. */
|
|
128057
128207
|
device_type: string;
|
|
128208
|
+
/** IANA timezone for the Ultraloq device. */
|
|
128209
|
+
time_zone: string | null;
|
|
128058
128210
|
} | undefined;
|
|
128059
128211
|
}) & ({
|
|
128060
128212
|
/** */
|
|
@@ -140424,6 +140576,10 @@ type Routes = {
|
|
|
140424
140576
|
locale?: ('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES') | undefined;
|
|
140425
140577
|
/** The ID of the customization profile to use for the portal. */
|
|
140426
140578
|
customization_profile_id?: string | undefined;
|
|
140579
|
+
/** Filter configuration for property listings based on their custom_metadata. Keys and values must match the custom_metadata stored on property listings. */
|
|
140580
|
+
property_listing_filter?: {
|
|
140581
|
+
[x: string]: string | boolean;
|
|
140582
|
+
} | undefined;
|
|
140427
140583
|
} & {
|
|
140428
140584
|
customer_data?: {
|
|
140429
140585
|
/** Your unique identifier for the customer. */
|
|
@@ -141709,6 +141865,8 @@ type Routes = {
|
|
|
141709
141865
|
device_name: string;
|
|
141710
141866
|
/** Device type for an Ultraloq device. */
|
|
141711
141867
|
device_type: string;
|
|
141868
|
+
/** IANA timezone for the Ultraloq device. */
|
|
141869
|
+
time_zone: string | null;
|
|
141712
141870
|
} | undefined;
|
|
141713
141871
|
}) & ({
|
|
141714
141872
|
/** */
|
|
@@ -142991,6 +143149,8 @@ type Routes = {
|
|
|
142991
143149
|
device_name: string;
|
|
142992
143150
|
/** Device type for an Ultraloq device. */
|
|
142993
143151
|
device_type: string;
|
|
143152
|
+
/** IANA timezone for the Ultraloq device. */
|
|
143153
|
+
time_zone: string | null;
|
|
142994
143154
|
} | undefined;
|
|
142995
143155
|
}) & ({
|
|
142996
143156
|
/** */
|
|
@@ -143671,6 +143831,27 @@ type Routes = {
|
|
|
143671
143831
|
};
|
|
143672
143832
|
maxDuration: undefined;
|
|
143673
143833
|
};
|
|
143834
|
+
'/devices/report_provider_metadata': {
|
|
143835
|
+
route: '/devices/report_provider_metadata';
|
|
143836
|
+
method: 'POST';
|
|
143837
|
+
queryParams: {};
|
|
143838
|
+
jsonBody: {};
|
|
143839
|
+
commonParams: {
|
|
143840
|
+
/** Array of devices with provider metadata to update */
|
|
143841
|
+
devices: {
|
|
143842
|
+
/** ID of the device to update */
|
|
143843
|
+
device_id: string;
|
|
143844
|
+
/** Ultraloq-specific metadata to update */
|
|
143845
|
+
ultraloq_metadata?: {
|
|
143846
|
+
/** IANA timezone for the Ultraloq device */
|
|
143847
|
+
time_zone: 'Africa/Abidjan' | 'Africa/Accra' | 'Africa/Addis_Ababa' | 'Africa/Algiers' | 'Africa/Asmera' | 'Africa/Bamako' | 'Africa/Bangui' | 'Africa/Banjul' | 'Africa/Bissau' | 'Africa/Blantyre' | 'Africa/Brazzaville' | 'Africa/Bujumbura' | 'Africa/Cairo' | 'Africa/Casablanca' | 'Africa/Ceuta' | 'Africa/Conakry' | 'Africa/Dakar' | 'Africa/Dar_es_Salaam' | 'Africa/Djibouti' | 'Africa/Douala' | 'Africa/El_Aaiun' | 'Africa/Freetown' | 'Africa/Gaborone' | 'Africa/Harare' | 'Africa/Johannesburg' | 'Africa/Juba' | 'Africa/Kampala' | 'Africa/Khartoum' | 'Africa/Kigali' | 'Africa/Kinshasa' | 'Africa/Lagos' | 'Africa/Libreville' | 'Africa/Lome' | 'Africa/Luanda' | 'Africa/Lubumbashi' | 'Africa/Lusaka' | 'Africa/Malabo' | 'Africa/Maputo' | 'Africa/Maseru' | 'Africa/Mbabane' | 'Africa/Mogadishu' | 'Africa/Monrovia' | 'Africa/Nairobi' | 'Africa/Ndjamena' | 'Africa/Niamey' | 'Africa/Nouakchott' | 'Africa/Ouagadougou' | 'Africa/Porto-Novo' | 'Africa/Sao_Tome' | 'Africa/Tripoli' | 'Africa/Tunis' | 'Africa/Windhoek' | 'America/Adak' | 'America/Anchorage' | 'America/Anguilla' | 'America/Antigua' | 'America/Araguaina' | 'America/Argentina/La_Rioja' | 'America/Argentina/Rio_Gallegos' | 'America/Argentina/Salta' | 'America/Argentina/San_Juan' | 'America/Argentina/San_Luis' | 'America/Argentina/Tucuman' | 'America/Argentina/Ushuaia' | 'America/Aruba' | 'America/Asuncion' | 'America/Bahia' | 'America/Bahia_Banderas' | 'America/Barbados' | 'America/Belem' | 'America/Belize' | 'America/Blanc-Sablon' | 'America/Boa_Vista' | 'America/Bogota' | 'America/Boise' | 'America/Buenos_Aires' | 'America/Cambridge_Bay' | 'America/Campo_Grande' | 'America/Cancun' | 'America/Caracas' | 'America/Catamarca' | 'America/Cayenne' | 'America/Cayman' | 'America/Chicago' | 'America/Chihuahua' | 'America/Ciudad_Juarez' | 'America/Coral_Harbour' | 'America/Cordoba' | 'America/Costa_Rica' | 'America/Creston' | 'America/Cuiaba' | 'America/Curacao' | 'America/Danmarkshavn' | 'America/Dawson' | 'America/Dawson_Creek' | 'America/Denver' | 'America/Detroit' | 'America/Dominica' | 'America/Edmonton' | 'America/Eirunepe' | 'America/El_Salvador' | 'America/Fort_Nelson' | 'America/Fortaleza' | 'America/Glace_Bay' | 'America/Godthab' | 'America/Goose_Bay' | 'America/Grand_Turk' | 'America/Grenada' | 'America/Guadeloupe' | 'America/Guatemala' | 'America/Guayaquil' | 'America/Guyana' | 'America/Halifax' | 'America/Havana' | 'America/Hermosillo' | 'America/Indiana/Knox' | 'America/Indiana/Marengo' | 'America/Indiana/Petersburg' | 'America/Indiana/Tell_City' | 'America/Indiana/Vevay' | 'America/Indiana/Vincennes' | 'America/Indiana/Winamac' | 'America/Indianapolis' | 'America/Inuvik' | 'America/Iqaluit' | 'America/Jamaica' | 'America/Jujuy' | 'America/Juneau' | 'America/Kentucky/Monticello' | 'America/Kralendijk' | 'America/La_Paz' | 'America/Lima' | 'America/Los_Angeles' | 'America/Louisville' | 'America/Lower_Princes' | 'America/Maceio' | 'America/Managua' | 'America/Manaus' | 'America/Marigot' | 'America/Martinique' | 'America/Matamoros' | 'America/Mazatlan' | 'America/Mendoza' | 'America/Menominee' | 'America/Merida' | 'America/Metlakatla' | 'America/Mexico_City' | 'America/Miquelon' | 'America/Moncton' | 'America/Monterrey' | 'America/Montevideo' | 'America/Montreal' | 'America/Montserrat' | 'America/Nassau' | 'America/New_York' | 'America/Nipigon' | 'America/Nome' | 'America/Noronha' | 'America/North_Dakota/Beulah' | 'America/North_Dakota/Center' | 'America/North_Dakota/New_Salem' | 'America/Ojinaga' | 'America/Panama' | 'America/Pangnirtung' | 'America/Paramaribo' | 'America/Phoenix' | 'America/Port-au-Prince' | 'America/Port_of_Spain' | 'America/Porto_Velho' | 'America/Puerto_Rico' | 'America/Punta_Arenas' | 'America/Rainy_River' | 'America/Rankin_Inlet' | 'America/Recife' | 'America/Regina' | 'America/Resolute' | 'America/Rio_Branco' | 'America/Santa_Isabel' | 'America/Santarem' | 'America/Santiago' | 'America/Santo_Domingo' | 'America/Sao_Paulo' | 'America/Scoresbysund' | 'America/Sitka' | 'America/St_Barthelemy' | 'America/St_Johns' | 'America/St_Kitts' | 'America/St_Lucia' | 'America/St_Thomas' | 'America/St_Vincent' | 'America/Swift_Current' | 'America/Tegucigalpa' | 'America/Thule' | 'America/Thunder_Bay' | 'America/Tijuana' | 'America/Toronto' | 'America/Tortola' | 'America/Vancouver' | 'America/Whitehorse' | 'America/Winnipeg' | 'America/Yakutat' | 'America/Yellowknife' | 'Antarctica/Casey' | 'Antarctica/Davis' | 'Antarctica/DumontDUrville' | 'Antarctica/Macquarie' | 'Antarctica/Mawson' | 'Antarctica/McMurdo' | 'Antarctica/Palmer' | 'Antarctica/Rothera' | 'Antarctica/Syowa' | 'Antarctica/Troll' | 'Antarctica/Vostok' | 'Arctic/Longyearbyen' | 'Asia/Aden' | 'Asia/Almaty' | 'Asia/Amman' | 'Asia/Anadyr' | 'Asia/Aqtau' | 'Asia/Aqtobe' | 'Asia/Ashgabat' | 'Asia/Atyrau' | 'Asia/Baghdad' | 'Asia/Bahrain' | 'Asia/Baku' | 'Asia/Bangkok' | 'Asia/Barnaul' | 'Asia/Beirut' | 'Asia/Bishkek' | 'Asia/Brunei' | 'Asia/Calcutta' | 'Asia/Chita' | 'Asia/Choibalsan' | 'Asia/Colombo' | 'Asia/Damascus' | 'Asia/Dhaka' | 'Asia/Dili' | 'Asia/Dubai' | 'Asia/Dushanbe' | 'Asia/Famagusta' | 'Asia/Gaza' | 'Asia/Hebron' | 'Asia/Hong_Kong' | 'Asia/Hovd' | 'Asia/Irkutsk' | 'Asia/Jakarta' | 'Asia/Jayapura' | 'Asia/Jerusalem' | 'Asia/Kabul' | 'Asia/Kamchatka' | 'Asia/Karachi' | 'Asia/Katmandu' | 'Asia/Khandyga' | 'Asia/Krasnoyarsk' | 'Asia/Kuala_Lumpur' | 'Asia/Kuching' | 'Asia/Kuwait' | 'Asia/Macau' | 'Asia/Magadan' | 'Asia/Makassar' | 'Asia/Manila' | 'Asia/Muscat' | 'Asia/Nicosia' | 'Asia/Novokuznetsk' | 'Asia/Novosibirsk' | 'Asia/Omsk' | 'Asia/Oral' | 'Asia/Phnom_Penh' | 'Asia/Pontianak' | 'Asia/Pyongyang' | 'Asia/Qatar' | 'Asia/Qostanay' | 'Asia/Qyzylorda' | 'Asia/Rangoon' | 'Asia/Riyadh' | 'Asia/Saigon' | 'Asia/Sakhalin' | 'Asia/Samarkand' | 'Asia/Seoul' | 'Asia/Shanghai' | 'Asia/Singapore' | 'Asia/Srednekolymsk' | 'Asia/Taipei' | 'Asia/Tashkent' | 'Asia/Tbilisi' | 'Asia/Tehran' | 'Asia/Thimphu' | 'Asia/Tokyo' | 'Asia/Tomsk' | 'Asia/Ulaanbaatar' | 'Asia/Urumqi' | 'Asia/Ust-Nera' | 'Asia/Vientiane' | 'Asia/Vladivostok' | 'Asia/Yakutsk' | 'Asia/Yekaterinburg' | 'Asia/Yerevan' | 'Atlantic/Azores' | 'Atlantic/Bermuda' | 'Atlantic/Canary' | 'Atlantic/Cape_Verde' | 'Atlantic/Faeroe' | 'Atlantic/Madeira' | 'Atlantic/Reykjavik' | 'Atlantic/South_Georgia' | 'Atlantic/St_Helena' | 'Atlantic/Stanley' | 'Australia/Adelaide' | 'Australia/Brisbane' | 'Australia/Broken_Hill' | 'Australia/Currie' | 'Australia/Darwin' | 'Australia/Eucla' | 'Australia/Hobart' | 'Australia/Lindeman' | 'Australia/Lord_Howe' | 'Australia/Melbourne' | 'Australia/Perth' | 'Australia/Sydney' | 'Europe/Amsterdam' | 'Europe/Andorra' | 'Europe/Astrakhan' | 'Europe/Athens' | 'Europe/Belgrade' | 'Europe/Berlin' | 'Europe/Bratislava' | 'Europe/Brussels' | 'Europe/Bucharest' | 'Europe/Budapest' | 'Europe/Busingen' | 'Europe/Chisinau' | 'Europe/Copenhagen' | 'Europe/Dublin' | 'Europe/Gibraltar' | 'Europe/Guernsey' | 'Europe/Helsinki' | 'Europe/Isle_of_Man' | 'Europe/Istanbul' | 'Europe/Jersey' | 'Europe/Kaliningrad' | 'Europe/Kiev' | 'Europe/Kirov' | 'Europe/Lisbon' | 'Europe/Ljubljana' | 'Europe/London' | 'Europe/Luxembourg' | 'Europe/Madrid' | 'Europe/Malta' | 'Europe/Mariehamn' | 'Europe/Minsk' | 'Europe/Monaco' | 'Europe/Moscow' | 'Europe/Oslo' | 'Europe/Paris' | 'Europe/Podgorica' | 'Europe/Prague' | 'Europe/Riga' | 'Europe/Rome' | 'Europe/Samara' | 'Europe/San_Marino' | 'Europe/Sarajevo' | 'Europe/Saratov' | 'Europe/Simferopol' | 'Europe/Skopje' | 'Europe/Sofia' | 'Europe/Stockholm' | 'Europe/Tallinn' | 'Europe/Tirane' | 'Europe/Ulyanovsk' | 'Europe/Uzhgorod' | 'Europe/Vaduz' | 'Europe/Vatican' | 'Europe/Vienna' | 'Europe/Vilnius' | 'Europe/Volgograd' | 'Europe/Warsaw' | 'Europe/Zagreb' | 'Europe/Zaporozhye' | 'Europe/Zurich' | 'Indian/Antananarivo' | 'Indian/Chagos' | 'Indian/Christmas' | 'Indian/Cocos' | 'Indian/Comoro' | 'Indian/Kerguelen' | 'Indian/Mahe' | 'Indian/Maldives' | 'Indian/Mauritius' | 'Indian/Mayotte' | 'Indian/Reunion' | 'Pacific/Apia' | 'Pacific/Auckland' | 'Pacific/Bougainville' | 'Pacific/Chatham' | 'Pacific/Easter' | 'Pacific/Efate' | 'Pacific/Enderbury' | 'Pacific/Fakaofo' | 'Pacific/Fiji' | 'Pacific/Funafuti' | 'Pacific/Galapagos' | 'Pacific/Gambier' | 'Pacific/Guadalcanal' | 'Pacific/Guam' | 'Pacific/Honolulu' | 'Pacific/Johnston' | 'Pacific/Kiritimati' | 'Pacific/Kosrae' | 'Pacific/Kwajalein' | 'Pacific/Majuro' | 'Pacific/Marquesas' | 'Pacific/Midway' | 'Pacific/Nauru' | 'Pacific/Niue' | 'Pacific/Norfolk' | 'Pacific/Noumea' | 'Pacific/Pago_Pago' | 'Pacific/Palau' | 'Pacific/Pitcairn' | 'Pacific/Ponape' | 'Pacific/Port_Moresby' | 'Pacific/Rarotonga' | 'Pacific/Saipan' | 'Pacific/Tahiti' | 'Pacific/Tarawa' | 'Pacific/Tongatapu' | 'Pacific/Truk' | 'Pacific/Wake' | 'Pacific/Wallis';
|
|
143848
|
+
} | undefined;
|
|
143849
|
+
}[];
|
|
143850
|
+
};
|
|
143851
|
+
formData: {};
|
|
143852
|
+
jsonResponse: {};
|
|
143853
|
+
maxDuration: undefined;
|
|
143854
|
+
};
|
|
143674
143855
|
'/devices/simulate/connect': {
|
|
143675
143856
|
route: '/devices/simulate/connect';
|
|
143676
143857
|
method: 'POST';
|
|
@@ -149338,6 +149519,8 @@ type Routes = {
|
|
|
149338
149519
|
device_name: string;
|
|
149339
149520
|
/** Device type for an Ultraloq device. */
|
|
149340
149521
|
device_type: string;
|
|
149522
|
+
/** IANA timezone for the Ultraloq device. */
|
|
149523
|
+
time_zone: string | null;
|
|
149341
149524
|
} | undefined;
|
|
149342
149525
|
}) & ({
|
|
149343
149526
|
/** */
|
|
@@ -150570,6 +150753,8 @@ type Routes = {
|
|
|
150570
150753
|
device_name: string;
|
|
150571
150754
|
/** Device type for an Ultraloq device. */
|
|
150572
150755
|
device_type: string;
|
|
150756
|
+
/** IANA timezone for the Ultraloq device. */
|
|
150757
|
+
time_zone: string | null;
|
|
150573
150758
|
} | undefined;
|
|
150574
150759
|
}) & ({
|
|
150575
150760
|
/** */
|
|
@@ -151852,6 +152037,8 @@ type Routes = {
|
|
|
151852
152037
|
device_name: string;
|
|
151853
152038
|
/** Device type for an Ultraloq device. */
|
|
151854
152039
|
device_type: string;
|
|
152040
|
+
/** IANA timezone for the Ultraloq device. */
|
|
152041
|
+
time_zone: string | null;
|
|
151855
152042
|
} | undefined;
|
|
151856
152043
|
}) & ({
|
|
151857
152044
|
/** */
|
|
@@ -153083,6 +153270,8 @@ type Routes = {
|
|
|
153083
153270
|
device_name: string;
|
|
153084
153271
|
/** Device type for an Ultraloq device. */
|
|
153085
153272
|
device_type: string;
|
|
153273
|
+
/** IANA timezone for the Ultraloq device. */
|
|
153274
|
+
time_zone: string | null;
|
|
153086
153275
|
} | undefined;
|
|
153087
153276
|
}) & ({
|
|
153088
153277
|
/** */
|
|
@@ -159447,6 +159636,8 @@ type Routes = {
|
|
|
159447
159636
|
device_name: string;
|
|
159448
159637
|
/** Device type for an Ultraloq device. */
|
|
159449
159638
|
device_type: string;
|
|
159639
|
+
/** IANA timezone for the Ultraloq device. */
|
|
159640
|
+
time_zone: string | null;
|
|
159450
159641
|
} | undefined;
|
|
159451
159642
|
}) & ({
|
|
159452
159643
|
/** */
|
|
@@ -160678,6 +160869,8 @@ type Routes = {
|
|
|
160678
160869
|
device_name: string;
|
|
160679
160870
|
/** Device type for an Ultraloq device. */
|
|
160680
160871
|
device_type: string;
|
|
160872
|
+
/** IANA timezone for the Ultraloq device. */
|
|
160873
|
+
time_zone: string | null;
|
|
160681
160874
|
} | undefined;
|
|
160682
160875
|
}) & ({
|
|
160683
160876
|
/** */
|
|
@@ -168455,6 +168648,10 @@ type Routes = {
|
|
|
168455
168648
|
locale?: ('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES') | undefined;
|
|
168456
168649
|
/** The ID of the customization profile to use for the portal. */
|
|
168457
168650
|
customization_profile_id?: string | undefined;
|
|
168651
|
+
/** Filter configuration for property listings based on their custom_metadata. Keys and values must match the custom_metadata stored on property listings. */
|
|
168652
|
+
property_listing_filter?: {
|
|
168653
|
+
[x: string]: string | boolean;
|
|
168654
|
+
} | undefined;
|
|
168458
168655
|
/** Business vertical of the customer portal. */
|
|
168459
168656
|
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
168460
168657
|
};
|
|
@@ -170234,6 +170431,8 @@ type Routes = {
|
|
|
170234
170431
|
device_name: string;
|
|
170235
170432
|
/** Device type for an Ultraloq device. */
|
|
170236
170433
|
device_type: string;
|
|
170434
|
+
/** IANA timezone for the Ultraloq device. */
|
|
170435
|
+
time_zone: string | null;
|
|
170237
170436
|
} | undefined;
|
|
170238
170437
|
}) & ({
|
|
170239
170438
|
/** */
|
|
@@ -175911,6 +176110,8 @@ type Routes = {
|
|
|
175911
176110
|
device_name: string;
|
|
175912
176111
|
/** Device type for an Ultraloq device. */
|
|
175913
176112
|
device_type: string;
|
|
176113
|
+
/** IANA timezone for the Ultraloq device. */
|
|
176114
|
+
time_zone: string | null;
|
|
175914
176115
|
} | undefined;
|
|
175915
176116
|
}) & ({
|
|
175916
176117
|
/** */
|
|
@@ -179747,6 +179948,8 @@ type Routes = {
|
|
|
179747
179948
|
device_name: string;
|
|
179748
179949
|
/** Device type for an Ultraloq device. */
|
|
179749
179950
|
device_type: string;
|
|
179951
|
+
/** IANA timezone for the Ultraloq device. */
|
|
179952
|
+
time_zone: string | null;
|
|
179750
179953
|
} | undefined;
|
|
179751
179954
|
}) & ({
|
|
179752
179955
|
/** */
|
|
@@ -180978,6 +181181,8 @@ type Routes = {
|
|
|
180978
181181
|
device_name: string;
|
|
180979
181182
|
/** Device type for an Ultraloq device. */
|
|
180980
181183
|
device_type: string;
|
|
181184
|
+
/** IANA timezone for the Ultraloq device. */
|
|
181185
|
+
time_zone: string | null;
|
|
180981
181186
|
} | undefined;
|
|
180982
181187
|
}) & ({
|
|
180983
181188
|
/** */
|
|
@@ -188229,6 +188434,8 @@ type Routes = {
|
|
|
188229
188434
|
device_name: string;
|
|
188230
188435
|
/** Device type for an Ultraloq device. */
|
|
188231
188436
|
device_type: string;
|
|
188437
|
+
/** IANA timezone for the Ultraloq device. */
|
|
188438
|
+
time_zone: string | null;
|
|
188232
188439
|
} | undefined;
|
|
188233
188440
|
}) & ({
|
|
188234
188441
|
/** */
|
|
@@ -189462,6 +189669,8 @@ type Routes = {
|
|
|
189462
189669
|
device_name: string;
|
|
189463
189670
|
/** Device type for an Ultraloq device. */
|
|
189464
189671
|
device_type: string;
|
|
189672
|
+
/** IANA timezone for the Ultraloq device. */
|
|
189673
|
+
time_zone: string | null;
|
|
189465
189674
|
} | undefined;
|
|
189466
189675
|
}) & ({
|
|
189467
189676
|
/** */
|
|
@@ -191660,6 +191869,8 @@ type Routes = {
|
|
|
191660
191869
|
device_name: string;
|
|
191661
191870
|
/** Device type for an Ultraloq device. */
|
|
191662
191871
|
device_type: string;
|
|
191872
|
+
/** IANA timezone for the Ultraloq device. */
|
|
191873
|
+
time_zone: string | null;
|
|
191663
191874
|
} | undefined;
|
|
191664
191875
|
}) & ({
|
|
191665
191876
|
/** */
|