@arrowsphere/api-client 3.136.0 → 3.138.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,16 @@
|
|
|
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.138.0] - 2024.09.02
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- [product] FiltersValuesType can be array of filter
|
|
10
|
+
|
|
11
|
+
## [3.137.0] - 2024.08.29
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- [quotes] Add data in ItemData
|
|
15
|
+
|
|
6
16
|
## [3.136.0] - 2024.08.29
|
|
7
17
|
|
|
8
18
|
### Added
|
|
@@ -26,7 +26,7 @@ export declare type PaginatedProductsType = {
|
|
|
26
26
|
};
|
|
27
27
|
export declare type FiltersType = {
|
|
28
28
|
name?: string;
|
|
29
|
-
values?: FiltersValuesType;
|
|
29
|
+
values?: FiltersValuesType | FiltersValuesType[];
|
|
30
30
|
};
|
|
31
31
|
export declare type FiltersValuesType = {
|
|
32
32
|
value?: string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ArrowCompanyType, EndCustomerType, PartnerType } from './company';
|
|
2
|
+
import { ContactsType } from './contact';
|
|
2
3
|
import { GraphqlApiProgramType } from './program';
|
|
3
4
|
import { QuoteVersion } from './quoteVersion';
|
|
4
5
|
export declare type EavType = {
|
|
@@ -10,6 +11,7 @@ export declare type QuoteType = {
|
|
|
10
11
|
commitmentAmountTotal?: number;
|
|
11
12
|
createdAt?: string;
|
|
12
13
|
endCustomer?: EndCustomerType;
|
|
14
|
+
endCustomerContact?: ContactsType;
|
|
13
15
|
items?: QuoteItemType[];
|
|
14
16
|
partner?: PartnerType;
|
|
15
17
|
versions?: QuoteVersion[];
|
|
@@ -38,12 +40,19 @@ export declare type ItemData = {
|
|
|
38
40
|
currency?: string;
|
|
39
41
|
arrowRateType?: string;
|
|
40
42
|
partnerRateType?: string;
|
|
43
|
+
arrowBuyPrice?: number;
|
|
44
|
+
arrowCotermBuyPrice?: number;
|
|
45
|
+
resellerBuyPrice?: number;
|
|
46
|
+
resellerCotermBuyPrice?: number;
|
|
47
|
+
endCustomerBuyPrice?: number;
|
|
48
|
+
endCustomerCotermBuyPrice?: number;
|
|
41
49
|
billingTerm?: number;
|
|
42
50
|
billingCycle?: number;
|
|
43
51
|
arrowRateValue?: number;
|
|
44
52
|
partnerRateValue?: number;
|
|
45
53
|
arrowSpherePriceBandSku?: number;
|
|
46
54
|
licenseAgreementType?: string;
|
|
55
|
+
classification?: string;
|
|
47
56
|
mainLogoUrl?: string;
|
|
48
57
|
squareLogoUrl?: string;
|
|
49
58
|
marketplace?: string;
|
|
@@ -5,12 +5,11 @@ import { ContinentType, CountryType } from './entities/country';
|
|
|
5
5
|
import { WorkgroupType } from './entities/workgroup';
|
|
6
6
|
import { ErrorsType, PageType, Queries, SelectDataField, SelectableField } from './graphqlApiQueries';
|
|
7
7
|
import { ContactsType } from './entities/contact';
|
|
8
|
-
import { ProgramType } from '../../catalog';
|
|
9
8
|
import { SubscriptionType } from './entities/subscription';
|
|
10
9
|
import { SpecialPriceRateType } from './entities/specialPriceRate';
|
|
11
10
|
import { OrderItemsType, OrdersType } from './entities/order';
|
|
12
11
|
import { VendorsType } from './entities/vendor';
|
|
13
|
-
import { SubscribedProgramType } from './entities/program';
|
|
12
|
+
import { GraphqlApiProgramType, SubscribedProgramType } from './entities/program';
|
|
14
13
|
import { LicenseBudgetNotificationType, LicenseBudgetType } from './entities/licenseBudget';
|
|
15
14
|
import { UserHistoryType, UserType } from './entities/user';
|
|
16
15
|
import { OrganizationUnitsType } from './entities/organizationUnit';
|
|
@@ -65,7 +64,7 @@ declare type MissingFieldsOfQuoteSchema = {
|
|
|
65
64
|
lastVersion?: QuoteVersionSchema;
|
|
66
65
|
};
|
|
67
66
|
declare type MissingFieldsOfQuoteItemSchema = {
|
|
68
|
-
program?:
|
|
67
|
+
program?: GraphqlApiProgramSchema;
|
|
69
68
|
itemData?: ItemDataSchema;
|
|
70
69
|
};
|
|
71
70
|
export declare type QuoteItemSchema = Merge<Schema<QuoteItemType, boolean>, MissingFieldsOfQuoteItemSchema>;
|
|
@@ -94,7 +93,7 @@ export declare type ErrorsSchema = Schema<ErrorsType, boolean>;
|
|
|
94
93
|
export declare type LicenseBudgetNotificationSchema = Schema<LicenseBudgetNotificationType, boolean>;
|
|
95
94
|
export declare type OrganizationUnitSchema = Schema<OrganizationUnitsType, boolean>;
|
|
96
95
|
export declare type PageSchema = Schema<PageType, boolean>;
|
|
97
|
-
export declare type
|
|
96
|
+
export declare type GraphqlApiProgramSchema = Schema<GraphqlApiProgramType, boolean>;
|
|
98
97
|
export declare type SpecialPriceRateSchema = Schema<SpecialPriceRateType, boolean>;
|
|
99
98
|
export declare type SubscribedProgramSchema = Schema<SubscribedProgramType, boolean>;
|
|
100
99
|
export declare type SubscriptionSchema = Schema<SubscriptionType, boolean>;
|
package/package.json
CHANGED