@salesforce/lds-adapters-service-ecm 1.365.0 → 1.366.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 +970 -542
- package/dist/es/es2018/types/src/generated/adapters/deployTemplate.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/adapters/getAllServiceProcessTemplate.d.ts +26 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/resources/getConnectServiceAutomationServiceProcessGetAllTemplates.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectServiceAutomationTemplateDeployByTemplateId.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/types/DeploymentOutputRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/ServiceProcessTemplateOutputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/ServiceProcessTemplatesOutputRepresentation.d.ts +30 -0
- package/package.json +3 -3
- package/sfdc/index.js +829 -386
- package/src/raml/api.raml +73 -0
- package/src/raml/luvio.raml +15 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, 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_postConnectServiceAutomationTemplateDeployByTemplateId_ResourceRequestConfig } from '../resources/postConnectServiceAutomationTemplateDeployByTemplateId';
|
|
4
|
+
import { DeploymentOutputRepresentation as types_DeploymentOutputRepresentation_DeploymentOutputRepresentation } from '../types/DeploymentOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "deployTemplate";
|
|
6
|
+
export declare const deployTemplate_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const deployTemplate_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface DeployTemplateConfig {
|
|
9
|
+
templateId: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: DeployTemplateConfig) => resources_postConnectServiceAutomationTemplateDeployByTemplateId_ResourceRequestConfig;
|
|
12
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<DeployTemplateConfig>): adapter$45$utils_Untrusted<DeployTemplateConfig>;
|
|
13
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): DeployTemplateConfig | null;
|
|
14
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: DeployTemplateConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_DeploymentOutputRepresentation_DeploymentOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_DeploymentOutputRepresentation_DeploymentOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_DeploymentOutputRepresentation_DeploymentOutputRepresentation, any>>;
|
|
15
|
+
export declare const deployTemplateAdapterFactory: $64$luvio_engine_AdapterFactory<DeployTemplateConfig, types_DeploymentOutputRepresentation_DeploymentOutputRepresentation>;
|
|
@@ -0,0 +1,26 @@
|
|
|
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_getConnectServiceAutomationServiceProcessGetAllTemplates_ResourceRequestConfig } from '../resources/getConnectServiceAutomationServiceProcessGetAllTemplates';
|
|
4
|
+
import { ServiceProcessTemplatesOutputRepresentation as types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation } from '../types/ServiceProcessTemplatesOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "getAllServiceProcessTemplate";
|
|
6
|
+
export declare const getAllServiceProcessTemplate_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getAllServiceProcessTemplate_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetAllServiceProcessTemplateConfig {
|
|
9
|
+
}
|
|
10
|
+
export declare const createResourceParams: (config: GetAllServiceProcessTemplateConfig) => resources_getConnectServiceAutomationServiceProcessGetAllTemplates_ResourceRequestConfig;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetAllServiceProcessTemplateConfig): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetAllServiceProcessTemplateConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetAllServiceProcessTemplateConfig>): adapter$45$utils_Untrusted<GetAllServiceProcessTemplateConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetAllServiceProcessTemplateConfig | null;
|
|
15
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetAllServiceProcessTemplateConfig): $64$luvio_engine_Fragment;
|
|
16
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetAllServiceProcessTemplateConfig): $64$luvio_engine_Snapshot<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation, any>;
|
|
17
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetAllServiceProcessTemplateConfig, resourceParams: resources_getConnectServiceAutomationServiceProcessGetAllTemplates_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation, any>>;
|
|
18
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetAllServiceProcessTemplateConfig, resourceParams: resources_getConnectServiceAutomationServiceProcessGetAllTemplates_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
19
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetAllServiceProcessTemplateConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation, any>>;
|
|
20
|
+
export type BuildSnapshotContext = {
|
|
21
|
+
luvio: $64$luvio_engine_Luvio;
|
|
22
|
+
config: GetAllServiceProcessTemplateConfig;
|
|
23
|
+
};
|
|
24
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation, any>>;
|
|
25
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation>): $64$luvio_engine_Snapshot<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation, any>;
|
|
26
|
+
export declare const getAllServiceProcessTemplateAdapterFactory: $64$luvio_engine_AdapterFactory<GetAllServiceProcessTemplateConfig, types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation>;
|
|
@@ -3,7 +3,9 @@ export { getCatalogItemAdapterFactory } from '../adapters/getCatalogItem';
|
|
|
3
3
|
export { updateCatalogItemAdapterFactory } from '../adapters/updateCatalogItem';
|
|
4
4
|
export { updateEpcCategoriesAdapterFactory } from '../adapters/updateEpcCategories';
|
|
5
5
|
export { getAllServiceAutomationDepAdapterFactory } from '../adapters/getAllServiceAutomationDep';
|
|
6
|
+
export { getAllServiceProcessTemplateAdapterFactory } from '../adapters/getAllServiceProcessTemplate';
|
|
6
7
|
export { getAgentActionsAdapterFactory } from '../adapters/getAgentActions';
|
|
7
8
|
export { generateIntakeFormAdapterFactory } from '../adapters/generateIntakeForm';
|
|
8
9
|
export { generateOmniScriptAdapterFactory } from '../adapters/generateOmniScript';
|
|
9
10
|
export { getServiceRequestAdapterFactory } from '../adapters/getServiceRequest';
|
|
11
|
+
export { deployTemplateAdapterFactory } from '../adapters/deployTemplate';
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
declare let createCatalogItem: any;
|
|
2
|
+
declare let deployTemplate: any;
|
|
2
3
|
declare let generateIntakeForm: any;
|
|
3
4
|
declare let generateOmniScript: any;
|
|
4
5
|
declare let getAgentActions: any;
|
|
5
6
|
declare let getAllServiceAutomationDep: any;
|
|
7
|
+
declare let getAllServiceProcessTemplate: any;
|
|
6
8
|
declare let getCatalogItem: any;
|
|
7
9
|
declare let getServiceRequest: any;
|
|
8
10
|
declare let updateCatalogItem: any;
|
|
9
11
|
declare let updateEpcCategories: any;
|
|
10
12
|
declare let getAgentActions_imperative: any;
|
|
11
13
|
declare let getAllServiceAutomationDep_imperative: any;
|
|
14
|
+
declare let getAllServiceProcessTemplate_imperative: any;
|
|
12
15
|
declare let getCatalogItem_imperative: any;
|
|
13
16
|
declare let getServiceRequest_imperative: any;
|
|
14
|
-
export { createCatalogItem, generateIntakeForm, generateOmniScript, getAgentActions, getAllServiceAutomationDep, getCatalogItem, getServiceRequest, updateCatalogItem, updateEpcCategories, getAgentActions_imperative, getAllServiceAutomationDep_imperative, getCatalogItem_imperative, getServiceRequest_imperative, };
|
|
17
|
+
export { createCatalogItem, deployTemplate, generateIntakeForm, generateOmniScript, getAgentActions, getAllServiceAutomationDep, getAllServiceProcessTemplate, getCatalogItem, getServiceRequest, updateCatalogItem, updateEpcCategories, getAgentActions_imperative, getAllServiceAutomationDep_imperative, getAllServiceProcessTemplate_imperative, getCatalogItem_imperative, getServiceRequest_imperative, };
|
|
@@ -0,0 +1,12 @@
|
|
|
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 { ServiceProcessTemplatesOutputRepresentation as types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation } from '../types/ServiceProcessTemplatesOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
}
|
|
5
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
6
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
7
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
8
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation): void;
|
|
9
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation, any>;
|
|
10
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ServiceProcessTemplatesOutputRepresentation_ServiceProcessTemplatesOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
11
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
12
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
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';
|
|
2
|
+
import { DeploymentOutputRepresentation as types_DeploymentOutputRepresentation_DeploymentOutputRepresentation } from '../types/DeploymentOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
templateId: string;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_DeploymentOutputRepresentation_DeploymentOutputRepresentation): void;
|
|
10
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DeploymentOutputRepresentation_DeploymentOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_DeploymentOutputRepresentation_DeploymentOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_DeploymentOutputRepresentation_DeploymentOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_DeploymentOutputRepresentation_DeploymentOutputRepresentation, any>;
|
|
11
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
12
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
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';
|
|
2
|
+
export declare const TTL = 6000;
|
|
3
|
+
export declare const VERSION = "86e4694b8895fc704a6e48475634556a";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
7
|
+
templateId: string;
|
|
8
|
+
}
|
|
9
|
+
export type DeploymentOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialDeploymentOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): DeploymentOutputRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: DeploymentOutputRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: DeploymentOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: DeploymentOutputRepresentation, existing: DeploymentOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DeploymentOutputRepresentationNormalized;
|
|
16
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
17
|
+
export declare function equals(existing: DeploymentOutputRepresentationNormalized, incoming: DeploymentOutputRepresentationNormalized): boolean;
|
|
18
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DeploymentOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
/**
|
|
21
|
+
* Template Deployment Output Representation
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* templateId (string): templateId
|
|
25
|
+
*/
|
|
26
|
+
export interface DeploymentOutputRepresentationNormalized {
|
|
27
|
+
/** Result of the template deployment */
|
|
28
|
+
deploymentResult: string;
|
|
29
|
+
/** Status of the deployment (SUCCESS or FAILURE) */
|
|
30
|
+
status: string;
|
|
31
|
+
/** Template ID that was deployed */
|
|
32
|
+
templateId: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Template Deployment Output Representation
|
|
36
|
+
*
|
|
37
|
+
* Keys:
|
|
38
|
+
* templateId (string): templateId
|
|
39
|
+
*/
|
|
40
|
+
export interface DeploymentOutputRepresentation {
|
|
41
|
+
deploymentResult: string;
|
|
42
|
+
status: string;
|
|
43
|
+
templateId: string;
|
|
44
|
+
}
|
package/dist/es/es2018/types/src/generated/types/ServiceProcessTemplateOutputRepresentation.d.ts
ADDED
|
@@ -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 = "8157048223150aa661fdf3bdd16a0944";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ServiceProcessTemplateOutputRepresentation, existing: ServiceProcessTemplateOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceProcessTemplateOutputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ServiceProcessTemplateOutputRepresentationNormalized, incoming: ServiceProcessTemplateOutputRepresentationNormalized): 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: ServiceProcessTemplateOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Output Representation of Service Process Template
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ServiceProcessTemplateOutputRepresentationNormalized {
|
|
17
|
+
/** Template created date */
|
|
18
|
+
createdDate: string;
|
|
19
|
+
/** Template description */
|
|
20
|
+
description: string;
|
|
21
|
+
/** Template Id */
|
|
22
|
+
id: string;
|
|
23
|
+
/** Template image url */
|
|
24
|
+
imageUrl: string;
|
|
25
|
+
/** Template name */
|
|
26
|
+
name: string;
|
|
27
|
+
/** Template type */
|
|
28
|
+
type: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Output Representation of Service Process Template
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* (none)
|
|
35
|
+
*/
|
|
36
|
+
export interface ServiceProcessTemplateOutputRepresentation {
|
|
37
|
+
createdDate: string;
|
|
38
|
+
description: string;
|
|
39
|
+
id: string;
|
|
40
|
+
imageUrl: string;
|
|
41
|
+
name: string;
|
|
42
|
+
type: string;
|
|
43
|
+
}
|
package/dist/es/es2018/types/src/generated/types/ServiceProcessTemplatesOutputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ServiceProcessTemplateOutputRepresentation as ServiceProcessTemplateOutputRepresentation_ServiceProcessTemplateOutputRepresentation } from './ServiceProcessTemplateOutputRepresentation';
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 6000;
|
|
4
|
+
export declare const VERSION = "1cae1bb3aeefe004ae9d9248ac15a1d5";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: ServiceProcessTemplatesOutputRepresentation, existing: ServiceProcessTemplatesOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServiceProcessTemplatesOutputRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: ServiceProcessTemplatesOutputRepresentationNormalized, incoming: ServiceProcessTemplatesOutputRepresentationNormalized): boolean;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServiceProcessTemplatesOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Output Representation of Service Process Templates
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ServiceProcessTemplatesOutputRepresentationNormalized {
|
|
19
|
+
/** Service Process Template List */
|
|
20
|
+
serviceProcessTemplateOutputRepresentation: Array<ServiceProcessTemplateOutputRepresentation_ServiceProcessTemplateOutputRepresentation>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Output Representation of Service Process Templates
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ServiceProcessTemplatesOutputRepresentation {
|
|
29
|
+
serviceProcessTemplateOutputRepresentation: Array<ServiceProcessTemplateOutputRepresentation_ServiceProcessTemplateOutputRepresentation>;
|
|
30
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-service-ecm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.366.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.366.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.366.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|