@seamapi/types 1.395.2 → 1.396.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 +164 -173
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2418 -3325
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +102 -12
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +184 -202
- package/lib/seam/connect/openapi.js +159 -170
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1810 -2915
- package/package.json +1 -1
- package/src/lib/seam/connect/model-types.ts +2 -0
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +4 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +169 -179
- package/src/lib/seam/connect/route-types.ts +3362 -4652
package/dist/connect.cjs
CHANGED
|
@@ -1319,7 +1319,8 @@ var DEVICE_PROVIDERS = {
|
|
|
1319
1319
|
ASSA_ABLOY_VOSTIO_CREDENTIAL_SERVICE: "assa_abloy_vostio_credential_service",
|
|
1320
1320
|
TADO: "tado",
|
|
1321
1321
|
SALTO_SPACE: "salto_space",
|
|
1322
|
-
SENSI: "sensi"
|
|
1322
|
+
SENSI: "sensi",
|
|
1323
|
+
KWIKSET2: "kwikset2"
|
|
1323
1324
|
};
|
|
1324
1325
|
var ALL_DEVICE_PROVIDERS = Object.values(DEVICE_PROVIDERS);
|
|
1325
1326
|
var PROVIDER_CATEGORY_MAP = {
|
|
@@ -1350,7 +1351,8 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
1350
1351
|
"visionline",
|
|
1351
1352
|
"assa_abloy_credential_service",
|
|
1352
1353
|
"latch",
|
|
1353
|
-
"akiles"
|
|
1354
|
+
"akiles",
|
|
1355
|
+
"sensi"
|
|
1354
1356
|
],
|
|
1355
1357
|
consumer_smartlocks: [
|
|
1356
1358
|
"akiles",
|
|
@@ -13496,7 +13498,8 @@ var openapi_default = {
|
|
|
13496
13498
|
"assa_abloy_vostio_credential_service",
|
|
13497
13499
|
"tado",
|
|
13498
13500
|
"salto_space",
|
|
13499
|
-
"sensi"
|
|
13501
|
+
"sensi",
|
|
13502
|
+
"kwikset2"
|
|
13500
13503
|
],
|
|
13501
13504
|
type: "string"
|
|
13502
13505
|
},
|
|
@@ -23753,6 +23756,11 @@ var openapi_default = {
|
|
|
23753
23756
|
description: "ID of the user for which you want to retrieve all access groups.",
|
|
23754
23757
|
format: "uuid",
|
|
23755
23758
|
type: "string"
|
|
23759
|
+
},
|
|
23760
|
+
user_identity_id: {
|
|
23761
|
+
description: "ID of the user identity for which you want to retrieve all access groups.",
|
|
23762
|
+
format: "uuid",
|
|
23763
|
+
type: "string"
|
|
23756
23764
|
}
|
|
23757
23765
|
},
|
|
23758
23766
|
type: "object"
|
|
@@ -27971,6 +27979,7 @@ var openapi_default = {
|
|
|
27971
27979
|
"tado",
|
|
27972
27980
|
"salto_space",
|
|
27973
27981
|
"sensi",
|
|
27982
|
+
"kwikset2",
|
|
27974
27983
|
"yale_access",
|
|
27975
27984
|
"hid_cm",
|
|
27976
27985
|
"google_nest"
|
|
@@ -28331,6 +28340,10 @@ var openapi_default = {
|
|
|
28331
28340
|
description: "Returns accounts whose custom_metadata contains all of the provided key/value pairs.",
|
|
28332
28341
|
type: "object"
|
|
28333
28342
|
},
|
|
28343
|
+
customer_ids: {
|
|
28344
|
+
items: { format: "uuid", type: "string" },
|
|
28345
|
+
type: "array"
|
|
28346
|
+
},
|
|
28334
28347
|
limit: {
|
|
28335
28348
|
default: 11e3,
|
|
28336
28349
|
description: "Maximum number of records to return per page.",
|
|
@@ -28580,6 +28593,10 @@ var openapi_default = {
|
|
|
28580
28593
|
description: "Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs by which you want to filter devices.",
|
|
28581
28594
|
type: "object"
|
|
28582
28595
|
},
|
|
28596
|
+
customer_ids: {
|
|
28597
|
+
items: { format: "uuid", type: "string" },
|
|
28598
|
+
type: "array"
|
|
28599
|
+
},
|
|
28583
28600
|
device_ids: {
|
|
28584
28601
|
description: "Array of device IDs by which to filter devices.",
|
|
28585
28602
|
items: { format: "uuid", type: "string" },
|
|
@@ -28771,19 +28788,20 @@ var openapi_default = {
|
|
|
28771
28788
|
"unknown",
|
|
28772
28789
|
"wyze",
|
|
28773
28790
|
"yale",
|
|
28774
|
-
"minut",
|
|
28775
28791
|
"two_n",
|
|
28776
28792
|
"ttlock",
|
|
28777
|
-
"nest",
|
|
28778
28793
|
"igloohome",
|
|
28779
|
-
"ecobee",
|
|
28780
28794
|
"hubitat",
|
|
28781
28795
|
"controlbyweb",
|
|
28782
28796
|
"smartthings",
|
|
28783
28797
|
"dormakaba_oracode",
|
|
28784
28798
|
"tedee",
|
|
28785
|
-
"honeywell_resideo",
|
|
28786
28799
|
"akiles",
|
|
28800
|
+
"ecobee",
|
|
28801
|
+
"honeywell_resideo",
|
|
28802
|
+
"minut",
|
|
28803
|
+
"nest",
|
|
28804
|
+
"noiseaware",
|
|
28787
28805
|
"tado",
|
|
28788
28806
|
"sensi"
|
|
28789
28807
|
],
|
|
@@ -29118,6 +29136,10 @@ var openapi_default = {
|
|
|
29118
29136
|
description: "Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs by which you want to filter devices.",
|
|
29119
29137
|
type: "object"
|
|
29120
29138
|
},
|
|
29139
|
+
customer_ids: {
|
|
29140
|
+
items: { format: "uuid", type: "string" },
|
|
29141
|
+
type: "array"
|
|
29142
|
+
},
|
|
29121
29143
|
device_ids: {
|
|
29122
29144
|
description: "Array of device IDs by which to filter devices.",
|
|
29123
29145
|
items: { format: "uuid", type: "string" },
|
|
@@ -29309,19 +29331,20 @@ var openapi_default = {
|
|
|
29309
29331
|
"unknown",
|
|
29310
29332
|
"wyze",
|
|
29311
29333
|
"yale",
|
|
29312
|
-
"minut",
|
|
29313
29334
|
"two_n",
|
|
29314
29335
|
"ttlock",
|
|
29315
|
-
"nest",
|
|
29316
29336
|
"igloohome",
|
|
29317
|
-
"ecobee",
|
|
29318
29337
|
"hubitat",
|
|
29319
29338
|
"controlbyweb",
|
|
29320
29339
|
"smartthings",
|
|
29321
29340
|
"dormakaba_oracode",
|
|
29322
29341
|
"tedee",
|
|
29323
|
-
"honeywell_resideo",
|
|
29324
29342
|
"akiles",
|
|
29343
|
+
"ecobee",
|
|
29344
|
+
"honeywell_resideo",
|
|
29345
|
+
"minut",
|
|
29346
|
+
"nest",
|
|
29347
|
+
"noiseaware",
|
|
29325
29348
|
"tado",
|
|
29326
29349
|
"sensi"
|
|
29327
29350
|
],
|
|
@@ -29671,6 +29694,10 @@ var openapi_default = {
|
|
|
29671
29694
|
},
|
|
29672
29695
|
connect_webview_id: { format: "uuid", type: "string" },
|
|
29673
29696
|
connected_account_id: { format: "uuid", type: "string" },
|
|
29697
|
+
customer_ids: {
|
|
29698
|
+
items: { format: "uuid", type: "string" },
|
|
29699
|
+
type: "array"
|
|
29700
|
+
},
|
|
29674
29701
|
device_id: { format: "uuid", type: "string" },
|
|
29675
29702
|
device_ids: {
|
|
29676
29703
|
items: { format: "uuid", type: "string" },
|
|
@@ -30000,6 +30027,10 @@ var openapi_default = {
|
|
|
30000
30027
|
description: "Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs by which you want to filter devices.",
|
|
30001
30028
|
type: "object"
|
|
30002
30029
|
},
|
|
30030
|
+
customer_ids: {
|
|
30031
|
+
items: { format: "uuid", type: "string" },
|
|
30032
|
+
type: "array"
|
|
30033
|
+
},
|
|
30003
30034
|
device_ids: {
|
|
30004
30035
|
description: "Array of device IDs by which to filter devices.",
|
|
30005
30036
|
items: { format: "uuid", type: "string" },
|
|
@@ -30547,6 +30578,10 @@ var openapi_default = {
|
|
|
30547
30578
|
description: "Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs by which you want to filter devices.",
|
|
30548
30579
|
type: "object"
|
|
30549
30580
|
},
|
|
30581
|
+
customer_ids: {
|
|
30582
|
+
items: { format: "uuid", type: "string" },
|
|
30583
|
+
type: "array"
|
|
30584
|
+
},
|
|
30550
30585
|
device_ids: {
|
|
30551
30586
|
description: "Array of device IDs by which to filter devices.",
|
|
30552
30587
|
items: { format: "uuid", type: "string" },
|
|
@@ -30613,7 +30648,7 @@ var openapi_default = {
|
|
|
30613
30648
|
},
|
|
30614
30649
|
manufacturer: {
|
|
30615
30650
|
description: "Manufacturer by which to filter devices.",
|
|
30616
|
-
enum: ["
|
|
30651
|
+
enum: ["minut", "noiseaware"],
|
|
30617
30652
|
type: "string"
|
|
30618
30653
|
},
|
|
30619
30654
|
page_cursor: {
|
|
@@ -32609,166 +32644,6 @@ var openapi_default = {
|
|
|
32609
32644
|
"x-title": "Activate a Climate Preset"
|
|
32610
32645
|
}
|
|
32611
32646
|
},
|
|
32612
|
-
"/thermostats/activate_weekly_program": {
|
|
32613
|
-
post: {
|
|
32614
|
-
description: "Activates a thermostat weekly program.",
|
|
32615
|
-
operationId: "thermostatsActivateWeeklyProgramPost",
|
|
32616
|
-
requestBody: {
|
|
32617
|
-
content: {
|
|
32618
|
-
"application/json": {
|
|
32619
|
-
schema: {
|
|
32620
|
-
properties: {
|
|
32621
|
-
device_id: {
|
|
32622
|
-
description: "ID of the thermostat device that the weekly program is for.",
|
|
32623
|
-
format: "uuid",
|
|
32624
|
-
type: "string"
|
|
32625
|
-
},
|
|
32626
|
-
friday_program_id: {
|
|
32627
|
-
description: "ID of the thermostat daily program to run on Fridays.",
|
|
32628
|
-
format: "uuid",
|
|
32629
|
-
nullable: true,
|
|
32630
|
-
type: "string"
|
|
32631
|
-
},
|
|
32632
|
-
monday_program_id: {
|
|
32633
|
-
description: "ID of the thermostat daily program to run on Mondays.",
|
|
32634
|
-
format: "uuid",
|
|
32635
|
-
nullable: true,
|
|
32636
|
-
type: "string"
|
|
32637
|
-
},
|
|
32638
|
-
saturday_program_id: {
|
|
32639
|
-
description: "ID of the thermostat daily program to run on Saturdays.",
|
|
32640
|
-
format: "uuid",
|
|
32641
|
-
nullable: true,
|
|
32642
|
-
type: "string"
|
|
32643
|
-
},
|
|
32644
|
-
sunday_program_id: {
|
|
32645
|
-
description: "ID of the thermostat daily program to run on Sundays.",
|
|
32646
|
-
format: "uuid",
|
|
32647
|
-
nullable: true,
|
|
32648
|
-
type: "string"
|
|
32649
|
-
},
|
|
32650
|
-
thursday_program_id: {
|
|
32651
|
-
description: "ID of the thermostat daily program to run on Thursdays.",
|
|
32652
|
-
format: "uuid",
|
|
32653
|
-
nullable: true,
|
|
32654
|
-
type: "string"
|
|
32655
|
-
},
|
|
32656
|
-
tuesday_program_id: {
|
|
32657
|
-
description: "ID of the thermostat daily program to run on Tuesdays.",
|
|
32658
|
-
format: "uuid",
|
|
32659
|
-
nullable: true,
|
|
32660
|
-
type: "string"
|
|
32661
|
-
},
|
|
32662
|
-
wednesday_program_id: {
|
|
32663
|
-
description: "ID of the thermostat daily program to run on Wednesdays.",
|
|
32664
|
-
format: "uuid",
|
|
32665
|
-
nullable: true,
|
|
32666
|
-
type: "string"
|
|
32667
|
-
}
|
|
32668
|
-
},
|
|
32669
|
-
required: ["device_id"],
|
|
32670
|
-
type: "object"
|
|
32671
|
-
}
|
|
32672
|
-
}
|
|
32673
|
-
}
|
|
32674
|
-
},
|
|
32675
|
-
responses: {
|
|
32676
|
-
200: {
|
|
32677
|
-
content: {
|
|
32678
|
-
"application/json": {
|
|
32679
|
-
schema: {
|
|
32680
|
-
properties: {
|
|
32681
|
-
action_attempt: {
|
|
32682
|
-
$ref: "#/components/schemas/action_attempt"
|
|
32683
|
-
},
|
|
32684
|
-
ok: { type: "boolean" }
|
|
32685
|
-
},
|
|
32686
|
-
required: ["action_attempt", "ok"],
|
|
32687
|
-
type: "object"
|
|
32688
|
-
}
|
|
32689
|
-
}
|
|
32690
|
-
},
|
|
32691
|
-
description: "OK"
|
|
32692
|
-
},
|
|
32693
|
-
400: { description: "Bad Request" },
|
|
32694
|
-
401: { description: "Unauthorized" }
|
|
32695
|
-
},
|
|
32696
|
-
security: [
|
|
32697
|
-
{ client_session: [] },
|
|
32698
|
-
{ pat_with_workspace: [] },
|
|
32699
|
-
{ console_session_with_workspace: [] },
|
|
32700
|
-
{ api_key: [] }
|
|
32701
|
-
],
|
|
32702
|
-
summary: "/thermostats/activate_weekly_program",
|
|
32703
|
-
tags: ["/thermostats"],
|
|
32704
|
-
"x-action-attempt-type": "PUSH_THERMOSTAT_PROGRAMS",
|
|
32705
|
-
"x-fern-sdk-group-name": ["thermostats"],
|
|
32706
|
-
"x-fern-sdk-method-name": "activate_weekly_program",
|
|
32707
|
-
"x-fern-sdk-return-value": "action_attempt",
|
|
32708
|
-
"x-response-key": "action_attempt",
|
|
32709
|
-
"x-title": "Activate a Thermostat Weekly Program",
|
|
32710
|
-
"x-undocumented": "Unreleased."
|
|
32711
|
-
}
|
|
32712
|
-
},
|
|
32713
|
-
"/thermostats/clear_weekly_program": {
|
|
32714
|
-
post: {
|
|
32715
|
-
description: "Clears a thermostat weekly program.",
|
|
32716
|
-
operationId: "thermostatsClearWeeklyProgramPost",
|
|
32717
|
-
requestBody: {
|
|
32718
|
-
content: {
|
|
32719
|
-
"application/json": {
|
|
32720
|
-
schema: {
|
|
32721
|
-
properties: {
|
|
32722
|
-
device_id: {
|
|
32723
|
-
description: "ID of the thermostat device to clear the weekly program for.",
|
|
32724
|
-
format: "uuid",
|
|
32725
|
-
type: "string"
|
|
32726
|
-
}
|
|
32727
|
-
},
|
|
32728
|
-
required: ["device_id"],
|
|
32729
|
-
type: "object"
|
|
32730
|
-
}
|
|
32731
|
-
}
|
|
32732
|
-
}
|
|
32733
|
-
},
|
|
32734
|
-
responses: {
|
|
32735
|
-
200: {
|
|
32736
|
-
content: {
|
|
32737
|
-
"application/json": {
|
|
32738
|
-
schema: {
|
|
32739
|
-
properties: {
|
|
32740
|
-
action_attempt: {
|
|
32741
|
-
$ref: "#/components/schemas/action_attempt"
|
|
32742
|
-
},
|
|
32743
|
-
ok: { type: "boolean" }
|
|
32744
|
-
},
|
|
32745
|
-
required: ["action_attempt", "ok"],
|
|
32746
|
-
type: "object"
|
|
32747
|
-
}
|
|
32748
|
-
}
|
|
32749
|
-
},
|
|
32750
|
-
description: "OK"
|
|
32751
|
-
},
|
|
32752
|
-
400: { description: "Bad Request" },
|
|
32753
|
-
401: { description: "Unauthorized" }
|
|
32754
|
-
},
|
|
32755
|
-
security: [
|
|
32756
|
-
{ client_session: [] },
|
|
32757
|
-
{ pat_with_workspace: [] },
|
|
32758
|
-
{ console_session_with_workspace: [] },
|
|
32759
|
-
{ api_key: [] }
|
|
32760
|
-
],
|
|
32761
|
-
summary: "/thermostats/clear_weekly_program",
|
|
32762
|
-
tags: ["/thermostats"],
|
|
32763
|
-
"x-action-attempt-type": "PUSH_THERMOSTAT_PROGRAMS",
|
|
32764
|
-
"x-fern-sdk-group-name": ["thermostats"],
|
|
32765
|
-
"x-fern-sdk-method-name": "clear_weekly_program",
|
|
32766
|
-
"x-fern-sdk-return-value": "action_attempt",
|
|
32767
|
-
"x-response-key": "action_attempt",
|
|
32768
|
-
"x-title": "Clear a Thermostat Weekly Program",
|
|
32769
|
-
"x-undocumented": "Unreleased."
|
|
32770
|
-
}
|
|
32771
|
-
},
|
|
32772
32647
|
"/thermostats/cool": {
|
|
32773
32648
|
post: {
|
|
32774
32649
|
description: "Sets a specified [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) to [cool mode](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings).",
|
|
@@ -33594,6 +33469,10 @@ var openapi_default = {
|
|
|
33594
33469
|
description: "Set of key:value [custom metadata](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device) pairs by which you want to filter devices.",
|
|
33595
33470
|
type: "object"
|
|
33596
33471
|
},
|
|
33472
|
+
customer_ids: {
|
|
33473
|
+
items: { format: "uuid", type: "string" },
|
|
33474
|
+
type: "array"
|
|
33475
|
+
},
|
|
33597
33476
|
device_ids: {
|
|
33598
33477
|
description: "Array of device IDs by which to filter devices.",
|
|
33599
33478
|
items: { format: "uuid", type: "string" },
|
|
@@ -33672,7 +33551,13 @@ var openapi_default = {
|
|
|
33672
33551
|
},
|
|
33673
33552
|
manufacturer: {
|
|
33674
33553
|
description: "Manufacturer by which to filter devices.",
|
|
33675
|
-
enum: [
|
|
33554
|
+
enum: [
|
|
33555
|
+
"ecobee",
|
|
33556
|
+
"honeywell_resideo",
|
|
33557
|
+
"nest",
|
|
33558
|
+
"tado",
|
|
33559
|
+
"sensi"
|
|
33560
|
+
],
|
|
33676
33561
|
type: "string"
|
|
33677
33562
|
},
|
|
33678
33563
|
page_cursor: {
|
|
@@ -35040,6 +34925,107 @@ var openapi_default = {
|
|
|
35040
34925
|
"x-title": "Update a Climate Preset"
|
|
35041
34926
|
}
|
|
35042
34927
|
},
|
|
34928
|
+
"/thermostats/update_weekly_program": {
|
|
34929
|
+
post: {
|
|
34930
|
+
description: "Activates a thermostat weekly program.",
|
|
34931
|
+
operationId: "thermostatsUpdateWeeklyProgramPost",
|
|
34932
|
+
requestBody: {
|
|
34933
|
+
content: {
|
|
34934
|
+
"application/json": {
|
|
34935
|
+
schema: {
|
|
34936
|
+
properties: {
|
|
34937
|
+
device_id: {
|
|
34938
|
+
description: "ID of the thermostat device that the weekly program is for.",
|
|
34939
|
+
format: "uuid",
|
|
34940
|
+
type: "string"
|
|
34941
|
+
},
|
|
34942
|
+
friday_program_id: {
|
|
34943
|
+
description: "ID of the thermostat daily program to run on Fridays.",
|
|
34944
|
+
format: "uuid",
|
|
34945
|
+
nullable: true,
|
|
34946
|
+
type: "string"
|
|
34947
|
+
},
|
|
34948
|
+
monday_program_id: {
|
|
34949
|
+
description: "ID of the thermostat daily program to run on Mondays.",
|
|
34950
|
+
format: "uuid",
|
|
34951
|
+
nullable: true,
|
|
34952
|
+
type: "string"
|
|
34953
|
+
},
|
|
34954
|
+
saturday_program_id: {
|
|
34955
|
+
description: "ID of the thermostat daily program to run on Saturdays.",
|
|
34956
|
+
format: "uuid",
|
|
34957
|
+
nullable: true,
|
|
34958
|
+
type: "string"
|
|
34959
|
+
},
|
|
34960
|
+
sunday_program_id: {
|
|
34961
|
+
description: "ID of the thermostat daily program to run on Sundays.",
|
|
34962
|
+
format: "uuid",
|
|
34963
|
+
nullable: true,
|
|
34964
|
+
type: "string"
|
|
34965
|
+
},
|
|
34966
|
+
thursday_program_id: {
|
|
34967
|
+
description: "ID of the thermostat daily program to run on Thursdays.",
|
|
34968
|
+
format: "uuid",
|
|
34969
|
+
nullable: true,
|
|
34970
|
+
type: "string"
|
|
34971
|
+
},
|
|
34972
|
+
tuesday_program_id: {
|
|
34973
|
+
description: "ID of the thermostat daily program to run on Tuesdays.",
|
|
34974
|
+
format: "uuid",
|
|
34975
|
+
nullable: true,
|
|
34976
|
+
type: "string"
|
|
34977
|
+
},
|
|
34978
|
+
wednesday_program_id: {
|
|
34979
|
+
description: "ID of the thermostat daily program to run on Wednesdays.",
|
|
34980
|
+
format: "uuid",
|
|
34981
|
+
nullable: true,
|
|
34982
|
+
type: "string"
|
|
34983
|
+
}
|
|
34984
|
+
},
|
|
34985
|
+
required: ["device_id"],
|
|
34986
|
+
type: "object"
|
|
34987
|
+
}
|
|
34988
|
+
}
|
|
34989
|
+
}
|
|
34990
|
+
},
|
|
34991
|
+
responses: {
|
|
34992
|
+
200: {
|
|
34993
|
+
content: {
|
|
34994
|
+
"application/json": {
|
|
34995
|
+
schema: {
|
|
34996
|
+
properties: {
|
|
34997
|
+
action_attempt: {
|
|
34998
|
+
$ref: "#/components/schemas/action_attempt"
|
|
34999
|
+
},
|
|
35000
|
+
ok: { type: "boolean" }
|
|
35001
|
+
},
|
|
35002
|
+
required: ["action_attempt", "ok"],
|
|
35003
|
+
type: "object"
|
|
35004
|
+
}
|
|
35005
|
+
}
|
|
35006
|
+
},
|
|
35007
|
+
description: "OK"
|
|
35008
|
+
},
|
|
35009
|
+
400: { description: "Bad Request" },
|
|
35010
|
+
401: { description: "Unauthorized" }
|
|
35011
|
+
},
|
|
35012
|
+
security: [
|
|
35013
|
+
{ client_session: [] },
|
|
35014
|
+
{ pat_with_workspace: [] },
|
|
35015
|
+
{ console_session_with_workspace: [] },
|
|
35016
|
+
{ api_key: [] }
|
|
35017
|
+
],
|
|
35018
|
+
summary: "/thermostats/update_weekly_program",
|
|
35019
|
+
tags: ["/thermostats"],
|
|
35020
|
+
"x-action-attempt-type": "PUSH_THERMOSTAT_PROGRAMS",
|
|
35021
|
+
"x-fern-sdk-group-name": ["thermostats"],
|
|
35022
|
+
"x-fern-sdk-method-name": "update_weekly_program",
|
|
35023
|
+
"x-fern-sdk-return-value": "action_attempt",
|
|
35024
|
+
"x-response-key": "action_attempt",
|
|
35025
|
+
"x-title": "Activate a Thermostat Weekly Program",
|
|
35026
|
+
"x-undocumented": "Unreleased."
|
|
35027
|
+
}
|
|
35028
|
+
},
|
|
35043
35029
|
"/unstable_access_grants/create": {
|
|
35044
35030
|
post: {
|
|
35045
35031
|
description: "Creates a new access grant.",
|
|
@@ -36838,6 +36824,11 @@ var openapi_default = {
|
|
|
36838
36824
|
"application/json": {
|
|
36839
36825
|
schema: {
|
|
36840
36826
|
properties: {
|
|
36827
|
+
acs_system_ids: {
|
|
36828
|
+
description: "List of ACS system IDs to associate with the user identity through ACS users. If there's no user with the same email address or phone number in the specified ACS systems, a new ACS user is created. If there is an existing user with the same email or phone number in the specified ACS systems, the user is linked to the user identity.",
|
|
36829
|
+
items: { format: "uuid", type: "string" },
|
|
36830
|
+
type: "array"
|
|
36831
|
+
},
|
|
36841
36832
|
email_address: {
|
|
36842
36833
|
description: "Unique email address for the user identity.",
|
|
36843
36834
|
format: "email",
|