@salesforce/lds-adapters-industries-context 1.366.0 → 1.368.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 +34 -2
- package/dist/es/es2018/types/src/generated/types/ContextAttributeInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ContextAttributeRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ContextAttributesInputRepresentation.d.ts +4 -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 +4 -4
- package/sfdc/index.js +35 -3
- package/src/raml/api.raml +20 -0
|
@@ -4227,7 +4227,7 @@ function getTypeCacheKeys$i(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
4227
4227
|
}
|
|
4228
4228
|
|
|
4229
4229
|
const TTL$f = 1000;
|
|
4230
|
-
const VERSION$j = "
|
|
4230
|
+
const VERSION$j = "af260b2520f0b967245d805387a35e05";
|
|
4231
4231
|
function validate$w(obj, path = 'ContextAttributeRepresentation') {
|
|
4232
4232
|
const v_error = (() => {
|
|
4233
4233
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -4306,6 +4306,13 @@ function validate$w(obj, path = 'ContextAttributeRepresentation') {
|
|
|
4306
4306
|
return new TypeError('Expected "string" but received "' + typeof obj_fieldType + '" (at "' + path_fieldType + '")');
|
|
4307
4307
|
}
|
|
4308
4308
|
}
|
|
4309
|
+
if (obj.isCustomMappingBlocked !== undefined) {
|
|
4310
|
+
const obj_isCustomMappingBlocked = obj.isCustomMappingBlocked;
|
|
4311
|
+
const path_isCustomMappingBlocked = path + '.isCustomMappingBlocked';
|
|
4312
|
+
if (typeof obj_isCustomMappingBlocked !== 'boolean') {
|
|
4313
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isCustomMappingBlocked + '" (at "' + path_isCustomMappingBlocked + '")');
|
|
4314
|
+
}
|
|
4315
|
+
}
|
|
4309
4316
|
if (obj.isKey !== undefined) {
|
|
4310
4317
|
const obj_isKey = obj.isKey;
|
|
4311
4318
|
const path_isKey = path + '.isKey';
|
|
@@ -4436,6 +4443,11 @@ const select$Y = function ContextAttributeRepresentationSelect() {
|
|
|
4436
4443
|
kind: 'Scalar',
|
|
4437
4444
|
required: false
|
|
4438
4445
|
},
|
|
4446
|
+
{
|
|
4447
|
+
name: 'isCustomMappingBlocked',
|
|
4448
|
+
kind: 'Scalar',
|
|
4449
|
+
required: false
|
|
4450
|
+
},
|
|
4439
4451
|
{
|
|
4440
4452
|
name: 'isKey',
|
|
4441
4453
|
kind: 'Scalar',
|
|
@@ -4470,6 +4482,19 @@ const select$Y = function ContextAttributeRepresentationSelect() {
|
|
|
4470
4482
|
};
|
|
4471
4483
|
};
|
|
4472
4484
|
function equals$j(existing, incoming) {
|
|
4485
|
+
const existing_isCustomMappingBlocked = existing.isCustomMappingBlocked;
|
|
4486
|
+
const incoming_isCustomMappingBlocked = incoming.isCustomMappingBlocked;
|
|
4487
|
+
// if at least one of these optionals is defined
|
|
4488
|
+
if (existing_isCustomMappingBlocked !== undefined || incoming_isCustomMappingBlocked !== undefined) {
|
|
4489
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
4490
|
+
// not equal
|
|
4491
|
+
if (existing_isCustomMappingBlocked === undefined || incoming_isCustomMappingBlocked === undefined) {
|
|
4492
|
+
return false;
|
|
4493
|
+
}
|
|
4494
|
+
if (!(existing_isCustomMappingBlocked === incoming_isCustomMappingBlocked)) {
|
|
4495
|
+
return false;
|
|
4496
|
+
}
|
|
4497
|
+
}
|
|
4473
4498
|
const existing_isKey = existing.isKey;
|
|
4474
4499
|
const incoming_isKey = incoming.isKey;
|
|
4475
4500
|
// if at least one of these optionals is defined
|
|
@@ -4696,7 +4721,7 @@ function getTypeCacheKeys$h(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
4696
4721
|
}
|
|
4697
4722
|
|
|
4698
4723
|
const TTL$e = 1000;
|
|
4699
|
-
const VERSION$i = "
|
|
4724
|
+
const VERSION$i = "645e810039cafec604c1b668726cb5e1";
|
|
4700
4725
|
function validate$v(obj, path = 'ContextNodeRepresentation') {
|
|
4701
4726
|
const v_error = (() => {
|
|
4702
4727
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -4755,6 +4780,13 @@ function validate$v(obj, path = 'ContextNodeRepresentation') {
|
|
|
4755
4780
|
if (typeof obj_contextNodeId !== 'string') {
|
|
4756
4781
|
return new TypeError('Expected "string" but received "' + typeof obj_contextNodeId + '" (at "' + path_contextNodeId + '")');
|
|
4757
4782
|
}
|
|
4783
|
+
if (obj.isCustomMappingBlocked !== undefined) {
|
|
4784
|
+
const obj_isCustomMappingBlocked = obj.isCustomMappingBlocked;
|
|
4785
|
+
const path_isCustomMappingBlocked = path + '.isCustomMappingBlocked';
|
|
4786
|
+
if (typeof obj_isCustomMappingBlocked !== 'boolean') {
|
|
4787
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isCustomMappingBlocked + '" (at "' + path_isCustomMappingBlocked + '")');
|
|
4788
|
+
}
|
|
4789
|
+
}
|
|
4758
4790
|
if (obj.isSuccess !== undefined) {
|
|
4759
4791
|
const obj_isSuccess = obj.isSuccess;
|
|
4760
4792
|
const path_isSuccess = path + '.isSuccess';
|
|
@@ -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 = "8458cc84f3433e93b3c67a8b391911df";
|
|
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: ContextAttributeInputRepresentation, existing: ContextAttributeInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextAttributeInputRepresentationNormalized;
|
|
@@ -22,6 +22,8 @@ export interface ContextAttributeInputRepresentationNormalized {
|
|
|
22
22
|
domainSet?: string;
|
|
23
23
|
/** Field Type */
|
|
24
24
|
fieldType?: string;
|
|
25
|
+
/** Is Custom Mapping Blocked? */
|
|
26
|
+
isCustomMappingBlocked?: boolean;
|
|
25
27
|
/** Is Key? */
|
|
26
28
|
isKey?: boolean;
|
|
27
29
|
/** Is Value? */
|
|
@@ -42,6 +44,7 @@ export interface ContextAttributeInputRepresentation {
|
|
|
42
44
|
dataType?: string;
|
|
43
45
|
domainSet?: string;
|
|
44
46
|
fieldType?: string;
|
|
47
|
+
isCustomMappingBlocked?: boolean;
|
|
45
48
|
isKey?: boolean;
|
|
46
49
|
isValue?: boolean;
|
|
47
50
|
name?: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
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, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
2
|
import { ContextAttributeTagRepresentation as ContextAttributeTagRepresentation_ContextAttributeTagRepresentation } from './ContextAttributeTagRepresentation';
|
|
3
3
|
export declare const TTL = 1000;
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "af260b2520f0b967245d805387a35e05";
|
|
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 {
|
|
@@ -54,6 +54,8 @@ export interface ContextAttributeRepresentationNormalized {
|
|
|
54
54
|
domainSet?: string;
|
|
55
55
|
/** Field Type */
|
|
56
56
|
fieldType?: string;
|
|
57
|
+
/** Is Custom Mapping Blocked? */
|
|
58
|
+
isCustomMappingBlocked?: boolean;
|
|
57
59
|
/** Is Key? */
|
|
58
60
|
isKey?: boolean;
|
|
59
61
|
/** Success */
|
|
@@ -84,6 +86,7 @@ export interface ContextAttributeRepresentation {
|
|
|
84
86
|
displayName?: string;
|
|
85
87
|
domainSet?: string;
|
|
86
88
|
fieldType?: string;
|
|
89
|
+
isCustomMappingBlocked?: boolean;
|
|
87
90
|
isKey?: boolean;
|
|
88
91
|
isSuccess?: boolean;
|
|
89
92
|
isTransient?: boolean;
|
|
@@ -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 = "27b61032b1ac29e18d6dc5892284d0bc";
|
|
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: ContextAttributesInputRepresentation, existing: ContextAttributesInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextAttributesInputRepresentationNormalized;
|
|
@@ -30,6 +30,8 @@ export interface ContextAttributesInputRepresentationNormalized {
|
|
|
30
30
|
domainSet: string;
|
|
31
31
|
/** Field Type */
|
|
32
32
|
fieldType: string;
|
|
33
|
+
/** Is Custom Mapping Blocked? */
|
|
34
|
+
isCustomMappingBlocked?: boolean;
|
|
33
35
|
/** Is Key? */
|
|
34
36
|
isKey: boolean;
|
|
35
37
|
/** Is Transient? */
|
|
@@ -56,6 +58,7 @@ export interface ContextAttributesInputRepresentation {
|
|
|
56
58
|
displayName: string;
|
|
57
59
|
domainSet: string;
|
|
58
60
|
fieldType: string;
|
|
61
|
+
isCustomMappingBlocked?: boolean;
|
|
59
62
|
isKey: boolean;
|
|
60
63
|
isTransient?: boolean;
|
|
61
64
|
isValue: boolean;
|
|
@@ -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 = "645e810039cafec604c1b668726cb5e1";
|
|
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 {
|
|
@@ -36,6 +36,8 @@ export interface ContextNodeRepresentationNormalized {
|
|
|
36
36
|
contextDefinitionVersionId?: string;
|
|
37
37
|
/** Id of this ContextNode */
|
|
38
38
|
contextNodeId: string;
|
|
39
|
+
/** Is Custom Mapping Blocked? */
|
|
40
|
+
isCustomMappingBlocked?: boolean;
|
|
39
41
|
/** Success */
|
|
40
42
|
isSuccess?: boolean;
|
|
41
43
|
/** Is transposable ? */
|
|
@@ -59,6 +61,7 @@ export interface ContextNodeRepresentation {
|
|
|
59
61
|
childNodes?: Array<ContextNodeRepresentation>;
|
|
60
62
|
contextDefinitionVersionId?: string;
|
|
61
63
|
contextNodeId: string;
|
|
64
|
+
isCustomMappingBlocked?: boolean;
|
|
62
65
|
isSuccess?: boolean;
|
|
63
66
|
isTransposable?: boolean;
|
|
64
67
|
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 = "ee5db3eef82d1b7c035aed666f94bd36";
|
|
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;
|
|
@@ -20,6 +20,8 @@ export interface ContextNodesInputRepresentationNormalized {
|
|
|
20
20
|
childNodes?: Array<{}>;
|
|
21
21
|
/** ID of this Node - Required for Update */
|
|
22
22
|
contextNodeId?: string;
|
|
23
|
+
/** Is Custom Mapping Blocked? */
|
|
24
|
+
isCustomMappingBlocked?: boolean;
|
|
23
25
|
/** Is Transposable ? */
|
|
24
26
|
isTransposable?: boolean;
|
|
25
27
|
/** Name */
|
|
@@ -39,6 +41,7 @@ export interface ContextNodesInputRepresentation {
|
|
|
39
41
|
attributes?: Array<{}>;
|
|
40
42
|
childNodes?: Array<{}>;
|
|
41
43
|
contextNodeId?: string;
|
|
44
|
+
isCustomMappingBlocked?: boolean;
|
|
42
45
|
isTransposable?: boolean;
|
|
43
46
|
name?: string;
|
|
44
47
|
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.368.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.368.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.368.0",
|
|
54
|
+
"@salesforce/lds-karma": "^1.368.0"
|
|
55
55
|
},
|
|
56
56
|
"nx": {
|
|
57
57
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -2285,7 +2285,7 @@ function getTypeCacheKeys$l(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
2285
2285
|
}
|
|
2286
2286
|
|
|
2287
2287
|
const TTL$i = 1000;
|
|
2288
|
-
const VERSION$p = "
|
|
2288
|
+
const VERSION$p = "af260b2520f0b967245d805387a35e05";
|
|
2289
2289
|
function validate$D(obj, path = 'ContextAttributeRepresentation') {
|
|
2290
2290
|
const v_error = (() => {
|
|
2291
2291
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -2364,6 +2364,13 @@ function validate$D(obj, path = 'ContextAttributeRepresentation') {
|
|
|
2364
2364
|
return new TypeError('Expected "string" but received "' + typeof obj_fieldType + '" (at "' + path_fieldType + '")');
|
|
2365
2365
|
}
|
|
2366
2366
|
}
|
|
2367
|
+
if (obj.isCustomMappingBlocked !== undefined) {
|
|
2368
|
+
const obj_isCustomMappingBlocked = obj.isCustomMappingBlocked;
|
|
2369
|
+
const path_isCustomMappingBlocked = path + '.isCustomMappingBlocked';
|
|
2370
|
+
if (typeof obj_isCustomMappingBlocked !== 'boolean') {
|
|
2371
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isCustomMappingBlocked + '" (at "' + path_isCustomMappingBlocked + '")');
|
|
2372
|
+
}
|
|
2373
|
+
}
|
|
2367
2374
|
if (obj.isKey !== undefined) {
|
|
2368
2375
|
const obj_isKey = obj.isKey;
|
|
2369
2376
|
const path_isKey = path + '.isKey';
|
|
@@ -2494,6 +2501,11 @@ const select$15 = function ContextAttributeRepresentationSelect() {
|
|
|
2494
2501
|
kind: 'Scalar',
|
|
2495
2502
|
required: false
|
|
2496
2503
|
},
|
|
2504
|
+
{
|
|
2505
|
+
name: 'isCustomMappingBlocked',
|
|
2506
|
+
kind: 'Scalar',
|
|
2507
|
+
required: false
|
|
2508
|
+
},
|
|
2497
2509
|
{
|
|
2498
2510
|
name: 'isKey',
|
|
2499
2511
|
kind: 'Scalar',
|
|
@@ -2528,6 +2540,19 @@ const select$15 = function ContextAttributeRepresentationSelect() {
|
|
|
2528
2540
|
};
|
|
2529
2541
|
};
|
|
2530
2542
|
function equals$p(existing, incoming) {
|
|
2543
|
+
const existing_isCustomMappingBlocked = existing.isCustomMappingBlocked;
|
|
2544
|
+
const incoming_isCustomMappingBlocked = incoming.isCustomMappingBlocked;
|
|
2545
|
+
// if at least one of these optionals is defined
|
|
2546
|
+
if (existing_isCustomMappingBlocked !== undefined || incoming_isCustomMappingBlocked !== undefined) {
|
|
2547
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
2548
|
+
// not equal
|
|
2549
|
+
if (existing_isCustomMappingBlocked === undefined || incoming_isCustomMappingBlocked === undefined) {
|
|
2550
|
+
return false;
|
|
2551
|
+
}
|
|
2552
|
+
if (!(existing_isCustomMappingBlocked === incoming_isCustomMappingBlocked)) {
|
|
2553
|
+
return false;
|
|
2554
|
+
}
|
|
2555
|
+
}
|
|
2531
2556
|
const existing_isKey = existing.isKey;
|
|
2532
2557
|
const incoming_isKey = incoming.isKey;
|
|
2533
2558
|
// if at least one of these optionals is defined
|
|
@@ -4311,7 +4336,7 @@ function validate$t(obj, path = 'ContextNodeListInputRepresentation') {
|
|
|
4311
4336
|
}
|
|
4312
4337
|
|
|
4313
4338
|
const TTL$d = 1000;
|
|
4314
|
-
const VERSION$k = "
|
|
4339
|
+
const VERSION$k = "645e810039cafec604c1b668726cb5e1";
|
|
4315
4340
|
function validate$s(obj, path = 'ContextNodeRepresentation') {
|
|
4316
4341
|
const v_error = (() => {
|
|
4317
4342
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -4370,6 +4395,13 @@ function validate$s(obj, path = 'ContextNodeRepresentation') {
|
|
|
4370
4395
|
if (typeof obj_contextNodeId !== 'string') {
|
|
4371
4396
|
return new TypeError('Expected "string" but received "' + typeof obj_contextNodeId + '" (at "' + path_contextNodeId + '")');
|
|
4372
4397
|
}
|
|
4398
|
+
if (obj.isCustomMappingBlocked !== undefined) {
|
|
4399
|
+
const obj_isCustomMappingBlocked = obj.isCustomMappingBlocked;
|
|
4400
|
+
const path_isCustomMappingBlocked = path + '.isCustomMappingBlocked';
|
|
4401
|
+
if (typeof obj_isCustomMappingBlocked !== 'boolean') {
|
|
4402
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isCustomMappingBlocked + '" (at "' + path_isCustomMappingBlocked + '")');
|
|
4403
|
+
}
|
|
4404
|
+
}
|
|
4373
4405
|
if (obj.isSuccess !== undefined) {
|
|
4374
4406
|
const obj_isSuccess = obj.isSuccess;
|
|
4375
4407
|
const path_isSuccess = path + '.isSuccess';
|
|
@@ -15033,4 +15065,4 @@ withDefaultLuvio((luvio) => {
|
|
|
15033
15065
|
});
|
|
15034
15066
|
|
|
15035
15067
|
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 };
|
|
15036
|
-
// version: 1.
|
|
15068
|
+
// version: 1.368.0-de8cc6721e
|
package/src/raml/api.raml
CHANGED
|
@@ -216,6 +216,10 @@ types:
|
|
|
216
216
|
description: Field Type
|
|
217
217
|
type: string
|
|
218
218
|
required: false # TODO Hand-rolled W-12486791
|
|
219
|
+
isCustomMappingBlocked:
|
|
220
|
+
description: Is Custom Mapping Blocked?
|
|
221
|
+
type: boolean
|
|
222
|
+
required: false
|
|
219
223
|
isKey:
|
|
220
224
|
description: Is Key?
|
|
221
225
|
type: boolean
|
|
@@ -458,6 +462,10 @@ types:
|
|
|
458
462
|
description: Field Type
|
|
459
463
|
type: string
|
|
460
464
|
required: false
|
|
465
|
+
isCustomMappingBlocked:
|
|
466
|
+
description: Is Custom Mapping Blocked?
|
|
467
|
+
type: boolean
|
|
468
|
+
required: false
|
|
461
469
|
isKey:
|
|
462
470
|
description: Is Key?
|
|
463
471
|
type: boolean
|
|
@@ -576,6 +584,10 @@ types:
|
|
|
576
584
|
fieldType:
|
|
577
585
|
description: Field Type
|
|
578
586
|
type: string
|
|
587
|
+
isCustomMappingBlocked:
|
|
588
|
+
description: Is Custom Mapping Blocked?
|
|
589
|
+
type: boolean
|
|
590
|
+
required: false
|
|
579
591
|
isKey:
|
|
580
592
|
description: Is Key?
|
|
581
593
|
type: boolean
|
|
@@ -1789,6 +1801,10 @@ types:
|
|
|
1789
1801
|
contextNodeId:
|
|
1790
1802
|
description: Id of this ContextNode
|
|
1791
1803
|
type: string
|
|
1804
|
+
isCustomMappingBlocked:
|
|
1805
|
+
description: Is Custom Mapping Blocked?
|
|
1806
|
+
type: boolean
|
|
1807
|
+
required: false
|
|
1792
1808
|
isSuccess:
|
|
1793
1809
|
description: Success
|
|
1794
1810
|
type: boolean
|
|
@@ -1831,6 +1847,10 @@ types:
|
|
|
1831
1847
|
description: ID of this Node - Required for Update
|
|
1832
1848
|
type: string
|
|
1833
1849
|
required: false # TODO Hand-rolled W-12486791
|
|
1850
|
+
isCustomMappingBlocked:
|
|
1851
|
+
description: Is Custom Mapping Blocked?
|
|
1852
|
+
type: boolean
|
|
1853
|
+
required: false
|
|
1834
1854
|
isTransposable:
|
|
1835
1855
|
description: Is Transposable ?
|
|
1836
1856
|
type: boolean
|