@configura/web-api 2.1.0-alpha.1 → 2.1.0-alpha.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.
- package/dist/CatalogueAPI.d.ts +10 -9
- package/package.json +3 -3
package/dist/CatalogueAPI.d.ts
CHANGED
|
@@ -278,6 +278,7 @@ export interface DtoOption {
|
|
|
278
278
|
priceCodes?: Array<string>;
|
|
279
279
|
noteRefs?: Array<string>;
|
|
280
280
|
miscFiles?: Array<DtoMiscFile>;
|
|
281
|
+
omitOnOrder?: boolean;
|
|
281
282
|
}
|
|
282
283
|
/** OptionConf */
|
|
283
284
|
export interface DtoOptionConf {
|
|
@@ -292,6 +293,15 @@ export interface DtoOrientation {
|
|
|
292
293
|
pitch: number;
|
|
293
294
|
roll: number;
|
|
294
295
|
}
|
|
296
|
+
/** PartsConstrainedOption */
|
|
297
|
+
export interface DtoPartsConstrainedOption {
|
|
298
|
+
code: string;
|
|
299
|
+
feature: string;
|
|
300
|
+
constrOptions?: Array<string>;
|
|
301
|
+
next?: {
|
|
302
|
+
[index: string]: DtoPartsConstrainedOption;
|
|
303
|
+
};
|
|
304
|
+
}
|
|
295
305
|
/** PartsData */
|
|
296
306
|
export interface DtoPartsData {
|
|
297
307
|
basePrice: number;
|
|
@@ -304,15 +314,6 @@ export interface DtoPartsData {
|
|
|
304
314
|
styleNr: string;
|
|
305
315
|
prices?: DtoPrices;
|
|
306
316
|
}
|
|
307
|
-
/** PartsConstrainedOption */
|
|
308
|
-
export interface DtoPartsConstrainedOption {
|
|
309
|
-
code: string;
|
|
310
|
-
feature: string;
|
|
311
|
-
constrOptions?: Array<string>;
|
|
312
|
-
next?: {
|
|
313
|
-
[index: string]: DtoPartsConstrainedOption;
|
|
314
|
-
};
|
|
315
|
-
}
|
|
316
317
|
/** PartsSelectedOption */
|
|
317
318
|
export interface DtoPartsSelectedOption {
|
|
318
319
|
code: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@configura/web-api",
|
|
3
|
-
"version": "2.1.0-alpha.
|
|
3
|
+
"version": "2.1.0-alpha.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"access": "public"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@configura/web-utilities": "2.1.0-alpha.
|
|
26
|
+
"@configura/web-utilities": "2.1.0-alpha.2"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "0aa712ce445c807477b8ce42dc43285c7c086fcd"
|
|
29
29
|
}
|