@salesforce/lds-adapters-analytics-wave 1.453.0 → 1.454.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.
@@ -8928,7 +8928,7 @@ function getTypeCacheKeys$B(rootKeySet, luvio, input, fullPathFactory) {
8928
8928
  }
8929
8929
 
8930
8930
  const TTL$w = 5000;
8931
- const VERSION$18 = "92df3ba02586d46168c01020932ca1f8";
8931
+ const VERSION$18 = "2fa48e30c70e9a0fb188727a0ad95ae2";
8932
8932
  function validate$1Y(obj, path = 'DataflowJobRepresentation') {
8933
8933
  const validateBaseWaveAssetRepresentation_validateError = validate$1U(obj, path);
8934
8934
  if (validateBaseWaveAssetRepresentation_validateError !== null) {
@@ -8990,6 +8990,13 @@ function validate$1Y(obj, path = 'DataflowJobRepresentation') {
8990
8990
  return new TypeError(message);
8991
8991
  }
8992
8992
  }
8993
+ if (obj.hasNodeErrorLogs !== undefined) {
8994
+ const obj_hasNodeErrorLogs = obj.hasNodeErrorLogs;
8995
+ const path_hasNodeErrorLogs = path + '.hasNodeErrorLogs';
8996
+ if (typeof obj_hasNodeErrorLogs !== 'boolean') {
8997
+ return new TypeError('Expected "boolean" but received "' + typeof obj_hasNodeErrorLogs + '" (at "' + path_hasNodeErrorLogs + '")');
8998
+ }
8999
+ }
8993
9000
  if (obj.inputNodes !== undefined) {
8994
9001
  const obj_inputNodes = obj.inputNodes;
8995
9002
  const path_inputNodes = path + '.inputNodes';
@@ -9224,6 +9231,11 @@ const select$23 = function DataflowJobRepresentationSelect() {
9224
9231
  kind: 'Scalar',
9225
9232
  required: false
9226
9233
  },
9234
+ {
9235
+ name: 'hasNodeErrorLogs',
9236
+ kind: 'Scalar',
9237
+ required: false
9238
+ },
9227
9239
  {
9228
9240
  name: 'inputNodes',
9229
9241
  kind: 'Object',
@@ -9299,6 +9311,19 @@ function equals$18(existing, incoming) {
9299
9311
  if (equals$14(existing, incoming) === false) {
9300
9312
  return false;
9301
9313
  }
9314
+ const existing_hasNodeErrorLogs = existing.hasNodeErrorLogs;
9315
+ const incoming_hasNodeErrorLogs = incoming.hasNodeErrorLogs;
9316
+ // if at least one of these optionals is defined
9317
+ if (existing_hasNodeErrorLogs !== undefined || incoming_hasNodeErrorLogs !== undefined) {
9318
+ // if one of these is not defined we know the other is defined and therefore
9319
+ // not equal
9320
+ if (existing_hasNodeErrorLogs === undefined || incoming_hasNodeErrorLogs === undefined) {
9321
+ return false;
9322
+ }
9323
+ if (!(existing_hasNodeErrorLogs === incoming_hasNodeErrorLogs)) {
9324
+ return false;
9325
+ }
9326
+ }
9302
9327
  const existing_duration = existing.duration;
9303
9328
  const incoming_duration = incoming.duration;
9304
9329
  // if at least one of these optionals is defined
@@ -6,7 +6,7 @@ import { AssetReferenceRepresentation as AssetReferenceRepresentation_AssetRefer
6
6
  import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
7
7
  import { DataflowCollectionRepresentation as DataflowCollectionRepresentation_DataflowCollectionRepresentation } from './DataflowCollectionRepresentation';
8
8
  export declare const TTL = 5000;
9
- export declare const VERSION = "92df3ba02586d46168c01020932ca1f8";
9
+ export declare const VERSION = "2fa48e30c70e9a0fb188727a0ad95ae2";
10
10
  export declare function validate(obj: any, path?: string): TypeError | null;
11
11
  export declare const RepresentationType: string;
12
12
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: Parameters<typeof BaseWaveAssetRepresentation_keyBuilder>[1]): string;
@@ -41,6 +41,8 @@ export interface DataflowJobRepresentationNormalized extends BaseWaveAssetRepres
41
41
  events?: JobEventCollectionRepresentation_JobEventCollectionRepresentation;
42
42
  /** The start date of a job's execution. */
43
43
  executedDate?: string | null;
44
+ /** Whether the dataflow job has node error logs */
45
+ hasNodeErrorLogs?: boolean;
44
46
  inputNodes?: DataflowNodeCollectionRepresentation_DataflowNodeCollectionRepresentation;
45
47
  /** The type of a job */
46
48
  jobType: string;
@@ -76,6 +78,7 @@ export interface DataflowJobRepresentation extends BaseWaveAssetRepresentation_B
76
78
  duration?: number;
77
79
  events?: JobEventCollectionRepresentation_JobEventCollectionRepresentation;
78
80
  executedDate?: string | null;
81
+ hasNodeErrorLogs?: boolean;
79
82
  inputNodes?: DataflowNodeCollectionRepresentation_DataflowNodeCollectionRepresentation;
80
83
  jobType: string;
81
84
  licenseAttributes?: LicenseAttributesRepresentation_LicenseAttributesRepresentation | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-analytics-wave",
3
- "version": "1.453.0",
3
+ "version": "1.454.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "The Einstein Analytics family of APIs",
6
6
  "main": "dist/es/es2018/analytics-wave.js",
@@ -58,10 +58,10 @@
58
58
  }
59
59
  },
60
60
  "dependencies": {
61
- "@salesforce/lds-bindings": "^1.453.0"
61
+ "@salesforce/lds-bindings": "^1.454.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@salesforce/lds-compiler-plugins": "^1.453.0"
64
+ "@salesforce/lds-compiler-plugins": "^1.454.0"
65
65
  },
66
66
  "volta": {
67
67
  "extends": "../../package.json"
package/sfdc/index.js CHANGED
@@ -8383,7 +8383,7 @@ function getTypeCacheKeys$C(rootKeySet, luvio, input, fullPathFactory) {
8383
8383
  }
8384
8384
 
8385
8385
  const TTL$x = 5000;
8386
- const VERSION$1b = "92df3ba02586d46168c01020932ca1f8";
8386
+ const VERSION$1b = "2fa48e30c70e9a0fb188727a0ad95ae2";
8387
8387
  function validate$1_(obj, path = 'DataflowJobRepresentation') {
8388
8388
  const validateBaseWaveAssetRepresentation_validateError = validate$1W(obj, path);
8389
8389
  if (validateBaseWaveAssetRepresentation_validateError !== null) {
@@ -8445,6 +8445,13 @@ function validate$1_(obj, path = 'DataflowJobRepresentation') {
8445
8445
  return new TypeError(message);
8446
8446
  }
8447
8447
  }
8448
+ if (obj.hasNodeErrorLogs !== undefined) {
8449
+ const obj_hasNodeErrorLogs = obj.hasNodeErrorLogs;
8450
+ const path_hasNodeErrorLogs = path + '.hasNodeErrorLogs';
8451
+ if (typeof obj_hasNodeErrorLogs !== 'boolean') {
8452
+ return new TypeError('Expected "boolean" but received "' + typeof obj_hasNodeErrorLogs + '" (at "' + path_hasNodeErrorLogs + '")');
8453
+ }
8454
+ }
8448
8455
  if (obj.inputNodes !== undefined) {
8449
8456
  const obj_inputNodes = obj.inputNodes;
8450
8457
  const path_inputNodes = path + '.inputNodes';
@@ -8679,6 +8686,11 @@ const select$29 = function DataflowJobRepresentationSelect() {
8679
8686
  kind: 'Scalar',
8680
8687
  required: false
8681
8688
  },
8689
+ {
8690
+ name: 'hasNodeErrorLogs',
8691
+ kind: 'Scalar',
8692
+ required: false
8693
+ },
8682
8694
  {
8683
8695
  name: 'inputNodes',
8684
8696
  kind: 'Object',
@@ -8754,6 +8766,19 @@ function equals$1b(existing, incoming) {
8754
8766
  if (equals$17(existing, incoming) === false) {
8755
8767
  return false;
8756
8768
  }
8769
+ const existing_hasNodeErrorLogs = existing.hasNodeErrorLogs;
8770
+ const incoming_hasNodeErrorLogs = incoming.hasNodeErrorLogs;
8771
+ // if at least one of these optionals is defined
8772
+ if (existing_hasNodeErrorLogs !== undefined || incoming_hasNodeErrorLogs !== undefined) {
8773
+ // if one of these is not defined we know the other is defined and therefore
8774
+ // not equal
8775
+ if (existing_hasNodeErrorLogs === undefined || incoming_hasNodeErrorLogs === undefined) {
8776
+ return false;
8777
+ }
8778
+ if (!(existing_hasNodeErrorLogs === incoming_hasNodeErrorLogs)) {
8779
+ return false;
8780
+ }
8781
+ }
8757
8782
  const existing_duration = existing.duration;
8758
8783
  const incoming_duration = incoming.duration;
8759
8784
  // if at least one of these optionals is defined
@@ -33563,4 +33588,4 @@ withDefaultLuvio((luvio) => {
33563
33588
  });
33564
33589
 
33565
33590
  export { createDataConnector, createDataflowJob, createDataset, createDatasetVersion, createReplicatedDataset, createWaveFolder, deleteDataConnector, deleteDataset, deleteRecipe, deleteReplicatedDataset, deleteWaveFolder, executeQuery, executeQuery_imperative, getActions, getActions_imperative, getAnalyticsLimits, getAnalyticsLimits_imperative, getDataConnector, getDataConnectorNotifyChange, getDataConnectorSourceFields, getDataConnectorSourceFieldsNotifyChange, getDataConnectorSourceFieldsWithAdvProps, getDataConnectorSourceFieldsWithAdvPropsNotifyChange, getDataConnectorSourceFieldsWithAdvProps_imperative, 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, getDataflowJobNodeStage, getDataflowJobNodeStageNotifyChange, getDataflowJobNodeStageParents, getDataflowJobNodeStageParentsNotifyChange, getDataflowJobNodeStageParents_imperative, getDataflowJobNodeStage_imperative, getDataflowJobNodeStages, getDataflowJobNodeStages_imperative, 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, getReplicatedFieldsWithAdvancedProps, getReplicatedFieldsWithAdvancedPropsNotifyChange, getReplicatedFieldsWithAdvancedProps_imperative, getReplicatedFields_imperative, getSchedule, getScheduleNotifyChange, getSchedule_imperative, getSecurityCoverageDatasetVersion, getSecurityCoverageDatasetVersion_imperative, getWaveFolder, getWaveFolderNotifyChange, getWaveFolder_imperative, getWaveFolders, getWaveFolders_imperative, getWaveTemplate, getWaveTemplateConfig, getWaveTemplateConfigNotifyChange, getWaveTemplateConfig_imperative, getWaveTemplateNotifyChange, getWaveTemplateReleaseNotes, getWaveTemplateReleaseNotesNotifyChange, getWaveTemplateReleaseNotes_imperative, getWaveTemplate_imperative, getWaveTemplates, getWaveTemplates_imperative, getWaveUnsupportedFeatures, getWaveUnsupportedFeatures_imperative, getXmd, getXmd_imperative, ingestDataConnector, updateDataConnector, updateDataflowJob, updateDataset, updateDatasetVersion, updatePartialWaveFolder, updateRecipe, updateRecipeNotification, updateReplicatedDataset, updateReplicatedFields, updateSchedule, updateWaveFolder, updateXmd, validateWaveTemplate };
33566
- // version: 1.453.0-e6dc0c039a
33591
+ // version: 1.454.0-761808c4e9
package/src/raml/api.raml CHANGED
@@ -1304,6 +1304,10 @@ types:
1304
1304
  description: The start date of a job's execution.
1305
1305
  type: string | nil
1306
1306
  required: false # TODO Hand-rolled W-8253396
1307
+ hasNodeErrorLogs:
1308
+ description: Whether the dataflow job has node error logs
1309
+ type: boolean
1310
+ required: false
1307
1311
  inputNodes:
1308
1312
  description: Input node information
1309
1313
  type: DataflowNodeCollectionRepresentation