@arrowsphere/api-client 3.135.0-rc.bdj.3 → 3.135.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,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.135.0] - 2024.08.28
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- [product] can have multiple sort on get offers
|
|
10
|
+
|
|
6
11
|
## [3.134.0] - 2024.08.13
|
|
7
12
|
|
|
8
13
|
### Added
|
|
@@ -58,7 +58,7 @@ export declare type SearchBodyArgument = {
|
|
|
58
58
|
quantity?: number;
|
|
59
59
|
resellerRef?: string;
|
|
60
60
|
restricted?: boolean;
|
|
61
|
-
sort?: SortArgument;
|
|
61
|
+
sort?: SortArgument | SortArgument[];
|
|
62
62
|
topOffers?: boolean;
|
|
63
63
|
};
|
|
64
64
|
export declare type SearchProductFilterArgument = {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ArrowCompanyType, EndCustomerType, PartnerType } from './company';
|
|
2
|
-
import { ContactsType } from './contact';
|
|
3
2
|
import { GraphqlApiProgramType } from './program';
|
|
4
3
|
import { QuoteVersion } from './quoteVersion';
|
|
5
4
|
export declare type EavType = {
|
|
@@ -11,7 +10,6 @@ export declare type QuoteType = {
|
|
|
11
10
|
commitmentAmountTotal?: number;
|
|
12
11
|
createdAt?: string;
|
|
13
12
|
endCustomer?: EndCustomerType;
|
|
14
|
-
endCustomerContact?: ContactsType;
|
|
15
13
|
items?: QuoteItemType[];
|
|
16
14
|
partner?: PartnerType;
|
|
17
15
|
versions?: QuoteVersion[];
|
|
@@ -40,12 +38,6 @@ export declare type ItemData = {
|
|
|
40
38
|
currency?: string;
|
|
41
39
|
arrowRateType?: string;
|
|
42
40
|
partnerRateType?: string;
|
|
43
|
-
arrowBuyPrice?: number;
|
|
44
|
-
arrowCotermBuyPrice?: number;
|
|
45
|
-
resellerBuyPrice?: number;
|
|
46
|
-
resellerCotermBuyPrice?: number;
|
|
47
|
-
endCustomerBuyPrice?: number;
|
|
48
|
-
endCustomerCotermBuyPrice?: number;
|
|
49
41
|
billingTerm?: number;
|
|
50
42
|
billingCycle?: number;
|
|
51
43
|
arrowRateValue?: number;
|
|
@@ -5,11 +5,12 @@ 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';
|
|
8
9
|
import { SubscriptionType } from './entities/subscription';
|
|
9
10
|
import { SpecialPriceRateType } from './entities/specialPriceRate';
|
|
10
11
|
import { OrderItemsType, OrdersType } from './entities/order';
|
|
11
12
|
import { VendorsType } from './entities/vendor';
|
|
12
|
-
import {
|
|
13
|
+
import { SubscribedProgramType } from './entities/program';
|
|
13
14
|
import { LicenseBudgetNotificationType, LicenseBudgetType } from './entities/licenseBudget';
|
|
14
15
|
import { UserHistoryType, UserType } from './entities/user';
|
|
15
16
|
import { OrganizationUnitsType } from './entities/organizationUnit';
|
|
@@ -64,7 +65,7 @@ declare type MissingFieldsOfQuoteSchema = {
|
|
|
64
65
|
lastVersion?: QuoteVersionSchema;
|
|
65
66
|
};
|
|
66
67
|
declare type MissingFieldsOfQuoteItemSchema = {
|
|
67
|
-
program?:
|
|
68
|
+
program?: LicenseBudgetNotificationSchema;
|
|
68
69
|
itemData?: ItemDataSchema;
|
|
69
70
|
};
|
|
70
71
|
export declare type QuoteItemSchema = Merge<Schema<QuoteItemType, boolean>, MissingFieldsOfQuoteItemSchema>;
|
|
@@ -93,7 +94,7 @@ export declare type ErrorsSchema = Schema<ErrorsType, boolean>;
|
|
|
93
94
|
export declare type LicenseBudgetNotificationSchema = Schema<LicenseBudgetNotificationType, boolean>;
|
|
94
95
|
export declare type OrganizationUnitSchema = Schema<OrganizationUnitsType, boolean>;
|
|
95
96
|
export declare type PageSchema = Schema<PageType, boolean>;
|
|
96
|
-
export declare type
|
|
97
|
+
export declare type ProgramSchema = Schema<ProgramType, boolean>;
|
|
97
98
|
export declare type SpecialPriceRateSchema = Schema<SpecialPriceRateType, boolean>;
|
|
98
99
|
export declare type SubscribedProgramSchema = Schema<SubscribedProgramType, boolean>;
|
|
99
100
|
export declare type SubscriptionSchema = Schema<SubscriptionType, boolean>;
|
package/package.json
CHANGED