@salesforce/lds-adapters-analytics-wave 1.282.0 → 1.284.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/analytics-wave.js +1504 -1392
- package/dist/es/es2018/types/src/generated/adapters/postWaveFolders.d.ts +16 -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/postWaveFolders.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/types/BaseWaveFolderInputRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/WaveFolderTemplateInputRepresentation.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/types/WaveFolderTemplateInputWrapperRepresentation.d.ts +28 -0
- package/package.json +4 -4
- package/sfdc/index.js +1969 -1854
- package/src/raml/api.raml +45 -0
- package/src/raml/luvio.raml +3 -0
package/src/raml/api.raml
CHANGED
|
@@ -369,6 +369,37 @@ types:
|
|
|
369
369
|
url:
|
|
370
370
|
description: URL to get the definition of the asset.
|
|
371
371
|
type: string
|
|
372
|
+
BaseWaveFolderInputRepresentation:
|
|
373
|
+
description: Input representation for wave folders.
|
|
374
|
+
type: object
|
|
375
|
+
properties:
|
|
376
|
+
assetIcon:
|
|
377
|
+
description: The icon enumeration that best represents the new folder or application.
|
|
378
|
+
Valid values are 1.png through 20.png.
|
|
379
|
+
type: string
|
|
380
|
+
description:
|
|
381
|
+
description: The description of the new folder or application.
|
|
382
|
+
type: string
|
|
383
|
+
label:
|
|
384
|
+
description: The user-facing name of the new folder or application.
|
|
385
|
+
type: string
|
|
386
|
+
name:
|
|
387
|
+
description: The internal api name of the new folder or application.
|
|
388
|
+
type: string
|
|
389
|
+
WaveFolderTemplateInputWrapperRepresentation: # TODO Hand-rolled W-14799120
|
|
390
|
+
description: Wrapper for wave folder template representation
|
|
391
|
+
type: object
|
|
392
|
+
properties:
|
|
393
|
+
waveFolderTemplate:
|
|
394
|
+
type: WaveFolderTemplateInputRepresentation
|
|
395
|
+
description: wave folder template input representation
|
|
396
|
+
WaveFolderTemplateInputRepresentation:
|
|
397
|
+
description: Input representation for templatized wave folders
|
|
398
|
+
type: object
|
|
399
|
+
properties:
|
|
400
|
+
//:
|
|
401
|
+
type: any
|
|
402
|
+
|
|
372
403
|
BooleanTypeRepresentation:
|
|
373
404
|
description: Representation for boolean variable types.
|
|
374
405
|
discriminatorValue: BooleanType # TODO Hand-rolled W-8988532
|
|
@@ -6877,6 +6908,20 @@ types:
|
|
|
6877
6908
|
templateSourceId:
|
|
6878
6909
|
type: string
|
|
6879
6910
|
required: false
|
|
6911
|
+
post:
|
|
6912
|
+
displayName: postWaveFolderCollection
|
|
6913
|
+
description: Creates a new Wave application to contain Wave analytics assets.
|
|
6914
|
+
responses:
|
|
6915
|
+
'200':
|
|
6916
|
+
description: Success
|
|
6917
|
+
body:
|
|
6918
|
+
application/json:
|
|
6919
|
+
type: WaveFolderRepresentation
|
|
6920
|
+
body:
|
|
6921
|
+
application/json:
|
|
6922
|
+
type: WaveFolderTemplateInputWrapperRepresentation
|
|
6923
|
+
(oas-body-name): waveFolder
|
|
6924
|
+
|
|
6880
6925
|
/folders/{folderId}:
|
|
6881
6926
|
delete:
|
|
6882
6927
|
description: Delete an Application folder resource representation.
|