@salesforce/lds-adapters-analytics-app-framework 1.332.0-dev2 → 1.332.0-dev21
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-app-framework.js +262 -139
- package/dist/es/es2018/types/src/generated/adapters/updateApp.d.ts +21 -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 +2 -1
- package/dist/es/es2018/types/src/generated/resources/putAppFrameworkAppsByAppIdOrApiName.d.ts +20 -0
- package/dist/es/es2018/types/src/generated/types/AppRepresentation.d.ts +5 -2
- package/dist/es/es2018/types/src/generated/types/AppUpdateRepresentation.d.ts +41 -0
- package/package.json +3 -3
- package/sfdc/index.js +568 -442
- package/src/raml/api.raml +40 -1
- package/src/raml/luvio.raml +3 -0
package/src/raml/api.raml
CHANGED
|
@@ -195,8 +195,11 @@ types:
|
|
|
195
195
|
name:
|
|
196
196
|
description: The dev name of this app.
|
|
197
197
|
type: string
|
|
198
|
+
refreshUrl:
|
|
199
|
+
description: A link to rerun the Data Assets and refresh the data
|
|
200
|
+
type: string
|
|
198
201
|
schedule:
|
|
199
|
-
description: The refresh
|
|
202
|
+
description: The refresh schedule for this app.
|
|
200
203
|
type: AppScheduleRepresentation | nil
|
|
201
204
|
templateSourceId:
|
|
202
205
|
description: The ID od the template used to create this app.
|
|
@@ -251,6 +254,28 @@ types:
|
|
|
251
254
|
url:
|
|
252
255
|
description: Url to scheduling attributes of a folder.
|
|
253
256
|
type: string | nil
|
|
257
|
+
AppUpdateRepresentation:
|
|
258
|
+
description: Input representation for updating/reconfiguring an app from a template.
|
|
259
|
+
type: object
|
|
260
|
+
properties:
|
|
261
|
+
logLevel:
|
|
262
|
+
description: Specifies the runtime logging level for debug.
|
|
263
|
+
required: false # TODO Hand-rolled W-15955585
|
|
264
|
+
type: string
|
|
265
|
+
runtimeMethod:
|
|
266
|
+
description: The runtime method async or sync
|
|
267
|
+
required: false # TODO Hand-rolled W-15955585
|
|
268
|
+
type: string
|
|
269
|
+
templateSourceId:
|
|
270
|
+
description: Template Id from which the app was created from.
|
|
271
|
+
type: string
|
|
272
|
+
templateValues:
|
|
273
|
+
description: The runtime template values to use during application upgrade
|
|
274
|
+
required: false # TODO Hand-rolled W-15955585
|
|
275
|
+
type: object
|
|
276
|
+
properties:
|
|
277
|
+
//:
|
|
278
|
+
type: any # TODO Hand-rolled W-8863405
|
|
254
279
|
AssetCollectionRepresentation:
|
|
255
280
|
description: Representation list of assets created from a template.
|
|
256
281
|
type: object
|
|
@@ -1058,6 +1083,20 @@ types:
|
|
|
1058
1083
|
body:
|
|
1059
1084
|
application/json:
|
|
1060
1085
|
type: AppRepresentation
|
|
1086
|
+
put:
|
|
1087
|
+
displayName: putAppFrameworkApp
|
|
1088
|
+
description: Update an app from a template.
|
|
1089
|
+
responses:
|
|
1090
|
+
'200':
|
|
1091
|
+
description: Success
|
|
1092
|
+
body:
|
|
1093
|
+
application/json:
|
|
1094
|
+
type: AppResultRepresentation
|
|
1095
|
+
body:
|
|
1096
|
+
application/json:
|
|
1097
|
+
# TODO: Hand-rolled due to issue #24 in Generated RAML Gaps (https://salesforce.quip.com/NxVhAkxL6RTW#dGQACAxyxIv)
|
|
1098
|
+
type: AppUpdateRepresentation
|
|
1099
|
+
(oas-body-name): updateBody
|
|
1061
1100
|
uriParameters:
|
|
1062
1101
|
appIdOrApiName:
|
|
1063
1102
|
type: string
|