@seamapi/types 1.679.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 +516 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +175 -0
- package/dist/index.cjs +516 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -0
- 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 +94 -0
- package/lib/seam/connect/openapi.js +514 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +55 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +517 -1
- package/src/lib/seam/connect/route-types.ts +486 -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;
|
|
@@ -89054,6 +89085,95 @@ declare const _default: {
|
|
|
89054
89085
|
'x-title': string;
|
|
89055
89086
|
};
|
|
89056
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
|
+
};
|
|
89057
89177
|
'/devices/simulate/connect': {
|
|
89058
89178
|
post: {
|
|
89059
89179
|
description: string;
|
|
@@ -124694,6 +124814,8 @@ type Routes = {
|
|
|
124694
124814
|
device_name: string;
|
|
124695
124815
|
/** Device type for an Ultraloq device. */
|
|
124696
124816
|
device_type: string;
|
|
124817
|
+
/** IANA timezone for the Ultraloq device. */
|
|
124818
|
+
time_zone: string | null;
|
|
124697
124819
|
} | undefined;
|
|
124698
124820
|
}) & ({
|
|
124699
124821
|
/** */
|
|
@@ -128083,6 +128205,8 @@ type Routes = {
|
|
|
128083
128205
|
device_name: string;
|
|
128084
128206
|
/** Device type for an Ultraloq device. */
|
|
128085
128207
|
device_type: string;
|
|
128208
|
+
/** IANA timezone for the Ultraloq device. */
|
|
128209
|
+
time_zone: string | null;
|
|
128086
128210
|
} | undefined;
|
|
128087
128211
|
}) & ({
|
|
128088
128212
|
/** */
|
|
@@ -141741,6 +141865,8 @@ type Routes = {
|
|
|
141741
141865
|
device_name: string;
|
|
141742
141866
|
/** Device type for an Ultraloq device. */
|
|
141743
141867
|
device_type: string;
|
|
141868
|
+
/** IANA timezone for the Ultraloq device. */
|
|
141869
|
+
time_zone: string | null;
|
|
141744
141870
|
} | undefined;
|
|
141745
141871
|
}) & ({
|
|
141746
141872
|
/** */
|
|
@@ -143023,6 +143149,8 @@ type Routes = {
|
|
|
143023
143149
|
device_name: string;
|
|
143024
143150
|
/** Device type for an Ultraloq device. */
|
|
143025
143151
|
device_type: string;
|
|
143152
|
+
/** IANA timezone for the Ultraloq device. */
|
|
143153
|
+
time_zone: string | null;
|
|
143026
143154
|
} | undefined;
|
|
143027
143155
|
}) & ({
|
|
143028
143156
|
/** */
|
|
@@ -143703,6 +143831,27 @@ type Routes = {
|
|
|
143703
143831
|
};
|
|
143704
143832
|
maxDuration: undefined;
|
|
143705
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
|
+
};
|
|
143706
143855
|
'/devices/simulate/connect': {
|
|
143707
143856
|
route: '/devices/simulate/connect';
|
|
143708
143857
|
method: 'POST';
|
|
@@ -149370,6 +149519,8 @@ type Routes = {
|
|
|
149370
149519
|
device_name: string;
|
|
149371
149520
|
/** Device type for an Ultraloq device. */
|
|
149372
149521
|
device_type: string;
|
|
149522
|
+
/** IANA timezone for the Ultraloq device. */
|
|
149523
|
+
time_zone: string | null;
|
|
149373
149524
|
} | undefined;
|
|
149374
149525
|
}) & ({
|
|
149375
149526
|
/** */
|
|
@@ -150602,6 +150753,8 @@ type Routes = {
|
|
|
150602
150753
|
device_name: string;
|
|
150603
150754
|
/** Device type for an Ultraloq device. */
|
|
150604
150755
|
device_type: string;
|
|
150756
|
+
/** IANA timezone for the Ultraloq device. */
|
|
150757
|
+
time_zone: string | null;
|
|
150605
150758
|
} | undefined;
|
|
150606
150759
|
}) & ({
|
|
150607
150760
|
/** */
|
|
@@ -151884,6 +152037,8 @@ type Routes = {
|
|
|
151884
152037
|
device_name: string;
|
|
151885
152038
|
/** Device type for an Ultraloq device. */
|
|
151886
152039
|
device_type: string;
|
|
152040
|
+
/** IANA timezone for the Ultraloq device. */
|
|
152041
|
+
time_zone: string | null;
|
|
151887
152042
|
} | undefined;
|
|
151888
152043
|
}) & ({
|
|
151889
152044
|
/** */
|
|
@@ -153115,6 +153270,8 @@ type Routes = {
|
|
|
153115
153270
|
device_name: string;
|
|
153116
153271
|
/** Device type for an Ultraloq device. */
|
|
153117
153272
|
device_type: string;
|
|
153273
|
+
/** IANA timezone for the Ultraloq device. */
|
|
153274
|
+
time_zone: string | null;
|
|
153118
153275
|
} | undefined;
|
|
153119
153276
|
}) & ({
|
|
153120
153277
|
/** */
|
|
@@ -159479,6 +159636,8 @@ type Routes = {
|
|
|
159479
159636
|
device_name: string;
|
|
159480
159637
|
/** Device type for an Ultraloq device. */
|
|
159481
159638
|
device_type: string;
|
|
159639
|
+
/** IANA timezone for the Ultraloq device. */
|
|
159640
|
+
time_zone: string | null;
|
|
159482
159641
|
} | undefined;
|
|
159483
159642
|
}) & ({
|
|
159484
159643
|
/** */
|
|
@@ -160710,6 +160869,8 @@ type Routes = {
|
|
|
160710
160869
|
device_name: string;
|
|
160711
160870
|
/** Device type for an Ultraloq device. */
|
|
160712
160871
|
device_type: string;
|
|
160872
|
+
/** IANA timezone for the Ultraloq device. */
|
|
160873
|
+
time_zone: string | null;
|
|
160713
160874
|
} | undefined;
|
|
160714
160875
|
}) & ({
|
|
160715
160876
|
/** */
|
|
@@ -170270,6 +170431,8 @@ type Routes = {
|
|
|
170270
170431
|
device_name: string;
|
|
170271
170432
|
/** Device type for an Ultraloq device. */
|
|
170272
170433
|
device_type: string;
|
|
170434
|
+
/** IANA timezone for the Ultraloq device. */
|
|
170435
|
+
time_zone: string | null;
|
|
170273
170436
|
} | undefined;
|
|
170274
170437
|
}) & ({
|
|
170275
170438
|
/** */
|
|
@@ -175947,6 +176110,8 @@ type Routes = {
|
|
|
175947
176110
|
device_name: string;
|
|
175948
176111
|
/** Device type for an Ultraloq device. */
|
|
175949
176112
|
device_type: string;
|
|
176113
|
+
/** IANA timezone for the Ultraloq device. */
|
|
176114
|
+
time_zone: string | null;
|
|
175950
176115
|
} | undefined;
|
|
175951
176116
|
}) & ({
|
|
175952
176117
|
/** */
|
|
@@ -179783,6 +179948,8 @@ type Routes = {
|
|
|
179783
179948
|
device_name: string;
|
|
179784
179949
|
/** Device type for an Ultraloq device. */
|
|
179785
179950
|
device_type: string;
|
|
179951
|
+
/** IANA timezone for the Ultraloq device. */
|
|
179952
|
+
time_zone: string | null;
|
|
179786
179953
|
} | undefined;
|
|
179787
179954
|
}) & ({
|
|
179788
179955
|
/** */
|
|
@@ -181014,6 +181181,8 @@ type Routes = {
|
|
|
181014
181181
|
device_name: string;
|
|
181015
181182
|
/** Device type for an Ultraloq device. */
|
|
181016
181183
|
device_type: string;
|
|
181184
|
+
/** IANA timezone for the Ultraloq device. */
|
|
181185
|
+
time_zone: string | null;
|
|
181017
181186
|
} | undefined;
|
|
181018
181187
|
}) & ({
|
|
181019
181188
|
/** */
|
|
@@ -188265,6 +188434,8 @@ type Routes = {
|
|
|
188265
188434
|
device_name: string;
|
|
188266
188435
|
/** Device type for an Ultraloq device. */
|
|
188267
188436
|
device_type: string;
|
|
188437
|
+
/** IANA timezone for the Ultraloq device. */
|
|
188438
|
+
time_zone: string | null;
|
|
188268
188439
|
} | undefined;
|
|
188269
188440
|
}) & ({
|
|
188270
188441
|
/** */
|
|
@@ -189498,6 +189669,8 @@ type Routes = {
|
|
|
189498
189669
|
device_name: string;
|
|
189499
189670
|
/** Device type for an Ultraloq device. */
|
|
189500
189671
|
device_type: string;
|
|
189672
|
+
/** IANA timezone for the Ultraloq device. */
|
|
189673
|
+
time_zone: string | null;
|
|
189501
189674
|
} | undefined;
|
|
189502
189675
|
}) & ({
|
|
189503
189676
|
/** */
|
|
@@ -191696,6 +191869,8 @@ type Routes = {
|
|
|
191696
191869
|
device_name: string;
|
|
191697
191870
|
/** Device type for an Ultraloq device. */
|
|
191698
191871
|
device_type: string;
|
|
191872
|
+
/** IANA timezone for the Ultraloq device. */
|
|
191873
|
+
time_zone: string | null;
|
|
191699
191874
|
} | undefined;
|
|
191700
191875
|
}) & ({
|
|
191701
191876
|
/** */
|