@salesforce/lds-adapters-service-serviceplan 1.308.0-dev4 → 1.308.0-dev6

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.
Files changed (20) hide show
  1. package/dist/es/es2018/service-serviceplan.js +945 -187
  2. package/dist/es/es2018/types/src/generated/adapters/generateServicePlan.d.ts +21 -0
  3. package/dist/es/es2018/types/src/generated/adapters/getGenerationRequest.d.ts +27 -0
  4. package/dist/es/es2018/types/src/generated/adapters/getServicePlan.d.ts +28 -0
  5. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +3 -1
  6. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +7 -2
  7. package/dist/es/es2018/types/src/generated/resources/getConnectServicePlanGenerationRequestsByRequestId.d.ts +15 -0
  8. package/dist/es/es2018/types/src/generated/resources/getConnectServicePlanServicePlanDetailsByRecordId.d.ts +16 -0
  9. package/dist/es/es2018/types/src/generated/resources/postConnectServicePlanGenerationRequests.d.ts +5 -4
  10. package/dist/es/es2018/types/src/generated/types/ServicePlanDetailsOutputRepresentation.d.ts +59 -0
  11. package/dist/es/es2018/types/src/generated/types/ServicePlanDetailsRepresentation.d.ts +47 -0
  12. package/dist/es/es2018/types/src/generated/types/ServicePlanGenerationInputParamRepresentation.d.ts +3 -3
  13. package/dist/es/es2018/types/src/generated/types/{ServicePlanGenerationSyncOutputRepresentation.d.ts → ServicePlanGenerationOutputRepresentation.d.ts} +18 -20
  14. package/dist/es/es2018/types/src/generated/types/ServicePlanStepDetailsRepresentation.d.ts +40 -0
  15. package/dist/es/es2018/types/src/generated/types/ServicePlanStepRepresentation.d.ts +10 -13
  16. package/package.json +3 -3
  17. package/sfdc/index.js +1019 -192
  18. package/src/raml/api.raml +130 -21
  19. package/src/raml/luvio.raml +23 -3
  20. package/dist/es/es2018/types/src/generated/adapters/generateSync.d.ts +0 -20
