@salesforce/lds-adapters-analytics-wave 1.159.0 → 1.160.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 +1439 -1865
- package/dist/es/es2018/types/src/generated/types/ConfigurationPageLayoutRepresentation.d.ts +33 -0
- package/dist/es/es2018/types/src/generated/types/PageLayoutRepresentation.d.ts +12 -9
- package/dist/es/es2018/types/src/generated/types/UiLayoutDefinitionRepresentation.d.ts +3 -4
- package/dist/es/es2018/types/src/generated/types/ValidationPageGroupRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/ValidationPageLayoutRepresentation.d.ts +35 -0
- package/package.json +1 -1
- package/sfdc/index.js +1385 -1811
- package/src/raml/api.raml +53 -4
package/src/raml/api.raml
CHANGED
|
@@ -2308,9 +2308,10 @@ types:
|
|
|
2308
2308
|
PageLayoutRepresentation:
|
|
2309
2309
|
description: Representation for a single page layout definition for Wave templates.
|
|
2310
2310
|
type: object
|
|
2311
|
+
discriminator: type
|
|
2311
2312
|
properties:
|
|
2312
2313
|
backgroundImage:
|
|
2313
|
-
description: The optional background image for the wizard page
|
|
2314
|
+
description: The optional background image for the wizard page
|
|
2314
2315
|
#type: AssetReferenceRepresentation | nil
|
|
2315
2316
|
type: TemplateAssetReferenceRepresentation | nil # TODO Hand-rolled BaseAssetReferenceRepresentation required id issue
|
|
2316
2317
|
condition:
|
|
@@ -2320,11 +2321,53 @@ types:
|
|
|
2320
2321
|
helpUrl:
|
|
2321
2322
|
description: An URL to this page's help webpage.
|
|
2322
2323
|
type: string | nil
|
|
2324
|
+
title:
|
|
2325
|
+
description: The title for the page.
|
|
2326
|
+
type: string
|
|
2327
|
+
type:
|
|
2328
|
+
description: The type of the page (Configuration, Validation)
|
|
2329
|
+
type: string
|
|
2330
|
+
enum:
|
|
2331
|
+
- Configuration
|
|
2332
|
+
- Validation
|
|
2333
|
+
ConfigurationPageLayoutRepresentation:
|
|
2334
|
+
description: Representation for a configuration page definition for Wave templates.
|
|
2335
|
+
discriminatorValue: Configuration
|
|
2336
|
+
type: PageLayoutRepresentation
|
|
2337
|
+
properties:
|
|
2323
2338
|
layout:
|
|
2324
2339
|
description: The layout.
|
|
2325
2340
|
type: LayoutRepresentation
|
|
2326
|
-
|
|
2327
|
-
|
|
2341
|
+
ValidationPageLayoutRepresentation:
|
|
2342
|
+
description: Representation for a validation page definition for Wave templates.
|
|
2343
|
+
discriminatorValue: Validation
|
|
2344
|
+
type: PageLayoutRepresentation
|
|
2345
|
+
properties:
|
|
2346
|
+
groups:
|
|
2347
|
+
description: The readiness requirement groups.
|
|
2348
|
+
type: array
|
|
2349
|
+
items:
|
|
2350
|
+
type: ValidationPageGroupRepresentation
|
|
2351
|
+
header:
|
|
2352
|
+
description: The header information.
|
|
2353
|
+
type: HeaderRepresentation | nil
|
|
2354
|
+
ValidationPageGroupRepresentation:
|
|
2355
|
+
description: Representation for a readiness requirement group on a validation
|
|
2356
|
+
page for Wave templates.
|
|
2357
|
+
type: object
|
|
2358
|
+
properties:
|
|
2359
|
+
includeUnmatched:
|
|
2360
|
+
description: True if this group should include any requirements that are otherwise
|
|
2361
|
+
unmatched by other groups.
|
|
2362
|
+
type: boolean
|
|
2363
|
+
tags:
|
|
2364
|
+
description: The tags for readiness requirements that will go into this group.
|
|
2365
|
+
type: array # TODO Hand-rolled union types on arrays (#19 on https://salesforce.quip.com/NxVhAkxL6RTW)
|
|
2366
|
+
#type: array | nil
|
|
2367
|
+
items:
|
|
2368
|
+
type: string
|
|
2369
|
+
text:
|
|
2370
|
+
description: The text to display for the group.
|
|
2328
2371
|
type: string
|
|
2329
2372
|
PageRepresentation:
|
|
2330
2373
|
description: Representation for a single page layout definition for Wave templates.
|
|
@@ -4326,7 +4369,13 @@ types:
|
|
|
4326
4369
|
description: The page collection for this template configuration.
|
|
4327
4370
|
type: array
|
|
4328
4371
|
items:
|
|
4329
|
-
type:
|
|
4372
|
+
# Setting this to the real type causes the snapshot to reject with:
|
|
4373
|
+
# 'Invalid discriminator. Expected discriminator at path
|
|
4374
|
+
# "layout.pages.type" but receive [...]' where [...] is the
|
|
4375
|
+
# layout.pages array (it should be looking at one of the elements of
|
|
4376
|
+
# that array, not the array itself). Using any for now to get past
|
|
4377
|
+
# this.
|
|
4378
|
+
type: any # TODO Hand-rolled should be PageLayoutRepresentation
|
|
4330
4379
|
UnsupportedRecordCollectionRepresentation:
|
|
4331
4380
|
description: Output representation of objects not supported by sharing inheritance
|
|
4332
4381
|
based on insights limits
|