@arrowsphere/api-client 3.123.0 → 3.124.0-rc.bdj.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
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
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
|
+
|
|
6
|
+
## [3.123.1] - 2024.06.12
|
|
7
|
+
|
|
8
|
+
### Modified
|
|
9
|
+
- [licenses] Remove "/v2" from bulk action path
|
|
10
|
+
|
|
5
11
|
## [3.123.0] - 2024.06.12
|
|
6
12
|
|
|
7
13
|
### Modified
|
|
@@ -228,7 +228,7 @@ class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
|
228
228
|
/**
|
|
229
229
|
* The path to apply bulk action on license(s)
|
|
230
230
|
*/
|
|
231
|
-
this.BULK_PATH = '/
|
|
231
|
+
this.BULK_PATH = '/bulk-action';
|
|
232
232
|
}
|
|
233
233
|
/**
|
|
234
234
|
* Returns the raw result from the find endpoint call
|
|
@@ -40,7 +40,8 @@ export declare enum CreateOrderInputFields {
|
|
|
40
40
|
COLUMN_COTERMINOSITY_DATE = "coterminosityDate",
|
|
41
41
|
COLUMN_COTERMINOSITY_SUBSCRIPTION_REF = "coterminositySubscriptionRef",
|
|
42
42
|
COLUMN_PROMOTION_ID = "promotionId",
|
|
43
|
-
COLUMN_ORGANIZATION_UNIT_REF = "organizationUnitRef"
|
|
43
|
+
COLUMN_ORGANIZATION_UNIT_REF = "organizationUnitRef",
|
|
44
|
+
COLUMN_EAVS = "eavs"
|
|
44
45
|
}
|
|
45
46
|
export declare enum scenarioType {
|
|
46
47
|
INJECTION = "injection",
|
|
@@ -114,6 +115,7 @@ export declare type CreateOrderProductType = {
|
|
|
114
115
|
[CreateOrderInputFields.COLUMN_PRICE_EXCHANGE_RATE]?: number;
|
|
115
116
|
};
|
|
116
117
|
};
|
|
118
|
+
[CreateOrderInputFields.COLUMN_EAVS]?: Record<string, string>;
|
|
117
119
|
};
|
|
118
120
|
export declare class OrdersClient extends AbstractRestfulClient {
|
|
119
121
|
/**
|
|
@@ -45,6 +45,7 @@ var CreateOrderInputFields;
|
|
|
45
45
|
CreateOrderInputFields["COLUMN_COTERMINOSITY_SUBSCRIPTION_REF"] = "coterminositySubscriptionRef";
|
|
46
46
|
CreateOrderInputFields["COLUMN_PROMOTION_ID"] = "promotionId";
|
|
47
47
|
CreateOrderInputFields["COLUMN_ORGANIZATION_UNIT_REF"] = "organizationUnitRef";
|
|
48
|
+
CreateOrderInputFields["COLUMN_EAVS"] = "eavs";
|
|
48
49
|
})(CreateOrderInputFields = exports.CreateOrderInputFields || (exports.CreateOrderInputFields = {}));
|
|
49
50
|
var scenarioType;
|
|
50
51
|
(function (scenarioType) {
|
package/package.json
CHANGED