@@ -0,0 +1,21 @@
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_postConnectServicePlanGenerationRequests_ResourceRequestConfig } from '../resources/postConnectServicePlanGenerationRequests';
4
+ import { ServicePlanGenerationOutputRepresentation as types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation } from '../types/ServicePlanGenerationOutputRepresentation';
5
+ export declare const adapterName = "generateServicePlan";
6
+ export declare const generateServicePlan_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
+ export declare const generateServicePlan_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface GenerateServicePlanConfig {
9
+ processingMode?: string;
10
+ recordId?: string;
11
+ additionalContext: {
12
+ [key: string]: string;
13
+ };
14
+ generationMode: string;
15
+ source: string;
16
+ }
17
+ export declare const createResourceParams: (config: GenerateServicePlanConfig) => resources_postConnectServicePlanGenerationRequests_ResourceRequestConfig;
18
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GenerateServicePlanConfig>): adapter$45$utils_Untrusted<GenerateServicePlanConfig>;
19
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GenerateServicePlanConfig | null;
20
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GenerateServicePlanConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, any>>;
21
+ export declare const generateServicePlanAdapterFactory: $64$luvio_engine_AdapterFactory<GenerateServicePlanConfig, types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation>;
@@ -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_getConnectServicePlanGenerationRequestsByRequestId_ResourceRequestConfig } from '../resources/getConnectServicePlanGenerationRequestsByRequestId';
4
+ import { ServicePlanGenerationOutputRepresentation as types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation } from '../types/ServicePlanGenerationOutputRepresentation';
5
+ export declare const adapterName = "getGenerationRequest";
6
+ export declare const getGenerationRequest_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
+ export declare const getGenerationRequest_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface GetGenerationRequestConfig {
9
+ requestId: string;
10
+ }
11
+ export declare const createResourceParams: (config: GetGenerationRequestConfig) => resources_getConnectServicePlanGenerationRequestsByRequestId_ResourceRequestConfig;
12
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetGenerationRequestConfig): string;
13
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetGenerationRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
14
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetGenerationRequestConfig>): adapter$45$utils_Untrusted<GetGenerationRequestConfig>;
15
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetGenerationRequestConfig | null;
16
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetGenerationRequestConfig): $64$luvio_engine_Fragment;
17
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetGenerationRequestConfig): $64$luvio_engine_Snapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, any>;
18
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetGenerationRequestConfig, resourceParams: resources_getConnectServicePlanGenerationRequestsByRequestId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, any>>;
19
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetGenerationRequestConfig, resourceParams: resources_getConnectServicePlanGenerationRequestsByRequestId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
20
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetGenerationRequestConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, any>>;
21
+ export type BuildSnapshotContext = {
22
+ luvio: $64$luvio_engine_Luvio;
23
+ config: GetGenerationRequestConfig;
24
+ };
25
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, any>>;
26
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation>): $64$luvio_engine_Snapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, any>;
27
+ export declare const getGenerationRequestAdapterFactory: $64$luvio_engine_AdapterFactory<GetGenerationRequestConfig, types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation>;
@@ -0,0 +1,28 @@
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, UncoercedConfiguration as adapter$45$utils_UncoercedConfiguration } from './adapter-utils';
3
+ import { ResourceRequestConfig as resources_getConnectServicePlanServicePlanDetailsByRecordId_ResourceRequestConfig } from '../resources/getConnectServicePlanServicePlanDetailsByRecordId';
4
+ import { ServicePlanDetailsOutputRepresentation as types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation, KeyParams as types_ServicePlanDetailsOutputRepresentation_KeyParams } from '../types/ServicePlanDetailsOutputRepresentation';
5
+ export declare const adapterName = "getServicePlan";
6
+ export declare const getServicePlan_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
+ export declare const getServicePlan_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface GetServicePlanConfig {
9
+ recordId: string;
10
+ }
11
+ export declare const createResourceParams: (config: GetServicePlanConfig) => resources_getConnectServicePlanServicePlanDetailsByRecordId_ResourceRequestConfig;
12
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetServicePlanConfig): string;
13
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetServicePlanConfig): $64$luvio_engine_NormalizedKeyMetadata;
14
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetServicePlanConfig>): adapter$45$utils_Untrusted<GetServicePlanConfig>;
15
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetServicePlanConfig | null;
16
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetServicePlanConfig): $64$luvio_engine_Fragment;
17
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetServicePlanConfig): $64$luvio_engine_Snapshot<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation, any>;
18
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetServicePlanConfig, resourceParams: resources_getConnectServicePlanServicePlanDetailsByRecordId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation, any>>;
19
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetServicePlanConfig, resourceParams: resources_getConnectServicePlanServicePlanDetailsByRecordId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
20
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetServicePlanConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation, any>>;
21
+ export type BuildSnapshotContext = {
22
+ luvio: $64$luvio_engine_Luvio;
23
+ config: GetServicePlanConfig;
24
+ };
25
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation, any>>;
26
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation>): $64$luvio_engine_Snapshot<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation, any>;
27
+ export declare const getServicePlanAdapterFactory: $64$luvio_engine_AdapterFactory<GetServicePlanConfig, types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation>;
28
+ export declare const notifyChangeFactory: (luvio: $64$luvio_engine_Luvio, options?: $64$luvio_engine_DispatchResourceRequestContext) => (configs: adapter$45$utils_UncoercedConfiguration<types_ServicePlanDetailsOutputRepresentation_KeyParams, any>[]) => void;
@@ -1,2 +1,4 @@
1
1
  export { executeServicePlanAdapterFactory } from '../adapters/executeServicePlan';
2
- export { generateSyncAdapterFactory } from '../adapters/generateSync';
2
+ export { generateServicePlanAdapterFactory } from '../adapters/generateServicePlan';
3
+ export { getGenerationRequestAdapterFactory } from '../adapters/getGenerationRequest';
4
+ export { getServicePlanAdapterFactory } from '../adapters/getServicePlan';
@@ -1,3 +1,8 @@
1
1
  declare let executeServicePlan: any;
