@salesforce/lds-adapters-service-ecm 1.365.0 → 1.367.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 +1900 -1235
- package/dist/es/es2018/types/src/generated/adapters/createAgentAction.d.ts +20 -0
- package/dist/es/es2018/types/src/generated/adapters/createAgentFlow.d.ts +18 -0
- 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 +4 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +6 -1
- package/dist/es/es2018/types/src/generated/resources/getConnectServiceAutomationServiceProcessGetAllTemplates.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectServiceAutomationAgentFlowAutolaunched.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectServiceAutomationGenAiActions.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectServiceAutomationTemplateDeployByTemplateId.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/types/AgentActionAttributeOutputRepresentation.d.ts +27 -27
- package/dist/es/es2018/types/src/generated/types/AgentFlowInputRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/AgentFlowOutputRepresentation.d.ts +47 -0
- package/dist/es/es2018/types/src/generated/types/AgentFlowStatusOutputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/DeploymentOutputRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/EinsteinAgentActionInputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/EinsteinAgentActionOutputRepresentation.d.ts +38 -28
- package/dist/es/es2018/types/src/generated/types/EinsteinAgentActionsOutputRepresentation.d.ts +5 -5
- 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 +2112 -1426
- package/src/raml/api.raml +190 -37
- package/src/raml/luvio.raml +31 -1
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.367.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.367.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.367.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|