homey-api 3.14.20 → 3.14.22
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/LICENSE
ADDED
|
@@ -1245,6 +1245,18 @@
|
|
|
1245
1245
|
"private": true,
|
|
1246
1246
|
"parameters": {}
|
|
1247
1247
|
},
|
|
1248
|
+
"deleteHomeySelfHostedServer": {
|
|
1249
|
+
"path": "/homey/shs/{homeyId}",
|
|
1250
|
+
"method": "delete",
|
|
1251
|
+
"private": true,
|
|
1252
|
+
"parameters": {
|
|
1253
|
+
"homeyId": {
|
|
1254
|
+
"in": "path",
|
|
1255
|
+
"type": "string",
|
|
1256
|
+
"required": true
|
|
1257
|
+
}
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1248
1260
|
"updateHomeySelfHostedServerSubscription": {
|
|
1249
1261
|
"path": "/homey/shs/{homeyId}/subscription",
|
|
1250
1262
|
"method": "put",
|
|
@@ -1262,6 +1274,10 @@
|
|
|
1262
1274
|
"expiresAt": {
|
|
1263
1275
|
"type": "string",
|
|
1264
1276
|
"in": "body"
|
|
1277
|
+
},
|
|
1278
|
+
"shopifyContractId": {
|
|
1279
|
+
"type": "string",
|
|
1280
|
+
"in": "body"
|
|
1265
1281
|
}
|
|
1266
1282
|
}
|
|
1267
1283
|
},
|
|
@@ -3750,12 +3750,16 @@ export class AthomCloudAPI {
|
|
|
3750
3750
|
|
|
3751
3751
|
createHomeySelfHostedServer(): Promise<any>;
|
|
3752
3752
|
|
|
3753
|
+
deleteHomeySelfHostedServer(opts: { homeyId: string }): Promise<any>;
|
|
3754
|
+
|
|
3753
3755
|
updateHomeySelfHostedServerSubscription(opts: {
|
|
3754
3756
|
homeyId: string;
|
|
3755
3757
|
|
|
3756
3758
|
type?: string;
|
|
3757
3759
|
|
|
3758
3760
|
expiresAt?: string;
|
|
3761
|
+
|
|
3762
|
+
shopifyContractId?: string;
|
|
3759
3763
|
}): Promise<any>;
|
|
3760
3764
|
|
|
3761
3765
|
transferHomeySelfHostedServerLifetimeLicense(opts: {
|
|
@@ -4438,12 +4442,16 @@ export class AthomCloudAPI {
|
|
|
4438
4442
|
|
|
4439
4443
|
createHomeySelfHostedServer(): Promise<any>;
|
|
4440
4444
|
|
|
4445
|
+
deleteHomeySelfHostedServer(opts: { homeyId: string }): Promise<any>;
|
|
4446
|
+
|
|
4441
4447
|
updateHomeySelfHostedServerSubscription(opts: {
|
|
4442
4448
|
homeyId: string;
|
|
4443
4449
|
|
|
4444
4450
|
type?: string;
|
|
4445
4451
|
|
|
4446
4452
|
expiresAt?: string;
|
|
4453
|
+
|
|
4454
|
+
shopifyContractId?: string;
|
|
4447
4455
|
}): Promise<any>;
|
|
4448
4456
|
|
|
4449
4457
|
transferHomeySelfHostedServerLifetimeLicense(opts: {
|
|
@@ -7420,12 +7428,16 @@ export class AthomCloudAPI {
|
|
|
7420
7428
|
|
|
7421
7429
|
createHomeySelfHostedServer(): Promise<any>;
|
|
7422
7430
|
|
|
7431
|
+
deleteHomeySelfHostedServer(opts: { homeyId: string }): Promise<any>;
|
|
7432
|
+
|
|
7423
7433
|
updateHomeySelfHostedServerSubscription(opts: {
|
|
7424
7434
|
homeyId: string;
|
|
7425
7435
|
|
|
7426
7436
|
type?: string;
|
|
7427
7437
|
|
|
7428
7438
|
expiresAt?: string;
|
|
7439
|
+
|
|
7440
|
+
shopifyContractId?: string;
|
|
7429
7441
|
}): Promise<any>;
|
|
7430
7442
|
|
|
7431
7443
|
transferHomeySelfHostedServerLifetimeLicense(opts: {
|
|
@@ -8108,12 +8120,16 @@ export class AthomCloudAPI {
|
|
|
8108
8120
|
|
|
8109
8121
|
createHomeySelfHostedServer(): Promise<any>;
|
|
8110
8122
|
|
|
8123
|
+
deleteHomeySelfHostedServer(opts: { homeyId: string }): Promise<any>;
|
|
8124
|
+
|
|
8111
8125
|
updateHomeySelfHostedServerSubscription(opts: {
|
|
8112
8126
|
homeyId: string;
|
|
8113
8127
|
|
|
8114
8128
|
type?: string;
|
|
8115
8129
|
|
|
8116
8130
|
expiresAt?: string;
|
|
8131
|
+
|
|
8132
|
+
shopifyContractId?: string;
|
|
8117
8133
|
}): Promise<any>;
|
|
8118
8134
|
|
|
8119
8135
|
transferHomeySelfHostedServerLifetimeLicense(opts: {
|