@salesforce/lds-adapters-analytics-wave 1.211.0 → 1.212.1
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/package.json +1 -1
- package/sfdc/index.js +1 -1
- package/src/raml/api.raml +33 -0
package/package.json
CHANGED
package/sfdc/index.js
CHANGED
|
@@ -32092,4 +32092,4 @@ withDefaultLuvio((luvio) => {
|
|
|
32092
32092
|
});
|
|
32093
32093
|
|
|
32094
32094
|
export { createDataConnector, createDataflowJob, createDataset, createDatasetVersion, createReplicatedDataset, deleteDataConnector, deleteDataset, deleteRecipe, deleteReplicatedDataset, executeQuery, executeQuery_imperative, getActions, getActions_imperative, getAnalyticsLimits, getAnalyticsLimits_imperative, getDataConnector, getDataConnectorNotifyChange, getDataConnectorSourceFields, getDataConnectorSourceFieldsNotifyChange, getDataConnectorSourceFields_imperative, getDataConnectorSourceObject, getDataConnectorSourceObjectDataPreviewWithFields, getDataConnectorSourceObjectDataPreviewWithFields_imperative, getDataConnectorSourceObjectNotifyChange, getDataConnectorSourceObject_imperative, getDataConnectorSourceObjects, getDataConnectorSourceObjects_imperative, getDataConnectorStatus, getDataConnectorStatus_imperative, getDataConnectorTypes, getDataConnectorTypes_imperative, getDataConnector_imperative, getDataConnectors, getDataConnectors_imperative, getDataflowJob, getDataflowJobNode, getDataflowJobNodeNotifyChange, getDataflowJobNode_imperative, getDataflowJobNodes, getDataflowJobNodes_imperative, getDataflowJobNotifyChange, getDataflowJob_imperative, getDataflowJobs, getDataflowJobs_imperative, getDataflows, getDataflows_imperative, getDataset, getDatasetNotifyChange, getDatasetVersion, getDatasetVersionNotifyChange, getDatasetVersion_imperative, getDatasetVersions, getDatasetVersions_imperative, getDataset_imperative, getDatasets, getDatasets_imperative, getDependencies, getDependencies_imperative, getRecipe, getRecipeNotification, getRecipeNotificationNotifyChange, getRecipeNotification_imperative, getRecipeNotifyChange, getRecipe_imperative, getRecipes, getRecipes_imperative, getReplicatedDataset, getReplicatedDatasetNotifyChange, getReplicatedDataset_imperative, getReplicatedDatasets, getReplicatedDatasets_imperative, getReplicatedFields, getReplicatedFieldsNotifyChange, getReplicatedFields_imperative, getSchedule, getScheduleNotifyChange, getSchedule_imperative, getSecurityCoverageDatasetVersion, getSecurityCoverageDatasetVersion_imperative, getWaveFolders, getWaveFolders_imperative, getWaveTemplate, getWaveTemplateConfig, getWaveTemplateConfigNotifyChange, getWaveTemplateConfig_imperative, getWaveTemplateNotifyChange, getWaveTemplateReleaseNotes, getWaveTemplateReleaseNotesNotifyChange, getWaveTemplateReleaseNotes_imperative, getWaveTemplate_imperative, getWaveTemplates, getWaveTemplates_imperative, getXmd, getXmd_imperative, ingestDataConnector, updateDataConnector, updateDataflowJob, updateDataset, updateDatasetVersion, updateRecipe, updateRecipeNotification, updateReplicatedDataset, updateReplicatedFields, updateSchedule, updateXmd, validateWaveTemplate };
|
|
32095
|
-
// version: 1.
|
|
32095
|
+
// version: 1.212.1-49679d2a7
|
package/src/raml/api.raml
CHANGED
|
@@ -185,6 +185,10 @@ types:
|
|
|
185
185
|
description: The guidance panel to show on the app details page.
|
|
186
186
|
type: GuidancePanelRepresentation | nil
|
|
187
187
|
required: false # TODO Hand-rolled W-8253396
|
|
188
|
+
navigation:
|
|
189
|
+
description: The navigation info for this page in the navigation panel.
|
|
190
|
+
type: PageNavigationInfoRepresentation | nil
|
|
191
|
+
required: false # TODO Hand-rolled W-8253396
|
|
188
192
|
AppLogRepresentation:
|
|
189
193
|
description: Wave action representation.
|
|
190
194
|
type: object
|
|
@@ -2360,6 +2364,10 @@ types:
|
|
|
2360
2364
|
description: The guidance panel to show on the wizard page.
|
|
2361
2365
|
type: GuidancePanelRepresentation | nil
|
|
2362
2366
|
required: false # TODO Hand-rolled W-8253396
|
|
2367
|
+
navigation:
|
|
2368
|
+
description: The navigation info for this page in the navigation panel.
|
|
2369
|
+
type: PageNavigationInfoRepresentation | nil
|
|
2370
|
+
required: false # TODO Hand-rolled W-8253396
|
|
2363
2371
|
helpUrl:
|
|
2364
2372
|
description: An URL to this page's help webpage.
|
|
2365
2373
|
type: string | nil
|
|
@@ -2411,6 +2419,19 @@ types:
|
|
|
2411
2419
|
text:
|
|
2412
2420
|
description: The text to display for the group.
|
|
2413
2421
|
type: string
|
|
2422
|
+
PageNavigationInfoRepresentation:
|
|
2423
|
+
description: Configuration for how a page appears in the navigation panel
|
|
2424
|
+
type: object
|
|
2425
|
+
properties:
|
|
2426
|
+
label:
|
|
2427
|
+
description: The label to display for the pane in the navigation panel.
|
|
2428
|
+
type: string
|
|
2429
|
+
required: false # TODO Hand-rolled W-8253396
|
|
2430
|
+
parentLabel:
|
|
2431
|
+
description: The label for the parent node of this page in the navigation
|
|
2432
|
+
panel.
|
|
2433
|
+
type: string
|
|
2434
|
+
required: false # TODO Hand-rolled W-8253396
|
|
2414
2435
|
PageRepresentation:
|
|
2415
2436
|
description: Representation for a single page layout definition for Wave templates.
|
|
2416
2437
|
type: object
|
|
@@ -4446,6 +4467,18 @@ types:
|
|
|
4446
4467
|
# that array, not the array itself). Using any for now to get past
|
|
4447
4468
|
# this.
|
|
4448
4469
|
type: any # TODO Hand-rolled should be PageLayoutRepresentation
|
|
4470
|
+
navigationPanel:
|
|
4471
|
+
description: Configuration for the navigation panel of the wizard.
|
|
4472
|
+
type: NavigationPanelRepresentation
|
|
4473
|
+
required: false # TODO Hand-rolled W-8253396
|
|
4474
|
+
NavigationPanelRepresentation:
|
|
4475
|
+
description: Configuration for the navigation panel in the wizard
|
|
4476
|
+
type: object
|
|
4477
|
+
properties:
|
|
4478
|
+
title:
|
|
4479
|
+
description: The title to display in the pane.
|
|
4480
|
+
type: string
|
|
4481
|
+
required: false # TODO Hand-rolled W-8253396
|
|
4449
4482
|
UnsupportedRecordCollectionRepresentation:
|
|
4450
4483
|
description: Output representation of objects not supported by sharing inheritance
|
|
4451
4484
|
based on insights limits
|