@salesforce/lds-adapters-service-ecm 1.347.1 → 1.348.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 +1131 -549
- package/dist/es/es2018/types/src/generated/adapters/getCatalogItem.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getServiceRequest.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/resources/getConnectServiceAutomationCatalogCatalogItemByCatalogItemId.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectServiceAutomationServiceRequestServiceCatalogRequestByServiceRequestId.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/types/CatalogItemAttributeInputRepresentation.d.ts +7 -7
- package/dist/es/es2018/types/src/generated/types/CatalogItemAttributeOutputRepresentation.d.ts +7 -7
- package/dist/es/es2018/types/src/generated/types/PicklistAttributeTypeInputRepresentation.d.ts +16 -13
- package/dist/es/es2018/types/src/generated/types/PicklistAttributeTypeOutputRepresentation.d.ts +13 -13
- package/dist/es/es2018/types/src/generated/types/ProductDetailsOutputRepresentation.d.ts +13 -1
- package/dist/es/es2018/types/src/generated/types/SectionInputRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/SectionOutputRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/ServiceRequestGetOutputRepresentation.d.ts +39 -0
- package/package.json +3 -3
- package/sfdc/index.js +1037 -447
- package/src/raml/api.raml +79 -0
- package/src/raml/luvio.raml +4 -0
|
@@ -7,6 +7,7 @@ export declare const getCatalogItem_ConfigPropertyMetadata: $64$luvio_engine_Ada
|
|
|
7
7
|
export declare const getCatalogItem_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface GetCatalogItemConfig {
|
|
9
9
|
catalogItemId: string;
|
|
10
|
+
isRuntime?: boolean;
|
|
10
11
|
}
|
|
11
12
|
export declare const createResourceParams: (config: GetCatalogItemConfig) => resources_getConnectServiceAutomationCatalogCatalogItemByCatalogItemId_ResourceRequestConfig;
|
|
12
13
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetCatalogItemConfig): string;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getConnectServiceAutomationServiceRequestServiceCatalogRequestByServiceRequestId_ResourceRequestConfig } from '../resources/getConnectServiceAutomationServiceRequestServiceCatalogRequestByServiceRequestId';
|
|
4
|
+
import { ServiceRequestGetOutputRepresentation as types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation } from '../types/ServiceRequestGetOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "getServiceRequest";
|
|
6
|
+
export declare const getServiceRequest_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getServiceRequest_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetServiceRequestConfig {
|
|
9
|
+
serviceRequestId: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: GetServiceRequestConfig) => resources_getConnectServiceAutomationServiceRequestServiceCatalogRequestByServiceRequestId_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetServiceRequestConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetServiceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetServiceRequestConfig>): adapter$45$utils_Untrusted<GetServiceRequestConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetServiceRequestConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetServiceRequestConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetServiceRequestConfig): $64$luvio_engine_Snapshot<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetServiceRequestConfig, resourceParams: resources_getConnectServiceAutomationServiceRequestServiceCatalogRequestByServiceRequestId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetServiceRequestConfig, resourceParams: resources_getConnectServiceAutomationServiceRequestServiceCatalogRequestByServiceRequestId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetServiceRequestConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetServiceRequestConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation>): $64$luvio_engine_Snapshot<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation, any>;
|
|
27
|
+
export declare const getServiceRequestAdapterFactory: $64$luvio_engine_AdapterFactory<GetServiceRequestConfig, types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation>;
|
|
@@ -4,3 +4,4 @@ export { updateCatalogItemAdapterFactory } from '../adapters/updateCatalogItem';
|
|
|
4
4
|
export { updateEpcCategoriesAdapterFactory } from '../adapters/updateEpcCategories';
|
|
5
5
|
export { getAllServiceAutomationDepAdapterFactory } from '../adapters/getAllServiceAutomationDep';
|
|
6
6
|
export { generateOmniScriptAdapterFactory } from '../adapters/generateOmniScript';
|
|
7
|
+
export { getServiceRequestAdapterFactory } from '../adapters/getServiceRequest';
|
|
@@ -2,8 +2,10 @@ declare let createCatalogItem: any;
|
|
|
2
2
|
declare let generateOmniScript: any;
|
|
3
3
|
declare let getAllServiceAutomationDep: any;
|
|
4
4
|
declare let getCatalogItem: any;
|
|
5
|
+
declare let getServiceRequest: any;
|
|
5
6
|
declare let updateCatalogItem: any;
|
|
6
7
|
declare let updateEpcCategories: any;
|
|
7
8
|
declare let getAllServiceAutomationDep_imperative: any;
|
|
8
9
|
declare let getCatalogItem_imperative: any;
|
|
9
|
-
|
|
10
|
+
declare let getServiceRequest_imperative: any;
|
|
11
|
+
export { createCatalogItem, generateOmniScript, getAllServiceAutomationDep, getCatalogItem, getServiceRequest, updateCatalogItem, updateEpcCategories, getAllServiceAutomationDep_imperative, getCatalogItem_imperative, getServiceRequest_imperative, };
|
|
@@ -4,6 +4,9 @@ export interface ResourceRequestConfig {
|
|
|
4
4
|
urlParams: {
|
|
5
5
|
catalogItemId: string;
|
|
6
6
|
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
isRuntime?: boolean;
|
|
9
|
+
};
|
|
7
10
|
}
|
|
8
11
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
12
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { ServiceRequestGetOutputRepresentation as types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation } from '../types/ServiceRequestGetOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
serviceRequestId: string;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
10
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation): void;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ServiceRequestGetOutputRepresentation_ServiceRequestGetOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/types/CatalogItemAttributeInputRepresentation.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PicklistAttributeTypeInputRepresentation as PicklistAttributeTypeInputRepresentation_PicklistAttributeTypeInputRepresentation } from './PicklistAttributeTypeInputRepresentation';
|
|
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 = "76b6fb5b0b9b9d1cbd4f0b861c8fb3ae";
|
|
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: CatalogItemAttributeInputRepresentation, existing: CatalogItemAttributeInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CatalogItemAttributeInputRepresentationNormalized;
|
|
@@ -28,13 +28,13 @@ export interface CatalogItemAttributeInputRepresentationNormalized {
|
|
|
28
28
|
/** Context Attribute Id */
|
|
29
29
|
isContextDefinitionAttribute?: boolean | null;
|
|
30
30
|
/** Is Editable Field */
|
|
31
|
-
isEditable
|
|
31
|
+
isEditable?: boolean;
|
|
32
32
|
/** is Hidden */
|
|
33
33
|
isHidden?: boolean | null;
|
|
34
34
|
/** is Mandatory */
|
|
35
35
|
isMandatory?: boolean | null;
|
|
36
36
|
/** is Mapped Anchor Field */
|
|
37
|
-
isMappedAnchorField
|
|
37
|
+
isMappedAnchorField?: boolean;
|
|
38
38
|
/** is Read Only */
|
|
39
39
|
isReadOnly?: boolean | null;
|
|
40
40
|
/** Attribute Name */
|
|
@@ -44,7 +44,7 @@ export interface CatalogItemAttributeInputRepresentationNormalized {
|
|
|
44
44
|
/** Attribute Parent */
|
|
45
45
|
parent?: string | null;
|
|
46
46
|
/** Picklist Options */
|
|
47
|
-
picklistOptions
|
|
47
|
+
picklistOptions?: Array<PicklistAttributeTypeInputRepresentation_PicklistAttributeTypeInputRepresentation | null>;
|
|
48
48
|
/** Sequence Number */
|
|
49
49
|
sequence?: number | null;
|
|
50
50
|
}
|
|
@@ -61,14 +61,14 @@ export interface CatalogItemAttributeInputRepresentation {
|
|
|
61
61
|
description?: string | null;
|
|
62
62
|
id?: string | null;
|
|
63
63
|
isContextDefinitionAttribute?: boolean | null;
|
|
64
|
-
isEditable
|
|
64
|
+
isEditable?: boolean;
|
|
65
65
|
isHidden?: boolean | null;
|
|
66
66
|
isMandatory?: boolean | null;
|
|
67
|
-
isMappedAnchorField
|
|
67
|
+
isMappedAnchorField?: boolean;
|
|
68
68
|
isReadOnly?: boolean | null;
|
|
69
69
|
name?: string | null;
|
|
70
70
|
operationType?: string | null;
|
|
71
71
|
parent?: string | null;
|
|
72
|
-
picklistOptions
|
|
72
|
+
picklistOptions?: Array<PicklistAttributeTypeInputRepresentation_PicklistAttributeTypeInputRepresentation | null>;
|
|
73
73
|
sequence?: number | null;
|
|
74
74
|
}
|
package/dist/es/es2018/types/src/generated/types/CatalogItemAttributeOutputRepresentation.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PicklistAttributeTypeOutputRepresentation as PicklistAttributeTypeOutputRepresentation_PicklistAttributeTypeOutputRepresentation } from './PicklistAttributeTypeOutputRepresentation';
|
|
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 = "564fd7f64d997ab6ecc936f5787a27f9";
|
|
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: CatalogItemAttributeOutputRepresentation, existing: CatalogItemAttributeOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CatalogItemAttributeOutputRepresentationNormalized;
|
|
@@ -30,13 +30,13 @@ export interface CatalogItemAttributeOutputRepresentationNormalized {
|
|
|
30
30
|
/** Attribute Is Deleted */
|
|
31
31
|
isDeleted?: boolean | null;
|
|
32
32
|
/** Is Editable Field */
|
|
33
|
-
isEditable
|
|
33
|
+
isEditable?: boolean;
|
|
34
34
|
/** Attribute Is Hidden */
|
|
35
35
|
isHidden?: boolean | null;
|
|
36
36
|
/** is Mandatory */
|
|
37
37
|
isMandatory?: boolean | null;
|
|
38
38
|
/** Mapped Anchor Field */
|
|
39
|
-
isMappedAnchorField
|
|
39
|
+
isMappedAnchorField?: boolean;
|
|
40
40
|
/** Attribute isReadOnly */
|
|
41
41
|
isReadOnly?: boolean | null;
|
|
42
42
|
/** Attribute Is Required */
|
|
@@ -46,7 +46,7 @@ export interface CatalogItemAttributeOutputRepresentationNormalized {
|
|
|
46
46
|
/** Attribute Parent */
|
|
47
47
|
parent?: string | null;
|
|
48
48
|
/** Picklist Options */
|
|
49
|
-
picklistOptions
|
|
49
|
+
picklistOptions?: Array<PicklistAttributeTypeOutputRepresentation_PicklistAttributeTypeOutputRepresentation | null>;
|
|
50
50
|
/** Attribute Sequence */
|
|
51
51
|
sequence?: number | null;
|
|
52
52
|
}
|
|
@@ -64,14 +64,14 @@ export interface CatalogItemAttributeOutputRepresentation {
|
|
|
64
64
|
id?: string | null;
|
|
65
65
|
isContextDefinitionAttribute?: boolean | null;
|
|
66
66
|
isDeleted?: boolean | null;
|
|
67
|
-
isEditable
|
|
67
|
+
isEditable?: boolean;
|
|
68
68
|
isHidden?: boolean | null;
|
|
69
69
|
isMandatory?: boolean | null;
|
|
70
|
-
isMappedAnchorField
|
|
70
|
+
isMappedAnchorField?: boolean;
|
|
71
71
|
isReadOnly?: boolean | null;
|
|
72
72
|
isRequired?: boolean | null;
|
|
73
73
|
name?: string | null;
|
|
74
74
|
parent?: string | null;
|
|
75
|
-
picklistOptions
|
|
75
|
+
picklistOptions?: Array<PicklistAttributeTypeOutputRepresentation_PicklistAttributeTypeOutputRepresentation | null>;
|
|
76
76
|
sequence?: number | null;
|
|
77
77
|
}
|
package/dist/es/es2018/types/src/generated/types/PicklistAttributeTypeInputRepresentation.d.ts
CHANGED
|
@@ -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 = "e4d88344cdbb8018f90cc77edb6edaed";
|
|
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: PicklistAttributeTypeInputRepresentation, existing: PicklistAttributeTypeInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PicklistAttributeTypeInputRepresentationNormalized;
|
|
@@ -15,17 +15,19 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
15
15
|
*/
|
|
16
16
|
export interface PicklistAttributeTypeInputRepresentationNormalized {
|
|
17
17
|
/** Picklist Display Name */
|
|
18
|
-
displayName
|
|
18
|
+
displayName?: string;
|
|
19
19
|
/** Picklist Id */
|
|
20
|
-
id
|
|
20
|
+
id?: string;
|
|
21
21
|
/** Picklist Is Default */
|
|
22
|
-
isDefault
|
|
22
|
+
isDefault?: boolean;
|
|
23
23
|
/** Picklist Is Visible */
|
|
24
|
-
isVisible
|
|
24
|
+
isVisible?: boolean;
|
|
25
25
|
/** Picklist Name */
|
|
26
|
-
name
|
|
26
|
+
name?: string;
|
|
27
|
+
/** The operation type of the picklist option */
|
|
28
|
+
operationType?: string | null;
|
|
27
29
|
/** Picklist Sequence Number */
|
|
28
|
-
sequenceNumber
|
|
30
|
+
sequenceNumber?: number;
|
|
29
31
|
}
|
|
30
32
|
/**
|
|
31
33
|
* Picklist Attribute Type
|
|
@@ -34,10 +36,11 @@ export interface PicklistAttributeTypeInputRepresentationNormalized {
|
|
|
34
36
|
* (none)
|
|
35
37
|
*/
|
|
36
38
|
export interface PicklistAttributeTypeInputRepresentation {
|
|
37
|
-
displayName
|
|
38
|
-
id
|
|
39
|
-
isDefault
|
|
40
|
-
isVisible
|
|
41
|
-
name
|
|
42
|
-
|
|
39
|
+
displayName?: string;
|
|
40
|
+
id?: string;
|
|
41
|
+
isDefault?: boolean;
|
|
42
|
+
isVisible?: boolean;
|
|
43
|
+
name?: string;
|
|
44
|
+
operationType?: string | null;
|
|
45
|
+
sequenceNumber?: number;
|
|
43
46
|
}
|
package/dist/es/es2018/types/src/generated/types/PicklistAttributeTypeOutputRepresentation.d.ts
CHANGED
|
@@ -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 = "96012ee7981543ddc90b7a4d3e505ffb";
|
|
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: PicklistAttributeTypeOutputRepresentation, existing: PicklistAttributeTypeOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PicklistAttributeTypeOutputRepresentationNormalized;
|
|
@@ -15,17 +15,17 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
15
15
|
*/
|
|
16
16
|
export interface PicklistAttributeTypeOutputRepresentationNormalized {
|
|
17
17
|
/** Picklist Option Display Name */
|
|
18
|
-
displayName
|
|
18
|
+
displayName?: string;
|
|
19
19
|
/** Picklist Option Id */
|
|
20
|
-
id
|
|
20
|
+
id?: string;
|
|
21
21
|
/** Picklist Option isDefault */
|
|
22
|
-
isDefault
|
|
22
|
+
isDefault?: boolean;
|
|
23
23
|
/** Picklist Option isVisible */
|
|
24
|
-
isVisible
|
|
24
|
+
isVisible?: boolean;
|
|
25
25
|
/** Picklist Option Name */
|
|
26
|
-
name
|
|
26
|
+
name?: string;
|
|
27
27
|
/** Picklist Option Sequence Number */
|
|
28
|
-
sequenceNumber
|
|
28
|
+
sequenceNumber?: number;
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
31
|
* Output representation class for the Picklist Attribute Type
|
|
@@ -34,10 +34,10 @@ export interface PicklistAttributeTypeOutputRepresentationNormalized {
|
|
|
34
34
|
* (none)
|
|
35
35
|
*/
|
|
36
36
|
export interface PicklistAttributeTypeOutputRepresentation {
|
|
37
|
-
displayName
|
|
38
|
-
id
|
|
39
|
-
isDefault
|
|
40
|
-
isVisible
|
|
41
|
-
name
|
|
42
|
-
sequenceNumber
|
|
37
|
+
displayName?: string;
|
|
38
|
+
id?: string;
|
|
39
|
+
isDefault?: boolean;
|
|
40
|
+
isVisible?: boolean;
|
|
41
|
+
name?: string;
|
|
42
|
+
sequenceNumber?: number;
|
|
43
43
|
}
|
|
@@ -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 = "bb9dde3a26e01fbcb2b943119fcb279a";
|
|
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: ProductDetailsOutputRepresentation, existing: ProductDetailsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ProductDetailsOutputRepresentationNormalized;
|
|
@@ -14,10 +14,18 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
14
14
|
* (none)
|
|
15
15
|
*/
|
|
16
16
|
export interface ProductDetailsOutputRepresentationNormalized {
|
|
17
|
+
/** Description of the product */
|
|
18
|
+
description?: string | null;
|
|
19
|
+
/** displayUrl of the product */
|
|
20
|
+
displayUrl?: string | null;
|
|
17
21
|
/** The id of the product request */
|
|
18
22
|
id?: string | null;
|
|
19
23
|
/** The id of the product */
|
|
20
24
|
productId?: string | null;
|
|
25
|
+
/** Name of the product */
|
|
26
|
+
productName?: string | null;
|
|
27
|
+
/** Unit Price of the product */
|
|
28
|
+
productPrice?: string | null;
|
|
21
29
|
}
|
|
22
30
|
/**
|
|
23
31
|
* Output Representation for Product Details
|
|
@@ -26,6 +34,10 @@ export interface ProductDetailsOutputRepresentationNormalized {
|
|
|
26
34
|
* (none)
|
|
27
35
|
*/
|
|
28
36
|
export interface ProductDetailsOutputRepresentation {
|
|
37
|
+
description?: string | null;
|
|
38
|
+
displayUrl?: string | null;
|
|
29
39
|
id?: string | null;
|
|
30
40
|
productId?: string | null;
|
|
41
|
+
productName?: string | null;
|
|
42
|
+
productPrice?: string | null;
|
|
31
43
|
}
|
|
@@ -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 = "bec39d8f3b70de52dadd56c1e308b3f8";
|
|
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: SectionInputRepresentation, existing: SectionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SectionInputRepresentationNormalized;
|
|
@@ -25,7 +25,7 @@ export interface SectionInputRepresentationNormalized {
|
|
|
25
25
|
/** The operation type of the section */
|
|
26
26
|
operationType?: string | null;
|
|
27
27
|
/** The sequence of Section */
|
|
28
|
-
sequence
|
|
28
|
+
sequence?: number;
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
31
|
* Input Representation for Sections
|
|
@@ -39,5 +39,5 @@ export interface SectionInputRepresentation {
|
|
|
39
39
|
id?: string | null;
|
|
40
40
|
name?: string | null;
|
|
41
41
|
operationType?: string | null;
|
|
42
|
-
sequence
|
|
42
|
+
sequence?: number;
|
|
43
43
|
}
|
|
@@ -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 = "eed5c7a2ef3082b1059e48f5742cd44f";
|
|
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;
|
|
@@ -24,7 +24,7 @@ export interface SectionOutputRepresentationNormalized {
|
|
|
24
24
|
/** Product Name */
|
|
25
25
|
name?: string | null;
|
|
26
26
|
/** The sequence of Section */
|
|
27
|
-
sequence
|
|
27
|
+
sequence?: number;
|
|
28
28
|
}
|
|
29
29
|
/**
|
|
30
30
|
* Output Representation for Section
|
|
@@ -37,5 +37,5 @@ export interface SectionOutputRepresentation {
|
|
|
37
37
|
description?: string | null;
|
|
38
38
|
id?: string | null;
|
|
39
39
|
name?: string | null;
|
|
40
|
-
sequence
|
|
40
|
+
sequence?: number;
|
|
41
41
|
}
|
|
@@ -0,0 +1,39 @@
|
|
|
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 = "47abfed1abd8cb040e28d76ea3b6a1ec";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ServiceRequestGetOutputRepresentation, existing: ServiceRequestGetOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceRequestGetOutputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ServiceRequestGetOutputRepresentationNormalized, incoming: ServiceRequestGetOutputRepresentationNormalized): 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: ServiceRequestGetOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Service Request Get Output Representation
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ServiceRequestGetOutputRepresentationNormalized {
|
|
17
|
+
/** Anchor object list */
|
|
18
|
+
anchor: {
|
|
19
|
+
[key: string]: {};
|
|
20
|
+
};
|
|
21
|
+
/** Custom Attributes list */
|
|
22
|
+
customAttributes: {
|
|
23
|
+
[key: string]: {};
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Service Request Get Output Representation
|
|
28
|
+
*
|
|
29
|
+
* Keys:
|
|
30
|
+
* (none)
|
|
31
|
+
*/
|
|
32
|
+
export interface ServiceRequestGetOutputRepresentation {
|
|
33
|
+
anchor: {
|
|
34
|
+
[key: string]: {};
|
|
35
|
+
};
|
|
36
|
+
customAttributes: {
|
|
37
|
+
[key: string]: {};
|
|
38
|
+
};
|
|
39
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-service-ecm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.348.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.348.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.348.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|