@arrowsphere/api-client 3.206.0-rc-bdj-2 → 3.206.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
|
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
### Added
|
|
9
9
|
|
|
10
|
-
- [graphql-api] add fields `arrowSubCategories` and `isTrial` to `ItemData`
|
|
10
|
+
- [graphql-api] add fields `arrowSubCategories`, `attributes` and `isTrial` to `ItemData`
|
|
11
11
|
|
|
12
12
|
## [3.205.0] - 2025.07.03
|
|
13
13
|
|
|
@@ -13,7 +13,7 @@ import { LicenseBudgetNotificationType, LicenseBudgetType } from './entities/lic
|
|
|
13
13
|
import { UserHistoryType, UserType } from './entities/user';
|
|
14
14
|
import { OrganizationUnitsType } from './entities/organizationUnit';
|
|
15
15
|
import { CurrencyType } from './entities/currency';
|
|
16
|
-
import { ItemData, QuoteItemType, QuoteType } from './entities/quote';
|
|
16
|
+
import { ItemData, NameValueType, QuoteItemType, QuoteType } from './entities/quote';
|
|
17
17
|
import { QuoteVersion } from './entities/quoteVersion';
|
|
18
18
|
import { Comment } from './entities/comment';
|
|
19
19
|
import { GraphqlApiReportItemType, GraphqlApiReportStatusType, GraphqlApiReportType } from './entities/report';
|
|
@@ -47,6 +47,7 @@ declare type MissingFieldsOfOrderItemSchema = {
|
|
|
47
47
|
migratedFrom?: GraphqlApiOrderLinkSchema;
|
|
48
48
|
migratedTo?: GraphqlApiOrderLinkSchema;
|
|
49
49
|
priceRates?: SpecialPriceRateSchema;
|
|
50
|
+
itemData?: ItemDataSchema;
|
|
50
51
|
};
|
|
51
52
|
declare type MissingFieldsOfOrdersSchema = {
|
|
52
53
|
eavs?: GraphqlApiEavSchema;
|
|
@@ -86,7 +87,11 @@ export declare type QuoteVersionSchema = Schema<QuoteVersion, boolean>;
|
|
|
86
87
|
declare type MissingFieldsOfCountrySchema = {
|
|
87
88
|
continent?: ContinentSchema;
|
|
88
89
|
};
|
|
89
|
-
|
|
90
|
+
declare type NameValueTypeSchema = Schema<NameValueType, boolean>;
|
|
91
|
+
declare type MissingFieldsOfItemDataSchema = {
|
|
92
|
+
attributes?: NameValueTypeSchema;
|
|
93
|
+
};
|
|
94
|
+
export declare type ItemDataSchema = Merge<Schema<ItemData, boolean>, MissingFieldsOfItemDataSchema>;
|
|
90
95
|
export declare type QuoteSchema = Merge<Schema<QuoteType, boolean>, MissingFieldsOfQuoteSchema>;
|
|
91
96
|
export declare type ContactsSchema = Merge<Schema<ContactsType, boolean>, MissingFieldsOfContactSchema>;
|
|
92
97
|
export declare type UserSchema = Merge<Schema<UserType, boolean>, MissingFieldsOfUserSchema>;
|
package/package.json
CHANGED