@salesforce/lds-adapters-service-ecm 1.390.0 → 1.392.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.
@@ -8,7 +8,7 @@ export declare const deployTemplate_ConfigPropertyMetadata: $64$luvio_engine_Ada
8
8
  export declare const deployTemplate_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
9
9
  export interface DeployTemplateConfig {
10
10
  templateId: string;
11
- flowTemplates: Array<types_TemplateDependencyConfiguration_TemplateDependencyConfiguration>;
11
+ flowTemplates?: Array<types_TemplateDependencyConfiguration_TemplateDependencyConfiguration>;
12
12
  }
13
13
  export declare const createResourceParams: (config: DeployTemplateConfig) => resources_postConnectServiceAutomationTemplateDeployByTemplateId_ResourceRequestConfig;
14
14
  export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<DeployTemplateConfig>): adapter$45$utils_Untrusted<DeployTemplateConfig>;
@@ -6,7 +6,7 @@ export interface ResourceRequestConfig {
6
6
  templateId: string;
7
7
  };
8
8
  body: {
9
- flowTemplates: Array<types_TemplateDependencyConfiguration_TemplateDependencyConfiguration>;
9
+ flowTemplates?: Array<types_TemplateDependencyConfiguration_TemplateDependencyConfiguration>;
10
10
  };
11
11
  }
12
12
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -0,0 +1,37 @@
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 = "3ff5a9281416ad59b35a82a222e69878";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: DependencyDetails, existing: DependencyDetailsNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DependencyDetailsNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: DependencyDetailsNormalized, incoming: DependencyDetailsNormalized): 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: DependencyDetails, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Dependency details for service process templates
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface DependencyDetailsNormalized {
17
+ /** Template dependency medium */
18
+ dependencyDeploymentMedium: string;
19
+ /** Template API name */
20
+ templateApiName: string;
21
+ /** Template dependency type */
22
+ templateDependencyType: string;
23
+ /** Template type */
24
+ templateType: string;
25
+ }
26
+ /**
27
+ * Dependency details for service process templates
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface DependencyDetails {
33
+ dependencyDeploymentMedium: string;
34
+ templateApiName: string;
35
+ templateDependencyType: string;
36
+ templateType: string;
37
+ }
@@ -1,5 +1,6 @@
1
+ import { DependencyDetails as DependencyDetails_DependencyDetails } from './DependencyDetails';
1
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';
2
- export declare const VERSION = "8157048223150aa661fdf3bdd16a0944";
3
+ export declare const VERSION = "a9acc8e5fd8e1fa991e3aad1b7fa4e54";
3
4
  export declare function validate(obj: any, path?: string): TypeError | null;
4
5
  export declare const RepresentationType: string;
5
6
  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;
@@ -24,6 +25,8 @@ export interface ServiceProcessTemplateOutputRepresentationNormalized {
24
25
  imageUrl: string;
25
26
  /** Template name */
26
27
  name: string;
28
+ /** Template dependency metadata with detailed information */
29
+ templateDependencyMetadata: Array<DependencyDetails_DependencyDetails>;
27
30
  /** Template type */
28
31
  type: string;
29
32
  }
@@ -39,5 +42,6 @@ export interface ServiceProcessTemplateOutputRepresentation {
39
42
  id: string;
40
43
  imageUrl: string;
41
44
  name: string;
45
+ templateDependencyMetadata: Array<DependencyDetails_DependencyDetails>;
42
46
  type: string;
43
47
  }
@@ -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 = "18e652fe68f957b3d17e599534038578";
2
+ export declare const VERSION = "cafa99bd21bdde2063b85217bea1333e";
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: TemplateDependencyConfiguration, existing: TemplateDependencyConfigurationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TemplateDependencyConfigurationNormalized;
@@ -14,6 +14,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
14
14
  * (none)
15
15
  */
16
16
  export interface TemplateDependencyConfigurationNormalized {
17
+ /** Template dependency medium */
18
+ dependencyDeploymentMedium: string;
17
19
  /** API name of the template */
18
20
  templateApiName: string;
19
21
  /** Type of template dependency (Flow) */
@@ -32,6 +34,7 @@ export interface TemplateDependencyConfigurationNormalized {
32
34
  * (none)
33
35
  */
34
36
  export interface TemplateDependencyConfiguration {
37
+ dependencyDeploymentMedium: string;
35
38
  templateApiName: string;
36
39
  templateDependencyType?: string;
37
40
  templateType: string;
@@ -1,6 +1,6 @@
1
1
  import { TemplateDependencyConfiguration as TemplateDependencyConfiguration_TemplateDependencyConfiguration } from './TemplateDependencyConfiguration';
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 = "f71a2b1e5938ff8dafe65770a7db4ab7";
3
+ export declare const VERSION = "ec5fc429771c2cac58012d4a56c52c1c";
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: TemplateDeploymentInputRepresentation, existing: TemplateDeploymentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TemplateDeploymentInputRepresentationNormalized;
@@ -16,7 +16,7 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
16
16
  */
17
17
  export interface TemplateDeploymentInputRepresentationNormalized {
18
18
  /** Flow template configurations with type-specific variables */
19
- flowTemplates: Array<TemplateDependencyConfiguration_TemplateDependencyConfiguration>;
19
+ flowTemplates?: Array<TemplateDependencyConfiguration_TemplateDependencyConfiguration>;
20
20
  }
21
21
  /**
22
22
  * Template Deployment Input Representation with flow template configurations
@@ -25,5 +25,5 @@ export interface TemplateDeploymentInputRepresentationNormalized {
25
25
  * (none)
26
26
  */
27
27
  export interface TemplateDeploymentInputRepresentation {
28
- flowTemplates: Array<TemplateDependencyConfiguration_TemplateDependencyConfiguration>;
28
+ flowTemplates?: Array<TemplateDependencyConfiguration_TemplateDependencyConfiguration>;
29
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-service-ecm",
3
- "version": "1.390.0",
3
+ "version": "1.392.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.390.0"
43
+ "@salesforce/lds-bindings": "^1.392.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.390.0"
46
+ "@salesforce/lds-compiler-plugins": "^1.392.0"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {