@xapp/ovai-lib 1.27.8 → 1.28.0

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 CHANGED
@@ -3,6 +3,17 @@
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.0](https://github.com/XappMedia/stentor-core/compare/v1.27.8...v1.28.0) (2020-11-02)
7
+
8
+
9
+ ### Features
10
+
11
+ * Adding aws marketplace to org ([#2116](https://github.com/XappMedia/stentor-core/issues/2116)) ([0c51aed](https://github.com/XappMedia/stentor-core/commit/0c51aed310e9337aa0d54d1d5b0a83418930342e))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.27.8](https://github.com/XappMedia/stentor-core/compare/v1.27.7...v1.27.8) (2020-10-30)
7
18
 
8
19
 
@@ -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.27.8",
7
+ "version": "1.28.0",
8
8
  "description": "Shared library for OVAI",
9
9
  "types": "lib/index",
10
10
  "main": "lib/index",
@@ -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": "79479ffa5dbbe843d537ddbc0cfeb02e438872fa"
38
+ "gitHead": "5c66aaaf2760467223c8d9d43e36ec8a7f921fb3"
39
39
  }