@teemill/platform 0.11.1 → 0.12.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/README.md +2 -2
- package/api.ts +37 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +2 -2
- package/dist/api.d.ts +37 -1
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +2 -2
- package/dist/esm/api.d.ts +37 -1
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +2 -2
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/platform@0.
|
|
1
|
+
## @teemill/platform@0.12.1
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @teemill/platform@0.
|
|
39
|
+
npm install @teemill/platform@0.12.1 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.12.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1002,6 +1002,24 @@ export interface Platform {
|
|
|
1002
1002
|
* @memberof Platform
|
|
1003
1003
|
*/
|
|
1004
1004
|
'clientGiftWrapAvailable': boolean;
|
|
1005
|
+
/**
|
|
1006
|
+
* The subscription fee for the platform
|
|
1007
|
+
* @type {number}
|
|
1008
|
+
* @memberof Platform
|
|
1009
|
+
*/
|
|
1010
|
+
'storeSubscriptionFee': number;
|
|
1011
|
+
/**
|
|
1012
|
+
* The order handling fee for the platform
|
|
1013
|
+
* @type {number}
|
|
1014
|
+
* @memberof Platform
|
|
1015
|
+
*/
|
|
1016
|
+
'orderHandlingFee': number;
|
|
1017
|
+
/**
|
|
1018
|
+
* The item handling fee for the platform
|
|
1019
|
+
* @type {number}
|
|
1020
|
+
* @memberof Platform
|
|
1021
|
+
*/
|
|
1022
|
+
'itemHandlingFee': number;
|
|
1005
1023
|
}
|
|
1006
1024
|
/**
|
|
1007
1025
|
*
|
|
@@ -1391,6 +1409,24 @@ export interface UpdatePlatformRequest {
|
|
|
1391
1409
|
* @memberof UpdatePlatformRequest
|
|
1392
1410
|
*/
|
|
1393
1411
|
'clientGiftWrapAvailable'?: boolean;
|
|
1412
|
+
/**
|
|
1413
|
+
*
|
|
1414
|
+
* @type {number}
|
|
1415
|
+
* @memberof UpdatePlatformRequest
|
|
1416
|
+
*/
|
|
1417
|
+
'storeSubscriptionFee'?: number;
|
|
1418
|
+
/**
|
|
1419
|
+
*
|
|
1420
|
+
* @type {number}
|
|
1421
|
+
* @memberof UpdatePlatformRequest
|
|
1422
|
+
*/
|
|
1423
|
+
'orderHandlingFee'?: number;
|
|
1424
|
+
/**
|
|
1425
|
+
*
|
|
1426
|
+
* @type {number}
|
|
1427
|
+
* @memberof UpdatePlatformRequest
|
|
1428
|
+
*/
|
|
1429
|
+
'itemHandlingFee'?: number;
|
|
1394
1430
|
}
|
|
1395
1431
|
/**
|
|
1396
1432
|
*
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.12.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -92,7 +92,7 @@ export class Configuration {
|
|
|
92
92
|
this.baseOptions = {
|
|
93
93
|
headers: {
|
|
94
94
|
...param.baseOptions?.headers,
|
|
95
|
-
'User-Agent': "OpenAPI-Generator/0.
|
|
95
|
+
'User-Agent': "OpenAPI-Generator/0.12.1/typescript-axios"
|
|
96
96
|
},
|
|
97
97
|
...param.baseOptions
|
|
98
98
|
};
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.12.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -980,6 +980,24 @@ export interface Platform {
|
|
|
980
980
|
* @memberof Platform
|
|
981
981
|
*/
|
|
982
982
|
'clientGiftWrapAvailable': boolean;
|
|
983
|
+
/**
|
|
984
|
+
* The subscription fee for the platform
|
|
985
|
+
* @type {number}
|
|
986
|
+
* @memberof Platform
|
|
987
|
+
*/
|
|
988
|
+
'storeSubscriptionFee': number;
|
|
989
|
+
/**
|
|
990
|
+
* The order handling fee for the platform
|
|
991
|
+
* @type {number}
|
|
992
|
+
* @memberof Platform
|
|
993
|
+
*/
|
|
994
|
+
'orderHandlingFee': number;
|
|
995
|
+
/**
|
|
996
|
+
* The item handling fee for the platform
|
|
997
|
+
* @type {number}
|
|
998
|
+
* @memberof Platform
|
|
999
|
+
*/
|
|
1000
|
+
'itemHandlingFee': number;
|
|
983
1001
|
}
|
|
984
1002
|
/**
|
|
985
1003
|
*
|
|
@@ -1366,6 +1384,24 @@ export interface UpdatePlatformRequest {
|
|
|
1366
1384
|
* @memberof UpdatePlatformRequest
|
|
1367
1385
|
*/
|
|
1368
1386
|
'clientGiftWrapAvailable'?: boolean;
|
|
1387
|
+
/**
|
|
1388
|
+
*
|
|
1389
|
+
* @type {number}
|
|
1390
|
+
* @memberof UpdatePlatformRequest
|
|
1391
|
+
*/
|
|
1392
|
+
'storeSubscriptionFee'?: number;
|
|
1393
|
+
/**
|
|
1394
|
+
*
|
|
1395
|
+
* @type {number}
|
|
1396
|
+
* @memberof UpdatePlatformRequest
|
|
1397
|
+
*/
|
|
1398
|
+
'orderHandlingFee'?: number;
|
|
1399
|
+
/**
|
|
1400
|
+
*
|
|
1401
|
+
* @type {number}
|
|
1402
|
+
* @memberof UpdatePlatformRequest
|
|
1403
|
+
*/
|
|
1404
|
+
'itemHandlingFee'?: number;
|
|
1369
1405
|
}
|
|
1370
1406
|
/**
|
|
1371
1407
|
*
|
package/dist/api.js
CHANGED
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Platform API
|
|
6
6
|
* Manage Your podOS platform
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.12.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -23,7 +23,7 @@ class Configuration {
|
|
|
23
23
|
this.accessToken = param.accessToken;
|
|
24
24
|
this.basePath = param.basePath;
|
|
25
25
|
this.serverIndex = param.serverIndex;
|
|
26
|
-
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/0.
|
|
26
|
+
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/0.12.1/typescript-axios" }) }, param.baseOptions);
|
|
27
27
|
this.formDataCtor = param.formDataCtor;
|
|
28
28
|
}
|
|
29
29
|
/**
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.12.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -980,6 +980,24 @@ export interface Platform {
|
|
|
980
980
|
* @memberof Platform
|
|
981
981
|
*/
|
|
982
982
|
'clientGiftWrapAvailable': boolean;
|
|
983
|
+
/**
|
|
984
|
+
* The subscription fee for the platform
|
|
985
|
+
* @type {number}
|
|
986
|
+
* @memberof Platform
|
|
987
|
+
*/
|
|
988
|
+
'storeSubscriptionFee': number;
|
|
989
|
+
/**
|
|
990
|
+
* The order handling fee for the platform
|
|
991
|
+
* @type {number}
|
|
992
|
+
* @memberof Platform
|
|
993
|
+
*/
|
|
994
|
+
'orderHandlingFee': number;
|
|
995
|
+
/**
|
|
996
|
+
* The item handling fee for the platform
|
|
997
|
+
* @type {number}
|
|
998
|
+
* @memberof Platform
|
|
999
|
+
*/
|
|
1000
|
+
'itemHandlingFee': number;
|
|
983
1001
|
}
|
|
984
1002
|
/**
|
|
985
1003
|
*
|
|
@@ -1366,6 +1384,24 @@ export interface UpdatePlatformRequest {
|
|
|
1366
1384
|
* @memberof UpdatePlatformRequest
|
|
1367
1385
|
*/
|
|
1368
1386
|
'clientGiftWrapAvailable'?: boolean;
|
|
1387
|
+
/**
|
|
1388
|
+
*
|
|
1389
|
+
* @type {number}
|
|
1390
|
+
* @memberof UpdatePlatformRequest
|
|
1391
|
+
*/
|
|
1392
|
+
'storeSubscriptionFee'?: number;
|
|
1393
|
+
/**
|
|
1394
|
+
*
|
|
1395
|
+
* @type {number}
|
|
1396
|
+
* @memberof UpdatePlatformRequest
|
|
1397
|
+
*/
|
|
1398
|
+
'orderHandlingFee'?: number;
|
|
1399
|
+
/**
|
|
1400
|
+
*
|
|
1401
|
+
* @type {number}
|
|
1402
|
+
* @memberof UpdatePlatformRequest
|
|
1403
|
+
*/
|
|
1404
|
+
'itemHandlingFee'?: number;
|
|
1369
1405
|
}
|
|
1370
1406
|
/**
|
|
1371
1407
|
*
|
package/dist/esm/api.js
CHANGED
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED
package/dist/esm/common.d.ts
CHANGED
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.12.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -20,7 +20,7 @@ export class Configuration {
|
|
|
20
20
|
this.accessToken = param.accessToken;
|
|
21
21
|
this.basePath = param.basePath;
|
|
22
22
|
this.serverIndex = param.serverIndex;
|
|
23
|
-
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/0.
|
|
23
|
+
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/0.12.1/typescript-axios" }) }, param.baseOptions);
|
|
24
24
|
this.formDataCtor = param.formDataCtor;
|
|
25
25
|
}
|
|
26
26
|
/**
|
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/index.ts
CHANGED