@arrowsphere/api-client 3.131.0-rc.sba.1 → 3.131.0-rc.sba.2
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.
|
@@ -73,6 +73,9 @@ export declare type QuoteVersionSchema = Merge<Schema<QuoteVersion, boolean>, Mi
|
|
|
73
73
|
declare type MissingFieldsOfQuoteVersionSchema = {
|
|
74
74
|
items?: QuoteItemSchema;
|
|
75
75
|
};
|
|
76
|
+
declare type MissingFieldsOfCountrySchema = {
|
|
77
|
+
continent?: ContinentSchema;
|
|
78
|
+
};
|
|
76
79
|
export declare type ItemDataSchema = Schema<ItemData, boolean>;
|
|
77
80
|
export declare type QuoteSchema = Merge<Schema<QuoteType, boolean>, MissingFieldsOfQuoteSchema>;
|
|
78
81
|
export declare type ContactsSchema = Merge<Schema<ContactsType, boolean>, MissingFieldsOfContactSchema>;
|
|
@@ -85,7 +88,7 @@ export declare type PartnerSchema = Merge<Schema<PartnerType, boolean>, MissingF
|
|
|
85
88
|
export declare type ArrowCompanySchema = Merge<Schema<ArrowCompanyType, boolean>, MissingFieldsOfArrowCompanySchema>;
|
|
86
89
|
export declare type CompanyExtraInformationSchema = Schema<CompanyExtraInformation, boolean>;
|
|
87
90
|
export declare type ContinentSchema = Schema<ContinentType, boolean>;
|
|
88
|
-
export declare type CountrySchema = Schema<CountryType, boolean>;
|
|
91
|
+
export declare type CountrySchema = Merge<Schema<CountryType, boolean>, MissingFieldsOfCountrySchema>;
|
|
89
92
|
export declare type CurrencySchema = Schema<CurrencyType, boolean>;
|
|
90
93
|
export declare type ErrorsSchema = Schema<ErrorsType, boolean>;
|
|
91
94
|
export declare type LicenseBudgetNotificationSchema = Schema<LicenseBudgetNotificationType, boolean>;
|
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.131.0-rc.sba.
|
|
7
|
+
"version": "3.131.0-rc.sba.2",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|