@salesforce/lds-adapters-industries-cpq 1.229.0 → 1.231.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/dist/es/es2018/industries-cpq.js +115 -1
- package/dist/es/es2018/types/src/generated/types/ProductAttributeOutputRepresentation.d.ts +13 -1
- package/dist/es/es2018/types/src/generated/types/ProductClassificationOutputRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/ProductComponentGroupOutputRepresentation.d.ts +53 -0
- package/dist/es/es2018/types/src/generated/types/ProductDetailsInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ProductDetailsOutputRepresentation.d.ts +54 -1
- package/dist/es/es2018/types/src/generated/types/ProductListInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ProductListOutputRepresentation.d.ts +54 -1
- package/dist/es/es2018/types/src/generated/types/ProductOutputRepresentation.d.ts +54 -1
- package/dist/es/es2018/types/src/generated/types/ProductRelatedComponentOutputRepresentation.d.ts +76 -0
- package/dist/es/es2018/types/src/generated/types/ProductSellingModelOptionOutputRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/ProductSellingModelOutputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/ProductSpecificationRecordTypeOutputRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/ProductSpecificationTypeOutputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/QualificationContextOutputRepresentation.d.ts +31 -0
- package/package.json +1 -1
- package/sfdc/index.js +116 -2
- package/src/raml/api.raml +445 -0
|
@@ -621,6 +621,13 @@ function validate$z(obj, path = 'ProductListInputRepresentation') {
|
|
|
621
621
|
return new TypeError('Expected "string" but received "' + typeof obj_correlationId + '" (at "' + path_correlationId + '")');
|
|
622
622
|
}
|
|
623
623
|
}
|
|
624
|
+
if (obj.cursor !== undefined) {
|
|
625
|
+
const obj_cursor = obj.cursor;
|
|
626
|
+
const path_cursor = path + '.cursor';
|
|
627
|
+
if (typeof obj_cursor !== 'string') {
|
|
628
|
+
return new TypeError('Expected "string" but received "' + typeof obj_cursor + '" (at "' + path_cursor + '")');
|
|
629
|
+
}
|
|
630
|
+
}
|
|
624
631
|
if (obj.filter !== undefined) {
|
|
625
632
|
const obj_filter = obj.filter;
|
|
626
633
|
const path_filter = path + '.filter';
|
|
@@ -994,6 +1001,13 @@ function validate$x(obj, path = 'ProductDetailsInputRepresentation') {
|
|
|
994
1001
|
if (typeof obj_priceBookId !== 'string') {
|
|
995
1002
|
return new TypeError('Expected "string" but received "' + typeof obj_priceBookId + '" (at "' + path_priceBookId + '")');
|
|
996
1003
|
}
|
|
1004
|
+
if (obj.productSellingModelId !== undefined) {
|
|
1005
|
+
const obj_productSellingModelId = obj.productSellingModelId;
|
|
1006
|
+
const path_productSellingModelId = path + '.productSellingModelId';
|
|
1007
|
+
if (typeof obj_productSellingModelId !== 'string') {
|
|
1008
|
+
return new TypeError('Expected "string" but received "' + typeof obj_productSellingModelId + '" (at "' + path_productSellingModelId + '")');
|
|
1009
|
+
}
|
|
1010
|
+
}
|
|
997
1011
|
if (obj.userContext !== undefined) {
|
|
998
1012
|
const obj_userContext = obj.userContext;
|
|
999
1013
|
const path_userContext = path + '.userContext';
|
|
@@ -1877,7 +1891,7 @@ function equals$b(existing, incoming) {
|
|
|
1877
1891
|
return true;
|
|
1878
1892
|
}
|
|
1879
1893
|
|
|
1880
|
-
const VERSION$a = "
|
|
1894
|
+
const VERSION$a = "6ff7eba66a298f44544aa43e1c59f15c";
|
|
1881
1895
|
function validate$r(obj, path = 'ProductAttributeOutputRepresentation') {
|
|
1882
1896
|
const v_error = (() => {
|
|
1883
1897
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -1890,6 +1904,13 @@ function validate$r(obj, path = 'ProductAttributeOutputRepresentation') {
|
|
|
1890
1904
|
return new TypeError('Expected "string" but received "' + typeof obj_attributeCategoryId + '" (at "' + path_attributeCategoryId + '")');
|
|
1891
1905
|
}
|
|
1892
1906
|
}
|
|
1907
|
+
if (obj.attributeNameOverride !== undefined) {
|
|
1908
|
+
const obj_attributeNameOverride = obj.attributeNameOverride;
|
|
1909
|
+
const path_attributeNameOverride = path + '.attributeNameOverride';
|
|
1910
|
+
if (typeof obj_attributeNameOverride !== 'string') {
|
|
1911
|
+
return new TypeError('Expected "string" but received "' + typeof obj_attributeNameOverride + '" (at "' + path_attributeNameOverride + '")');
|
|
1912
|
+
}
|
|
1913
|
+
}
|
|
1893
1914
|
if (obj.attributePickList !== undefined) {
|
|
1894
1915
|
const obj_attributePickList = obj.attributePickList;
|
|
1895
1916
|
const path_attributePickList = path + '.attributePickList';
|
|
@@ -1935,6 +1956,13 @@ function validate$r(obj, path = 'ProductAttributeOutputRepresentation') {
|
|
|
1935
1956
|
return new TypeError('Expected "string" but received "' + typeof obj_description + '" (at "' + path_description + '")');
|
|
1936
1957
|
}
|
|
1937
1958
|
}
|
|
1959
|
+
if (obj.displayTypeOverride !== undefined) {
|
|
1960
|
+
const obj_displayTypeOverride = obj.displayTypeOverride;
|
|
1961
|
+
const path_displayTypeOverride = path + '.displayTypeOverride';
|
|
1962
|
+
if (typeof obj_displayTypeOverride !== 'string') {
|
|
1963
|
+
return new TypeError('Expected "string" but received "' + typeof obj_displayTypeOverride + '" (at "' + path_displayTypeOverride + '")');
|
|
1964
|
+
}
|
|
1965
|
+
}
|
|
1938
1966
|
if (obj.hidden !== undefined) {
|
|
1939
1967
|
const obj_hidden = obj.hidden;
|
|
1940
1968
|
const path_hidden = path + '.hidden';
|
|
@@ -2005,6 +2033,13 @@ function validate$r(obj, path = 'ProductAttributeOutputRepresentation') {
|
|
|
2005
2033
|
return new TypeError('Expected "string" but received "' + typeof obj_name + '" (at "' + path_name + '")');
|
|
2006
2034
|
}
|
|
2007
2035
|
}
|
|
2036
|
+
if (obj.sequence !== undefined) {
|
|
2037
|
+
const obj_sequence = obj.sequence;
|
|
2038
|
+
const path_sequence = path + '.sequence';
|
|
2039
|
+
if (typeof obj_sequence !== 'number' || (typeof obj_sequence === 'number' && Math.floor(obj_sequence) !== obj_sequence)) {
|
|
2040
|
+
return new TypeError('Expected "integer" but received "' + typeof obj_sequence + '" (at "' + path_sequence + '")');
|
|
2041
|
+
}
|
|
2042
|
+
}
|
|
2008
2043
|
if (obj.status !== undefined) {
|
|
2009
2044
|
const obj_status = obj.status;
|
|
2010
2045
|
const path_status = path + '.status';
|
|
@@ -2019,6 +2054,13 @@ function validate$r(obj, path = 'ProductAttributeOutputRepresentation') {
|
|
|
2019
2054
|
return new TypeError('Expected "string" but received "' + typeof obj_userValue + '" (at "' + path_userValue + '")');
|
|
2020
2055
|
}
|
|
2021
2056
|
}
|
|
2057
|
+
if (obj.valueDescription !== undefined) {
|
|
2058
|
+
const obj_valueDescription = obj.valueDescription;
|
|
2059
|
+
const path_valueDescription = path + '.valueDescription';
|
|
2060
|
+
if (typeof obj_valueDescription !== 'string') {
|
|
2061
|
+
return new TypeError('Expected "string" but received "' + typeof obj_valueDescription + '" (at "' + path_valueDescription + '")');
|
|
2062
|
+
}
|
|
2063
|
+
}
|
|
2022
2064
|
})();
|
|
2023
2065
|
return v_error === undefined ? null : v_error;
|
|
2024
2066
|
}
|
|
@@ -2034,6 +2076,11 @@ const select$g = function ProductAttributeOutputRepresentationSelect() {
|
|
|
2034
2076
|
kind: 'Scalar',
|
|
2035
2077
|
required: false
|
|
2036
2078
|
},
|
|
2079
|
+
{
|
|
2080
|
+
name: 'attributeNameOverride',
|
|
2081
|
+
kind: 'Scalar',
|
|
2082
|
+
required: false
|
|
2083
|
+
},
|
|
2037
2084
|
{
|
|
2038
2085
|
name: 'attributePickList',
|
|
2039
2086
|
kind: 'Object',
|
|
@@ -2065,6 +2112,11 @@ const select$g = function ProductAttributeOutputRepresentationSelect() {
|
|
|
2065
2112
|
kind: 'Scalar',
|
|
2066
2113
|
required: false
|
|
2067
2114
|
},
|
|
2115
|
+
{
|
|
2116
|
+
name: 'displayTypeOverride',
|
|
2117
|
+
kind: 'Scalar',
|
|
2118
|
+
required: false
|
|
2119
|
+
},
|
|
2068
2120
|
{
|
|
2069
2121
|
name: 'hidden',
|
|
2070
2122
|
kind: 'Scalar',
|
|
@@ -2115,6 +2167,11 @@ const select$g = function ProductAttributeOutputRepresentationSelect() {
|
|
|
2115
2167
|
kind: 'Scalar',
|
|
2116
2168
|
required: false
|
|
2117
2169
|
},
|
|
2170
|
+
{
|
|
2171
|
+
name: 'sequence',
|
|
2172
|
+
kind: 'Scalar',
|
|
2173
|
+
required: false
|
|
2174
|
+
},
|
|
2118
2175
|
{
|
|
2119
2176
|
name: 'status',
|
|
2120
2177
|
kind: 'Scalar',
|
|
@@ -2124,6 +2181,11 @@ const select$g = function ProductAttributeOutputRepresentationSelect() {
|
|
|
2124
2181
|
name: 'userValue',
|
|
2125
2182
|
kind: 'Scalar',
|
|
2126
2183
|
required: false
|
|
2184
|
+
},
|
|
2185
|
+
{
|
|
2186
|
+
name: 'valueDescription',
|
|
2187
|
+
kind: 'Scalar',
|
|
2188
|
+
required: false
|
|
2127
2189
|
}
|
|
2128
2190
|
]
|
|
2129
2191
|
};
|
|
@@ -2220,6 +2282,19 @@ function equals$a(existing, incoming) {
|
|
|
2220
2282
|
return false;
|
|
2221
2283
|
}
|
|
2222
2284
|
}
|
|
2285
|
+
const existing_sequence = existing.sequence;
|
|
2286
|
+
const incoming_sequence = incoming.sequence;
|
|
2287
|
+
// if at least one of these optionals is defined
|
|
2288
|
+
if (existing_sequence !== undefined || incoming_sequence !== undefined) {
|
|
2289
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
2290
|
+
// not equal
|
|
2291
|
+
if (existing_sequence === undefined || incoming_sequence === undefined) {
|
|
2292
|
+
return false;
|
|
2293
|
+
}
|
|
2294
|
+
if (!(existing_sequence === incoming_sequence)) {
|
|
2295
|
+
return false;
|
|
2296
|
+
}
|
|
2297
|
+
}
|
|
2223
2298
|
const existing_attributeCategoryId = existing.attributeCategoryId;
|
|
2224
2299
|
const incoming_attributeCategoryId = incoming.attributeCategoryId;
|
|
2225
2300
|
// if at least one of these optionals is defined
|
|
@@ -2233,6 +2308,19 @@ function equals$a(existing, incoming) {
|
|
|
2233
2308
|
return false;
|
|
2234
2309
|
}
|
|
2235
2310
|
}
|
|
2311
|
+
const existing_attributeNameOverride = existing.attributeNameOverride;
|
|
2312
|
+
const incoming_attributeNameOverride = incoming.attributeNameOverride;
|
|
2313
|
+
// if at least one of these optionals is defined
|
|
2314
|
+
if (existing_attributeNameOverride !== undefined || incoming_attributeNameOverride !== undefined) {
|
|
2315
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
2316
|
+
// not equal
|
|
2317
|
+
if (existing_attributeNameOverride === undefined || incoming_attributeNameOverride === undefined) {
|
|
2318
|
+
return false;
|
|
2319
|
+
}
|
|
2320
|
+
if (!(existing_attributeNameOverride === incoming_attributeNameOverride)) {
|
|
2321
|
+
return false;
|
|
2322
|
+
}
|
|
2323
|
+
}
|
|
2236
2324
|
const existing_code = existing.code;
|
|
2237
2325
|
const incoming_code = incoming.code;
|
|
2238
2326
|
// if at least one of these optionals is defined
|
|
@@ -2298,6 +2386,19 @@ function equals$a(existing, incoming) {
|
|
|
2298
2386
|
return false;
|
|
2299
2387
|
}
|
|
2300
2388
|
}
|
|
2389
|
+
const existing_displayTypeOverride = existing.displayTypeOverride;
|
|
2390
|
+
const incoming_displayTypeOverride = incoming.displayTypeOverride;
|
|
2391
|
+
// if at least one of these optionals is defined
|
|
2392
|
+
if (existing_displayTypeOverride !== undefined || incoming_displayTypeOverride !== undefined) {
|
|
2393
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
2394
|
+
// not equal
|
|
2395
|
+
if (existing_displayTypeOverride === undefined || incoming_displayTypeOverride === undefined) {
|
|
2396
|
+
return false;
|
|
2397
|
+
}
|
|
2398
|
+
if (!(existing_displayTypeOverride === incoming_displayTypeOverride)) {
|
|
2399
|
+
return false;
|
|
2400
|
+
}
|
|
2401
|
+
}
|
|
2301
2402
|
const existing_id = existing.id;
|
|
2302
2403
|
const incoming_id = incoming.id;
|
|
2303
2404
|
// if at least one of these optionals is defined
|
|
@@ -2363,6 +2464,19 @@ function equals$a(existing, incoming) {
|
|
|
2363
2464
|
return false;
|
|
2364
2465
|
}
|
|
2365
2466
|
}
|
|
2467
|
+
const existing_valueDescription = existing.valueDescription;
|
|
2468
|
+
const incoming_valueDescription = incoming.valueDescription;
|
|
2469
|
+
// if at least one of these optionals is defined
|
|
2470
|
+
if (existing_valueDescription !== undefined || incoming_valueDescription !== undefined) {
|
|
2471
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
2472
|
+
// not equal
|
|
2473
|
+
if (existing_valueDescription === undefined || incoming_valueDescription === undefined) {
|
|
2474
|
+
return false;
|
|
2475
|
+
}
|
|
2476
|
+
if (!(existing_valueDescription === incoming_valueDescription)) {
|
|
2477
|
+
return false;
|
|
2478
|
+
}
|
|
2479
|
+
}
|
|
2366
2480
|
const existing_attributePickList = existing.attributePickList;
|
|
2367
2481
|
const incoming_attributePickList = incoming.attributePickList;
|
|
2368
2482
|
// if at least one of these optionals is defined
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AttributePickListOutputRepresentation as AttributePickListOutputRepresentation_AttributePickListOutputRepresentation } from './AttributePickListOutputRepresentation';
|
|
2
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "6ff7eba66a298f44544aa43e1c59f15c";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: ProductAttributeOutputRepresentation, existing: ProductAttributeOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductAttributeOutputRepresentationNormalized;
|
|
@@ -17,6 +17,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
17
17
|
export interface ProductAttributeOutputRepresentationNormalized {
|
|
18
18
|
/** Attribute Category Id */
|
|
19
19
|
attributeCategoryId?: string;
|
|
20
|
+
/** overrided name of the attribute */
|
|
21
|
+
attributeNameOverride?: string;
|
|
20
22
|
/** Attribute picklist in product attribute */
|
|
21
23
|
attributePickList?: AttributePickListOutputRepresentation_AttributePickListOutputRepresentation;
|
|
22
24
|
/** Code of the attribute */
|
|
@@ -29,6 +31,8 @@ export interface ProductAttributeOutputRepresentationNormalized {
|
|
|
29
31
|
defaultValue?: string;
|
|
30
32
|
/** description of product attribute */
|
|
31
33
|
description?: string;
|
|
34
|
+
/** overrided display type of the attribute */
|
|
35
|
+
displayTypeOverride?: string;
|
|
32
36
|
/** Is true if attribute is hidden */
|
|
33
37
|
hidden?: boolean;
|
|
34
38
|
/** Id of product attribute */
|
|
@@ -49,10 +53,14 @@ export interface ProductAttributeOutputRepresentationNormalized {
|
|
|
49
53
|
label?: string;
|
|
50
54
|
/** name of product attribute */
|
|
51
55
|
name?: string;
|
|
56
|
+
/** Sequence of the attribute */
|
|
57
|
+
sequence?: number;
|
|
52
58
|
/** Status of product attribute - Active/InActive */
|
|
53
59
|
status?: string;
|
|
54
60
|
/** user value of the product attribute */
|
|
55
61
|
userValue?: string;
|
|
62
|
+
/** value description of the attribute */
|
|
63
|
+
valueDescription?: string;
|
|
56
64
|
}
|
|
57
65
|
/**
|
|
58
66
|
* Product Attributes output representation
|
|
@@ -62,12 +70,14 @@ export interface ProductAttributeOutputRepresentationNormalized {
|
|
|
62
70
|
*/
|
|
63
71
|
export interface ProductAttributeOutputRepresentation {
|
|
64
72
|
attributeCategoryId?: string;
|
|
73
|
+
attributeNameOverride?: string;
|
|
65
74
|
attributePickList?: AttributePickListOutputRepresentation_AttributePickListOutputRepresentation;
|
|
66
75
|
code?: string;
|
|
67
76
|
dataType?: string;
|
|
68
77
|
defaultHelpText?: string;
|
|
69
78
|
defaultValue?: string;
|
|
70
79
|
description?: string;
|
|
80
|
+
displayTypeOverride?: string;
|
|
71
81
|
hidden?: boolean;
|
|
72
82
|
id?: string;
|
|
73
83
|
isCloneable?: boolean;
|
|
@@ -78,6 +88,8 @@ export interface ProductAttributeOutputRepresentation {
|
|
|
78
88
|
isRequired?: boolean;
|
|
79
89
|
label?: string;
|
|
80
90
|
name?: string;
|
|
91
|
+
sequence?: number;
|
|
81
92
|
status?: string;
|
|
82
93
|
userValue?: string;
|
|
94
|
+
valueDescription?: string;
|
|
83
95
|
}
|
package/dist/es/es2018/types/src/generated/types/ProductClassificationOutputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "e73a03848a75cf55f2b9f04fb779ae07";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ProductClassificationOutputRepresentation, existing: ProductClassificationOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductClassificationOutputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ProductClassificationOutputRepresentationNormalized, incoming: ProductClassificationOutputRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ProductClassificationOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Product Classification Output Representation
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ProductClassificationOutputRepresentationNormalized {
|
|
17
|
+
/** id of the product class */
|
|
18
|
+
id?: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Product Classification Output Representation
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface ProductClassificationOutputRepresentation {
|
|
27
|
+
id?: string;
|
|
28
|
+
}
|
package/dist/es/es2018/types/src/generated/types/ProductComponentGroupOutputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { ProductDetailsOutputRepresentation as ProductDetailsOutputRepresentation_ProductDetailsOutputRepresentation } from './ProductDetailsOutputRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "c4dd38178ed6f5b44ae47626665ad72a";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ProductComponentGroupOutputRepresentation, existing: ProductComponentGroupOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductComponentGroupOutputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ProductComponentGroupOutputRepresentationNormalized, incoming: ProductComponentGroupOutputRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ProductComponentGroupOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Product Component Group Output Representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ProductComponentGroupOutputRepresentationNormalized {
|
|
18
|
+
/** code of the PCG */
|
|
19
|
+
code?: string;
|
|
20
|
+
/** child products of the PCG */
|
|
21
|
+
components?: Array<ProductDetailsOutputRepresentation_ProductDetailsOutputRepresentation>;
|
|
22
|
+
/** description of the PCG */
|
|
23
|
+
description?: string;
|
|
24
|
+
/** id of the PCG */
|
|
25
|
+
id?: string;
|
|
26
|
+
/** maximum Bundle Components */
|
|
27
|
+
maxBundleComponents?: number;
|
|
28
|
+
/** minimum Bundle Components */
|
|
29
|
+
minBundleComponents?: number;
|
|
30
|
+
/** name of the PCG */
|
|
31
|
+
name?: string;
|
|
32
|
+
/** id of the parent product */
|
|
33
|
+
parentProductId?: string;
|
|
34
|
+
/** sequence */
|
|
35
|
+
sequence?: number;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Product Component Group Output Representation
|
|
39
|
+
*
|
|
40
|
+
* Keys:
|
|
41
|
+
* (none)
|
|
42
|
+
*/
|
|
43
|
+
export interface ProductComponentGroupOutputRepresentation {
|
|
44
|
+
code?: string;
|
|
45
|
+
components?: Array<ProductDetailsOutputRepresentation_ProductDetailsOutputRepresentation>;
|
|
46
|
+
description?: string;
|
|
47
|
+
id?: string;
|
|
48
|
+
maxBundleComponents?: number;
|
|
49
|
+
minBundleComponents?: number;
|
|
50
|
+
name?: string;
|
|
51
|
+
parentProductId?: string;
|
|
52
|
+
sequence?: number;
|
|
53
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "b49c0ea8b4c1d5aaf10164cc67bac927";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: ProductDetailsInputRepresentation, existing: ProductDetailsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductDetailsInputRepresentationNormalized;
|
|
@@ -22,6 +22,8 @@ export interface ProductDetailsInputRepresentationNormalized {
|
|
|
22
22
|
correlationId?: string;
|
|
23
23
|
/** Id of the price Book. */
|
|
24
24
|
priceBookId: string;
|
|
25
|
+
/** PSM of the product. */
|
|
26
|
+
productSellingModelId?: string;
|
|
25
27
|
/** User context */
|
|
26
28
|
userContext?: {};
|
|
27
29
|
}
|
|
@@ -36,5 +38,6 @@ export interface ProductDetailsInputRepresentation {
|
|
|
36
38
|
catalogId: string;
|
|
37
39
|
correlationId?: string;
|
|
38
40
|
priceBookId: string;
|
|
41
|
+
productSellingModelId?: string;
|
|
39
42
|
userContext?: {};
|
|
40
43
|
}
|
|
@@ -2,9 +2,15 @@ import { AdditionalFieldsOutputRepresentation as AdditionalFieldsOutputRepresent
|
|
|
2
2
|
import { AttributeCategoryOutputRepresentation as AttributeCategoryOutputRepresentation_AttributeCategoryOutputRepresentation } from './AttributeCategoryOutputRepresentation';
|
|
3
3
|
import { ProductAttributeOutputRepresentation as ProductAttributeOutputRepresentation_ProductAttributeOutputRepresentation } from './ProductAttributeOutputRepresentation';
|
|
4
4
|
import { ProductPricesOutputRepresentation as ProductPricesOutputRepresentation_ProductPricesOutputRepresentation } from './ProductPricesOutputRepresentation';
|
|
5
|
+
import { ProductClassificationOutputRepresentation as ProductClassificationOutputRepresentation_ProductClassificationOutputRepresentation } from './ProductClassificationOutputRepresentation';
|
|
6
|
+
import { ProductComponentGroupOutputRepresentation as ProductComponentGroupOutputRepresentation_ProductComponentGroupOutputRepresentation } from './ProductComponentGroupOutputRepresentation';
|
|
5
7
|
import { ProductQuantityOutputRepresentation as ProductQuantityOutputRepresentation_ProductQuantityOutputRepresentation } from './ProductQuantityOutputRepresentation';
|
|
8
|
+
import { ProductRelatedComponentOutputRepresentation as ProductRelatedComponentOutputRepresentation_ProductRelatedComponentOutputRepresentation } from './ProductRelatedComponentOutputRepresentation';
|
|
9
|
+
import { ProductSellingModelOptionOutputRepresentation as ProductSellingModelOptionOutputRepresentation_ProductSellingModelOptionOutputRepresentation } from './ProductSellingModelOptionOutputRepresentation';
|
|
10
|
+
import { ProductSpecificationTypeOutputRepresentation as ProductSpecificationTypeOutputRepresentation_ProductSpecificationTypeOutputRepresentation } from './ProductSpecificationTypeOutputRepresentation';
|
|
11
|
+
import { QualificationContextOutputRepresentation as QualificationContextOutputRepresentation_QualificationContextOutputRepresentation } from './QualificationContextOutputRepresentation';
|
|
6
12
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
7
|
-
export declare const VERSION = "
|
|
13
|
+
export declare const VERSION = "8e96b594a6320f83f607b40aaad03f13";
|
|
8
14
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
9
15
|
export declare const RepresentationType: string;
|
|
10
16
|
export declare function normalize(input: ProductDetailsOutputRepresentation, existing: ProductDetailsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductDetailsOutputRepresentationNormalized;
|
|
@@ -25,25 +31,55 @@ export interface ProductDetailsOutputRepresentationNormalized {
|
|
|
25
31
|
attributeCategories?: Array<AttributeCategoryOutputRepresentation_AttributeCategoryOutputRepresentation>;
|
|
26
32
|
/** List of attributes in the product */
|
|
27
33
|
attributes?: Array<ProductAttributeOutputRepresentation_ProductAttributeOutputRepresentation>;
|
|
34
|
+
/** availabilityDate of the product */
|
|
35
|
+
availabilityDate?: string;
|
|
28
36
|
/** List of Child products */
|
|
29
37
|
childProducts?: Array<ProductDetailsOutputRepresentation>;
|
|
38
|
+
/** ConfigureDuringSale of the product */
|
|
39
|
+
configureDuringSale?: string;
|
|
30
40
|
/** Description of the product */
|
|
31
41
|
description?: string;
|
|
42
|
+
/** discontinuedDate of the product */
|
|
43
|
+
discontinuedDate?: string;
|
|
32
44
|
/** DisplayName of the product */
|
|
33
45
|
displayName?: string;
|
|
46
|
+
/** displayUrl of the product */
|
|
47
|
+
displayUrl?: string;
|
|
48
|
+
/** endOfLifeDate of the product */
|
|
49
|
+
endOfLifeDate?: string;
|
|
34
50
|
/** Id of the product */
|
|
35
51
|
id?: string;
|
|
52
|
+
/** Is the product Active */
|
|
53
|
+
isActive?: boolean;
|
|
54
|
+
/** Is the product Assetizable */
|
|
55
|
+
isAssetizable?: boolean;
|
|
36
56
|
/** Is Component required of a product */
|
|
37
57
|
isComponentRequired?: boolean;
|
|
38
58
|
/** Is the product a Default Component */
|
|
39
59
|
isDefaultComponent?: boolean;
|
|
40
60
|
/** Is Quantity of product editable */
|
|
41
61
|
isQuantityEditable?: boolean;
|
|
62
|
+
/** Is the product Sold Only With Other Products */
|
|
63
|
+
isSoldOnlyWithOtherProds?: boolean;
|
|
42
64
|
/** Name of the product */
|
|
43
65
|
name?: string;
|
|
66
|
+
/** nodeType of the product */
|
|
67
|
+
nodeType?: string;
|
|
44
68
|
/** List of prices of the product */
|
|
45
69
|
prices?: Array<ProductPricesOutputRepresentation_ProductPricesOutputRepresentation>;
|
|
70
|
+
productClassification?: ProductClassificationOutputRepresentation_ProductClassificationOutputRepresentation;
|
|
71
|
+
/** Code of the product */
|
|
72
|
+
productCode?: string;
|
|
73
|
+
/** List of PCG in a product */
|
|
74
|
+
productComponentGroups?: Array<ProductComponentGroupOutputRepresentation_ProductComponentGroupOutputRepresentation>;
|
|
46
75
|
productQuantity?: ProductQuantityOutputRepresentation_ProductQuantityOutputRepresentation;
|
|
76
|
+
productRelatedComponent?: ProductRelatedComponentOutputRepresentation_ProductRelatedComponentOutputRepresentation;
|
|
77
|
+
/** PSMs of a product */
|
|
78
|
+
productSellingModelOptions?: Array<ProductSellingModelOptionOutputRepresentation_ProductSellingModelOptionOutputRepresentation>;
|
|
79
|
+
productSpecificationType?: ProductSpecificationTypeOutputRepresentation_ProductSpecificationTypeOutputRepresentation;
|
|
80
|
+
/** Type of the product */
|
|
81
|
+
productType?: string;
|
|
82
|
+
qualificationContext?: QualificationContextOutputRepresentation_QualificationContextOutputRepresentation;
|
|
47
83
|
/** quantity of the product */
|
|
48
84
|
quantity?: string;
|
|
49
85
|
/** Status of the product */
|
|
@@ -59,16 +95,33 @@ export interface ProductDetailsOutputRepresentation {
|
|
|
59
95
|
additionalFields?: Array<AdditionalFieldsOutputRepresentation_AdditionalFieldsOutputRepresentation>;
|
|
60
96
|
attributeCategories?: Array<AttributeCategoryOutputRepresentation_AttributeCategoryOutputRepresentation>;
|
|
61
97
|
attributes?: Array<ProductAttributeOutputRepresentation_ProductAttributeOutputRepresentation>;
|
|
98
|
+
availabilityDate?: string;
|
|
62
99
|
childProducts?: Array<ProductDetailsOutputRepresentation>;
|
|
100
|
+
configureDuringSale?: string;
|
|
63
101
|
description?: string;
|
|
102
|
+
discontinuedDate?: string;
|
|
64
103
|
displayName?: string;
|
|
104
|
+
displayUrl?: string;
|
|
105
|
+
endOfLifeDate?: string;
|
|
65
106
|
id?: string;
|
|
107
|
+
isActive?: boolean;
|
|
108
|
+
isAssetizable?: boolean;
|
|
66
109
|
isComponentRequired?: boolean;
|
|
67
110
|
isDefaultComponent?: boolean;
|
|
68
111
|
isQuantityEditable?: boolean;
|
|
112
|
+
isSoldOnlyWithOtherProds?: boolean;
|
|
69
113
|
name?: string;
|
|
114
|
+
nodeType?: string;
|
|
70
115
|
prices?: Array<ProductPricesOutputRepresentation_ProductPricesOutputRepresentation>;
|
|
116
|
+
productClassification?: ProductClassificationOutputRepresentation_ProductClassificationOutputRepresentation;
|
|
117
|
+
productCode?: string;
|
|
118
|
+
productComponentGroups?: Array<ProductComponentGroupOutputRepresentation_ProductComponentGroupOutputRepresentation>;
|
|
71
119
|
productQuantity?: ProductQuantityOutputRepresentation_ProductQuantityOutputRepresentation;
|
|
120
|
+
productRelatedComponent?: ProductRelatedComponentOutputRepresentation_ProductRelatedComponentOutputRepresentation;
|
|
121
|
+
productSellingModelOptions?: Array<ProductSellingModelOptionOutputRepresentation_ProductSellingModelOptionOutputRepresentation>;
|
|
122
|
+
productSpecificationType?: ProductSpecificationTypeOutputRepresentation_ProductSpecificationTypeOutputRepresentation;
|
|
123
|
+
productType?: string;
|
|
124
|
+
qualificationContext?: QualificationContextOutputRepresentation_QualificationContextOutputRepresentation;
|
|
72
125
|
quantity?: string;
|
|
73
126
|
status?: string;
|
|
74
127
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "94e9ec1817b1b756a7a0902f6ff56fac";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: ProductListInputRepresentation, existing: ProductListInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductListInputRepresentationNormalized;
|
|
@@ -22,6 +22,8 @@ export interface ProductListInputRepresentationNormalized {
|
|
|
22
22
|
categoryId?: string;
|
|
23
23
|
/** CorrelationId */
|
|
24
24
|
correlationId?: string;
|
|
25
|
+
/** cursor for pagination */
|
|
26
|
+
cursor?: string;
|
|
25
27
|
/** Filters */
|
|
26
28
|
filter?: {};
|
|
27
29
|
/** Number of item count you want in the response */
|
|
@@ -46,6 +48,7 @@ export interface ProductListInputRepresentation {
|
|
|
46
48
|
catalogId: string;
|
|
47
49
|
categoryId?: string;
|
|
48
50
|
correlationId?: string;
|
|
51
|
+
cursor?: string;
|
|
49
52
|
filter?: {};
|
|
50
53
|
limit?: number;
|
|
51
54
|
offset?: number;
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import { AdditionalFieldsOutputRepresentation as AdditionalFieldsOutputRepresentation_AdditionalFieldsOutputRepresentation } from './AdditionalFieldsOutputRepresentation';
|
|
2
2
|
import { AttributeCategoryOutputRepresentation as AttributeCategoryOutputRepresentation_AttributeCategoryOutputRepresentation } from './AttributeCategoryOutputRepresentation';
|
|
3
3
|
import { ProductPricesOutputRepresentation as ProductPricesOutputRepresentation_ProductPricesOutputRepresentation } from './ProductPricesOutputRepresentation';
|
|
4
|
+
import { ProductClassificationOutputRepresentation as ProductClassificationOutputRepresentation_ProductClassificationOutputRepresentation } from './ProductClassificationOutputRepresentation';
|
|
5
|
+
import { ProductComponentGroupOutputRepresentation as ProductComponentGroupOutputRepresentation_ProductComponentGroupOutputRepresentation } from './ProductComponentGroupOutputRepresentation';
|
|
4
6
|
import { ProductQuantityOutputRepresentation as ProductQuantityOutputRepresentation_ProductQuantityOutputRepresentation } from './ProductQuantityOutputRepresentation';
|
|
7
|
+
import { ProductRelatedComponentOutputRepresentation as ProductRelatedComponentOutputRepresentation_ProductRelatedComponentOutputRepresentation } from './ProductRelatedComponentOutputRepresentation';
|
|
8
|
+
import { ProductSellingModelOptionOutputRepresentation as ProductSellingModelOptionOutputRepresentation_ProductSellingModelOptionOutputRepresentation } from './ProductSellingModelOptionOutputRepresentation';
|
|
9
|
+
import { ProductSpecificationTypeOutputRepresentation as ProductSpecificationTypeOutputRepresentation_ProductSpecificationTypeOutputRepresentation } from './ProductSpecificationTypeOutputRepresentation';
|
|
10
|
+
import { QualificationContextOutputRepresentation as QualificationContextOutputRepresentation_QualificationContextOutputRepresentation } from './QualificationContextOutputRepresentation';
|
|
5
11
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
6
|
-
export declare const VERSION = "
|
|
12
|
+
export declare const VERSION = "14bdd3583c55a7eea3567fb61d0cefaa";
|
|
7
13
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
8
14
|
export declare const RepresentationType: string;
|
|
9
15
|
export declare function normalize(input: ProductListOutputRepresentation, existing: ProductListOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductListOutputRepresentationNormalized;
|
|
@@ -22,23 +28,53 @@ export interface ProductListOutputRepresentationNormalized {
|
|
|
22
28
|
additionalFields?: Array<AdditionalFieldsOutputRepresentation_AdditionalFieldsOutputRepresentation>;
|
|
23
29
|
/** List of attribute categories in a product */
|
|
24
30
|
attributeCategories?: Array<AttributeCategoryOutputRepresentation_AttributeCategoryOutputRepresentation>;
|
|
31
|
+
/** availabilityDate of the product */
|
|
32
|
+
availabilityDate?: string;
|
|
25
33
|
/** List of Child Products */
|
|
26
34
|
childProducts?: Array<ProductListOutputRepresentation>;
|
|
35
|
+
/** ConfigureDuringSale of the product */
|
|
36
|
+
configureDuringSale?: string;
|
|
27
37
|
/** Description of the product */
|
|
28
38
|
description?: string;
|
|
39
|
+
/** discontinuedDate of the product */
|
|
40
|
+
discontinuedDate?: string;
|
|
41
|
+
/** displayUrl of the product */
|
|
42
|
+
displayUrl?: string;
|
|
43
|
+
/** endOfLifeDate of the product */
|
|
44
|
+
endOfLifeDate?: string;
|
|
29
45
|
/** Id of the product */
|
|
30
46
|
id?: string;
|
|
47
|
+
/** Is the product Active */
|
|
48
|
+
isActive?: boolean;
|
|
49
|
+
/** Is the product Assetizable */
|
|
50
|
+
isAssetizable?: boolean;
|
|
31
51
|
/** Is Component required of a product */
|
|
32
52
|
isComponentRequired?: boolean;
|
|
33
53
|
/** Is the product a Default Component */
|
|
34
54
|
isDefaultComponent?: boolean;
|
|
35
55
|
/** Is Quantity of product editable */
|
|
36
56
|
isQuantityEditable?: boolean;
|
|
57
|
+
/** Is the product Sold Only With Other Products */
|
|
58
|
+
isSoldOnlyWithOtherProds?: boolean;
|
|
37
59
|
/** Name of the product */
|
|
38
60
|
name?: string;
|
|
61
|
+
/** nodeType of the product */
|
|
62
|
+
nodeType?: string;
|
|
39
63
|
/** List of prices of the product */
|
|
40
64
|
prices?: Array<ProductPricesOutputRepresentation_ProductPricesOutputRepresentation>;
|
|
65
|
+
productClassification?: ProductClassificationOutputRepresentation_ProductClassificationOutputRepresentation;
|
|
66
|
+
/** Code of the product */
|
|
67
|
+
productCode?: string;
|
|
68
|
+
/** List of PCG in a product */
|
|
69
|
+
productComponentGroups?: Array<ProductComponentGroupOutputRepresentation_ProductComponentGroupOutputRepresentation>;
|
|
41
70
|
productQuantity?: ProductQuantityOutputRepresentation_ProductQuantityOutputRepresentation;
|
|
71
|
+
productRelatedComponent?: ProductRelatedComponentOutputRepresentation_ProductRelatedComponentOutputRepresentation;
|
|
72
|
+
/** PSMs of a product */
|
|
73
|
+
productSellingModelOptions?: Array<ProductSellingModelOptionOutputRepresentation_ProductSellingModelOptionOutputRepresentation>;
|
|
74
|
+
productSpecificationType?: ProductSpecificationTypeOutputRepresentation_ProductSpecificationTypeOutputRepresentation;
|
|
75
|
+
/** Type of the product */
|
|
76
|
+
productType?: string;
|
|
77
|
+
qualificationContext?: QualificationContextOutputRepresentation_QualificationContextOutputRepresentation;
|
|
42
78
|
/** Status of the product */
|
|
43
79
|
status?: string;
|
|
44
80
|
}
|
|
@@ -51,14 +87,31 @@ export interface ProductListOutputRepresentationNormalized {
|
|
|
51
87
|
export interface ProductListOutputRepresentation {
|
|
52
88
|
additionalFields?: Array<AdditionalFieldsOutputRepresentation_AdditionalFieldsOutputRepresentation>;
|
|
53
89
|
attributeCategories?: Array<AttributeCategoryOutputRepresentation_AttributeCategoryOutputRepresentation>;
|
|
90
|
+
availabilityDate?: string;
|
|
54
91
|
childProducts?: Array<ProductListOutputRepresentation>;
|
|
92
|
+
configureDuringSale?: string;
|
|
55
93
|
description?: string;
|
|
94
|
+
discontinuedDate?: string;
|
|
95
|
+
displayUrl?: string;
|
|
96
|
+
endOfLifeDate?: string;
|
|
56
97
|
id?: string;
|
|
98
|
+
isActive?: boolean;
|
|
99
|
+
isAssetizable?: boolean;
|
|
57
100
|
isComponentRequired?: boolean;
|
|
58
101
|
isDefaultComponent?: boolean;
|
|
59
102
|
isQuantityEditable?: boolean;
|
|
103
|
+
isSoldOnlyWithOtherProds?: boolean;
|
|
60
104
|
name?: string;
|
|
105
|
+
nodeType?: string;
|
|
61
106
|
prices?: Array<ProductPricesOutputRepresentation_ProductPricesOutputRepresentation>;
|
|
107
|
+
productClassification?: ProductClassificationOutputRepresentation_ProductClassificationOutputRepresentation;
|
|
108
|
+
productCode?: string;
|
|
109
|
+
productComponentGroups?: Array<ProductComponentGroupOutputRepresentation_ProductComponentGroupOutputRepresentation>;
|
|
62
110
|
productQuantity?: ProductQuantityOutputRepresentation_ProductQuantityOutputRepresentation;
|
|
111
|
+
productRelatedComponent?: ProductRelatedComponentOutputRepresentation_ProductRelatedComponentOutputRepresentation;
|
|
112
|
+
productSellingModelOptions?: Array<ProductSellingModelOptionOutputRepresentation_ProductSellingModelOptionOutputRepresentation>;
|
|
113
|
+
productSpecificationType?: ProductSpecificationTypeOutputRepresentation_ProductSpecificationTypeOutputRepresentation;
|
|
114
|
+
productType?: string;
|
|
115
|
+
qualificationContext?: QualificationContextOutputRepresentation_QualificationContextOutputRepresentation;
|
|
63
116
|
status?: string;
|
|
64
117
|
}
|