@salesforce/lds-adapters-uiapi 1.360.1 → 1.362.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/types/src/generated/graphql/types/Analytics__AnalyticsRepresentation.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/graphql/types/Analytics__AnalyticsRepresentationInterface.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/graphql/types/Analytics__DataspaceRepresentation.d.ts +39 -0
- package/dist/es/es2018/types/src/generated/graphql/types/Analytics__SemanticDefinition.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/types/FieldValueRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/selectors/record.d.ts +1 -1
- package/dist/es/es2018/uiapi-records-service.js +4798 -4524
- package/package.json +7 -7
- package/sfdc/graphqlAdapters.js +3074 -2858
- package/sfdc/index.js +129 -75
- package/sfdc/uiapi-static-functions.js +1 -1
- package/src/raml/api.raml +1 -1
- package/src/raml/uiapi.graphql +10 -0
|
@@ -95,7 +95,7 @@ var TypeCheckShapes;
|
|
|
95
95
|
TypeCheckShapes[TypeCheckShapes["Integer"] = 3] = "Integer";
|
|
96
96
|
TypeCheckShapes[TypeCheckShapes["Unsupported"] = 4] = "Unsupported";
|
|
97
97
|
})(TypeCheckShapes || (TypeCheckShapes = {}));
|
|
98
|
-
// engine version: 0.
|
|
98
|
+
// engine version: 0.158.1-2546b2c0
|
|
99
99
|
|
|
100
100
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
101
101
|
|
package/src/raml/api.raml
CHANGED
|
@@ -1109,7 +1109,7 @@ types:
|
|
|
1109
1109
|
type: string | nil # TODO: nil union hand rolled
|
|
1110
1110
|
value:
|
|
1111
1111
|
description: The value of a field in its raw data form.
|
|
1112
|
-
type: RecordRepresentation | boolean | number | string | nil # TODO: integer -> number hand rolled
|
|
1112
|
+
type: RecordRepresentation | boolean | number | string | string[] | nil # TODO: integer -> number hand rolled
|
|
1113
1113
|
FilteredLookupInfoRepresentation:
|
|
1114
1114
|
description: Filtered lookup info.
|
|
1115
1115
|
type: object
|
package/src/raml/uiapi.graphql
CHANGED
|
@@ -1650,6 +1650,14 @@ interface Analytics__AnalyticsRepresentationInterface {
|
|
|
1650
1650
|
ApiName: String!
|
|
1651
1651
|
NamespacePrefix: StringValue
|
|
1652
1652
|
AnalyticsWorkspaces: Analytics__AnalyticsWorkspaceAssetConnection
|
|
1653
|
+
Dataspaces: [Analytics__DataspaceRepresentation]
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
type Analytics__DataspaceRepresentation {
|
|
1657
|
+
Id: ID!
|
|
1658
|
+
ApiName: String!
|
|
1659
|
+
MasterLabel: String
|
|
1660
|
+
DeveloperName: String
|
|
1653
1661
|
}
|
|
1654
1662
|
|
|
1655
1663
|
type Analytics__AnalyticsRepresentation implements Analytics__AnalyticsRepresentationInterface {
|
|
@@ -1664,6 +1672,7 @@ type Analytics__AnalyticsRepresentation implements Analytics__AnalyticsRepresent
|
|
|
1664
1672
|
NamespacePrefix: StringValue
|
|
1665
1673
|
RecordOperations: [StringValue]
|
|
1666
1674
|
AnalyticsWorkspaces: Analytics__AnalyticsWorkspaceAssetConnection
|
|
1675
|
+
Dataspaces: [Analytics__DataspaceRepresentation]
|
|
1667
1676
|
}
|
|
1668
1677
|
|
|
1669
1678
|
type Analytics__SemanticDefinition implements Analytics__AnalyticsRepresentationInterface {
|
|
@@ -1678,6 +1687,7 @@ type Analytics__SemanticDefinition implements Analytics__AnalyticsRepresentation
|
|
|
1678
1687
|
NamespacePrefix: StringValue
|
|
1679
1688
|
AnalyticsWorkspaces: Analytics__AnalyticsWorkspaceAssetConnection
|
|
1680
1689
|
SubMetrics: Analytics__SemanticSubMetricDefinitionConnection
|
|
1690
|
+
Dataspaces: [Analytics__DataspaceRepresentation]
|
|
1681
1691
|
}
|
|
1682
1692
|
|
|
1683
1693
|
input Analytics__AnalyticsOrderBy {
|