@salesforce/lds-adapters-platform-flow-builder 1.134.2 → 1.134.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-platform-flow-builder",
3
- "version": "1.134.2",
3
+ "version": "1.134.4",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "API related to flow builder",
6
6
  "main": "dist/es/es2018/platform-flow-builder.js",
package/sfdc/index.js CHANGED
@@ -910,4 +910,4 @@ withDefaultLuvio((luvio) => {
910
910
  });
911
911
 
912
912
  export { getRules, getRules_imperative };
913
- // version: 1.134.2-29b530b89
913
+ // version: 1.134.4-a74ddaa33
package/src/raml/api.raml CHANGED
@@ -376,67 +376,68 @@ types:
376
376
  relatedRecordId:
377
377
  type: string
378
378
  required: false
379
- /runtime/{flowDevName}:
380
- /navigateFlow:
381
- post:
382
- description: Navigate a flow
383
- responses:
384
- '200':
385
- description: Success
386
- body:
387
- application/json:
388
- type: FlowRuntimeResponseRepresentation
389
- body:
390
- application/json:
391
- type: FlowRuntimeNavigateRequestRepresentation
392
- (oas-body-name): request
393
- uriParameters:
394
- flowDevName:
395
- type: string
396
- required: true
397
- /resumeFlow:
398
- post:
399
- description: Resume a flow
400
- responses:
401
- '200':
402
- description: Success
403
- body:
404
- application/json:
405
- type: FlowRuntimeResponseRepresentation
406
- queryParameters:
407
- pausedInterviewId:
408
- type: string
409
- required: false
410
- uriParameters:
411
- flowDevName:
412
- type: string
413
- required: true
414
- /startFlow:
415
- post:
416
- description: Starts a flow
417
- responses:
418
- '200':
419
- description: Success
420
- body:
421
- application/json:
422
- type: FlowRuntimeResponseRepresentation
423
- queryParameters:
424
- arguments:
425
- type: string
426
- required: false
427
- debugAsUserId:
428
- type: string
429
- required: false
430
- enableRollbackMode:
431
- type: boolean
432
- required: false
433
- enableTrace:
434
- type: boolean
435
- required: false
436
- flowVersionId:
437
- type: string
438
- required: false
439
- uriParameters:
440
- flowDevName:
441
- type: string
442
- required: true
379
+ # TODO: Hand rolled
380
+ # /runtime/{flowDevName}:
381
+ # /navigateFlow:
382
+ # post:
383
+ # description: Navigate a flow
384
+ # responses:
385
+ # '200':
386
+ # description: Success
387
+ # body:
388
+ # application/json:
389
+ # type: FlowRuntimeResponseRepresentation
390
+ # body:
391
+ # application/json:
392
+ # type: FlowRuntimeNavigateRequestRepresentation
393
+ # (oas-body-name): request
394
+ # uriParameters:
395
+ # flowDevName:
396
+ # type: string
397
+ # required: true
398
+ # /resumeFlow:
399
+ # post:
400
+ # description: Resume a flow
401
+ # responses:
402
+ # '200':
403
+ # description: Success
404
+ # body:
405
+ # application/json:
406
+ # type: FlowRuntimeResponseRepresentation
407
+ # queryParameters:
408
+ # pausedInterviewId:
409
+ # type: string
410
+ # required: false
411
+ # uriParameters:
412
+ # flowDevName:
413
+ # type: string
414
+ # required: true
415
+ # /startFlow:
416
+ # post:
417
+ # description: Starts a flow
418
+ # responses:
419
+ # '200':
420
+ # description: Success
421
+ # body:
422
+ # application/json:
423
+ # type: FlowRuntimeResponseRepresentation
424
+ # queryParameters:
425
+ # arguments:
426
+ # type: string
427
+ # required: false
428
+ # debugAsUserId:
429
+ # type: string
430
+ # required: false
431
+ # enableRollbackMode:
432
+ # type: boolean
433
+ # required: false
434
+ # enableTrace:
435
+ # type: boolean
436
+ # required: false
437
+ # flowVersionId:
438
+ # type: string
439
+ # required: false
440
+ # uriParameters:
441
+ # flowDevName:
442
+ # type: string
443
+ # required: true
@@ -1,22 +0,0 @@
1
- import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { FlowRuntimeResponseRepresentation as types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation } from '../types/FlowRuntimeResponseRepresentation';
3
- export interface ResourceRequestConfig {
4
- urlParams: {
5
- flowDevName: string;
6
- };
7
- body: {
8
- action: string;
9
- enableTrace: boolean;
10
- fields: Array<{}>;
11
- lcErrors: {
12
- [key: string]: {};
13
- };
14
- serializedState: string;
15
- uiElementVisited: boolean;
16
- };
17
- }
18
- export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
19
- export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
20
- export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, any>;
21
- export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
22
- export default createResourceRequest;
@@ -1,15 +0,0 @@
1
- import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { FlowRuntimeResponseRepresentation as types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation } from '../types/FlowRuntimeResponseRepresentation';
3
- export interface ResourceRequestConfig {
4
- urlParams: {
5
- flowDevName: string;
6
- };
7
- queryParams: {
8
- pausedInterviewId?: string;
9
- };
10
- }
11
- export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
12
- export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
13
- export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, any>;
14
- export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
15
- export default createResourceRequest;
@@ -1,19 +0,0 @@
1
- import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { FlowRuntimeResponseRepresentation as types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation } from '../types/FlowRuntimeResponseRepresentation';
3
- export interface ResourceRequestConfig {
4
- urlParams: {
5
- flowDevName: string;
6
- };
7
- queryParams: {
8
- arguments?: string;
9
- debugAsUserId?: string;
10
- enableRollbackMode?: boolean;
11
- enableTrace?: boolean;
12
- flowVersionId?: string;
13
- };
14
- }
15
- export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
16
- export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
17
- export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, any>;
18
- export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
19
- export default createResourceRequest;