2
- declare let generateSync: any;
3
- export { executeServicePlan, generateSync };
2
+ declare let generateServicePlan: any;
3
+ declare let getGenerationRequest: any;
4
+ declare let getServicePlan: any;
5
+ declare let getServicePlanNotifyChange: any;
6
+ declare let getGenerationRequest_imperative: any;
7
+ declare let getServicePlan_imperative: any;
8
+ export { executeServicePlan, generateServicePlan, getGenerationRequest, getServicePlan, getServicePlanNotifyChange, getGenerationRequest_imperative, getServicePlan_imperative, };
@@ -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 { ServicePlanGenerationOutputRepresentation as types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation } from '../types/ServicePlanGenerationOutputRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ requestId: 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_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation): void;
12
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, any>;
13
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
14
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
15
+ export default createResourceRequest;
@@ -0,0 +1,16 @@
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 { ServicePlanDetailsOutputRepresentation as types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation } from '../types/ServicePlanDetailsOutputRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ recordId: 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_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation): void;
12
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation, any>;
13
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
14
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
15
+ export default createResourceRequest;
16
+ export declare function createResourceRequestFromRepresentation(representation: types_ServicePlanDetailsOutputRepresentation_ServicePlanDetailsOutputRepresentation): $64$luvio_engine_ResourceRequest;
@@ -1,19 +1,20 @@
1
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 { ServicePlanGenerationSyncOutputRepresentation as types_ServicePlanGenerationSyncOutputRepresentation_ServicePlanGenerationSyncOutputRepresentation } from '../types/ServicePlanGenerationSyncOutputRepresentation';
2
+ import { ServicePlanGenerationOutputRepresentation as types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation } from '../types/ServicePlanGenerationOutputRepresentation';
3
3
  export interface ResourceRequestConfig {
4
4
  queryParams: {
5
+ processingMode?: string;
5
6
  recordId?: string;
6
7
  };
7
8
  body: {
8
9
  additionalContext: {
9
10
  [key: string]: string;
10
11
  };
11
- mode: string;
12
+ generationMode: string;
12
13
  source: string;
13
14
  };
14
15
  }
15
16
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
16
- export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ServicePlanGenerationSyncOutputRepresentation_ServicePlanGenerationSyncOutputRepresentation): void;
17
- export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ServicePlanGenerationSyncOutputRepresentation_ServicePlanGenerationSyncOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ServicePlanGenerationSyncOutputRepresentation_ServicePlanGenerationSyncOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ServicePlanGenerationSyncOutputRepresentation_ServicePlanGenerationSyncOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ServicePlanGenerationSyncOutputRepresentation_ServicePlanGenerationSyncOutputRepresentation, any>;
17
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation): void;
18
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ServicePlanGenerationOutputRepresentation_ServicePlanGenerationOutputRepresentation, any>;
18
19
  export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
19
20
  export default createResourceRequest;
