@salesforce/lds-adapters-service-basesetup 1.312.0 → 1.313.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.
|
@@ -483,7 +483,7 @@ const enableFeatureSetAdapterFactory = (luvio) => {
|
|
|
483
483
|
};
|
|
484
484
|
};
|
|
485
485
|
|
|
486
|
-
const VERSION$1 = "
|
|
486
|
+
const VERSION$1 = "ca4ec8cd4e622433088678cab5c86b05";
|
|
487
487
|
function validate$1(obj, path = 'FeatureRepresentation') {
|
|
488
488
|
const v_error = (() => {
|
|
489
489
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -514,6 +514,11 @@ function validate$1(obj, path = 'FeatureRepresentation') {
|
|
|
514
514
|
if (typeof obj_featureStatus !== 'string') {
|
|
515
515
|
return new TypeError('Expected "string" but received "' + typeof obj_featureStatus + '" (at "' + path_featureStatus + '")');
|
|
516
516
|
}
|
|
517
|
+
const obj_reExecuteFeature = obj.reExecuteFeature;
|
|
518
|
+
const path_reExecuteFeature = path + '.reExecuteFeature';
|
|
519
|
+
if (typeof obj_reExecuteFeature !== 'boolean') {
|
|
520
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_reExecuteFeature + '" (at "' + path_reExecuteFeature + '")');
|
|
521
|
+
}
|
|
517
522
|
})();
|
|
518
523
|
return v_error === undefined ? null : v_error;
|
|
519
524
|
}
|
|
@@ -537,11 +542,20 @@ const select$2 = function FeatureRepresentationSelect() {
|
|
|
537
542
|
{
|
|
538
543
|
name: 'featureStatus',
|
|
539
544
|
kind: 'Scalar'
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
name: 'reExecuteFeature',
|
|
548
|
+
kind: 'Scalar'
|
|
540
549
|
}
|
|
541
550
|
]
|
|
542
551
|
};
|
|
543
552
|
};
|
|
544
553
|
function equals$1(existing, incoming) {
|
|
554
|
+
const existing_reExecuteFeature = existing.reExecuteFeature;
|
|
555
|
+
const incoming_reExecuteFeature = incoming.reExecuteFeature;
|
|
556
|
+
if (!(existing_reExecuteFeature === incoming_reExecuteFeature)) {
|
|
557
|
+
return false;
|
|
558
|
+
}
|
|
545
559
|
const existing_featureApiName = existing.featureApiName;
|
|
546
560
|
const incoming_featureApiName = incoming.featureApiName;
|
|
547
561
|
if (!(existing_featureApiName === incoming_featureApiName)) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FeatureSetErrorRepresentation as FeatureSetErrorRepresentation_FeatureSetErrorRepresentation } from './FeatureSetErrorRepresentation';
|
|
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 = "
|
|
3
|
+
export declare const VERSION = "ca4ec8cd4e622433088678cab5c86b05";
|
|
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: FeatureRepresentation, existing: FeatureRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FeatureRepresentationNormalized;
|
|
@@ -21,6 +21,8 @@ export interface FeatureRepresentationNormalized {
|
|
|
21
21
|
featureApiName: string;
|
|
22
22
|
/** Status of a specific feature */
|
|
23
23
|
featureStatus: string;
|
|
24
|
+
/** Flag to track org status of a feature setup */
|
|
25
|
+
reExecuteFeature: boolean;
|
|
24
26
|
}
|
|
25
27
|
/**
|
|
26
28
|
* Representation of Feature Details
|
|
@@ -32,4 +34,5 @@ export interface FeatureRepresentation {
|
|
|
32
34
|
errors: Array<FeatureSetErrorRepresentation_FeatureSetErrorRepresentation>;
|
|
33
35
|
featureApiName: string;
|
|
34
36
|
featureStatus: string;
|
|
37
|
+
reExecuteFeature: boolean;
|
|
35
38
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-service-basesetup",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.313.0",
|
|
4
4
|
"description": "A family of APIs that facilitates easy setup and configuration via a setup assistant",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/service-basesetup.js",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
"test:unit": "jest"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@salesforce/lds-bindings": "^1.
|
|
44
|
+
"@salesforce/lds-bindings": "^1.313.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
47
|
+
"@salesforce/lds-compiler-plugins": "^1.313.0"
|
|
48
48
|
},
|
|
49
49
|
"nx": {
|
|
50
50
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -493,7 +493,7 @@ const enableFeatureSetAdapterFactory = (luvio) => {
|
|
|
493
493
|
};
|
|
494
494
|
};
|
|
495
495
|
|
|
496
|
-
const VERSION$1 = "
|
|
496
|
+
const VERSION$1 = "ca4ec8cd4e622433088678cab5c86b05";
|
|
497
497
|
function validate$1(obj, path = 'FeatureRepresentation') {
|
|
498
498
|
const v_error = (() => {
|
|
499
499
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -524,6 +524,11 @@ function validate$1(obj, path = 'FeatureRepresentation') {
|
|
|
524
524
|
if (typeof obj_featureStatus !== 'string') {
|
|
525
525
|
return new TypeError('Expected "string" but received "' + typeof obj_featureStatus + '" (at "' + path_featureStatus + '")');
|
|
526
526
|
}
|
|
527
|
+
const obj_reExecuteFeature = obj.reExecuteFeature;
|
|
528
|
+
const path_reExecuteFeature = path + '.reExecuteFeature';
|
|
529
|
+
if (typeof obj_reExecuteFeature !== 'boolean') {
|
|
530
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_reExecuteFeature + '" (at "' + path_reExecuteFeature + '")');
|
|
531
|
+
}
|
|
527
532
|
})();
|
|
528
533
|
return v_error === undefined ? null : v_error;
|
|
529
534
|
}
|
|
@@ -547,11 +552,20 @@ const select$2 = function FeatureRepresentationSelect() {
|
|
|
547
552
|
{
|
|
548
553
|
name: 'featureStatus',
|
|
549
554
|
kind: 'Scalar'
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
name: 'reExecuteFeature',
|
|
558
|
+
kind: 'Scalar'
|
|
550
559
|
}
|
|
551
560
|
]
|
|
552
561
|
};
|
|
553
562
|
};
|
|
554
563
|
function equals$1(existing, incoming) {
|
|
564
|
+
const existing_reExecuteFeature = existing.reExecuteFeature;
|
|
565
|
+
const incoming_reExecuteFeature = incoming.reExecuteFeature;
|
|
566
|
+
if (!(existing_reExecuteFeature === incoming_reExecuteFeature)) {
|
|
567
|
+
return false;
|
|
568
|
+
}
|
|
555
569
|
const existing_featureApiName = existing.featureApiName;
|
|
556
570
|
const incoming_featureApiName = incoming.featureApiName;
|
|
557
571
|
if (!(existing_featureApiName === incoming_featureApiName)) {
|
|
@@ -941,4 +955,4 @@ withDefaultLuvio((luvio) => {
|
|
|
941
955
|
});
|
|
942
956
|
|
|
943
957
|
export { enableFeatureSet, getFeatureSetDetail, getFeatureSetDetailNotifyChange, getFeatureSetDetail_imperative };
|
|
944
|
-
// version: 1.
|
|
958
|
+
// version: 1.313.0-19e9b0d234
|
package/src/raml/api.raml
CHANGED
|
@@ -76,6 +76,9 @@ types:
|
|
|
76
76
|
featureStatus:
|
|
77
77
|
description: Status of a specific feature
|
|
78
78
|
type: string
|
|
79
|
+
reExecuteFeature:
|
|
80
|
+
description: Flag to track org status of a feature setup
|
|
81
|
+
type: boolean
|
|
79
82
|
FeatureSetErrorRepresentation:
|
|
80
83
|
description: Output representation of feature set error
|
|
81
84
|
type: object
|