@salesforce/lds-adapters-analytics-unifiedanalytics 1.332.0-dev10 → 1.332.0-dev12
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/analytics-unifiedanalytics.js +478 -103
- package/dist/es/es2018/types/src/generated/adapters/createDataAssetRequest.d.ts +10 -10
- package/dist/es/es2018/types/src/generated/adapters/getOrg.d.ts +4 -5
- package/dist/es/es2018/types/src/generated/adapters/updateDataAssetRequest.d.ts +10 -10
- package/dist/es/es2018/types/src/generated/resources/{getTableauOrgsByUserName.d.ts → getTableauOrgs.d.ts} +0 -3
- package/dist/es/es2018/types/src/generated/resources/patchTableauDataAssetsRequestsByRequestIdOrApiName.d.ts +10 -10
- package/dist/es/es2018/types/src/generated/resources/postTableauDataAssetsRequests.d.ts +10 -10
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestInputRepresentation.d.ts +21 -21
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +37 -37
- package/dist/es/es2018/types/src/generated/types/OrgCollectionRepresentation.d.ts +6 -6
- package/dist/es/es2018/types/src/generated/types/OrgRepresentation.d.ts +4 -4
- package/package.json +3 -3
- package/sfdc/index.js +479 -104
- package/src/raml/api.raml +37 -38
- package/src/raml/luvio.raml +1 -1
- package/dist/es/es2018/types/src/generated/types/OrgInputRepresentation.d.ts +0 -28
package/src/raml/api.raml
CHANGED
|
@@ -941,33 +941,42 @@ types:
|
|
|
941
941
|
assetId:
|
|
942
942
|
description: Id of Asset being promoted
|
|
943
943
|
type: string
|
|
944
|
+
required: false
|
|
944
945
|
id:
|
|
945
946
|
description: Id for the request
|
|
946
947
|
type: string
|
|
948
|
+
required: false
|
|
947
949
|
label:
|
|
948
950
|
description: Label to be used for the request
|
|
949
951
|
type: string
|
|
952
|
+
required: false
|
|
950
953
|
numberOfDependencies:
|
|
951
954
|
description: Number of dependencies associated with the asset being tracked
|
|
952
955
|
type: integer
|
|
956
|
+
required: false
|
|
953
957
|
rejectionComment:
|
|
954
958
|
description: Rejection comment
|
|
955
959
|
type: string
|
|
960
|
+
required: false
|
|
956
961
|
requestType:
|
|
957
962
|
description: Type of the request
|
|
958
963
|
type: string
|
|
964
|
+
required: false
|
|
959
965
|
enum:
|
|
960
966
|
- Promotion
|
|
961
967
|
- Reuse
|
|
962
968
|
requesterComment:
|
|
963
969
|
description: Requester comment
|
|
964
970
|
type: string
|
|
971
|
+
required: false
|
|
965
972
|
sourceRequestId:
|
|
966
973
|
description: Id for the source request
|
|
967
974
|
type: string
|
|
975
|
+
required: false
|
|
968
976
|
status:
|
|
969
977
|
description: Status of the request
|
|
970
978
|
type: string
|
|
979
|
+
required: false
|
|
971
980
|
enum:
|
|
972
981
|
- Accepted
|
|
973
982
|
- Cancelled
|
|
@@ -988,68 +997,69 @@ types:
|
|
|
988
997
|
workspaceIdOrApiName:
|
|
989
998
|
description: Workspace id or name of personal org related to the request
|
|
990
999
|
type: string
|
|
1000
|
+
required: false
|
|
991
1001
|
DataAssetRequestRepresentation:
|
|
992
1002
|
description: Represents a data asset request
|
|
993
1003
|
type: object
|
|
994
1004
|
properties:
|
|
995
1005
|
acknowledgedBy:
|
|
996
1006
|
description: The user who approved or rejected this request
|
|
997
|
-
type: AnalyticsUserRepresentation
|
|
1007
|
+
type: AnalyticsUserRepresentation | nil
|
|
998
1008
|
acknowledgedDate:
|
|
999
1009
|
description: Acknowledged date
|
|
1000
|
-
type: string
|
|
1010
|
+
type: string | nil
|
|
1001
1011
|
assetId:
|
|
1002
1012
|
description: assetId associated with the request
|
|
1003
1013
|
type: string
|
|
1004
1014
|
assetLabel:
|
|
1005
1015
|
description: Asset Label
|
|
1006
|
-
type: string
|
|
1016
|
+
type: string | nil
|
|
1007
1017
|
cancelledBy:
|
|
1008
1018
|
description: The user who cancelled this request
|
|
1009
|
-
type: AnalyticsUserRepresentation
|
|
1019
|
+
type: AnalyticsUserRepresentation | nil
|
|
1010
1020
|
cancelledDate:
|
|
1011
1021
|
description: Cancelled date
|
|
1012
|
-
type: string
|
|
1022
|
+
type: string | nil
|
|
1013
1023
|
completedBy:
|
|
1014
1024
|
description: The user who completed this request
|
|
1015
|
-
type: AnalyticsUserRepresentation
|
|
1025
|
+
type: AnalyticsUserRepresentation | nil
|
|
1016
1026
|
completedDate:
|
|
1017
1027
|
description: Completed date
|
|
1018
|
-
type: string
|
|
1028
|
+
type: string | nil
|
|
1019
1029
|
failedDate:
|
|
1020
1030
|
description: Failed date
|
|
1021
|
-
type: string
|
|
1031
|
+
type: string | nil
|
|
1022
1032
|
id:
|
|
1023
1033
|
description: Data Asset Request Id
|
|
1024
1034
|
type: string
|
|
1025
1035
|
installedDate:
|
|
1026
1036
|
description: Installed date
|
|
1027
|
-
type: string
|
|
1037
|
+
type: string | nil
|
|
1028
1038
|
label:
|
|
1029
1039
|
description: Data Asset Request Label
|
|
1030
1040
|
type: string
|
|
1031
1041
|
migrationSucceededDate:
|
|
1032
1042
|
description: Migration Succeeded date
|
|
1033
|
-
type: string
|
|
1043
|
+
type: string | nil
|
|
1034
1044
|
numberOfDependencies:
|
|
1035
1045
|
description: Number of dependencies associated with workspace asset being
|
|
1036
1046
|
tracked in the request
|
|
1037
|
-
type: integer
|
|
1047
|
+
type: integer | nil
|
|
1038
1048
|
personalOrgId:
|
|
1039
1049
|
description: ID of personal org
|
|
1040
|
-
type: string
|
|
1050
|
+
type: string | nil
|
|
1041
1051
|
personalOrgWorkspaceId:
|
|
1042
1052
|
description: Workspace ID from personal org
|
|
1043
|
-
type: string
|
|
1053
|
+
type: string | nil
|
|
1044
1054
|
productionOrgId:
|
|
1045
1055
|
description: ID of production org
|
|
1046
|
-
type: string
|
|
1056
|
+
type: string | nil
|
|
1047
1057
|
productionOrgWorkspaceId:
|
|
1048
1058
|
description: Workspace ID from production org
|
|
1049
|
-
type: string
|
|
1059
|
+
type: string | nil
|
|
1050
1060
|
rejectionComment:
|
|
1051
1061
|
description: Rejection Comment
|
|
1052
|
-
type: string
|
|
1062
|
+
type: string | nil
|
|
1053
1063
|
requestType:
|
|
1054
1064
|
description: Type of the request
|
|
1055
1065
|
type: string
|
|
@@ -1067,7 +1077,7 @@ types:
|
|
|
1067
1077
|
type: string
|
|
1068
1078
|
sourceRequestId:
|
|
1069
1079
|
description: Data Asset Request Source Id
|
|
1070
|
-
type: string
|
|
1080
|
+
type: string | nil
|
|
1071
1081
|
status:
|
|
1072
1082
|
description: Data Asset Request Status
|
|
1073
1083
|
type: string
|
|
@@ -1090,7 +1100,7 @@ types:
|
|
|
1090
1100
|
- ReviewContent
|
|
1091
1101
|
targetRequestId:
|
|
1092
1102
|
description: Data Asset Request Target Id
|
|
1093
|
-
type: string
|
|
1103
|
+
type: string | nil
|
|
1094
1104
|
workspaceAssetId:
|
|
1095
1105
|
description: workspaceAssetId in the workspace
|
|
1096
1106
|
type: string
|
|
@@ -1395,21 +1405,14 @@ types:
|
|
|
1395
1405
|
description: A collection of unified analytics orgs.
|
|
1396
1406
|
type: object
|
|
1397
1407
|
properties:
|
|
1398
|
-
|
|
1399
|
-
description:
|
|
1400
|
-
type: OrgRepresentation
|
|
1401
|
-
orgs:
|
|
1402
|
-
description: List of orgs being returned.
|
|
1408
|
+
personalOrgs:
|
|
1409
|
+
description: List of Personal Orgs.
|
|
1403
1410
|
type: array
|
|
1404
1411
|
items:
|
|
1405
1412
|
type: OrgRepresentation
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
properties:
|
|
1410
|
-
userName:
|
|
1411
|
-
description: The name of the user to query to orgs for.
|
|
1412
|
-
type: string
|
|
1413
|
+
productionOrg:
|
|
1414
|
+
description: Production Org.
|
|
1415
|
+
type: OrgRepresentation
|
|
1413
1416
|
OrgRepresentation:
|
|
1414
1417
|
description: Unified analytics org representation.
|
|
1415
1418
|
discriminatorValue: Org
|
|
@@ -1418,12 +1421,12 @@ types:
|
|
|
1418
1421
|
id:
|
|
1419
1422
|
description: ID of this org.
|
|
1420
1423
|
type: string
|
|
1424
|
+
isCurrentOrg:
|
|
1425
|
+
description: Is user currently logged in this org
|
|
1426
|
+
type: boolean
|
|
1421
1427
|
label:
|
|
1422
1428
|
description: Named label to display for this org
|
|
1423
1429
|
type: string
|
|
1424
|
-
orgUrl:
|
|
1425
|
-
description: URL to display for this org
|
|
1426
|
-
type: string
|
|
1427
1430
|
targetUrl:
|
|
1428
1431
|
description: URL to switch to this org.
|
|
1429
1432
|
type: string
|
|
@@ -2388,7 +2391,7 @@ types:
|
|
|
2388
2391
|
type: UnifiedAnalyticsLoglinesInputRepresentation
|
|
2389
2392
|
# required: false # TODO Hand-rolled W-15315791 not supported
|
|
2390
2393
|
(oas-body-name): loglines
|
|
2391
|
-
/orgs
|
|
2394
|
+
/orgs:
|
|
2392
2395
|
get:
|
|
2393
2396
|
displayName: getOrg
|
|
2394
2397
|
description: Get all available Unified Analytics Orgs.
|
|
@@ -2398,10 +2401,6 @@ types:
|
|
|
2398
2401
|
body:
|
|
2399
2402
|
application/json:
|
|
2400
2403
|
type: OrgCollectionRepresentation
|
|
2401
|
-
uriParameters:
|
|
2402
|
-
userName:
|
|
2403
|
-
type: string
|
|
2404
|
-
required: true
|
|
2405
2404
|
/records/{recordId}/shares:
|
|
2406
2405
|
delete:
|
|
2407
2406
|
displayName: deleteSetupRecordShareCollection
|
package/src/raml/luvio.raml
CHANGED
|
@@ -1,28 +0,0 @@
|
|
|
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 = "91822a5a0b6152c95ee4b82259676e3b";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: OrgInputRepresentation, existing: OrgInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): OrgInputRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: OrgInputRepresentationNormalized, incoming: OrgInputRepresentationNormalized): boolean;
|
|
8
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: OrgInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
-
/**
|
|
11
|
-
* Unified Analytics Org Input Representation
|
|
12
|
-
*
|
|
13
|
-
* Keys:
|
|
14
|
-
* (none)
|
|
15
|
-
*/
|
|
16
|
-
export interface OrgInputRepresentationNormalized {
|
|
17
|
-
/** The name of the user to query to orgs for. */
|
|
18
|
-
userName: string;
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* Unified Analytics Org Input Representation
|
|
22
|
-
*
|
|
23
|
-
* Keys:
|
|
24
|
-
* (none)
|
|
25
|
-
*/
|
|
26
|
-
export interface OrgInputRepresentation {
|
|
27
|
-
userName: string;
|
|
28
|
-
}
|