@salesforce/lds-adapters-industries-context 1.419.0 → 1.421.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.
|
@@ -1223,7 +1223,7 @@ function equals$t(existing, incoming) {
|
|
|
1223
1223
|
}
|
|
1224
1224
|
|
|
1225
1225
|
const TTL$n = 1000;
|
|
1226
|
-
const VERSION$s = "
|
|
1226
|
+
const VERSION$s = "9855161fc1ba081134a503b97f3df7ce";
|
|
1227
1227
|
function validate$L(obj, path = 'ContextDefinitionInfoRepresentation') {
|
|
1228
1228
|
const v_error = (() => {
|
|
1229
1229
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -1346,6 +1346,13 @@ function validate$L(obj, path = 'ContextDefinitionInfoRepresentation') {
|
|
|
1346
1346
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isApexGenerated + '" (at "' + path_isApexGenerated + '")');
|
|
1347
1347
|
}
|
|
1348
1348
|
}
|
|
1349
|
+
if (obj.isApexRefreshRequire !== undefined) {
|
|
1350
|
+
const obj_isApexRefreshRequire = obj.isApexRefreshRequire;
|
|
1351
|
+
const path_isApexRefreshRequire = path + '.isApexRefreshRequire';
|
|
1352
|
+
if (typeof obj_isApexRefreshRequire !== 'boolean') {
|
|
1353
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isApexRefreshRequire + '" (at "' + path_isApexRefreshRequire + '")');
|
|
1354
|
+
}
|
|
1355
|
+
}
|
|
1349
1356
|
if (obj.isEditable !== undefined) {
|
|
1350
1357
|
const obj_isEditable = obj.isEditable;
|
|
1351
1358
|
const path_isEditable = path + '.isEditable';
|
|
@@ -1522,6 +1529,11 @@ const select$19 = function ContextDefinitionInfoRepresentationSelect() {
|
|
|
1522
1529
|
kind: 'Scalar',
|
|
1523
1530
|
required: false
|
|
1524
1531
|
},
|
|
1532
|
+
{
|
|
1533
|
+
name: 'isApexRefreshRequire',
|
|
1534
|
+
kind: 'Scalar',
|
|
1535
|
+
required: false
|
|
1536
|
+
},
|
|
1525
1537
|
{
|
|
1526
1538
|
name: 'isEditable',
|
|
1527
1539
|
kind: 'Scalar',
|
|
@@ -1625,6 +1637,19 @@ function equals$s(existing, incoming) {
|
|
|
1625
1637
|
return false;
|
|
1626
1638
|
}
|
|
1627
1639
|
}
|
|
1640
|
+
const existing_isApexRefreshRequire = existing.isApexRefreshRequire;
|
|
1641
|
+
const incoming_isApexRefreshRequire = incoming.isApexRefreshRequire;
|
|
1642
|
+
// if at least one of these optionals is defined
|
|
1643
|
+
if (existing_isApexRefreshRequire !== undefined || incoming_isApexRefreshRequire !== undefined) {
|
|
1644
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
1645
|
+
// not equal
|
|
1646
|
+
if (existing_isApexRefreshRequire === undefined || incoming_isApexRefreshRequire === undefined) {
|
|
1647
|
+
return false;
|
|
1648
|
+
}
|
|
1649
|
+
if (!(existing_isApexRefreshRequire === incoming_isApexRefreshRequire)) {
|
|
1650
|
+
return false;
|
|
1651
|
+
}
|
|
1652
|
+
}
|
|
1628
1653
|
const existing_isEditable = existing.isEditable;
|
|
1629
1654
|
const incoming_isEditable = incoming.isEditable;
|
|
1630
1655
|
// if at least one of these optionals is defined
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ContextDefinitionReferenceRepresentation as ContextDefinitionReferenceRepresentation_ContextDefinitionReferenceRepresentation } from './ContextDefinitionReferenceRepresentation';
|
|
2
2
|
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, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
3
|
export declare const TTL = 1000;
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "9855161fc1ba081134a503b97f3df7ce";
|
|
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 {
|
|
@@ -57,6 +57,8 @@ export interface ContextDefinitionInfoRepresentationNormalized {
|
|
|
57
57
|
isActive?: boolean;
|
|
58
58
|
/** Is Apex generated */
|
|
59
59
|
isApexGenerated?: boolean;
|
|
60
|
+
/** Is Apex refresh required */
|
|
61
|
+
isApexRefreshRequire?: boolean;
|
|
60
62
|
/** Is Editable */
|
|
61
63
|
isEditable?: boolean;
|
|
62
64
|
/** Success */
|
|
@@ -99,6 +101,7 @@ export interface ContextDefinitionInfoRepresentation {
|
|
|
99
101
|
hasSystemTags?: boolean;
|
|
100
102
|
isActive?: boolean;
|
|
101
103
|
isApexGenerated?: boolean;
|
|
104
|
+
isApexRefreshRequire?: boolean;
|
|
102
105
|
isEditable?: boolean;
|
|
103
106
|
isSuccess?: boolean;
|
|
104
107
|
isUpgradeAvailable?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-context",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.421.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Normandy Context Service",
|
|
6
6
|
"main": "dist/es/es2018/industries-context.js",
|
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
"test:unit": "jest --config=./jest.config.js"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.421.0"
|
|
48
48
|
},
|
|
49
49
|
"volta": {
|
|
50
50
|
"extends": "../../package.json"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
54
|
-
"@salesforce/lds-karma": "^1.
|
|
53
|
+
"@salesforce/lds-compiler-plugins": "^1.421.0",
|
|
54
|
+
"@salesforce/lds-karma": "^1.421.0"
|
|
55
55
|
},
|
|
56
56
|
"nx": {
|
|
57
57
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -5468,7 +5468,7 @@ function equals$g(existing, incoming) {
|
|
|
5468
5468
|
}
|
|
5469
5469
|
|
|
5470
5470
|
const TTL$a = 1000;
|
|
5471
|
-
const VERSION$f = "
|
|
5471
|
+
const VERSION$f = "9855161fc1ba081134a503b97f3df7ce";
|
|
5472
5472
|
function validate$k(obj, path = 'ContextDefinitionInfoRepresentation') {
|
|
5473
5473
|
const v_error = (() => {
|
|
5474
5474
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5591,6 +5591,13 @@ function validate$k(obj, path = 'ContextDefinitionInfoRepresentation') {
|
|
|
5591
5591
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isApexGenerated + '" (at "' + path_isApexGenerated + '")');
|
|
5592
5592
|
}
|
|
5593
5593
|
}
|
|
5594
|
+
if (obj.isApexRefreshRequire !== undefined) {
|
|
5595
|
+
const obj_isApexRefreshRequire = obj.isApexRefreshRequire;
|
|
5596
|
+
const path_isApexRefreshRequire = path + '.isApexRefreshRequire';
|
|
5597
|
+
if (typeof obj_isApexRefreshRequire !== 'boolean') {
|
|
5598
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isApexRefreshRequire + '" (at "' + path_isApexRefreshRequire + '")');
|
|
5599
|
+
}
|
|
5600
|
+
}
|
|
5594
5601
|
if (obj.isEditable !== undefined) {
|
|
5595
5602
|
const obj_isEditable = obj.isEditable;
|
|
5596
5603
|
const path_isEditable = path + '.isEditable';
|
|
@@ -5767,6 +5774,11 @@ const select$P = function ContextDefinitionInfoRepresentationSelect() {
|
|
|
5767
5774
|
kind: 'Scalar',
|
|
5768
5775
|
required: false
|
|
5769
5776
|
},
|
|
5777
|
+
{
|
|
5778
|
+
name: 'isApexRefreshRequire',
|
|
5779
|
+
kind: 'Scalar',
|
|
5780
|
+
required: false
|
|
5781
|
+
},
|
|
5770
5782
|
{
|
|
5771
5783
|
name: 'isEditable',
|
|
5772
5784
|
kind: 'Scalar',
|
|
@@ -5870,6 +5882,19 @@ function equals$f(existing, incoming) {
|
|
|
5870
5882
|
return false;
|
|
5871
5883
|
}
|
|
5872
5884
|
}
|
|
5885
|
+
const existing_isApexRefreshRequire = existing.isApexRefreshRequire;
|
|
5886
|
+
const incoming_isApexRefreshRequire = incoming.isApexRefreshRequire;
|
|
5887
|
+
// if at least one of these optionals is defined
|
|
5888
|
+
if (existing_isApexRefreshRequire !== undefined || incoming_isApexRefreshRequire !== undefined) {
|
|
5889
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
5890
|
+
// not equal
|
|
5891
|
+
if (existing_isApexRefreshRequire === undefined || incoming_isApexRefreshRequire === undefined) {
|
|
5892
|
+
return false;
|
|
5893
|
+
}
|
|
5894
|
+
if (!(existing_isApexRefreshRequire === incoming_isApexRefreshRequire)) {
|
|
5895
|
+
return false;
|
|
5896
|
+
}
|
|
5897
|
+
}
|
|
5873
5898
|
const existing_isEditable = existing.isEditable;
|
|
5874
5899
|
const incoming_isEditable = incoming.isEditable;
|
|
5875
5900
|
// if at least one of these optionals is defined
|
|
@@ -15289,4 +15314,4 @@ withDefaultLuvio((luvio) => {
|
|
|
15289
15314
|
});
|
|
15290
15315
|
|
|
15291
15316
|
export { cloneContextMappings, createContextAttributeMapping, createContextAttributeMappings, createContextAttributes, createContextFilters, createContextMapping, createContextMappings, createContextNodeMapping, createContextNodeMappings, createContextNodes, createContextQueryRecords, createContextServiceDefinition, createContextTags, deleteContext, deleteContextAttributeMapping, deleteContextFilter, deleteContextMapping, deleteContextNodeMapping, deleteContextServiceAttribute, deleteContextServiceAttributeMapping, deleteContextServiceDefinition, deleteContextServiceMapping, deleteContextServiceNode, deleteContextServiceNodeMapping, deleteContextServiceTag, getContext, getContextAttributeMapping, getContextAttributeMappingNotifyChange, getContextAttributeMapping_imperative, getContextDefinitions, getContextDefinitions_imperative, getContextFilter, getContextFilterNotifyChange, getContextFilter_imperative, getContextFilters, getContextFiltersNotifyChange, getContextFilters_imperative, getContextInfo, getContextInfoNotifyChange, getContextInfo_imperative, getContextMapping, getContextMappingNotifyChange, getContextMapping_imperative, getContextNodeMapping, getContextNodeMappingNotifyChange, getContextNodeMapping_imperative, getContextNotifyChange, getContextServiceAccess, getContextServiceAccessNotifyChange, getContextServiceAccess_imperative, getContextServiceAttribute, getContextServiceAttributeMapping, getContextServiceAttributeMappingNotifyChange, getContextServiceAttributeMapping_imperative, getContextServiceAttributeNotifyChange, getContextServiceAttribute_imperative, getContextServiceDefinition, getContextServiceDefinitionInfo, getContextServiceDefinitionInfoNotifyChange, getContextServiceDefinitionInfo_imperative, getContextServiceDefinitionNotifyChange, getContextServiceDefinition_imperative, getContextServiceMapping, getContextServiceMappingNotifyChange, getContextServiceMapping_imperative, getContextServiceNode, getContextServiceNodeMapping, getContextServiceNodeMappingNotifyChange, getContextServiceNodeMapping_imperative, getContextServiceNodeNotifyChange, getContextServiceNode_imperative, getContextServiceTag, getContextServiceTagNotifyChange, getContextServiceTag_imperative, getContextTags, getContextTagsNotifyChange, getContextTags_imperative, getContextTranslation, getContextTranslation_imperative, getContext_imperative, getDynamicAttributes, getDynamicAttributesNotifyChange, getDynamicAttributes_imperative, putContextServiceAccess, queryContextRecordAndChildren, updateContextAttributeMapping, updateContextAttributeMappings, updateContextAttributes, updateContextFilter, updateContextMapping, updateContextMappings, updateContextNodeMapping, updateContextNodeMappings, updateContextNodes, updateContextServiceDefinition, updateContextTags, upgradeContextServiceDefinition };
|
|
15292
|
-
// version: 1.
|
|
15317
|
+
// version: 1.421.0-45320a2742
|
package/src/raml/api.raml
CHANGED