@@ -0,0 +1,59 @@
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, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ import { ServicePlanDetailsRepresentation as ServicePlanDetailsRepresentation_ServicePlanDetailsRepresentation } from './ServicePlanDetailsRepresentation';
3
+ export declare const TTL = 1000;
4
+ export declare const VERSION = "2dd60cd6c267351cb563fcc04cb5cb56";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export interface KeyParams extends $64$luvio_engine_KeyMetadata {
8
+ id: string;
9
+ }
10
+ export type ServicePlanDetailsOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
11
+ export type PartialServicePlanDetailsOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
12
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
13
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ServicePlanDetailsOutputRepresentationNormalizedKeyMetadata;
14
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ServicePlanDetailsOutputRepresentation): string;
15
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ServicePlanDetailsOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
16
+ export declare function normalize(input: ServicePlanDetailsOutputRepresentation, existing: ServicePlanDetailsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServicePlanDetailsOutputRepresentationNormalized;
17
+ export interface DynamicIngestParams {
18
+ plan: $64$luvio_engine_ResourceIngest;
19
+ }
20
+ export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: ServicePlanDetailsOutputRepresentation, existing: ServicePlanDetailsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => ServicePlanDetailsOutputRepresentationNormalized;
21
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
22
+ export interface DynamicSelectParams {
23
+ plan?: $64$luvio_engine_LinkSelection;
24
+ }
25
+ export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
26
+ export declare function equals(existing: ServicePlanDetailsOutputRepresentationNormalized, incoming: ServicePlanDetailsOutputRepresentationNormalized): boolean;
27
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
28
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServicePlanDetailsOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
29
+ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
30
+ /**
31
+ * Represent the service plan details
32
+ *
33
+ * Keys:
34
+ * id (string): planRequestId
35
+ */
36
+ export interface ServicePlanDetailsOutputRepresentationNormalized {
37
+ plan: $64$luvio_engine_StoreLink;
38
+ /** The record ID of plan request passed to this Connect API */
39
+ planRequestId: string;
40
+ /** The reason of the Service Plan Details */
41
+ reason: string;
42
+ /** The reason details of the Service Plan Details */
43
+ reasonDetails: string | null;
44
+ /** The status of the Service Plan Details */
45
+ status: string;
46
+ }
47
+ /**
48
+ * Represent the service plan details
49
+ *
50
+ * Keys:
51
+ * id (string): planRequestId
52
+ */
53
+ export interface ServicePlanDetailsOutputRepresentation {
54
+ plan: ServicePlanDetailsRepresentation_ServicePlanDetailsRepresentation;
55
+ planRequestId: string;
56
+ reason: string;
57
+ reasonDetails: string | null;
58
+ status: string;
59
+ }
@@ -0,0 +1,47 @@
1
+ import { ServicePlanStepDetailsRepresentation as ServicePlanStepDetailsRepresentation_ServicePlanStepDetailsRepresentation } from './ServicePlanStepDetailsRepresentation';
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, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "b4f5b09aa7f657ce0b31e25aa7b50b1c";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ServicePlanDetailsRepresentation, existing: ServicePlanDetailsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServicePlanDetailsRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_BaseFragment;
8
+ export declare function equals(existing: ServicePlanDetailsRepresentationNormalized, incoming: ServicePlanDetailsRepresentationNormalized): 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: ServicePlanDetailsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Service Plan representation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ServicePlanDetailsRepresentationNormalized {
18
+ /** clientFeature ID */
19
+ clientFeatureId: string | null;
20
+ /** Created Date */
21
+ createdDate: string | null;
22
+ /** Execution Status */
23
+ executionStatus: string | null;
24
+ /** Feedback ID */
25
+ feedbackId: string | null;
26
+ /** Plan ID */
27
+ planId: string | null;
28
+ /** Service Plan Steps */
29
+ servicePlanSteps: Array<$64$luvio_engine_StoreLink>;
30
+ /** Topic */
31
+ topic: string | null;
32
+ }
33
+ /**
34
+ * Service Plan representation
35
+ *
36
+ * Keys:
37
+ * (none)
38
+ */
39
+ export interface ServicePlanDetailsRepresentation {
40
+ clientFeatureId: string | null;
41
+ createdDate: string | null;
42
+ executionStatus: string | null;
43
+ feedbackId: string | null;
44
+ planId: string | null;
45
+ servicePlanSteps: Array<ServicePlanStepDetailsRepresentation_ServicePlanStepDetailsRepresentation>;
46
+ topic: string | null;
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 = "a7d2c323117124a2042614fe073adde7";
2
+ export declare const VERSION = "1b14b78cea1609723279d543c9c4ebf6";
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: ServicePlanGenerationInputParamRepresentation, existing: ServicePlanGenerationInputParamRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServicePlanGenerationInputParamRepresentationNormalized;
@@ -19,7 +19,7 @@ export interface ServicePlanGenerationInputParamRepresentationNormalized {
19
19
  [key: string]: string;
20
20
  };
21
21
  /** Plan generation mode */
22
- mode: string;
22
+ generationMode: string;
23
23
  /** Origin for the plan generation request */
24
24
  source: string;
25
25
  }
@@ -33,6 +33,6 @@ export interface ServicePlanGenerationInputParamRepresentation {
33
33
  additionalContext: {
34
34
  [key: string]: string;
35
35
  };
36
- mode: string;
36
+ generationMode: string;
37
37
  source: string;
38
38
  }
@@ -1,39 +1,39 @@
1
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, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
2
  import { ServicePlanOutputRepresentation as ServicePlanOutputRepresentation_ServicePlanOutputRepresentation } from './ServicePlanOutputRepresentation';
3
3
  export declare const TTL = 1000;
4
- export declare const VERSION = "e8180e1000b0af7a1bd8c7016fbb8ac2";
4
+ export declare const VERSION = "1b54ee684d826acba0725f11c75ee33b";
5
5
  export declare function validate(obj: any, path?: string): TypeError | null;
6
6
  export declare const RepresentationType: string;
7
7
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
8
- id: string;
8
+ id: string | null;
9
9
  }
