@salesforce/lds-adapters-cdp-semantic-authoring 1.380.0-dev1 → 1.380.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/cdp-semantic-authoring.js +358 -15
- package/dist/es/es2018/types/src/generated/adapters/getSemanticModel.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsByModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsShallowByModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/SemanticCalculatedDimensionOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticCalculatedMeasurementOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticDataObjectOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticDimensionOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticGoalOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticGroupingOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticMappedFieldOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticMeasurementOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticMetricOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticModelExternalConnectionOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticModelOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticModelPartialOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticParameterOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticRelationshipOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticSubMetricOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticUnionOutputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +359 -16
- package/src/raml/api.raml +88 -1
package/src/raml/api.raml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
securedBy:
|
|
3
3
|
- OAuth2
|
|
4
4
|
title: Salesforce Connect API
|
|
5
|
-
version: '
|
|
5
|
+
version: '65.0'
|
|
6
6
|
mediaType: application/json
|
|
7
7
|
protocols:
|
|
8
8
|
- https
|
|
@@ -68,6 +68,13 @@ types:
|
|
|
68
68
|
enum:
|
|
69
69
|
- Bin
|
|
70
70
|
- Group
|
|
71
|
+
SemanticEntityIsQueryableEnum:
|
|
72
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
73
|
+
type: string
|
|
74
|
+
enum:
|
|
75
|
+
- NonQueryable
|
|
76
|
+
- Queryable
|
|
77
|
+
- Unknown
|
|
71
78
|
TimeRangeTypeEnum:
|
|
72
79
|
description: The type of the time range.
|
|
73
80
|
type: string
|
|
@@ -630,6 +637,10 @@ types:
|
|
|
630
637
|
id:
|
|
631
638
|
description: The object ID of the semantic entity.
|
|
632
639
|
type: string
|
|
640
|
+
isQueryable:
|
|
641
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
642
|
+
type: SemanticEntityIsQueryableEnum
|
|
643
|
+
required: false
|
|
633
644
|
label:
|
|
634
645
|
description: The display name of the semantic entity to be used in the ui.
|
|
635
646
|
type: string
|
|
@@ -832,6 +843,10 @@ types:
|
|
|
832
843
|
id:
|
|
833
844
|
description: The object ID of the semantic entity.
|
|
834
845
|
type: string
|
|
846
|
+
isQueryable:
|
|
847
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
848
|
+
type: SemanticEntityIsQueryableEnum
|
|
849
|
+
required: false
|
|
835
850
|
label:
|
|
836
851
|
description: The display name of the semantic entity to be used in the ui.
|
|
837
852
|
type: string
|
|
@@ -956,6 +971,10 @@ types:
|
|
|
956
971
|
id:
|
|
957
972
|
description: The object ID of the semantic entity.
|
|
958
973
|
type: string
|
|
974
|
+
isQueryable:
|
|
975
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
976
|
+
type: SemanticEntityIsQueryableEnum
|
|
977
|
+
required: false
|
|
959
978
|
label:
|
|
960
979
|
description: The display name of the semantic entity to be used in the ui.
|
|
961
980
|
type: string
|
|
@@ -1135,6 +1154,10 @@ types:
|
|
|
1135
1154
|
id:
|
|
1136
1155
|
description: The object ID of the semantic entity.
|
|
1137
1156
|
type: string
|
|
1157
|
+
isQueryable:
|
|
1158
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
1159
|
+
type: SemanticEntityIsQueryableEnum
|
|
1160
|
+
required: false
|
|
1138
1161
|
label:
|
|
1139
1162
|
description: The display name of the semantic entity to be used in the ui.
|
|
1140
1163
|
type: string
|
|
@@ -1371,6 +1394,10 @@ types:
|
|
|
1371
1394
|
id:
|
|
1372
1395
|
description: The object ID of the semantic entity.
|
|
1373
1396
|
type: string
|
|
1397
|
+
isQueryable:
|
|
1398
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
1399
|
+
type: SemanticEntityIsQueryableEnum
|
|
1400
|
+
required: false
|
|
1374
1401
|
label:
|
|
1375
1402
|
description: The display name of the semantic entity to be used in the ui.
|
|
1376
1403
|
type: string
|
|
@@ -1595,6 +1622,10 @@ types:
|
|
|
1595
1622
|
id:
|
|
1596
1623
|
description: The object ID of the semantic entity.
|
|
1597
1624
|
type: string
|
|
1625
|
+
isQueryable:
|
|
1626
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
1627
|
+
type: SemanticEntityIsQueryableEnum
|
|
1628
|
+
required: false
|
|
1598
1629
|
label:
|
|
1599
1630
|
description: The display name of the semantic entity to be used in the ui.
|
|
1600
1631
|
type: string
|
|
@@ -1766,6 +1797,10 @@ types:
|
|
|
1766
1797
|
id:
|
|
1767
1798
|
description: The object ID of the semantic entity.
|
|
1768
1799
|
type: string
|
|
1800
|
+
isQueryable:
|
|
1801
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
1802
|
+
type: SemanticEntityIsQueryableEnum
|
|
1803
|
+
required: false
|
|
1769
1804
|
label:
|
|
1770
1805
|
description: The display name of the semantic entity to be used in the ui.
|
|
1771
1806
|
type: string
|
|
@@ -2008,6 +2043,10 @@ types:
|
|
|
2008
2043
|
id:
|
|
2009
2044
|
description: The object ID of the semantic entity.
|
|
2010
2045
|
type: string
|
|
2046
|
+
isQueryable:
|
|
2047
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
2048
|
+
type: SemanticEntityIsQueryableEnum
|
|
2049
|
+
required: false
|
|
2011
2050
|
label:
|
|
2012
2051
|
description: The display name of the semantic entity to be used in the ui.
|
|
2013
2052
|
type: string
|
|
@@ -2178,6 +2217,10 @@ types:
|
|
|
2178
2217
|
id:
|
|
2179
2218
|
description: The object ID of the semantic entity.
|
|
2180
2219
|
type: string
|
|
2220
|
+
isQueryable:
|
|
2221
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
2222
|
+
type: SemanticEntityIsQueryableEnum
|
|
2223
|
+
required: false
|
|
2181
2224
|
label:
|
|
2182
2225
|
description: The display name of the semantic entity to be used in the ui.
|
|
2183
2226
|
type: string
|
|
@@ -2322,6 +2365,10 @@ types:
|
|
|
2322
2365
|
id:
|
|
2323
2366
|
description: The object ID of the semantic entity.
|
|
2324
2367
|
type: string
|
|
2368
|
+
isQueryable:
|
|
2369
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
2370
|
+
type: SemanticEntityIsQueryableEnum
|
|
2371
|
+
required: false
|
|
2325
2372
|
label:
|
|
2326
2373
|
description: The display name of the semantic entity to be used in the ui.
|
|
2327
2374
|
type: string
|
|
@@ -2560,6 +2607,10 @@ types:
|
|
|
2560
2607
|
id:
|
|
2561
2608
|
description: The object ID of the semantic entity.
|
|
2562
2609
|
type: string
|
|
2610
|
+
isQueryable:
|
|
2611
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
2612
|
+
type: SemanticEntityIsQueryableEnum
|
|
2613
|
+
required: false
|
|
2563
2614
|
label:
|
|
2564
2615
|
description: The display name of the semantic entity to be used in the ui.
|
|
2565
2616
|
type: string
|
|
@@ -2865,6 +2916,10 @@ types:
|
|
|
2865
2916
|
id:
|
|
2866
2917
|
description: The object ID of the semantic entity.
|
|
2867
2918
|
type: string
|
|
2919
|
+
isQueryable:
|
|
2920
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
2921
|
+
type: SemanticEntityIsQueryableEnum
|
|
2922
|
+
required: false
|
|
2868
2923
|
label:
|
|
2869
2924
|
description: The display name of the semantic entity to be used in the ui.
|
|
2870
2925
|
type: string
|
|
@@ -2900,6 +2955,10 @@ types:
|
|
|
2900
2955
|
description: Is the model locked for edit/ delete.
|
|
2901
2956
|
type: boolean
|
|
2902
2957
|
required: false
|
|
2958
|
+
isPartialSdm:
|
|
2959
|
+
description: Indicates if the model is partial because of Data Gov.
|
|
2960
|
+
type: boolean
|
|
2961
|
+
required: false
|
|
2903
2962
|
queryUnrelatedDataObjects:
|
|
2904
2963
|
description: The type of join performed between the defined Data Cloud Objects. Valid values are AUTO, LEFT, RIGHT, FULL, and INNER.
|
|
2905
2964
|
type: SemanticQueryUnrelatedDataObjectsTypeEnum
|
|
@@ -3075,6 +3134,10 @@ types:
|
|
|
3075
3134
|
id:
|
|
3076
3135
|
description: The object ID of the semantic entity.
|
|
3077
3136
|
type: string
|
|
3137
|
+
isQueryable:
|
|
3138
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
3139
|
+
type: SemanticEntityIsQueryableEnum
|
|
3140
|
+
required: false
|
|
3078
3141
|
label:
|
|
3079
3142
|
description: The display name of the semantic entity to be used in the ui.
|
|
3080
3143
|
type: string
|
|
@@ -3369,6 +3432,10 @@ types:
|
|
|
3369
3432
|
id:
|
|
3370
3433
|
description: The object ID of the semantic entity.
|
|
3371
3434
|
type: string
|
|
3435
|
+
isQueryable:
|
|
3436
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
3437
|
+
type: SemanticEntityIsQueryableEnum
|
|
3438
|
+
required: false
|
|
3372
3439
|
label:
|
|
3373
3440
|
description: The display name of the semantic entity to be used in the ui.
|
|
3374
3441
|
type: string
|
|
@@ -3578,6 +3645,10 @@ types:
|
|
|
3578
3645
|
id:
|
|
3579
3646
|
description: The object ID of the semantic entity.
|
|
3580
3647
|
type: string
|
|
3648
|
+
isQueryable:
|
|
3649
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
3650
|
+
type: SemanticEntityIsQueryableEnum
|
|
3651
|
+
required: false
|
|
3581
3652
|
label:
|
|
3582
3653
|
description: The display name of the semantic entity to be used in the ui.
|
|
3583
3654
|
type: string
|
|
@@ -3725,6 +3796,10 @@ types:
|
|
|
3725
3796
|
id:
|
|
3726
3797
|
description: The object ID of the semantic entity.
|
|
3727
3798
|
type: string
|
|
3799
|
+
isQueryable:
|
|
3800
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
3801
|
+
type: SemanticEntityIsQueryableEnum
|
|
3802
|
+
required: false
|
|
3728
3803
|
label:
|
|
3729
3804
|
description: The display name of the semantic entity to be used in the ui.
|
|
3730
3805
|
type: string
|
|
@@ -3904,6 +3979,10 @@ types:
|
|
|
3904
3979
|
id:
|
|
3905
3980
|
description: The object ID of the semantic entity.
|
|
3906
3981
|
type: string
|
|
3982
|
+
isQueryable:
|
|
3983
|
+
description: Indicates if the entity can be queried in semantic query engine
|
|
3984
|
+
type: SemanticEntityIsQueryableEnum
|
|
3985
|
+
required: false
|
|
3907
3986
|
label:
|
|
3908
3987
|
description: The display name of the semantic entity to be used in the ui.
|
|
3909
3988
|
type: string
|
|
@@ -4115,6 +4194,10 @@ types:
|
|
|
4115
4194
|
description: Filters search results based on fields that contain a specific string in their label.
|
|
4116
4195
|
type: string
|
|
4117
4196
|
required: false
|
|
4197
|
+
fineGrainSecurity:
|
|
4198
|
+
description: Use fine grain security for partial SDM.
|
|
4199
|
+
type: boolean
|
|
4200
|
+
required: false
|
|
4118
4201
|
includeModelContent:
|
|
4119
4202
|
description: Enrich model with its content in response.
|
|
4120
4203
|
type: boolean
|
|
@@ -5302,6 +5385,10 @@ types:
|
|
|
5302
5385
|
description: Filters search results based on fields that contain a specific string in their label.
|
|
5303
5386
|
type: string
|
|
5304
5387
|
required: false
|
|
5388
|
+
fineGrainSecurity:
|
|
5389
|
+
description: Use fine grain security for partial SDM.
|
|
5390
|
+
type: boolean
|
|
5391
|
+
required: false
|
|
5305
5392
|
includeModelContent:
|
|
5306
5393
|
description: Enrich model with its content in response.
|
|
5307
5394
|
type: boolean
|