@salesforce/lds-adapters-commerce-catalog 1.124.1 → 1.124.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.
- package/dist/es/es2018/commerce-catalog.js +923 -923
- package/dist/{types → es/es2018/types}/src/generated/adapters/adapter-utils.d.ts +66 -66
- package/dist/{types → es/es2018/types}/src/generated/adapters/getProduct.d.ts +34 -34
- package/dist/{types → es/es2018/types}/src/generated/adapters/getProductCategoryPath.d.ts +27 -27
- package/dist/{types → es/es2018/types}/src/generated/artifacts/main.d.ts +2 -2
- package/dist/{types → es/es2018/types}/src/generated/artifacts/sfdc.d.ts +5 -5
- package/dist/{types → es/es2018/types}/src/generated/resources/getCommerceWebstoresProductCategoriesByProductCategoryIdAndWebstoreId.d.ts +23 -23
- package/dist/{types → es/es2018/types}/src/generated/resources/getCommerceWebstoresProductCategoryPathProductCategoriesByProductCategoryIdAndWebstoreId.d.ts +16 -16
- package/dist/{types → es/es2018/types}/src/generated/resources/getCommerceWebstoresProductsByProductIdAndWebstoreId.d.ts +25 -25
- package/dist/{types → es/es2018/types}/src/generated/types/ProductCategoryDetailRepresentation.d.ts +45 -45
- package/dist/{types → es/es2018/types}/src/generated/types/ProductCategoryMediaGroupRepresentation.d.ts +42 -42
- package/dist/{types → es/es2018/types}/src/generated/types/ProductCategoryMediaRepresentation.d.ts +47 -47
- package/dist/{types → es/es2018/types}/src/generated/types/ProductCategoryPathRepresentation.d.ts +30 -30
- package/dist/{types → es/es2018/types}/src/generated/types/ProductCategoryRepresentation.d.ts +35 -35
- package/dist/{types → es/es2018/types}/src/generated/types/ProductDetailRepresentation.d.ts +50 -50
- package/dist/{types → es/es2018/types}/src/generated/types/ProductEntitlementRepresentation.d.ts +29 -29
- package/dist/{types → es/es2018/types}/src/generated/types/ProductMediaContentDocumentRepresentation.d.ts +41 -41
- package/dist/{types → es/es2018/types}/src/generated/types/ProductMediaGroupRepresentation.d.ts +42 -42
- package/dist/{types → es/es2018/types}/src/generated/types/ProductMediaRepresentation.d.ts +47 -47
- package/dist/{types → es/es2018/types}/src/generated/types/type-utils.d.ts +39 -39
- package/package.json +3 -3
- package/sfdc/index.d.ts +1 -1
- package/sfdc/index.js +951 -951
- package/dist/umd/es2018/commerce-catalog.js +0 -965
- package/dist/umd/es5/commerce-catalog.js +0 -976
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
import { ProductCategoryMediaRepresentation as ProductCategoryMediaRepresentation_ProductCategoryMediaRepresentation } from './ProductCategoryMediaRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "0be6b6b4fbdb1a888416e648e1be770f";
|
|
4
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
-
export declare const RepresentationType: string;
|
|
6
|
-
export declare function normalize(input: ProductCategoryMediaGroupRepresentation, existing: ProductCategoryMediaGroupRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductCategoryMediaGroupRepresentationNormalized;
|
|
7
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
-
export declare function equals(existing: ProductCategoryMediaGroupRepresentationNormalized, incoming: ProductCategoryMediaGroupRepresentationNormalized): boolean;
|
|
9
|
-
export declare function deepFreeze(input: ProductCategoryMediaGroupRepresentation): void;
|
|
10
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductCategoryMediaGroupRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
-
/**
|
|
13
|
-
* Representation of a media group associated with a product category
|
|
14
|
-
*
|
|
15
|
-
* Keys:
|
|
16
|
-
* (none)
|
|
17
|
-
*/
|
|
18
|
-
export interface ProductCategoryMediaGroupRepresentationNormalized {
|
|
19
|
-
/** API name of the product category media group */
|
|
20
|
-
developerName: string;
|
|
21
|
-
/** ID of the product category media group */
|
|
22
|
-
id: string;
|
|
23
|
-
/** List of media objects inside a product category media group */
|
|
24
|
-
mediaItems: Array<ProductCategoryMediaRepresentation_ProductCategoryMediaRepresentation>;
|
|
25
|
-
/** Name of the product category media group */
|
|
26
|
-
name: string;
|
|
27
|
-
/** Usage type of media items inside a product category media group */
|
|
28
|
-
usageType: string;
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* Representation of a media group associated with a product category
|
|
32
|
-
*
|
|
33
|
-
* Keys:
|
|
34
|
-
* (none)
|
|
35
|
-
*/
|
|
36
|
-
export interface ProductCategoryMediaGroupRepresentation {
|
|
37
|
-
developerName: string;
|
|
38
|
-
id: string;
|
|
39
|
-
mediaItems: Array<ProductCategoryMediaRepresentation_ProductCategoryMediaRepresentation>;
|
|
40
|
-
name: string;
|
|
41
|
-
usageType: string;
|
|
42
|
-
}
|
|
1
|
+
import { ProductCategoryMediaRepresentation as ProductCategoryMediaRepresentation_ProductCategoryMediaRepresentation } from './ProductCategoryMediaRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "0be6b6b4fbdb1a888416e648e1be770f";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ProductCategoryMediaGroupRepresentation, existing: ProductCategoryMediaGroupRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductCategoryMediaGroupRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ProductCategoryMediaGroupRepresentationNormalized, incoming: ProductCategoryMediaGroupRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: ProductCategoryMediaGroupRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductCategoryMediaGroupRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Representation of a media group associated with a product category
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ProductCategoryMediaGroupRepresentationNormalized {
|
|
19
|
+
/** API name of the product category media group */
|
|
20
|
+
developerName: string;
|
|
21
|
+
/** ID of the product category media group */
|
|
22
|
+
id: string;
|
|
23
|
+
/** List of media objects inside a product category media group */
|
|
24
|
+
mediaItems: Array<ProductCategoryMediaRepresentation_ProductCategoryMediaRepresentation>;
|
|
25
|
+
/** Name of the product category media group */
|
|
26
|
+
name: string;
|
|
27
|
+
/** Usage type of media items inside a product category media group */
|
|
28
|
+
usageType: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Representation of a media group associated with a product category
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* (none)
|
|
35
|
+
*/
|
|
36
|
+
export interface ProductCategoryMediaGroupRepresentation {
|
|
37
|
+
developerName: string;
|
|
38
|
+
id: string;
|
|
39
|
+
mediaItems: Array<ProductCategoryMediaRepresentation_ProductCategoryMediaRepresentation>;
|
|
40
|
+
name: string;
|
|
41
|
+
usageType: string;
|
|
42
|
+
}
|
package/dist/{types → es/es2018/types}/src/generated/types/ProductCategoryMediaRepresentation.d.ts
RENAMED
|
@@ -1,47 +1,47 @@
|
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "8eeed761238c3bcd733c536a5bbec529";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: ProductCategoryMediaRepresentation, existing: ProductCategoryMediaRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductCategoryMediaRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: ProductCategoryMediaRepresentationNormalized, incoming: ProductCategoryMediaRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: ProductCategoryMediaRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductCategoryMediaRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Representation of a media associated with a product category
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface ProductCategoryMediaRepresentationNormalized {
|
|
18
|
-
/** Alternative text for the product category media */
|
|
19
|
-
alternateText: string | null;
|
|
20
|
-
/** Content document that represents the product category media */
|
|
21
|
-
contentVersionId: string | null;
|
|
22
|
-
/** ID of the product category image */
|
|
23
|
-
id: string | null;
|
|
24
|
-
/** Type of the product category media */
|
|
25
|
-
mediaType: string;
|
|
26
|
-
/** Sort oder of a media item inside a media group */
|
|
27
|
-
sortOrder: number;
|
|
28
|
-
/** Title of the product category media */
|
|
29
|
-
title: string;
|
|
30
|
-
/** URL of the product category media */
|
|
31
|
-
url: string;
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* Representation of a media associated with a product category
|
|
35
|
-
*
|
|
36
|
-
* Keys:
|
|
37
|
-
* (none)
|
|
38
|
-
*/
|
|
39
|
-
export interface ProductCategoryMediaRepresentation {
|
|
40
|
-
alternateText: string | null;
|
|
41
|
-
contentVersionId: string | null;
|
|
42
|
-
id: string | null;
|
|
43
|
-
mediaType: string;
|
|
44
|
-
sortOrder: number;
|
|
45
|
-
title: string;
|
|
46
|
-
url: string;
|
|
47
|
-
}
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "8eeed761238c3bcd733c536a5bbec529";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ProductCategoryMediaRepresentation, existing: ProductCategoryMediaRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductCategoryMediaRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ProductCategoryMediaRepresentationNormalized, incoming: ProductCategoryMediaRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ProductCategoryMediaRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductCategoryMediaRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Representation of a media associated with a product category
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ProductCategoryMediaRepresentationNormalized {
|
|
18
|
+
/** Alternative text for the product category media */
|
|
19
|
+
alternateText: string | null;
|
|
20
|
+
/** Content document that represents the product category media */
|
|
21
|
+
contentVersionId: string | null;
|
|
22
|
+
/** ID of the product category image */
|
|
23
|
+
id: string | null;
|
|
24
|
+
/** Type of the product category media */
|
|
25
|
+
mediaType: string;
|
|
26
|
+
/** Sort oder of a media item inside a media group */
|
|
27
|
+
sortOrder: number;
|
|
28
|
+
/** Title of the product category media */
|
|
29
|
+
title: string;
|
|
30
|
+
/** URL of the product category media */
|
|
31
|
+
url: string;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Representation of a media associated with a product category
|
|
35
|
+
*
|
|
36
|
+
* Keys:
|
|
37
|
+
* (none)
|
|
38
|
+
*/
|
|
39
|
+
export interface ProductCategoryMediaRepresentation {
|
|
40
|
+
alternateText: string | null;
|
|
41
|
+
contentVersionId: string | null;
|
|
42
|
+
id: string | null;
|
|
43
|
+
mediaType: string;
|
|
44
|
+
sortOrder: number;
|
|
45
|
+
title: string;
|
|
46
|
+
url: string;
|
|
47
|
+
}
|
package/dist/{types → es/es2018/types}/src/generated/types/ProductCategoryPathRepresentation.d.ts
RENAMED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import { ProductCategoryRepresentation as ProductCategoryRepresentation_ProductCategoryRepresentation } from './ProductCategoryRepresentation';
|
|
2
|
-
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "931ade08fb09ff2c63a3cbfcd5f9a73a";
|
|
4
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
-
export declare const RepresentationType: string;
|
|
6
|
-
export declare function normalize(input: ProductCategoryPathRepresentation, existing: ProductCategoryPathRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductCategoryPathRepresentationNormalized;
|
|
7
|
-
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
8
|
-
export declare function equals(existing: ProductCategoryPathRepresentationNormalized, incoming: ProductCategoryPathRepresentationNormalized): boolean;
|
|
9
|
-
export declare function deepFreeze(input: ProductCategoryPathRepresentation): void;
|
|
10
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductCategoryPathRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
-
/**
|
|
13
|
-
* Wrapper containing the path for a category.
|
|
14
|
-
*
|
|
15
|
-
* Keys:
|
|
16
|
-
* (none)
|
|
17
|
-
*/
|
|
18
|
-
export interface ProductCategoryPathRepresentationNormalized {
|
|
19
|
-
/** List of categories. */
|
|
20
|
-
path: Array<ProductCategoryRepresentation_ProductCategoryRepresentation>;
|
|
21
|
-
}
|
|
22
|
-
/**
|
|
23
|
-
* Wrapper containing the path for a category.
|
|
24
|
-
*
|
|
25
|
-
* Keys:
|
|
26
|
-
* (none)
|
|
27
|
-
*/
|
|
28
|
-
export interface ProductCategoryPathRepresentation {
|
|
29
|
-
path: Array<ProductCategoryRepresentation_ProductCategoryRepresentation>;
|
|
30
|
-
}
|
|
1
|
+
import { ProductCategoryRepresentation as ProductCategoryRepresentation_ProductCategoryRepresentation } from './ProductCategoryRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "931ade08fb09ff2c63a3cbfcd5f9a73a";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ProductCategoryPathRepresentation, existing: ProductCategoryPathRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductCategoryPathRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
8
|
+
export declare function equals(existing: ProductCategoryPathRepresentationNormalized, incoming: ProductCategoryPathRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: ProductCategoryPathRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductCategoryPathRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Wrapper containing the path for a category.
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ProductCategoryPathRepresentationNormalized {
|
|
19
|
+
/** List of categories. */
|
|
20
|
+
path: Array<ProductCategoryRepresentation_ProductCategoryRepresentation>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Wrapper containing the path for a category.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ProductCategoryPathRepresentation {
|
|
29
|
+
path: Array<ProductCategoryRepresentation_ProductCategoryRepresentation>;
|
|
30
|
+
}
|
package/dist/{types → es/es2018/types}/src/generated/types/ProductCategoryRepresentation.d.ts
RENAMED
|
@@ -1,35 +1,35 @@
|
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "ad90431d8198e060349f28eb7c9095e6";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: ProductCategoryRepresentation, existing: ProductCategoryRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductCategoryRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: ProductCategoryRepresentationNormalized, incoming: ProductCategoryRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: ProductCategoryRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductCategoryRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Representation for basic category data.
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface ProductCategoryRepresentationNormalized {
|
|
18
|
-
/** Description of the category */
|
|
19
|
-
description: string | null;
|
|
20
|
-
/** ID of the category */
|
|
21
|
-
id: string | null;
|
|
22
|
-
/** Name of the category */
|
|
23
|
-
name: string;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* Representation for basic category data.
|
|
27
|
-
*
|
|
28
|
-
* Keys:
|
|
29
|
-
* (none)
|
|
30
|
-
*/
|
|
31
|
-
export interface ProductCategoryRepresentation {
|
|
32
|
-
description: string | null;
|
|
33
|
-
id: string | null;
|
|
34
|
-
name: string;
|
|
35
|
-
}
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "ad90431d8198e060349f28eb7c9095e6";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ProductCategoryRepresentation, existing: ProductCategoryRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductCategoryRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ProductCategoryRepresentationNormalized, incoming: ProductCategoryRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ProductCategoryRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductCategoryRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Representation for basic category data.
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ProductCategoryRepresentationNormalized {
|
|
18
|
+
/** Description of the category */
|
|
19
|
+
description: string | null;
|
|
20
|
+
/** ID of the category */
|
|
21
|
+
id: string | null;
|
|
22
|
+
/** Name of the category */
|
|
23
|
+
name: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Representation for basic category data.
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface ProductCategoryRepresentation {
|
|
32
|
+
description: string | null;
|
|
33
|
+
id: string | null;
|
|
34
|
+
name: string;
|
|
35
|
+
}
|
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
import { ProductMediaRepresentation as ProductMediaRepresentation_ProductMediaRepresentation } from './ProductMediaRepresentation';
|
|
2
|
-
import { ProductEntitlementRepresentation as ProductEntitlementRepresentation_ProductEntitlementRepresentation } from './ProductEntitlementRepresentation';
|
|
3
|
-
import { ProductMediaGroupRepresentation as ProductMediaGroupRepresentation_ProductMediaGroupRepresentation } from './ProductMediaGroupRepresentation';
|
|
4
|
-
import { ProductCategoryPathRepresentation as ProductCategoryPathRepresentation_ProductCategoryPathRepresentation } from './ProductCategoryPathRepresentation';
|
|
5
|
-
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
6
|
-
export declare const VERSION = "aeb68d0cbb5b505d40ca2f6997bb9194";
|
|
7
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
8
|
-
export declare const RepresentationType: string;
|
|
9
|
-
export declare function normalize(input: ProductDetailRepresentation, existing: ProductDetailRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductDetailRepresentationNormalized;
|
|
10
|
-
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
11
|
-
export declare function equals(existing: ProductDetailRepresentationNormalized, incoming: ProductDetailRepresentationNormalized): boolean;
|
|
12
|
-
export declare function deepFreeze(input: ProductDetailRepresentation): void;
|
|
13
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
14
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductDetailRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
15
|
-
/**
|
|
16
|
-
* Representation for the details of a single product
|
|
17
|
-
*
|
|
18
|
-
* Keys:
|
|
19
|
-
* (none)
|
|
20
|
-
*/
|
|
21
|
-
export interface ProductDetailRepresentationNormalized {
|
|
22
|
-
defaultImage: ProductMediaRepresentation_ProductMediaRepresentation;
|
|
23
|
-
entitlement: ProductEntitlementRepresentation_ProductEntitlementRepresentation;
|
|
24
|
-
/** List of fields belonging to the product */
|
|
25
|
-
fields: {
|
|
26
|
-
[key: string]: string | null;
|
|
27
|
-
};
|
|
28
|
-
/** ID of the product */
|
|
29
|
-
id: string;
|
|
30
|
-
/** List of media groups of the product */
|
|
31
|
-
mediaGroups: Array<ProductMediaGroupRepresentation_ProductMediaGroupRepresentation>;
|
|
32
|
-
/** Primary category path of the product */
|
|
33
|
-
primaryProductCategoryPath: $64$luvio_engine_StoreLink;
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* Representation for the details of a single product
|
|
37
|
-
*
|
|
38
|
-
* Keys:
|
|
39
|
-
* (none)
|
|
40
|
-
*/
|
|
41
|
-
export interface ProductDetailRepresentation {
|
|
42
|
-
defaultImage: ProductMediaRepresentation_ProductMediaRepresentation;
|
|
43
|
-
entitlement: ProductEntitlementRepresentation_ProductEntitlementRepresentation;
|
|
44
|
-
fields: {
|
|
45
|
-
[key: string]: string | null;
|
|
46
|
-
};
|
|
47
|
-
id: string;
|
|
48
|
-
mediaGroups: Array<ProductMediaGroupRepresentation_ProductMediaGroupRepresentation>;
|
|
49
|
-
primaryProductCategoryPath: ProductCategoryPathRepresentation_ProductCategoryPathRepresentation;
|
|
50
|
-
}
|
|
1
|
+
import { ProductMediaRepresentation as ProductMediaRepresentation_ProductMediaRepresentation } from './ProductMediaRepresentation';
|
|
2
|
+
import { ProductEntitlementRepresentation as ProductEntitlementRepresentation_ProductEntitlementRepresentation } from './ProductEntitlementRepresentation';
|
|
3
|
+
import { ProductMediaGroupRepresentation as ProductMediaGroupRepresentation_ProductMediaGroupRepresentation } from './ProductMediaGroupRepresentation';
|
|
4
|
+
import { ProductCategoryPathRepresentation as ProductCategoryPathRepresentation_ProductCategoryPathRepresentation } from './ProductCategoryPathRepresentation';
|
|
5
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
6
|
+
export declare const VERSION = "aeb68d0cbb5b505d40ca2f6997bb9194";
|
|
7
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
8
|
+
export declare const RepresentationType: string;
|
|
9
|
+
export declare function normalize(input: ProductDetailRepresentation, existing: ProductDetailRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductDetailRepresentationNormalized;
|
|
10
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
11
|
+
export declare function equals(existing: ProductDetailRepresentationNormalized, incoming: ProductDetailRepresentationNormalized): boolean;
|
|
12
|
+
export declare function deepFreeze(input: ProductDetailRepresentation): void;
|
|
13
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
14
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductDetailRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
15
|
+
/**
|
|
16
|
+
* Representation for the details of a single product
|
|
17
|
+
*
|
|
18
|
+
* Keys:
|
|
19
|
+
* (none)
|
|
20
|
+
*/
|
|
21
|
+
export interface ProductDetailRepresentationNormalized {
|
|
22
|
+
defaultImage: ProductMediaRepresentation_ProductMediaRepresentation;
|
|
23
|
+
entitlement: ProductEntitlementRepresentation_ProductEntitlementRepresentation;
|
|
24
|
+
/** List of fields belonging to the product */
|
|
25
|
+
fields: {
|
|
26
|
+
[key: string]: string | null;
|
|
27
|
+
};
|
|
28
|
+
/** ID of the product */
|
|
29
|
+
id: string;
|
|
30
|
+
/** List of media groups of the product */
|
|
31
|
+
mediaGroups: Array<ProductMediaGroupRepresentation_ProductMediaGroupRepresentation>;
|
|
32
|
+
/** Primary category path of the product */
|
|
33
|
+
primaryProductCategoryPath: $64$luvio_engine_StoreLink;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Representation for the details of a single product
|
|
37
|
+
*
|
|
38
|
+
* Keys:
|
|
39
|
+
* (none)
|
|
40
|
+
*/
|
|
41
|
+
export interface ProductDetailRepresentation {
|
|
42
|
+
defaultImage: ProductMediaRepresentation_ProductMediaRepresentation;
|
|
43
|
+
entitlement: ProductEntitlementRepresentation_ProductEntitlementRepresentation;
|
|
44
|
+
fields: {
|
|
45
|
+
[key: string]: string | null;
|
|
46
|
+
};
|
|
47
|
+
id: string;
|
|
48
|
+
mediaGroups: Array<ProductMediaGroupRepresentation_ProductMediaGroupRepresentation>;
|
|
49
|
+
primaryProductCategoryPath: ProductCategoryPathRepresentation_ProductCategoryPathRepresentation;
|
|
50
|
+
}
|
package/dist/{types → es/es2018/types}/src/generated/types/ProductEntitlementRepresentation.d.ts
RENAMED
|
@@ -1,29 +1,29 @@
|
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "9c5ecbd8b7f938cfa6566967e4158259";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: ProductEntitlementRepresentation, existing: ProductEntitlementRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductEntitlementRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: ProductEntitlementRepresentationNormalized, incoming: ProductEntitlementRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: ProductEntitlementRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductEntitlementRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Representation of a media group associated with a product
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface ProductEntitlementRepresentationNormalized {
|
|
18
|
-
/** true if the product's price can be viewed, false otherwise */
|
|
19
|
-
canViewPrice: boolean | null;
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* Representation of a media group associated with a product
|
|
23
|
-
*
|
|
24
|
-
* Keys:
|
|
25
|
-
* (none)
|
|
26
|
-
*/
|
|
27
|
-
export interface ProductEntitlementRepresentation {
|
|
28
|
-
canViewPrice: boolean | null;
|
|
29
|
-
}
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "9c5ecbd8b7f938cfa6566967e4158259";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ProductEntitlementRepresentation, existing: ProductEntitlementRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductEntitlementRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ProductEntitlementRepresentationNormalized, incoming: ProductEntitlementRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ProductEntitlementRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductEntitlementRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Representation of a media group associated with a product
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ProductEntitlementRepresentationNormalized {
|
|
18
|
+
/** true if the product's price can be viewed, false otherwise */
|
|
19
|
+
canViewPrice: boolean | null;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Representation of a media group associated with a product
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface ProductEntitlementRepresentation {
|
|
28
|
+
canViewPrice: boolean | null;
|
|
29
|
+
}
|
|
@@ -1,41 +1,41 @@
|
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "447d2f88a419288798da709bdd5b836d";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: ProductMediaContentDocumentRepresentation, existing: ProductMediaContentDocumentRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductMediaContentDocumentRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: ProductMediaContentDocumentRepresentationNormalized, incoming: ProductMediaContentDocumentRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: ProductMediaContentDocumentRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductMediaContentDocumentRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Representation of a product media as content document
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface ProductMediaContentDocumentRepresentationNormalized {
|
|
18
|
-
/** ID of the ContentDocument as media */
|
|
19
|
-
id: string;
|
|
20
|
-
/** URL of the large size product image */
|
|
21
|
-
largeUrl: string;
|
|
22
|
-
/** URL of the medium size product image */
|
|
23
|
-
mediumUrl: string;
|
|
24
|
-
/** URL of the original size product image as uploaded */
|
|
25
|
-
originalUrl: string;
|
|
26
|
-
/** URL of the small size product image */
|
|
27
|
-
smallUrl: string;
|
|
28
|
-
}
|
|
29
|
-
/**
|
|
30
|
-
* Representation of a product media as content document
|
|
31
|
-
*
|
|
32
|
-
* Keys:
|
|
33
|
-
* (none)
|
|
34
|
-
*/
|
|
35
|
-
export interface ProductMediaContentDocumentRepresentation {
|
|
36
|
-
id: string;
|
|
37
|
-
largeUrl: string;
|
|
38
|
-
mediumUrl: string;
|
|
39
|
-
originalUrl: string;
|
|
40
|
-
smallUrl: string;
|
|
41
|
-
}
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "447d2f88a419288798da709bdd5b836d";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ProductMediaContentDocumentRepresentation, existing: ProductMediaContentDocumentRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductMediaContentDocumentRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ProductMediaContentDocumentRepresentationNormalized, incoming: ProductMediaContentDocumentRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ProductMediaContentDocumentRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ProductMediaContentDocumentRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Representation of a product media as content document
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ProductMediaContentDocumentRepresentationNormalized {
|
|
18
|
+
/** ID of the ContentDocument as media */
|
|
19
|
+
id: string;
|
|
20
|
+
/** URL of the large size product image */
|
|
21
|
+
largeUrl: string;
|
|
22
|
+
/** URL of the medium size product image */
|
|
23
|
+
mediumUrl: string;
|
|
24
|
+
/** URL of the original size product image as uploaded */
|
|
25
|
+
originalUrl: string;
|
|
26
|
+
/** URL of the small size product image */
|
|
27
|
+
smallUrl: string;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Representation of a product media as content document
|
|
31
|
+
*
|
|
32
|
+
* Keys:
|
|
33
|
+
* (none)
|
|
34
|
+
*/
|
|
35
|
+
export interface ProductMediaContentDocumentRepresentation {
|
|
36
|
+
id: string;
|
|
37
|
+
largeUrl: string;
|
|
38
|
+
mediumUrl: string;
|
|
39
|
+
originalUrl: string;
|
|
40
|
+
smallUrl: string;
|
|
41
|
+
}
|