@salesforce/lds-adapters-industries-context 1.453.0 → 1.455.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.
- package/dist/es/es2018/industries-context.js +8 -1
- package/dist/es/es2018/types/src/generated/types/ContextNodeRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ContextNodesInputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +9 -2
- package/src/raml/api.raml +8 -0
|
@@ -5233,7 +5233,7 @@ function getTypeCacheKeys$m(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
5233
5233
|
}
|
|
5234
5234
|
|
|
5235
5235
|
const TTL$j = 1000;
|
|
5236
|
-
const VERSION$n = "
|
|
5236
|
+
const VERSION$n = "f8ba637a1e70c33d5da7d735777289ff";
|
|
5237
5237
|
function validate$W(obj, path = 'ContextNodeRepresentation') {
|
|
5238
5238
|
const v_error = (() => {
|
|
5239
5239
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5306,6 +5306,13 @@ function validate$W(obj, path = 'ContextNodeRepresentation') {
|
|
|
5306
5306
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isCustomMappingAllowed + '" (at "' + path_isCustomMappingAllowed + '")');
|
|
5307
5307
|
}
|
|
5308
5308
|
}
|
|
5309
|
+
if (obj.isJunction !== undefined) {
|
|
5310
|
+
const obj_isJunction = obj.isJunction;
|
|
5311
|
+
const path_isJunction = path + '.isJunction';
|
|
5312
|
+
if (typeof obj_isJunction !== 'boolean') {
|
|
5313
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isJunction + '" (at "' + path_isJunction + '")');
|
|
5314
|
+
}
|
|
5315
|
+
}
|
|
5309
5316
|
if (obj.isSuccess !== undefined) {
|
|
5310
5317
|
const obj_isSuccess = obj.isSuccess;
|
|
5311
5318
|
const path_isSuccess = path + '.isSuccess';
|
|
@@ -2,7 +2,7 @@ import { ContextAttributeRepresentation as ContextAttributeRepresentation_Contex
|
|
|
2
2
|
import { ContextAttributeTagRepresentation as ContextAttributeTagRepresentation_ContextAttributeTagRepresentation } from './ContextAttributeTagRepresentation';
|
|
3
3
|
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, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
4
4
|
export declare const TTL = 1000;
|
|
5
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "f8ba637a1e70c33d5da7d735777289ff";
|
|
6
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
7
|
export declare const RepresentationType: string;
|
|
8
8
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -40,6 +40,8 @@ export interface ContextNodeRepresentationNormalized {
|
|
|
40
40
|
description?: string;
|
|
41
41
|
/** Is Custom Mapping Blocked? */
|
|
42
42
|
isCustomMappingAllowed?: boolean;
|
|
43
|
+
/** Is junction ? */
|
|
44
|
+
isJunction?: boolean;
|
|
43
45
|
/** Success */
|
|
44
46
|
isSuccess?: boolean;
|
|
45
47
|
/** Is transposable ? */
|
|
@@ -65,6 +67,7 @@ export interface ContextNodeRepresentation {
|
|
|
65
67
|
contextNodeId: string;
|
|
66
68
|
description?: string;
|
|
67
69
|
isCustomMappingAllowed?: boolean;
|
|
70
|
+
isJunction?: boolean;
|
|
68
71
|
isSuccess?: boolean;
|
|
69
72
|
isTransposable?: boolean;
|
|
70
73
|
name?: string;
|
|
@@ -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 = "
|
|
2
|
+
export declare const VERSION = "bd981ca4e4681a36ca5c43e4017bb2f9";
|
|
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: ContextNodesInputRepresentation, existing: ContextNodesInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextNodesInputRepresentationNormalized;
|
|
@@ -24,6 +24,8 @@ export interface ContextNodesInputRepresentationNormalized {
|
|
|
24
24
|
description?: string;
|
|
25
25
|
/** Is Custom Mapping Blocked? */
|
|
26
26
|
isCustomMappingAllowed?: boolean;
|
|
27
|
+
/** Is Junction ? */
|
|
28
|
+
isJunction?: boolean;
|
|
27
29
|
/** Is Transposable ? */
|
|
28
30
|
isTransposable?: boolean;
|
|
29
31
|
/** Name */
|
|
@@ -45,6 +47,7 @@ export interface ContextNodesInputRepresentation {
|
|
|
45
47
|
contextNodeId?: string;
|
|
46
48
|
description?: string;
|
|
47
49
|
isCustomMappingAllowed?: boolean;
|
|
50
|
+
isJunction?: boolean;
|
|
48
51
|
isTransposable?: boolean;
|
|
49
52
|
name?: string;
|
|
50
53
|
parentNodeId?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-context",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.455.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Normandy Context Service",
|
|
6
6
|
"main": "dist/es/es2018/industries-context.js",
|
|
@@ -41,13 +41,13 @@
|
|
|
41
41
|
"test:unit": "jest --config=./jest.config.js"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@salesforce/lds-bindings": "^1.
|
|
44
|
+
"@salesforce/lds-bindings": "^1.455.0"
|
|
45
45
|
},
|
|
46
46
|
"volta": {
|
|
47
47
|
"extends": "../../package.json"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.455.0"
|
|
51
51
|
},
|
|
52
52
|
"nx": {
|
|
53
53
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -6425,7 +6425,7 @@ function validate$w(obj, path = 'ContextNodeListInputRepresentation') {
|
|
|
6425
6425
|
}
|
|
6426
6426
|
|
|
6427
6427
|
const TTL$d = 1000;
|
|
6428
|
-
const VERSION$j = "
|
|
6428
|
+
const VERSION$j = "f8ba637a1e70c33d5da7d735777289ff";
|
|
6429
6429
|
function validate$v(obj, path = 'ContextNodeRepresentation') {
|
|
6430
6430
|
const v_error = (() => {
|
|
6431
6431
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -6498,6 +6498,13 @@ function validate$v(obj, path = 'ContextNodeRepresentation') {
|
|
|
6498
6498
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isCustomMappingAllowed + '" (at "' + path_isCustomMappingAllowed + '")');
|
|
6499
6499
|
}
|
|
6500
6500
|
}
|
|
6501
|
+
if (obj.isJunction !== undefined) {
|
|
6502
|
+
const obj_isJunction = obj.isJunction;
|
|
6503
|
+
const path_isJunction = path + '.isJunction';
|
|
6504
|
+
if (typeof obj_isJunction !== 'boolean') {
|
|
6505
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isJunction + '" (at "' + path_isJunction + '")');
|
|
6506
|
+
}
|
|
6507
|
+
}
|
|
6501
6508
|
if (obj.isSuccess !== undefined) {
|
|
6502
6509
|
const obj_isSuccess = obj.isSuccess;
|
|
6503
6510
|
const path_isSuccess = path + '.isSuccess';
|
|
@@ -17797,4 +17804,4 @@ withDefaultLuvio((luvio) => {
|
|
|
17797
17804
|
});
|
|
17798
17805
|
|
|
17799
17806
|
export { buildAndQueryRecordsFilter, buildContext, buildContextAndQuery, cloneContextMappings, contextDefinitionTransformationClone, createContextAttributeMapping, createContextAttributeMappings, createContextAttributes, createContextFilters, createContextMapping, createContextMappings, createContextNodeMapping, createContextNodeMappings, createContextNodes, createContextQueryRecords, createContextQueryTags, createContextServiceDefinition, createContextTags, createContextUpdateAttribute, createWriteThroughTags, deleteContext, deleteContextAttributeMapping, deleteContextFilter, deleteContextMapping, deleteContextNodeMapping, deleteContextServiceAttribute, deleteContextServiceAttributeMapping, deleteContextServiceAttributes, deleteContextServiceDefinition, deleteContextServiceMapping, deleteContextServiceNode, deleteContextServiceNodeMapping, deleteContextServiceTag, deleteContextTransformations, 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 };
|
|
17800
|
-
// version: 1.
|
|
17807
|
+
// version: 1.455.0-96e9b41a18
|
package/src/raml/api.raml
CHANGED
|
@@ -2029,6 +2029,10 @@ types:
|
|
|
2029
2029
|
description: Is Custom Mapping Blocked?
|
|
2030
2030
|
type: boolean
|
|
2031
2031
|
required: false
|
|
2032
|
+
isJunction:
|
|
2033
|
+
description: Is junction ?
|
|
2034
|
+
type: boolean
|
|
2035
|
+
required: false
|
|
2032
2036
|
isSuccess:
|
|
2033
2037
|
description: Success
|
|
2034
2038
|
type: boolean
|
|
@@ -2079,6 +2083,10 @@ types:
|
|
|
2079
2083
|
description: Is Custom Mapping Blocked?
|
|
2080
2084
|
type: boolean
|
|
2081
2085
|
required: false
|
|
2086
|
+
isJunction:
|
|
2087
|
+
description: Is Junction ?
|
|
2088
|
+
type: boolean
|
|
2089
|
+
required: false
|
|
2082
2090
|
isTransposable:
|
|
2083
2091
|
description: Is Transposable ?
|
|
2084
2092
|
type: boolean
|