@salesforce/lds-runtime-mobile 1.354.0-dev21 → 1.354.0-dev23
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/main.js +39 -3
- package/dist/types/drafts/quickActions/AbstractQuickActionHandler.d.ts +11 -0
- package/dist/types/drafts/quickActions/QuickActionExecutionRepresentationHandler.d.ts +2 -2
- package/dist/types/drafts/quickActions/UpdateRecordQuickActionExecutionRepresentationHandler.d.ts +2 -2
- package/package.json +16 -16
- package/sfdc/main.js +39 -3
- package/sfdc/types/drafts/quickActions/AbstractQuickActionHandler.d.ts +11 -0
- package/sfdc/types/drafts/quickActions/QuickActionExecutionRepresentationHandler.d.ts +2 -2
- package/sfdc/types/drafts/quickActions/UpdateRecordQuickActionExecutionRepresentationHandler.d.ts +2 -2
package/dist/main.js
CHANGED
|
@@ -42921,8 +42921,44 @@ function reportChunkCandidateUrlLength(urlLength) {
|
|
|
42921
42921
|
ldsMobileInstrumentation.bucketValue('chunk-candidate-url-length-histogram', urlLength, buckets);
|
|
42922
42922
|
}
|
|
42923
42923
|
|
|
42924
|
+
class AbstractQuickActionHandler extends AbstractResourceRequestActionHandler {
|
|
42925
|
+
constructor(draftQueue, networkAdapter, getLuvio, recordService) {
|
|
42926
|
+
super(draftQueue, networkAdapter, getLuvio, recordService);
|
|
42927
|
+
}
|
|
42928
|
+
async buildPendingAction(request, queue) {
|
|
42929
|
+
this.resolveResourceRequestBody(request.body);
|
|
42930
|
+
return await super.buildPendingAction(request, queue);
|
|
42931
|
+
}
|
|
42932
|
+
resolveResourceRequestBody(body) {
|
|
42933
|
+
let contextId = body.contextId;
|
|
42934
|
+
if (contextId && this.isDraftId(contextId)) {
|
|
42935
|
+
const draftKey = getRecordKeyForId(this.getLuvio(), contextId);
|
|
42936
|
+
const canonicalKey = this.getLuvio().storeGetCanonicalKey(draftKey);
|
|
42937
|
+
if (draftKey !== canonicalKey) {
|
|
42938
|
+
const canonicalId = extractRecordIdFromStoreKey(canonicalKey);
|
|
42939
|
+
if (canonicalId !== undefined) {
|
|
42940
|
+
body.contextId = canonicalId;
|
|
42941
|
+
}
|
|
42942
|
+
}
|
|
42943
|
+
}
|
|
42944
|
+
for (const field of keys$2(body.fields)) {
|
|
42945
|
+
const fieldValue = body.fields[field];
|
|
42946
|
+
if (typeof fieldValue === 'string' && this.isDraftId(fieldValue)) {
|
|
42947
|
+
const draftKey = getRecordKeyForId(this.getLuvio(), fieldValue);
|
|
42948
|
+
const canonicalKey = this.getLuvio().storeGetCanonicalKey(draftKey);
|
|
42949
|
+
if (draftKey !== canonicalKey) {
|
|
42950
|
+
const canonicalId = extractRecordIdFromStoreKey(canonicalKey);
|
|
42951
|
+
if (canonicalId !== undefined) {
|
|
42952
|
+
body.fields[field] = canonicalId;
|
|
42953
|
+
}
|
|
42954
|
+
}
|
|
42955
|
+
}
|
|
42956
|
+
}
|
|
42957
|
+
}
|
|
42958
|
+
}
|
|
42959
|
+
|
|
42924
42960
|
const QUICK_ACTION_HANDLER = 'QUICK_ACTION_HANDLER';
|
|
42925
|
-
class QuickActionExecutionRepresentationHandler extends
|
|
42961
|
+
class QuickActionExecutionRepresentationHandler extends AbstractQuickActionHandler {
|
|
42926
42962
|
constructor(getLuvio, draftRecordService, draftQueue, networkAdapter, isDraftId, sideEffectService, objectInfoService, getRecord) {
|
|
42927
42963
|
super(draftQueue, networkAdapter, getLuvio, draftRecordService);
|
|
42928
42964
|
this.draftRecordService = draftRecordService;
|
|
@@ -43008,7 +43044,7 @@ class QuickActionExecutionRepresentationHandler extends AbstractResourceRequestA
|
|
|
43008
43044
|
}
|
|
43009
43045
|
|
|
43010
43046
|
const UPDATE_RECORD_QUICK_ACTION_HANDLER = 'UPDATE_RECORD_QUICK_ACTION_HANDLER';
|
|
43011
|
-
class UpdateRecordQuickActionExecutionRepresentationHandler extends
|
|
43047
|
+
class UpdateRecordQuickActionExecutionRepresentationHandler extends AbstractQuickActionHandler {
|
|
43012
43048
|
constructor(getLuvio, draftRecordService, draftQueue, networkAdapter, isDraftId, sideEffectService) {
|
|
43013
43049
|
super(draftQueue, networkAdapter, getLuvio, draftRecordService);
|
|
43014
43050
|
this.draftRecordService = draftRecordService;
|
|
@@ -55803,4 +55839,4 @@ register({
|
|
|
55803
55839
|
});
|
|
55804
55840
|
|
|
55805
55841
|
export { O11Y_NAMESPACE_LDS_MOBILE, getRuntime, ingest$1o as ingestDenormalizedRecordRepresentation, registerReportObserver, reportGraphqlQueryParseError };
|
|
55806
|
-
// version: 1.354.0-
|
|
55842
|
+
// version: 1.354.0-dev23-9c19a0410b
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AbstractResourceRequestActionHandler } from '../AbstractResourceRequestActionHandler';
|
|
2
|
+
import { QuickActionExecutionRepresentation } from '@salesforce/lds-adapters-uiapi';
|
|
3
|
+
import { NetworkAdapter, ResourceRequest } from '@luvio/engine';
|
|
4
|
+
import { DraftAction, DraftQueue, PendingDraftAction } from '@salesforce/lds-drafts';
|
|
5
|
+
import { Luvio } from '@luvio/engine';
|
|
6
|
+
import { UiApiDraftRecordService } from '../UiApiDraftRecordService';
|
|
7
|
+
export declare abstract class AbstractQuickActionHandler extends AbstractResourceRequestActionHandler<QuickActionExecutionRepresentation> {
|
|
8
|
+
constructor(draftQueue: DraftQueue, networkAdapter: NetworkAdapter, getLuvio: () => Luvio, recordService: UiApiDraftRecordService);
|
|
9
|
+
buildPendingAction(request: ResourceRequest, queue: DraftAction<unknown, unknown>[]): Promise<PendingDraftAction<ResourceRequest>>;
|
|
10
|
+
private resolveResourceRequestBody;
|
|
11
|
+
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { CompletedDraftAction, QueueOperation, DraftAction, DraftQueue } from '@salesforce/lds-drafts';
|
|
2
|
-
import { AbstractResourceRequestActionHandler } from '../AbstractResourceRequestActionHandler';
|
|
3
2
|
import type { PerformActionInputRepresentation, QuickActionExecutionRepresentation, RecordRepresentation } from '@salesforce/lds-adapters-uiapi';
|
|
4
3
|
import { GetRecordConfig } from '@salesforce/lds-adapters-uiapi';
|
|
5
4
|
import type { DurableStoreKeyMetadataMap, Luvio, NetworkAdapter, ResourceRequest, Adapter } from '@luvio/engine';
|
|
@@ -8,12 +7,13 @@ import type { RecordEffectingHandler } from '../records/actionHandlers/RecordEff
|
|
|
8
7
|
import { type SideEffectService } from '../sideEffects/SideEffectService';
|
|
9
8
|
import { type SideEffect } from '../sideEffects';
|
|
10
9
|
import { ObjectInfoService } from './../../utils/ObjectInfoService';
|
|
10
|
+
import { AbstractQuickActionHandler } from './AbstractQuickActionHandler';
|
|
11
11
|
export declare const QUICK_ACTION_HANDLER = "QUICK_ACTION_HANDLER";
|
|
12
12
|
interface PerformQuickActionResourceRequest extends Omit<ResourceRequest, 'body' | 'method'> {
|
|
13
13
|
body: PerformActionInputRepresentation;
|
|
14
14
|
method: 'post';
|
|
15
15
|
}
|
|
16
|
-
export declare class QuickActionExecutionRepresentationHandler extends
|
|
16
|
+
export declare class QuickActionExecutionRepresentationHandler extends AbstractQuickActionHandler implements RecordEffectingHandler {
|
|
17
17
|
private readonly draftRecordService;
|
|
18
18
|
readonly isDraftId: (targetId: string) => boolean;
|
|
19
19
|
private readonly sideEffectService;
|
package/dist/types/drafts/quickActions/UpdateRecordQuickActionExecutionRepresentationHandler.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import type { CompletedDraftAction, DraftAction, DraftQueue, QueueOperation } from '@salesforce/lds-drafts';
|
|
2
|
-
import { AbstractResourceRequestActionHandler } from '../AbstractResourceRequestActionHandler';
|
|
3
2
|
import type { DurableStoreKeyMetadataMap, Luvio, NetworkAdapter, ResourceRequest } from '@luvio/engine';
|
|
4
3
|
import type { PerformActionInputRepresentation, QuickActionExecutionRepresentation } from '@salesforce/lds-adapters-uiapi';
|
|
5
4
|
import type { UiApiDraftRecordService } from '../UiApiDraftRecordService';
|
|
6
5
|
import type { RecordEffectingHandler } from '../records/actionHandlers/RecordEffectingHandler';
|
|
7
6
|
import type { SideEffect } from '../sideEffects/sideEffects';
|
|
8
7
|
import { type SideEffectService } from '../sideEffects/SideEffectService';
|
|
8
|
+
import { AbstractQuickActionHandler } from './AbstractQuickActionHandler';
|
|
9
9
|
export declare const UPDATE_RECORD_QUICK_ACTION_HANDLER = "UPDATE_RECORD_QUICK_ACTION_HANDLER";
|
|
10
10
|
interface PerformUpdateRecordQuickActionResourceRequest extends Omit<ResourceRequest, 'body' | 'method'> {
|
|
11
11
|
body: PerformActionInputRepresentation;
|
|
12
12
|
method: 'patch';
|
|
13
13
|
}
|
|
14
|
-
export declare class UpdateRecordQuickActionExecutionRepresentationHandler extends
|
|
14
|
+
export declare class UpdateRecordQuickActionExecutionRepresentationHandler extends AbstractQuickActionHandler implements RecordEffectingHandler {
|
|
15
15
|
private readonly draftRecordService;
|
|
16
16
|
readonly isDraftId: (targetId: string) => boolean;
|
|
17
17
|
private readonly sideEffectService;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-runtime-mobile",
|
|
3
|
-
"version": "1.354.0-
|
|
3
|
+
"version": "1.354.0-dev23",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS runtime for mobile/hybrid environments.",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -32,24 +32,24 @@
|
|
|
32
32
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-runtime-mobile"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@salesforce/lds-adapters-uiapi": "^1.354.0-
|
|
36
|
-
"@salesforce/lds-bindings": "^1.354.0-
|
|
37
|
-
"@salesforce/lds-instrumentation": "^1.354.0-
|
|
35
|
+
"@salesforce/lds-adapters-uiapi": "^1.354.0-dev23",
|
|
36
|
+
"@salesforce/lds-bindings": "^1.354.0-dev23",
|
|
37
|
+
"@salesforce/lds-instrumentation": "^1.354.0-dev23",
|
|
38
38
|
"@salesforce/user": "0.0.21",
|
|
39
39
|
"o11y": "250.7.0",
|
|
40
40
|
"o11y_schema": "256.126.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@salesforce/lds-adapters-graphql": "^1.354.0-
|
|
44
|
-
"@salesforce/lds-drafts": "^1.354.0-
|
|
45
|
-
"@salesforce/lds-durable-records": "^1.354.0-
|
|
46
|
-
"@salesforce/lds-network-adapter": "^1.354.0-
|
|
47
|
-
"@salesforce/lds-network-nimbus": "^1.354.0-
|
|
48
|
-
"@salesforce/lds-store-binary": "^1.354.0-
|
|
49
|
-
"@salesforce/lds-store-nimbus": "^1.354.0-
|
|
50
|
-
"@salesforce/lds-store-sql": "^1.354.0-
|
|
51
|
-
"@salesforce/lds-utils-adapters": "^1.354.0-
|
|
52
|
-
"@salesforce/nimbus-plugin-lds": "^1.354.0-
|
|
43
|
+
"@salesforce/lds-adapters-graphql": "^1.354.0-dev23",
|
|
44
|
+
"@salesforce/lds-drafts": "^1.354.0-dev23",
|
|
45
|
+
"@salesforce/lds-durable-records": "^1.354.0-dev23",
|
|
46
|
+
"@salesforce/lds-network-adapter": "^1.354.0-dev23",
|
|
47
|
+
"@salesforce/lds-network-nimbus": "^1.354.0-dev23",
|
|
48
|
+
"@salesforce/lds-store-binary": "^1.354.0-dev23",
|
|
49
|
+
"@salesforce/lds-store-nimbus": "^1.354.0-dev23",
|
|
50
|
+
"@salesforce/lds-store-sql": "^1.354.0-dev23",
|
|
51
|
+
"@salesforce/lds-utils-adapters": "^1.354.0-dev23",
|
|
52
|
+
"@salesforce/nimbus-plugin-lds": "^1.354.0-dev23",
|
|
53
53
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
54
54
|
"wait-for-expect": "^3.0.2"
|
|
55
55
|
},
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
{
|
|
58
58
|
"path": "./dist/main.js",
|
|
59
59
|
"maxSize": {
|
|
60
|
-
"none": "
|
|
60
|
+
"none": "2225 kB",
|
|
61
61
|
"min": "1000 kB",
|
|
62
62
|
"compressed": "250 kB"
|
|
63
63
|
}
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
{
|
|
66
66
|
"path": "./sfdc/main.js",
|
|
67
67
|
"maxSize": {
|
|
68
|
-
"none": "
|
|
68
|
+
"none": "2225 kB",
|
|
69
69
|
"min": "1000 kB",
|
|
70
70
|
"compressed": "250 kB"
|
|
71
71
|
}
|
package/sfdc/main.js
CHANGED
|
@@ -42921,8 +42921,44 @@ function reportChunkCandidateUrlLength(urlLength) {
|
|
|
42921
42921
|
ldsMobileInstrumentation.bucketValue('chunk-candidate-url-length-histogram', urlLength, buckets);
|
|
42922
42922
|
}
|
|
42923
42923
|
|
|
42924
|
+
class AbstractQuickActionHandler extends AbstractResourceRequestActionHandler {
|
|
42925
|
+
constructor(draftQueue, networkAdapter, getLuvio, recordService) {
|
|
42926
|
+
super(draftQueue, networkAdapter, getLuvio, recordService);
|
|
42927
|
+
}
|
|
42928
|
+
async buildPendingAction(request, queue) {
|
|
42929
|
+
this.resolveResourceRequestBody(request.body);
|
|
42930
|
+
return await super.buildPendingAction(request, queue);
|
|
42931
|
+
}
|
|
42932
|
+
resolveResourceRequestBody(body) {
|
|
42933
|
+
let contextId = body.contextId;
|
|
42934
|
+
if (contextId && this.isDraftId(contextId)) {
|
|
42935
|
+
const draftKey = getRecordKeyForId(this.getLuvio(), contextId);
|
|
42936
|
+
const canonicalKey = this.getLuvio().storeGetCanonicalKey(draftKey);
|
|
42937
|
+
if (draftKey !== canonicalKey) {
|
|
42938
|
+
const canonicalId = extractRecordIdFromStoreKey(canonicalKey);
|
|
42939
|
+
if (canonicalId !== undefined) {
|
|
42940
|
+
body.contextId = canonicalId;
|
|
42941
|
+
}
|
|
42942
|
+
}
|
|
42943
|
+
}
|
|
42944
|
+
for (const field of keys$2(body.fields)) {
|
|
42945
|
+
const fieldValue = body.fields[field];
|
|
42946
|
+
if (typeof fieldValue === 'string' && this.isDraftId(fieldValue)) {
|
|
42947
|
+
const draftKey = getRecordKeyForId(this.getLuvio(), fieldValue);
|
|
42948
|
+
const canonicalKey = this.getLuvio().storeGetCanonicalKey(draftKey);
|
|
42949
|
+
if (draftKey !== canonicalKey) {
|
|
42950
|
+
const canonicalId = extractRecordIdFromStoreKey(canonicalKey);
|
|
42951
|
+
if (canonicalId !== undefined) {
|
|
42952
|
+
body.fields[field] = canonicalId;
|
|
42953
|
+
}
|
|
42954
|
+
}
|
|
42955
|
+
}
|
|
42956
|
+
}
|
|
42957
|
+
}
|
|
42958
|
+
}
|
|
42959
|
+
|
|
42924
42960
|
const QUICK_ACTION_HANDLER = 'QUICK_ACTION_HANDLER';
|
|
42925
|
-
class QuickActionExecutionRepresentationHandler extends
|
|
42961
|
+
class QuickActionExecutionRepresentationHandler extends AbstractQuickActionHandler {
|
|
42926
42962
|
constructor(getLuvio, draftRecordService, draftQueue, networkAdapter, isDraftId, sideEffectService, objectInfoService, getRecord) {
|
|
42927
42963
|
super(draftQueue, networkAdapter, getLuvio, draftRecordService);
|
|
42928
42964
|
this.draftRecordService = draftRecordService;
|
|
@@ -43008,7 +43044,7 @@ class QuickActionExecutionRepresentationHandler extends AbstractResourceRequestA
|
|
|
43008
43044
|
}
|
|
43009
43045
|
|
|
43010
43046
|
const UPDATE_RECORD_QUICK_ACTION_HANDLER = 'UPDATE_RECORD_QUICK_ACTION_HANDLER';
|
|
43011
|
-
class UpdateRecordQuickActionExecutionRepresentationHandler extends
|
|
43047
|
+
class UpdateRecordQuickActionExecutionRepresentationHandler extends AbstractQuickActionHandler {
|
|
43012
43048
|
constructor(getLuvio, draftRecordService, draftQueue, networkAdapter, isDraftId, sideEffectService) {
|
|
43013
43049
|
super(draftQueue, networkAdapter, getLuvio, draftRecordService);
|
|
43014
43050
|
this.draftRecordService = draftRecordService;
|
|
@@ -55803,4 +55839,4 @@ register({
|
|
|
55803
55839
|
});
|
|
55804
55840
|
|
|
55805
55841
|
export { O11Y_NAMESPACE_LDS_MOBILE, getRuntime, ingest$1o as ingestDenormalizedRecordRepresentation, registerReportObserver, reportGraphqlQueryParseError };
|
|
55806
|
-
// version: 1.354.0-
|
|
55842
|
+
// version: 1.354.0-dev23-9c19a0410b
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AbstractResourceRequestActionHandler } from '../AbstractResourceRequestActionHandler';
|
|
2
|
+
import { QuickActionExecutionRepresentation } from '@salesforce/lds-adapters-uiapi';
|
|
3
|
+
import { NetworkAdapter, ResourceRequest } from '@luvio/engine';
|
|
4
|
+
import { DraftAction, DraftQueue, PendingDraftAction } from '@salesforce/lds-drafts';
|
|
5
|
+
import { Luvio } from '@luvio/engine';
|
|
6
|
+
import { UiApiDraftRecordService } from '../UiApiDraftRecordService';
|
|
7
|
+
export declare abstract class AbstractQuickActionHandler extends AbstractResourceRequestActionHandler<QuickActionExecutionRepresentation> {
|
|
8
|
+
constructor(draftQueue: DraftQueue, networkAdapter: NetworkAdapter, getLuvio: () => Luvio, recordService: UiApiDraftRecordService);
|
|
9
|
+
buildPendingAction(request: ResourceRequest, queue: DraftAction<unknown, unknown>[]): Promise<PendingDraftAction<ResourceRequest>>;
|
|
10
|
+
private resolveResourceRequestBody;
|
|
11
|
+
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { CompletedDraftAction, QueueOperation, DraftAction, DraftQueue } from '@salesforce/lds-drafts';
|
|
2
|
-
import { AbstractResourceRequestActionHandler } from '../AbstractResourceRequestActionHandler';
|
|
3
2
|
import type { PerformActionInputRepresentation, QuickActionExecutionRepresentation, RecordRepresentation } from '@salesforce/lds-adapters-uiapi';
|
|
4
3
|
import { GetRecordConfig } from '@salesforce/lds-adapters-uiapi';
|
|
5
4
|
import type { DurableStoreKeyMetadataMap, Luvio, NetworkAdapter, ResourceRequest, Adapter } from '@luvio/engine';
|
|
@@ -8,12 +7,13 @@ import type { RecordEffectingHandler } from '../records/actionHandlers/RecordEff
|
|
|
8
7
|
import { type SideEffectService } from '../sideEffects/SideEffectService';
|
|
9
8
|
import { type SideEffect } from '../sideEffects';
|
|
10
9
|
import { ObjectInfoService } from './../../utils/ObjectInfoService';
|
|
10
|
+
import { AbstractQuickActionHandler } from './AbstractQuickActionHandler';
|
|
11
11
|
export declare const QUICK_ACTION_HANDLER = "QUICK_ACTION_HANDLER";
|
|
12
12
|
interface PerformQuickActionResourceRequest extends Omit<ResourceRequest, 'body' | 'method'> {
|
|
13
13
|
body: PerformActionInputRepresentation;
|
|
14
14
|
method: 'post';
|
|
15
15
|
}
|
|
16
|
-
export declare class QuickActionExecutionRepresentationHandler extends
|
|
16
|
+
export declare class QuickActionExecutionRepresentationHandler extends AbstractQuickActionHandler implements RecordEffectingHandler {
|
|
17
17
|
private readonly draftRecordService;
|
|
18
18
|
readonly isDraftId: (targetId: string) => boolean;
|
|
19
19
|
private readonly sideEffectService;
|
package/sfdc/types/drafts/quickActions/UpdateRecordQuickActionExecutionRepresentationHandler.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import type { CompletedDraftAction, DraftAction, DraftQueue, QueueOperation } from '@salesforce/lds-drafts';
|
|
2
|
-
import { AbstractResourceRequestActionHandler } from '../AbstractResourceRequestActionHandler';
|
|
3
2
|
import type { DurableStoreKeyMetadataMap, Luvio, NetworkAdapter, ResourceRequest } from '@luvio/engine';
|
|
4
3
|
import type { PerformActionInputRepresentation, QuickActionExecutionRepresentation } from '@salesforce/lds-adapters-uiapi';
|
|
5
4
|
import type { UiApiDraftRecordService } from '../UiApiDraftRecordService';
|
|
6
5
|
import type { RecordEffectingHandler } from '../records/actionHandlers/RecordEffectingHandler';
|
|
7
6
|
import type { SideEffect } from '../sideEffects/sideEffects';
|
|
8
7
|
import { type SideEffectService } from '../sideEffects/SideEffectService';
|
|
8
|
+
import { AbstractQuickActionHandler } from './AbstractQuickActionHandler';
|
|
9
9
|
export declare const UPDATE_RECORD_QUICK_ACTION_HANDLER = "UPDATE_RECORD_QUICK_ACTION_HANDLER";
|
|
10
10
|
interface PerformUpdateRecordQuickActionResourceRequest extends Omit<ResourceRequest, 'body' | 'method'> {
|
|
11
11
|
body: PerformActionInputRepresentation;
|
|
12
12
|
method: 'patch';
|
|
13
13
|
}
|
|
14
|
-
export declare class UpdateRecordQuickActionExecutionRepresentationHandler extends
|
|
14
|
+
export declare class UpdateRecordQuickActionExecutionRepresentationHandler extends AbstractQuickActionHandler implements RecordEffectingHandler {
|
|
15
15
|
private readonly draftRecordService;
|
|
16
16
|
readonly isDraftId: (targetId: string) => boolean;
|
|
17
17
|
private readonly sideEffectService;
|