@arrowsphere/api-client 3.206.0-rc-bdj-2 → 3.206.0-rc-bdj-3
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.
|
@@ -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
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "https://github.com/ArrowSphere/nodejs-api-client.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "3.206.0-rc-bdj-
|
|
7
|
+
"version": "3.206.0-rc-bdj-3",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|