@seamapi/types 1.422.1 → 1.423.1
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 +18 -175
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +78 -233
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +6 -3
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +6 -3
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +9 -4
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +8 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +6 -3
- package/lib/seam/connect/openapi.d.ts +10 -212
- package/lib/seam/connect/openapi.js +9 -173
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +54 -15
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +9 -4
- package/src/lib/seam/connect/openapi.ts +11 -190
- package/src/lib/seam/connect/route-types.ts +54 -15
|
@@ -214,8 +214,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
214
214
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
215
215
|
heating_set_point_fahrenheit?: number | undefined;
|
|
216
216
|
}>, "many">>;
|
|
217
|
-
fallback_climate_preset_key: z.ZodOptional<z.
|
|
218
|
-
active_thermostat_schedule: z.ZodOptional<z.
|
|
217
|
+
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
218
|
+
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
219
219
|
thermostat_schedule_id: z.ZodString;
|
|
220
220
|
device_id: z.ZodString;
|
|
221
221
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -266,7 +266,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
266
266
|
}[];
|
|
267
267
|
max_override_period_minutes?: number | null | undefined;
|
|
268
268
|
is_override_allowed?: boolean | undefined;
|
|
269
|
-
}
|
|
269
|
+
}>>>;
|
|
270
|
+
active_thermostat_schedule_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
270
271
|
thermostat_daily_programs: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
271
272
|
thermostat_daily_program_id: z.ZodString;
|
|
272
273
|
device_id: z.ZodString;
|
|
@@ -431,6 +432,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
431
432
|
max_override_period_minutes?: number | null | undefined;
|
|
432
433
|
is_override_allowed?: boolean | undefined;
|
|
433
434
|
} | null | undefined;
|
|
435
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
434
436
|
thermostat_daily_programs?: {
|
|
435
437
|
name: string | null;
|
|
436
438
|
thermostat_daily_program_id: string;
|
|
@@ -541,6 +543,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
541
543
|
max_override_period_minutes?: number | null | undefined;
|
|
542
544
|
is_override_allowed?: boolean | undefined;
|
|
543
545
|
} | null | undefined;
|
|
546
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
544
547
|
thermostat_daily_programs?: {
|
|
545
548
|
name: string | null;
|
|
546
549
|
thermostat_daily_program_id: string;
|
|
@@ -139,8 +139,8 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
139
139
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
140
140
|
heating_set_point_fahrenheit?: number | undefined;
|
|
141
141
|
}>, "many">>;
|
|
142
|
-
fallback_climate_preset_key: z.ZodOptional<z.
|
|
143
|
-
active_thermostat_schedule: z.ZodOptional<z.
|
|
142
|
+
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
143
|
+
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
144
144
|
thermostat_schedule_id: z.ZodString;
|
|
145
145
|
device_id: z.ZodString;
|
|
146
146
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -191,7 +191,8 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
191
191
|
}[];
|
|
192
192
|
max_override_period_minutes?: number | null | undefined;
|
|
193
193
|
is_override_allowed?: boolean | undefined;
|
|
194
|
-
}
|
|
194
|
+
}>>>;
|
|
195
|
+
active_thermostat_schedule_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
195
196
|
thermostat_daily_programs: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
196
197
|
thermostat_daily_program_id: z.ZodString;
|
|
197
198
|
device_id: z.ZodString;
|
|
@@ -356,6 +357,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
356
357
|
max_override_period_minutes?: number | null | undefined;
|
|
357
358
|
is_override_allowed?: boolean | undefined;
|
|
358
359
|
} | null | undefined;
|
|
360
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
359
361
|
thermostat_daily_programs?: {
|
|
360
362
|
name: string | null;
|
|
361
363
|
thermostat_daily_program_id: string;
|
|
@@ -466,6 +468,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
466
468
|
max_override_period_minutes?: number | null | undefined;
|
|
467
469
|
is_override_allowed?: boolean | undefined;
|
|
468
470
|
} | null | undefined;
|
|
471
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
469
472
|
thermostat_daily_programs?: {
|
|
470
473
|
name: string | null;
|
|
471
474
|
thermostat_daily_program_id: string;
|
|
@@ -86,20 +86,25 @@ export const thermostat_capability_properties = z
|
|
|
86
86
|
---
|
|
87
87
|
Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat.
|
|
88
88
|
`),
|
|
89
|
-
fallback_climate_preset_key: z.string().min(1).nullable().
|
|
90
|
-
.describe(`
|
|
89
|
+
fallback_climate_preset_key: z.string().min(1).nullable().describe(`
|
|
91
90
|
---
|
|
92
91
|
property_group_key: thermostats
|
|
93
92
|
---
|
|
94
93
|
Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat.
|
|
95
94
|
`),
|
|
96
|
-
active_thermostat_schedule: thermostat_schedule.nullable().
|
|
97
|
-
.describe(`
|
|
95
|
+
active_thermostat_schedule: thermostat_schedule.nullable().describe(`
|
|
98
96
|
---
|
|
99
97
|
property_group_key: thermostats
|
|
98
|
+
deprecated: Use \`active_thermostat_schedule_id\` with \`/thermostats/schedules/get\` instead.
|
|
100
99
|
---
|
|
101
100
|
Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
102
101
|
`),
|
|
102
|
+
active_thermostat_schedule_id: z.string().uuid().nullable().describe(`
|
|
103
|
+
---
|
|
104
|
+
property_group_key: thermostats
|
|
105
|
+
---
|
|
106
|
+
ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
107
|
+
`),
|
|
103
108
|
thermostat_daily_programs: z.array(thermostat_daily_program).optional()
|
|
104
109
|
.describe(`
|
|
105
110
|
---
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/thermostat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,wBAAwB,EACxB,mBAAmB,EACnB,yBAAyB,GAC1B,MAAM,4BAA4B,CAAA;AAEnC,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC;KAC9C,MAAM,CAAC;IACN,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC;;;;;WAKrC,CAAC;IACR,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC;;;;;WAKlC,CAAC;IACR,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC;;;;;WAK9C,CAAC;IACR,4BAA4B,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,QAAQ,CAAC;;;;;WAK3D,CAAC;IACR,2BAA2B,EAAE,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,QAAQ,CAAC;;;;;WAKzD,CAAC;IACR,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC;;;;;WAK1B,CAAC;IACR,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC;;;;;WAK1B,CAAC;IACR,cAAc,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC;;;;;WAK9B,CAAC;IACR,gBAAgB,EAAE,gBAAgB,CAAC,QAAQ,CAAC;;;;;KAK3C,CAAC;IAEF;;OAEG;IACH,mCAAmC,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC;;;;;WAKnD,CAAC;IAER;;OAEG;IACH,uBAAuB,EAAE,eAAe,CAAC,QAAQ,CAAC;;;;;WAK3C,CAAC;IACR,uBAAuB,EAAE,eAAe,CAAC,QAAQ,CAAC;;;;;KAKjD,CAAC;IACF,yBAAyB,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,QAAQ,CAAC;;;;;WAKrD,CAAC;IACR,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/thermostat.ts"],"names":[],"mappings":"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"}
|
|
@@ -3534,8 +3534,8 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3534
3534
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3535
3535
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3536
3536
|
}>, "many">>;
|
|
3537
|
-
fallback_climate_preset_key: z.ZodOptional<z.
|
|
3538
|
-
active_thermostat_schedule: z.ZodOptional<z.
|
|
3537
|
+
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3538
|
+
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3539
3539
|
thermostat_schedule_id: z.ZodString;
|
|
3540
3540
|
device_id: z.ZodString;
|
|
3541
3541
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -3586,7 +3586,8 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3586
3586
|
}[];
|
|
3587
3587
|
max_override_period_minutes?: number | null | undefined;
|
|
3588
3588
|
is_override_allowed?: boolean | undefined;
|
|
3589
|
-
}
|
|
3589
|
+
}>>>;
|
|
3590
|
+
active_thermostat_schedule_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3590
3591
|
thermostat_daily_programs: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3591
3592
|
thermostat_daily_program_id: z.ZodString;
|
|
3592
3593
|
device_id: z.ZodString;
|
|
@@ -3751,6 +3752,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3751
3752
|
max_override_period_minutes?: number | null | undefined;
|
|
3752
3753
|
is_override_allowed?: boolean | undefined;
|
|
3753
3754
|
} | null | undefined;
|
|
3755
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
3754
3756
|
thermostat_daily_programs?: {
|
|
3755
3757
|
name: string | null;
|
|
3756
3758
|
thermostat_daily_program_id: string;
|
|
@@ -3861,6 +3863,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3861
3863
|
max_override_period_minutes?: number | null | undefined;
|
|
3862
3864
|
is_override_allowed?: boolean | undefined;
|
|
3863
3865
|
} | null | undefined;
|
|
3866
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
3864
3867
|
thermostat_daily_programs?: {
|
|
3865
3868
|
name: string | null;
|
|
3866
3869
|
thermostat_daily_program_id: string;
|
|
@@ -5081,6 +5084,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5081
5084
|
max_override_period_minutes?: number | null | undefined;
|
|
5082
5085
|
is_override_allowed?: boolean | undefined;
|
|
5083
5086
|
} | null | undefined;
|
|
5087
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
5084
5088
|
thermostat_daily_programs?: {
|
|
5085
5089
|
name: string | null;
|
|
5086
5090
|
thermostat_daily_program_id: string;
|
|
@@ -5694,6 +5698,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5694
5698
|
max_override_period_minutes?: number | null | undefined;
|
|
5695
5699
|
is_override_allowed?: boolean | undefined;
|
|
5696
5700
|
} | null | undefined;
|
|
5701
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
5697
5702
|
thermostat_daily_programs?: {
|
|
5698
5703
|
name: string | null;
|
|
5699
5704
|
thermostat_daily_program_id: string;
|
|
@@ -1630,8 +1630,8 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1630
1630
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1631
1631
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1632
1632
|
}>, "many">>;
|
|
1633
|
-
fallback_climate_preset_key: z.ZodOptional<z.
|
|
1634
|
-
active_thermostat_schedule: z.ZodOptional<z.
|
|
1633
|
+
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1634
|
+
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1635
1635
|
thermostat_schedule_id: z.ZodString;
|
|
1636
1636
|
device_id: z.ZodString;
|
|
1637
1637
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -1682,7 +1682,8 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1682
1682
|
}[];
|
|
1683
1683
|
max_override_period_minutes?: number | null | undefined;
|
|
1684
1684
|
is_override_allowed?: boolean | undefined;
|
|
1685
|
-
}
|
|
1685
|
+
}>>>;
|
|
1686
|
+
active_thermostat_schedule_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1686
1687
|
thermostat_daily_programs: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1687
1688
|
thermostat_daily_program_id: z.ZodString;
|
|
1688
1689
|
device_id: z.ZodString;
|
|
@@ -1847,6 +1848,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1847
1848
|
max_override_period_minutes?: number | null | undefined;
|
|
1848
1849
|
is_override_allowed?: boolean | undefined;
|
|
1849
1850
|
} | null | undefined;
|
|
1851
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
1850
1852
|
thermostat_daily_programs?: {
|
|
1851
1853
|
name: string | null;
|
|
1852
1854
|
thermostat_daily_program_id: string;
|
|
@@ -1957,6 +1959,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1957
1959
|
max_override_period_minutes?: number | null | undefined;
|
|
1958
1960
|
is_override_allowed?: boolean | undefined;
|
|
1959
1961
|
} | null | undefined;
|
|
1962
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
1960
1963
|
thermostat_daily_programs?: {
|
|
1961
1964
|
name: string | null;
|
|
1962
1965
|
thermostat_daily_program_id: string;
|
|
@@ -5831,6 +5831,7 @@ declare const _default: {
|
|
|
5831
5831
|
'x-property-group-key': string;
|
|
5832
5832
|
};
|
|
5833
5833
|
active_thermostat_schedule?: never;
|
|
5834
|
+
active_thermostat_schedule_id?: never;
|
|
5834
5835
|
available_climate_presets?: never;
|
|
5835
5836
|
available_fan_mode_settings?: never;
|
|
5836
5837
|
available_hvac_mode_settings?: never;
|
|
@@ -5863,7 +5864,7 @@ declare const _default: {
|
|
|
5863
5864
|
} | {
|
|
5864
5865
|
properties: {
|
|
5865
5866
|
active_thermostat_schedule: {
|
|
5866
|
-
|
|
5867
|
+
deprecated: boolean;
|
|
5867
5868
|
description: string;
|
|
5868
5869
|
nullable: boolean;
|
|
5869
5870
|
properties: {
|
|
@@ -5938,9 +5939,17 @@ declare const _default: {
|
|
|
5938
5939
|
};
|
|
5939
5940
|
required: string[];
|
|
5940
5941
|
type: string;
|
|
5942
|
+
'x-deprecated': string;
|
|
5941
5943
|
'x-property-group-key': string;
|
|
5942
5944
|
'x-route-path': string;
|
|
5943
5945
|
};
|
|
5946
|
+
active_thermostat_schedule_id: {
|
|
5947
|
+
description: string;
|
|
5948
|
+
format: string;
|
|
5949
|
+
nullable: boolean;
|
|
5950
|
+
type: string;
|
|
5951
|
+
'x-property-group-key': string;
|
|
5952
|
+
};
|
|
5944
5953
|
available_climate_presets: {
|
|
5945
5954
|
description: string;
|
|
5946
5955
|
items: {
|
|
@@ -6172,7 +6181,6 @@ declare const _default: {
|
|
|
6172
6181
|
'x-property-group-key': string;
|
|
6173
6182
|
};
|
|
6174
6183
|
fallback_climate_preset_key: {
|
|
6175
|
-
default: null;
|
|
6176
6184
|
description: string;
|
|
6177
6185
|
minLength: number;
|
|
6178
6186
|
nullable: boolean;
|
|
@@ -29325,78 +29333,6 @@ declare const _default: {
|
|
|
29325
29333
|
};
|
|
29326
29334
|
};
|
|
29327
29335
|
'/devices/simulate/remove': {
|
|
29328
|
-
delete: {
|
|
29329
|
-
description: string;
|
|
29330
|
-
operationId: string;
|
|
29331
|
-
requestBody: {
|
|
29332
|
-
content: {
|
|
29333
|
-
'application/json': {
|
|
29334
|
-
schema: {
|
|
29335
|
-
properties: {
|
|
29336
|
-
device_id: {
|
|
29337
|
-
description: string;
|
|
29338
|
-
format: string;
|
|
29339
|
-
type: string;
|
|
29340
|
-
};
|
|
29341
|
-
};
|
|
29342
|
-
required: string[];
|
|
29343
|
-
type: string;
|
|
29344
|
-
};
|
|
29345
|
-
};
|
|
29346
|
-
};
|
|
29347
|
-
};
|
|
29348
|
-
responses: {
|
|
29349
|
-
200: {
|
|
29350
|
-
content: {
|
|
29351
|
-
'application/json': {
|
|
29352
|
-
schema: {
|
|
29353
|
-
properties: {
|
|
29354
|
-
ok: {
|
|
29355
|
-
type: string;
|
|
29356
|
-
};
|
|
29357
|
-
};
|
|
29358
|
-
required: string[];
|
|
29359
|
-
type: string;
|
|
29360
|
-
};
|
|
29361
|
-
};
|
|
29362
|
-
};
|
|
29363
|
-
description: string;
|
|
29364
|
-
};
|
|
29365
|
-
400: {
|
|
29366
|
-
description: string;
|
|
29367
|
-
};
|
|
29368
|
-
401: {
|
|
29369
|
-
description: string;
|
|
29370
|
-
};
|
|
29371
|
-
};
|
|
29372
|
-
security: ({
|
|
29373
|
-
api_key: never[];
|
|
29374
|
-
pat_with_workspace?: never;
|
|
29375
|
-
console_session_with_workspace?: never;
|
|
29376
|
-
client_session_with_customer?: never;
|
|
29377
|
-
} | {
|
|
29378
|
-
pat_with_workspace: never[];
|
|
29379
|
-
api_key?: never;
|
|
29380
|
-
console_session_with_workspace?: never;
|
|
29381
|
-
client_session_with_customer?: never;
|
|
29382
|
-
} | {
|
|
29383
|
-
console_session_with_workspace: never[];
|
|
29384
|
-
api_key?: never;
|
|
29385
|
-
pat_with_workspace?: never;
|
|
29386
|
-
client_session_with_customer?: never;
|
|
29387
|
-
} | {
|
|
29388
|
-
client_session_with_customer: never[];
|
|
29389
|
-
api_key?: never;
|
|
29390
|
-
pat_with_workspace?: never;
|
|
29391
|
-
console_session_with_workspace?: never;
|
|
29392
|
-
})[];
|
|
29393
|
-
summary: string;
|
|
29394
|
-
tags: string[];
|
|
29395
|
-
'x-fern-sdk-group-name': string[];
|
|
29396
|
-
'x-fern-sdk-method-name': string;
|
|
29397
|
-
'x-response-key': null;
|
|
29398
|
-
'x-title': string;
|
|
29399
|
-
};
|
|
29400
29336
|
post: {
|
|
29401
29337
|
description: string;
|
|
29402
29338
|
operationId: string;
|
|
@@ -34125,144 +34061,6 @@ declare const _default: {
|
|
|
34125
34061
|
};
|
|
34126
34062
|
};
|
|
34127
34063
|
'/phones/simulate/create_sandbox_phone': {
|
|
34128
|
-
get: {
|
|
34129
|
-
description: string;
|
|
34130
|
-
operationId: string;
|
|
34131
|
-
requestBody: {
|
|
34132
|
-
content: {
|
|
34133
|
-
'application/json': {
|
|
34134
|
-
schema: {
|
|
34135
|
-
properties: {
|
|
34136
|
-
assa_abloy_metadata: {
|
|
34137
|
-
default: {};
|
|
34138
|
-
description: string;
|
|
34139
|
-
properties: {
|
|
34140
|
-
application_version: {
|
|
34141
|
-
default: string;
|
|
34142
|
-
description: string;
|
|
34143
|
-
type: string;
|
|
34144
|
-
};
|
|
34145
|
-
ble_capability: {
|
|
34146
|
-
default: boolean;
|
|
34147
|
-
description: string;
|
|
34148
|
-
type: string;
|
|
34149
|
-
};
|
|
34150
|
-
hce_capability: {
|
|
34151
|
-
default: boolean;
|
|
34152
|
-
description: string;
|
|
34153
|
-
type: string;
|
|
34154
|
-
};
|
|
34155
|
-
nfc_capability: {
|
|
34156
|
-
default: boolean;
|
|
34157
|
-
description: string;
|
|
34158
|
-
type: string;
|
|
34159
|
-
};
|
|
34160
|
-
seos_applet_version: {
|
|
34161
|
-
default: string;
|
|
34162
|
-
description: string;
|
|
34163
|
-
type: string;
|
|
34164
|
-
};
|
|
34165
|
-
seos_tsm_endpoint_id: {
|
|
34166
|
-
default: number;
|
|
34167
|
-
description: string;
|
|
34168
|
-
format: string;
|
|
34169
|
-
type: string;
|
|
34170
|
-
};
|
|
34171
|
-
};
|
|
34172
|
-
type: string;
|
|
34173
|
-
};
|
|
34174
|
-
custom_sdk_installation_id: {
|
|
34175
|
-
description: string;
|
|
34176
|
-
type: string;
|
|
34177
|
-
};
|
|
34178
|
-
phone_metadata: {
|
|
34179
|
-
default: {};
|
|
34180
|
-
description: string;
|
|
34181
|
-
properties: {
|
|
34182
|
-
device_manufacturer: {
|
|
34183
|
-
default: string;
|
|
34184
|
-
description: string;
|
|
34185
|
-
type: string;
|
|
34186
|
-
};
|
|
34187
|
-
device_model: {
|
|
34188
|
-
default: string;
|
|
34189
|
-
description: string;
|
|
34190
|
-
type: string;
|
|
34191
|
-
};
|
|
34192
|
-
operating_system: {
|
|
34193
|
-
default: string;
|
|
34194
|
-
description: string;
|
|
34195
|
-
enum: string[];
|
|
34196
|
-
type: string;
|
|
34197
|
-
};
|
|
34198
|
-
os_version: {
|
|
34199
|
-
default: string;
|
|
34200
|
-
description: string;
|
|
34201
|
-
type: string;
|
|
34202
|
-
};
|
|
34203
|
-
};
|
|
34204
|
-
type: string;
|
|
34205
|
-
};
|
|
34206
|
-
user_identity_id: {
|
|
34207
|
-
description: string;
|
|
34208
|
-
format: string;
|
|
34209
|
-
type: string;
|
|
34210
|
-
};
|
|
34211
|
-
};
|
|
34212
|
-
required: string[];
|
|
34213
|
-
type: string;
|
|
34214
|
-
};
|
|
34215
|
-
};
|
|
34216
|
-
};
|
|
34217
|
-
};
|
|
34218
|
-
responses: {
|
|
34219
|
-
200: {
|
|
34220
|
-
content: {
|
|
34221
|
-
'application/json': {
|
|
34222
|
-
schema: {
|
|
34223
|
-
properties: {
|
|
34224
|
-
ok: {
|
|
34225
|
-
type: string;
|
|
34226
|
-
};
|
|
34227
|
-
phone: {
|
|
34228
|
-
$ref: string;
|
|
34229
|
-
};
|
|
34230
|
-
};
|
|
34231
|
-
required: string[];
|
|
34232
|
-
type: string;
|
|
34233
|
-
};
|
|
34234
|
-
};
|
|
34235
|
-
};
|
|
34236
|
-
description: string;
|
|
34237
|
-
};
|
|
34238
|
-
400: {
|
|
34239
|
-
description: string;
|
|
34240
|
-
};
|
|
34241
|
-
401: {
|
|
34242
|
-
description: string;
|
|
34243
|
-
};
|
|
34244
|
-
};
|
|
34245
|
-
security: ({
|
|
34246
|
-
api_key: never[];
|
|
34247
|
-
pat_with_workspace?: never;
|
|
34248
|
-
console_session_with_workspace?: never;
|
|
34249
|
-
} | {
|
|
34250
|
-
pat_with_workspace: never[];
|
|
34251
|
-
api_key?: never;
|
|
34252
|
-
console_session_with_workspace?: never;
|
|
34253
|
-
} | {
|
|
34254
|
-
console_session_with_workspace: never[];
|
|
34255
|
-
api_key?: never;
|
|
34256
|
-
pat_with_workspace?: never;
|
|
34257
|
-
})[];
|
|
34258
|
-
summary: string;
|
|
34259
|
-
tags: string[];
|
|
34260
|
-
'x-fern-sdk-group-name': string[];
|
|
34261
|
-
'x-fern-sdk-method-name': string;
|
|
34262
|
-
'x-fern-sdk-return-value': string;
|
|
34263
|
-
'x-response-key': string;
|
|
34264
|
-
'x-title': string;
|
|
34265
|
-
};
|
|
34266
34064
|
post: {
|
|
34267
34065
|
description: string;
|
|
34268
34066
|
operationId: string;
|