@xapp/ovai-lib 1.28.12 → 1.28.20
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/CHANGELOG.md +33 -0
- package/lib/Organization/Organization.d.ts +23 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,39 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.28.20](https://github.com/XappMedia/stentor-core/compare/v1.28.19...v1.28.20) (2020-11-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Adding types to ORG for AWS Marketplace([#2142](https://github.com/XappMedia/stentor-core/issues/2142)) ([419e329](https://github.com/XappMedia/stentor-core/commit/419e32901e8e3d0a44d65316fd1dd4bc2182e825))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [1.28.15](https://github.com/XappMedia/stentor-core/compare/v1.28.14...v1.28.15) (2020-11-11)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **deps:** update stentor to v1.35.19 ([4810be5](https://github.com/XappMedia/stentor-core/commit/4810be5a5277e443a22afc080327e71f6ad13390))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## [1.28.14](https://github.com/XappMedia/stentor-core/compare/v1.28.13...v1.28.14) (2020-11-11)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* **deps:** update stentor to v1.35.18 ([73aec5f](https://github.com/XappMedia/stentor-core/commit/73aec5f20bd9a7a439ea76b643bd15d5e6a6b2dc))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
6
39
|
## [1.28.12](https://github.com/XappMedia/stentor-core/compare/v1.28.11...v1.28.12) (2020-11-09)
|
|
7
40
|
|
|
8
41
|
|
|
@@ -60,12 +60,33 @@ export declare type ServiceOrders = ServiceOrderAccount | ServiceOrderTemplate;
|
|
|
60
60
|
*/
|
|
61
61
|
export interface AWSAccount {
|
|
62
62
|
/**
|
|
63
|
-
* The
|
|
63
|
+
* The customerId of the customer that linked the account.
|
|
64
64
|
*
|
|
65
65
|
* @type {string}
|
|
66
66
|
* @memberof AWSAccount
|
|
67
67
|
*/
|
|
68
|
-
|
|
68
|
+
customerId: string;
|
|
69
|
+
/**
|
|
70
|
+
* The product code of the aws product that is linked to the org.
|
|
71
|
+
*
|
|
72
|
+
* @type {string}
|
|
73
|
+
* @memberof AWSAccount
|
|
74
|
+
*/
|
|
75
|
+
productCode: string;
|
|
76
|
+
/**
|
|
77
|
+
* The product within the product of the subscription.
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof AWSAccount
|
|
81
|
+
*/
|
|
82
|
+
dimension: string;
|
|
83
|
+
/**
|
|
84
|
+
* The date in which the subscription was placed.
|
|
85
|
+
*
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof AWSAccount
|
|
88
|
+
*/
|
|
89
|
+
date: string;
|
|
69
90
|
}
|
|
70
91
|
/**
|
|
71
92
|
* A collection of accounts associated with the payment on the stentor platform.
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "restricted"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.28.
|
|
7
|
+
"version": "1.28.20",
|
|
8
8
|
"description": "Shared library for OVAI",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"main": "lib/index",
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/chai": "4.2.14",
|
|
19
19
|
"chai": "4.2.0",
|
|
20
|
-
"stentor-models": "1.35.
|
|
20
|
+
"stentor-models": "1.35.19",
|
|
21
21
|
"ts-node": "9.0.0",
|
|
22
22
|
"typescript": "4.0.5"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@xapp/stentor-media-manager": "1.28.
|
|
26
|
-
"@xapp/stentor-service-search": "1.28.
|
|
27
|
-
"stentor-guards": "1.35.
|
|
28
|
-
"stentor-media": "1.35.
|
|
25
|
+
"@xapp/stentor-media-manager": "1.28.15",
|
|
26
|
+
"@xapp/stentor-service-search": "1.28.15",
|
|
27
|
+
"stentor-guards": "1.35.19",
|
|
28
|
+
"stentor-media": "1.35.19"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"stentor-models": "1.x"
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"clean": "rm -rf ./lib/*",
|
|
36
36
|
"test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\""
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "7d388ae79b52b9a12890163a4fb86a89bf588f64"
|
|
39
39
|
}
|