@salesforce/lds-adapters-marketing-cdp 1.304.0 → 1.306.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.
@@ -92,7 +92,39 @@ function createLink(ref) {
92
92
  };
93
93
  }
94
94
 
95
- function validate$a(obj, path = 'CdpObjectBaseOutputRepresentation') {
95
+ function validate$f(obj, path = 'DataGraphFullRefreshConfigInputRepresentation') {
96
+ const v_error = (() => {
97
+ if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
98
+ return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
99
+ }
100
+ if (obj.schedule !== undefined) {
101
+ const obj_schedule = obj.schedule;
102
+ const path_schedule = path + '.schedule';
103
+ if (typeof obj_schedule !== 'object' || ArrayIsArray(obj_schedule) || obj_schedule === null) {
104
+ return new TypeError('Expected "object" but received "' + typeof obj_schedule + '" (at "' + path_schedule + '")');
105
+ }
106
+ }
107
+ })();
108
+ return v_error === undefined ? null : v_error;
109
+ }
110
+
111
+ function validate$e(obj, path = 'DataGraphIncrementalRefreshConfigInputRepresentation') {
112
+ const v_error = (() => {
113
+ if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
114
+ return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
115
+ }
116
+ if (obj.enabled !== undefined) {
117
+ const obj_enabled = obj.enabled;
118
+ const path_enabled = path + '.enabled';
119
+ if (typeof obj_enabled !== 'boolean') {
120
+ return new TypeError('Expected "boolean" but received "' + typeof obj_enabled + '" (at "' + path_enabled + '")');
121
+ }
122
+ }
123
+ })();
124
+ return v_error === undefined ? null : v_error;
125
+ }
126
+
127
+ function validate$d(obj, path = 'CdpObjectBaseOutputRepresentation') {
96
128
  const v_error = (() => {
97
129
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
98
130
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -176,13 +208,132 @@ function keyBuilderFromType$4(luvio, object) {
176
208
  };
177
209
  return keyBuilder$b(luvio, keyParams);
178
210
  }
179
- function equals$6(existing, incoming) {
211
+ function equals$9(existing, incoming) {
180
212
  if (JSONStringify(incoming) !== JSONStringify(existing)) {
181
213
  return false;
182
214
  }
183
215
  return true;
184
216
  }
185
217
 
218
+ function validate$c(obj, path = 'DataGraphScheduleOutputRepresentation') {
219
+ const v_error = (() => {
220
+ if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
221
+ return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
222
+ }
223
+ if (obj.frequency !== undefined) {
224
+ const obj_frequency = obj.frequency;
225
+ const path_frequency = path + '.frequency';
226
+ if (typeof obj_frequency !== 'number' || (typeof obj_frequency === 'number' && Math.floor(obj_frequency) !== obj_frequency)) {
227
+ return new TypeError('Expected "integer" but received "' + typeof obj_frequency + '" (at "' + path_frequency + '")');
228
+ }
229
+ }
230
+ if (obj.timeGranularity !== undefined) {
231
+ const obj_timeGranularity = obj.timeGranularity;
232
+ const path_timeGranularity = path + '.timeGranularity';
233
+ if (typeof obj_timeGranularity !== 'string') {
234
+ return new TypeError('Expected "string" but received "' + typeof obj_timeGranularity + '" (at "' + path_timeGranularity + '")');
235
+ }
236
+ }
237
+ })();
238
+ return v_error === undefined ? null : v_error;
239
+ }
240
+ function equals$8(existing, incoming) {
241
+ const existing_frequency = existing.frequency;
242
+ const incoming_frequency = incoming.frequency;
243
+ // if at least one of these optionals is defined
244
+ if (existing_frequency !== undefined || incoming_frequency !== undefined) {
245
+ // if one of these is not defined we know the other is defined and therefore
246
+ // not equal
247
+ if (existing_frequency === undefined || incoming_frequency === undefined) {
248
+ return false;
249
+ }
250
+ if (!(existing_frequency === incoming_frequency)) {
251
+ return false;
252
+ }
253
+ }
254
+ const existing_timeGranularity = existing.timeGranularity;
255
+ const incoming_timeGranularity = incoming.timeGranularity;
256
+ // if at least one of these optionals is defined
257
+ if (existing_timeGranularity !== undefined || incoming_timeGranularity !== undefined) {
258
+ // if one of these is not defined we know the other is defined and therefore
259
+ // not equal
260
+ if (existing_timeGranularity === undefined || incoming_timeGranularity === undefined) {
261
+ return false;
262
+ }
263
+ if (!(existing_timeGranularity === incoming_timeGranularity)) {
264
+ return false;
265
+ }
266
+ }
267
+ return true;
268
+ }
269
+
270
+ function validate$b(obj, path = 'DataGraphFullRefreshConfigOutputRepresentation') {
271
+ const v_error = (() => {
272
+ if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
273
+ return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
274
+ }
275
+ if (obj.schedule !== undefined) {
276
+ const obj_schedule = obj.schedule;
277
+ const path_schedule = path + '.schedule';
278
+ const referencepath_scheduleValidationError = validate$c(obj_schedule, path_schedule);
279
+ if (referencepath_scheduleValidationError !== null) {
280
+ let message = 'Object doesn\'t match DataGraphScheduleOutputRepresentation (at "' + path_schedule + '")\n';
281
+ message += referencepath_scheduleValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
282
+ return new TypeError(message);
283
+ }
284
+ }
285
+ })();
286
+ return v_error === undefined ? null : v_error;
287
+ }
288
+ function equals$7(existing, incoming) {
289
+ const existing_schedule = existing.schedule;
290
+ const incoming_schedule = incoming.schedule;
291
+ // if at least one of these optionals is defined
292
+ if (existing_schedule !== undefined || incoming_schedule !== undefined) {
293
+ // if one of these is not defined we know the other is defined and therefore
294
+ // not equal
295
+ if (existing_schedule === undefined || incoming_schedule === undefined) {
296
+ return false;
297
+ }
298
+ if (!(equals$8(existing_schedule, incoming_schedule))) {
299
+ return false;
300
+ }
301
+ }
302
+ return true;
303
+ }
304
+
305
+ function validate$a(obj, path = 'DataGraphIncrementalRefreshConfigOutputRepresentation') {
306
+ const v_error = (() => {
307
+ if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
308
+ return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
309
+ }
310
+ if (obj.enabled !== undefined) {
311
+ const obj_enabled = obj.enabled;
312
+ const path_enabled = path + '.enabled';
313
+ if (typeof obj_enabled !== 'boolean') {
314
+ return new TypeError('Expected "boolean" but received "' + typeof obj_enabled + '" (at "' + path_enabled + '")');
315
+ }
316
+ }
317
+ })();
318
+ return v_error === undefined ? null : v_error;
319
+ }
320
+ function equals$6(existing, incoming) {
321
+ const existing_enabled = existing.enabled;
322
+ const incoming_enabled = incoming.enabled;
323
+ // if at least one of these optionals is defined
324
+ if (existing_enabled !== undefined || incoming_enabled !== undefined) {
325
+ // if one of these is not defined we know the other is defined and therefore
326
+ // not equal
327
+ if (existing_enabled === undefined || incoming_enabled === undefined) {
328
+ return false;
329
+ }
330
+ if (!(existing_enabled === incoming_enabled)) {
331
+ return false;
332
+ }
333
+ }
334
+ return true;
335
+ }
336
+
186
337
  function validate$9(obj, path = 'DependencyOutputRepresentation') {
187
338
  const v_error = (() => {
188
339
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -400,6 +551,11 @@ function validate$5(obj, path = 'CdpDataGraphRelatedSegmentOutputRepresentation'
400
551
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
401
552
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
402
553
  }
554
+ const obj_id = obj.id;
555
+ const path_id = path + '.id';
556
+ if (typeof obj_id !== 'string') {
557
+ return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
558
+ }
403
559
  const obj_label = obj.label;
404
560
  const path_label = path + '.label';
405
561
  if (typeof obj_label !== 'string') {
@@ -566,9 +722,9 @@ function equals$4(existing, incoming) {
566
722
  return true;
567
723
  }
568
724
 
569
- const VERSION$3 = "5d9e99f6f73f52f2cfcb77b921003155";
725
+ const VERSION$3 = "ccd13e03e8f6e27eb6bd501431822554";
570
726
  function validate$3(obj, path = 'CdpDataGraphOutputRepresentation') {
571
- const validateCdpObjectBaseOutputRepresentation_validateError = validate$a(obj, path);
727
+ const validateCdpObjectBaseOutputRepresentation_validateError = validate$d(obj, path);
572
728
  if (validateCdpObjectBaseOutputRepresentation_validateError !== null) {
573
729
  return validateCdpObjectBaseOutputRepresentation_validateError;
574
730
  }
@@ -583,16 +739,69 @@ function validate$3(obj, path = 'CdpDataGraphOutputRepresentation') {
583
739
  return new TypeError('Expected "integer" but received "' + typeof obj_cacheDurationInDays + '" (at "' + path_cacheDurationInDays + '")');
584
740
  }
585
741
  }
742
+ if (obj.dayZeroMappingDevName !== undefined) {
743
+ const obj_dayZeroMappingDevName = obj.dayZeroMappingDevName;
744
+ const path_dayZeroMappingDevName = path + '.dayZeroMappingDevName';
745
+ if (typeof obj_dayZeroMappingDevName !== 'string') {
746
+ return new TypeError('Expected "string" but received "' + typeof obj_dayZeroMappingDevName + '" (at "' + path_dayZeroMappingDevName + '")');
747
+ }
748
+ }
749
+ if (obj.dayZeroTransformDevName !== undefined) {
750
+ const obj_dayZeroTransformDevName = obj.dayZeroTransformDevName;
751
+ const path_dayZeroTransformDevName = path + '.dayZeroTransformDevName';
752
+ if (typeof obj_dayZeroTransformDevName !== 'string') {
753
+ return new TypeError('Expected "string" but received "' + typeof obj_dayZeroTransformDevName + '" (at "' + path_dayZeroTransformDevName + '")');
754
+ }
755
+ }
586
756
  const obj_extendedProperties = obj.extendedProperties;
587
757
  const path_extendedProperties = path + '.extendedProperties';
588
758
  if (typeof obj_extendedProperties !== 'string') {
589
759
  return new TypeError('Expected "string" but received "' + typeof obj_extendedProperties + '" (at "' + path_extendedProperties + '")');
590
760
  }
761
+ if (obj.fullRefreshConfig !== undefined) {
762
+ const obj_fullRefreshConfig = obj.fullRefreshConfig;
763
+ const path_fullRefreshConfig = path + '.fullRefreshConfig';
764
+ const referencepath_fullRefreshConfigValidationError = validate$b(obj_fullRefreshConfig, path_fullRefreshConfig);
765
+ if (referencepath_fullRefreshConfigValidationError !== null) {
766
+ let message = 'Object doesn\'t match DataGraphFullRefreshConfigOutputRepresentation (at "' + path_fullRefreshConfig + '")\n';
767
+ message += referencepath_fullRefreshConfigValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
768
+ return new TypeError(message);
769
+ }
770
+ }
771
+ const obj_idDmoLabel = obj.idDmoLabel;
772
+ const path_idDmoLabel = path + '.idDmoLabel';
773
+ if (typeof obj_idDmoLabel !== 'string') {
774
+ return new TypeError('Expected "string" but received "' + typeof obj_idDmoLabel + '" (at "' + path_idDmoLabel + '")');
775
+ }
591
776
  const obj_idDmoName = obj.idDmoName;
592
777
  const path_idDmoName = path + '.idDmoName';
593
778
  if (typeof obj_idDmoName !== 'string') {
594
779
  return new TypeError('Expected "string" but received "' + typeof obj_idDmoName + '" (at "' + path_idDmoName + '")');
595
780
  }
781
+ if (obj.incrementalMappingDevName !== undefined) {
782
+ const obj_incrementalMappingDevName = obj.incrementalMappingDevName;
783
+ const path_incrementalMappingDevName = path + '.incrementalMappingDevName';
784
+ if (typeof obj_incrementalMappingDevName !== 'string') {
785
+ return new TypeError('Expected "string" but received "' + typeof obj_incrementalMappingDevName + '" (at "' + path_incrementalMappingDevName + '")');
786
+ }
787
+ }
788
+ if (obj.incrementalRefreshConfig !== undefined) {
789
+ const obj_incrementalRefreshConfig = obj.incrementalRefreshConfig;
790
+ const path_incrementalRefreshConfig = path + '.incrementalRefreshConfig';
791
+ const referencepath_incrementalRefreshConfigValidationError = validate$a(obj_incrementalRefreshConfig, path_incrementalRefreshConfig);
792
+ if (referencepath_incrementalRefreshConfigValidationError !== null) {
793
+ let message = 'Object doesn\'t match DataGraphIncrementalRefreshConfigOutputRepresentation (at "' + path_incrementalRefreshConfig + '")\n';
794
+ message += referencepath_incrementalRefreshConfigValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
795
+ return new TypeError(message);
796
+ }
797
+ }
798
+ if (obj.incrementalTransformDevName !== undefined) {
799
+ const obj_incrementalTransformDevName = obj.incrementalTransformDevName;
800
+ const path_incrementalTransformDevName = path + '.incrementalTransformDevName';
801
+ if (typeof obj_incrementalTransformDevName !== 'string') {
802
+ return new TypeError('Expected "string" but received "' + typeof obj_incrementalTransformDevName + '" (at "' + path_incrementalTransformDevName + '")');
803
+ }
804
+ }
596
805
  if (obj.isRecordCachingDisabled !== undefined) {
597
806
  const obj_isRecordCachingDisabled = obj.isRecordCachingDisabled;
598
807
  const path_isRecordCachingDisabled = path + '.isRecordCachingDisabled';
@@ -614,6 +823,11 @@ function validate$3(obj, path = 'CdpDataGraphOutputRepresentation') {
614
823
  return new TypeError('Expected "integer" but received "' + typeof obj_maxRecordsCached + '" (at "' + path_maxRecordsCached + '")');
615
824
  }
616
825
  }
826
+ const obj_primaryObjectLabel = obj.primaryObjectLabel;
827
+ const path_primaryObjectLabel = path + '.primaryObjectLabel';
828
+ if (typeof obj_primaryObjectLabel !== 'string') {
829
+ return new TypeError('Expected "string" but received "' + typeof obj_primaryObjectLabel + '" (at "' + path_primaryObjectLabel + '")');
830
+ }
617
831
  const obj_primaryObjectName = obj.primaryObjectName;
618
832
  const path_primaryObjectName = path + '.primaryObjectName';
619
833
  if (typeof obj_primaryObjectName !== 'string') {
@@ -653,6 +867,11 @@ function validate$3(obj, path = 'CdpDataGraphOutputRepresentation') {
653
867
  return new TypeError('Expected "string" but received "' + typeof obj_type + '" (at "' + path_type + '")');
654
868
  }
655
869
  }
870
+ const obj_valuesDmoLabel = obj.valuesDmoLabel;
871
+ const path_valuesDmoLabel = path + '.valuesDmoLabel';
872
+ if (typeof obj_valuesDmoLabel !== 'string') {
873
+ return new TypeError('Expected "string" but received "' + typeof obj_valuesDmoLabel + '" (at "' + path_valuesDmoLabel + '")');
874
+ }
656
875
  const obj_valuesDmoName = obj.valuesDmoName;
657
876
  const path_valuesDmoName = path + '.valuesDmoName';
658
877
  if (typeof obj_valuesDmoName !== 'string') {
@@ -685,7 +904,7 @@ const select$a = function CdpDataGraphOutputRepresentationSelect() {
685
904
  };
686
905
  };
687
906
  function equals$3(existing, incoming) {
688
- if (equals$6(existing, incoming) === false) {
907
+ if (equals$9(existing, incoming) === false) {
689
908
  return false;
690
909
  }
691
910
  const existing_isRecordCachingDisabled = existing.isRecordCachingDisabled;
@@ -740,16 +959,73 @@ function equals$3(existing, incoming) {
740
959
  return false;
741
960
  }
742
961
  }
962
+ const existing_dayZeroMappingDevName = existing.dayZeroMappingDevName;
963
+ const incoming_dayZeroMappingDevName = incoming.dayZeroMappingDevName;
964
+ // if at least one of these optionals is defined
965
+ if (existing_dayZeroMappingDevName !== undefined || incoming_dayZeroMappingDevName !== undefined) {
966
+ // if one of these is not defined we know the other is defined and therefore
967
+ // not equal
968
+ if (existing_dayZeroMappingDevName === undefined || incoming_dayZeroMappingDevName === undefined) {
969
+ return false;
970
+ }
971
+ if (!(existing_dayZeroMappingDevName === incoming_dayZeroMappingDevName)) {
972
+ return false;
973
+ }
974
+ }
975
+ const existing_dayZeroTransformDevName = existing.dayZeroTransformDevName;
976
+ const incoming_dayZeroTransformDevName = incoming.dayZeroTransformDevName;
977
+ // if at least one of these optionals is defined
978
+ if (existing_dayZeroTransformDevName !== undefined || incoming_dayZeroTransformDevName !== undefined) {
979
+ // if one of these is not defined we know the other is defined and therefore
980
+ // not equal
981
+ if (existing_dayZeroTransformDevName === undefined || incoming_dayZeroTransformDevName === undefined) {
982
+ return false;
983
+ }
984
+ if (!(existing_dayZeroTransformDevName === incoming_dayZeroTransformDevName)) {
985
+ return false;
986
+ }
987
+ }
743
988
  const existing_extendedProperties = existing.extendedProperties;
744
989
  const incoming_extendedProperties = incoming.extendedProperties;
745
990
  if (!(existing_extendedProperties === incoming_extendedProperties)) {
746
991
  return false;
747
992
  }
993
+ const existing_idDmoLabel = existing.idDmoLabel;
994
+ const incoming_idDmoLabel = incoming.idDmoLabel;
995
+ if (!(existing_idDmoLabel === incoming_idDmoLabel)) {
996
+ return false;
997
+ }
748
998
  const existing_idDmoName = existing.idDmoName;
749
999
  const incoming_idDmoName = incoming.idDmoName;
750
1000
  if (!(existing_idDmoName === incoming_idDmoName)) {
751
1001
  return false;
752
1002
  }
1003
+ const existing_incrementalMappingDevName = existing.incrementalMappingDevName;
1004
+ const incoming_incrementalMappingDevName = incoming.incrementalMappingDevName;
1005
+ // if at least one of these optionals is defined
1006
+ if (existing_incrementalMappingDevName !== undefined || incoming_incrementalMappingDevName !== undefined) {
1007
+ // if one of these is not defined we know the other is defined and therefore
1008
+ // not equal
1009
+ if (existing_incrementalMappingDevName === undefined || incoming_incrementalMappingDevName === undefined) {
1010
+ return false;
1011
+ }
1012
+ if (!(existing_incrementalMappingDevName === incoming_incrementalMappingDevName)) {
1013
+ return false;
1014
+ }
1015
+ }
1016
+ const existing_incrementalTransformDevName = existing.incrementalTransformDevName;
1017
+ const incoming_incrementalTransformDevName = incoming.incrementalTransformDevName;
1018
+ // if at least one of these optionals is defined
1019
+ if (existing_incrementalTransformDevName !== undefined || incoming_incrementalTransformDevName !== undefined) {
1020
+ // if one of these is not defined we know the other is defined and therefore
1021
+ // not equal
1022
+ if (existing_incrementalTransformDevName === undefined || incoming_incrementalTransformDevName === undefined) {
1023
+ return false;
1024
+ }
1025
+ if (!(existing_incrementalTransformDevName === incoming_incrementalTransformDevName)) {
1026
+ return false;
1027
+ }
1028
+ }
753
1029
  const existing_lastRunStatus = existing.lastRunStatus;
754
1030
  const incoming_lastRunStatus = incoming.lastRunStatus;
755
1031
  // if at least one of these optionals is defined
@@ -763,6 +1039,11 @@ function equals$3(existing, incoming) {
763
1039
  return false;
764
1040
  }
765
1041
  }
1042
+ const existing_primaryObjectLabel = existing.primaryObjectLabel;
1043
+ const incoming_primaryObjectLabel = incoming.primaryObjectLabel;
1044
+ if (!(existing_primaryObjectLabel === incoming_primaryObjectLabel)) {
1045
+ return false;
1046
+ }
766
1047
  const existing_primaryObjectName = existing.primaryObjectName;
767
1048
  const incoming_primaryObjectName = incoming.primaryObjectName;
768
1049
  if (!(existing_primaryObjectName === incoming_primaryObjectName)) {
@@ -799,6 +1080,11 @@ function equals$3(existing, incoming) {
799
1080
  return false;
800
1081
  }
801
1082
  }
1083
+ const existing_valuesDmoLabel = existing.valuesDmoLabel;
1084
+ const incoming_valuesDmoLabel = incoming.valuesDmoLabel;
1085
+ if (!(existing_valuesDmoLabel === incoming_valuesDmoLabel)) {
1086
+ return false;
1087
+ }
802
1088
  const existing_valuesDmoName = existing.valuesDmoName;
803
1089
  const incoming_valuesDmoName = incoming.valuesDmoName;
804
1090
  if (!(existing_valuesDmoName === incoming_valuesDmoName)) {
@@ -809,6 +1095,32 @@ function equals$3(existing, incoming) {
809
1095
  if (!(existing_version === incoming_version)) {
810
1096
  return false;
811
1097
  }
1098
+ const existing_fullRefreshConfig = existing.fullRefreshConfig;
1099
+ const incoming_fullRefreshConfig = incoming.fullRefreshConfig;
1100
+ // if at least one of these optionals is defined
1101
+ if (existing_fullRefreshConfig !== undefined || incoming_fullRefreshConfig !== undefined) {
1102
+ // if one of these is not defined we know the other is defined and therefore
1103
+ // not equal
1104
+ if (existing_fullRefreshConfig === undefined || incoming_fullRefreshConfig === undefined) {
1105
+ return false;
1106
+ }
1107
+ if (!(equals$7(existing_fullRefreshConfig, incoming_fullRefreshConfig))) {
1108
+ return false;
1109
+ }
1110
+ }
1111
+ const existing_incrementalRefreshConfig = existing.incrementalRefreshConfig;
1112
+ const incoming_incrementalRefreshConfig = incoming.incrementalRefreshConfig;
1113
+ // if at least one of these optionals is defined
1114
+ if (existing_incrementalRefreshConfig !== undefined || incoming_incrementalRefreshConfig !== undefined) {
1115
+ // if one of these is not defined we know the other is defined and therefore
1116
+ // not equal
1117
+ if (existing_incrementalRefreshConfig === undefined || incoming_incrementalRefreshConfig === undefined) {
1118
+ return false;
1119
+ }
1120
+ if (!(equals$6(existing_incrementalRefreshConfig, incoming_incrementalRefreshConfig))) {
1121
+ return false;
1122
+ }
1123
+ }
812
1124
  const existing_sourceObject = existing.sourceObject;
813
1125
  const incoming_sourceObject = incoming.sourceObject;
814
1126
  if (!(equals$4(existing_sourceObject, incoming_sourceObject))) {
@@ -889,6 +1201,8 @@ const createDataGraph_ConfigPropertyMetadata = [
889
1201
  generateParamConfigMetadata('maxRecordsCached', false, 2 /* Body */, 3 /* Integer */),
890
1202
  generateParamConfigMetadata('sessionEnd', false, 2 /* Body */, 3 /* Integer */),
891
1203
  generateParamConfigMetadata('sessionEndTimeUnit', false, 2 /* Body */, 0 /* String */),
1204
+ generateParamConfigMetadata('fullRefreshConfig', false, 2 /* Body */, 4 /* Unsupported */),
1205
+ generateParamConfigMetadata('incrementalRefreshConfig', false, 2 /* Body */, 4 /* Unsupported */),
892
1206
  ];
893
1207
  const createDataGraph_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$7, createDataGraph_ConfigPropertyMetadata);
894
1208
  const createResourceParams$7 = /*#__PURE__*/ createResourceParams$8(createDataGraph_ConfigPropertyMetadata);
@@ -897,6 +1211,16 @@ function typeCheckConfig$7(untrustedConfig) {
897
1211
  typeCheckConfig$8(untrustedConfig, config, createDataGraph_ConfigPropertyMetadata);
898
1212
  const untrustedConfig_sourceObject = untrustedConfig.sourceObject;
899
1213
  config.sourceObject = untrustedConfig_sourceObject;
1214
+ const untrustedConfig_fullRefreshConfig = untrustedConfig.fullRefreshConfig;
1215
+ const referenceDataGraphFullRefreshConfigInputRepresentationValidationError = validate$f(untrustedConfig_fullRefreshConfig);
1216
+ if (referenceDataGraphFullRefreshConfigInputRepresentationValidationError === null) {
1217
+ config.fullRefreshConfig = untrustedConfig_fullRefreshConfig;
1218
+ }
1219
+ const untrustedConfig_incrementalRefreshConfig = untrustedConfig.incrementalRefreshConfig;
1220
+ const referenceDataGraphIncrementalRefreshConfigInputRepresentationValidationError = validate$e(untrustedConfig_incrementalRefreshConfig);
1221
+ if (referenceDataGraphIncrementalRefreshConfigInputRepresentationValidationError === null) {
1222
+ config.incrementalRefreshConfig = untrustedConfig_incrementalRefreshConfig;
1223
+ }
900
1224
  return config;
901
1225
  }
902
1226
  function validateAdapterConfig$7(untrustedConfig, configPropertyNames) {
@@ -992,6 +1316,8 @@ const editDataGraph_ConfigPropertyMetadata = [
992
1316
  generateParamConfigMetadata('maxRecordsCached', false, 2 /* Body */, 3 /* Integer */),
993
1317
  generateParamConfigMetadata('sessionEnd', false, 2 /* Body */, 3 /* Integer */),
994
1318
  generateParamConfigMetadata('sessionEndTimeUnit', false, 2 /* Body */, 0 /* String */),
1319
+ generateParamConfigMetadata('fullRefreshConfig', false, 2 /* Body */, 4 /* Unsupported */),
1320
+ generateParamConfigMetadata('incrementalRefreshConfig', false, 2 /* Body */, 4 /* Unsupported */),
995
1321
  ];
996
1322
  const editDataGraph_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$6, editDataGraph_ConfigPropertyMetadata);
997
1323
  const createResourceParams$6 = /*#__PURE__*/ createResourceParams$8(editDataGraph_ConfigPropertyMetadata);
@@ -1000,6 +1326,16 @@ function typeCheckConfig$6(untrustedConfig) {
1000
1326
  typeCheckConfig$8(untrustedConfig, config, editDataGraph_ConfigPropertyMetadata);
1001
1327
  const untrustedConfig_sourceObject = untrustedConfig.sourceObject;
1002
1328
  config.sourceObject = untrustedConfig_sourceObject;
1329
+ const untrustedConfig_fullRefreshConfig = untrustedConfig.fullRefreshConfig;
1330
+ const referenceDataGraphFullRefreshConfigInputRepresentationValidationError = validate$f(untrustedConfig_fullRefreshConfig);
1331
+ if (referenceDataGraphFullRefreshConfigInputRepresentationValidationError === null) {
1332
+ config.fullRefreshConfig = untrustedConfig_fullRefreshConfig;
1333
+ }
1334
+ const untrustedConfig_incrementalRefreshConfig = untrustedConfig.incrementalRefreshConfig;
1335
+ const referenceDataGraphIncrementalRefreshConfigInputRepresentationValidationError = validate$e(untrustedConfig_incrementalRefreshConfig);
1336
+ if (referenceDataGraphIncrementalRefreshConfigInputRepresentationValidationError === null) {
1337
+ config.incrementalRefreshConfig = untrustedConfig_incrementalRefreshConfig;
1338
+ }
1003
1339
  return config;
1004
1340
  }
1005
1341
  function validateAdapterConfig$6(untrustedConfig, configPropertyNames) {
@@ -1429,7 +1765,7 @@ const retryDataGraphAdapterFactory = (luvio) => {
1429
1765
 
1430
1766
  const VERSION$1 = "0c15cc932d3ea4f07bf6a3b0429e3520";
1431
1767
  function validate$1(obj, path = 'CdpDataGraphDependencyOutputRepresentation') {
1432
- const validateCdpObjectBaseOutputRepresentation_validateError = validate$a(obj, path);
1768
+ const validateCdpObjectBaseOutputRepresentation_validateError = validate$d(obj, path);
1433
1769
  if (validateCdpObjectBaseOutputRepresentation_validateError !== null) {
1434
1770
  return validateCdpObjectBaseOutputRepresentation_validateError;
1435
1771
  }
@@ -1474,7 +1810,7 @@ const select$4 = function CdpDataGraphDependencyOutputRepresentationSelect() {
1474
1810
  };
1475
1811
  };
1476
1812
  function equals$1(existing, incoming) {
1477
- if (equals$6(existing, incoming) === false) {
1813
+ if (equals$9(existing, incoming) === false) {
1478
1814
  return false;
1479
1815
  }
1480
1816
  const existing_dependency = existing.dependency;
@@ -1,5 +1,7 @@
1
1
  import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
2
2
  import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
3
+ import { DataGraphFullRefreshConfigInputRepresentation as types_DataGraphFullRefreshConfigInputRepresentation_DataGraphFullRefreshConfigInputRepresentation } from '../types/DataGraphFullRefreshConfigInputRepresentation';
4
+ import { DataGraphIncrementalRefreshConfigInputRepresentation as types_DataGraphIncrementalRefreshConfigInputRepresentation_DataGraphIncrementalRefreshConfigInputRepresentation } from '../types/DataGraphIncrementalRefreshConfigInputRepresentation';
3
5
  import { ResourceRequestConfig as resources_postSsotDataGraphs_ResourceRequestConfig } from '../resources/postSsotDataGraphs';
4
6
  import { CdpDataGraphOutputRepresentation as types_CdpDataGraphOutputRepresentation_CdpDataGraphOutputRepresentation } from '../types/CdpDataGraphOutputRepresentation';
5
7
  export declare const adapterName = "createDataGraph";
@@ -18,6 +20,8 @@ export interface CreateDataGraphConfig {
18
20
  maxRecordsCached?: number;
19
21
  sessionEnd?: number;
20
22
  sessionEndTimeUnit?: string;
23
+ fullRefreshConfig?: types_DataGraphFullRefreshConfigInputRepresentation_DataGraphFullRefreshConfigInputRepresentation;
24
+ incrementalRefreshConfig?: types_DataGraphIncrementalRefreshConfigInputRepresentation_DataGraphIncrementalRefreshConfigInputRepresentation;
21
25
  }
22
26
  export declare const createResourceParams: (config: CreateDataGraphConfig) => resources_postSsotDataGraphs_ResourceRequestConfig;
23
27
  export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateDataGraphConfig>): adapter$45$utils_Untrusted<CreateDataGraphConfig>;
@@ -1,5 +1,7 @@
1
1
  import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
2
2
  import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
3
+ import { DataGraphFullRefreshConfigInputRepresentation as types_DataGraphFullRefreshConfigInputRepresentation_DataGraphFullRefreshConfigInputRepresentation } from '../types/DataGraphFullRefreshConfigInputRepresentation';
4
+ import { DataGraphIncrementalRefreshConfigInputRepresentation as types_DataGraphIncrementalRefreshConfigInputRepresentation_DataGraphIncrementalRefreshConfigInputRepresentation } from '../types/DataGraphIncrementalRefreshConfigInputRepresentation';
3
5
  import { ResourceRequestConfig as resources_putSsotDataGraphs_ResourceRequestConfig } from '../resources/putSsotDataGraphs';
4
6
  import { CdpDataGraphOutputRepresentation as types_CdpDataGraphOutputRepresentation_CdpDataGraphOutputRepresentation } from '../types/CdpDataGraphOutputRepresentation';
5
7
  export declare const adapterName = "editDataGraph";
@@ -18,6 +20,8 @@ export interface EditDataGraphConfig {
18
20
  maxRecordsCached?: number;
19
21
  sessionEnd?: number;
20
22
  sessionEndTimeUnit?: string;
23
+ fullRefreshConfig?: types_DataGraphFullRefreshConfigInputRepresentation_DataGraphFullRefreshConfigInputRepresentation;
24
+ incrementalRefreshConfig?: types_DataGraphIncrementalRefreshConfigInputRepresentation_DataGraphIncrementalRefreshConfigInputRepresentation;
21
25
  }
22
26
  export declare const createResourceParams: (config: EditDataGraphConfig) => resources_putSsotDataGraphs_ResourceRequestConfig;
23
27
  export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<EditDataGraphConfig>): adapter$45$utils_Untrusted<EditDataGraphConfig>;
@@ -1,3 +1,5 @@
1
+ import { DataGraphFullRefreshConfigInputRepresentation as types_DataGraphFullRefreshConfigInputRepresentation_DataGraphFullRefreshConfigInputRepresentation } from '../types/DataGraphFullRefreshConfigInputRepresentation';
2
+ import { DataGraphIncrementalRefreshConfigInputRepresentation as types_DataGraphIncrementalRefreshConfigInputRepresentation_DataGraphIncrementalRefreshConfigInputRepresentation } from '../types/DataGraphIncrementalRefreshConfigInputRepresentation';
1
3
  import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
4
  import { CdpDataGraphOutputRepresentation as types_CdpDataGraphOutputRepresentation_CdpDataGraphOutputRepresentation } from '../types/CdpDataGraphOutputRepresentation';
3
5
  export interface ResourceRequestConfig {
@@ -14,6 +16,8 @@ export interface ResourceRequestConfig {
14
16
  maxRecordsCached?: number;
15
17
  sessionEnd?: number;
16
18
  sessionEndTimeUnit?: string;
19
+ fullRefreshConfig?: types_DataGraphFullRefreshConfigInputRepresentation_DataGraphFullRefreshConfigInputRepresentation;
20
+ incrementalRefreshConfig?: types_DataGraphIncrementalRefreshConfigInputRepresentation_DataGraphIncrementalRefreshConfigInputRepresentation;
17
21
  };
18
22
  }
19
23
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -1,3 +1,5 @@
1
+ import { DataGraphFullRefreshConfigInputRepresentation as types_DataGraphFullRefreshConfigInputRepresentation_DataGraphFullRefreshConfigInputRepresentation } from '../types/DataGraphFullRefreshConfigInputRepresentation';
2
+ import { DataGraphIncrementalRefreshConfigInputRepresentation as types_DataGraphIncrementalRefreshConfigInputRepresentation_DataGraphIncrementalRefreshConfigInputRepresentation } from '../types/DataGraphIncrementalRefreshConfigInputRepresentation';
1
3
  import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
4
  import { CdpDataGraphOutputRepresentation as types_CdpDataGraphOutputRepresentation_CdpDataGraphOutputRepresentation } from '../types/CdpDataGraphOutputRepresentation';
3
5
  export interface ResourceRequestConfig {
@@ -14,6 +16,8 @@ export interface ResourceRequestConfig {
14
16
  maxRecordsCached?: number;
15
17
  sessionEnd?: number;
16
18
  sessionEndTimeUnit?: string;
19
+ fullRefreshConfig?: types_DataGraphFullRefreshConfigInputRepresentation_DataGraphFullRefreshConfigInputRepresentation;
20
+ incrementalRefreshConfig?: types_DataGraphIncrementalRefreshConfigInputRepresentation_DataGraphIncrementalRefreshConfigInputRepresentation;
17
21
  };
18
22
  }
19
23
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -1,5 +1,7 @@
1
+ import { DataGraphFullRefreshConfigInputRepresentation as DataGraphFullRefreshConfigInputRepresentation_DataGraphFullRefreshConfigInputRepresentation } from './DataGraphFullRefreshConfigInputRepresentation';
2
+ import { DataGraphIncrementalRefreshConfigInputRepresentation as DataGraphIncrementalRefreshConfigInputRepresentation_DataGraphIncrementalRefreshConfigInputRepresentation } from './DataGraphIncrementalRefreshConfigInputRepresentation';
1
3
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "73e2a9f7ea66b54800ac82d04ab5189b";
4
+ export declare const VERSION = "e5b0715060e469e9bb7b2d12c4e80667";
3
5
  export declare function validate(obj: any, path?: string): TypeError | null;
4
6
  export declare const RepresentationType: string;
5
7
  export declare function normalize(input: CdpDataGraphInputRepresentation, existing: CdpDataGraphInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpDataGraphInputRepresentationNormalized;
@@ -20,6 +22,8 @@ export interface CdpDataGraphInputRepresentationNormalized {
20
22
  dataspaceName?: string;
21
23
  /** description */
22
24
  description?: string;
25
+ fullRefreshConfig?: DataGraphFullRefreshConfigInputRepresentation_DataGraphFullRefreshConfigInputRepresentation;
26
+ incrementalRefreshConfig?: DataGraphIncrementalRefreshConfigInputRepresentation_DataGraphIncrementalRefreshConfigInputRepresentation;
23
27
  /** Is prefetch is disabled for given data graph */
24
28
  isRecordCachingDisabled?: boolean;
25
29
  /** label */
@@ -49,6 +53,8 @@ export interface CdpDataGraphInputRepresentation {
49
53
  cacheDurationInDays?: number;
50
54
  dataspaceName?: string;
51
55
  description?: string;
56
+ fullRefreshConfig?: DataGraphFullRefreshConfigInputRepresentation_DataGraphFullRefreshConfigInputRepresentation;
57
+ incrementalRefreshConfig?: DataGraphIncrementalRefreshConfigInputRepresentation_DataGraphIncrementalRefreshConfigInputRepresentation;
52
58
  isRecordCachingDisabled?: boolean;
53
59
  label?: string;
54
60
  maxRecordsCached?: number;