@salesforce/lds-adapters-analytics-wave 1.435.0 → 1.436.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.
@@ -16130,7 +16130,7 @@ const getDataflowJobNodeAdapterFactory = (luvio) => function WAVE__getDataflowJo
16130
16130
  };
16131
16131
 
16132
16132
  const TTL$i = 300;
16133
- const VERSION$K = "0cfc66ed9747baf81d127ff503bc9e40";
16133
+ const VERSION$K = "09d229a95cc4d49d306c567e3142dd02";
16134
16134
  function validate$1t(obj, path = 'DataflowJobNodeStageRepresentation') {
16135
16135
  const v_error = (() => {
16136
16136
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -16432,11 +16432,13 @@ function validate$1t(obj, path = 'DataflowJobNodeStageRepresentation') {
16432
16432
  }
16433
16433
  const RepresentationType$m = 'DataflowJobNodeStageRepresentation';
16434
16434
  function keyBuilder$_(luvio, config) {
16435
- return keyPrefix + '::' + RepresentationType$m + ':' + config.id;
16435
+ return keyPrefix + '::' + RepresentationType$m + ':' + config.dataflowjobId + ':' + config.nodeId + ':' + config.stageId;
16436
16436
  }
16437
16437
  function keyBuilderFromType$9(luvio, object) {
16438
16438
  const keyParams = {
16439
- id: object.stageId
16439
+ dataflowjobId: object.dataflowjobId,
16440
+ nodeId: object.nodeId,
16441
+ stageId: object.stageId
16440
16442
  };
16441
16443
  return keyBuilder$_(luvio, keyParams);
16442
16444
  }
@@ -17152,7 +17154,9 @@ function select$1i(luvio, params) {
17152
17154
  }
17153
17155
  function keyBuilder$X(luvio, params) {
17154
17156
  return keyBuilder$_(luvio, {
17155
- id: params.urlParams.stageId
17157
+ dataflowjobId: params.urlParams.dataflowjobId,
17158
+ nodeId: params.urlParams.nodeId,
17159
+ stageId: params.urlParams.stageId
17156
17160
  });
17157
17161
  }
17158
17162
  function getResponseCacheKeys$F(storeKeyMap, luvio, resourceParams, response) {
@@ -17290,7 +17294,7 @@ const getDataflowJobNodeStageAdapterFactory = (luvio) => function WAVE__getDataf
17290
17294
  };
17291
17295
 
17292
17296
  const TTL$h = 300;
17293
- const VERSION$I = "c0b61674a94b7f7346535c68ffd8990b";
17297
+ const VERSION$I = "468da49a155099cb3dcd6c19d3b095df";
17294
17298
  function validate$1r(obj, path = 'DataflowJobNodeStageParentsRepresentation') {
17295
17299
  const v_error = (() => {
17296
17300
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -17340,11 +17344,13 @@ function validate$1r(obj, path = 'DataflowJobNodeStageParentsRepresentation') {
17340
17344
  }
17341
17345
  const RepresentationType$k = 'DataflowJobNodeStageParentsRepresentation';
17342
17346
  function keyBuilder$V(luvio, config) {
17343
- return keyPrefix + '::' + RepresentationType$k + ':' + config.id;
17347
+ return keyPrefix + '::' + RepresentationType$k + ':' + config.dataflowjobId + ':' + config.nodeId + ':' + config.stageId;
17344
17348
  }
17345
17349
  function keyBuilderFromType$8(luvio, object) {
17346
17350
  const keyParams = {
17347
- id: object.stageId
17351
+ dataflowjobId: object.dataflowjobId,
17352
+ nodeId: object.nodeId,
17353
+ stageId: object.stageId
17348
17354
  };
17349
17355
  return keyBuilder$V(luvio, keyParams);
17350
17356
  }
@@ -17447,7 +17453,9 @@ function select$1g(luvio, params) {
17447
17453
  }
17448
17454
  function keyBuilder$U(luvio, params) {
17449
17455
  return keyBuilder$V(luvio, {
17450
- id: params.urlParams.stageId
17456
+ dataflowjobId: params.urlParams.dataflowjobId,
17457
+ nodeId: params.urlParams.nodeId,
17458
+ stageId: params.urlParams.stageId
17451
17459
  });
17452
17460
  }
17453
17461
  function getResponseCacheKeys$E(storeKeyMap, luvio, resourceParams, response) {
@@ -1,10 +1,12 @@
1
1
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
2
  export declare const TTL = 300;
3
- export declare const VERSION = "c0b61674a94b7f7346535c68ffd8990b";
3
+ export declare const VERSION = "468da49a155099cb3dcd6c19d3b095df";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
7
- id: string;
7
+ dataflowjobId: string;
8
+ nodeId: string;
9
+ stageId: string;
8
10
  }
9
11
  export type DataflowJobNodeStageParentsRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
10
12
  export type PartialDataflowJobNodeStageParentsRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
@@ -21,7 +23,9 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
21
23
  * Parent stage information for a Recipe Stage.
22
24
  *
23
25
  * Keys:
24
- * id (string): stageId
26
+ * dataflowjobId (string): dataflowjobId
27
+ * nodeId (string): nodeId
28
+ * stageId (string): stageId
25
29
  */
26
30
  export interface DataflowJobNodeStageParentsRepresentationNormalized {
27
31
  /** List of all ancestor stage IDs (transitive closure). */
@@ -39,7 +43,9 @@ export interface DataflowJobNodeStageParentsRepresentationNormalized {
39
43
  * Parent stage information for a Recipe Stage.
40
44
  *
41
45
  * Keys:
42
- * id (string): stageId
46
+ * dataflowjobId (string): dataflowjobId
47
+ * nodeId (string): nodeId
48
+ * stageId (string): stageId
43
49
  */
44
50
  export interface DataflowJobNodeStageParentsRepresentation {
45
51
  allParentStageIds: Array<string>;
@@ -1,10 +1,12 @@
1
1
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
2
  export declare const TTL = 300;
3
- export declare const VERSION = "0cfc66ed9747baf81d127ff503bc9e40";
3
+ export declare const VERSION = "09d229a95cc4d49d306c567e3142dd02";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
7
- id: string;
7
+ dataflowjobId: string;
8
+ nodeId: string;
9
+ stageId: string;
8
10
  }
9
11
  export type DataflowJobNodeStageRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
10
12
  export type PartialDataflowJobNodeStageRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
@@ -21,7 +23,9 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
21
23
  * Wave recipe stage representation.
22
24
  *
23
25
  * Keys:
24
- * id (string): stageId
26
+ * dataflowjobId (string): dataflowjobId
27
+ * nodeId (string): nodeId
28
+ * stageId (string): stageId
25
29
  */
26
30
  export interface DataflowJobNodeStageRepresentationNormalized {
27
31
  /** List of all ancestor stage IDs (transitive closure). */
@@ -61,7 +65,9 @@ export interface DataflowJobNodeStageRepresentationNormalized {
61
65
  * Wave recipe stage representation.
62
66
  *
63
67
  * Keys:
64
- * id (string): stageId
68
+ * dataflowjobId (string): dataflowjobId
69
+ * nodeId (string): nodeId
70
+ * stageId (string): stageId
65
71
  */
66
72
  export interface DataflowJobNodeStageRepresentation {
67
73
  allParentStageIds: Array<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-analytics-wave",
3
- "version": "1.435.0",
3
+ "version": "1.436.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",
@@ -66,11 +66,11 @@
66
66
  }
67
67
  },
68
68
  "dependencies": {
69
- "@salesforce/lds-bindings": "^1.435.0"
69
+ "@salesforce/lds-bindings": "^1.436.0"
70
70
  },
71
71
  "devDependencies": {
72
- "@salesforce/lds-compiler-plugins": "^1.435.0",
73
- "@salesforce/lds-karma": "^1.435.0"
72
+ "@salesforce/lds-compiler-plugins": "^1.436.0",
73
+ "@salesforce/lds-karma": "^1.436.0"
74
74
  },
75
75
  "volta": {
76
76
  "extends": "../../package.json"
package/sfdc/index.js CHANGED
@@ -19712,7 +19712,7 @@ const notifyChangeFactory$e = (luvio, options) => {
19712
19712
  };
19713
19713
 
19714
19714
  const TTL$i = 300;
19715
- const VERSION$E = "0cfc66ed9747baf81d127ff503bc9e40";
19715
+ const VERSION$E = "09d229a95cc4d49d306c567e3142dd02";
19716
19716
  function validate$W(obj, path = 'DataflowJobNodeStageRepresentation') {
19717
19717
  const v_error = (() => {
19718
19718
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -20014,11 +20014,13 @@ function validate$W(obj, path = 'DataflowJobNodeStageRepresentation') {
20014
20014
  }
20015
20015
  const RepresentationType$j = 'DataflowJobNodeStageRepresentation';
20016
20016
  function keyBuilder$Z(luvio, config) {
20017
- return keyPrefix + '::' + RepresentationType$j + ':' + config.id;
20017
+ return keyPrefix + '::' + RepresentationType$j + ':' + config.dataflowjobId + ':' + config.nodeId + ':' + config.stageId;
20018
20018
  }
20019
20019
  function keyBuilderFromType$8(luvio, object) {
20020
20020
  const keyParams = {
20021
- id: object.stageId
20021
+ dataflowjobId: object.dataflowjobId,
20022
+ nodeId: object.nodeId,
20023
+ stageId: object.stageId
20022
20024
  };
20023
20025
  return keyBuilder$Z(luvio, keyParams);
20024
20026
  }
@@ -20256,7 +20258,9 @@ function select$1g(luvio, params) {
20256
20258
  }
20257
20259
  function keyBuilder$Y(luvio, params) {
20258
20260
  return keyBuilder$Z(luvio, {
20259
- id: params.urlParams.stageId
20261
+ dataflowjobId: params.urlParams.dataflowjobId,
20262
+ nodeId: params.urlParams.nodeId,
20263
+ stageId: params.urlParams.stageId
20260
20264
  });
20261
20265
  }
20262
20266
  function getResponseCacheKeys$E(storeKeyMap, luvio, resourceParams, response) {
@@ -20308,6 +20312,8 @@ function createResourceRequestFromRepresentation$d(representation) {
20308
20312
  const config = {
20309
20313
  urlParams: {},
20310
20314
  };
20315
+ config.urlParams.dataflowjobId = representation.dataflowjobId;
20316
+ config.urlParams.nodeId = representation.nodeId;
20311
20317
  config.urlParams.stageId = representation.stageId;
20312
20318
  return createResourceRequest$E(config);
20313
20319
  }
@@ -20435,7 +20441,7 @@ const notifyChangeFactory$d = (luvio, options) => {
20435
20441
  };
20436
20442
 
20437
20443
  const TTL$h = 300;
20438
- const VERSION$D = "c0b61674a94b7f7346535c68ffd8990b";
20444
+ const VERSION$D = "468da49a155099cb3dcd6c19d3b095df";
20439
20445
  function validate$V(obj, path = 'DataflowJobNodeStageParentsRepresentation') {
20440
20446
  const v_error = (() => {
20441
20447
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -20485,11 +20491,13 @@ function validate$V(obj, path = 'DataflowJobNodeStageParentsRepresentation') {
20485
20491
  }
20486
20492
  const RepresentationType$i = 'DataflowJobNodeStageParentsRepresentation';
20487
20493
  function keyBuilder$W(luvio, config) {
20488
- return keyPrefix + '::' + RepresentationType$i + ':' + config.id;
20494
+ return keyPrefix + '::' + RepresentationType$i + ':' + config.dataflowjobId + ':' + config.nodeId + ':' + config.stageId;
20489
20495
  }
20490
20496
  function keyBuilderFromType$7(luvio, object) {
20491
20497
  const keyParams = {
20492
- id: object.stageId
20498
+ dataflowjobId: object.dataflowjobId,
20499
+ nodeId: object.nodeId,
20500
+ stageId: object.stageId
20493
20501
  };
20494
20502
  return keyBuilder$W(luvio, keyParams);
20495
20503
  }
@@ -20592,7 +20600,9 @@ function select$1e(luvio, params) {
20592
20600
  }
20593
20601
  function keyBuilder$V(luvio, params) {
20594
20602
  return keyBuilder$W(luvio, {
20595
- id: params.urlParams.stageId
20603
+ dataflowjobId: params.urlParams.dataflowjobId,
20604
+ nodeId: params.urlParams.nodeId,
20605
+ stageId: params.urlParams.stageId
20596
20606
  });
20597
20607
  }
20598
20608
  function getResponseCacheKeys$D(storeKeyMap, luvio, resourceParams, response) {
@@ -20644,6 +20654,8 @@ function createResourceRequestFromRepresentation$c(representation) {
20644
20654
  const config = {
20645
20655
  urlParams: {},
20646
20656
  };
20657
+ config.urlParams.dataflowjobId = representation.dataflowjobId;
20658
+ config.urlParams.nodeId = representation.nodeId;
20647
20659
  config.urlParams.stageId = representation.stageId;
20648
20660
  return createResourceRequest$D(config);
20649
20661
  }
@@ -33310,4 +33322,4 @@ withDefaultLuvio((luvio) => {
33310
33322
  });
33311
33323
 
33312
33324
  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, getXmd, getXmd_imperative, ingestDataConnector, updateDataConnector, updateDataflowJob, updateDataset, updateDatasetVersion, updatePartialWaveFolder, updateRecipe, updateRecipeNotification, updateReplicatedDataset, updateReplicatedFields, updateSchedule, updateWaveFolder, updateXmd, validateWaveTemplate };
33313
- // version: 1.435.0-615ebb9bbd
33325
+ // version: 1.436.0-7cd4295391
@@ -30,11 +30,15 @@ types:
30
30
  DataflowJobNodeStageRepresentation:
31
31
  (luvio.ttl): 300
32
32
  (luvio.key):
33
- id: stageId
33
+ dataflowjobId: dataflowjobId
34
+ nodeId: nodeId
35
+ stageId: stageId
34
36
  DataflowJobNodeStageParentsRepresentation:
35
37
  (luvio.ttl): 300
36
38
  (luvio.key):
37
- id: stageId
39
+ dataflowjobId: dataflowjobId
40
+ nodeId: nodeId
41
+ stageId: stageId
38
42
  DependencyRepresentation:
39
43
  (luvio.ttl): 300
40
44
  DatasetCollectionRepresentation:
@@ -231,13 +235,17 @@ types:
231
235
  (luvio.adapter):
232
236
  name: getDataflowJobNodeStage
233
237
  (luvio.key):
234
- id: urlParams.stageId
238
+ dataflowjobId: urlParams.dataflowjobId
239
+ nodeId: urlParams.nodeId
240
+ stageId: urlParams.stageId
235
241
  /dataflowjobs/{dataflowjobId}/nodes/{nodeId}/stages/{stageId}/parents:
236
242
  get:
237
243
  (luvio.adapter):
238
244
  name: getDataflowJobNodeStageParents
239
245
  (luvio.key):
240
- id: urlParams.stageId
246
+ dataflowjobId: urlParams.dataflowjobId
247
+ nodeId: urlParams.nodeId
248
+ stageId: urlParams.stageId
241
249
  /datasets:
242
250
  get:
243
251
  (luvio.adapter):