@seamapi/types 1.293.0 → 1.294.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 +300 -81
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +238 -45
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.d.ts +3 -5
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.js +23 -6
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.js.map +1 -1
- package/lib/seam/connect/models/thermostats/climate-preset.js +5 -3
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.js +26 -8
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +95 -1
- package/lib/seam/connect/openapi.js +259 -50
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +143 -44
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential-provisioning-automation.ts +32 -7
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +7 -5
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +34 -10
- package/src/lib/seam/connect/openapi.ts +302 -51
- package/src/lib/seam/connect/route-types.ts +143 -44
|
@@ -9689,7 +9689,8 @@ export interface Routes {
|
|
|
9689
9689
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
9690
9690
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
9691
9691
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
9692
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
9692
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
9693
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
9693
9694
|
manual_override_allowed?: boolean | undefined;
|
|
9694
9695
|
} | undefined;
|
|
9695
9696
|
/**
|
|
@@ -9717,7 +9718,8 @@ export interface Routes {
|
|
|
9717
9718
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
9718
9719
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
9719
9720
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
9720
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
9721
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
9722
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
9721
9723
|
manual_override_allowed?: boolean | undefined;
|
|
9722
9724
|
} | undefined;
|
|
9723
9725
|
available_climate_presets?: Array<{
|
|
@@ -9743,7 +9745,8 @@ export interface Routes {
|
|
|
9743
9745
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
9744
9746
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
9745
9747
|
heating_set_point_fahrenheit?: number | undefined;
|
|
9746
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
9748
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
9749
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
9747
9750
|
manual_override_allowed: boolean;
|
|
9748
9751
|
}> | undefined;
|
|
9749
9752
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -10236,7 +10239,8 @@ export interface Routes {
|
|
|
10236
10239
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
10237
10240
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
10238
10241
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
10239
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
10242
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
10243
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
10240
10244
|
manual_override_allowed?: boolean | undefined;
|
|
10241
10245
|
} | undefined;
|
|
10242
10246
|
/**
|
|
@@ -10264,7 +10268,8 @@ export interface Routes {
|
|
|
10264
10268
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
10265
10269
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
10266
10270
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
10267
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
10271
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
10272
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
10268
10273
|
manual_override_allowed?: boolean | undefined;
|
|
10269
10274
|
} | undefined;
|
|
10270
10275
|
available_climate_presets?: Array<{
|
|
@@ -10290,7 +10295,8 @@ export interface Routes {
|
|
|
10290
10295
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
10291
10296
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
10292
10297
|
heating_set_point_fahrenheit?: number | undefined;
|
|
10293
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
10298
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
10299
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
10294
10300
|
manual_override_allowed: boolean;
|
|
10295
10301
|
}> | undefined;
|
|
10296
10302
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -11186,7 +11192,8 @@ export interface Routes {
|
|
|
11186
11192
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11187
11193
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
11188
11194
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11189
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11195
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11196
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11190
11197
|
manual_override_allowed?: boolean | undefined;
|
|
11191
11198
|
} | undefined;
|
|
11192
11199
|
/**
|
|
@@ -11214,7 +11221,8 @@ export interface Routes {
|
|
|
11214
11221
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11215
11222
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
11216
11223
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11217
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11224
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11225
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11218
11226
|
manual_override_allowed?: boolean | undefined;
|
|
11219
11227
|
} | undefined;
|
|
11220
11228
|
available_climate_presets?: Array<{
|
|
@@ -11240,7 +11248,8 @@ export interface Routes {
|
|
|
11240
11248
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
11241
11249
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
11242
11250
|
heating_set_point_fahrenheit?: number | undefined;
|
|
11243
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11251
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11252
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11244
11253
|
manual_override_allowed: boolean;
|
|
11245
11254
|
}> | undefined;
|
|
11246
11255
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -11696,7 +11705,8 @@ export interface Routes {
|
|
|
11696
11705
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11697
11706
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
11698
11707
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11699
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11708
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11709
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11700
11710
|
manual_override_allowed?: boolean | undefined;
|
|
11701
11711
|
} | undefined;
|
|
11702
11712
|
/**
|
|
@@ -11724,7 +11734,8 @@ export interface Routes {
|
|
|
11724
11734
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11725
11735
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
11726
11736
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
11727
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11737
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11738
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11728
11739
|
manual_override_allowed?: boolean | undefined;
|
|
11729
11740
|
} | undefined;
|
|
11730
11741
|
available_climate_presets?: Array<{
|
|
@@ -11750,7 +11761,8 @@ export interface Routes {
|
|
|
11750
11761
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
11751
11762
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
11752
11763
|
heating_set_point_fahrenheit?: number | undefined;
|
|
11753
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11764
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11765
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11754
11766
|
manual_override_allowed: boolean;
|
|
11755
11767
|
}> | undefined;
|
|
11756
11768
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -12243,7 +12255,8 @@ export interface Routes {
|
|
|
12243
12255
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12244
12256
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
12245
12257
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12246
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12258
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12259
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12247
12260
|
manual_override_allowed?: boolean | undefined;
|
|
12248
12261
|
} | undefined;
|
|
12249
12262
|
/**
|
|
@@ -12271,7 +12284,8 @@ export interface Routes {
|
|
|
12271
12284
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12272
12285
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
12273
12286
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12274
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12287
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12288
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12275
12289
|
manual_override_allowed?: boolean | undefined;
|
|
12276
12290
|
} | undefined;
|
|
12277
12291
|
available_climate_presets?: Array<{
|
|
@@ -12297,7 +12311,8 @@ export interface Routes {
|
|
|
12297
12311
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
12298
12312
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
12299
12313
|
heating_set_point_fahrenheit?: number | undefined;
|
|
12300
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12314
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12315
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12301
12316
|
manual_override_allowed: boolean;
|
|
12302
12317
|
}> | undefined;
|
|
12303
12318
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -12753,7 +12768,8 @@ export interface Routes {
|
|
|
12753
12768
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12754
12769
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
12755
12770
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12756
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12771
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12772
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12757
12773
|
manual_override_allowed?: boolean | undefined;
|
|
12758
12774
|
} | undefined;
|
|
12759
12775
|
/**
|
|
@@ -12781,7 +12797,8 @@ export interface Routes {
|
|
|
12781
12797
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12782
12798
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
12783
12799
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
12784
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12800
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12801
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12785
12802
|
manual_override_allowed?: boolean | undefined;
|
|
12786
12803
|
} | undefined;
|
|
12787
12804
|
available_climate_presets?: Array<{
|
|
@@ -12807,7 +12824,8 @@ export interface Routes {
|
|
|
12807
12824
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
12808
12825
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
12809
12826
|
heating_set_point_fahrenheit?: number | undefined;
|
|
12810
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12827
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12828
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12811
12829
|
manual_override_allowed: boolean;
|
|
12812
12830
|
}> | undefined;
|
|
12813
12831
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -14800,7 +14818,8 @@ export interface Routes {
|
|
|
14800
14818
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
14801
14819
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
14802
14820
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
14803
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14821
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14822
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
14804
14823
|
manual_override_allowed?: boolean | undefined;
|
|
14805
14824
|
} | undefined;
|
|
14806
14825
|
/**
|
|
@@ -14828,7 +14847,8 @@ export interface Routes {
|
|
|
14828
14847
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
14829
14848
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
14830
14849
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
14831
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14850
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14851
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
14832
14852
|
manual_override_allowed?: boolean | undefined;
|
|
14833
14853
|
} | undefined;
|
|
14834
14854
|
available_climate_presets?: Array<{
|
|
@@ -14854,7 +14874,8 @@ export interface Routes {
|
|
|
14854
14874
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
14855
14875
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
14856
14876
|
heating_set_point_fahrenheit?: number | undefined;
|
|
14857
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14877
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14878
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
14858
14879
|
manual_override_allowed: boolean;
|
|
14859
14880
|
}> | undefined;
|
|
14860
14881
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -15310,7 +15331,8 @@ export interface Routes {
|
|
|
15310
15331
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
15311
15332
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
15312
15333
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
15313
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15334
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15335
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
15314
15336
|
manual_override_allowed?: boolean | undefined;
|
|
15315
15337
|
} | undefined;
|
|
15316
15338
|
/**
|
|
@@ -15338,7 +15360,8 @@ export interface Routes {
|
|
|
15338
15360
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
15339
15361
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
15340
15362
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
15341
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15363
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15364
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
15342
15365
|
manual_override_allowed?: boolean | undefined;
|
|
15343
15366
|
} | undefined;
|
|
15344
15367
|
available_climate_presets?: Array<{
|
|
@@ -15364,7 +15387,8 @@ export interface Routes {
|
|
|
15364
15387
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
15365
15388
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
15366
15389
|
heating_set_point_fahrenheit?: number | undefined;
|
|
15367
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15390
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15391
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
15368
15392
|
manual_override_allowed: boolean;
|
|
15369
15393
|
}> | undefined;
|
|
15370
15394
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -19379,6 +19403,7 @@ export interface Routes {
|
|
|
19379
19403
|
jsonBody: {
|
|
19380
19404
|
/** ID of the desired thermostat device. */
|
|
19381
19405
|
device_id: string;
|
|
19406
|
+
manual_override_allowed?: boolean;
|
|
19382
19407
|
/** Unique key to identify the climate preset. */
|
|
19383
19408
|
climate_preset_key: string;
|
|
19384
19409
|
/** User-friendly name to identify the climate preset. */
|
|
@@ -19395,8 +19420,6 @@ export interface Routes {
|
|
|
19395
19420
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
19396
19421
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
19397
19422
|
heating_set_point_fahrenheit?: number | undefined;
|
|
19398
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
19399
|
-
manual_override_allowed: boolean;
|
|
19400
19423
|
};
|
|
19401
19424
|
commonParams: {};
|
|
19402
19425
|
formData: {};
|
|
@@ -19798,7 +19821,8 @@ export interface Routes {
|
|
|
19798
19821
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
19799
19822
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
19800
19823
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
19801
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19824
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19825
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
19802
19826
|
manual_override_allowed?: boolean | undefined;
|
|
19803
19827
|
} | undefined;
|
|
19804
19828
|
/**
|
|
@@ -19826,7 +19850,8 @@ export interface Routes {
|
|
|
19826
19850
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
19827
19851
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
19828
19852
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
19829
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19853
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19854
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
19830
19855
|
manual_override_allowed?: boolean | undefined;
|
|
19831
19856
|
} | undefined;
|
|
19832
19857
|
available_climate_presets?: Array<{
|
|
@@ -19852,7 +19877,8 @@ export interface Routes {
|
|
|
19852
19877
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
19853
19878
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
19854
19879
|
heating_set_point_fahrenheit?: number | undefined;
|
|
19855
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19880
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19881
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
19856
19882
|
manual_override_allowed: boolean;
|
|
19857
19883
|
}> | undefined;
|
|
19858
19884
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -21827,7 +21853,8 @@ export interface Routes {
|
|
|
21827
21853
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
21828
21854
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
21829
21855
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
21830
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
21856
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
21857
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
21831
21858
|
manual_override_allowed?: boolean | undefined;
|
|
21832
21859
|
} | undefined;
|
|
21833
21860
|
/**
|
|
@@ -21855,7 +21882,8 @@ export interface Routes {
|
|
|
21855
21882
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
21856
21883
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
21857
21884
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
21858
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
21885
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
21886
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
21859
21887
|
manual_override_allowed?: boolean | undefined;
|
|
21860
21888
|
} | undefined;
|
|
21861
21889
|
available_climate_presets?: Array<{
|
|
@@ -21881,7 +21909,8 @@ export interface Routes {
|
|
|
21881
21909
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
21882
21910
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
21883
21911
|
heating_set_point_fahrenheit?: number | undefined;
|
|
21884
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
21912
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
21913
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
21885
21914
|
manual_override_allowed: boolean;
|
|
21886
21915
|
}> | undefined;
|
|
21887
21916
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -22337,7 +22366,8 @@ export interface Routes {
|
|
|
22337
22366
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
22338
22367
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
22339
22368
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
22340
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
22369
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
22370
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
22341
22371
|
manual_override_allowed?: boolean | undefined;
|
|
22342
22372
|
} | undefined;
|
|
22343
22373
|
/**
|
|
@@ -22365,7 +22395,8 @@ export interface Routes {
|
|
|
22365
22395
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
22366
22396
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
22367
22397
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
22368
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
22398
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
22399
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
22369
22400
|
manual_override_allowed?: boolean | undefined;
|
|
22370
22401
|
} | undefined;
|
|
22371
22402
|
available_climate_presets?: Array<{
|
|
@@ -22391,7 +22422,8 @@ export interface Routes {
|
|
|
22391
22422
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
22392
22423
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
22393
22424
|
heating_set_point_fahrenheit?: number | undefined;
|
|
22394
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
22425
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
22426
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
22395
22427
|
manual_override_allowed: boolean;
|
|
22396
22428
|
}> | undefined;
|
|
22397
22429
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -24166,7 +24198,8 @@ export interface Routes {
|
|
|
24166
24198
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
24167
24199
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
24168
24200
|
heating_set_point_fahrenheit?: number | undefined;
|
|
24169
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24201
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24202
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24170
24203
|
manual_override_allowed: boolean;
|
|
24171
24204
|
};
|
|
24172
24205
|
commonParams: {};
|
|
@@ -24179,7 +24212,9 @@ export interface Routes {
|
|
|
24179
24212
|
queryParams: {};
|
|
24180
24213
|
jsonBody: {};
|
|
24181
24214
|
commonParams: {
|
|
24215
|
+
/** ID of the desired user identity. */
|
|
24182
24216
|
user_identity_id: string;
|
|
24217
|
+
/** ID of the desired ACS user. */
|
|
24183
24218
|
acs_user_id: string;
|
|
24184
24219
|
};
|
|
24185
24220
|
formData: {};
|
|
@@ -24191,21 +24226,32 @@ export interface Routes {
|
|
|
24191
24226
|
queryParams: {};
|
|
24192
24227
|
jsonBody: {};
|
|
24193
24228
|
commonParams: {
|
|
24229
|
+
/** Unique key for the user identity. */
|
|
24194
24230
|
user_identity_key?: (string | null) | undefined;
|
|
24231
|
+
/** Unique email address for the user identity. */
|
|
24195
24232
|
email_address?: (string | null) | undefined;
|
|
24233
|
+
/** Unique phone number for the user identity in E.164 format (for example, +15555550100). */
|
|
24196
24234
|
phone_number?: (string | null) | undefined;
|
|
24235
|
+
/** Full name of the user associated with the user identity. */
|
|
24197
24236
|
full_name?: (string | null) | undefined;
|
|
24198
24237
|
};
|
|
24199
24238
|
formData: {};
|
|
24200
24239
|
jsonResponse: {
|
|
24240
|
+
/** Represents a [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) associated with an application user account. */
|
|
24201
24241
|
user_identity: {
|
|
24242
|
+
/** ID of the user identity. */
|
|
24202
24243
|
user_identity_id: string;
|
|
24244
|
+
/** Unique key for the user identity. */
|
|
24203
24245
|
user_identity_key: string | null;
|
|
24246
|
+
/** Unique email address for the user identity. */
|
|
24204
24247
|
email_address: string | null;
|
|
24248
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
24205
24249
|
phone_number: string | null;
|
|
24206
24250
|
display_name: string;
|
|
24207
24251
|
full_name: string | null;
|
|
24252
|
+
/** Date and time at which the user identity was created. */
|
|
24208
24253
|
created_at: string;
|
|
24254
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
24209
24255
|
workspace_id: string;
|
|
24210
24256
|
};
|
|
24211
24257
|
};
|
|
@@ -24216,6 +24262,7 @@ export interface Routes {
|
|
|
24216
24262
|
queryParams: {};
|
|
24217
24263
|
jsonBody: {};
|
|
24218
24264
|
commonParams: {
|
|
24265
|
+
/** ID of the desired user identity. */
|
|
24219
24266
|
user_identity_id: string;
|
|
24220
24267
|
};
|
|
24221
24268
|
formData: {};
|
|
@@ -24227,6 +24274,7 @@ export interface Routes {
|
|
|
24227
24274
|
queryParams: {};
|
|
24228
24275
|
jsonBody: {};
|
|
24229
24276
|
commonParams: {
|
|
24277
|
+
/** ID of the desired enrollment automation. */
|
|
24230
24278
|
enrollment_automation_id: string;
|
|
24231
24279
|
};
|
|
24232
24280
|
formData: {};
|
|
@@ -24238,16 +24286,23 @@ export interface Routes {
|
|
|
24238
24286
|
queryParams: {};
|
|
24239
24287
|
jsonBody: {};
|
|
24240
24288
|
commonParams: {
|
|
24289
|
+
/** ID of the desired enrollment automation. */
|
|
24241
24290
|
enrollment_automation_id: string;
|
|
24242
24291
|
};
|
|
24243
24292
|
formData: {};
|
|
24244
24293
|
jsonResponse: {
|
|
24294
|
+
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development). */
|
|
24245
24295
|
enrollment_automation: {
|
|
24296
|
+
/** ID of the enrollment automation. */
|
|
24297
|
+
enrollment_automation_id: string;
|
|
24298
|
+
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
24246
24299
|
credential_manager_acs_system_id: string;
|
|
24300
|
+
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). */
|
|
24247
24301
|
user_identity_id: string;
|
|
24302
|
+
/** Date and time at which the enrollment automation was created. */
|
|
24248
24303
|
created_at: string;
|
|
24304
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the enrollment automation. */
|
|
24249
24305
|
workspace_id: string;
|
|
24250
|
-
enrollment_automation_id: string;
|
|
24251
24306
|
};
|
|
24252
24307
|
};
|
|
24253
24308
|
};
|
|
@@ -24257,10 +24312,15 @@ export interface Routes {
|
|
|
24257
24312
|
queryParams: {};
|
|
24258
24313
|
jsonBody: {};
|
|
24259
24314
|
commonParams: {
|
|
24315
|
+
/** ID of the desired user identity. */
|
|
24260
24316
|
user_identity_id: string;
|
|
24317
|
+
/** ID of the desired ACS system that serves as the credential manager. */
|
|
24261
24318
|
credential_manager_acs_system_id: string;
|
|
24319
|
+
/** ID of the ACS credential pool from which to obtain credentials for the user identity. */
|
|
24262
24320
|
acs_credential_pool_id?: string | undefined;
|
|
24321
|
+
/** Indicates whether to create an associated credential manager user. If you set `create_credential_manager_user` to `true`, you cannot specify a `credential_manager_acs_user_id`. */
|
|
24263
24322
|
create_credential_manager_user?: boolean | undefined;
|
|
24323
|
+
/** ID of the associated ACS user within the credential manager. If you specify a `credential_manager_acs_user_id`, you cannot set `create_credential_manager_user` to `true`. */
|
|
24264
24324
|
credential_manager_acs_user_id?: string | undefined;
|
|
24265
24325
|
};
|
|
24266
24326
|
formData: {};
|
|
@@ -24281,16 +24341,22 @@ export interface Routes {
|
|
|
24281
24341
|
queryParams: {};
|
|
24282
24342
|
jsonBody: {};
|
|
24283
24343
|
commonParams: {
|
|
24344
|
+
/** ID of the user identity for which you want to retrieve all enrollment automations. */
|
|
24284
24345
|
user_identity_id: string;
|
|
24285
24346
|
};
|
|
24286
24347
|
formData: {};
|
|
24287
24348
|
jsonResponse: {
|
|
24288
24349
|
enrollment_automations: Array<{
|
|
24350
|
+
/** ID of the enrollment automation. */
|
|
24351
|
+
enrollment_automation_id: string;
|
|
24352
|
+
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
24289
24353
|
credential_manager_acs_system_id: string;
|
|
24354
|
+
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). */
|
|
24290
24355
|
user_identity_id: string;
|
|
24356
|
+
/** Date and time at which the enrollment automation was created. */
|
|
24291
24357
|
created_at: string;
|
|
24358
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the enrollment automation. */
|
|
24292
24359
|
workspace_id: string;
|
|
24293
|
-
enrollment_automation_id: string;
|
|
24294
24360
|
}>;
|
|
24295
24361
|
};
|
|
24296
24362
|
};
|
|
@@ -24300,20 +24366,28 @@ export interface Routes {
|
|
|
24300
24366
|
queryParams: {};
|
|
24301
24367
|
jsonBody: {};
|
|
24302
24368
|
commonParams: {
|
|
24369
|
+
/** ID of the desired user identity. */
|
|
24303
24370
|
user_identity_id: string;
|
|
24304
24371
|
} | {
|
|
24305
24372
|
user_identity_key: string;
|
|
24306
24373
|
};
|
|
24307
24374
|
formData: {};
|
|
24308
24375
|
jsonResponse: {
|
|
24376
|
+
/** Represents a [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) associated with an application user account. */
|
|
24309
24377
|
user_identity: {
|
|
24378
|
+
/** ID of the user identity. */
|
|
24310
24379
|
user_identity_id: string;
|
|
24380
|
+
/** Unique key for the user identity. */
|
|
24311
24381
|
user_identity_key: string | null;
|
|
24382
|
+
/** Unique email address for the user identity. */
|
|
24312
24383
|
email_address: string | null;
|
|
24384
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
24313
24385
|
phone_number: string | null;
|
|
24314
24386
|
display_name: string;
|
|
24315
24387
|
full_name: string | null;
|
|
24388
|
+
/** Date and time at which the user identity was created. */
|
|
24316
24389
|
created_at: string;
|
|
24390
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
24317
24391
|
workspace_id: string;
|
|
24318
24392
|
};
|
|
24319
24393
|
};
|
|
@@ -24324,7 +24398,9 @@ export interface Routes {
|
|
|
24324
24398
|
queryParams: {};
|
|
24325
24399
|
jsonBody: {};
|
|
24326
24400
|
commonParams: {
|
|
24401
|
+
/** ID of the desired user identity. */
|
|
24327
24402
|
user_identity_id: string;
|
|
24403
|
+
/** ID of the desired managed device. */
|
|
24328
24404
|
device_id: string;
|
|
24329
24405
|
};
|
|
24330
24406
|
formData: {};
|
|
@@ -24341,13 +24417,19 @@ export interface Routes {
|
|
|
24341
24417
|
formData: {};
|
|
24342
24418
|
jsonResponse: {
|
|
24343
24419
|
user_identities: Array<{
|
|
24420
|
+
/** ID of the user identity. */
|
|
24344
24421
|
user_identity_id: string;
|
|
24422
|
+
/** Unique key for the user identity. */
|
|
24345
24423
|
user_identity_key: string | null;
|
|
24424
|
+
/** Unique email address for the user identity. */
|
|
24346
24425
|
email_address: string | null;
|
|
24426
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
24347
24427
|
phone_number: string | null;
|
|
24348
24428
|
display_name: string;
|
|
24349
24429
|
full_name: string | null;
|
|
24430
|
+
/** Date and time at which the user identity was created. */
|
|
24350
24431
|
created_at: string;
|
|
24432
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
24351
24433
|
workspace_id: string;
|
|
24352
24434
|
}>;
|
|
24353
24435
|
};
|
|
@@ -24358,6 +24440,7 @@ export interface Routes {
|
|
|
24358
24440
|
queryParams: {};
|
|
24359
24441
|
jsonBody: {};
|
|
24360
24442
|
commonParams: {
|
|
24443
|
+
/** ID of the user identity for which you want to retrieve all accessible devices. */
|
|
24361
24444
|
user_identity_id: string;
|
|
24362
24445
|
};
|
|
24363
24446
|
formData: {};
|
|
@@ -24731,7 +24814,8 @@ export interface Routes {
|
|
|
24731
24814
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
24732
24815
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
24733
24816
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
24734
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24817
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24818
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24735
24819
|
manual_override_allowed?: boolean | undefined;
|
|
24736
24820
|
} | undefined;
|
|
24737
24821
|
/**
|
|
@@ -24759,7 +24843,8 @@ export interface Routes {
|
|
|
24759
24843
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
24760
24844
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
24761
24845
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
24762
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24846
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24847
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24763
24848
|
manual_override_allowed?: boolean | undefined;
|
|
24764
24849
|
} | undefined;
|
|
24765
24850
|
available_climate_presets?: Array<{
|
|
@@ -24785,7 +24870,8 @@ export interface Routes {
|
|
|
24785
24870
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
24786
24871
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
24787
24872
|
heating_set_point_fahrenheit?: number | undefined;
|
|
24788
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24873
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24874
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24789
24875
|
manual_override_allowed: boolean;
|
|
24790
24876
|
}> | undefined;
|
|
24791
24877
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -25243,7 +25329,8 @@ export interface Routes {
|
|
|
25243
25329
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
25244
25330
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
25245
25331
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
25246
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
25332
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
25333
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
25247
25334
|
manual_override_allowed?: boolean | undefined;
|
|
25248
25335
|
} | undefined;
|
|
25249
25336
|
/**
|
|
@@ -25271,7 +25358,8 @@ export interface Routes {
|
|
|
25271
25358
|
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
25272
25359
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
25273
25360
|
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
25274
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
25361
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
25362
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
25275
25363
|
manual_override_allowed?: boolean | undefined;
|
|
25276
25364
|
} | undefined;
|
|
25277
25365
|
available_climate_presets?: Array<{
|
|
@@ -25297,7 +25385,8 @@ export interface Routes {
|
|
|
25297
25385
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
25298
25386
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
25299
25387
|
heating_set_point_fahrenheit?: number | undefined;
|
|
25300
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
25388
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
25389
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
25301
25390
|
manual_override_allowed: boolean;
|
|
25302
25391
|
}> | undefined;
|
|
25303
25392
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
@@ -25392,6 +25481,7 @@ export interface Routes {
|
|
|
25392
25481
|
queryParams: {};
|
|
25393
25482
|
jsonBody: {};
|
|
25394
25483
|
commonParams: {
|
|
25484
|
+
/** ID of the user identity for which you want to retrieve all access control systems. */
|
|
25395
25485
|
user_identity_id: string;
|
|
25396
25486
|
};
|
|
25397
25487
|
formData: {};
|
|
@@ -25500,6 +25590,7 @@ export interface Routes {
|
|
|
25500
25590
|
queryParams: {};
|
|
25501
25591
|
jsonBody: {};
|
|
25502
25592
|
commonParams: {
|
|
25593
|
+
/** ID of the user identity for which you want to retrieve all ACS users. */
|
|
25503
25594
|
user_identity_id: string;
|
|
25504
25595
|
};
|
|
25505
25596
|
formData: {};
|
|
@@ -25602,7 +25693,9 @@ export interface Routes {
|
|
|
25602
25693
|
queryParams: {};
|
|
25603
25694
|
jsonBody: {};
|
|
25604
25695
|
commonParams: {
|
|
25696
|
+
/** ID of the desired user identity. */
|
|
25605
25697
|
user_identity_id: string;
|
|
25698
|
+
/** ID of the ACS user. */
|
|
25606
25699
|
acs_user_id: string;
|
|
25607
25700
|
};
|
|
25608
25701
|
formData: {};
|
|
@@ -25614,7 +25707,9 @@ export interface Routes {
|
|
|
25614
25707
|
queryParams: {};
|
|
25615
25708
|
jsonBody: {};
|
|
25616
25709
|
commonParams: {
|
|
25710
|
+
/** ID of the desired user identity. */
|
|
25617
25711
|
user_identity_id: string;
|
|
25712
|
+
/** ID of the desired managed device. */
|
|
25618
25713
|
device_id: string;
|
|
25619
25714
|
};
|
|
25620
25715
|
formData: {};
|
|
@@ -25625,9 +25720,13 @@ export interface Routes {
|
|
|
25625
25720
|
method: 'PATCH' | 'POST';
|
|
25626
25721
|
queryParams: {};
|
|
25627
25722
|
jsonBody: {
|
|
25723
|
+
/** ID of the user identity. */
|
|
25628
25724
|
user_identity_id: string;
|
|
25725
|
+
/** Unique key for the user identity. */
|
|
25629
25726
|
user_identity_key?: (string | null) | undefined;
|
|
25727
|
+
/** Unique email address for the user identity. */
|
|
25630
25728
|
email_address?: (string | null) | undefined;
|
|
25729
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
25631
25730
|
phone_number?: (string | null) | undefined;
|
|
25632
25731
|
full_name?: (string | null) | undefined;
|
|
25633
25732
|
};
|