@salesforce/lds-adapters-industries-context 1.439.0 → 1.441.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 +2842 -2462
- package/dist/es/es2018/types/src/generated/adapters/createContextQueryTags.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/resources/postConnectContextsQueryTags.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/types/ContextTagDataRepresentation.d.ts +9 -9
- package/dist/es/es2018/types/src/generated/types/FilterConditionInputRepresentation.d.ts +20 -10
- package/dist/es/es2018/types/src/generated/types/OperandInputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/QueryTagsInputRepresentation.d.ts +8 -8
- package/dist/es/es2018/types/src/generated/types/QueryTagsResultRepresentation.d.ts +11 -5
- package/package.json +4 -4
- package/sfdc/index.js +1551 -1159
- package/src/raml/api.raml +103 -59
- package/src/raml/luvio.raml +8 -0
package/src/raml/api.raml
CHANGED
|
@@ -2328,6 +2328,95 @@ types:
|
|
|
2328
2328
|
required: false
|
|
2329
2329
|
items:
|
|
2330
2330
|
type: QueryContextRecordResultDataRepresentation
|
|
2331
|
+
QueryTagsInputRepresentation:
|
|
2332
|
+
description: Input representation for querying Context Tags
|
|
2333
|
+
type: object
|
|
2334
|
+
properties:
|
|
2335
|
+
contextId:
|
|
2336
|
+
description: Context Id
|
|
2337
|
+
type: string
|
|
2338
|
+
tags:
|
|
2339
|
+
description: List of Tags
|
|
2340
|
+
type: array
|
|
2341
|
+
items:
|
|
2342
|
+
type: string
|
|
2343
|
+
filter:
|
|
2344
|
+
description: Attribute Filter
|
|
2345
|
+
type: array
|
|
2346
|
+
required: false
|
|
2347
|
+
items:
|
|
2348
|
+
type: FilterConditionInputRepresentation
|
|
2349
|
+
FilterConditionInputRepresentation:
|
|
2350
|
+
description: Input representation of Filter Condition
|
|
2351
|
+
type: object
|
|
2352
|
+
properties:
|
|
2353
|
+
nodeName:
|
|
2354
|
+
description: Node Name
|
|
2355
|
+
type: string
|
|
2356
|
+
attributeName:
|
|
2357
|
+
description: Attribute Name
|
|
2358
|
+
type: string
|
|
2359
|
+
operator:
|
|
2360
|
+
description: Operator
|
|
2361
|
+
type: string
|
|
2362
|
+
operands:
|
|
2363
|
+
description: Operands
|
|
2364
|
+
type: array
|
|
2365
|
+
items:
|
|
2366
|
+
type: OperandInputRepresentation
|
|
2367
|
+
underlyingConditions:
|
|
2368
|
+
description: Underlying Conditions
|
|
2369
|
+
type: array
|
|
2370
|
+
items:
|
|
2371
|
+
type: FilterConditionInputRepresentation
|
|
2372
|
+
logicalOperator:
|
|
2373
|
+
description: Logical Operator
|
|
2374
|
+
type: string
|
|
2375
|
+
OperandInputRepresentation:
|
|
2376
|
+
description: Input representation of Operand
|
|
2377
|
+
type: object
|
|
2378
|
+
properties:
|
|
2379
|
+
value:
|
|
2380
|
+
description: Value
|
|
2381
|
+
type: string
|
|
2382
|
+
type:
|
|
2383
|
+
description: Type
|
|
2384
|
+
type: string
|
|
2385
|
+
QueryTagsResultRepresentation:
|
|
2386
|
+
description: Output representation of QueryResult-ContextTags
|
|
2387
|
+
type: object
|
|
2388
|
+
properties:
|
|
2389
|
+
isDone:
|
|
2390
|
+
description: Done
|
|
2391
|
+
type: boolean
|
|
2392
|
+
required: false
|
|
2393
|
+
isSuccess:
|
|
2394
|
+
description: Success
|
|
2395
|
+
type: boolean
|
|
2396
|
+
required: false
|
|
2397
|
+
queryResult:
|
|
2398
|
+
description: Map of Tag and TagData
|
|
2399
|
+
type: object
|
|
2400
|
+
required: false
|
|
2401
|
+
properties:
|
|
2402
|
+
//:
|
|
2403
|
+
type: array
|
|
2404
|
+
items:
|
|
2405
|
+
type: ContextTagDataRepresentation
|
|
2406
|
+
ContextTagDataRepresentation:
|
|
2407
|
+
description: Output representation of Context Tag Data
|
|
2408
|
+
type: object
|
|
2409
|
+
properties:
|
|
2410
|
+
tagValue:
|
|
2411
|
+
description: Tag Value - Primitive or ContextDataRecordRepresentation
|
|
2412
|
+
type: object
|
|
2413
|
+
required: false
|
|
2414
|
+
dataPath:
|
|
2415
|
+
description: Data Path
|
|
2416
|
+
type: array
|
|
2417
|
+
required: false
|
|
2418
|
+
items:
|
|
2419
|
+
type: string
|
|
2331
2420
|
QueryContextInputRepresentation:
|
|
2332
2421
|
description: Input representation of Query Context
|
|
2333
2422
|
type: object
|
|
@@ -2539,38 +2628,6 @@ types:
|
|
|
2539
2628
|
properties:
|
|
2540
2629
|
//:
|
|
2541
2630
|
type: string
|
|
2542
|
-
FilterConditionInputRepresentation:
|
|
2543
|
-
description: Input representation for filter condition
|
|
2544
|
-
type: object
|
|
2545
|
-
properties:
|
|
2546
|
-
field:
|
|
2547
|
-
description: Field name
|
|
2548
|
-
type: string
|
|
2549
|
-
operator:
|
|
2550
|
-
description: Operator (e.g., EQUALS, CONTAINS)
|
|
2551
|
-
type: string
|
|
2552
|
-
value:
|
|
2553
|
-
description: Filter value
|
|
2554
|
-
type: any
|
|
2555
|
-
QueryTagsInputRepresentation:
|
|
2556
|
-
description: Input representation for querying tags
|
|
2557
|
-
type: object
|
|
2558
|
-
properties:
|
|
2559
|
-
contextId:
|
|
2560
|
-
description: Context ID
|
|
2561
|
-
type: string
|
|
2562
|
-
tags:
|
|
2563
|
-
description: List of tags
|
|
2564
|
-
type: array
|
|
2565
|
-
items:
|
|
2566
|
-
type: string
|
|
2567
|
-
required: false
|
|
2568
|
-
filter:
|
|
2569
|
-
description: Filter conditions
|
|
2570
|
-
type: array
|
|
2571
|
-
items:
|
|
2572
|
-
type: FilterConditionInputRepresentation
|
|
2573
|
-
required: false
|
|
2574
2631
|
ContextAllQueriesInputRepresentation:
|
|
2575
2632
|
description: Input representation for all queries
|
|
2576
2633
|
type: object
|
|
@@ -2709,33 +2766,6 @@ types:
|
|
|
2709
2766
|
description: Get Record Status Representation
|
|
2710
2767
|
type: boolean
|
|
2711
2768
|
required: false
|
|
2712
|
-
ContextTagDataRepresentation:
|
|
2713
|
-
description: Context Tag Data Representation
|
|
2714
|
-
type: object
|
|
2715
|
-
properties:
|
|
2716
|
-
tagName:
|
|
2717
|
-
description: Tag name
|
|
2718
|
-
type: string
|
|
2719
|
-
tagValue:
|
|
2720
|
-
description: Tag value
|
|
2721
|
-
type: string
|
|
2722
|
-
required: false
|
|
2723
|
-
QueryTagsResultRepresentation:
|
|
2724
|
-
description: Output representation of QueryResult-ContextTags
|
|
2725
|
-
type: object
|
|
2726
|
-
properties:
|
|
2727
|
-
isDone:
|
|
2728
|
-
description: Done
|
|
2729
|
-
type: boolean
|
|
2730
|
-
required: false
|
|
2731
|
-
isSuccess:
|
|
2732
|
-
description: Success
|
|
2733
|
-
type: boolean
|
|
2734
|
-
required: false
|
|
2735
|
-
queryResult:
|
|
2736
|
-
description: Map of Tag and TagData
|
|
2737
|
-
type: any
|
|
2738
|
-
required: false
|
|
2739
2769
|
PersistContextInputRepresentation:
|
|
2740
2770
|
description: Input representation for persisting context
|
|
2741
2771
|
type: object
|
|
@@ -4108,6 +4138,20 @@ types:
|
|
|
4108
4138
|
type: QueryRecordsInputWrapperRepresentation
|
|
4109
4139
|
# required: false # TODO Hand rolled W-12486791.
|
|
4110
4140
|
(oas-body-name): queryRecordsInput
|
|
4141
|
+
/query-tags:
|
|
4142
|
+
post:
|
|
4143
|
+
displayName: postQueryTags
|
|
4144
|
+
description: Query Tags
|
|
4145
|
+
responses:
|
|
4146
|
+
'200':
|
|
4147
|
+
description: Success
|
|
4148
|
+
body:
|
|
4149
|
+
application/json:
|
|
4150
|
+
type: QueryTagsResultRepresentation
|
|
4151
|
+
body:
|
|
4152
|
+
application/json:
|
|
4153
|
+
type: QueryTagsInputRepresentation
|
|
4154
|
+
(oas-body-name): queryTagsInput
|
|
4111
4155
|
/{contextId}:
|
|
4112
4156
|
delete:
|
|
4113
4157
|
displayName: deleteContext
|
package/src/raml/luvio.raml
CHANGED
|
@@ -101,6 +101,9 @@ types:
|
|
|
101
101
|
(luvio.ttl): 1000
|
|
102
102
|
(luvio.key):
|
|
103
103
|
id: contextQueryRecordListId
|
|
104
|
+
QueryTagsResultRepresentation:
|
|
105
|
+
(luvio.ttl): 1000
|
|
106
|
+
(luvio.opaque): true
|
|
104
107
|
ContextTranslationServiceRecordRepresentation:
|
|
105
108
|
(luvio.ttl): 1000
|
|
106
109
|
DynamicAttributeSearchResultRepresentation:
|
|
@@ -483,6 +486,11 @@ types:
|
|
|
483
486
|
post:
|
|
484
487
|
(luvio.adapter):
|
|
485
488
|
name: createContextQueryRecords
|
|
489
|
+
/query-tags:
|
|
490
|
+
post:
|
|
491
|
+
(luvio.method): get
|
|
492
|
+
(luvio.adapter):
|
|
493
|
+
name: createContextQueryTags
|
|
486
494
|
/{contextId}:
|
|
487
495
|
get:
|
|
488
496
|
(luvio.adapter):
|