10
- export type ServicePlanGenerationSyncOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
11
- export type PartialServicePlanGenerationSyncOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
10
+ export type ServicePlanGenerationOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
11
+ export type PartialServicePlanGenerationOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
12
12
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
13
- export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ServicePlanGenerationSyncOutputRepresentationNormalizedKeyMetadata;
14
- export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ServicePlanGenerationSyncOutputRepresentation): string;
15
- export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ServicePlanGenerationSyncOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
16
- export declare function normalize(input: ServicePlanGenerationSyncOutputRepresentation, existing: ServicePlanGenerationSyncOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServicePlanGenerationSyncOutputRepresentationNormalized;
13
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ServicePlanGenerationOutputRepresentationNormalizedKeyMetadata;
14
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ServicePlanGenerationOutputRepresentation): string;
15
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ServicePlanGenerationOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
16
+ export declare function normalize(input: ServicePlanGenerationOutputRepresentation, existing: ServicePlanGenerationOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServicePlanGenerationOutputRepresentationNormalized;
17
17
  export interface DynamicIngestParams {
18
18
  plan: $64$luvio_engine_ResourceIngest;
19
19
  }
20
- export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: ServicePlanGenerationSyncOutputRepresentation, existing: ServicePlanGenerationSyncOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => ServicePlanGenerationSyncOutputRepresentationNormalized;
20
+ export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: ServicePlanGenerationOutputRepresentation, existing: ServicePlanGenerationOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => ServicePlanGenerationOutputRepresentationNormalized;
21
21
  export declare const select: () => $64$luvio_engine_FragmentSelection;
22
22
  export interface DynamicSelectParams {
23
23
  plan?: $64$luvio_engine_LinkSelection;
24
24
  }
25
25
  export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
26
- export declare function equals(existing: ServicePlanGenerationSyncOutputRepresentationNormalized, incoming: ServicePlanGenerationSyncOutputRepresentationNormalized): boolean;
26
+ export declare function equals(existing: ServicePlanGenerationOutputRepresentationNormalized, incoming: ServicePlanGenerationOutputRepresentationNormalized): boolean;
27
27
  export declare const ingest: $64$luvio_engine_ResourceIngest;
28
- export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServicePlanGenerationSyncOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
28
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ServicePlanGenerationOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
29
29
  export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
30
30
  /**
31
31
  * Represent the service plan generation result
32
32
  *
33
33
  * Keys:
34
- * id (string): reason
34
+ * id (string | null): id
35
35
  */
36
- export interface ServicePlanGenerationSyncOutputRepresentationNormalized {
36
+ export interface ServicePlanGenerationOutputRepresentationNormalized {
37
37
  /** The Copilot used for this service plan generation request */
38
38
  copilotId: string | null;
39
39
  /** Name of the Copilot used for this service plan generation request */
@@ -42,11 +42,10 @@ export interface ServicePlanGenerationSyncOutputRepresentationNormalized {
42
42
  errorMessage: string | null;
43
43
  /** The generated request ID */
44
44
  id: string | null;
45
- plan: $64$luvio_engine_StoreLink;
45
+ /** The generated service plan */
46
+ plan: $64$luvio_engine_StoreLink | null;
46
47
  /** The reason of the service plan creation request job failure */
47
48
  reason: string;
48
- /** The details of the service plan creation request job failure */
49
- reasonDetails: string | null;
50
49
  /** The record this plan generation was requested for */
51
50
  recordId: string;
52
51
  /** The Status of the service plan creation request job */
@@ -58,16 +57,15 @@ export interface ServicePlanGenerationSyncOutputRepresentationNormalized {
58
57
  * Represent the service plan generation result
59
58
  *
60
59
  * Keys:
61
- * id (string): reason
60
+ * id (string | null): id
62
61
  */
63
- export interface ServicePlanGenerationSyncOutputRepresentation {
62
+ export interface ServicePlanGenerationOutputRepresentation {
64
63
  copilotId: string | null;
65
64
  copilotName: string | null;
66
65
  errorMessage: string | null;
67
66
  id: string | null;
68
- plan: ServicePlanOutputRepresentation_ServicePlanOutputRepresentation;
67
+ plan: ServicePlanOutputRepresentation_ServicePlanOutputRepresentation | null;
69
68
  reason: string;
70
- reasonDetails: string | null;
71
69
  recordId: string;
72
70
  status: string;
73
71
  type: string;
@@ -0,0 +1,40 @@
1
+ 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';
2
+ export declare const VERSION = "688e993994147cbf0b28f1c6cd4edb65";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ServicePlanStepDetailsRepresentation, existing: ServicePlanStepDetailsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServicePlanStepDetailsRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_BaseFragment;
7
+ export declare function equals(existing: ServicePlanStepDetailsRepresentationNormalized, incoming: ServicePlanStepDetailsRepresentationNormalized): 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: ServicePlanStepDetailsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Service Plan step representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ServicePlanStepDetailsRepresentationNormalized {
17
+ /** Step execution state */
18
+ executionStatus: string;
19
+ /** Group Name */
20
+ groupName: string | null;
21
+ /** Step order */
22
+ order: number;
23
+ /** Step ID */
24
+ stepId: string;
25
+ /** Step name */
26
+ stepName: string;
27
+ }
28
+ /**
29
+ * Service Plan step representation
30
+ *
31
+ * Keys:
32
+ * (none)
33
+ */
34
+ export interface ServicePlanStepDetailsRepresentation {
35
+ executionStatus: string;
36
+ groupName: string | null;
37
+ order: number;
38
+ stepId: string;
39
+ stepName: string;
40
+ }
@@ -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, 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';
2
- export declare const VERSION = "1ef9cea6db5317915c38d18145d430c1";
2
+ export declare const VERSION = "35bfcd3696ac4963b29fe5c6a9efd404";
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: ServicePlanStepRepresentation, existing: ServicePlanStepRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ServicePlanStepRepresentationNormalized;
@@ -14,16 +14,14 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
14
14
  * (none)
15
15
  */
16
16
  export interface ServicePlanStepRepresentationNormalized {
17
- /** Order in which this action will be executed */
18
- actionOrder: number;
19
- /** The name of the service plan step */
20
- functionName: string;
17
+ /** The group name of service plan step */
18
+ groupName: string | null;
21
19
  /** Generated Plan Step ID */
22
20
  id: string;
23
- /** ID of the action related to this generated plan step */
24
- relatedActionId: string;
25
- /** The description of the service plan step */
26
- summary: string;
21
+ /** The name of service plan step */
22
+ name: string | null;
23
+ /** Order in which this action will be executed */
24
+ order: number;
27
25
  }
28
26
  /**
29
27
  * Represent a step of a generated Service Plan
@@ -32,9 +30,8 @@ export interface ServicePlanStepRepresentationNormalized {
32
30
  * (none)
33
31
  */
34
32
  export interface ServicePlanStepRepresentation {
35
- actionOrder: number;
36
- functionName: string;
33
+ groupName: string | null;
37
34
  id: string;
38
- relatedActionId: string;
39
- summary: string;
35
+ name: string | null;
36
+ order: number;
40
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-service-serviceplan",
3
- "version": "1.308.0-dev4",
3
+ "version": "1.308.0-dev6",
4
4
  "description": "collectionof service plan apis",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/service-serviceplan.js",
@@ -40,10 +40,10 @@
40
40
  "test:unit": "jest"
41
41
  },
42
42
  "dependencies": {
43
- "@salesforce/lds-bindings": "^1.308.0-dev4"
43
+ "@salesforce/lds-bindings": "^1.308.0-dev6"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.308.0-dev4"
46
+ "@salesforce/lds-compiler-plugins": "^1.308.0-dev6"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {