@arrowsphere/api-client 3.357.0 → 3.359.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 +11 -0
- package/build/graphqlApi/types/entities/quote.d.ts +1 -0
- package/build/graphqlApi/types/graphqlApiSchemas.d.ts +0 -2
- package/build/licenses/entities/lateRenewalLicense/executeLateRenewPayload.d.ts +5 -0
- package/build/orders/ordersClient.d.ts +3 -1
- package/build/orders/ordersClient.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.359.0] - 2026.04.13
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- [license] Add customFields in late renewal request
|
|
10
|
+
|
|
11
|
+
## [3.358.0] - 2026.04.10
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- [graphql-api] Add `endCustomer/endCustomerContact/partner/partnerContact` to `quoteType`
|
|
15
|
+
- [Order] Add `quoteRef` to `CreateOrderInputType`
|
|
16
|
+
|
|
6
17
|
## [3.357.0] - 2026.04.08
|
|
7
18
|
|
|
8
19
|
### Added
|
|
@@ -68,10 +68,8 @@ declare type MissingFieldsOfLicenseBudgetSchema = {
|
|
|
68
68
|
};
|
|
69
69
|
declare type MissingFieldsOfQuoteSchema = {
|
|
70
70
|
arrowCompany?: ArrowCompanySchema;
|
|
71
|
-
endCustomer?: EndCustomerSchema;
|
|
72
71
|
comments?: CommentSchema;
|
|
73
72
|
items?: QuoteItemSchema;
|
|
74
|
-
partner?: PartnerSchema;
|
|
75
73
|
versions?: QuoteVersionSchema;
|
|
76
74
|
lastVersion?: QuoteVersionSchema;
|
|
77
75
|
};
|
|
@@ -2,7 +2,12 @@ export declare type ExecuteLateRenewLicense = {
|
|
|
2
2
|
numberOfSeats: number;
|
|
3
3
|
licenseRef: string;
|
|
4
4
|
};
|
|
5
|
+
export declare type CustomField = {
|
|
6
|
+
label: string;
|
|
7
|
+
value: string;
|
|
8
|
+
};
|
|
5
9
|
export declare type ExecuteLateRenewPayload = {
|
|
6
10
|
licenses: ExecuteLateRenewLicense[];
|
|
7
11
|
billingComments: Record<string, string>;
|
|
12
|
+
customFields: CustomField[];
|
|
8
13
|
};
|
|
@@ -44,7 +44,8 @@ export declare enum CreateOrderInputFields {
|
|
|
44
44
|
COLUMN_COTERMINOSITY_SUBSCRIPTION_REF = "coterminositySubscriptionRef",
|
|
45
45
|
COLUMN_PROMOTION_ID = "promotionId",
|
|
46
46
|
COLUMN_ORGANIZATION_UNIT_REF = "organizationUnitRef",
|
|
47
|
-
COLUMN_EAVS = "eavs"
|
|
47
|
+
COLUMN_EAVS = "eavs",
|
|
48
|
+
COLUMN_QUOTE_REF = "quoteRef"
|
|
48
49
|
}
|
|
49
50
|
export declare enum scenarioType {
|
|
50
51
|
INJECTION = "injection",
|
|
@@ -76,6 +77,7 @@ export declare type CreateOrderInputType = {
|
|
|
76
77
|
programs: OrderProgramsType;
|
|
77
78
|
};
|
|
78
79
|
[CreateOrderInputFields.COLUMN_ORGANIZATION_UNIT_REF]?: string;
|
|
80
|
+
[CreateOrderInputFields.COLUMN_QUOTE_REF]?: string;
|
|
79
81
|
};
|
|
80
82
|
export declare type CreateOrderProductType = {
|
|
81
83
|
[CreateOrderInputFields.COLUMN_ARROW_SPHERE_PRICE_BAND_SKU]?: string;
|
|
@@ -49,6 +49,7 @@ var CreateOrderInputFields;
|
|
|
49
49
|
CreateOrderInputFields["COLUMN_PROMOTION_ID"] = "promotionId";
|
|
50
50
|
CreateOrderInputFields["COLUMN_ORGANIZATION_UNIT_REF"] = "organizationUnitRef";
|
|
51
51
|
CreateOrderInputFields["COLUMN_EAVS"] = "eavs";
|
|
52
|
+
CreateOrderInputFields["COLUMN_QUOTE_REF"] = "quoteRef";
|
|
52
53
|
})(CreateOrderInputFields = exports.CreateOrderInputFields || (exports.CreateOrderInputFields = {}));
|
|
53
54
|
var scenarioType;
|
|
54
55
|
(function (scenarioType) {
|
package/package.json
CHANGED