@xapp/ovai-lib 1.27.8 → 1.28.5
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 +22 -0
- 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.5](https://github.com/XappMedia/stentor-core/compare/v1.28.4...v1.28.5) (2020-11-04)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** update stentor ([b71ea35](https://github.com/XappMedia/stentor-core/commit/b71ea3587ffdeb7d261242c576ba2ecd7354516c))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [1.28.1](https://github.com/XappMedia/stentor-core/compare/v1.28.0...v1.28.1) (2020-11-03)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **deps:** update stentor ([d25ed9f](https://github.com/XappMedia/stentor-core/commit/d25ed9f1a21cfcbfaede3b503b042a6a3cc0ae75))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# [1.28.0](https://github.com/XappMedia/stentor-core/compare/v1.27.8...v1.28.0) (2020-11-02)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* Adding aws marketplace to org ([#2116](https://github.com/XappMedia/stentor-core/issues/2116)) ([0c51aed](https://github.com/XappMedia/stentor-core/commit/0c51aed310e9337aa0d54d1d5b0a83418930342e))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
6
39
|
## [1.27.8](https://github.com/XappMedia/stentor-core/compare/v1.27.7...v1.27.8) (2020-10-30)
|
|
7
40
|
|
|
8
41
|
|
|
@@ -52,6 +52,21 @@ export declare type ServiceOrderTemplate = Partial<Record<TemplateType, ServiceO
|
|
|
52
52
|
* and the object returned is the service order supplied.
|
|
53
53
|
*/
|
|
54
54
|
export declare type ServiceOrders = ServiceOrderAccount | ServiceOrderTemplate;
|
|
55
|
+
/**
|
|
56
|
+
* For organizations linked in the AWS marketplace.
|
|
57
|
+
*
|
|
58
|
+
* @export
|
|
59
|
+
* @interface AWSAccount
|
|
60
|
+
*/
|
|
61
|
+
export interface AWSAccount {
|
|
62
|
+
/**
|
|
63
|
+
* The AWS ID of the account that is linked to the AWS Marketplace.
|
|
64
|
+
*
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof AWSAccount
|
|
67
|
+
*/
|
|
68
|
+
awsId: string;
|
|
69
|
+
}
|
|
55
70
|
/**
|
|
56
71
|
* A collection of accounts associated with the payment on the stentor platform.
|
|
57
72
|
*/
|
|
@@ -64,6 +79,13 @@ export interface PaymentAccounts {
|
|
|
64
79
|
* The Service order account that is linked to this organization.
|
|
65
80
|
*/
|
|
66
81
|
so?: ServiceOrders;
|
|
82
|
+
/**
|
|
83
|
+
* Attributes for the AWS Marketplace account
|
|
84
|
+
*
|
|
85
|
+
* @type {AWSAccount}
|
|
86
|
+
* @memberof PaymentAccounts
|
|
87
|
+
*/
|
|
88
|
+
aws?: AWSAccount;
|
|
67
89
|
}
|
|
68
90
|
/**
|
|
69
91
|
* An organization is the name of organization contains a collection of groups.
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "restricted"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.
|
|
7
|
+
"version": "1.28.5",
|
|
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.14",
|
|
21
21
|
"ts-node": "9.0.0",
|
|
22
22
|
"typescript": "4.0.5"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@xapp/stentor-media-manager": "1.
|
|
26
|
-
"@xapp/stentor-service-search": "1.
|
|
27
|
-
"stentor-guards": "1.35.
|
|
28
|
-
"stentor-media": "1.35.
|
|
25
|
+
"@xapp/stentor-media-manager": "1.28.5",
|
|
26
|
+
"@xapp/stentor-service-search": "1.28.5",
|
|
27
|
+
"stentor-guards": "1.35.14",
|
|
28
|
+
"stentor-media": "1.35.15"
|
|
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": "b84eb5937e5858d68762670a1e556c973d865464"
|
|
39
39
|
}
|