@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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/platform@0.11.1
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.11.1 --save
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.11.1
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
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.11.1
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).
package/common.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.11.1
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).
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.11.1
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.11.1/typescript-axios"
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.11.1
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
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.11.1
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).
package/dist/base.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.11.1
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).
package/dist/base.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.11.1
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).
package/dist/common.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.11.1
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).
package/dist/common.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.11.1
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).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.11.1
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).
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.11.1
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.11.1/typescript-axios" }) }, param.baseOptions);
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.11.1
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
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.11.1
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).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.11.1
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).
package/dist/esm/base.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.11.1
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).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.11.1
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).
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.11.1
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).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.11.1
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).
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.11.1
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.11.1/typescript-axios" }) }, param.baseOptions);
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
  /**
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.11.1
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).
package/dist/esm/index.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.11.1
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).
package/dist/index.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.11.1
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).
package/dist/index.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.11.1
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).
package/index.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.11.1
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).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/platform",
3
- "version": "0.11.1",
3
+ "version": "0.12.1",
4
4
  "description": "OpenAPI client for @teemill/platform",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {