@arrowsphere/api-client 3.104.0 → 3.105.0-rc.fdi.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/CHANGELOG.md
CHANGED
|
@@ -3,32 +3,32 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
-
## [3.
|
|
6
|
+
## [3.105.0] - 2024.04.03
|
|
7
7
|
|
|
8
8
|
### Added
|
|
9
|
+
- [Customers Contact] add field `organizationUnitIds` in customer contact payload
|
|
10
|
+
|
|
11
|
+
## [3.104.0] - 2024.03.25
|
|
9
12
|
|
|
10
|
-
|
|
13
|
+
### Added
|
|
14
|
+
- [licenses] add endpoints to save special bid and rewrite rate history
|
|
11
15
|
|
|
12
16
|
## [3.103.0] - 2024.03.22
|
|
13
17
|
|
|
14
18
|
### Added
|
|
15
|
-
|
|
16
19
|
- [campaign] add downloadUrls field on campaign
|
|
17
20
|
|
|
18
21
|
## [3.101.0] - 2024.03.19
|
|
19
22
|
|
|
20
23
|
### Added
|
|
21
|
-
|
|
22
24
|
- [customer/contact] add organization object in customer contact payload
|
|
23
25
|
|
|
24
26
|
### Updated
|
|
25
|
-
|
|
26
27
|
- Add sommes configs for IDE
|
|
27
28
|
|
|
28
29
|
## [3.101.0] - 2024.03.19
|
|
29
30
|
|
|
30
31
|
### Added
|
|
31
|
-
|
|
32
32
|
- [licenses] add new field configs and warnings
|
|
33
33
|
- [licenses] add new endpoint to get daily consumption predictions
|
|
34
34
|
|
|
@@ -38,7 +38,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
38
38
|
## [3.100.0] - 2024.02.27
|
|
39
39
|
|
|
40
40
|
### Added
|
|
41
|
-
|
|
42
41
|
- [consumption] add endpoint to get and update budget settings
|
|
43
42
|
- [graphql-api] add license budget
|
|
44
43
|
- [licenses] add new field vendor_code
|
|
@@ -46,10 +45,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
46
45
|
## [3.99.0] - 2024.02.20
|
|
47
46
|
|
|
48
47
|
### Added
|
|
49
|
-
|
|
50
48
|
- [billing] add generate billing export async
|
|
51
49
|
|
|
52
50
|
## [3.98.0] - 2024-02-14
|
|
51
|
+
|
|
53
52
|
### Added
|
|
54
53
|
- [Well Architected] Add the Reports to the different schema
|
|
55
54
|
|
|
@@ -58,7 +57,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
58
57
|
### Updated
|
|
59
58
|
- [licenses] update filters and keywords for licenses
|
|
60
59
|
|
|
61
|
-
|
|
62
60
|
## [3.96.0] - 2024.02.06
|
|
63
61
|
|
|
64
62
|
### Added
|
|
@@ -15,7 +15,8 @@ export declare enum CustomerContactPayloadFields {
|
|
|
15
15
|
COLUMN_USERNAME = "username",
|
|
16
16
|
COLUMN_TYPE = "type",
|
|
17
17
|
COLUMN_ROLE = "role",
|
|
18
|
-
COLUMN_ORGANIZATION_UNIT_ID = "organizationUnitId"
|
|
18
|
+
COLUMN_ORGANIZATION_UNIT_ID = "organizationUnitId",
|
|
19
|
+
COLUMN_ORGANIZATION_UNIT_IDS = "organizationUnitIds"
|
|
19
20
|
}
|
|
20
21
|
export declare type PostCustomerContactPayload = {
|
|
21
22
|
[CustomerContactPayloadFields.COLUMN_FIRST_NAME]: string;
|
|
@@ -26,6 +27,7 @@ export declare type PostCustomerContactPayload = {
|
|
|
26
27
|
[CustomerContactPayloadFields.COLUMN_TYPE]: CustomerContactTypeType;
|
|
27
28
|
[CustomerContactPayloadFields.COLUMN_ROLE]: CustomerContactRoleType;
|
|
28
29
|
[CustomerContactPayloadFields.COLUMN_ORGANIZATION_UNIT_ID]?: number;
|
|
30
|
+
[CustomerContactPayloadFields.COLUMN_ORGANIZATION_UNIT_IDS]?: number[];
|
|
29
31
|
};
|
|
30
32
|
export declare type PostCustomerContact = {
|
|
31
33
|
[ContactFields.COLUMN_FIRSTNAME]: string;
|
|
@@ -20,6 +20,7 @@ var CustomerContactPayloadFields;
|
|
|
20
20
|
CustomerContactPayloadFields["COLUMN_TYPE"] = "type";
|
|
21
21
|
CustomerContactPayloadFields["COLUMN_ROLE"] = "role";
|
|
22
22
|
CustomerContactPayloadFields["COLUMN_ORGANIZATION_UNIT_ID"] = "organizationUnitId";
|
|
23
|
+
CustomerContactPayloadFields["COLUMN_ORGANIZATION_UNIT_IDS"] = "organizationUnitIds";
|
|
23
24
|
})(CustomerContactPayloadFields = exports.CustomerContactPayloadFields || (exports.CustomerContactPayloadFields = {}));
|
|
24
25
|
var PostCustomerInvitationFields;
|
|
25
26
|
(function (PostCustomerInvitationFields) {
|
package/package.json
CHANGED