@salesforce/lds-adapters-service-ecm 1.342.0 → 1.343.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/service-ecm.js +897 -71
- package/dist/es/es2018/types/src/generated/adapters/createCatalogItem.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/adapters/updateCatalogItem.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/patchConnectServiceAutomationCatalogCatalogItemByCatalogItemId.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectServiceAutomationCatalogCatalogItem.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/types/CatalogItemCreateInputRepresentation.d.ts +8 -1
- package/dist/es/es2018/types/src/generated/types/CatalogItemOutputRepresentation.d.ts +8 -1
- package/dist/es/es2018/types/src/generated/types/CatalogItemUpdateInputRepresentation.d.ts +8 -1
- package/dist/es/es2018/types/src/generated/types/ProductDetailsInputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/ProductDetailsOutputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/ProductRequestCreateInputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/ProductRequestOutputRepresentation.d.ts +47 -0
- package/dist/es/es2018/types/src/generated/types/ProductRequestUpdateInputRepresentation.d.ts +46 -0
- package/dist/es/es2018/types/src/generated/types/SectionInputRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/SectionOutputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +898 -72
- package/src/raml/api.raml +210 -2
|
@@ -7,6 +7,7 @@ import { FulfillmentFlowInputRepresentation as types_FulfillmentFlowInputReprese
|
|
|
7
7
|
import { IntakeFormInputRepresentation as types_IntakeFormInputRepresentation_IntakeFormInputRepresentation } from '../types/IntakeFormInputRepresentation';
|
|
8
8
|
import { IntegrationDefInputRepresentation as types_IntegrationDefInputRepresentation_IntegrationDefInputRepresentation } from '../types/IntegrationDefInputRepresentation';
|
|
9
9
|
import { PreprocessorInputRepresentation as types_PreprocessorInputRepresentation_PreprocessorInputRepresentation } from '../types/PreprocessorInputRepresentation';
|
|
10
|
+
import { ProductRequestCreateInputRepresentation as types_ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation } from '../types/ProductRequestCreateInputRepresentation';
|
|
10
11
|
import { ResourceRequestConfig as resources_postConnectServiceAutomationCatalogCatalogItem_ResourceRequestConfig } from '../resources/postConnectServiceAutomationCatalogCatalogItem';
|
|
11
12
|
import { CatalogItemOutputRepresentation as types_CatalogItemOutputRepresentation_CatalogItemOutputRepresentation } from '../types/CatalogItemOutputRepresentation';
|
|
12
13
|
export declare const adapterName = "createCatalogItem";
|
|
@@ -25,6 +26,8 @@ export interface CreateCatalogItemConfig {
|
|
|
25
26
|
isActive?: boolean | null;
|
|
26
27
|
name?: string | null;
|
|
27
28
|
preProcessors?: Array<types_PreprocessorInputRepresentation_PreprocessorInputRepresentation | null>;
|
|
29
|
+
productRequests?: Array<types_ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation | null>;
|
|
30
|
+
targetObject: string | null;
|
|
28
31
|
usedFor?: string | null;
|
|
29
32
|
}
|
|
30
33
|
export declare const createResourceParams: (config: CreateCatalogItemConfig) => resources_postConnectServiceAutomationCatalogCatalogItem_ResourceRequestConfig;
|
|
@@ -7,6 +7,7 @@ import { FulfillmentFlowInputRepresentation as types_FulfillmentFlowInputReprese
|
|
|
7
7
|
import { IntakeFormInputRepresentation as types_IntakeFormInputRepresentation_IntakeFormInputRepresentation } from '../types/IntakeFormInputRepresentation';
|
|
8
8
|
import { IntegrationDefInputRepresentation as types_IntegrationDefInputRepresentation_IntegrationDefInputRepresentation } from '../types/IntegrationDefInputRepresentation';
|
|
9
9
|
import { PreprocessorInputRepresentation as types_PreprocessorInputRepresentation_PreprocessorInputRepresentation } from '../types/PreprocessorInputRepresentation';
|
|
10
|
+
import { ProductRequestCreateInputRepresentation as types_ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation } from '../types/ProductRequestCreateInputRepresentation';
|
|
10
11
|
import { ResourceRequestConfig as resources_patchConnectServiceAutomationCatalogCatalogItemByCatalogItemId_ResourceRequestConfig } from '../resources/patchConnectServiceAutomationCatalogCatalogItemByCatalogItemId';
|
|
11
12
|
import { CatalogItemOutputRepresentation as types_CatalogItemOutputRepresentation_CatalogItemOutputRepresentation } from '../types/CatalogItemOutputRepresentation';
|
|
12
13
|
export declare const adapterName = "updateCatalogItem";
|
|
@@ -27,6 +28,8 @@ export interface UpdateCatalogItemConfig {
|
|
|
27
28
|
isActive?: boolean | null;
|
|
28
29
|
name?: string | null;
|
|
29
30
|
preProcessors?: Array<types_PreprocessorInputRepresentation_PreprocessorInputRepresentation | null>;
|
|
31
|
+
productRequests?: Array<types_ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation | null>;
|
|
32
|
+
targetObject?: string | null;
|
|
30
33
|
usedFor?: string | null;
|
|
31
34
|
}
|
|
32
35
|
export declare const createResourceParams: (config: UpdateCatalogItemConfig) => resources_patchConnectServiceAutomationCatalogCatalogItemByCatalogItemId_ResourceRequestConfig;
|
|
@@ -5,6 +5,7 @@ import { FulfillmentFlowInputRepresentation as types_FulfillmentFlowInputReprese
|
|
|
5
5
|
import { IntakeFormInputRepresentation as types_IntakeFormInputRepresentation_IntakeFormInputRepresentation } from '../types/IntakeFormInputRepresentation';
|
|
6
6
|
import { IntegrationDefInputRepresentation as types_IntegrationDefInputRepresentation_IntegrationDefInputRepresentation } from '../types/IntegrationDefInputRepresentation';
|
|
7
7
|
import { PreprocessorInputRepresentation as types_PreprocessorInputRepresentation_PreprocessorInputRepresentation } from '../types/PreprocessorInputRepresentation';
|
|
8
|
+
import { ProductRequestCreateInputRepresentation as types_ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation } from '../types/ProductRequestCreateInputRepresentation';
|
|
8
9
|
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
9
10
|
import { CatalogItemOutputRepresentation as types_CatalogItemOutputRepresentation_CatalogItemOutputRepresentation } from '../types/CatalogItemOutputRepresentation';
|
|
10
11
|
export interface ResourceRequestConfig {
|
|
@@ -25,6 +26,8 @@ export interface ResourceRequestConfig {
|
|
|
25
26
|
isActive?: boolean | null;
|
|
26
27
|
name?: string | null;
|
|
27
28
|
preProcessors?: Array<types_PreprocessorInputRepresentation_PreprocessorInputRepresentation | null>;
|
|
29
|
+
productRequests?: Array<types_ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation | null>;
|
|
30
|
+
targetObject?: string | null;
|
|
28
31
|
usedFor?: string | null;
|
|
29
32
|
};
|
|
30
33
|
}
|
|
@@ -5,6 +5,7 @@ import { FulfillmentFlowInputRepresentation as types_FulfillmentFlowInputReprese
|
|
|
5
5
|
import { IntakeFormInputRepresentation as types_IntakeFormInputRepresentation_IntakeFormInputRepresentation } from '../types/IntakeFormInputRepresentation';
|
|
6
6
|
import { IntegrationDefInputRepresentation as types_IntegrationDefInputRepresentation_IntegrationDefInputRepresentation } from '../types/IntegrationDefInputRepresentation';
|
|
7
7
|
import { PreprocessorInputRepresentation as types_PreprocessorInputRepresentation_PreprocessorInputRepresentation } from '../types/PreprocessorInputRepresentation';
|
|
8
|
+
import { ProductRequestCreateInputRepresentation as types_ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation } from '../types/ProductRequestCreateInputRepresentation';
|
|
8
9
|
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
9
10
|
import { CatalogItemOutputRepresentation as types_CatalogItemOutputRepresentation_CatalogItemOutputRepresentation } from '../types/CatalogItemOutputRepresentation';
|
|
10
11
|
export interface ResourceRequestConfig {
|
|
@@ -21,6 +22,8 @@ export interface ResourceRequestConfig {
|
|
|
21
22
|
isActive?: boolean | null;
|
|
22
23
|
name?: string | null;
|
|
23
24
|
preProcessors?: Array<types_PreprocessorInputRepresentation_PreprocessorInputRepresentation | null>;
|
|
25
|
+
productRequests?: Array<types_ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation | null>;
|
|
26
|
+
targetObject: string | null;
|
|
24
27
|
usedFor?: string | null;
|
|
25
28
|
};
|
|
26
29
|
}
|
|
@@ -5,8 +5,9 @@ import { FulfillmentFlowInputRepresentation as FulfillmentFlowInputRepresentatio
|
|
|
5
5
|
import { IntakeFormInputRepresentation as IntakeFormInputRepresentation_IntakeFormInputRepresentation } from './IntakeFormInputRepresentation';
|
|
6
6
|
import { IntegrationDefInputRepresentation as IntegrationDefInputRepresentation_IntegrationDefInputRepresentation } from './IntegrationDefInputRepresentation';
|
|
7
7
|
import { PreprocessorInputRepresentation as PreprocessorInputRepresentation_PreprocessorInputRepresentation } from './PreprocessorInputRepresentation';
|
|
8
|
+
import { ProductRequestCreateInputRepresentation as ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation } from './ProductRequestCreateInputRepresentation';
|
|
8
9
|
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';
|
|
9
|
-
export declare const VERSION = "
|
|
10
|
+
export declare const VERSION = "e60b2477c1c0b55f8693a499b0669e8e";
|
|
10
11
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
11
12
|
export declare const RepresentationType: string;
|
|
12
13
|
export declare function normalize(input: CatalogItemCreateInputRepresentation, existing: CatalogItemCreateInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CatalogItemCreateInputRepresentationNormalized;
|
|
@@ -45,6 +46,10 @@ export interface CatalogItemCreateInputRepresentationNormalized {
|
|
|
45
46
|
name?: string | null;
|
|
46
47
|
/** Pre-Processor */
|
|
47
48
|
preProcessors?: Array<PreprocessorInputRepresentation_PreprocessorInputRepresentation | null>;
|
|
49
|
+
/** ProductRequests */
|
|
50
|
+
productRequests?: Array<ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation | null>;
|
|
51
|
+
/** TargetObject */
|
|
52
|
+
targetObject: string | null;
|
|
48
53
|
/** UsedFor */
|
|
49
54
|
usedFor?: string | null;
|
|
50
55
|
}
|
|
@@ -67,5 +72,7 @@ export interface CatalogItemCreateInputRepresentation {
|
|
|
67
72
|
isActive?: boolean | null;
|
|
68
73
|
name?: string | null;
|
|
69
74
|
preProcessors?: Array<PreprocessorInputRepresentation_PreprocessorInputRepresentation | null>;
|
|
75
|
+
productRequests?: Array<ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation | null>;
|
|
76
|
+
targetObject: string | null;
|
|
70
77
|
usedFor?: string | null;
|
|
71
78
|
}
|
|
@@ -4,10 +4,11 @@ import { FulfillmentFlowOutputRepresentation as FulfillmentFlowOutputRepresentat
|
|
|
4
4
|
import { IntakeFormOutputRepresentation as IntakeFormOutputRepresentation_IntakeFormOutputRepresentation } from './IntakeFormOutputRepresentation';
|
|
5
5
|
import { IntegrationDefinitionOutputPresentation as IntegrationDefinitionOutputPresentation_IntegrationDefinitionOutputPresentation } from './IntegrationDefinitionOutputPresentation';
|
|
6
6
|
import { PreprocessorOutputRepresentation as PreprocessorOutputRepresentation_PreprocessorOutputRepresentation } from './PreprocessorOutputRepresentation';
|
|
7
|
+
import { ProductRequestOutputRepresentation as ProductRequestOutputRepresentation_ProductRequestOutputRepresentation } from './ProductRequestOutputRepresentation';
|
|
7
8
|
import { SectionOutputRepresentation as SectionOutputRepresentation_SectionOutputRepresentation } from './SectionOutputRepresentation';
|
|
8
9
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
9
10
|
export declare const TTL = 6000;
|
|
10
|
-
export declare const VERSION = "
|
|
11
|
+
export declare const VERSION = "ee62476ce2bfdf8efe1a4acdb6b957f3";
|
|
11
12
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
12
13
|
export declare const RepresentationType: string;
|
|
13
14
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -57,8 +58,12 @@ export interface CatalogItemOutputRepresentationNormalized {
|
|
|
57
58
|
preProcessors?: Array<PreprocessorOutputRepresentation_PreprocessorOutputRepresentation | null>;
|
|
58
59
|
/** Product Id */
|
|
59
60
|
productId?: string | null;
|
|
61
|
+
/** ProductRequests */
|
|
62
|
+
productRequests?: Array<ProductRequestOutputRepresentation_ProductRequestOutputRepresentation | null>;
|
|
60
63
|
/** Attributes */
|
|
61
64
|
section?: SectionOutputRepresentation_SectionOutputRepresentation | null;
|
|
65
|
+
/** Target Object */
|
|
66
|
+
targetObject?: string | null;
|
|
62
67
|
/** usedFor of the Catalog Item */
|
|
63
68
|
usedFor?: string | null;
|
|
64
69
|
}
|
|
@@ -82,6 +87,8 @@ export interface CatalogItemOutputRepresentation {
|
|
|
82
87
|
name?: string | null;
|
|
83
88
|
preProcessors?: Array<PreprocessorOutputRepresentation_PreprocessorOutputRepresentation | null>;
|
|
84
89
|
productId?: string | null;
|
|
90
|
+
productRequests?: Array<ProductRequestOutputRepresentation_ProductRequestOutputRepresentation | null>;
|
|
85
91
|
section?: SectionOutputRepresentation_SectionOutputRepresentation | null;
|
|
92
|
+
targetObject?: string | null;
|
|
86
93
|
usedFor?: string | null;
|
|
87
94
|
}
|
|
@@ -5,8 +5,9 @@ import { FulfillmentFlowInputRepresentation as FulfillmentFlowInputRepresentatio
|
|
|
5
5
|
import { IntakeFormInputRepresentation as IntakeFormInputRepresentation_IntakeFormInputRepresentation } from './IntakeFormInputRepresentation';
|
|
6
6
|
import { IntegrationDefInputRepresentation as IntegrationDefInputRepresentation_IntegrationDefInputRepresentation } from './IntegrationDefInputRepresentation';
|
|
7
7
|
import { PreprocessorInputRepresentation as PreprocessorInputRepresentation_PreprocessorInputRepresentation } from './PreprocessorInputRepresentation';
|
|
8
|
+
import { ProductRequestCreateInputRepresentation as ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation } from './ProductRequestCreateInputRepresentation';
|
|
8
9
|
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';
|
|
9
|
-
export declare const VERSION = "
|
|
10
|
+
export declare const VERSION = "93eb1a813cf092a1f82fa2e86f5a2cdb";
|
|
10
11
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
11
12
|
export declare const RepresentationType: string;
|
|
12
13
|
export declare function normalize(input: CatalogItemUpdateInputRepresentation, existing: CatalogItemUpdateInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CatalogItemUpdateInputRepresentationNormalized;
|
|
@@ -47,6 +48,10 @@ export interface CatalogItemUpdateInputRepresentationNormalized {
|
|
|
47
48
|
preProcessors?: Array<PreprocessorInputRepresentation_PreprocessorInputRepresentation | null>;
|
|
48
49
|
/** The ID of the catalog Item */
|
|
49
50
|
productId?: string | null;
|
|
51
|
+
/** ProductRequests */
|
|
52
|
+
productRequests?: Array<ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation | null>;
|
|
53
|
+
/** Target Object */
|
|
54
|
+
targetObject?: string | null;
|
|
50
55
|
/** UsedFor */
|
|
51
56
|
usedFor?: string | null;
|
|
52
57
|
}
|
|
@@ -70,5 +75,7 @@ export interface CatalogItemUpdateInputRepresentation {
|
|
|
70
75
|
name?: string | null;
|
|
71
76
|
preProcessors?: Array<PreprocessorInputRepresentation_PreprocessorInputRepresentation | null>;
|
|
72
77
|
productId?: string | null;
|
|
78
|
+
productRequests?: Array<ProductRequestCreateInputRepresentation_ProductRequestCreateInputRepresentation | null>;
|
|
79
|
+
targetObject?: string | null;
|
|
73
80
|
usedFor?: string | null;
|
|
74
81
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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 = "f36afb2b1f37980bb295b54da53185b3";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
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;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ProductDetailsInputRepresentationNormalized, incoming: ProductDetailsInputRepresentationNormalized): 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: ProductDetailsInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input Representation for Product Details.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ProductDetailsInputRepresentationNormalized {
|
|
17
|
+
/** The id of the product request */
|
|
18
|
+
id?: string | null;
|
|
19
|
+
/** The operation type of the catalog Item */
|
|
20
|
+
operationType?: string | null;
|
|
21
|
+
/** The id of the product */
|
|
22
|
+
productId?: string | null;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Input Representation for Product Details.
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface ProductDetailsInputRepresentation {
|
|
31
|
+
id?: string | null;
|
|
32
|
+
operationType?: string | null;
|
|
33
|
+
productId?: string | null;
|
|
34
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
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 = "237440975156389e5479f294d3d601de";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
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;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ProductDetailsOutputRepresentationNormalized, incoming: ProductDetailsOutputRepresentationNormalized): 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: ProductDetailsOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Output Representation for Product Details
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ProductDetailsOutputRepresentationNormalized {
|
|
17
|
+
/** The id of the product request */
|
|
18
|
+
id?: string | null;
|
|
19
|
+
/** The id of the product */
|
|
20
|
+
productId?: string | null;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Output Representation for Product Details
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ProductDetailsOutputRepresentation {
|
|
29
|
+
id?: string | null;
|
|
30
|
+
productId?: string | null;
|
|
31
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
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 = "e68cf8430727a311815b154317f5519f";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ProductRequestCreateInputRepresentation, existing: ProductRequestCreateInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductRequestCreateInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ProductRequestCreateInputRepresentationNormalized, incoming: ProductRequestCreateInputRepresentationNormalized): 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: ProductRequestCreateInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input Representation for Product Request.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ProductRequestCreateInputRepresentationNormalized {
|
|
17
|
+
/** Product Details */
|
|
18
|
+
productDetails?: Array<unknown>;
|
|
19
|
+
/** Section Description */
|
|
20
|
+
sectionDescription?: string | null;
|
|
21
|
+
/** Section max count */
|
|
22
|
+
sectionMaxCount?: number | null;
|
|
23
|
+
/** Section min count */
|
|
24
|
+
sectionMinCount?: number | null;
|
|
25
|
+
/** Section Name */
|
|
26
|
+
sectionName?: string | null;
|
|
27
|
+
/** Sequence */
|
|
28
|
+
sequence?: number | null;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Input Representation for Product Request.
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* (none)
|
|
35
|
+
*/
|
|
36
|
+
export interface ProductRequestCreateInputRepresentation {
|
|
37
|
+
productDetails?: Array<unknown>;
|
|
38
|
+
sectionDescription?: string | null;
|
|
39
|
+
sectionMaxCount?: number | null;
|
|
40
|
+
sectionMinCount?: number | null;
|
|
41
|
+
sectionName?: string | null;
|
|
42
|
+
sequence?: number | null;
|
|
43
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
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 = "dc18ee4b99b0510d2c89ddf9261ea1e7";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ProductRequestOutputRepresentation, existing: ProductRequestOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductRequestOutputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ProductRequestOutputRepresentationNormalized, incoming: ProductRequestOutputRepresentationNormalized): 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: ProductRequestOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Output Representation for Product Request
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ProductRequestOutputRepresentationNormalized {
|
|
18
|
+
/** Product Details */
|
|
19
|
+
productDetails?: Array<ProductDetailsOutputRepresentation_ProductDetailsOutputRepresentation>;
|
|
20
|
+
/** Section Description */
|
|
21
|
+
sectionDescription?: string | null;
|
|
22
|
+
/** Section Id */
|
|
23
|
+
sectionId?: string | null;
|
|
24
|
+
/** Section max count */
|
|
25
|
+
sectionMaxCount?: number | null;
|
|
26
|
+
/** Section min count */
|
|
27
|
+
sectionMinCount?: number | null;
|
|
28
|
+
/** Section Name */
|
|
29
|
+
sectionName?: string | null;
|
|
30
|
+
/** Sequence */
|
|
31
|
+
sequence?: number | null;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Output Representation for Product Request
|
|
35
|
+
*
|
|
36
|
+
* Keys:
|
|
37
|
+
* (none)
|
|
38
|
+
*/
|
|
39
|
+
export interface ProductRequestOutputRepresentation {
|
|
40
|
+
productDetails?: Array<ProductDetailsOutputRepresentation_ProductDetailsOutputRepresentation>;
|
|
41
|
+
sectionDescription?: string | null;
|
|
42
|
+
sectionId?: string | null;
|
|
43
|
+
sectionMaxCount?: number | null;
|
|
44
|
+
sectionMinCount?: number | null;
|
|
45
|
+
sectionName?: string | null;
|
|
46
|
+
sequence?: number | null;
|
|
47
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
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 = "47878bd8b39181be2b0833b584319743";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ProductRequestUpdateInputRepresentation, existing: ProductRequestUpdateInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductRequestUpdateInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ProductRequestUpdateInputRepresentationNormalized, incoming: ProductRequestUpdateInputRepresentationNormalized): 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: ProductRequestUpdateInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input Representation for Product Request.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ProductRequestUpdateInputRepresentationNormalized {
|
|
17
|
+
/** Product Details */
|
|
18
|
+
productDetails?: Array<unknown>;
|
|
19
|
+
/** Section Description */
|
|
20
|
+
sectionDescription?: string | null;
|
|
21
|
+
/** Section Id */
|
|
22
|
+
sectionId?: string | null;
|
|
23
|
+
/** Section max count */
|
|
24
|
+
sectionMaxCount?: number | null;
|
|
25
|
+
/** Section min count */
|
|
26
|
+
sectionMinCount?: number | null;
|
|
27
|
+
/** Section Name */
|
|
28
|
+
sectionName?: string | null;
|
|
29
|
+
/** Section Sequence */
|
|
30
|
+
sequence?: number | null;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Input Representation for Product Request.
|
|
34
|
+
*
|
|
35
|
+
* Keys:
|
|
36
|
+
* (none)
|
|
37
|
+
*/
|
|
38
|
+
export interface ProductRequestUpdateInputRepresentation {
|
|
39
|
+
productDetails?: Array<unknown>;
|
|
40
|
+
sectionDescription?: string | null;
|
|
41
|
+
sectionId?: string | null;
|
|
42
|
+
sectionMaxCount?: number | null;
|
|
43
|
+
sectionMinCount?: number | null;
|
|
44
|
+
sectionName?: string | null;
|
|
45
|
+
sequence?: number | null;
|
|
46
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
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 = "d532846752caa696a68f0587f98638e0";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: SectionInputRepresentation, existing: SectionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SectionInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: SectionInputRepresentationNormalized, incoming: SectionInputRepresentationNormalized): 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: SectionInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input Representation for Sections
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface SectionInputRepresentationNormalized {
|
|
17
|
+
/** Attributes associated with Section */
|
|
18
|
+
attributes?: Array<unknown>;
|
|
19
|
+
/** The Description of Section */
|
|
20
|
+
description?: string | null;
|
|
21
|
+
/** The ID of Section */
|
|
22
|
+
id?: string | null;
|
|
23
|
+
/** The Name of Section */
|
|
24
|
+
name?: string | null;
|
|
25
|
+
/** The operation type of the section */
|
|
26
|
+
operationType?: string | null;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Input Representation for Sections
|
|
30
|
+
*
|
|
31
|
+
* Keys:
|
|
32
|
+
* (none)
|
|
33
|
+
*/
|
|
34
|
+
export interface SectionInputRepresentation {
|
|
35
|
+
attributes?: Array<unknown>;
|
|
36
|
+
description?: string | null;
|
|
37
|
+
id?: string | null;
|
|
38
|
+
name?: string | null;
|
|
39
|
+
operationType?: string | null;
|
|
40
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CatalogItemAttributeOutputRepresentation as CatalogItemAttributeOutputRepresentation_CatalogItemAttributeOutputRepresentation } from './CatalogItemAttributeOutputRepresentation';
|
|
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 = "f3d73b2bf4e29668882933f95c798ea8";
|
|
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: SectionOutputRepresentation, existing: SectionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SectionOutputRepresentationNormalized;
|
|
@@ -19,6 +19,8 @@ export interface SectionOutputRepresentationNormalized {
|
|
|
19
19
|
attributes?: Array<CatalogItemAttributeOutputRepresentation_CatalogItemAttributeOutputRepresentation | null>;
|
|
20
20
|
/** Product Name */
|
|
21
21
|
description?: string | null;
|
|
22
|
+
/** Id of the Section */
|
|
23
|
+
id?: string | null;
|
|
22
24
|
/** Product Name */
|
|
23
25
|
name?: string | null;
|
|
24
26
|
}
|
|
@@ -31,5 +33,6 @@ export interface SectionOutputRepresentationNormalized {
|
|
|
31
33
|
export interface SectionOutputRepresentation {
|
|
32
34
|
attributes?: Array<CatalogItemAttributeOutputRepresentation_CatalogItemAttributeOutputRepresentation | null>;
|
|
33
35
|
description?: string | null;
|
|
36
|
+
id?: string | null;
|
|
34
37
|
name?: string | null;
|
|
35
38
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-service-ecm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.343.0",
|
|
4
4
|
"description": "Service Automation Request",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/service-ecm.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.343.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.343.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|