@arrowsphere/api-client 3.142.0 → 3.143.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 +5 -0
- package/build/catalog/types/catalogGraphQLTypes.d.ts +8 -0
- package/build/catalog/types/catalogGraphQLTypes.js +4 -0
- package/build/graphqlApi/index.d.ts +1 -0
- package/build/graphqlApi/index.js +1 -0
- package/build/graphqlApi/types/entities/comment.d.ts +7 -0
- package/build/graphqlApi/types/entities/comment.js +3 -0
- package/build/graphqlApi/types/entities/quote.d.ts +7 -1
- package/build/graphqlApi/types/graphqlApiSchemas.d.ts +8 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
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.143.0] - 2024.10.2
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- [quotes] add comment in graphql api and 4 new data in catalog
|
|
10
|
+
|
|
6
11
|
## [3.142.0] - 2024.10.02
|
|
7
12
|
|
|
8
13
|
### Added
|
|
@@ -223,12 +223,20 @@ export declare enum PricesTypeKeys {
|
|
|
223
223
|
BUY_KEY = "buy",
|
|
224
224
|
SELL_KEY = "sell",
|
|
225
225
|
PUBLIC_KEY = "public",
|
|
226
|
+
ARROW_KEY = "arrow",
|
|
227
|
+
PARTNER_KEY = "partner",
|
|
228
|
+
ENDCUSTOMER_KEY = "endCustom",
|
|
229
|
+
RETAIL_KEY = "public",
|
|
226
230
|
VENDOR_PRICING_SOURCE_KEY = "vendorPricingSource"
|
|
227
231
|
}
|
|
228
232
|
export declare type PricesType = {
|
|
229
233
|
[PricesTypeKeys.BUY_KEY]?: string;
|
|
230
234
|
[PricesTypeKeys.SELL_KEY]?: string;
|
|
231
235
|
[PricesTypeKeys.PUBLIC_KEY]?: string;
|
|
236
|
+
[PricesTypeKeys.ARROW_KEY]?: string;
|
|
237
|
+
[PricesTypeKeys.PARTNER_KEY]?: string;
|
|
238
|
+
[PricesTypeKeys.ENDCUSTOMER_KEY]?: string;
|
|
239
|
+
[PricesTypeKeys.RETAIL_KEY]?: string;
|
|
232
240
|
[PricesTypeKeys.VENDOR_PRICING_SOURCE_KEY]?: VendorPricingSourceType;
|
|
233
241
|
};
|
|
234
242
|
export declare type PriceBandSaleConstraintsType = {
|
|
@@ -7,6 +7,10 @@ var PricesTypeKeys;
|
|
|
7
7
|
PricesTypeKeys["BUY_KEY"] = "buy";
|
|
8
8
|
PricesTypeKeys["SELL_KEY"] = "sell";
|
|
9
9
|
PricesTypeKeys["PUBLIC_KEY"] = "public";
|
|
10
|
+
PricesTypeKeys["ARROW_KEY"] = "arrow";
|
|
11
|
+
PricesTypeKeys["PARTNER_KEY"] = "partner";
|
|
12
|
+
PricesTypeKeys["ENDCUSTOMER_KEY"] = "endCustom";
|
|
13
|
+
PricesTypeKeys["RETAIL_KEY"] = "public";
|
|
10
14
|
PricesTypeKeys["VENDOR_PRICING_SOURCE_KEY"] = "vendorPricingSource";
|
|
11
15
|
})(PricesTypeKeys = exports.PricesTypeKeys || (exports.PricesTypeKeys = {}));
|
|
12
16
|
//# sourceMappingURL=catalogGraphQLTypes.js.map
|
|
@@ -33,4 +33,5 @@ __exportStar(require("./types/entities/vendor"), exports);
|
|
|
33
33
|
__exportStar(require("./types/entities/workgroup"), exports);
|
|
34
34
|
__exportStar(require("./graphqlApiClient"), exports);
|
|
35
35
|
__exportStar(require("./types/entities/quoteVersion"), exports);
|
|
36
|
+
__exportStar(require("./types/entities/comment"), exports);
|
|
36
37
|
//# sourceMappingURL=index.js.map
|
|
@@ -2,6 +2,7 @@ import { ArrowCompanyType, EndCustomerType, PartnerType } from './company';
|
|
|
2
2
|
import { ContactsType } from './contact';
|
|
3
3
|
import { GraphqlApiProgramType } from './program';
|
|
4
4
|
import { QuoteVersion } from './quoteVersion';
|
|
5
|
+
import { Comment } from './comment';
|
|
5
6
|
export declare type EavType = {
|
|
6
7
|
value?: string;
|
|
7
8
|
};
|
|
@@ -10,9 +11,13 @@ export declare type QuoteType = {
|
|
|
10
11
|
arrowCompany?: ArrowCompanyType;
|
|
11
12
|
commitmentAmountTotal?: number;
|
|
12
13
|
createdAt?: string;
|
|
14
|
+
comments?: Comment[];
|
|
15
|
+
dateBegin?: string;
|
|
16
|
+
dateEnd?: string;
|
|
13
17
|
endCustomer?: EndCustomerType;
|
|
14
18
|
endCustomerContact?: ContactsType;
|
|
15
19
|
items?: QuoteItemType[];
|
|
20
|
+
name?: string;
|
|
16
21
|
partner?: PartnerType;
|
|
17
22
|
versions?: QuoteVersion[];
|
|
18
23
|
promotionCode?: string;
|
|
@@ -30,6 +35,7 @@ export declare type QuoteItemType = {
|
|
|
30
35
|
reference?: string;
|
|
31
36
|
vendorName?: string;
|
|
32
37
|
vendorNamesSerialized?: string;
|
|
38
|
+
version?: QuoteVersion;
|
|
33
39
|
};
|
|
34
40
|
export declare type ItemData = {
|
|
35
41
|
id?: string;
|
|
@@ -50,7 +56,7 @@ export declare type ItemData = {
|
|
|
50
56
|
billingCycle?: number;
|
|
51
57
|
arrowRateValue?: number;
|
|
52
58
|
partnerRateValue?: number;
|
|
53
|
-
arrowSpherePriceBandSku?:
|
|
59
|
+
arrowSpherePriceBandSku?: string;
|
|
54
60
|
licenseAgreementType?: string;
|
|
55
61
|
classification?: string;
|
|
56
62
|
mainLogoUrl?: string;
|
|
@@ -16,6 +16,7 @@ import { OrganizationUnitsType } from './entities/organizationUnit';
|
|
|
16
16
|
import { CurrencyType } from './entities/currency';
|
|
17
17
|
import { ItemData, QuoteItemType, QuoteType } from './entities/quote';
|
|
18
18
|
import { QuoteVersion } from './entities/quoteVersion';
|
|
19
|
+
import { Comment } from './entities/comment';
|
|
19
20
|
export declare type PartnertagSchema = Schema<PartnertagType, boolean>;
|
|
20
21
|
declare type MissingFieldsOfCompanySchema = {
|
|
21
22
|
contacts?: ContactsSchema;
|
|
@@ -58,6 +59,7 @@ declare type MissingFieldsOfLicenseBudgetSchema = {
|
|
|
58
59
|
declare type MissingFieldsOfQuoteSchema = {
|
|
59
60
|
arrowCompany?: ArrowCompanySchema;
|
|
60
61
|
endCustomer?: EndCustomerSchema;
|
|
62
|
+
comments?: CommentSchema;
|
|
61
63
|
items?: QuoteItemSchema;
|
|
62
64
|
partner?: PartnerSchema;
|
|
63
65
|
versions?: QuoteVersionSchema;
|
|
@@ -66,12 +68,14 @@ declare type MissingFieldsOfQuoteSchema = {
|
|
|
66
68
|
declare type MissingFieldsOfQuoteItemSchema = {
|
|
67
69
|
program?: GraphqlApiProgramSchema;
|
|
68
70
|
itemData?: ItemDataSchema;
|
|
71
|
+
version?: QuoteVersionSchema;
|
|
69
72
|
};
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
declare type MissingFieldsOfQuoteVersionSchema = {
|
|
73
|
-
items?: QuoteItemSchema;
|
|
73
|
+
declare type MissingFieldsOfCommentSchema = {
|
|
74
|
+
user?: UserSchema;
|
|
74
75
|
};
|
|
76
|
+
export declare type QuoteItemSchema = Merge<Schema<QuoteItemType, boolean>, MissingFieldsOfQuoteItemSchema>;
|
|
77
|
+
export declare type CommentSchema = Merge<Schema<Comment, boolean>, MissingFieldsOfCommentSchema>;
|
|
78
|
+
export declare type QuoteVersionSchema = Schema<QuoteVersion, boolean>;
|
|
75
79
|
declare type MissingFieldsOfCountrySchema = {
|
|
76
80
|
continent?: ContinentSchema;
|
|
77
81
|
};
|
package/package.json
CHANGED