@salesforce/lds-adapters-analytics-wave 1.265.0 → 1.266.0-dev10

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.
@@ -511,8 +511,249 @@ const getActionsAdapterFactory = (luvio) => function WAVE__getActions(untrustedC
511
511
  buildCachedSnapshotCachePolicy$D, buildNetworkSnapshotCachePolicy$z);
512
512
  };
513
513
 
514
- const VERSION$1P = "5775d4ff2ea195893cab7df348933df2";
515
- function validate$2D(obj, path = 'TimeZoneRepresentation') {
514
+ const VERSION$1P = "5d123dd51422aa09451217b1e392922f";
515
+ function validate$2D(obj, path = 'WaveUserRepresentation') {
516
+ const v_error = (() => {
517
+ if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
518
+ return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
519
+ }
520
+ if (obj.id !== undefined) {
521
+ const obj_id = obj.id;
522
+ const path_id = path + '.id';
523
+ if (typeof obj_id !== 'string') {
524
+ return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
525
+ }
526
+ }
527
+ if (obj.name !== undefined) {
528
+ const obj_name = obj.name;
529
+ const path_name = path + '.name';
530
+ if (typeof obj_name !== 'string') {
531
+ return new TypeError('Expected "string" but received "' + typeof obj_name + '" (at "' + path_name + '")');
532
+ }
533
+ }
534
+ if (obj.profilePhotoUrl !== undefined) {
535
+ const obj_profilePhotoUrl = obj.profilePhotoUrl;
536
+ const path_profilePhotoUrl = path + '.profilePhotoUrl';
537
+ let obj_profilePhotoUrl_union0 = null;
538
+ const obj_profilePhotoUrl_union0_error = (() => {
539
+ if (typeof obj_profilePhotoUrl !== 'string') {
540
+ return new TypeError('Expected "string" but received "' + typeof obj_profilePhotoUrl + '" (at "' + path_profilePhotoUrl + '")');
541
+ }
542
+ })();
543
+ if (obj_profilePhotoUrl_union0_error != null) {
544
+ obj_profilePhotoUrl_union0 = obj_profilePhotoUrl_union0_error.message;
545
+ }
546
+ let obj_profilePhotoUrl_union1 = null;
547
+ const obj_profilePhotoUrl_union1_error = (() => {
548
+ if (obj_profilePhotoUrl !== null) {
549
+ return new TypeError('Expected "null" but received "' + typeof obj_profilePhotoUrl + '" (at "' + path_profilePhotoUrl + '")');
550
+ }
551
+ })();
552
+ if (obj_profilePhotoUrl_union1_error != null) {
553
+ obj_profilePhotoUrl_union1 = obj_profilePhotoUrl_union1_error.message;
554
+ }
555
+ if (obj_profilePhotoUrl_union0 && obj_profilePhotoUrl_union1) {
556
+ let message = 'Object doesn\'t match union (at "' + path_profilePhotoUrl + '")';
557
+ message += '\n' + obj_profilePhotoUrl_union0.split('\n').map((line) => '\t' + line).join('\n');
558
+ message += '\n' + obj_profilePhotoUrl_union1.split('\n').map((line) => '\t' + line).join('\n');
559
+ return new TypeError(message);
560
+ }
561
+ }
562
+ })();
563
+ return v_error === undefined ? null : v_error;
564
+ }
565
+ const select$2F = function WaveUserRepresentationSelect() {
566
+ return {
567
+ kind: 'Fragment',
568
+ version: VERSION$1P,
569
+ private: [],
570
+ selections: [
571
+ {
572
+ name: 'id',
573
+ kind: 'Scalar',
574
+ required: false
575
+ },
576
+ {
577
+ name: 'name',
578
+ kind: 'Scalar',
579
+ required: false
580
+ },
581
+ {
582
+ name: 'profilePhotoUrl',
583
+ kind: 'Scalar',
584
+ required: false
585
+ }
586
+ ]
587
+ };
588
+ };
589
+ function equals$1P(existing, incoming) {
590
+ const existing_id = existing.id;
591
+ const incoming_id = incoming.id;
592
+ // if at least one of these optionals is defined
593
+ if (existing_id !== undefined || incoming_id !== undefined) {
594
+ // if one of these is not defined we know the other is defined and therefore
595
+ // not equal
596
+ if (existing_id === undefined || incoming_id === undefined) {
597
+ return false;
598
+ }
599
+ if (!(existing_id === incoming_id)) {
600
+ return false;
601
+ }
602
+ }
603
+ const existing_name = existing.name;
604
+ const incoming_name = incoming.name;
605
+ // if at least one of these optionals is defined
606
+ if (existing_name !== undefined || incoming_name !== undefined) {
607
+ // if one of these is not defined we know the other is defined and therefore
608
+ // not equal
609
+ if (existing_name === undefined || incoming_name === undefined) {
610
+ return false;
611
+ }
612
+ if (!(existing_name === incoming_name)) {
613
+ return false;
614
+ }
615
+ }
616
+ const existing_profilePhotoUrl = existing.profilePhotoUrl;
617
+ const incoming_profilePhotoUrl = incoming.profilePhotoUrl;
618
+ // if at least one of these optionals is defined
619
+ if (existing_profilePhotoUrl !== undefined || incoming_profilePhotoUrl !== undefined) {
620
+ // if one of these is not defined we know the other is defined and therefore
621
+ // not equal
622
+ if (existing_profilePhotoUrl === undefined || incoming_profilePhotoUrl === undefined) {
623
+ return false;
624
+ }
625
+ if (!(existing_profilePhotoUrl === incoming_profilePhotoUrl)) {
626
+ return false;
627
+ }
628
+ }
629
+ return true;
630
+ }
631
+
632
+ const VERSION$1O = "70b4ac2217d94fe3c8fee7757b5ea296";
633
+ function validate$2C(obj, path = 'JobEventRepresentation') {
634
+ const v_error = (() => {
635
+ if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
636
+ return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
637
+ }
638
+ const obj_createdBy = obj.createdBy;
639
+ const path_createdBy = path + '.createdBy';
640
+ const referencepath_createdByValidationError = validate$2D(obj_createdBy, path_createdBy);
641
+ if (referencepath_createdByValidationError !== null) {
642
+ let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_createdBy + '")\n';
643
+ message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
644
+ return new TypeError(message);
645
+ }
646
+ const obj_createdDate = obj.createdDate;
647
+ const path_createdDate = path + '.createdDate';
648
+ if (typeof obj_createdDate !== 'string') {
649
+ return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
650
+ }
651
+ const obj_eventType = obj.eventType;
652
+ const path_eventType = path + '.eventType';
653
+ if (typeof obj_eventType !== 'string') {
654
+ return new TypeError('Expected "string" but received "' + typeof obj_eventType + '" (at "' + path_eventType + '")');
655
+ }
656
+ })();
657
+ return v_error === undefined ? null : v_error;
658
+ }
659
+ const select$2E = function JobEventRepresentationSelect() {
660
+ const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2F();
661
+ return {
662
+ kind: 'Fragment',
663
+ version: VERSION$1O,
664
+ private: [],
665
+ selections: [
666
+ {
667
+ name: 'createdBy',
668
+ kind: 'Object',
669
+ selections: WaveUserRepresentation__selections
670
+ },
671
+ {
672
+ name: 'createdDate',
673
+ kind: 'Scalar'
674
+ },
675
+ {
676
+ name: 'eventType',
677
+ kind: 'Scalar'
678
+ }
679
+ ]
680
+ };
681
+ };
682
+ function equals$1O(existing, incoming) {
683
+ const existing_createdDate = existing.createdDate;
684
+ const incoming_createdDate = incoming.createdDate;
685
+ if (!(existing_createdDate === incoming_createdDate)) {
686
+ return false;
687
+ }
688
+ const existing_eventType = existing.eventType;
689
+ const incoming_eventType = incoming.eventType;
690
+ if (!(existing_eventType === incoming_eventType)) {
691
+ return false;
692
+ }
693
+ const existing_createdBy = existing.createdBy;
694
+ const incoming_createdBy = incoming.createdBy;
695
+ if (!(equals$1P(existing_createdBy, incoming_createdBy))) {
696
+ return false;
697
+ }
698
+ return true;
699
+ }
700
+
701
+ const VERSION$1N = "e1acecd6dddc9a86bf16f3b291e8bd42";
702
+ function validate$2B(obj, path = 'JobEventCollectionRepresentation') {
703
+ const v_error = (() => {
704
+ if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
705
+ return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
706
+ }
707
+ const obj_events = obj.events;
708
+ const path_events = path + '.events';
709
+ if (!ArrayIsArray(obj_events)) {
710
+ return new TypeError('Expected "array" but received "' + typeof obj_events + '" (at "' + path_events + '")');
711
+ }
712
+ for (let i = 0; i < obj_events.length; i++) {
713
+ const obj_events_item = obj_events[i];
714
+ const path_events_item = path_events + '[' + i + ']';
715
+ const referencepath_events_itemValidationError = validate$2C(obj_events_item, path_events_item);
716
+ if (referencepath_events_itemValidationError !== null) {
717
+ let message = 'Object doesn\'t match JobEventRepresentation (at "' + path_events_item + '")\n';
718
+ message += referencepath_events_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
719
+ return new TypeError(message);
720
+ }
721
+ }
722
+ })();
723
+ return v_error === undefined ? null : v_error;
724
+ }
725
+ const select$2D = function JobEventCollectionRepresentationSelect() {
726
+ const { selections: JobEventRepresentation__selections, opaque: JobEventRepresentation__opaque, } = select$2E();
727
+ return {
728
+ kind: 'Fragment',
729
+ version: VERSION$1N,
730
+ private: [],
731
+ selections: [
732
+ {
733
+ name: 'events',
734
+ kind: 'Object',
735
+ plural: true,
736
+ selections: JobEventRepresentation__selections
737
+ }
738
+ ]
739
+ };
740
+ };
741
+ function equals$1N(existing, incoming) {
742
+ const existing_events = existing.events;
743
+ const incoming_events = incoming.events;
744
+ const equals_events_items = equalsArray(existing_events, incoming_events, (existing_events_item, incoming_events_item) => {
745
+ if (!(equals$1O(existing_events_item, incoming_events_item))) {
746
+ return false;
747
+ }
748
+ });
749
+ if (equals_events_items === false) {
750
+ return false;
751
+ }
752
+ return true;
753
+ }
754
+
755
+ const VERSION$1M = "5775d4ff2ea195893cab7df348933df2";
756
+ function validate$2A(obj, path = 'TimeZoneRepresentation') {
516
757
  const v_error = (() => {
517
758
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
518
759
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -531,10 +772,10 @@ function validate$2D(obj, path = 'TimeZoneRepresentation') {
531
772
  })();
532
773
  return v_error === undefined ? null : v_error;
533
774
  }
534
- const select$2F = function TimeZoneRepresentationSelect() {
775
+ const select$2C = function TimeZoneRepresentationSelect() {
535
776
  return {
536
777
  kind: 'Fragment',
537
- version: VERSION$1P,
778
+ version: VERSION$1M,
538
779
  private: [],
539
780
  selections: [
540
781
  {
@@ -552,7 +793,7 @@ const select$2F = function TimeZoneRepresentationSelect() {
552
793
  ]
553
794
  };
554
795
  };
555
- function equals$1P(existing, incoming) {
796
+ function equals$1M(existing, incoming) {
556
797
  const existing_name = existing.name;
557
798
  const incoming_name = incoming.name;
558
799
  if (!(existing_name === incoming_name)) {
@@ -571,8 +812,8 @@ function equals$1P(existing, incoming) {
571
812
  return true;
572
813
  }
573
814
 
574
- const VERSION$1O = "0040ab091bf36f713408cd55bf6bdd46";
575
- function validate$2C(obj, path = 'TimeRepresentation') {
815
+ const VERSION$1L = "0040ab091bf36f713408cd55bf6bdd46";
816
+ function validate$2z(obj, path = 'TimeRepresentation') {
576
817
  const v_error = (() => {
577
818
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
578
819
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -589,7 +830,7 @@ function validate$2C(obj, path = 'TimeRepresentation') {
589
830
  }
590
831
  const obj_timeZone = obj.timeZone;
591
832
  const path_timeZone = path + '.timeZone';
592
- const referencepath_timeZoneValidationError = validate$2D(obj_timeZone, path_timeZone);
833
+ const referencepath_timeZoneValidationError = validate$2A(obj_timeZone, path_timeZone);
593
834
  if (referencepath_timeZoneValidationError !== null) {
594
835
  let message = 'Object doesn\'t match TimeZoneRepresentation (at "' + path_timeZone + '")\n';
595
836
  message += referencepath_timeZoneValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -598,11 +839,11 @@ function validate$2C(obj, path = 'TimeRepresentation') {
598
839
  })();
599
840
  return v_error === undefined ? null : v_error;
600
841
  }
601
- const select$2E = function TimeRepresentationSelect() {
602
- const { selections: TimeZoneRepresentation__selections, opaque: TimeZoneRepresentation__opaque, } = select$2F();
842
+ const select$2B = function TimeRepresentationSelect() {
843
+ const { selections: TimeZoneRepresentation__selections, opaque: TimeZoneRepresentation__opaque, } = select$2C();
603
844
  return {
604
845
  kind: 'Fragment',
605
- version: VERSION$1O,
846
+ version: VERSION$1L,
606
847
  private: [],
607
848
  selections: [
608
849
  {
@@ -621,7 +862,7 @@ const select$2E = function TimeRepresentationSelect() {
621
862
  ]
622
863
  };
623
864
  };
624
- function equals$1O(existing, incoming) {
865
+ function equals$1L(existing, incoming) {
625
866
  const existing_hour = existing.hour;
626
867
  const incoming_hour = incoming.hour;
627
868
  if (!(existing_hour === incoming_hour)) {
@@ -634,15 +875,15 @@ function equals$1O(existing, incoming) {
634
875
  }
635
876
  const existing_timeZone = existing.timeZone;
636
877
  const incoming_timeZone = incoming.timeZone;
637
- if (!(equals$1P(existing_timeZone, incoming_timeZone))) {
878
+ if (!(equals$1M(existing_timeZone, incoming_timeZone))) {
638
879
  return false;
639
880
  }
640
881
  return true;
641
882
  }
642
883
 
643
- const VERSION$1N = "0df5cebf1a823cdd0ce5cecd34aa14c9";
644
- function validate$2B(obj, path = 'HourlyScheduleRepresentation') {
645
- const validateScheduleRepresentation_validateError = validate$2t(obj, path);
884
+ const VERSION$1K = "0df5cebf1a823cdd0ce5cecd34aa14c9";
885
+ function validate$2y(obj, path = 'HourlyScheduleRepresentation') {
886
+ const validateScheduleRepresentation_validateError = validate$2q(obj, path);
646
887
  if (validateScheduleRepresentation_validateError !== null) {
647
888
  return validateScheduleRepresentation_validateError;
648
889
  }
@@ -684,11 +925,11 @@ function keyBuilderFromType$s(luvio, object) {
684
925
  function normalize$K(input, existing, path, luvio, store, timestamp) {
685
926
  return input;
686
927
  }
687
- const select$2D = function HourlyScheduleRepresentationSelect() {
688
- const { selections: ScheduleRepresentationSelections } = select$2v();
928
+ const select$2A = function HourlyScheduleRepresentationSelect() {
929
+ const { selections: ScheduleRepresentationSelections } = select$2s();
689
930
  return {
690
931
  kind: 'Fragment',
691
- version: VERSION$1N,
932
+ version: VERSION$1K,
692
933
  private: [],
693
934
  selections: [
694
935
  ...ScheduleRepresentationSelections,
@@ -709,8 +950,8 @@ const select$2D = function HourlyScheduleRepresentationSelect() {
709
950
  ]
710
951
  };
711
952
  };
712
- function equals$1N(existing, incoming) {
713
- if (equals$1F(existing, incoming) === false) {
953
+ function equals$1K(existing, incoming) {
954
+ if (equals$1C(existing, incoming) === false) {
714
955
  return false;
715
956
  }
716
957
  const existing_hourlyInterval = existing.hourlyInterval;
@@ -745,14 +986,14 @@ function equals$1N(existing, incoming) {
745
986
  }
746
987
  const ingest$L = function HourlyScheduleRepresentationIngest(input, path, luvio, store, timestamp) {
747
988
  if (process.env.NODE_ENV !== 'production') {
748
- const validateError = validate$2B(input);
989
+ const validateError = validate$2y(input);
749
990
  if (validateError !== null) {
750
991
  throw validateError;
751
992
  }
752
993
  }
753
994
  const key = keyBuilderFromType$s(luvio, input);
754
995
  const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
755
- ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$K, "WAVE", VERSION$1N, RepresentationType$M, equals$1N);
996
+ ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$K, "WAVE", VERSION$1K, RepresentationType$M, equals$1K);
756
997
  return createLink(key);
757
998
  };
758
999
  function getTypeCacheKeys$L(rootKeySet, luvio, input, fullPathFactory) {
@@ -765,9 +1006,9 @@ function getTypeCacheKeys$L(rootKeySet, luvio, input, fullPathFactory) {
765
1006
  });
766
1007
  }
767
1008
 
768
- const VERSION$1M = "115d1159dbe9087c2eaaeff01041d1cd";
769
- function validate$2A(obj, path = 'MonthlySpecificScheduleRepresentation') {
770
- const validateScheduleRepresentation_validateError = validate$2t(obj, path);
1009
+ const VERSION$1J = "115d1159dbe9087c2eaaeff01041d1cd";
1010
+ function validate$2x(obj, path = 'MonthlySpecificScheduleRepresentation') {
1011
+ const validateScheduleRepresentation_validateError = validate$2q(obj, path);
771
1012
  if (validateScheduleRepresentation_validateError !== null) {
772
1013
  return validateScheduleRepresentation_validateError;
773
1014
  }
@@ -797,11 +1038,11 @@ function keyBuilderFromType$r(luvio, object) {
797
1038
  function normalize$J(input, existing, path, luvio, store, timestamp) {
798
1039
  return input;
799
1040
  }
800
- const select$2C = function MonthlySpecificScheduleRepresentationSelect() {
801
- const { selections: ScheduleRepresentationSelections } = select$2v();
1041
+ const select$2z = function MonthlySpecificScheduleRepresentationSelect() {
1042
+ const { selections: ScheduleRepresentationSelections } = select$2s();
802
1043
  return {
803
1044
  kind: 'Fragment',
804
- version: VERSION$1M,
1045
+ version: VERSION$1J,
805
1046
  private: [],
806
1047
  selections: [
807
1048
  ...ScheduleRepresentationSelections,
@@ -813,8 +1054,8 @@ const select$2C = function MonthlySpecificScheduleRepresentationSelect() {
813
1054
  ]
814
1055
  };
815
1056
  };
816
- function equals$1M(existing, incoming) {
817
- if (equals$1F(existing, incoming) === false) {
1057
+ function equals$1J(existing, incoming) {
1058
+ if (equals$1C(existing, incoming) === false) {
818
1059
  return false;
819
1060
  }
820
1061
  const existing_daysOfMonth = existing.daysOfMonth;
@@ -831,14 +1072,14 @@ function equals$1M(existing, incoming) {
831
1072
  }
832
1073
  const ingest$K = function MonthlySpecificScheduleRepresentationIngest(input, path, luvio, store, timestamp) {
833
1074
  if (process.env.NODE_ENV !== 'production') {
834
- const validateError = validate$2A(input);
1075
+ const validateError = validate$2x(input);
835
1076
  if (validateError !== null) {
836
1077
  throw validateError;
837
1078
  }
838
1079
  }
839
1080
  const key = keyBuilderFromType$r(luvio, input);
840
1081
  const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
841
- ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$J, "WAVE", VERSION$1M, RepresentationType$L, equals$1M);
1082
+ ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$J, "WAVE", VERSION$1J, RepresentationType$L, equals$1J);
842
1083
  return createLink(key);
843
1084
  };
844
1085
  function getTypeCacheKeys$K(rootKeySet, luvio, input, fullPathFactory) {
@@ -851,9 +1092,9 @@ function getTypeCacheKeys$K(rootKeySet, luvio, input, fullPathFactory) {
851
1092
  });
852
1093
  }
853
1094
 
854
- const VERSION$1L = "5cf3ea750bdb1c12f44fc117ad992ef8";
855
- function validate$2z(obj, path = 'MinutelyScheduleRepresentation') {
856
- const validateScheduleRepresentation_validateError = validate$2t(obj, path);
1095
+ const VERSION$1I = "5cf3ea750bdb1c12f44fc117ad992ef8";
1096
+ function validate$2w(obj, path = 'MinutelyScheduleRepresentation') {
1097
+ const validateScheduleRepresentation_validateError = validate$2q(obj, path);
857
1098
  if (validateScheduleRepresentation_validateError !== null) {
858
1099
  return validateScheduleRepresentation_validateError;
859
1100
  }
@@ -895,11 +1136,11 @@ function keyBuilderFromType$q(luvio, object) {
895
1136
  function normalize$I(input, existing, path, luvio, store, timestamp) {
896
1137
  return input;
897
1138
  }
898
- const select$2B = function MinutelyScheduleRepresentationSelect() {
899
- const { selections: ScheduleRepresentationSelections } = select$2v();
1139
+ const select$2y = function MinutelyScheduleRepresentationSelect() {
1140
+ const { selections: ScheduleRepresentationSelections } = select$2s();
900
1141
  return {
901
1142
  kind: 'Fragment',
902
- version: VERSION$1L,
1143
+ version: VERSION$1I,
903
1144
  private: [],
904
1145
  selections: [
905
1146
  ...ScheduleRepresentationSelections,
@@ -920,8 +1161,8 @@ const select$2B = function MinutelyScheduleRepresentationSelect() {
920
1161
  ]
921
1162
  };
922
1163
  };
923
- function equals$1L(existing, incoming) {
924
- if (equals$1F(existing, incoming) === false) {
1164
+ function equals$1I(existing, incoming) {
1165
+ if (equals$1C(existing, incoming) === false) {
925
1166
  return false;
926
1167
  }
927
1168
  const existing_lastHour = existing.lastHour;
@@ -956,14 +1197,14 @@ function equals$1L(existing, incoming) {
956
1197
  }
957
1198
  const ingest$J = function MinutelyScheduleRepresentationIngest(input, path, luvio, store, timestamp) {
958
1199
  if (process.env.NODE_ENV !== 'production') {
959
- const validateError = validate$2z(input);
1200
+ const validateError = validate$2w(input);
960
1201
  if (validateError !== null) {
961
1202
  throw validateError;
962
1203
  }
963
1204
  }
964
1205
  const key = keyBuilderFromType$q(luvio, input);
965
1206
  const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
966
- ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$I, "WAVE", VERSION$1L, RepresentationType$K, equals$1L);
1207
+ ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$I, "WAVE", VERSION$1I, RepresentationType$K, equals$1I);
967
1208
  return createLink(key);
968
1209
  };
969
1210
  function getTypeCacheKeys$J(rootKeySet, luvio, input, fullPathFactory) {
@@ -976,9 +1217,9 @@ function getTypeCacheKeys$J(rootKeySet, luvio, input, fullPathFactory) {
976
1217
  });
977
1218
  }
978
1219
 
979
- const VERSION$1K = "5e821d8ae75c1a00b7256084a8894b86";
980
- function validate$2y(obj, path = 'EventDrivenScheduleRepresentation') {
981
- const validateScheduleRepresentation_validateError = validate$2t(obj, path);
1220
+ const VERSION$1H = "5e821d8ae75c1a00b7256084a8894b86";
1221
+ function validate$2v(obj, path = 'EventDrivenScheduleRepresentation') {
1222
+ const validateScheduleRepresentation_validateError = validate$2q(obj, path);
982
1223
  if (validateScheduleRepresentation_validateError !== null) {
983
1224
  return validateScheduleRepresentation_validateError;
984
1225
  }
@@ -1003,11 +1244,11 @@ function keyBuilderFromType$p(luvio, object) {
1003
1244
  function normalize$H(input, existing, path, luvio, store, timestamp) {
1004
1245
  return input;
1005
1246
  }
1006
- const select$2A = function EventDrivenScheduleRepresentationSelect() {
1007
- const { selections: ScheduleRepresentationSelections } = select$2v();
1247
+ const select$2x = function EventDrivenScheduleRepresentationSelect() {
1248
+ const { selections: ScheduleRepresentationSelections } = select$2s();
1008
1249
  return {
1009
1250
  kind: 'Fragment',
1010
- version: VERSION$1K,
1251
+ version: VERSION$1H,
1011
1252
  private: [],
1012
1253
  selections: [
1013
1254
  ...ScheduleRepresentationSelections,
@@ -1019,8 +1260,8 @@ const select$2A = function EventDrivenScheduleRepresentationSelect() {
1019
1260
  ]
1020
1261
  };
1021
1262
  };
1022
- function equals$1K(existing, incoming) {
1023
- if (equals$1F(existing, incoming) === false) {
1263
+ function equals$1H(existing, incoming) {
1264
+ if (equals$1C(existing, incoming) === false) {
1024
1265
  return false;
1025
1266
  }
1026
1267
  const existing_triggerRule = existing.triggerRule;
@@ -1040,14 +1281,14 @@ function equals$1K(existing, incoming) {
1040
1281
  }
1041
1282
  const ingest$I = function EventDrivenScheduleRepresentationIngest(input, path, luvio, store, timestamp) {
1042
1283
  if (process.env.NODE_ENV !== 'production') {
1043
- const validateError = validate$2y(input);
1284
+ const validateError = validate$2v(input);
1044
1285
  if (validateError !== null) {
1045
1286
  throw validateError;
1046
1287
  }
1047
1288
  }
1048
1289
  const key = keyBuilderFromType$p(luvio, input);
1049
1290
  const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
1050
- ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$H, "WAVE", VERSION$1K, RepresentationType$J, equals$1K);
1291
+ ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$H, "WAVE", VERSION$1H, RepresentationType$J, equals$1H);
1051
1292
  return createLink(key);
1052
1293
  };
1053
1294
  function getTypeCacheKeys$I(rootKeySet, luvio, input, fullPathFactory) {
@@ -1060,9 +1301,9 @@ function getTypeCacheKeys$I(rootKeySet, luvio, input, fullPathFactory) {
1060
1301
  });
1061
1302
  }
1062
1303
 
1063
- const VERSION$1J = "2567891b2fa38268398d109e75307004";
1064
- function validate$2x(obj, path = 'WeeklyScheduleRepresentation') {
1065
- const validateScheduleRepresentation_validateError = validate$2t(obj, path);
1304
+ const VERSION$1G = "2567891b2fa38268398d109e75307004";
1305
+ function validate$2u(obj, path = 'WeeklyScheduleRepresentation') {
1306
+ const validateScheduleRepresentation_validateError = validate$2q(obj, path);
1066
1307
  if (validateScheduleRepresentation_validateError !== null) {
1067
1308
  return validateScheduleRepresentation_validateError;
1068
1309
  }
@@ -1092,11 +1333,11 @@ function keyBuilderFromType$o(luvio, object) {
1092
1333
  function normalize$G(input, existing, path, luvio, store, timestamp) {
1093
1334
  return input;
1094
1335
  }
1095
- const select$2z = function WeeklyScheduleRepresentationSelect() {
1096
- const { selections: ScheduleRepresentationSelections } = select$2v();
1336
+ const select$2w = function WeeklyScheduleRepresentationSelect() {
1337
+ const { selections: ScheduleRepresentationSelections } = select$2s();
1097
1338
  return {
1098
1339
  kind: 'Fragment',
1099
- version: VERSION$1J,
1340
+ version: VERSION$1G,
1100
1341
  private: [],
1101
1342
  selections: [
1102
1343
  ...ScheduleRepresentationSelections,
@@ -1108,8 +1349,8 @@ const select$2z = function WeeklyScheduleRepresentationSelect() {
1108
1349
  ]
1109
1350
  };
1110
1351
  };
1111
- function equals$1J(existing, incoming) {
1112
- if (equals$1F(existing, incoming) === false) {
1352
+ function equals$1G(existing, incoming) {
1353
+ if (equals$1C(existing, incoming) === false) {
1113
1354
  return false;
1114
1355
  }
1115
1356
  const existing_daysOfWeek = existing.daysOfWeek;
@@ -1126,14 +1367,14 @@ function equals$1J(existing, incoming) {
1126
1367
  }
1127
1368
  const ingest$H = function WeeklyScheduleRepresentationIngest(input, path, luvio, store, timestamp) {
1128
1369
  if (process.env.NODE_ENV !== 'production') {
1129
- const validateError = validate$2x(input);
1370
+ const validateError = validate$2u(input);
1130
1371
  if (validateError !== null) {
1131
1372
  throw validateError;
1132
1373
  }
1133
1374
  }
1134
1375
  const key = keyBuilderFromType$o(luvio, input);
1135
1376
  const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
1136
- ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$G, "WAVE", VERSION$1J, RepresentationType$I, equals$1J);
1377
+ ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$G, "WAVE", VERSION$1G, RepresentationType$I, equals$1G);
1137
1378
  return createLink(key);
1138
1379
  };
1139
1380
  function getTypeCacheKeys$H(rootKeySet, luvio, input, fullPathFactory) {
@@ -1146,9 +1387,9 @@ function getTypeCacheKeys$H(rootKeySet, luvio, input, fullPathFactory) {
1146
1387
  });
1147
1388
  }
1148
1389
 
1149
- const VERSION$1I = "8d6671abfda59d314a631ca61312f86c";
1150
- function validate$2w(obj, path = 'MonthlyRelativeScheduleRepresentation') {
1151
- const validateScheduleRepresentation_validateError = validate$2t(obj, path);
1390
+ const VERSION$1F = "8d6671abfda59d314a631ca61312f86c";
1391
+ function validate$2t(obj, path = 'MonthlyRelativeScheduleRepresentation') {
1392
+ const validateScheduleRepresentation_validateError = validate$2q(obj, path);
1152
1393
  if (validateScheduleRepresentation_validateError !== null) {
1153
1394
  return validateScheduleRepresentation_validateError;
1154
1395
  }
@@ -1180,11 +1421,11 @@ function keyBuilderFromType$n(luvio, object) {
1180
1421
  function normalize$F(input, existing, path, luvio, store, timestamp) {
1181
1422
  return input;
1182
1423
  }
1183
- const select$2y = function MonthlyRelativeScheduleRepresentationSelect() {
1184
- const { selections: ScheduleRepresentationSelections } = select$2v();
1424
+ const select$2v = function MonthlyRelativeScheduleRepresentationSelect() {
1425
+ const { selections: ScheduleRepresentationSelections } = select$2s();
1185
1426
  return {
1186
1427
  kind: 'Fragment',
1187
- version: VERSION$1I,
1428
+ version: VERSION$1F,
1188
1429
  private: [],
1189
1430
  selections: [
1190
1431
  ...ScheduleRepresentationSelections,
@@ -1201,8 +1442,8 @@ const select$2y = function MonthlyRelativeScheduleRepresentationSelect() {
1201
1442
  ]
1202
1443
  };
1203
1444
  };
1204
- function equals$1I(existing, incoming) {
1205
- if (equals$1F(existing, incoming) === false) {
1445
+ function equals$1F(existing, incoming) {
1446
+ if (equals$1C(existing, incoming) === false) {
1206
1447
  return false;
1207
1448
  }
1208
1449
  const existing_dayInWeek = existing.dayInWeek;
@@ -1235,14 +1476,14 @@ function equals$1I(existing, incoming) {
1235
1476
  }
1236
1477
  const ingest$G = function MonthlyRelativeScheduleRepresentationIngest(input, path, luvio, store, timestamp) {
1237
1478
  if (process.env.NODE_ENV !== 'production') {
1238
- const validateError = validate$2w(input);
1479
+ const validateError = validate$2t(input);
1239
1480
  if (validateError !== null) {
1240
1481
  throw validateError;
1241
1482
  }
1242
1483
  }
1243
1484
  const key = keyBuilderFromType$n(luvio, input);
1244
1485
  const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
1245
- ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$F, "WAVE", VERSION$1I, RepresentationType$H, equals$1I);
1486
+ ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$F, "WAVE", VERSION$1F, RepresentationType$H, equals$1F);
1246
1487
  return createLink(key);
1247
1488
  };
1248
1489
  function getTypeCacheKeys$G(rootKeySet, luvio, input, fullPathFactory) {
@@ -1255,9 +1496,9 @@ function getTypeCacheKeys$G(rootKeySet, luvio, input, fullPathFactory) {
1255
1496
  });
1256
1497
  }
1257
1498
 
1258
- const VERSION$1H = "2842a3ceee436af5827b230befd0c300";
1259
- function validate$2v(obj, path = 'DailyScheduleRepresentation') {
1260
- const validateScheduleRepresentation_validateError = validate$2t(obj, path);
1499
+ const VERSION$1E = "2842a3ceee436af5827b230befd0c300";
1500
+ function validate$2s(obj, path = 'DailyScheduleRepresentation') {
1501
+ const validateScheduleRepresentation_validateError = validate$2q(obj, path);
1261
1502
  if (validateScheduleRepresentation_validateError !== null) {
1262
1503
  return validateScheduleRepresentation_validateError;
1263
1504
  }
@@ -1275,33 +1516,33 @@ function keyBuilderFromType$m(luvio, object) {
1275
1516
  function normalize$E(input, existing, path, luvio, store, timestamp) {
1276
1517
  return input;
1277
1518
  }
1278
- const select$2x = function DailyScheduleRepresentationSelect() {
1279
- const { selections: ScheduleRepresentationSelections } = select$2v();
1519
+ const select$2u = function DailyScheduleRepresentationSelect() {
1520
+ const { selections: ScheduleRepresentationSelections } = select$2s();
1280
1521
  return {
1281
1522
  kind: 'Fragment',
1282
- version: VERSION$1H,
1523
+ version: VERSION$1E,
1283
1524
  private: [],
1284
1525
  selections: [
1285
1526
  ...ScheduleRepresentationSelections,
1286
1527
  ]
1287
1528
  };
1288
1529
  };
1289
- function equals$1H(existing, incoming) {
1290
- if (equals$1F(existing, incoming) === false) {
1530
+ function equals$1E(existing, incoming) {
1531
+ if (equals$1C(existing, incoming) === false) {
1291
1532
  return false;
1292
1533
  }
1293
1534
  return true;
1294
1535
  }
1295
1536
  const ingest$F = function DailyScheduleRepresentationIngest(input, path, luvio, store, timestamp) {
1296
1537
  if (process.env.NODE_ENV !== 'production') {
1297
- const validateError = validate$2v(input);
1538
+ const validateError = validate$2s(input);
1298
1539
  if (validateError !== null) {
1299
1540
  throw validateError;
1300
1541
  }
1301
1542
  }
1302
1543
  const key = keyBuilderFromType$m(luvio, input);
1303
1544
  const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
1304
- ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$E, "WAVE", VERSION$1H, RepresentationType$G, equals$1H);
1545
+ ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$E, "WAVE", VERSION$1E, RepresentationType$G, equals$1E);
1305
1546
  return createLink(key);
1306
1547
  };
1307
1548
  function getTypeCacheKeys$F(rootKeySet, luvio, input, fullPathFactory) {
@@ -1314,9 +1555,9 @@ function getTypeCacheKeys$F(rootKeySet, luvio, input, fullPathFactory) {
1314
1555
  });
1315
1556
  }
1316
1557
 
1317
- const VERSION$1G = "c05150b2e54ca6c08b9dd3505e0343c9";
1318
- function validate$2u(obj, path = 'EmptyScheduleRepresentation') {
1319
- const validateScheduleRepresentation_validateError = validate$2t(obj, path);
1558
+ const VERSION$1D = "c05150b2e54ca6c08b9dd3505e0343c9";
1559
+ function validate$2r(obj, path = 'EmptyScheduleRepresentation') {
1560
+ const validateScheduleRepresentation_validateError = validate$2q(obj, path);
1320
1561
  if (validateScheduleRepresentation_validateError !== null) {
1321
1562
  return validateScheduleRepresentation_validateError;
1322
1563
  }
@@ -1334,33 +1575,33 @@ function keyBuilderFromType$l(luvio, object) {
1334
1575
  function normalize$D(input, existing, path, luvio, store, timestamp) {
1335
1576
  return input;
1336
1577
  }
1337
- const select$2w = function EmptyScheduleRepresentationSelect() {
1338
- const { selections: ScheduleRepresentationSelections } = select$2v();
1578
+ const select$2t = function EmptyScheduleRepresentationSelect() {
1579
+ const { selections: ScheduleRepresentationSelections } = select$2s();
1339
1580
  return {
1340
1581
  kind: 'Fragment',
1341
- version: VERSION$1G,
1582
+ version: VERSION$1D,
1342
1583
  private: [],
1343
1584
  selections: [
1344
1585
  ...ScheduleRepresentationSelections,
1345
1586
  ]
1346
1587
  };
1347
1588
  };
1348
- function equals$1G(existing, incoming) {
1349
- if (equals$1F(existing, incoming) === false) {
1589
+ function equals$1D(existing, incoming) {
1590
+ if (equals$1C(existing, incoming) === false) {
1350
1591
  return false;
1351
1592
  }
1352
1593
  return true;
1353
1594
  }
1354
1595
  const ingest$E = function EmptyScheduleRepresentationIngest(input, path, luvio, store, timestamp) {
1355
1596
  if (process.env.NODE_ENV !== 'production') {
1356
- const validateError = validate$2u(input);
1597
+ const validateError = validate$2r(input);
1357
1598
  if (validateError !== null) {
1358
1599
  throw validateError;
1359
1600
  }
1360
1601
  }
1361
1602
  const key = keyBuilderFromType$l(luvio, input);
1362
1603
  const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
1363
- ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$D, "WAVE", VERSION$1G, RepresentationType$F, equals$1G);
1604
+ ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$D, "WAVE", VERSION$1D, RepresentationType$F, equals$1D);
1364
1605
  return createLink(key);
1365
1606
  };
1366
1607
  function getTypeCacheKeys$E(rootKeySet, luvio, input, fullPathFactory) {
@@ -1384,8 +1625,8 @@ var DiscriminatorValues$4;
1384
1625
  DiscriminatorValues["daily"] = "daily";
1385
1626
  DiscriminatorValues["none"] = "none";
1386
1627
  })(DiscriminatorValues$4 || (DiscriminatorValues$4 = {}));
1387
- const VERSION$1F = "e5feb8f04c6e2c41cff26192593b9ee8";
1388
- function validate$2t(obj, path = 'ScheduleRepresentation') {
1628
+ const VERSION$1C = "224eb51518219855b4532b0c87fd4d2c";
1629
+ function validate$2q(obj, path = 'ScheduleRepresentation') {
1389
1630
  const v_error = (() => {
1390
1631
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
1391
1632
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -1395,6 +1636,16 @@ function validate$2t(obj, path = 'ScheduleRepresentation') {
1395
1636
  if (typeof obj_assetId !== 'string') {
1396
1637
  return new TypeError('Expected "string" but received "' + typeof obj_assetId + '" (at "' + path_assetId + '")');
1397
1638
  }
1639
+ if (obj.events !== undefined) {
1640
+ const obj_events = obj.events;
1641
+ const path_events = path + '.events';
1642
+ const referencepath_eventsValidationError = validate$2B(obj_events, path_events);
1643
+ if (referencepath_eventsValidationError !== null) {
1644
+ let message = 'Object doesn\'t match JobEventCollectionRepresentation (at "' + path_events + '")\n';
1645
+ message += referencepath_eventsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
1646
+ return new TypeError(message);
1647
+ }
1648
+ }
1398
1649
  const obj_frequency = obj.frequency;
1399
1650
  const path_frequency = path + '.frequency';
1400
1651
  if (typeof obj_frequency !== 'string') {
@@ -1417,7 +1668,7 @@ function validate$2t(obj, path = 'ScheduleRepresentation') {
1417
1668
  if (obj.time !== undefined) {
1418
1669
  const obj_time = obj.time;
1419
1670
  const path_time = path + '.time';
1420
- const referencepath_timeValidationError = validate$2C(obj_time, path_time);
1671
+ const referencepath_timeValidationError = validate$2z(obj_time, path_time);
1421
1672
  if (referencepath_timeValidationError !== null) {
1422
1673
  let message = 'Object doesn\'t match TimeRepresentation (at "' + path_time + '")\n';
1423
1674
  message += referencepath_timeValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -1438,14 +1689,14 @@ function keyBuilderFromType$k(luvio, object) {
1438
1689
  return keyBuilder$1t(luvio, keyParams);
1439
1690
  }
1440
1691
  const selectChildren = function ScheduleRepresentationSelectChildren() {
1441
- const hourlyScheduleRepresentationSelections = select$2D();
1442
- const monthlySpecificScheduleRepresentationSelections = select$2C();
1443
- const minutelyScheduleRepresentationSelections = select$2B();
1444
- const eventDrivenScheduleRepresentationSelections = select$2A();
1445
- const weeklyScheduleRepresentationSelections = select$2z();
1446
- const monthlyRelativeScheduleRepresentationSelections = select$2y();
1447
- const dailyScheduleRepresentationSelections = select$2x();
1448
- const emptyScheduleRepresentationSelections = select$2w();
1692
+ const hourlyScheduleRepresentationSelections = select$2A();
1693
+ const monthlySpecificScheduleRepresentationSelections = select$2z();
1694
+ const minutelyScheduleRepresentationSelections = select$2y();
1695
+ const eventDrivenScheduleRepresentationSelections = select$2x();
1696
+ const weeklyScheduleRepresentationSelections = select$2w();
1697
+ const monthlyRelativeScheduleRepresentationSelections = select$2v();
1698
+ const dailyScheduleRepresentationSelections = select$2u();
1699
+ const emptyScheduleRepresentationSelections = select$2t();
1449
1700
  return {
1450
1701
  kind: 'Fragment',
1451
1702
  union: true,
@@ -1462,17 +1713,24 @@ const selectChildren = function ScheduleRepresentationSelectChildren() {
1462
1713
  }
1463
1714
  };
1464
1715
  };
1465
- const select$2v = function ScheduleRepresentationSelect() {
1466
- const { selections: TimeRepresentation__selections, opaque: TimeRepresentation__opaque, } = select$2E();
1716
+ const select$2s = function ScheduleRepresentationSelect() {
1717
+ const { selections: JobEventCollectionRepresentation__selections, opaque: JobEventCollectionRepresentation__opaque, } = select$2D();
1718
+ const { selections: TimeRepresentation__selections, opaque: TimeRepresentation__opaque, } = select$2B();
1467
1719
  return {
1468
1720
  kind: 'Fragment',
1469
- version: VERSION$1F,
1721
+ version: VERSION$1C,
1470
1722
  private: [],
1471
1723
  selections: [
1472
1724
  {
1473
1725
  name: 'assetId',
1474
1726
  kind: 'Scalar'
1475
1727
  },
1728
+ {
1729
+ name: 'events',
1730
+ kind: 'Object',
1731
+ selections: JobEventCollectionRepresentation__selections,
1732
+ required: false
1733
+ },
1476
1734
  {
1477
1735
  name: 'frequency',
1478
1736
  kind: 'Scalar'
@@ -1496,7 +1754,7 @@ const select$2v = function ScheduleRepresentationSelect() {
1496
1754
  ]
1497
1755
  };
1498
1756
  };
1499
- function equals$1F(existing, incoming) {
1757
+ function equals$1C(existing, incoming) {
1500
1758
  const existing_assetId = existing.assetId;
1501
1759
  const incoming_assetId = incoming.assetId;
1502
1760
  if (!(existing_assetId === incoming_assetId)) {
@@ -1533,6 +1791,19 @@ function equals$1F(existing, incoming) {
1533
1791
  return false;
1534
1792
  }
1535
1793
  }
1794
+ const existing_events = existing.events;
1795
+ const incoming_events = incoming.events;
1796
+ // if at least one of these optionals is defined
1797
+ if (existing_events !== undefined || incoming_events !== undefined) {
1798
+ // if one of these is not defined we know the other is defined and therefore
1799
+ // not equal
1800
+ if (existing_events === undefined || incoming_events === undefined) {
1801
+ return false;
1802
+ }
1803
+ if (!(equals$1N(existing_events, incoming_events))) {
1804
+ return false;
1805
+ }
1806
+ }
1536
1807
  const existing_time = existing.time;
1537
1808
  const incoming_time = incoming.time;
1538
1809
  // if at least one of these optionals is defined
@@ -1542,7 +1813,7 @@ function equals$1F(existing, incoming) {
1542
1813
  if (existing_time === undefined || incoming_time === undefined) {
1543
1814
  return false;
1544
1815
  }
1545
- if (!(equals$1O(existing_time, incoming_time))) {
1816
+ if (!(equals$1L(existing_time, incoming_time))) {
1546
1817
  return false;
1547
1818
  }
1548
1819
  }
@@ -1608,7 +1879,7 @@ function getTypeCacheKeys$D(rootKeySet, luvio, input, fullPathFactory) {
1608
1879
  throw new Error(`Invalid discriminatorValue "${discriminatorValue}". Expected one of "hourly","monthly","minutely","eventdriven","weekly","monthlyrelative","daily","none"`);
1609
1880
  }
1610
1881
 
1611
- function select$2u(luvio, params) {
1882
+ function select$2r(luvio, params) {
1612
1883
  return selectChildren();
1613
1884
  }
1614
1885
  function keyBuilder$1s(luvio, params) {
@@ -1625,7 +1896,7 @@ function ingestSuccess$R(luvio, resourceParams, response, snapshotRefresh) {
1625
1896
  luvio.storeIngest(key, ingest$D, body);
1626
1897
  const snapshot = luvio.storeLookup({
1627
1898
  recordId: key,
1628
- node: select$2u(),
1899
+ node: select$2r(),
1629
1900
  variables: {},
1630
1901
  }, snapshotRefresh);
1631
1902
  if (process.env.NODE_ENV !== 'production') {
@@ -1686,7 +1957,7 @@ function validateAdapterConfig$W(untrustedConfig, configPropertyNames) {
1686
1957
  }
1687
1958
  function adapterFragment$y(luvio, config) {
1688
1959
  createResourceParams$W(config);
1689
- return select$2u();
1960
+ return select$2r();
1690
1961
  }
1691
1962
  function onFetchResponseSuccess$C(luvio, config, resourceParams, response) {
1692
1963
  const snapshot = ingestSuccess$R(luvio, resourceParams, response, {
@@ -1742,7 +2013,7 @@ const getScheduleAdapterFactory = (luvio) => function WAVE__getSchedule(untruste
1742
2013
  buildCachedSnapshotCachePolicy$C, buildNetworkSnapshotCachePolicy$y);
1743
2014
  };
1744
2015
 
1745
- function validate$2s(obj, path = 'ScheduleInputRepresentation') {
2016
+ function validate$2p(obj, path = 'ScheduleInputRepresentation') {
1746
2017
  const v_error = (() => {
1747
2018
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
1748
2019
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -1781,7 +2052,7 @@ function validate$2s(obj, path = 'ScheduleInputRepresentation') {
1781
2052
  return v_error === undefined ? null : v_error;
1782
2053
  }
1783
2054
 
1784
- function select$2t(luvio, params) {
2055
+ function select$2q(luvio, params) {
1785
2056
  return selectChildren();
1786
2057
  }
1787
2058
  function getResponseCacheKeys$V(storeKeyMap, luvio, resourceParams, response) {
@@ -1793,7 +2064,7 @@ function ingestSuccess$Q(luvio, resourceParams, response) {
1793
2064
  luvio.storeIngest(key, ingest$D, body);
1794
2065
  const snapshot = luvio.storeLookup({
1795
2066
  recordId: key,
1796
- node: select$2t(),
2067
+ node: select$2q(),
1797
2068
  variables: {},
1798
2069
  });
1799
2070
  if (process.env.NODE_ENV !== 'production') {
@@ -1829,7 +2100,7 @@ function typeCheckConfig$V(untrustedConfig) {
1829
2100
  const config = {};
1830
2101
  typeCheckConfig$Y(untrustedConfig, config, updateSchedule_ConfigPropertyMetadata);
1831
2102
  const untrustedConfig_schedule = untrustedConfig.schedule;
1832
- const referenceScheduleInputRepresentationValidationError = validate$2s(untrustedConfig_schedule);
2103
+ const referenceScheduleInputRepresentationValidationError = validate$2p(untrustedConfig_schedule);
1833
2104
  if (referenceScheduleInputRepresentationValidationError === null) {
1834
2105
  config.schedule = untrustedConfig_schedule;
1835
2106
  }
@@ -1877,126 +2148,8 @@ const updateScheduleAdapterFactory = (luvio) => {
1877
2148
  };
1878
2149
  };
1879
2150
 
1880
- const VERSION$1E = "5d123dd51422aa09451217b1e392922f";
1881
- function validate$2r(obj, path = 'WaveUserRepresentation') {
1882
- const v_error = (() => {
1883
- if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
1884
- return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
1885
- }
1886
- if (obj.id !== undefined) {
1887
- const obj_id = obj.id;
1888
- const path_id = path + '.id';
1889
- if (typeof obj_id !== 'string') {
1890
- return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
1891
- }
1892
- }
1893
- if (obj.name !== undefined) {
1894
- const obj_name = obj.name;
1895
- const path_name = path + '.name';
1896
- if (typeof obj_name !== 'string') {
1897
- return new TypeError('Expected "string" but received "' + typeof obj_name + '" (at "' + path_name + '")');
1898
- }
1899
- }
1900
- if (obj.profilePhotoUrl !== undefined) {
1901
- const obj_profilePhotoUrl = obj.profilePhotoUrl;
1902
- const path_profilePhotoUrl = path + '.profilePhotoUrl';
1903
- let obj_profilePhotoUrl_union0 = null;
1904
- const obj_profilePhotoUrl_union0_error = (() => {
1905
- if (typeof obj_profilePhotoUrl !== 'string') {
1906
- return new TypeError('Expected "string" but received "' + typeof obj_profilePhotoUrl + '" (at "' + path_profilePhotoUrl + '")');
1907
- }
1908
- })();
1909
- if (obj_profilePhotoUrl_union0_error != null) {
1910
- obj_profilePhotoUrl_union0 = obj_profilePhotoUrl_union0_error.message;
1911
- }
1912
- let obj_profilePhotoUrl_union1 = null;
1913
- const obj_profilePhotoUrl_union1_error = (() => {
1914
- if (obj_profilePhotoUrl !== null) {
1915
- return new TypeError('Expected "null" but received "' + typeof obj_profilePhotoUrl + '" (at "' + path_profilePhotoUrl + '")');
1916
- }
1917
- })();
1918
- if (obj_profilePhotoUrl_union1_error != null) {
1919
- obj_profilePhotoUrl_union1 = obj_profilePhotoUrl_union1_error.message;
1920
- }
1921
- if (obj_profilePhotoUrl_union0 && obj_profilePhotoUrl_union1) {
1922
- let message = 'Object doesn\'t match union (at "' + path_profilePhotoUrl + '")';
1923
- message += '\n' + obj_profilePhotoUrl_union0.split('\n').map((line) => '\t' + line).join('\n');
1924
- message += '\n' + obj_profilePhotoUrl_union1.split('\n').map((line) => '\t' + line).join('\n');
1925
- return new TypeError(message);
1926
- }
1927
- }
1928
- })();
1929
- return v_error === undefined ? null : v_error;
1930
- }
1931
- const select$2s = function WaveUserRepresentationSelect() {
1932
- return {
1933
- kind: 'Fragment',
1934
- version: VERSION$1E,
1935
- private: [],
1936
- selections: [
1937
- {
1938
- name: 'id',
1939
- kind: 'Scalar',
1940
- required: false
1941
- },
1942
- {
1943
- name: 'name',
1944
- kind: 'Scalar',
1945
- required: false
1946
- },
1947
- {
1948
- name: 'profilePhotoUrl',
1949
- kind: 'Scalar',
1950
- required: false
1951
- }
1952
- ]
1953
- };
1954
- };
1955
- function equals$1E(existing, incoming) {
1956
- const existing_id = existing.id;
1957
- const incoming_id = incoming.id;
1958
- // if at least one of these optionals is defined
1959
- if (existing_id !== undefined || incoming_id !== undefined) {
1960
- // if one of these is not defined we know the other is defined and therefore
1961
- // not equal
1962
- if (existing_id === undefined || incoming_id === undefined) {
1963
- return false;
1964
- }
1965
- if (!(existing_id === incoming_id)) {
1966
- return false;
1967
- }
1968
- }
1969
- const existing_name = existing.name;
1970
- const incoming_name = incoming.name;
1971
- // if at least one of these optionals is defined
1972
- if (existing_name !== undefined || incoming_name !== undefined) {
1973
- // if one of these is not defined we know the other is defined and therefore
1974
- // not equal
1975
- if (existing_name === undefined || incoming_name === undefined) {
1976
- return false;
1977
- }
1978
- if (!(existing_name === incoming_name)) {
1979
- return false;
1980
- }
1981
- }
1982
- const existing_profilePhotoUrl = existing.profilePhotoUrl;
1983
- const incoming_profilePhotoUrl = incoming.profilePhotoUrl;
1984
- // if at least one of these optionals is defined
1985
- if (existing_profilePhotoUrl !== undefined || incoming_profilePhotoUrl !== undefined) {
1986
- // if one of these is not defined we know the other is defined and therefore
1987
- // not equal
1988
- if (existing_profilePhotoUrl === undefined || incoming_profilePhotoUrl === undefined) {
1989
- return false;
1990
- }
1991
- if (!(existing_profilePhotoUrl === incoming_profilePhotoUrl)) {
1992
- return false;
1993
- }
1994
- }
1995
- return true;
1996
- }
1997
-
1998
- const VERSION$1D = "e8f427b64859200701253987f7c91ecd";
1999
- function validate$2q(obj, path = 'PermissionsRepresentation') {
2151
+ const VERSION$1B = "e8f427b64859200701253987f7c91ecd";
2152
+ function validate$2o(obj, path = 'PermissionsRepresentation') {
2000
2153
  const v_error = (() => {
2001
2154
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
2002
2155
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -2032,10 +2185,10 @@ function validate$2q(obj, path = 'PermissionsRepresentation') {
2032
2185
  })();
2033
2186
  return v_error === undefined ? null : v_error;
2034
2187
  }
2035
- const select$2r = function PermissionsRepresentationSelect() {
2188
+ const select$2p = function PermissionsRepresentationSelect() {
2036
2189
  return {
2037
2190
  kind: 'Fragment',
2038
- version: VERSION$1D,
2191
+ version: VERSION$1B,
2039
2192
  private: [],
2040
2193
  selections: [
2041
2194
  {
@@ -2061,7 +2214,7 @@ const select$2r = function PermissionsRepresentationSelect() {
2061
2214
  ]
2062
2215
  };
2063
2216
  };
2064
- function equals$1D(existing, incoming) {
2217
+ function equals$1B(existing, incoming) {
2065
2218
  const existing_create = existing.create;
2066
2219
  const incoming_create = incoming.create;
2067
2220
  // if at least one of these optionals is defined
@@ -2121,8 +2274,8 @@ var DiscriminatorValues$3;
2121
2274
  (function (DiscriminatorValues) {
2122
2275
  DiscriminatorValues["asset"] = "asset";
2123
2276
  })(DiscriminatorValues$3 || (DiscriminatorValues$3 = {}));
2124
- const VERSION$1C = "0cd834d6193caad013f698e1e37a1638";
2125
- function validate$2p(obj, path = 'BaseAssetReferenceRepresentation') {
2277
+ const VERSION$1A = "0cd834d6193caad013f698e1e37a1638";
2278
+ function validate$2n(obj, path = 'BaseAssetReferenceRepresentation') {
2126
2279
  const v_error = (() => {
2127
2280
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
2128
2281
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -2163,10 +2316,10 @@ function validate$2p(obj, path = 'BaseAssetReferenceRepresentation') {
2163
2316
  })();
2164
2317
  return v_error === undefined ? null : v_error;
2165
2318
  }
2166
- const select$2q = function BaseAssetReferenceRepresentationSelect() {
2319
+ const select$2o = function BaseAssetReferenceRepresentationSelect() {
2167
2320
  return {
2168
2321
  kind: 'Fragment',
2169
- version: VERSION$1C,
2322
+ version: VERSION$1A,
2170
2323
  private: [],
2171
2324
  selections: [
2172
2325
  {
@@ -2196,7 +2349,7 @@ const select$2q = function BaseAssetReferenceRepresentationSelect() {
2196
2349
  ]
2197
2350
  };
2198
2351
  };
2199
- function equals$1C(existing, incoming) {
2352
+ function equals$1A(existing, incoming) {
2200
2353
  const existing_id = existing.id;
2201
2354
  const incoming_id = incoming.id;
2202
2355
  if (!(existing_id === incoming_id)) {
@@ -2257,9 +2410,9 @@ function equals$1C(existing, incoming) {
2257
2410
  return true;
2258
2411
  }
2259
2412
 
2260
- const VERSION$1B = "22a73fe44235999cf7c359be000343e2";
2261
- function validate$2o(obj, path = 'AssetReferenceRepresentation') {
2262
- const validateBaseAssetReferenceRepresentation_validateError = validate$2p(obj, path);
2413
+ const VERSION$1z = "22a73fe44235999cf7c359be000343e2";
2414
+ function validate$2m(obj, path = 'AssetReferenceRepresentation') {
2415
+ const validateBaseAssetReferenceRepresentation_validateError = validate$2n(obj, path);
2263
2416
  if (validateBaseAssetReferenceRepresentation_validateError !== null) {
2264
2417
  return validateBaseAssetReferenceRepresentation_validateError;
2265
2418
  }
@@ -2270,26 +2423,26 @@ function validate$2o(obj, path = 'AssetReferenceRepresentation') {
2270
2423
  })();
2271
2424
  return v_error === undefined ? null : v_error;
2272
2425
  }
2273
- const select$2p = function AssetReferenceRepresentationSelect() {
2274
- const { selections: BaseAssetReferenceRepresentationSelections } = select$2q();
2426
+ const select$2n = function AssetReferenceRepresentationSelect() {
2427
+ const { selections: BaseAssetReferenceRepresentationSelections } = select$2o();
2275
2428
  return {
2276
2429
  kind: 'Fragment',
2277
- version: VERSION$1B,
2430
+ version: VERSION$1z,
2278
2431
  private: [],
2279
2432
  selections: [
2280
2433
  ...BaseAssetReferenceRepresentationSelections,
2281
2434
  ]
2282
2435
  };
2283
2436
  };
2284
- function equals$1B(existing, incoming) {
2285
- if (equals$1C(existing, incoming) === false) {
2437
+ function equals$1z(existing, incoming) {
2438
+ if (equals$1A(existing, incoming) === false) {
2286
2439
  return false;
2287
2440
  }
2288
2441
  return true;
2289
2442
  }
2290
2443
 
2291
- const VERSION$1A = "25369ec6a52dd7d49271c81eb2180b52";
2292
- function validate$2n(obj, path = 'WaveFileMetadataRepresentation') {
2444
+ const VERSION$1y = "25369ec6a52dd7d49271c81eb2180b52";
2445
+ function validate$2l(obj, path = 'WaveFileMetadataRepresentation') {
2293
2446
  const v_error = (() => {
2294
2447
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
2295
2448
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -2297,7 +2450,7 @@ function validate$2n(obj, path = 'WaveFileMetadataRepresentation') {
2297
2450
  if (obj.createdBy !== undefined) {
2298
2451
  const obj_createdBy = obj.createdBy;
2299
2452
  const path_createdBy = path + '.createdBy';
2300
- const referencepath_createdByValidationError = validate$2r(obj_createdBy, path_createdBy);
2453
+ const referencepath_createdByValidationError = validate$2D(obj_createdBy, path_createdBy);
2301
2454
  if (referencepath_createdByValidationError !== null) {
2302
2455
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_createdBy + '")\n';
2303
2456
  message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -2356,11 +2509,11 @@ function validate$2n(obj, path = 'WaveFileMetadataRepresentation') {
2356
2509
  })();
2357
2510
  return v_error === undefined ? null : v_error;
2358
2511
  }
2359
- const select$2o = function WaveFileMetadataRepresentationSelect() {
2360
- const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2s();
2512
+ const select$2m = function WaveFileMetadataRepresentationSelect() {
2513
+ const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2F();
2361
2514
  return {
2362
2515
  kind: 'Fragment',
2363
- version: VERSION$1A,
2516
+ version: VERSION$1y,
2364
2517
  private: [],
2365
2518
  selections: [
2366
2519
  {
@@ -2407,7 +2560,7 @@ const select$2o = function WaveFileMetadataRepresentationSelect() {
2407
2560
  ]
2408
2561
  };
2409
2562
  };
2410
- function equals$1A(existing, incoming) {
2563
+ function equals$1y(existing, incoming) {
2411
2564
  const existing_length = existing.length;
2412
2565
  const incoming_length = incoming.length;
2413
2566
  // if at least one of these optionals is defined
@@ -2508,15 +2661,15 @@ function equals$1A(existing, incoming) {
2508
2661
  if (existing_createdBy === undefined || incoming_createdBy === undefined) {
2509
2662
  return false;
2510
2663
  }
2511
- if (!(equals$1E(existing_createdBy, incoming_createdBy))) {
2664
+ if (!(equals$1P(existing_createdBy, incoming_createdBy))) {
2512
2665
  return false;
2513
2666
  }
2514
2667
  }
2515
2668
  return true;
2516
2669
  }
2517
2670
 
2518
- const VERSION$1z = "a1048fb235f8a6973d37dab0cca8534b";
2519
- function validate$2m(obj, path = 'DatasetVersionSharingSourceRepresentation') {
2671
+ const VERSION$1x = "a1048fb235f8a6973d37dab0cca8534b";
2672
+ function validate$2k(obj, path = 'DatasetVersionSharingSourceRepresentation') {
2520
2673
  const v_error = (() => {
2521
2674
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
2522
2675
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -2536,10 +2689,10 @@ function validate$2m(obj, path = 'DatasetVersionSharingSourceRepresentation') {
2536
2689
  })();
2537
2690
  return v_error === undefined ? null : v_error;
2538
2691
  }
2539
- const select$2n = function DatasetVersionSharingSourceRepresentationSelect() {
2692
+ const select$2l = function DatasetVersionSharingSourceRepresentationSelect() {
2540
2693
  return {
2541
2694
  kind: 'Fragment',
2542
- version: VERSION$1z,
2695
+ version: VERSION$1x,
2543
2696
  private: [],
2544
2697
  selections: [
2545
2698
  {
@@ -2554,7 +2707,7 @@ const select$2n = function DatasetVersionSharingSourceRepresentationSelect() {
2554
2707
  ]
2555
2708
  };
2556
2709
  };
2557
- function equals$1z(existing, incoming) {
2710
+ function equals$1x(existing, incoming) {
2558
2711
  const existing_name = existing.name;
2559
2712
  const incoming_name = incoming.name;
2560
2713
  if (!(existing_name === incoming_name)) {
@@ -2576,8 +2729,8 @@ function equals$1z(existing, incoming) {
2576
2729
  return true;
2577
2730
  }
2578
2731
 
2579
- const VERSION$1y = "d73631f5db61070eeb96f29e77e2df40";
2580
- function validate$2l(obj, path = 'XmdDatasetRepresentation') {
2732
+ const VERSION$1w = "d73631f5db61070eeb96f29e77e2df40";
2733
+ function validate$2j(obj, path = 'XmdDatasetRepresentation') {
2581
2734
  const v_error = (() => {
2582
2735
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
2583
2736
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -2613,10 +2766,10 @@ function validate$2l(obj, path = 'XmdDatasetRepresentation') {
2613
2766
  })();
2614
2767
  return v_error === undefined ? null : v_error;
2615
2768
  }
2616
- const select$2m = function XmdDatasetRepresentationSelect() {
2769
+ const select$2k = function XmdDatasetRepresentationSelect() {
2617
2770
  return {
2618
2771
  kind: 'Fragment',
2619
- version: VERSION$1y,
2772
+ version: VERSION$1w,
2620
2773
  private: [],
2621
2774
  selections: [
2622
2775
  {
@@ -2642,7 +2795,7 @@ const select$2m = function XmdDatasetRepresentationSelect() {
2642
2795
  ]
2643
2796
  };
2644
2797
  };
2645
- function equals$1y(existing, incoming) {
2798
+ function equals$1w(existing, incoming) {
2646
2799
  const existing_connector = existing.connector;
2647
2800
  const incoming_connector = incoming.connector;
2648
2801
  // if at least one of these optionals is defined
@@ -2698,8 +2851,8 @@ function equals$1y(existing, incoming) {
2698
2851
  return true;
2699
2852
  }
2700
2853
 
2701
- const VERSION$1x = "a3834bd31f9370071aa59e2c6441bba2";
2702
- function validate$2k(obj, path = 'XmdDateFieldRepresentation') {
2854
+ const VERSION$1v = "a3834bd31f9370071aa59e2c6441bba2";
2855
+ function validate$2i(obj, path = 'XmdDateFieldRepresentation') {
2703
2856
  const v_error = (() => {
2704
2857
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
2705
2858
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -2812,10 +2965,10 @@ function validate$2k(obj, path = 'XmdDateFieldRepresentation') {
2812
2965
  })();
2813
2966
  return v_error === undefined ? null : v_error;
2814
2967
  }
2815
- const select$2l = function XmdDateFieldRepresentationSelect() {
2968
+ const select$2j = function XmdDateFieldRepresentationSelect() {
2816
2969
  return {
2817
2970
  kind: 'Fragment',
2818
- version: VERSION$1x,
2971
+ version: VERSION$1v,
2819
2972
  private: [],
2820
2973
  selections: [
2821
2974
  {
@@ -2896,7 +3049,7 @@ const select$2l = function XmdDateFieldRepresentationSelect() {
2896
3049
  ]
2897
3050
  };
2898
3051
  };
2899
- function equals$1x(existing, incoming) {
3052
+ function equals$1v(existing, incoming) {
2900
3053
  const existing_day = existing.day;
2901
3054
  const incoming_day = incoming.day;
2902
3055
  // if at least one of these optionals is defined
@@ -3095,8 +3248,8 @@ function equals$1x(existing, incoming) {
3095
3248
  return true;
3096
3249
  }
3097
3250
 
3098
- const VERSION$1w = "62e8939a6ff2600600ce4a918b9194e0";
3099
- function validate$2j(obj, path = 'XmdDateRepresentation') {
3251
+ const VERSION$1u = "62e8939a6ff2600600ce4a918b9194e0";
3252
+ function validate$2h(obj, path = 'XmdDateRepresentation') {
3100
3253
  const v_error = (() => {
3101
3254
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
3102
3255
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -3124,7 +3277,7 @@ function validate$2j(obj, path = 'XmdDateRepresentation') {
3124
3277
  }
3125
3278
  const obj_fields = obj.fields;
3126
3279
  const path_fields = path + '.fields';
3127
- const referencepath_fieldsValidationError = validate$2k(obj_fields, path_fields);
3280
+ const referencepath_fieldsValidationError = validate$2i(obj_fields, path_fields);
3128
3281
  if (referencepath_fieldsValidationError !== null) {
3129
3282
  let message = 'Object doesn\'t match XmdDateFieldRepresentation (at "' + path_fields + '")\n';
3130
3283
  message += referencepath_fieldsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -3196,11 +3349,11 @@ function validate$2j(obj, path = 'XmdDateRepresentation') {
3196
3349
  })();
3197
3350
  return v_error === undefined ? null : v_error;
3198
3351
  }
3199
- const select$2k = function XmdDateRepresentationSelect() {
3200
- const { selections: XmdDateFieldRepresentation__selections, opaque: XmdDateFieldRepresentation__opaque, } = select$2l();
3352
+ const select$2i = function XmdDateRepresentationSelect() {
3353
+ const { selections: XmdDateFieldRepresentation__selections, opaque: XmdDateFieldRepresentation__opaque, } = select$2j();
3201
3354
  return {
3202
3355
  kind: 'Fragment',
3203
- version: VERSION$1w,
3356
+ version: VERSION$1u,
3204
3357
  private: [],
3205
3358
  selections: [
3206
3359
  {
@@ -3271,7 +3424,7 @@ const select$2k = function XmdDateRepresentationSelect() {
3271
3424
  ]
3272
3425
  };
3273
3426
  };
3274
- function equals$1w(existing, incoming) {
3427
+ function equals$1u(existing, incoming) {
3275
3428
  const existing_compact = existing.compact;
3276
3429
  const incoming_compact = incoming.compact;
3277
3430
  // if at least one of these optionals is defined
@@ -3430,14 +3583,14 @@ function equals$1w(existing, incoming) {
3430
3583
  }
3431
3584
  const existing_fields = existing.fields;
3432
3585
  const incoming_fields = incoming.fields;
3433
- if (!(equals$1x(existing_fields, incoming_fields))) {
3586
+ if (!(equals$1v(existing_fields, incoming_fields))) {
3434
3587
  return false;
3435
3588
  }
3436
3589
  return true;
3437
3590
  }
3438
3591
 
3439
- const VERSION$1v = "94926780a3d3152514b697a12c5eeb51";
3440
- function validate$2i(obj, path = 'XmdDimensionBaseActionRepresentation') {
3592
+ const VERSION$1t = "94926780a3d3152514b697a12c5eeb51";
3593
+ function validate$2g(obj, path = 'XmdDimensionBaseActionRepresentation') {
3441
3594
  const v_error = (() => {
3442
3595
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
3443
3596
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -3455,10 +3608,10 @@ function validate$2i(obj, path = 'XmdDimensionBaseActionRepresentation') {
3455
3608
  })();
3456
3609
  return v_error === undefined ? null : v_error;
3457
3610
  }
3458
- const select$2j = function XmdDimensionBaseActionRepresentationSelect() {
3611
+ const select$2h = function XmdDimensionBaseActionRepresentationSelect() {
3459
3612
  return {
3460
3613
  kind: 'Fragment',
3461
- version: VERSION$1v,
3614
+ version: VERSION$1t,
3462
3615
  private: [],
3463
3616
  selections: [
3464
3617
  {
@@ -3472,7 +3625,7 @@ const select$2j = function XmdDimensionBaseActionRepresentationSelect() {
3472
3625
  ]
3473
3626
  };
3474
3627
  };
3475
- function equals$1v(existing, incoming) {
3628
+ function equals$1t(existing, incoming) {
3476
3629
  const existing_enabled = existing.enabled;
3477
3630
  const incoming_enabled = incoming.enabled;
3478
3631
  if (!(existing_enabled === incoming_enabled)) {
@@ -3486,9 +3639,9 @@ function equals$1v(existing, incoming) {
3486
3639
  return true;
3487
3640
  }
3488
3641
 
3489
- const VERSION$1u = "8e73e46850465cfaf3f65fdcd4b227f4";
3490
- function validate$2h(obj, path = 'XmdDimensionCustomActionRepresentation') {
3491
- const validateXmdDimensionBaseActionRepresentation_validateError = validate$2i(obj, path);
3642
+ const VERSION$1s = "8e73e46850465cfaf3f65fdcd4b227f4";
3643
+ function validate$2f(obj, path = 'XmdDimensionCustomActionRepresentation') {
3644
+ const validateXmdDimensionBaseActionRepresentation_validateError = validate$2g(obj, path);
3492
3645
  if (validateXmdDimensionBaseActionRepresentation_validateError !== null) {
3493
3646
  return validateXmdDimensionBaseActionRepresentation_validateError;
3494
3647
  }
@@ -3532,11 +3685,11 @@ function validate$2h(obj, path = 'XmdDimensionCustomActionRepresentation') {
3532
3685
  })();
3533
3686
  return v_error === undefined ? null : v_error;
3534
3687
  }
3535
- const select$2i = function XmdDimensionCustomActionRepresentationSelect() {
3536
- const { selections: XmdDimensionBaseActionRepresentationSelections } = select$2j();
3688
+ const select$2g = function XmdDimensionCustomActionRepresentationSelect() {
3689
+ const { selections: XmdDimensionBaseActionRepresentationSelections } = select$2h();
3537
3690
  return {
3538
3691
  kind: 'Fragment',
3539
- version: VERSION$1u,
3692
+ version: VERSION$1s,
3540
3693
  private: [],
3541
3694
  selections: [
3542
3695
  ...XmdDimensionBaseActionRepresentationSelections,
@@ -3567,8 +3720,8 @@ const select$2i = function XmdDimensionCustomActionRepresentationSelect() {
3567
3720
  ]
3568
3721
  };
3569
3722
  };
3570
- function equals$1u(existing, incoming) {
3571
- if (equals$1v(existing, incoming) === false) {
3723
+ function equals$1s(existing, incoming) {
3724
+ if (equals$1t(existing, incoming) === false) {
3572
3725
  return false;
3573
3726
  }
3574
3727
  const existing_icon = existing.icon;
@@ -3631,8 +3784,8 @@ function equals$1u(existing, incoming) {
3631
3784
  return true;
3632
3785
  }
3633
3786
 
3634
- const VERSION$1t = "d4f2bc33ef59066550c994b3d5c78b84";
3635
- function validate$2g(obj, path = 'XmdDimensionMemberRepresentation') {
3787
+ const VERSION$1r = "d4f2bc33ef59066550c994b3d5c78b84";
3788
+ function validate$2e(obj, path = 'XmdDimensionMemberRepresentation') {
3636
3789
  const v_error = (() => {
3637
3790
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
3638
3791
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -3659,10 +3812,10 @@ function validate$2g(obj, path = 'XmdDimensionMemberRepresentation') {
3659
3812
  })();
3660
3813
  return v_error === undefined ? null : v_error;
3661
3814
  }
3662
- const select$2h = function XmdDimensionMemberRepresentationSelect() {
3815
+ const select$2f = function XmdDimensionMemberRepresentationSelect() {
3663
3816
  return {
3664
3817
  kind: 'Fragment',
3665
- version: VERSION$1t,
3818
+ version: VERSION$1r,
3666
3819
  private: [],
3667
3820
  selections: [
3668
3821
  {
@@ -3682,7 +3835,7 @@ const select$2h = function XmdDimensionMemberRepresentationSelect() {
3682
3835
  ]
3683
3836
  };
3684
3837
  };
3685
- function equals$1t(existing, incoming) {
3838
+ function equals$1r(existing, incoming) {
3686
3839
  const existing_color = existing.color;
3687
3840
  const incoming_color = incoming.color;
3688
3841
  // if at least one of these optionals is defined
@@ -3717,9 +3870,9 @@ function equals$1t(existing, incoming) {
3717
3870
  return true;
3718
3871
  }
3719
3872
 
3720
- const VERSION$1s = "aa6321ca283e1f80f03c97a6fdb5c6ee";
3721
- function validate$2f(obj, path = 'XmdDimensionSalesforceActionRepresentation') {
3722
- const validateXmdDimensionBaseActionRepresentation_validateError = validate$2i(obj, path);
3873
+ const VERSION$1q = "aa6321ca283e1f80f03c97a6fdb5c6ee";
3874
+ function validate$2d(obj, path = 'XmdDimensionSalesforceActionRepresentation') {
3875
+ const validateXmdDimensionBaseActionRepresentation_validateError = validate$2g(obj, path);
3723
3876
  if (validateXmdDimensionBaseActionRepresentation_validateError !== null) {
3724
3877
  return validateXmdDimensionBaseActionRepresentation_validateError;
3725
3878
  }
@@ -3730,26 +3883,26 @@ function validate$2f(obj, path = 'XmdDimensionSalesforceActionRepresentation') {
3730
3883
  })();
3731
3884
  return v_error === undefined ? null : v_error;
3732
3885
  }
3733
- const select$2g = function XmdDimensionSalesforceActionRepresentationSelect() {
3734
- const { selections: XmdDimensionBaseActionRepresentationSelections } = select$2j();
3886
+ const select$2e = function XmdDimensionSalesforceActionRepresentationSelect() {
3887
+ const { selections: XmdDimensionBaseActionRepresentationSelections } = select$2h();
3735
3888
  return {
3736
3889
  kind: 'Fragment',
3737
- version: VERSION$1s,
3890
+ version: VERSION$1q,
3738
3891
  private: [],
3739
3892
  selections: [
3740
3893
  ...XmdDimensionBaseActionRepresentationSelections,
3741
3894
  ]
3742
3895
  };
3743
3896
  };
3744
- function equals$1s(existing, incoming) {
3745
- if (equals$1v(existing, incoming) === false) {
3897
+ function equals$1q(existing, incoming) {
3898
+ if (equals$1t(existing, incoming) === false) {
3746
3899
  return false;
3747
3900
  }
3748
3901
  return true;
3749
3902
  }
3750
3903
 
3751
- const VERSION$1r = "2f33fd7067ac645b9501283d0962f09a";
3752
- function validate$2e(obj, path = 'XmdDimensionRepresentation') {
3904
+ const VERSION$1p = "2f33fd7067ac645b9501283d0962f09a";
3905
+ function validate$2c(obj, path = 'XmdDimensionRepresentation') {
3753
3906
  const v_error = (() => {
3754
3907
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
3755
3908
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -3776,7 +3929,7 @@ function validate$2e(obj, path = 'XmdDimensionRepresentation') {
3776
3929
  for (let i = 0; i < obj_customActions.length; i++) {
3777
3930
  const obj_customActions_item = obj_customActions[i];
3778
3931
  const path_customActions_item = path_customActions + '[' + i + ']';
3779
- const referencepath_customActions_itemValidationError = validate$2h(obj_customActions_item, path_customActions_item);
3932
+ const referencepath_customActions_itemValidationError = validate$2f(obj_customActions_item, path_customActions_item);
3780
3933
  if (referencepath_customActions_itemValidationError !== null) {
3781
3934
  let message = 'Object doesn\'t match XmdDimensionCustomActionRepresentation (at "' + path_customActions_item + '")\n';
3782
3935
  message += referencepath_customActions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -3873,7 +4026,7 @@ function validate$2e(obj, path = 'XmdDimensionRepresentation') {
3873
4026
  for (let i = 0; i < obj_members.length; i++) {
3874
4027
  const obj_members_item = obj_members[i];
3875
4028
  const path_members_item = path_members + '[' + i + ']';
3876
- const referencepath_members_itemValidationError = validate$2g(obj_members_item, path_members_item);
4029
+ const referencepath_members_itemValidationError = validate$2e(obj_members_item, path_members_item);
3877
4030
  if (referencepath_members_itemValidationError !== null) {
3878
4031
  let message = 'Object doesn\'t match XmdDimensionMemberRepresentation (at "' + path_members_item + '")\n';
3879
4032
  message += referencepath_members_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -3921,7 +4074,7 @@ function validate$2e(obj, path = 'XmdDimensionRepresentation') {
3921
4074
  for (let i = 0; i < obj_salesforceActions.length; i++) {
3922
4075
  const obj_salesforceActions_item = obj_salesforceActions[i];
3923
4076
  const path_salesforceActions_item = path_salesforceActions + '[' + i + ']';
3924
- const referencepath_salesforceActions_itemValidationError = validate$2f(obj_salesforceActions_item, path_salesforceActions_item);
4077
+ const referencepath_salesforceActions_itemValidationError = validate$2d(obj_salesforceActions_item, path_salesforceActions_item);
3925
4078
  if (referencepath_salesforceActions_itemValidationError !== null) {
3926
4079
  let message = 'Object doesn\'t match XmdDimensionSalesforceActionRepresentation (at "' + path_salesforceActions_item + '")\n';
3927
4080
  message += referencepath_salesforceActions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -3945,13 +4098,13 @@ function validate$2e(obj, path = 'XmdDimensionRepresentation') {
3945
4098
  })();
3946
4099
  return v_error === undefined ? null : v_error;
3947
4100
  }
3948
- const select$2f = function XmdDimensionRepresentationSelect() {
3949
- const { selections: XmdDimensionCustomActionRepresentation__selections, opaque: XmdDimensionCustomActionRepresentation__opaque, } = select$2i();
3950
- const { selections: XmdDimensionMemberRepresentation__selections, opaque: XmdDimensionMemberRepresentation__opaque, } = select$2h();
3951
- const { selections: XmdDimensionSalesforceActionRepresentation__selections, opaque: XmdDimensionSalesforceActionRepresentation__opaque, } = select$2g();
4101
+ const select$2d = function XmdDimensionRepresentationSelect() {
4102
+ const { selections: XmdDimensionCustomActionRepresentation__selections, opaque: XmdDimensionCustomActionRepresentation__opaque, } = select$2g();
4103
+ const { selections: XmdDimensionMemberRepresentation__selections, opaque: XmdDimensionMemberRepresentation__opaque, } = select$2f();
4104
+ const { selections: XmdDimensionSalesforceActionRepresentation__selections, opaque: XmdDimensionSalesforceActionRepresentation__opaque, } = select$2e();
3952
4105
  return {
3953
4106
  kind: 'Fragment',
3954
- version: VERSION$1r,
4107
+ version: VERSION$1p,
3955
4108
  private: [],
3956
4109
  selections: [
3957
4110
  {
@@ -4069,7 +4222,7 @@ const select$2f = function XmdDimensionRepresentationSelect() {
4069
4222
  ]
4070
4223
  };
4071
4224
  };
4072
- function equals$1r(existing, incoming) {
4225
+ function equals$1p(existing, incoming) {
4073
4226
  const existing_customActionsEnabled = existing.customActionsEnabled;
4074
4227
  const incoming_customActionsEnabled = incoming.customActionsEnabled;
4075
4228
  // if at least one of these optionals is defined
@@ -4296,7 +4449,7 @@ function equals$1r(existing, incoming) {
4296
4449
  const existing_customActions = existing.customActions;
4297
4450
  const incoming_customActions = incoming.customActions;
4298
4451
  const equals_customActions_items = equalsArray(existing_customActions, incoming_customActions, (existing_customActions_item, incoming_customActions_item) => {
4299
- if (!(equals$1u(existing_customActions_item, incoming_customActions_item))) {
4452
+ if (!(equals$1s(existing_customActions_item, incoming_customActions_item))) {
4300
4453
  return false;
4301
4454
  }
4302
4455
  });
@@ -4306,7 +4459,7 @@ function equals$1r(existing, incoming) {
4306
4459
  const existing_members = existing.members;
4307
4460
  const incoming_members = incoming.members;
4308
4461
  const equals_members_items = equalsArray(existing_members, incoming_members, (existing_members_item, incoming_members_item) => {
4309
- if (!(equals$1t(existing_members_item, incoming_members_item))) {
4462
+ if (!(equals$1r(existing_members_item, incoming_members_item))) {
4310
4463
  return false;
4311
4464
  }
4312
4465
  });
@@ -4326,7 +4479,7 @@ function equals$1r(existing, incoming) {
4326
4479
  const existing_salesforceActions = existing.salesforceActions;
4327
4480
  const incoming_salesforceActions = incoming.salesforceActions;
4328
4481
  const equals_salesforceActions_items = equalsArray(existing_salesforceActions, incoming_salesforceActions, (existing_salesforceActions_item, incoming_salesforceActions_item) => {
4329
- if (!(equals$1s(existing_salesforceActions_item, incoming_salesforceActions_item))) {
4482
+ if (!(equals$1q(existing_salesforceActions_item, incoming_salesforceActions_item))) {
4330
4483
  return false;
4331
4484
  }
4332
4485
  });
@@ -4336,8 +4489,8 @@ function equals$1r(existing, incoming) {
4336
4489
  return true;
4337
4490
  }
4338
4491
 
4339
- const VERSION$1q = "6243d23dffd11dd959e3d2e8430e32f7";
4340
- function validate$2d(obj, path = 'NumericSeparatorsRepresentation') {
4492
+ const VERSION$1o = "6243d23dffd11dd959e3d2e8430e32f7";
4493
+ function validate$2b(obj, path = 'NumericSeparatorsRepresentation') {
4341
4494
  const v_error = (() => {
4342
4495
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
4343
4496
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -4359,10 +4512,10 @@ function validate$2d(obj, path = 'NumericSeparatorsRepresentation') {
4359
4512
  })();
4360
4513
  return v_error === undefined ? null : v_error;
4361
4514
  }
4362
- const select$2e = function NumericSeparatorsRepresentationSelect() {
4515
+ const select$2c = function NumericSeparatorsRepresentationSelect() {
4363
4516
  return {
4364
4517
  kind: 'Fragment',
4365
- version: VERSION$1q,
4518
+ version: VERSION$1o,
4366
4519
  private: [],
4367
4520
  selections: [
4368
4521
  {
@@ -4378,7 +4531,7 @@ const select$2e = function NumericSeparatorsRepresentationSelect() {
4378
4531
  ]
4379
4532
  };
4380
4533
  };
4381
- function equals$1q(existing, incoming) {
4534
+ function equals$1o(existing, incoming) {
4382
4535
  const existing_decimal = existing.decimal;
4383
4536
  const incoming_decimal = incoming.decimal;
4384
4537
  // if at least one of these optionals is defined
@@ -4408,8 +4561,8 @@ function equals$1q(existing, incoming) {
4408
4561
  return true;
4409
4562
  }
4410
4563
 
4411
- const VERSION$1p = "ce859e4b9f0054d188d90ff1108f1e2e";
4412
- function validate$2c(obj, path = 'XmdMeasureFormatRepresentation') {
4564
+ const VERSION$1n = "ce859e4b9f0054d188d90ff1108f1e2e";
4565
+ function validate$2a(obj, path = 'XmdMeasureFormatRepresentation') {
4413
4566
  const v_error = (() => {
4414
4567
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
4415
4568
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -4431,7 +4584,7 @@ function validate$2c(obj, path = 'XmdMeasureFormatRepresentation') {
4431
4584
  if (obj.delimiters !== undefined) {
4432
4585
  const obj_delimiters = obj.delimiters;
4433
4586
  const path_delimiters = path + '.delimiters';
4434
- const referencepath_delimitersValidationError = validate$2d(obj_delimiters, path_delimiters);
4587
+ const referencepath_delimitersValidationError = validate$2b(obj_delimiters, path_delimiters);
4435
4588
  if (referencepath_delimitersValidationError !== null) {
4436
4589
  let message = 'Object doesn\'t match NumericSeparatorsRepresentation (at "' + path_delimiters + '")\n';
4437
4590
  message += referencepath_delimitersValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -4472,11 +4625,11 @@ function validate$2c(obj, path = 'XmdMeasureFormatRepresentation') {
4472
4625
  })();
4473
4626
  return v_error === undefined ? null : v_error;
4474
4627
  }
4475
- const select$2d = function XmdMeasureFormatRepresentationSelect() {
4476
- const { selections: NumericSeparatorsRepresentation__selections, opaque: NumericSeparatorsRepresentation__opaque, } = select$2e();
4628
+ const select$2b = function XmdMeasureFormatRepresentationSelect() {
4629
+ const { selections: NumericSeparatorsRepresentation__selections, opaque: NumericSeparatorsRepresentation__opaque, } = select$2c();
4477
4630
  return {
4478
4631
  kind: 'Fragment',
4479
- version: VERSION$1p,
4632
+ version: VERSION$1n,
4480
4633
  private: [],
4481
4634
  selections: [
4482
4635
  {
@@ -4523,7 +4676,7 @@ const select$2d = function XmdMeasureFormatRepresentationSelect() {
4523
4676
  ]
4524
4677
  };
4525
4678
  };
4526
- function equals$1p(existing, incoming) {
4679
+ function equals$1n(existing, incoming) {
4527
4680
  const existing_negativeParentheses = existing.negativeParentheses;
4528
4681
  const incoming_negativeParentheses = incoming.negativeParentheses;
4529
4682
  // if at least one of these optionals is defined
@@ -4624,15 +4777,15 @@ function equals$1p(existing, incoming) {
4624
4777
  if (existing_delimiters === undefined || incoming_delimiters === undefined) {
4625
4778
  return false;
4626
4779
  }
4627
- if (!(equals$1q(existing_delimiters, incoming_delimiters))) {
4780
+ if (!(equals$1o(existing_delimiters, incoming_delimiters))) {
4628
4781
  return false;
4629
4782
  }
4630
4783
  }
4631
4784
  return true;
4632
4785
  }
4633
4786
 
4634
- const VERSION$1o = "535c7fccecc4dc22322e69236ab37771";
4635
- function validate$2b(obj, path = 'XmdMeasureRepresentation') {
4787
+ const VERSION$1m = "535c7fccecc4dc22322e69236ab37771";
4788
+ function validate$29(obj, path = 'XmdMeasureRepresentation') {
4636
4789
  const v_error = (() => {
4637
4790
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
4638
4791
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -4673,7 +4826,7 @@ function validate$2b(obj, path = 'XmdMeasureRepresentation') {
4673
4826
  if (obj.format !== undefined) {
4674
4827
  const obj_format = obj.format;
4675
4828
  const path_format = path + '.format';
4676
- const referencepath_formatValidationError = validate$2c(obj_format, path_format);
4829
+ const referencepath_formatValidationError = validate$2a(obj_format, path_format);
4677
4830
  if (referencepath_formatValidationError !== null) {
4678
4831
  let message = 'Object doesn\'t match XmdMeasureFormatRepresentation (at "' + path_format + '")\n';
4679
4832
  message += referencepath_formatValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -4711,11 +4864,11 @@ function validate$2b(obj, path = 'XmdMeasureRepresentation') {
4711
4864
  })();
4712
4865
  return v_error === undefined ? null : v_error;
4713
4866
  }
4714
- const select$2c = function XmdMeasureRepresentationSelect() {
4715
- const { selections: XmdMeasureFormatRepresentation__selections, opaque: XmdMeasureFormatRepresentation__opaque, } = select$2d();
4867
+ const select$2a = function XmdMeasureRepresentationSelect() {
4868
+ const { selections: XmdMeasureFormatRepresentation__selections, opaque: XmdMeasureFormatRepresentation__opaque, } = select$2b();
4716
4869
  return {
4717
4870
  kind: 'Fragment',
4718
- version: VERSION$1o,
4871
+ version: VERSION$1m,
4719
4872
  private: [],
4720
4873
  selections: [
4721
4874
  {
@@ -4766,7 +4919,7 @@ const select$2c = function XmdMeasureRepresentationSelect() {
4766
4919
  ]
4767
4920
  };
4768
4921
  };
4769
- function equals$1o(existing, incoming) {
4922
+ function equals$1m(existing, incoming) {
4770
4923
  const existing_showInExplorer = existing.showInExplorer;
4771
4924
  const incoming_showInExplorer = incoming.showInExplorer;
4772
4925
  // if at least one of these optionals is defined
@@ -4869,15 +5022,15 @@ function equals$1o(existing, incoming) {
4869
5022
  if (existing_format === undefined || incoming_format === undefined) {
4870
5023
  return false;
4871
5024
  }
4872
- if (!(equals$1p(existing_format, incoming_format))) {
5025
+ if (!(equals$1n(existing_format, incoming_format))) {
4873
5026
  return false;
4874
5027
  }
4875
5028
  }
4876
5029
  return true;
4877
5030
  }
4878
5031
 
4879
- const VERSION$1n = "2ce18708319ec6df794d193423f89ea8";
4880
- function validate$2a(obj, path = 'XmdOrganizationRepresentation') {
5032
+ const VERSION$1l = "2ce18708319ec6df794d193423f89ea8";
5033
+ function validate$28(obj, path = 'XmdOrganizationRepresentation') {
4881
5034
  const v_error = (() => {
4882
5035
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
4883
5036
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -4900,10 +5053,10 @@ function validate$2a(obj, path = 'XmdOrganizationRepresentation') {
4900
5053
  })();
4901
5054
  return v_error === undefined ? null : v_error;
4902
5055
  }
4903
- const select$2b = function XmdOrganizationRepresentationSelect() {
5056
+ const select$29 = function XmdOrganizationRepresentationSelect() {
4904
5057
  return {
4905
5058
  kind: 'Fragment',
4906
- version: VERSION$1n,
5059
+ version: VERSION$1l,
4907
5060
  private: [],
4908
5061
  selections: [
4909
5062
  {
@@ -4921,7 +5074,7 @@ const select$2b = function XmdOrganizationRepresentationSelect() {
4921
5074
  ]
4922
5075
  };
4923
5076
  };
4924
- function equals$1n(existing, incoming) {
5077
+ function equals$1l(existing, incoming) {
4925
5078
  const existing_id = existing.id;
4926
5079
  const incoming_id = incoming.id;
4927
5080
  if (!(existing_id === incoming_id)) {
@@ -4940,15 +5093,15 @@ function equals$1n(existing, incoming) {
4940
5093
  return true;
4941
5094
  }
4942
5095
 
4943
- const VERSION$1m = "eabfa2ce7b374a1e60eb0fb61127a4a0";
4944
- function validate$29(obj, path = 'XmdInnerRepresentation') {
5096
+ const VERSION$1k = "eabfa2ce7b374a1e60eb0fb61127a4a0";
5097
+ function validate$27(obj, path = 'XmdInnerRepresentation') {
4945
5098
  const v_error = (() => {
4946
5099
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
4947
5100
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
4948
5101
  }
4949
5102
  const obj_createdBy = obj.createdBy;
4950
5103
  const path_createdBy = path + '.createdBy';
4951
- const referencepath_createdByValidationError = validate$2r(obj_createdBy, path_createdBy);
5104
+ const referencepath_createdByValidationError = validate$2D(obj_createdBy, path_createdBy);
4952
5105
  if (referencepath_createdByValidationError !== null) {
4953
5106
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_createdBy + '")\n';
4954
5107
  message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -4961,7 +5114,7 @@ function validate$29(obj, path = 'XmdInnerRepresentation') {
4961
5114
  }
4962
5115
  const obj_dataset = obj.dataset;
4963
5116
  const path_dataset = path + '.dataset';
4964
- const referencepath_datasetValidationError = validate$2l(obj_dataset, path_dataset);
5117
+ const referencepath_datasetValidationError = validate$2j(obj_dataset, path_dataset);
4965
5118
  if (referencepath_datasetValidationError !== null) {
4966
5119
  let message = 'Object doesn\'t match XmdDatasetRepresentation (at "' + path_dataset + '")\n';
4967
5120
  message += referencepath_datasetValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -4975,7 +5128,7 @@ function validate$29(obj, path = 'XmdInnerRepresentation') {
4975
5128
  for (let i = 0; i < obj_dates.length; i++) {
4976
5129
  const obj_dates_item = obj_dates[i];
4977
5130
  const path_dates_item = path_dates + '[' + i + ']';
4978
- const referencepath_dates_itemValidationError = validate$2j(obj_dates_item, path_dates_item);
5131
+ const referencepath_dates_itemValidationError = validate$2h(obj_dates_item, path_dates_item);
4979
5132
  if (referencepath_dates_itemValidationError !== null) {
4980
5133
  let message = 'Object doesn\'t match XmdDateRepresentation (at "' + path_dates_item + '")\n';
4981
5134
  message += referencepath_dates_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -4990,7 +5143,7 @@ function validate$29(obj, path = 'XmdInnerRepresentation') {
4990
5143
  for (let i = 0; i < obj_derivedDimensions.length; i++) {
4991
5144
  const obj_derivedDimensions_item = obj_derivedDimensions[i];
4992
5145
  const path_derivedDimensions_item = path_derivedDimensions + '[' + i + ']';
4993
- const referencepath_derivedDimensions_itemValidationError = validate$2e(obj_derivedDimensions_item, path_derivedDimensions_item);
5146
+ const referencepath_derivedDimensions_itemValidationError = validate$2c(obj_derivedDimensions_item, path_derivedDimensions_item);
4994
5147
  if (referencepath_derivedDimensions_itemValidationError !== null) {
4995
5148
  let message = 'Object doesn\'t match XmdDimensionRepresentation (at "' + path_derivedDimensions_item + '")\n';
4996
5149
  message += referencepath_derivedDimensions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -5005,7 +5158,7 @@ function validate$29(obj, path = 'XmdInnerRepresentation') {
5005
5158
  for (let i = 0; i < obj_derivedMeasures.length; i++) {
5006
5159
  const obj_derivedMeasures_item = obj_derivedMeasures[i];
5007
5160
  const path_derivedMeasures_item = path_derivedMeasures + '[' + i + ']';
5008
- const referencepath_derivedMeasures_itemValidationError = validate$2b(obj_derivedMeasures_item, path_derivedMeasures_item);
5161
+ const referencepath_derivedMeasures_itemValidationError = validate$29(obj_derivedMeasures_item, path_derivedMeasures_item);
5009
5162
  if (referencepath_derivedMeasures_itemValidationError !== null) {
5010
5163
  let message = 'Object doesn\'t match XmdMeasureRepresentation (at "' + path_derivedMeasures_item + '")\n';
5011
5164
  message += referencepath_derivedMeasures_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -5020,7 +5173,7 @@ function validate$29(obj, path = 'XmdInnerRepresentation') {
5020
5173
  for (let i = 0; i < obj_dimensions.length; i++) {
5021
5174
  const obj_dimensions_item = obj_dimensions[i];
5022
5175
  const path_dimensions_item = path_dimensions + '[' + i + ']';
5023
- const referencepath_dimensions_itemValidationError = validate$2e(obj_dimensions_item, path_dimensions_item);
5176
+ const referencepath_dimensions_itemValidationError = validate$2c(obj_dimensions_item, path_dimensions_item);
5024
5177
  if (referencepath_dimensions_itemValidationError !== null) {
5025
5178
  let message = 'Object doesn\'t match XmdDimensionRepresentation (at "' + path_dimensions_item + '")\n';
5026
5179
  message += referencepath_dimensions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -5041,7 +5194,7 @@ function validate$29(obj, path = 'XmdInnerRepresentation') {
5041
5194
  }
5042
5195
  const obj_lastModifiedBy = obj.lastModifiedBy;
5043
5196
  const path_lastModifiedBy = path + '.lastModifiedBy';
5044
- const referencepath_lastModifiedByValidationError = validate$2r(obj_lastModifiedBy, path_lastModifiedBy);
5197
+ const referencepath_lastModifiedByValidationError = validate$2D(obj_lastModifiedBy, path_lastModifiedBy);
5045
5198
  if (referencepath_lastModifiedByValidationError !== null) {
5046
5199
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_lastModifiedBy + '")\n';
5047
5200
  message += referencepath_lastModifiedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -5060,7 +5213,7 @@ function validate$29(obj, path = 'XmdInnerRepresentation') {
5060
5213
  for (let i = 0; i < obj_measures.length; i++) {
5061
5214
  const obj_measures_item = obj_measures[i];
5062
5215
  const path_measures_item = path_measures + '[' + i + ']';
5063
- const referencepath_measures_itemValidationError = validate$2b(obj_measures_item, path_measures_item);
5216
+ const referencepath_measures_itemValidationError = validate$29(obj_measures_item, path_measures_item);
5064
5217
  if (referencepath_measures_itemValidationError !== null) {
5065
5218
  let message = 'Object doesn\'t match XmdMeasureRepresentation (at "' + path_measures_item + '")\n';
5066
5219
  message += referencepath_measures_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -5075,7 +5228,7 @@ function validate$29(obj, path = 'XmdInnerRepresentation') {
5075
5228
  for (let i = 0; i < obj_organizations.length; i++) {
5076
5229
  const obj_organizations_item = obj_organizations[i];
5077
5230
  const path_organizations_item = path_organizations + '[' + i + ']';
5078
- const referencepath_organizations_itemValidationError = validate$2a(obj_organizations_item, path_organizations_item);
5231
+ const referencepath_organizations_itemValidationError = validate$28(obj_organizations_item, path_organizations_item);
5079
5232
  if (referencepath_organizations_itemValidationError !== null) {
5080
5233
  let message = 'Object doesn\'t match XmdOrganizationRepresentation (at "' + path_organizations_item + '")\n';
5081
5234
  message += referencepath_organizations_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -5109,16 +5262,16 @@ function validate$29(obj, path = 'XmdInnerRepresentation') {
5109
5262
  })();
5110
5263
  return v_error === undefined ? null : v_error;
5111
5264
  }
5112
- const select$2a = function XmdInnerRepresentationSelect() {
5113
- const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2s();
5114
- const { selections: XmdDatasetRepresentation__selections, opaque: XmdDatasetRepresentation__opaque, } = select$2m();
5115
- const { selections: XmdDateRepresentation__selections, opaque: XmdDateRepresentation__opaque, } = select$2k();
5116
- const { selections: XmdDimensionRepresentation__selections, opaque: XmdDimensionRepresentation__opaque, } = select$2f();
5117
- const { selections: XmdMeasureRepresentation__selections, opaque: XmdMeasureRepresentation__opaque, } = select$2c();
5118
- const { selections: XmdOrganizationRepresentation__selections, opaque: XmdOrganizationRepresentation__opaque, } = select$2b();
5265
+ const select$28 = function XmdInnerRepresentationSelect() {
5266
+ const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2F();
5267
+ const { selections: XmdDatasetRepresentation__selections, opaque: XmdDatasetRepresentation__opaque, } = select$2k();
5268
+ const { selections: XmdDateRepresentation__selections, opaque: XmdDateRepresentation__opaque, } = select$2i();
5269
+ const { selections: XmdDimensionRepresentation__selections, opaque: XmdDimensionRepresentation__opaque, } = select$2d();
5270
+ const { selections: XmdMeasureRepresentation__selections, opaque: XmdMeasureRepresentation__opaque, } = select$2a();
5271
+ const { selections: XmdOrganizationRepresentation__selections, opaque: XmdOrganizationRepresentation__opaque, } = select$29();
5119
5272
  return {
5120
5273
  kind: 'Fragment',
5121
- version: VERSION$1m,
5274
+ version: VERSION$1k,
5122
5275
  private: [],
5123
5276
  selections: [
5124
5277
  {
@@ -5206,7 +5359,7 @@ const select$2a = function XmdInnerRepresentationSelect() {
5206
5359
  ]
5207
5360
  };
5208
5361
  };
5209
- function equals$1m(existing, incoming) {
5362
+ function equals$1k(existing, incoming) {
5210
5363
  const existing_createdDate = existing.createdDate;
5211
5364
  const incoming_createdDate = incoming.createdDate;
5212
5365
  if (!(existing_createdDate === incoming_createdDate)) {
@@ -5255,18 +5408,18 @@ function equals$1m(existing, incoming) {
5255
5408
  }
5256
5409
  const existing_createdBy = existing.createdBy;
5257
5410
  const incoming_createdBy = incoming.createdBy;
5258
- if (!(equals$1E(existing_createdBy, incoming_createdBy))) {
5411
+ if (!(equals$1P(existing_createdBy, incoming_createdBy))) {
5259
5412
  return false;
5260
5413
  }
5261
5414
  const existing_dataset = existing.dataset;
5262
5415
  const incoming_dataset = incoming.dataset;
5263
- if (!(equals$1y(existing_dataset, incoming_dataset))) {
5416
+ if (!(equals$1w(existing_dataset, incoming_dataset))) {
5264
5417
  return false;
5265
5418
  }
5266
5419
  const existing_dates = existing.dates;
5267
5420
  const incoming_dates = incoming.dates;
5268
5421
  const equals_dates_items = equalsArray(existing_dates, incoming_dates, (existing_dates_item, incoming_dates_item) => {
5269
- if (!(equals$1w(existing_dates_item, incoming_dates_item))) {
5422
+ if (!(equals$1u(existing_dates_item, incoming_dates_item))) {
5270
5423
  return false;
5271
5424
  }
5272
5425
  });
@@ -5276,7 +5429,7 @@ function equals$1m(existing, incoming) {
5276
5429
  const existing_derivedDimensions = existing.derivedDimensions;
5277
5430
  const incoming_derivedDimensions = incoming.derivedDimensions;
5278
5431
  const equals_derivedDimensions_items = equalsArray(existing_derivedDimensions, incoming_derivedDimensions, (existing_derivedDimensions_item, incoming_derivedDimensions_item) => {
5279
- if (!(equals$1r(existing_derivedDimensions_item, incoming_derivedDimensions_item))) {
5432
+ if (!(equals$1p(existing_derivedDimensions_item, incoming_derivedDimensions_item))) {
5280
5433
  return false;
5281
5434
  }
5282
5435
  });
@@ -5286,7 +5439,7 @@ function equals$1m(existing, incoming) {
5286
5439
  const existing_derivedMeasures = existing.derivedMeasures;
5287
5440
  const incoming_derivedMeasures = incoming.derivedMeasures;
5288
5441
  const equals_derivedMeasures_items = equalsArray(existing_derivedMeasures, incoming_derivedMeasures, (existing_derivedMeasures_item, incoming_derivedMeasures_item) => {
5289
- if (!(equals$1o(existing_derivedMeasures_item, incoming_derivedMeasures_item))) {
5442
+ if (!(equals$1m(existing_derivedMeasures_item, incoming_derivedMeasures_item))) {
5290
5443
  return false;
5291
5444
  }
5292
5445
  });
@@ -5296,7 +5449,7 @@ function equals$1m(existing, incoming) {
5296
5449
  const existing_dimensions = existing.dimensions;
5297
5450
  const incoming_dimensions = incoming.dimensions;
5298
5451
  const equals_dimensions_items = equalsArray(existing_dimensions, incoming_dimensions, (existing_dimensions_item, incoming_dimensions_item) => {
5299
- if (!(equals$1r(existing_dimensions_item, incoming_dimensions_item))) {
5452
+ if (!(equals$1p(existing_dimensions_item, incoming_dimensions_item))) {
5300
5453
  return false;
5301
5454
  }
5302
5455
  });
@@ -5305,13 +5458,13 @@ function equals$1m(existing, incoming) {
5305
5458
  }
5306
5459
  const existing_lastModifiedBy = existing.lastModifiedBy;
5307
5460
  const incoming_lastModifiedBy = incoming.lastModifiedBy;
5308
- if (!(equals$1E(existing_lastModifiedBy, incoming_lastModifiedBy))) {
5461
+ if (!(equals$1P(existing_lastModifiedBy, incoming_lastModifiedBy))) {
5309
5462
  return false;
5310
5463
  }
5311
5464
  const existing_measures = existing.measures;
5312
5465
  const incoming_measures = incoming.measures;
5313
5466
  const equals_measures_items = equalsArray(existing_measures, incoming_measures, (existing_measures_item, incoming_measures_item) => {
5314
- if (!(equals$1o(existing_measures_item, incoming_measures_item))) {
5467
+ if (!(equals$1m(existing_measures_item, incoming_measures_item))) {
5315
5468
  return false;
5316
5469
  }
5317
5470
  });
@@ -5321,7 +5474,7 @@ function equals$1m(existing, incoming) {
5321
5474
  const existing_organizations = existing.organizations;
5322
5475
  const incoming_organizations = incoming.organizations;
5323
5476
  const equals_organizations_items = equalsArray(existing_organizations, incoming_organizations, (existing_organizations_item, incoming_organizations_item) => {
5324
- if (!(equals$1n(existing_organizations_item, incoming_organizations_item))) {
5477
+ if (!(equals$1l(existing_organizations_item, incoming_organizations_item))) {
5325
5478
  return false;
5326
5479
  }
5327
5480
  });
@@ -5342,8 +5495,8 @@ function equals$1m(existing, incoming) {
5342
5495
  }
5343
5496
 
5344
5497
  const TTL$y = 5000;
5345
- const VERSION$1l = "27f88ebb8afb2ea93145941cc45816e6";
5346
- function validate$28(obj, path = 'DatasetVersionRepresentation') {
5498
+ const VERSION$1j = "27f88ebb8afb2ea93145941cc45816e6";
5499
+ function validate$26(obj, path = 'DatasetVersionRepresentation') {
5347
5500
  const validateBaseWaveAssetRepresentation_validateError = validate$1N(obj, path);
5348
5501
  if (validateBaseWaveAssetRepresentation_validateError !== null) {
5349
5502
  return validateBaseWaveAssetRepresentation_validateError;
@@ -5355,7 +5508,7 @@ function validate$28(obj, path = 'DatasetVersionRepresentation') {
5355
5508
  if (obj.dataset !== undefined) {
5356
5509
  const obj_dataset = obj.dataset;
5357
5510
  const path_dataset = path + '.dataset';
5358
- const referencepath_datasetValidationError = validate$2o(obj_dataset, path_dataset);
5511
+ const referencepath_datasetValidationError = validate$2m(obj_dataset, path_dataset);
5359
5512
  if (referencepath_datasetValidationError !== null) {
5360
5513
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_dataset + '")\n';
5361
5514
  message += referencepath_datasetValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -5371,7 +5524,7 @@ function validate$28(obj, path = 'DatasetVersionRepresentation') {
5371
5524
  for (let i = 0; i < obj_files.length; i++) {
5372
5525
  const obj_files_item = obj_files[i];
5373
5526
  const path_files_item = path_files + '[' + i + ']';
5374
- const referencepath_files_itemValidationError = validate$2n(obj_files_item, path_files_item);
5527
+ const referencepath_files_itemValidationError = validate$2l(obj_files_item, path_files_item);
5375
5528
  if (referencepath_files_itemValidationError !== null) {
5376
5529
  let message = 'Object doesn\'t match WaveFileMetadataRepresentation (at "' + path_files_item + '")\n';
5377
5530
  message += referencepath_files_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -5404,7 +5557,7 @@ function validate$28(obj, path = 'DatasetVersionRepresentation') {
5404
5557
  if (obj.sharingSource !== undefined) {
5405
5558
  const obj_sharingSource = obj.sharingSource;
5406
5559
  const path_sharingSource = path + '.sharingSource';
5407
- const referencepath_sharingSourceValidationError = validate$2m(obj_sharingSource, path_sharingSource);
5560
+ const referencepath_sharingSourceValidationError = validate$2k(obj_sharingSource, path_sharingSource);
5408
5561
  if (referencepath_sharingSourceValidationError !== null) {
5409
5562
  let message = 'Object doesn\'t match DatasetVersionSharingSourceRepresentation (at "' + path_sharingSource + '")\n';
5410
5563
  message += referencepath_sharingSourceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -5414,7 +5567,7 @@ function validate$28(obj, path = 'DatasetVersionRepresentation') {
5414
5567
  if (obj.source !== undefined) {
5415
5568
  const obj_source = obj.source;
5416
5569
  const path_source = path + '.source';
5417
- const referencepath_sourceValidationError = validate$2o(obj_source, path_source);
5570
+ const referencepath_sourceValidationError = validate$2m(obj_source, path_source);
5418
5571
  if (referencepath_sourceValidationError !== null) {
5419
5572
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_source + '")\n';
5420
5573
  message += referencepath_sourceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -5434,7 +5587,7 @@ function validate$28(obj, path = 'DatasetVersionRepresentation') {
5434
5587
  if (obj.xmdMain !== undefined) {
5435
5588
  const obj_xmdMain = obj.xmdMain;
5436
5589
  const path_xmdMain = path + '.xmdMain';
5437
- const referencepath_xmdMainValidationError = validate$29(obj_xmdMain, path_xmdMain);
5590
+ const referencepath_xmdMainValidationError = validate$27(obj_xmdMain, path_xmdMain);
5438
5591
  if (referencepath_xmdMainValidationError !== null) {
5439
5592
  let message = 'Object doesn\'t match XmdInnerRepresentation (at "' + path_xmdMain + '")\n';
5440
5593
  message += referencepath_xmdMainValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -5461,15 +5614,15 @@ function keyBuilderFromType$j(luvio, object) {
5461
5614
  function normalize$C(input, existing, path, luvio, store, timestamp) {
5462
5615
  return input;
5463
5616
  }
5464
- const select$29 = function DatasetVersionRepresentationSelect() {
5617
+ const select$27 = function DatasetVersionRepresentationSelect() {
5465
5618
  const { selections: BaseWaveAssetRepresentationSelections } = select$1O();
5466
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
5467
- const { selections: WaveFileMetadataRepresentation__selections, opaque: WaveFileMetadataRepresentation__opaque, } = select$2o();
5468
- const { selections: DatasetVersionSharingSourceRepresentation__selections, opaque: DatasetVersionSharingSourceRepresentation__opaque, } = select$2n();
5469
- const { selections: XmdInnerRepresentation__selections, opaque: XmdInnerRepresentation__opaque, } = select$2a();
5619
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
5620
+ const { selections: WaveFileMetadataRepresentation__selections, opaque: WaveFileMetadataRepresentation__opaque, } = select$2m();
5621
+ const { selections: DatasetVersionSharingSourceRepresentation__selections, opaque: DatasetVersionSharingSourceRepresentation__opaque, } = select$2l();
5622
+ const { selections: XmdInnerRepresentation__selections, opaque: XmdInnerRepresentation__opaque, } = select$28();
5470
5623
  return {
5471
5624
  kind: 'Fragment',
5472
- version: VERSION$1l,
5625
+ version: VERSION$1j,
5473
5626
  private: [],
5474
5627
  selections: [
5475
5628
  ...BaseWaveAssetRepresentationSelections,
@@ -5541,7 +5694,7 @@ const select$29 = function DatasetVersionRepresentationSelect() {
5541
5694
  ]
5542
5695
  };
5543
5696
  };
5544
- function equals$1l(existing, incoming) {
5697
+ function equals$1j(existing, incoming) {
5545
5698
  if (equals$_(existing, incoming) === false) {
5546
5699
  return false;
5547
5700
  }
@@ -5637,7 +5790,7 @@ function equals$1l(existing, incoming) {
5637
5790
  if (existing_dataset === undefined || incoming_dataset === undefined) {
5638
5791
  return false;
5639
5792
  }
5640
- if (!(equals$1B(existing_dataset, incoming_dataset))) {
5793
+ if (!(equals$1z(existing_dataset, incoming_dataset))) {
5641
5794
  return false;
5642
5795
  }
5643
5796
  }
@@ -5651,7 +5804,7 @@ function equals$1l(existing, incoming) {
5651
5804
  return false;
5652
5805
  }
5653
5806
  const equals_files_items = equalsArray(existing_files, incoming_files, (existing_files_item, incoming_files_item) => {
5654
- if (!(equals$1A(existing_files_item, incoming_files_item))) {
5807
+ if (!(equals$1y(existing_files_item, incoming_files_item))) {
5655
5808
  return false;
5656
5809
  }
5657
5810
  });
@@ -5668,7 +5821,7 @@ function equals$1l(existing, incoming) {
5668
5821
  if (existing_sharingSource === undefined || incoming_sharingSource === undefined) {
5669
5822
  return false;
5670
5823
  }
5671
- if (!(equals$1z(existing_sharingSource, incoming_sharingSource))) {
5824
+ if (!(equals$1x(existing_sharingSource, incoming_sharingSource))) {
5672
5825
  return false;
5673
5826
  }
5674
5827
  }
@@ -5681,7 +5834,7 @@ function equals$1l(existing, incoming) {
5681
5834
  if (existing_source === undefined || incoming_source === undefined) {
5682
5835
  return false;
5683
5836
  }
5684
- if (!(equals$1B(existing_source, incoming_source))) {
5837
+ if (!(equals$1z(existing_source, incoming_source))) {
5685
5838
  return false;
5686
5839
  }
5687
5840
  }
@@ -5694,7 +5847,7 @@ function equals$1l(existing, incoming) {
5694
5847
  if (existing_xmdMain === undefined || incoming_xmdMain === undefined) {
5695
5848
  return false;
5696
5849
  }
5697
- if (!(equals$1m(existing_xmdMain, incoming_xmdMain))) {
5850
+ if (!(equals$1k(existing_xmdMain, incoming_xmdMain))) {
5698
5851
  return false;
5699
5852
  }
5700
5853
  }
@@ -5702,14 +5855,14 @@ function equals$1l(existing, incoming) {
5702
5855
  }
5703
5856
  const ingest$C = function DatasetVersionRepresentationIngest(input, path, luvio, store, timestamp) {
5704
5857
  if (process.env.NODE_ENV !== 'production') {
5705
- const validateError = validate$28(input);
5858
+ const validateError = validate$26(input);
5706
5859
  if (validateError !== null) {
5707
5860
  throw validateError;
5708
5861
  }
5709
5862
  }
5710
5863
  const key = keyBuilderFromType$j(luvio, input);
5711
5864
  const ttlToUse = TTL$r;
5712
- ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$C, "WAVE", VERSION$1l, RepresentationType$D, equals$1l);
5865
+ ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$C, "WAVE", VERSION$1j, RepresentationType$D, equals$1j);
5713
5866
  return createLink(key);
5714
5867
  };
5715
5868
  function getTypeCacheKeys$C(rootKeySet, luvio, input, fullPathFactory) {
@@ -5722,8 +5875,8 @@ function getTypeCacheKeys$C(rootKeySet, luvio, input, fullPathFactory) {
5722
5875
  });
5723
5876
  }
5724
5877
 
5725
- const VERSION$1k = "36a34da07e7edc70f094727b931bfb88";
5726
- function validate$27(obj, path = 'RecipeConversionDetailRepresentation') {
5878
+ const VERSION$1i = "36a34da07e7edc70f094727b931bfb88";
5879
+ function validate$25(obj, path = 'RecipeConversionDetailRepresentation') {
5727
5880
  const v_error = (() => {
5728
5881
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
5729
5882
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -5746,10 +5899,10 @@ function validate$27(obj, path = 'RecipeConversionDetailRepresentation') {
5746
5899
  })();
5747
5900
  return v_error === undefined ? null : v_error;
5748
5901
  }
5749
- const select$28 = function RecipeConversionDetailRepresentationSelect() {
5902
+ const select$26 = function RecipeConversionDetailRepresentationSelect() {
5750
5903
  return {
5751
5904
  kind: 'Fragment',
5752
- version: VERSION$1k,
5905
+ version: VERSION$1i,
5753
5906
  private: [],
5754
5907
  selections: [
5755
5908
  {
@@ -5767,7 +5920,7 @@ const select$28 = function RecipeConversionDetailRepresentationSelect() {
5767
5920
  ]
5768
5921
  };
5769
5922
  };
5770
- function equals$1k(existing, incoming) {
5923
+ function equals$1i(existing, incoming) {
5771
5924
  const existing_message = existing.message;
5772
5925
  const incoming_message = incoming.message;
5773
5926
  if (!(existing_message === incoming_message)) {
@@ -5786,8 +5939,8 @@ function equals$1k(existing, incoming) {
5786
5939
  return true;
5787
5940
  }
5788
5941
 
5789
- const VERSION$1j = "cf44d680a0ffb53010e959da9b5f307d";
5790
- function validate$26(obj, path = 'LicenseAttributesRepresentation') {
5942
+ const VERSION$1h = "cf44d680a0ffb53010e959da9b5f307d";
5943
+ function validate$24(obj, path = 'LicenseAttributesRepresentation') {
5791
5944
  const v_error = (() => {
5792
5945
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
5793
5946
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -5800,10 +5953,10 @@ function validate$26(obj, path = 'LicenseAttributesRepresentation') {
5800
5953
  })();
5801
5954
  return v_error === undefined ? null : v_error;
5802
5955
  }
5803
- const select$27 = function LicenseAttributesRepresentationSelect() {
5956
+ const select$25 = function LicenseAttributesRepresentationSelect() {
5804
5957
  return {
5805
5958
  kind: 'Fragment',
5806
- version: VERSION$1j,
5959
+ version: VERSION$1h,
5807
5960
  private: [],
5808
5961
  selections: [
5809
5962
  {
@@ -5813,7 +5966,7 @@ const select$27 = function LicenseAttributesRepresentationSelect() {
5813
5966
  ]
5814
5967
  };
5815
5968
  };
5816
- function equals$1j(existing, incoming) {
5969
+ function equals$1h(existing, incoming) {
5817
5970
  const existing_type = existing.type;
5818
5971
  const incoming_type = incoming.type;
5819
5972
  if (!(existing_type === incoming_type)) {
@@ -5822,8 +5975,8 @@ function equals$1j(existing, incoming) {
5822
5975
  return true;
5823
5976
  }
5824
5977
 
5825
- const VERSION$1i = "e6d762b811ffff0e2ddb09d3e01d3f7d";
5826
- function validate$25(obj, path = 'RecipeDefinitionRepresentation') {
5978
+ const VERSION$1g = "e6d762b811ffff0e2ddb09d3e01d3f7d";
5979
+ function validate$23(obj, path = 'RecipeDefinitionRepresentation') {
5827
5980
  const v_error = (() => {
5828
5981
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
5829
5982
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -5871,10 +6024,10 @@ function validate$25(obj, path = 'RecipeDefinitionRepresentation') {
5871
6024
  })();
5872
6025
  return v_error === undefined ? null : v_error;
5873
6026
  }
5874
- const select$26 = function RecipeDefinitionRepresentationSelect() {
6027
+ const select$24 = function RecipeDefinitionRepresentationSelect() {
5875
6028
  return {
5876
6029
  kind: 'Fragment',
5877
- version: VERSION$1i,
6030
+ version: VERSION$1g,
5878
6031
  private: [],
5879
6032
  selections: [
5880
6033
  {
@@ -5899,7 +6052,7 @@ const select$26 = function RecipeDefinitionRepresentationSelect() {
5899
6052
  ]
5900
6053
  };
5901
6054
  };
5902
- function equals$1i(existing, incoming) {
6055
+ function equals$1g(existing, incoming) {
5903
6056
  const existing_name = existing.name;
5904
6057
  const incoming_name = incoming.name;
5905
6058
  // if at least one of these optionals is defined
@@ -5941,8 +6094,8 @@ function equals$1i(existing, incoming) {
5941
6094
  return true;
5942
6095
  }
5943
6096
 
5944
- const VERSION$1h = "b5141df827145ab82fb835b0f271b454";
5945
- function validate$24(obj, path = 'RecipeValidationDetailRepresentation') {
6097
+ const VERSION$1f = "b5141df827145ab82fb835b0f271b454";
6098
+ function validate$22(obj, path = 'RecipeValidationDetailRepresentation') {
5946
6099
  const v_error = (() => {
5947
6100
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
5948
6101
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -5992,10 +6145,10 @@ function validate$24(obj, path = 'RecipeValidationDetailRepresentation') {
5992
6145
  })();
5993
6146
  return v_error === undefined ? null : v_error;
5994
6147
  }
5995
- const select$25 = function RecipeValidationDetailRepresentationSelect() {
6148
+ const select$23 = function RecipeValidationDetailRepresentationSelect() {
5996
6149
  return {
5997
6150
  kind: 'Fragment',
5998
- version: VERSION$1h,
6151
+ version: VERSION$1f,
5999
6152
  private: [],
6000
6153
  selections: [
6001
6154
  {
@@ -6031,7 +6184,7 @@ const select$25 = function RecipeValidationDetailRepresentationSelect() {
6031
6184
  ]
6032
6185
  };
6033
6186
  };
6034
- function equals$1h(existing, incoming) {
6187
+ function equals$1f(existing, incoming) {
6035
6188
  const existing_validationCode = existing.validationCode;
6036
6189
  const incoming_validationCode = incoming.validationCode;
6037
6190
  // if at least one of these optionals is defined
@@ -6114,8 +6267,8 @@ function equals$1h(existing, incoming) {
6114
6267
  }
6115
6268
 
6116
6269
  const TTL$x = 5000;
6117
- const VERSION$1g = "efebe334c743256e161da3a71a16bd92";
6118
- function validate$23(obj, path = 'RecipeRepresentation') {
6270
+ const VERSION$1e = "efebe334c743256e161da3a71a16bd92";
6271
+ function validate$21(obj, path = 'RecipeRepresentation') {
6119
6272
  const validateBaseWaveAssetRepresentation_validateError = validate$1N(obj, path);
6120
6273
  if (validateBaseWaveAssetRepresentation_validateError !== null) {
6121
6274
  return validateBaseWaveAssetRepresentation_validateError;
@@ -6132,7 +6285,7 @@ function validate$23(obj, path = 'RecipeRepresentation') {
6132
6285
  for (let i = 0; i < obj_conversionDetails.length; i++) {
6133
6286
  const obj_conversionDetails_item = obj_conversionDetails[i];
6134
6287
  const path_conversionDetails_item = path_conversionDetails + '[' + i + ']';
6135
- const referencepath_conversionDetails_itemValidationError = validate$27(obj_conversionDetails_item, path_conversionDetails_item);
6288
+ const referencepath_conversionDetails_itemValidationError = validate$25(obj_conversionDetails_item, path_conversionDetails_item);
6136
6289
  if (referencepath_conversionDetails_itemValidationError !== null) {
6137
6290
  let message = 'Object doesn\'t match RecipeConversionDetailRepresentation (at "' + path_conversionDetails_item + '")\n';
6138
6291
  message += referencepath_conversionDetails_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -6149,7 +6302,7 @@ function validate$23(obj, path = 'RecipeRepresentation') {
6149
6302
  if (obj.dataset !== undefined) {
6150
6303
  const obj_dataset = obj.dataset;
6151
6304
  const path_dataset = path + '.dataset';
6152
- const referencepath_datasetValidationError = validate$2o(obj_dataset, path_dataset);
6305
+ const referencepath_datasetValidationError = validate$2m(obj_dataset, path_dataset);
6153
6306
  if (referencepath_datasetValidationError !== null) {
6154
6307
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_dataset + '")\n';
6155
6308
  message += referencepath_datasetValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -6180,7 +6333,7 @@ function validate$23(obj, path = 'RecipeRepresentation') {
6180
6333
  if (obj.licenseAttributes !== undefined) {
6181
6334
  const obj_licenseAttributes = obj.licenseAttributes;
6182
6335
  const path_licenseAttributes = path + '.licenseAttributes';
6183
- const referencepath_licenseAttributesValidationError = validate$26(obj_licenseAttributes, path_licenseAttributes);
6336
+ const referencepath_licenseAttributesValidationError = validate$24(obj_licenseAttributes, path_licenseAttributes);
6184
6337
  if (referencepath_licenseAttributesValidationError !== null) {
6185
6338
  let message = 'Object doesn\'t match LicenseAttributesRepresentation (at "' + path_licenseAttributes + '")\n';
6186
6339
  message += referencepath_licenseAttributesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -6204,7 +6357,7 @@ function validate$23(obj, path = 'RecipeRepresentation') {
6204
6357
  if (obj.recipeDefinition !== undefined) {
6205
6358
  const obj_recipeDefinition = obj.recipeDefinition;
6206
6359
  const path_recipeDefinition = path + '.recipeDefinition';
6207
- const referencepath_recipeDefinitionValidationError = validate$25(obj_recipeDefinition, path_recipeDefinition);
6360
+ const referencepath_recipeDefinitionValidationError = validate$23(obj_recipeDefinition, path_recipeDefinition);
6208
6361
  if (referencepath_recipeDefinitionValidationError !== null) {
6209
6362
  let message = 'Object doesn\'t match RecipeDefinitionRepresentation (at "' + path_recipeDefinition + '")\n';
6210
6363
  message += referencepath_recipeDefinitionValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -6273,7 +6426,7 @@ function validate$23(obj, path = 'RecipeRepresentation') {
6273
6426
  for (let i = 0; i < obj_validationDetails.length; i++) {
6274
6427
  const obj_validationDetails_item = obj_validationDetails[i];
6275
6428
  const path_validationDetails_item = path_validationDetails + '[' + i + ']';
6276
- const referencepath_validationDetails_itemValidationError = validate$24(obj_validationDetails_item, path_validationDetails_item);
6429
+ const referencepath_validationDetails_itemValidationError = validate$22(obj_validationDetails_item, path_validationDetails_item);
6277
6430
  if (referencepath_validationDetails_itemValidationError !== null) {
6278
6431
  let message = 'Object doesn\'t match RecipeValidationDetailRepresentation (at "' + path_validationDetails_item + '")\n';
6279
6432
  message += referencepath_validationDetails_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -6305,16 +6458,16 @@ function normalize$B(input, existing, path, luvio, store, timestamp) {
6305
6458
  }, luvio, store, timestamp);
6306
6459
  return input;
6307
6460
  }
6308
- const select$24 = function RecipeRepresentationSelect() {
6461
+ const select$22 = function RecipeRepresentationSelect() {
6309
6462
  const { selections: BaseWaveAssetRepresentationSelections } = select$1O();
6310
- const { selections: RecipeConversionDetailRepresentation__selections, opaque: RecipeConversionDetailRepresentation__opaque, } = select$28();
6311
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
6312
- const { selections: LicenseAttributesRepresentation__selections, opaque: LicenseAttributesRepresentation__opaque, } = select$27();
6313
- const { selections: RecipeDefinitionRepresentation__selections, opaque: RecipeDefinitionRepresentation__opaque, } = select$26();
6314
- const { selections: RecipeValidationDetailRepresentation__selections, opaque: RecipeValidationDetailRepresentation__opaque, } = select$25();
6463
+ const { selections: RecipeConversionDetailRepresentation__selections, opaque: RecipeConversionDetailRepresentation__opaque, } = select$26();
6464
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
6465
+ const { selections: LicenseAttributesRepresentation__selections, opaque: LicenseAttributesRepresentation__opaque, } = select$25();
6466
+ const { selections: RecipeDefinitionRepresentation__selections, opaque: RecipeDefinitionRepresentation__opaque, } = select$24();
6467
+ const { selections: RecipeValidationDetailRepresentation__selections, opaque: RecipeValidationDetailRepresentation__opaque, } = select$23();
6315
6468
  return {
6316
6469
  kind: 'Fragment',
6317
- version: VERSION$1g,
6470
+ version: VERSION$1e,
6318
6471
  private: [],
6319
6472
  selections: [
6320
6473
  ...BaseWaveAssetRepresentationSelections,
@@ -6421,7 +6574,7 @@ const select$24 = function RecipeRepresentationSelect() {
6421
6574
  ]
6422
6575
  };
6423
6576
  };
6424
- function equals$1g(existing, incoming) {
6577
+ function equals$1e(existing, incoming) {
6425
6578
  if (equals$_(existing, incoming) === false) {
6426
6579
  return false;
6427
6580
  }
@@ -6597,7 +6750,7 @@ function equals$1g(existing, incoming) {
6597
6750
  const existing_conversionDetails = existing.conversionDetails;
6598
6751
  const incoming_conversionDetails = incoming.conversionDetails;
6599
6752
  const equals_conversionDetails_items = equalsArray(existing_conversionDetails, incoming_conversionDetails, (existing_conversionDetails_item, incoming_conversionDetails_item) => {
6600
- if (!(equals$1k(existing_conversionDetails_item, incoming_conversionDetails_item))) {
6753
+ if (!(equals$1i(existing_conversionDetails_item, incoming_conversionDetails_item))) {
6601
6754
  return false;
6602
6755
  }
6603
6756
  });
@@ -6613,7 +6766,7 @@ function equals$1g(existing, incoming) {
6613
6766
  if (existing_dataset === undefined || incoming_dataset === undefined) {
6614
6767
  return false;
6615
6768
  }
6616
- if (!(equals$1B(existing_dataset, incoming_dataset))) {
6769
+ if (!(equals$1z(existing_dataset, incoming_dataset))) {
6617
6770
  return false;
6618
6771
  }
6619
6772
  }
@@ -6626,7 +6779,7 @@ function equals$1g(existing, incoming) {
6626
6779
  if (existing_licenseAttributes === undefined || incoming_licenseAttributes === undefined) {
6627
6780
  return false;
6628
6781
  }
6629
- if (!(equals$1j(existing_licenseAttributes, incoming_licenseAttributes))) {
6782
+ if (!(equals$1h(existing_licenseAttributes, incoming_licenseAttributes))) {
6630
6783
  return false;
6631
6784
  }
6632
6785
  }
@@ -6639,7 +6792,7 @@ function equals$1g(existing, incoming) {
6639
6792
  if (existing_recipeDefinition === undefined || incoming_recipeDefinition === undefined) {
6640
6793
  return false;
6641
6794
  }
6642
- if (!(equals$1i(existing_recipeDefinition, incoming_recipeDefinition))) {
6795
+ if (!(equals$1g(existing_recipeDefinition, incoming_recipeDefinition))) {
6643
6796
  return false;
6644
6797
  }
6645
6798
  }
@@ -6651,7 +6804,7 @@ function equals$1g(existing, incoming) {
6651
6804
  const existing_validationDetails = existing.validationDetails;
6652
6805
  const incoming_validationDetails = incoming.validationDetails;
6653
6806
  const equals_validationDetails_items = equalsArray(existing_validationDetails, incoming_validationDetails, (existing_validationDetails_item, incoming_validationDetails_item) => {
6654
- if (!(equals$1h(existing_validationDetails_item, incoming_validationDetails_item))) {
6807
+ if (!(equals$1f(existing_validationDetails_item, incoming_validationDetails_item))) {
6655
6808
  return false;
6656
6809
  }
6657
6810
  });
@@ -6662,14 +6815,14 @@ function equals$1g(existing, incoming) {
6662
6815
  }
6663
6816
  const ingest$B = function RecipeRepresentationIngest(input, path, luvio, store, timestamp) {
6664
6817
  if (process.env.NODE_ENV !== 'production') {
6665
- const validateError = validate$23(input);
6818
+ const validateError = validate$21(input);
6666
6819
  if (validateError !== null) {
6667
6820
  throw validateError;
6668
6821
  }
6669
6822
  }
6670
6823
  const key = keyBuilderFromType$i(luvio, input);
6671
6824
  const ttlToUse = TTL$r;
6672
- ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$B, "WAVE", VERSION$1g, RepresentationType$C, equals$1g);
6825
+ ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$B, "WAVE", VERSION$1e, RepresentationType$C, equals$1e);
6673
6826
  return createLink(key);
6674
6827
  };
6675
6828
  function getTypeCacheKeys$B(rootKeySet, luvio, input, fullPathFactory) {
@@ -6682,8 +6835,8 @@ function getTypeCacheKeys$B(rootKeySet, luvio, input, fullPathFactory) {
6682
6835
  });
6683
6836
  }
6684
6837
 
6685
- const VERSION$1f = "7d0c1ed3fdbd65775d6ed0eef9bbd3d1";
6686
- function validate$22(obj, path = 'NodeRowCountRepresentation') {
6838
+ const VERSION$1d = "7d0c1ed3fdbd65775d6ed0eef9bbd3d1";
6839
+ function validate$20(obj, path = 'NodeRowCountRepresentation') {
6687
6840
  const v_error = (() => {
6688
6841
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
6689
6842
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -6697,10 +6850,10 @@ function validate$22(obj, path = 'NodeRowCountRepresentation') {
6697
6850
  })();
6698
6851
  return v_error === undefined ? null : v_error;
6699
6852
  }
6700
- const select$23 = function NodeRowCountRepresentationSelect() {
6853
+ const select$21 = function NodeRowCountRepresentationSelect() {
6701
6854
  return {
6702
6855
  kind: 'Fragment',
6703
- version: VERSION$1f,
6856
+ version: VERSION$1d,
6704
6857
  private: [],
6705
6858
  selections: [
6706
6859
  {
@@ -6716,7 +6869,7 @@ const select$23 = function NodeRowCountRepresentationSelect() {
6716
6869
  ]
6717
6870
  };
6718
6871
  };
6719
- function equals$1f(existing, incoming) {
6872
+ function equals$1d(existing, incoming) {
6720
6873
  const existing_failedCount = existing.failedCount;
6721
6874
  const incoming_failedCount = incoming.failedCount;
6722
6875
  // if at least one of these optionals is defined
@@ -6747,8 +6900,8 @@ function equals$1f(existing, incoming) {
6747
6900
  }
6748
6901
 
6749
6902
  const TTL$w = 5000;
6750
- const VERSION$1e = "3e451cd9f15a242fb88bd07ebd0b42fd";
6751
- function validate$21(obj, path = 'DataflowJobNodeRepresentation') {
6903
+ const VERSION$1c = "3e451cd9f15a242fb88bd07ebd0b42fd";
6904
+ function validate$1$(obj, path = 'DataflowJobNodeRepresentation') {
6752
6905
  const validateBaseWaveAssetRepresentation_validateError = validate$1N(obj, path);
6753
6906
  if (validateBaseWaveAssetRepresentation_validateError !== null) {
6754
6907
  return validateBaseWaveAssetRepresentation_validateError;
@@ -6797,7 +6950,7 @@ function validate$21(obj, path = 'DataflowJobNodeRepresentation') {
6797
6950
  const path_inputRows = path + '.inputRows';
6798
6951
  let obj_inputRows_union0 = null;
6799
6952
  const obj_inputRows_union0_error = (() => {
6800
- const referencepath_inputRowsValidationError = validate$22(obj_inputRows, path_inputRows);
6953
+ const referencepath_inputRowsValidationError = validate$20(obj_inputRows, path_inputRows);
6801
6954
  if (referencepath_inputRowsValidationError !== null) {
6802
6955
  let message = 'Object doesn\'t match NodeRowCountRepresentation (at "' + path_inputRows + '")\n';
6803
6956
  message += referencepath_inputRowsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -6861,7 +7014,7 @@ function validate$21(obj, path = 'DataflowJobNodeRepresentation') {
6861
7014
  const path_outputRows = path + '.outputRows';
6862
7015
  let obj_outputRows_union0 = null;
6863
7016
  const obj_outputRows_union0_error = (() => {
6864
- const referencepath_outputRowsValidationError = validate$22(obj_outputRows, path_outputRows);
7017
+ const referencepath_outputRowsValidationError = validate$20(obj_outputRows, path_outputRows);
6865
7018
  if (referencepath_outputRowsValidationError !== null) {
6866
7019
  let message = 'Object doesn\'t match NodeRowCountRepresentation (at "' + path_outputRows + '")\n';
6867
7020
  message += referencepath_outputRowsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -6912,12 +7065,12 @@ function keyBuilderFromType$h(luvio, object) {
6912
7065
  function normalize$A(input, existing, path, luvio, store, timestamp) {
6913
7066
  return input;
6914
7067
  }
6915
- const select$22 = function DataflowJobNodeRepresentationSelect() {
7068
+ const select$20 = function DataflowJobNodeRepresentationSelect() {
6916
7069
  const { selections: BaseWaveAssetRepresentationSelections } = select$1O();
6917
- const { selections: NodeRowCountRepresentation__selections, opaque: NodeRowCountRepresentation__opaque, } = select$23();
7070
+ const { selections: NodeRowCountRepresentation__selections, opaque: NodeRowCountRepresentation__opaque, } = select$21();
6918
7071
  return {
6919
7072
  kind: 'Fragment',
6920
- version: VERSION$1e,
7073
+ version: VERSION$1c,
6921
7074
  private: [],
6922
7075
  selections: [
6923
7076
  ...BaseWaveAssetRepresentationSelections,
@@ -6966,7 +7119,7 @@ const select$22 = function DataflowJobNodeRepresentationSelect() {
6966
7119
  ]
6967
7120
  };
6968
7121
  };
6969
- function equals$1e(existing, incoming) {
7122
+ function equals$1c(existing, incoming) {
6970
7123
  if (equals$_(existing, incoming) === false) {
6971
7124
  return false;
6972
7125
  }
@@ -7031,7 +7184,7 @@ function equals$1e(existing, incoming) {
7031
7184
  if (!(existing_inputRows === incoming_inputRows
7032
7185
  || (existing_inputRows != null &&
7033
7186
  incoming_inputRows != null &&
7034
- equals$1f(existing_inputRows, incoming_inputRows)))) {
7187
+ equals$1d(existing_inputRows, incoming_inputRows)))) {
7035
7188
  return false;
7036
7189
  }
7037
7190
  }
@@ -7060,7 +7213,7 @@ function equals$1e(existing, incoming) {
7060
7213
  if (!(existing_outputRows === incoming_outputRows
7061
7214
  || (existing_outputRows != null &&
7062
7215
  incoming_outputRows != null &&
7063
- equals$1f(existing_outputRows, incoming_outputRows)))) {
7216
+ equals$1d(existing_outputRows, incoming_outputRows)))) {
7064
7217
  return false;
7065
7218
  }
7066
7219
  }
@@ -7068,14 +7221,14 @@ function equals$1e(existing, incoming) {
7068
7221
  }
7069
7222
  const ingest$A = function DataflowJobNodeRepresentationIngest(input, path, luvio, store, timestamp) {
7070
7223
  if (process.env.NODE_ENV !== 'production') {
7071
- const validateError = validate$21(input);
7224
+ const validateError = validate$1$(input);
7072
7225
  if (validateError !== null) {
7073
7226
  throw validateError;
7074
7227
  }
7075
7228
  }
7076
7229
  const key = keyBuilderFromType$h(luvio, input);
7077
7230
  const ttlToUse = TTL$r;
7078
- ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$A, "WAVE", VERSION$1e, RepresentationType$B, equals$1e);
7231
+ ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$A, "WAVE", VERSION$1c, RepresentationType$B, equals$1c);
7079
7232
  return createLink(key);
7080
7233
  };
7081
7234
  function getTypeCacheKeys$A(rootKeySet, luvio, input, fullPathFactory) {
@@ -7088,8 +7241,8 @@ function getTypeCacheKeys$A(rootKeySet, luvio, input, fullPathFactory) {
7088
7241
  });
7089
7242
  }
7090
7243
 
7091
- const VERSION$1d = "3f089cde349f304c6687cefd51b9b217";
7092
- function validate$20(obj, path = 'LiveConnectionRepresentation') {
7244
+ const VERSION$1b = "3f089cde349f304c6687cefd51b9b217";
7245
+ function validate$1_(obj, path = 'LiveConnectionRepresentation') {
7093
7246
  const v_error = (() => {
7094
7247
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
7095
7248
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -7117,10 +7270,10 @@ function validate$20(obj, path = 'LiveConnectionRepresentation') {
7117
7270
  })();
7118
7271
  return v_error === undefined ? null : v_error;
7119
7272
  }
7120
- const select$21 = function LiveConnectionRepresentationSelect() {
7273
+ const select$1$ = function LiveConnectionRepresentationSelect() {
7121
7274
  return {
7122
7275
  kind: 'Fragment',
7123
- version: VERSION$1d,
7276
+ version: VERSION$1b,
7124
7277
  private: [],
7125
7278
  selections: [
7126
7279
  {
@@ -7142,7 +7295,7 @@ const select$21 = function LiveConnectionRepresentationSelect() {
7142
7295
  ]
7143
7296
  };
7144
7297
  };
7145
- function equals$1d(existing, incoming) {
7298
+ function equals$1b(existing, incoming) {
7146
7299
  const existing_connectionLabel = existing.connectionLabel;
7147
7300
  const incoming_connectionLabel = incoming.connectionLabel;
7148
7301
  if (!(existing_connectionLabel === incoming_connectionLabel)) {
@@ -7167,8 +7320,8 @@ function equals$1d(existing, incoming) {
7167
7320
  }
7168
7321
 
7169
7322
  const TTL$v = 5000;
7170
- const VERSION$1c = "90a9e986f099b0d693ba5e511c676547";
7171
- function validate$1$(obj, path = 'DatasetRepresentation') {
7323
+ const VERSION$1a = "90a9e986f099b0d693ba5e511c676547";
7324
+ function validate$1Z(obj, path = 'DatasetRepresentation') {
7172
7325
  const validateBaseWaveAssetRepresentation_validateError = validate$1N(obj, path);
7173
7326
  if (validateBaseWaveAssetRepresentation_validateError !== null) {
7174
7327
  return validateBaseWaveAssetRepresentation_validateError;
@@ -7187,7 +7340,7 @@ function validate$1$(obj, path = 'DatasetRepresentation') {
7187
7340
  if (obj.currentVersionCreatedBy !== undefined) {
7188
7341
  const obj_currentVersionCreatedBy = obj.currentVersionCreatedBy;
7189
7342
  const path_currentVersionCreatedBy = path + '.currentVersionCreatedBy';
7190
- const referencepath_currentVersionCreatedByValidationError = validate$2r(obj_currentVersionCreatedBy, path_currentVersionCreatedBy);
7343
+ const referencepath_currentVersionCreatedByValidationError = validate$2D(obj_currentVersionCreatedBy, path_currentVersionCreatedBy);
7191
7344
  if (referencepath_currentVersionCreatedByValidationError !== null) {
7192
7345
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_currentVersionCreatedBy + '")\n';
7193
7346
  message += referencepath_currentVersionCreatedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -7211,7 +7364,7 @@ function validate$1$(obj, path = 'DatasetRepresentation') {
7211
7364
  if (obj.currentVersionLastModifiedBy !== undefined) {
7212
7365
  const obj_currentVersionLastModifiedBy = obj.currentVersionLastModifiedBy;
7213
7366
  const path_currentVersionLastModifiedBy = path + '.currentVersionLastModifiedBy';
7214
- const referencepath_currentVersionLastModifiedByValidationError = validate$2r(obj_currentVersionLastModifiedBy, path_currentVersionLastModifiedBy);
7367
+ const referencepath_currentVersionLastModifiedByValidationError = validate$2D(obj_currentVersionLastModifiedBy, path_currentVersionLastModifiedBy);
7215
7368
  if (referencepath_currentVersionLastModifiedByValidationError !== null) {
7216
7369
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_currentVersionLastModifiedBy + '")\n';
7217
7370
  message += referencepath_currentVersionLastModifiedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -7256,7 +7409,7 @@ function validate$1$(obj, path = 'DatasetRepresentation') {
7256
7409
  }
7257
7410
  const obj_folder = obj.folder;
7258
7411
  const path_folder = path + '.folder';
7259
- const referencepath_folderValidationError = validate$2o(obj_folder, path_folder);
7412
+ const referencepath_folderValidationError = validate$2m(obj_folder, path_folder);
7260
7413
  if (referencepath_folderValidationError !== null) {
7261
7414
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_folder + '")\n';
7262
7415
  message += referencepath_folderValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -7279,7 +7432,7 @@ function validate$1$(obj, path = 'DatasetRepresentation') {
7279
7432
  if (obj.licenseAttributes !== undefined) {
7280
7433
  const obj_licenseAttributes = obj.licenseAttributes;
7281
7434
  const path_licenseAttributes = path + '.licenseAttributes';
7282
- const referencepath_licenseAttributesValidationError = validate$26(obj_licenseAttributes, path_licenseAttributes);
7435
+ const referencepath_licenseAttributesValidationError = validate$24(obj_licenseAttributes, path_licenseAttributes);
7283
7436
  if (referencepath_licenseAttributesValidationError !== null) {
7284
7437
  let message = 'Object doesn\'t match LicenseAttributesRepresentation (at "' + path_licenseAttributes + '")\n';
7285
7438
  message += referencepath_licenseAttributesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -7289,7 +7442,7 @@ function validate$1$(obj, path = 'DatasetRepresentation') {
7289
7442
  if (obj.liveConnection !== undefined) {
7290
7443
  const obj_liveConnection = obj.liveConnection;
7291
7444
  const path_liveConnection = path + '.liveConnection';
7292
- const referencepath_liveConnectionValidationError = validate$20(obj_liveConnection, path_liveConnection);
7445
+ const referencepath_liveConnectionValidationError = validate$1_(obj_liveConnection, path_liveConnection);
7293
7446
  if (referencepath_liveConnectionValidationError !== null) {
7294
7447
  let message = 'Object doesn\'t match LiveConnectionRepresentation (at "' + path_liveConnection + '")\n';
7295
7448
  message += referencepath_liveConnectionValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -7299,7 +7452,7 @@ function validate$1$(obj, path = 'DatasetRepresentation') {
7299
7452
  if (obj.userXmd !== undefined) {
7300
7453
  const obj_userXmd = obj.userXmd;
7301
7454
  const path_userXmd = path + '.userXmd';
7302
- const referencepath_userXmdValidationError = validate$29(obj_userXmd, path_userXmd);
7455
+ const referencepath_userXmdValidationError = validate$27(obj_userXmd, path_userXmd);
7303
7456
  if (referencepath_userXmdValidationError !== null) {
7304
7457
  let message = 'Object doesn\'t match XmdInnerRepresentation (at "' + path_userXmd + '")\n';
7305
7458
  message += referencepath_userXmdValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -7329,16 +7482,16 @@ function keyBuilderFromType$g(luvio, object) {
7329
7482
  function normalize$z(input, existing, path, luvio, store, timestamp) {
7330
7483
  return input;
7331
7484
  }
7332
- const select$20 = function DatasetRepresentationSelect() {
7485
+ const select$1_ = function DatasetRepresentationSelect() {
7333
7486
  const { selections: BaseWaveAssetRepresentationSelections } = select$1O();
7334
- const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2s();
7335
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
7336
- const { selections: LicenseAttributesRepresentation__selections, opaque: LicenseAttributesRepresentation__opaque, } = select$27();
7337
- const { selections: LiveConnectionRepresentation__selections, opaque: LiveConnectionRepresentation__opaque, } = select$21();
7338
- const { selections: XmdInnerRepresentation__selections, opaque: XmdInnerRepresentation__opaque, } = select$2a();
7487
+ const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2F();
7488
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
7489
+ const { selections: LicenseAttributesRepresentation__selections, opaque: LicenseAttributesRepresentation__opaque, } = select$25();
7490
+ const { selections: LiveConnectionRepresentation__selections, opaque: LiveConnectionRepresentation__opaque, } = select$1$();
7491
+ const { selections: XmdInnerRepresentation__selections, opaque: XmdInnerRepresentation__opaque, } = select$28();
7339
7492
  return {
7340
7493
  kind: 'Fragment',
7341
- version: VERSION$1c,
7494
+ version: VERSION$1a,
7342
7495
  private: [],
7343
7496
  selections: [
7344
7497
  ...BaseWaveAssetRepresentationSelections,
@@ -7442,7 +7595,7 @@ const select$20 = function DatasetRepresentationSelect() {
7442
7595
  ]
7443
7596
  };
7444
7597
  };
7445
- function equals$1c(existing, incoming) {
7598
+ function equals$1a(existing, incoming) {
7446
7599
  if (equals$_(existing, incoming) === false) {
7447
7600
  return false;
7448
7601
  }
@@ -7600,7 +7753,7 @@ function equals$1c(existing, incoming) {
7600
7753
  if (existing_currentVersionCreatedBy === undefined || incoming_currentVersionCreatedBy === undefined) {
7601
7754
  return false;
7602
7755
  }
7603
- if (!(equals$1E(existing_currentVersionCreatedBy, incoming_currentVersionCreatedBy))) {
7756
+ if (!(equals$1P(existing_currentVersionCreatedBy, incoming_currentVersionCreatedBy))) {
7604
7757
  return false;
7605
7758
  }
7606
7759
  }
@@ -7613,13 +7766,13 @@ function equals$1c(existing, incoming) {
7613
7766
  if (existing_currentVersionLastModifiedBy === undefined || incoming_currentVersionLastModifiedBy === undefined) {
7614
7767
  return false;
7615
7768
  }
7616
- if (!(equals$1E(existing_currentVersionLastModifiedBy, incoming_currentVersionLastModifiedBy))) {
7769
+ if (!(equals$1P(existing_currentVersionLastModifiedBy, incoming_currentVersionLastModifiedBy))) {
7617
7770
  return false;
7618
7771
  }
7619
7772
  }
7620
7773
  const existing_folder = existing.folder;
7621
7774
  const incoming_folder = incoming.folder;
7622
- if (!(equals$1B(existing_folder, incoming_folder))) {
7775
+ if (!(equals$1z(existing_folder, incoming_folder))) {
7623
7776
  return false;
7624
7777
  }
7625
7778
  const existing_licenseAttributes = existing.licenseAttributes;
@@ -7631,7 +7784,7 @@ function equals$1c(existing, incoming) {
7631
7784
  if (existing_licenseAttributes === undefined || incoming_licenseAttributes === undefined) {
7632
7785
  return false;
7633
7786
  }
7634
- if (!(equals$1j(existing_licenseAttributes, incoming_licenseAttributes))) {
7787
+ if (!(equals$1h(existing_licenseAttributes, incoming_licenseAttributes))) {
7635
7788
  return false;
7636
7789
  }
7637
7790
  }
@@ -7644,7 +7797,7 @@ function equals$1c(existing, incoming) {
7644
7797
  if (existing_liveConnection === undefined || incoming_liveConnection === undefined) {
7645
7798
  return false;
7646
7799
  }
7647
- if (!(equals$1d(existing_liveConnection, incoming_liveConnection))) {
7800
+ if (!(equals$1b(existing_liveConnection, incoming_liveConnection))) {
7648
7801
  return false;
7649
7802
  }
7650
7803
  }
@@ -7657,7 +7810,7 @@ function equals$1c(existing, incoming) {
7657
7810
  if (existing_userXmd === undefined || incoming_userXmd === undefined) {
7658
7811
  return false;
7659
7812
  }
7660
- if (!(equals$1m(existing_userXmd, incoming_userXmd))) {
7813
+ if (!(equals$1k(existing_userXmd, incoming_userXmd))) {
7661
7814
  return false;
7662
7815
  }
7663
7816
  }
@@ -7665,14 +7818,14 @@ function equals$1c(existing, incoming) {
7665
7818
  }
7666
7819
  const ingest$z = function DatasetRepresentationIngest(input, path, luvio, store, timestamp) {
7667
7820
  if (process.env.NODE_ENV !== 'production') {
7668
- const validateError = validate$1$(input);
7821
+ const validateError = validate$1Z(input);
7669
7822
  if (validateError !== null) {
7670
7823
  throw validateError;
7671
7824
  }
7672
7825
  }
7673
7826
  const key = keyBuilderFromType$g(luvio, input);
7674
7827
  const ttlToUse = TTL$r;
7675
- ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$z, "WAVE", VERSION$1c, RepresentationType$A, equals$1c);
7828
+ ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$z, "WAVE", VERSION$1a, RepresentationType$A, equals$1a);
7676
7829
  return createLink(key);
7677
7830
  };
7678
7831
  function getTypeCacheKeys$z(rootKeySet, luvio, input, fullPathFactory) {
@@ -7685,8 +7838,8 @@ function getTypeCacheKeys$z(rootKeySet, luvio, input, fullPathFactory) {
7685
7838
  });
7686
7839
  }
7687
7840
 
7688
- const VERSION$1b = "cdb20f3658dba3730e7f506ebadfab9d";
7689
- function validate$1_(obj, path = 'AbstractDataflowNodeRepresentation') {
7841
+ const VERSION$19 = "cdb20f3658dba3730e7f506ebadfab9d";
7842
+ function validate$1Y(obj, path = 'AbstractDataflowNodeRepresentation') {
7690
7843
  const v_error = (() => {
7691
7844
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
7692
7845
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -7711,10 +7864,10 @@ function validate$1_(obj, path = 'AbstractDataflowNodeRepresentation') {
7711
7864
  })();
7712
7865
  return v_error === undefined ? null : v_error;
7713
7866
  }
7714
- const select$1$ = function AbstractDataflowNodeRepresentationSelect() {
7867
+ const select$1Z = function AbstractDataflowNodeRepresentationSelect() {
7715
7868
  return {
7716
7869
  kind: 'Fragment',
7717
- version: VERSION$1b,
7870
+ version: VERSION$19,
7718
7871
  private: [],
7719
7872
  selections: [
7720
7873
  {
@@ -7729,7 +7882,7 @@ const select$1$ = function AbstractDataflowNodeRepresentationSelect() {
7729
7882
  ]
7730
7883
  };
7731
7884
  };
7732
- function equals$1b(existing, incoming) {
7885
+ function equals$19(existing, incoming) {
7733
7886
  const existing_action = existing.action;
7734
7887
  const incoming_action = incoming.action;
7735
7888
  if (!(existing_action === incoming_action)) {
@@ -7748,8 +7901,8 @@ function equals$1b(existing, incoming) {
7748
7901
  return true;
7749
7902
  }
7750
7903
 
7751
- const VERSION$1a = "6bfb22ebda82727975542dfcc68430da";
7752
- function validate$1Z(obj, path = 'DataflowDefinitionRepresentation') {
7904
+ const VERSION$18 = "6bfb22ebda82727975542dfcc68430da";
7905
+ function validate$1X(obj, path = 'DataflowDefinitionRepresentation') {
7753
7906
  const v_error = (() => {
7754
7907
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
7755
7908
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -7764,7 +7917,7 @@ function validate$1Z(obj, path = 'DataflowDefinitionRepresentation') {
7764
7917
  const key = obj_nodes_keys[i];
7765
7918
  const obj_nodes_prop = obj_nodes[key];
7766
7919
  const path_nodes_prop = path_nodes + '["' + key + '"]';
7767
- const referencepath_nodes_propValidationError = validate$1_(obj_nodes_prop, path_nodes_prop);
7920
+ const referencepath_nodes_propValidationError = validate$1Y(obj_nodes_prop, path_nodes_prop);
7768
7921
  if (referencepath_nodes_propValidationError !== null) {
7769
7922
  let message = 'Object doesn\'t match AbstractDataflowNodeRepresentation (at "' + path_nodes_prop + '")\n';
7770
7923
  message += referencepath_nodes_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -7774,11 +7927,11 @@ function validate$1Z(obj, path = 'DataflowDefinitionRepresentation') {
7774
7927
  })();
7775
7928
  return v_error === undefined ? null : v_error;
7776
7929
  }
7777
- const select$1_ = function DataflowDefinitionRepresentationSelect() {
7778
- const { selections: AbstractDataflowNodeRepresentation__selections, opaque: AbstractDataflowNodeRepresentation__opaque, } = select$1$();
7930
+ const select$1Y = function DataflowDefinitionRepresentationSelect() {
7931
+ const { selections: AbstractDataflowNodeRepresentation__selections, opaque: AbstractDataflowNodeRepresentation__opaque, } = select$1Z();
7779
7932
  return {
7780
7933
  kind: 'Fragment',
7781
- version: VERSION$1a,
7934
+ version: VERSION$18,
7782
7935
  private: [],
7783
7936
  selections: [
7784
7937
  {
@@ -7789,11 +7942,11 @@ const select$1_ = function DataflowDefinitionRepresentationSelect() {
7789
7942
  ]
7790
7943
  };
7791
7944
  };
7792
- function equals$1a(existing, incoming) {
7945
+ function equals$18(existing, incoming) {
7793
7946
  const existing_nodes = existing.nodes;
7794
7947
  const incoming_nodes = incoming.nodes;
7795
7948
  const equals_nodes_props = equalsObject(existing_nodes, incoming_nodes, (existing_nodes_prop, incoming_nodes_prop) => {
7796
- if (!(equals$1b(existing_nodes_prop, incoming_nodes_prop))) {
7949
+ if (!(equals$19(existing_nodes_prop, incoming_nodes_prop))) {
7797
7950
  return false;
7798
7951
  }
7799
7952
  });
@@ -7803,15 +7956,15 @@ function equals$1a(existing, incoming) {
7803
7956
  return true;
7804
7957
  }
7805
7958
 
7806
- const VERSION$19 = "a60a999b2e756bf659440de024428d76";
7807
- function validate$1Y(obj, path = 'DataflowVersionRepresentation') {
7959
+ const VERSION$17 = "a60a999b2e756bf659440de024428d76";
7960
+ function validate$1W(obj, path = 'DataflowVersionRepresentation') {
7808
7961
  const v_error = (() => {
7809
7962
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
7810
7963
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
7811
7964
  }
7812
7965
  const obj_createdBy = obj.createdBy;
7813
7966
  const path_createdBy = path + '.createdBy';
7814
- const referencepath_createdByValidationError = validate$2r(obj_createdBy, path_createdBy);
7967
+ const referencepath_createdByValidationError = validate$2D(obj_createdBy, path_createdBy);
7815
7968
  if (referencepath_createdByValidationError !== null) {
7816
7969
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_createdBy + '")\n';
7817
7970
  message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -7825,7 +7978,7 @@ function validate$1Y(obj, path = 'DataflowVersionRepresentation') {
7825
7978
  if (obj.definition !== undefined) {
7826
7979
  const obj_definition = obj.definition;
7827
7980
  const path_definition = path + '.definition';
7828
- const referencepath_definitionValidationError = validate$1Z(obj_definition, path_definition);
7981
+ const referencepath_definitionValidationError = validate$1X(obj_definition, path_definition);
7829
7982
  if (referencepath_definitionValidationError !== null) {
7830
7983
  let message = 'Object doesn\'t match DataflowDefinitionRepresentation (at "' + path_definition + '")\n';
7831
7984
  message += referencepath_definitionValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -7840,12 +7993,12 @@ function validate$1Y(obj, path = 'DataflowVersionRepresentation') {
7840
7993
  })();
7841
7994
  return v_error === undefined ? null : v_error;
7842
7995
  }
7843
- const select$1Z = function DataflowVersionRepresentationSelect() {
7844
- const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2s();
7845
- const { selections: DataflowDefinitionRepresentation__selections, opaque: DataflowDefinitionRepresentation__opaque, } = select$1_();
7996
+ const select$1X = function DataflowVersionRepresentationSelect() {
7997
+ const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2F();
7998
+ const { selections: DataflowDefinitionRepresentation__selections, opaque: DataflowDefinitionRepresentation__opaque, } = select$1Y();
7846
7999
  return {
7847
8000
  kind: 'Fragment',
7848
- version: VERSION$19,
8001
+ version: VERSION$17,
7849
8002
  private: [],
7850
8003
  selections: [
7851
8004
  {
@@ -7870,7 +8023,7 @@ const select$1Z = function DataflowVersionRepresentationSelect() {
7870
8023
  ]
7871
8024
  };
7872
8025
  };
7873
- function equals$19(existing, incoming) {
8026
+ function equals$17(existing, incoming) {
7874
8027
  const existing_createdDate = existing.createdDate;
7875
8028
  const incoming_createdDate = incoming.createdDate;
7876
8029
  if (!(existing_createdDate === incoming_createdDate)) {
@@ -7883,7 +8036,7 @@ function equals$19(existing, incoming) {
7883
8036
  }
7884
8037
  const existing_createdBy = existing.createdBy;
7885
8038
  const incoming_createdBy = incoming.createdBy;
7886
- if (!(equals$1E(existing_createdBy, incoming_createdBy))) {
8039
+ if (!(equals$1P(existing_createdBy, incoming_createdBy))) {
7887
8040
  return false;
7888
8041
  }
7889
8042
  const existing_definition = existing.definition;
@@ -7895,15 +8048,15 @@ function equals$19(existing, incoming) {
7895
8048
  if (existing_definition === undefined || incoming_definition === undefined) {
7896
8049
  return false;
7897
8050
  }
7898
- if (!(equals$1a(existing_definition, incoming_definition))) {
8051
+ if (!(equals$18(existing_definition, incoming_definition))) {
7899
8052
  return false;
7900
8053
  }
7901
8054
  }
7902
8055
  return true;
7903
8056
  }
7904
8057
 
7905
- const VERSION$18 = "55f3cd06e570135ed964c92271bbede9";
7906
- function validate$1X(obj, path = 'DataflowRepresentation') {
8058
+ const VERSION$16 = "55f3cd06e570135ed964c92271bbede9";
8059
+ function validate$1V(obj, path = 'DataflowRepresentation') {
7907
8060
  const validateBaseWaveAssetRepresentation_validateError = validate$1N(obj, path);
7908
8061
  if (validateBaseWaveAssetRepresentation_validateError !== null) {
7909
8062
  return validateBaseWaveAssetRepresentation_validateError;
@@ -7917,7 +8070,7 @@ function validate$1X(obj, path = 'DataflowRepresentation') {
7917
8070
  const path_current = path + '.current';
7918
8071
  let obj_current_union0 = null;
7919
8072
  const obj_current_union0_error = (() => {
7920
- const referencepath_currentValidationError = validate$1Y(obj_current, path_current);
8073
+ const referencepath_currentValidationError = validate$1W(obj_current, path_current);
7921
8074
  if (referencepath_currentValidationError !== null) {
7922
8075
  let message = 'Object doesn\'t match DataflowVersionRepresentation (at "' + path_current + '")\n';
7923
8076
  message += referencepath_currentValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -8081,12 +8234,12 @@ function keyBuilderFromType$f(luvio, object) {
8081
8234
  function normalize$y(input, existing, path, luvio, store, timestamp) {
8082
8235
  return input;
8083
8236
  }
8084
- const select$1Y = function DataflowRepresentationSelect() {
8237
+ const select$1W = function DataflowRepresentationSelect() {
8085
8238
  const { selections: BaseWaveAssetRepresentationSelections } = select$1O();
8086
- const { selections: DataflowVersionRepresentation__selections, opaque: DataflowVersionRepresentation__opaque, } = select$1Z();
8239
+ const { selections: DataflowVersionRepresentation__selections, opaque: DataflowVersionRepresentation__opaque, } = select$1X();
8087
8240
  return {
8088
8241
  kind: 'Fragment',
8089
- version: VERSION$18,
8242
+ version: VERSION$16,
8090
8243
  private: [],
8091
8244
  selections: [
8092
8245
  ...BaseWaveAssetRepresentationSelections,
@@ -8126,7 +8279,7 @@ const select$1Y = function DataflowRepresentationSelect() {
8126
8279
  ]
8127
8280
  };
8128
8281
  };
8129
- function equals$18(existing, incoming) {
8282
+ function equals$16(existing, incoming) {
8130
8283
  if (equals$_(existing, incoming) === false) {
8131
8284
  return false;
8132
8285
  }
@@ -8142,7 +8295,7 @@ function equals$18(existing, incoming) {
8142
8295
  if (!(existing_current === incoming_current
8143
8296
  || (existing_current != null &&
8144
8297
  incoming_current != null &&
8145
- equals$19(existing_current, incoming_current)))) {
8298
+ equals$17(existing_current, incoming_current)))) {
8146
8299
  return false;
8147
8300
  }
8148
8301
  }
@@ -8220,14 +8373,14 @@ function equals$18(existing, incoming) {
8220
8373
  }
8221
8374
  const ingest$y = function DataflowRepresentationIngest(input, path, luvio, store, timestamp) {
8222
8375
  if (process.env.NODE_ENV !== 'production') {
8223
- const validateError = validate$1X(input);
8376
+ const validateError = validate$1V(input);
8224
8377
  if (validateError !== null) {
8225
8378
  throw validateError;
8226
8379
  }
8227
8380
  }
8228
8381
  const key = keyBuilderFromType$f(luvio, input);
8229
8382
  const ttlToUse = TTL$r;
8230
- ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$y, "WAVE", VERSION$18, RepresentationType$z, equals$18);
8383
+ ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$y, "WAVE", VERSION$16, RepresentationType$z, equals$16);
8231
8384
  return createLink(key);
8232
8385
  };
8233
8386
  function getTypeCacheKeys$y(rootKeySet, luvio, input, fullPathFactory) {
@@ -8240,129 +8393,6 @@ function getTypeCacheKeys$y(rootKeySet, luvio, input, fullPathFactory) {
8240
8393
  });
8241
8394
  }
8242
8395
 
8243
- const VERSION$17 = "70b4ac2217d94fe3c8fee7757b5ea296";
8244
- function validate$1W(obj, path = 'JobEventRepresentation') {
8245
- const v_error = (() => {
8246
- if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
8247
- return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
8248
- }
8249
- const obj_createdBy = obj.createdBy;
8250
- const path_createdBy = path + '.createdBy';
8251
- const referencepath_createdByValidationError = validate$2r(obj_createdBy, path_createdBy);
8252
- if (referencepath_createdByValidationError !== null) {
8253
- let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_createdBy + '")\n';
8254
- message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
8255
- return new TypeError(message);
8256
- }
8257
- const obj_createdDate = obj.createdDate;
8258
- const path_createdDate = path + '.createdDate';
8259
- if (typeof obj_createdDate !== 'string') {
8260
- return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
8261
- }
8262
- const obj_eventType = obj.eventType;
8263
- const path_eventType = path + '.eventType';
8264
- if (typeof obj_eventType !== 'string') {
8265
- return new TypeError('Expected "string" but received "' + typeof obj_eventType + '" (at "' + path_eventType + '")');
8266
- }
8267
- })();
8268
- return v_error === undefined ? null : v_error;
8269
- }
8270
- const select$1X = function JobEventRepresentationSelect() {
8271
- const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2s();
8272
- return {
8273
- kind: 'Fragment',
8274
- version: VERSION$17,
8275
- private: [],
8276
- selections: [
8277
- {
8278
- name: 'createdBy',
8279
- kind: 'Object',
8280
- selections: WaveUserRepresentation__selections
8281
- },
8282
- {
8283
- name: 'createdDate',
8284
- kind: 'Scalar'
8285
- },
8286
- {
8287
- name: 'eventType',
8288
- kind: 'Scalar'
8289
- }
8290
- ]
8291
- };
8292
- };
8293
- function equals$17(existing, incoming) {
8294
- const existing_createdDate = existing.createdDate;
8295
- const incoming_createdDate = incoming.createdDate;
8296
- if (!(existing_createdDate === incoming_createdDate)) {
8297
- return false;
8298
- }
8299
- const existing_eventType = existing.eventType;
8300
- const incoming_eventType = incoming.eventType;
8301
- if (!(existing_eventType === incoming_eventType)) {
8302
- return false;
8303
- }
8304
- const existing_createdBy = existing.createdBy;
8305
- const incoming_createdBy = incoming.createdBy;
8306
- if (!(equals$1E(existing_createdBy, incoming_createdBy))) {
8307
- return false;
8308
- }
8309
- return true;
8310
- }
8311
-
8312
- const VERSION$16 = "e1acecd6dddc9a86bf16f3b291e8bd42";
8313
- function validate$1V(obj, path = 'JobEventCollectionRepresentation') {
8314
- const v_error = (() => {
8315
- if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
8316
- return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
8317
- }
8318
- const obj_events = obj.events;
8319
- const path_events = path + '.events';
8320
- if (!ArrayIsArray(obj_events)) {
8321
- return new TypeError('Expected "array" but received "' + typeof obj_events + '" (at "' + path_events + '")');
8322
- }
8323
- for (let i = 0; i < obj_events.length; i++) {
8324
- const obj_events_item = obj_events[i];
8325
- const path_events_item = path_events + '[' + i + ']';
8326
- const referencepath_events_itemValidationError = validate$1W(obj_events_item, path_events_item);
8327
- if (referencepath_events_itemValidationError !== null) {
8328
- let message = 'Object doesn\'t match JobEventRepresentation (at "' + path_events_item + '")\n';
8329
- message += referencepath_events_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
8330
- return new TypeError(message);
8331
- }
8332
- }
8333
- })();
8334
- return v_error === undefined ? null : v_error;
8335
- }
8336
- const select$1W = function JobEventCollectionRepresentationSelect() {
8337
- const { selections: JobEventRepresentation__selections, opaque: JobEventRepresentation__opaque, } = select$1X();
8338
- return {
8339
- kind: 'Fragment',
8340
- version: VERSION$16,
8341
- private: [],
8342
- selections: [
8343
- {
8344
- name: 'events',
8345
- kind: 'Object',
8346
- plural: true,
8347
- selections: JobEventRepresentation__selections
8348
- }
8349
- ]
8350
- };
8351
- };
8352
- function equals$16(existing, incoming) {
8353
- const existing_events = existing.events;
8354
- const incoming_events = incoming.events;
8355
- const equals_events_items = equalsArray(existing_events, incoming_events, (existing_events_item, incoming_events_item) => {
8356
- if (!(equals$17(existing_events_item, incoming_events_item))) {
8357
- return false;
8358
- }
8359
- });
8360
- if (equals_events_items === false) {
8361
- return false;
8362
- }
8363
- return true;
8364
- }
8365
-
8366
8396
  const VERSION$15 = "20386e8113476d5626b73a8f6aa77aaa";
8367
8397
  function validate$1U(obj, path = 'DataflowNodeRepresentation') {
8368
8398
  const v_error = (() => {
@@ -8803,7 +8833,7 @@ const select$1T = function DataflowCollectionRepresentationSelect() {
8803
8833
  name: 'dataflows',
8804
8834
  kind: 'Link',
8805
8835
  plural: true,
8806
- fragment: select$1Y()
8836
+ fragment: select$1W()
8807
8837
  }
8808
8838
  ]
8809
8839
  };
@@ -8868,7 +8898,7 @@ function validate$1R(obj, path = 'DataflowJobRepresentation') {
8868
8898
  if (obj.events !== undefined) {
8869
8899
  const obj_events = obj.events;
8870
8900
  const path_events = path + '.events';
8871
- const referencepath_eventsValidationError = validate$1V(obj_events, path_events);
8901
+ const referencepath_eventsValidationError = validate$2B(obj_events, path_events);
8872
8902
  if (referencepath_eventsValidationError !== null) {
8873
8903
  let message = 'Object doesn\'t match JobEventCollectionRepresentation (at "' + path_events + '")\n';
8874
8904
  message += referencepath_eventsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -8923,7 +8953,7 @@ function validate$1R(obj, path = 'DataflowJobRepresentation') {
8923
8953
  const path_licenseAttributes = path + '.licenseAttributes';
8924
8954
  let obj_licenseAttributes_union0 = null;
8925
8955
  const obj_licenseAttributes_union0_error = (() => {
8926
- const referencepath_licenseAttributesValidationError = validate$26(obj_licenseAttributes, path_licenseAttributes);
8956
+ const referencepath_licenseAttributesValidationError = validate$24(obj_licenseAttributes, path_licenseAttributes);
8927
8957
  if (referencepath_licenseAttributesValidationError !== null) {
8928
8958
  let message = 'Object doesn\'t match LicenseAttributesRepresentation (at "' + path_licenseAttributes + '")\n';
8929
8959
  message += referencepath_licenseAttributesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -8998,7 +9028,7 @@ function validate$1R(obj, path = 'DataflowJobRepresentation') {
8998
9028
  const path_source = path + '.source';
8999
9029
  let obj_source_union0 = null;
9000
9030
  const obj_source_union0_error = (() => {
9001
- const referencepath_sourceValidationError = validate$2o(obj_source, path_source);
9031
+ const referencepath_sourceValidationError = validate$2m(obj_source, path_source);
9002
9032
  if (referencepath_sourceValidationError !== null) {
9003
9033
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_source + '")\n';
9004
9034
  message += referencepath_sourceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -9106,10 +9136,10 @@ function normalize$w(input, existing, path, luvio, store, timestamp) {
9106
9136
  }
9107
9137
  const select$1S = function DataflowJobRepresentationSelect() {
9108
9138
  const { selections: BaseWaveAssetRepresentationSelections } = select$1O();
9109
- const { selections: JobEventCollectionRepresentation__selections, opaque: JobEventCollectionRepresentation__opaque, } = select$1W();
9139
+ const { selections: JobEventCollectionRepresentation__selections, opaque: JobEventCollectionRepresentation__opaque, } = select$2D();
9110
9140
  const { selections: DataflowNodeCollectionRepresentation__selections, opaque: DataflowNodeCollectionRepresentation__opaque, } = select$1U();
9111
- const { selections: LicenseAttributesRepresentation__selections, opaque: LicenseAttributesRepresentation__opaque, } = select$27();
9112
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
9141
+ const { selections: LicenseAttributesRepresentation__selections, opaque: LicenseAttributesRepresentation__opaque, } = select$25();
9142
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
9113
9143
  return {
9114
9144
  kind: 'Fragment',
9115
9145
  version: VERSION$12,
@@ -9262,7 +9292,7 @@ function equals$12(existing, incoming) {
9262
9292
  if (existing_events === undefined || incoming_events === undefined) {
9263
9293
  return false;
9264
9294
  }
9265
- if (!(equals$16(existing_events, incoming_events))) {
9295
+ if (!(equals$1N(existing_events, incoming_events))) {
9266
9296
  return false;
9267
9297
  }
9268
9298
  }
@@ -9304,7 +9334,7 @@ function equals$12(existing, incoming) {
9304
9334
  if (!(existing_licenseAttributes === incoming_licenseAttributes
9305
9335
  || (existing_licenseAttributes != null &&
9306
9336
  incoming_licenseAttributes != null &&
9307
- equals$1j(existing_licenseAttributes, incoming_licenseAttributes)))) {
9337
+ equals$1h(existing_licenseAttributes, incoming_licenseAttributes)))) {
9308
9338
  return false;
9309
9339
  }
9310
9340
  }
@@ -9346,7 +9376,7 @@ function equals$12(existing, incoming) {
9346
9376
  if (!(existing_source === incoming_source
9347
9377
  || (existing_source != null &&
9348
9378
  incoming_source != null &&
9349
- equals$1B(existing_source, incoming_source)))) {
9379
+ equals$1z(existing_source, incoming_source)))) {
9350
9380
  return false;
9351
9381
  }
9352
9382
  }
@@ -9575,7 +9605,7 @@ function validate$1O(obj, path = 'WaveFolderRepresentation') {
9575
9605
  for (let i = 0; i < obj_attachedFiles.length; i++) {
9576
9606
  const obj_attachedFiles_item = obj_attachedFiles[i];
9577
9607
  const path_attachedFiles_item = path_attachedFiles + '[' + i + ']';
9578
- const referencepath_attachedFiles_itemValidationError = validate$2o(obj_attachedFiles_item, path_attachedFiles_item);
9608
+ const referencepath_attachedFiles_itemValidationError = validate$2m(obj_attachedFiles_item, path_attachedFiles_item);
9579
9609
  if (referencepath_attachedFiles_itemValidationError !== null) {
9580
9610
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_attachedFiles_item + '")\n';
9581
9611
  message += referencepath_attachedFiles_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -9590,7 +9620,7 @@ function validate$1O(obj, path = 'WaveFolderRepresentation') {
9590
9620
  if (obj.defaultAsset !== undefined) {
9591
9621
  const obj_defaultAsset = obj.defaultAsset;
9592
9622
  const path_defaultAsset = path + '.defaultAsset';
9593
- const referencepath_defaultAssetValidationError = validate$2o(obj_defaultAsset, path_defaultAsset);
9623
+ const referencepath_defaultAssetValidationError = validate$2m(obj_defaultAsset, path_defaultAsset);
9594
9624
  if (referencepath_defaultAssetValidationError !== null) {
9595
9625
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_defaultAsset + '")\n';
9596
9626
  message += referencepath_defaultAssetValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -9613,7 +9643,7 @@ function validate$1O(obj, path = 'WaveFolderRepresentation') {
9613
9643
  }
9614
9644
  const obj_icon = obj.icon;
9615
9645
  const path_icon = path + '.icon';
9616
- const referencepath_iconValidationError = validate$2o(obj_icon, path_icon);
9646
+ const referencepath_iconValidationError = validate$2m(obj_icon, path_icon);
9617
9647
  if (referencepath_iconValidationError !== null) {
9618
9648
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_icon + '")\n';
9619
9649
  message += referencepath_iconValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -9723,7 +9753,7 @@ function normalize$v(input, existing, path, luvio, store, timestamp) {
9723
9753
  const select$1P = function WaveFolderRepresentationSelect() {
9724
9754
  const { selections: BaseWaveAssetRepresentationSelections } = select$1O();
9725
9755
  const { selections: AppLogRepresentation__selections, opaque: AppLogRepresentation__opaque, } = select$1R();
9726
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
9756
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
9727
9757
  const { selections: WaveFolderShareRepresentation__selections, opaque: WaveFolderShareRepresentation__opaque, } = select$1Q();
9728
9758
  return {
9729
9759
  kind: 'Fragment',
@@ -9890,7 +9920,7 @@ function equals$$(existing, incoming) {
9890
9920
  const existing_attachedFiles = existing.attachedFiles;
9891
9921
  const incoming_attachedFiles = incoming.attachedFiles;
9892
9922
  const equals_attachedFiles_items = equalsArray(existing_attachedFiles, incoming_attachedFiles, (existing_attachedFiles_item, incoming_attachedFiles_item) => {
9893
- if (!(equals$1B(existing_attachedFiles_item, incoming_attachedFiles_item))) {
9923
+ if (!(equals$1z(existing_attachedFiles_item, incoming_attachedFiles_item))) {
9894
9924
  return false;
9895
9925
  }
9896
9926
  });
@@ -9906,7 +9936,7 @@ function equals$$(existing, incoming) {
9906
9936
  if (existing_defaultAsset === undefined || incoming_defaultAsset === undefined) {
9907
9937
  return false;
9908
9938
  }
9909
- if (!(equals$1B(existing_defaultAsset, incoming_defaultAsset))) {
9939
+ if (!(equals$1z(existing_defaultAsset, incoming_defaultAsset))) {
9910
9940
  return false;
9911
9941
  }
9912
9942
  }
@@ -9922,7 +9952,7 @@ function equals$$(existing, incoming) {
9922
9952
  }
9923
9953
  const existing_icon = existing.icon;
9924
9954
  const incoming_icon = incoming.icon;
9925
- if (!(equals$1B(existing_icon, incoming_icon))) {
9955
+ if (!(equals$1z(existing_icon, incoming_icon))) {
9926
9956
  return false;
9927
9957
  }
9928
9958
  const existing_installationHistoryUrl = existing.installationHistoryUrl;
@@ -10036,7 +10066,7 @@ function validate$1N(obj, path = 'BaseWaveAssetRepresentation') {
10036
10066
  if (obj.createdBy !== undefined) {
10037
10067
  const obj_createdBy = obj.createdBy;
10038
10068
  const path_createdBy = path + '.createdBy';
10039
- const referencepath_createdByValidationError = validate$2r(obj_createdBy, path_createdBy);
10069
+ const referencepath_createdByValidationError = validate$2D(obj_createdBy, path_createdBy);
10040
10070
  if (referencepath_createdByValidationError !== null) {
10041
10071
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_createdBy + '")\n';
10042
10072
  message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -10102,7 +10132,7 @@ function validate$1N(obj, path = 'BaseWaveAssetRepresentation') {
10102
10132
  const path_lastModifiedBy = path + '.lastModifiedBy';
10103
10133
  let obj_lastModifiedBy_union0 = null;
10104
10134
  const obj_lastModifiedBy_union0_error = (() => {
10105
- const referencepath_lastModifiedByValidationError = validate$2r(obj_lastModifiedBy, path_lastModifiedBy);
10135
+ const referencepath_lastModifiedByValidationError = validate$2D(obj_lastModifiedBy, path_lastModifiedBy);
10106
10136
  if (referencepath_lastModifiedByValidationError !== null) {
10107
10137
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_lastModifiedBy + '")\n';
10108
10138
  message += referencepath_lastModifiedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -10175,7 +10205,7 @@ function validate$1N(obj, path = 'BaseWaveAssetRepresentation') {
10175
10205
  const path_permissions = path + '.permissions';
10176
10206
  let obj_permissions_union0 = null;
10177
10207
  const obj_permissions_union0_error = (() => {
10178
- const referencepath_permissionsValidationError = validate$2q(obj_permissions, path_permissions);
10208
+ const referencepath_permissionsValidationError = validate$2o(obj_permissions, path_permissions);
10179
10209
  if (referencepath_permissionsValidationError !== null) {
10180
10210
  let message = 'Object doesn\'t match PermissionsRepresentation (at "' + path_permissions + '")\n';
10181
10211
  message += referencepath_permissionsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -10225,8 +10255,8 @@ function keyBuilderFromType$c(luvio, object) {
10225
10255
  return keyBuilder$1k(luvio, keyParams);
10226
10256
  }
10227
10257
  const select$1O = function BaseWaveAssetRepresentationSelect() {
10228
- const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2s();
10229
- const { selections: PermissionsRepresentation__selections, opaque: PermissionsRepresentation__opaque, } = select$2r();
10258
+ const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2F();
10259
+ const { selections: PermissionsRepresentation__selections, opaque: PermissionsRepresentation__opaque, } = select$2p();
10230
10260
  return {
10231
10261
  kind: 'Fragment',
10232
10262
  version: VERSION$_,
@@ -10410,7 +10440,7 @@ function equals$_(existing, incoming) {
10410
10440
  if (existing_createdBy === undefined || incoming_createdBy === undefined) {
10411
10441
  return false;
10412
10442
  }
10413
- if (!(equals$1E(existing_createdBy, incoming_createdBy))) {
10443
+ if (!(equals$1P(existing_createdBy, incoming_createdBy))) {
10414
10444
  return false;
10415
10445
  }
10416
10446
  }
@@ -10439,7 +10469,7 @@ function equals$_(existing, incoming) {
10439
10469
  if (!(existing_lastModifiedBy === incoming_lastModifiedBy
10440
10470
  || (existing_lastModifiedBy != null &&
10441
10471
  incoming_lastModifiedBy != null &&
10442
- equals$1E(existing_lastModifiedBy, incoming_lastModifiedBy)))) {
10472
+ equals$1P(existing_lastModifiedBy, incoming_lastModifiedBy)))) {
10443
10473
  return false;
10444
10474
  }
10445
10475
  }
@@ -10468,7 +10498,7 @@ function equals$_(existing, incoming) {
10468
10498
  if (!(existing_permissions === incoming_permissions
10469
10499
  || (existing_permissions != null &&
10470
10500
  incoming_permissions != null &&
10471
- equals$1D(existing_permissions, incoming_permissions)))) {
10501
+ equals$1B(existing_permissions, incoming_permissions)))) {
10472
10502
  return false;
10473
10503
  }
10474
10504
  }
@@ -10597,7 +10627,7 @@ function validate$1L(obj, path = 'DataConnectorRepresentation') {
10597
10627
  if (obj.folder !== undefined) {
10598
10628
  const obj_folder = obj.folder;
10599
10629
  const path_folder = path + '.folder';
10600
- const referencepath_folderValidationError = validate$2o(obj_folder, path_folder);
10630
+ const referencepath_folderValidationError = validate$2m(obj_folder, path_folder);
10601
10631
  if (referencepath_folderValidationError !== null) {
10602
10632
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_folder + '")\n';
10603
10633
  message += referencepath_folderValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -10612,7 +10642,7 @@ function validate$1L(obj, path = 'DataConnectorRepresentation') {
10612
10642
  if (obj.targetConnector !== undefined) {
10613
10643
  const obj_targetConnector = obj.targetConnector;
10614
10644
  const path_targetConnector = path + '.targetConnector';
10615
- const referencepath_targetConnectorValidationError = validate$2o(obj_targetConnector, path_targetConnector);
10645
+ const referencepath_targetConnectorValidationError = validate$2m(obj_targetConnector, path_targetConnector);
10616
10646
  if (referencepath_targetConnectorValidationError !== null) {
10617
10647
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_targetConnector + '")\n';
10618
10648
  message += referencepath_targetConnectorValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -10647,7 +10677,7 @@ function normalize$u(input, existing, path, luvio, store, timestamp) {
10647
10677
  const select$1M = function DataConnectorRepresentationSelect() {
10648
10678
  const { selections: BaseWaveAssetRepresentationSelections } = select$1O();
10649
10679
  const { selections: ConnectionPropertyValueRepresentation__selections, opaque: ConnectionPropertyValueRepresentation__opaque, } = select$1N();
10650
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
10680
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
10651
10681
  return {
10652
10682
  kind: 'Fragment',
10653
10683
  version: VERSION$Y,
@@ -10730,7 +10760,7 @@ function equals$Y(existing, incoming) {
10730
10760
  if (existing_folder === undefined || incoming_folder === undefined) {
10731
10761
  return false;
10732
10762
  }
10733
- if (!(equals$1B(existing_folder, incoming_folder))) {
10763
+ if (!(equals$1z(existing_folder, incoming_folder))) {
10734
10764
  return false;
10735
10765
  }
10736
10766
  }
@@ -10748,7 +10778,7 @@ function equals$Y(existing, incoming) {
10748
10778
  if (existing_targetConnector === undefined || incoming_targetConnector === undefined) {
10749
10779
  return false;
10750
10780
  }
10751
- if (!(equals$1B(existing_targetConnector, incoming_targetConnector))) {
10781
+ if (!(equals$1z(existing_targetConnector, incoming_targetConnector))) {
10752
10782
  return false;
10753
10783
  }
10754
10784
  }
@@ -11570,7 +11600,7 @@ function validate$1H(obj, path = 'SourceObjectRepresentation') {
11570
11600
  }
11571
11601
  const obj_dataConnector = obj.dataConnector;
11572
11602
  const path_dataConnector = path + '.dataConnector';
11573
- const referencepath_dataConnectorValidationError = validate$2o(obj_dataConnector, path_dataConnector);
11603
+ const referencepath_dataConnectorValidationError = validate$2m(obj_dataConnector, path_dataConnector);
11574
11604
  if (referencepath_dataConnectorValidationError !== null) {
11575
11605
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_dataConnector + '")\n';
11576
11606
  message += referencepath_dataConnectorValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -11619,7 +11649,7 @@ function normalize$s(input, existing, path, luvio, store, timestamp) {
11619
11649
  return input;
11620
11650
  }
11621
11651
  const select$1G = function SourceObjectRepresentationSelect() {
11622
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
11652
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
11623
11653
  return {
11624
11654
  kind: 'Fragment',
11625
11655
  version: VERSION$W,
@@ -11717,7 +11747,7 @@ function equals$W(existing, incoming) {
11717
11747
  }
11718
11748
  const existing_dataConnector = existing.dataConnector;
11719
11749
  const incoming_dataConnector = incoming.dataConnector;
11720
- if (!(equals$1B(existing_dataConnector, incoming_dataConnector))) {
11750
+ if (!(equals$1z(existing_dataConnector, incoming_dataConnector))) {
11721
11751
  return false;
11722
11752
  }
11723
11753
  return true;
@@ -12930,7 +12960,7 @@ function validate$1z(obj, path = 'SourceFieldCollectionRepresentation') {
12930
12960
  }
12931
12961
  const obj_dataConnector = obj.dataConnector;
12932
12962
  const path_dataConnector = path + '.dataConnector';
12933
- const referencepath_dataConnectorValidationError = validate$2o(obj_dataConnector, path_dataConnector);
12963
+ const referencepath_dataConnectorValidationError = validate$2m(obj_dataConnector, path_dataConnector);
12934
12964
  if (referencepath_dataConnectorValidationError !== null) {
12935
12965
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_dataConnector + '")\n';
12936
12966
  message += referencepath_dataConnectorValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -12979,7 +13009,7 @@ function normalize$p(input, existing, path, luvio, store, timestamp) {
12979
13009
  return input;
12980
13010
  }
12981
13011
  const select$1x = function SourceFieldCollectionRepresentationSelect() {
12982
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
13012
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
12983
13013
  const { selections: SourceFieldRepresentation__selections, opaque: SourceFieldRepresentation__opaque, } = select$1y();
12984
13014
  return {
12985
13015
  kind: 'Fragment',
@@ -13021,7 +13051,7 @@ function equals$Q(existing, incoming) {
13021
13051
  }
13022
13052
  const existing_dataConnector = existing.dataConnector;
13023
13053
  const incoming_dataConnector = incoming.dataConnector;
13024
- if (!(equals$1B(existing_dataConnector, incoming_dataConnector))) {
13054
+ if (!(equals$1z(existing_dataConnector, incoming_dataConnector))) {
13025
13055
  return false;
13026
13056
  }
13027
13057
  const existing_fields = existing.fields;
@@ -15276,7 +15306,7 @@ const select$1g = function DataflowJobNodeCollectionRepresentationSelect() {
15276
15306
  name: 'nodes',
15277
15307
  kind: 'Link',
15278
15308
  plural: true,
15279
- fragment: select$22()
15309
+ fragment: select$20()
15280
15310
  },
15281
15311
  {
15282
15312
  name: 'url',
@@ -15468,7 +15498,7 @@ const getDataflowJobNodesAdapterFactory = (luvio) => function WAVE__getDataflowJ
15468
15498
  };
15469
15499
 
15470
15500
  function select$1e(luvio, params) {
15471
- return select$22();
15501
+ return select$20();
15472
15502
  }
15473
15503
  function keyBuilder$S(luvio, params) {
15474
15504
  return keyBuilder$1o(luvio, {
@@ -15501,7 +15531,7 @@ function ingestError$l(luvio, params, error, snapshotRefresh) {
15501
15531
  const storeMetadataParams = {
15502
15532
  ttl: TTL$w,
15503
15533
  namespace: keyPrefix,
15504
- version: VERSION$1e,
15534
+ version: VERSION$1c,
15505
15535
  representationName: RepresentationType$B
15506
15536
  };
15507
15537
  luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
@@ -15717,7 +15747,7 @@ const select$1d = function DatasetCollectionRepresentationSelect() {
15717
15747
  name: 'datasets',
15718
15748
  kind: 'Link',
15719
15749
  plural: true,
15720
- fragment: select$20()
15750
+ fragment: select$1_()
15721
15751
  },
15722
15752
  {
15723
15753
  name: 'nextPageUrl',
@@ -15792,7 +15822,7 @@ function select$1c(luvio, params) {
15792
15822
  return select$1d();
15793
15823
  }
15794
15824
  function keyBuilder$Q(luvio, params) {
15795
- return keyPrefix + '::DatasetCollectionRepresentation:(' + 'createdAfter:' + params.queryParams.createdAfter + ',' + 'createdBefore:' + params.queryParams.createdBefore + ',' + 'datasetTypes:' + params.queryParams.datasetTypes + ',' + 'folderId:' + params.queryParams.folderId + ',' + 'hasCurrentOnly:' + params.queryParams.hasCurrentOnly + ',' + 'ids:' + params.queryParams.ids + ',' + 'includeCurrentVersion:' + params.queryParams.includeCurrentVersion + ',' + 'lastQueriedAfter:' + params.queryParams.lastQueriedAfter + ',' + 'lastQueriedBefore:' + params.queryParams.lastQueriedBefore + ',' + 'licenseType:' + params.queryParams.licenseType + ',' + 'order:' + params.queryParams.order + ',' + 'page:' + params.queryParams.page + ',' + 'pageSize:' + params.queryParams.pageSize + ',' + 'q:' + params.queryParams.q + ',' + 'scope:' + params.queryParams.scope + ',' + 'sort:' + params.queryParams.sort + ')';
15825
+ return keyPrefix + '::DatasetCollectionRepresentation:(' + 'createdAfter:' + params.queryParams.createdAfter + ',' + 'createdBefore:' + params.queryParams.createdBefore + ',' + 'datasetTypes:' + params.queryParams.datasetTypes + ',' + 'folderId:' + params.queryParams.folderId + ',' + 'hasCurrentOnly:' + params.queryParams.hasCurrentOnly + ',' + 'ids:' + params.queryParams.ids + ',' + 'includeCurrentVersion:' + params.queryParams.includeCurrentVersion + ',' + 'lastQueriedAfter:' + params.queryParams.lastQueriedAfter + ',' + 'lastQueriedBefore:' + params.queryParams.lastQueriedBefore + ',' + 'licenseType:' + params.queryParams.licenseType + ',' + 'order:' + params.queryParams.order + ',' + 'page:' + params.queryParams.page + ',' + 'pageSize:' + params.queryParams.pageSize + ',' + 'q:' + params.queryParams.q + ',' + 'scope:' + params.queryParams.scope + ',' + 'sort:' + params.queryParams.sort + ',' + 'typeOfDataflow:' + params.queryParams.typeOfDataflow + ')';
15796
15826
  }
15797
15827
  function getResponseCacheKeys$B(storeKeyMap, luvio, resourceParams, response) {
15798
15828
  getTypeCacheKeys$j(storeKeyMap, luvio, response, () => keyBuilder$Q(luvio, resourceParams));
@@ -15858,6 +15888,7 @@ const getDatasets_ConfigPropertyMetadata = [
15858
15888
  generateParamConfigMetadata('q', false, 1 /* QueryParameter */, 0 /* String */),
15859
15889
  generateParamConfigMetadata('scope', false, 1 /* QueryParameter */, 0 /* String */),
15860
15890
  generateParamConfigMetadata('sort', false, 1 /* QueryParameter */, 0 /* String */),
15891
+ generateParamConfigMetadata('typeOfDataflow', false, 1 /* QueryParameter */, 0 /* String */),
15861
15892
  ];
15862
15893
  const getDatasets_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$B, getDatasets_ConfigPropertyMetadata);
15863
15894
  const createResourceParams$B = /*#__PURE__*/ createResourceParams$Y(getDatasets_ConfigPropertyMetadata);
@@ -17142,7 +17173,7 @@ function validate$10(obj, path = 'DatasetInputRepresentation') {
17142
17173
  }
17143
17174
 
17144
17175
  function select$1b(luvio, params) {
17145
- return select$20();
17176
+ return select$1_();
17146
17177
  }
17147
17178
  function getResponseCacheKeys$A(storeKeyMap, luvio, resourceParams, response) {
17148
17179
  getTypeCacheKeys$z(storeKeyMap, luvio, response);
@@ -17360,7 +17391,7 @@ const deleteDatasetAdapterFactory = (luvio) => {
17360
17391
  };
17361
17392
 
17362
17393
  function select$1a(luvio, params) {
17363
- return select$20();
17394
+ return select$1_();
17364
17395
  }
17365
17396
  function keyBuilder$N(luvio, params) {
17366
17397
  return keyBuilder$1n(luvio, {
@@ -17393,7 +17424,7 @@ function ingestError$j(luvio, params, error, snapshotRefresh) {
17393
17424
  const storeMetadataParams = {
17394
17425
  ttl: TTL$v,
17395
17426
  namespace: keyPrefix,
17396
- version: VERSION$1c,
17427
+ version: VERSION$1a,
17397
17428
  representationName: RepresentationType$A
17398
17429
  };
17399
17430
  luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
@@ -17537,7 +17568,7 @@ const getDatasetAdapterFactory = (luvio) => function WAVE__getDataset(untrustedC
17537
17568
  };
17538
17569
 
17539
17570
  function select$19(luvio, params) {
17540
- return select$20();
17571
+ return select$1_();
17541
17572
  }
17542
17573
  function getResponseCacheKeys$x(storeKeyMap, luvio, resourceParams, response) {
17543
17574
  getTypeCacheKeys$z(storeKeyMap, luvio, response);
@@ -17693,7 +17724,7 @@ const select$18 = function DatasetVersionCollectionRepresentationSelect() {
17693
17724
  name: 'versions',
17694
17725
  kind: 'Link',
17695
17726
  plural: true,
17696
- fragment: select$29()
17727
+ fragment: select$27()
17697
17728
  }
17698
17729
  ]
17699
17730
  };
@@ -17994,7 +18025,7 @@ const createDatasetVersionAdapterFactory = (luvio) => {
17994
18025
  };
17995
18026
 
17996
18027
  function select$15(luvio, params) {
17997
- return select$29();
18028
+ return select$27();
17998
18029
  }
17999
18030
  function keyBuilder$J(luvio, params) {
18000
18031
  return keyBuilder$1q(luvio, {
@@ -18027,7 +18058,7 @@ function ingestError$h(luvio, params, error, snapshotRefresh) {
18027
18058
  const storeMetadataParams = {
18028
18059
  ttl: TTL$y,
18029
18060
  namespace: keyPrefix,
18030
- version: VERSION$1l,
18061
+ version: VERSION$1j,
18031
18062
  representationName: RepresentationType$D
18032
18063
  };
18033
18064
  luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
@@ -18196,7 +18227,7 @@ function validate$Z(obj, path = 'DatasetVersionInputRepresentation') {
18196
18227
  }
18197
18228
 
18198
18229
  function select$14(luvio, params) {
18199
- return select$29();
18230
+ return select$27();
18200
18231
  }
18201
18232
  function getResponseCacheKeys$t(storeKeyMap, luvio, resourceParams, response) {
18202
18233
  getTypeCacheKeys$C(storeKeyMap, luvio, response);
@@ -18311,7 +18342,7 @@ function validate$Y(obj, path = 'XmdRepresentation') {
18311
18342
  }
18312
18343
  const obj_createdBy = obj.createdBy;
18313
18344
  const path_createdBy = path + '.createdBy';
18314
- const referencepath_createdByValidationError = validate$2r(obj_createdBy, path_createdBy);
18345
+ const referencepath_createdByValidationError = validate$2D(obj_createdBy, path_createdBy);
18315
18346
  if (referencepath_createdByValidationError !== null) {
18316
18347
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_createdBy + '")\n';
18317
18348
  message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -18324,7 +18355,7 @@ function validate$Y(obj, path = 'XmdRepresentation') {
18324
18355
  }
18325
18356
  const obj_dataset = obj.dataset;
18326
18357
  const path_dataset = path + '.dataset';
18327
- const referencepath_datasetValidationError = validate$2l(obj_dataset, path_dataset);
18358
+ const referencepath_datasetValidationError = validate$2j(obj_dataset, path_dataset);
18328
18359
  if (referencepath_datasetValidationError !== null) {
18329
18360
  let message = 'Object doesn\'t match XmdDatasetRepresentation (at "' + path_dataset + '")\n';
18330
18361
  message += referencepath_datasetValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -18338,7 +18369,7 @@ function validate$Y(obj, path = 'XmdRepresentation') {
18338
18369
  for (let i = 0; i < obj_dates.length; i++) {
18339
18370
  const obj_dates_item = obj_dates[i];
18340
18371
  const path_dates_item = path_dates + '[' + i + ']';
18341
- const referencepath_dates_itemValidationError = validate$2j(obj_dates_item, path_dates_item);
18372
+ const referencepath_dates_itemValidationError = validate$2h(obj_dates_item, path_dates_item);
18342
18373
  if (referencepath_dates_itemValidationError !== null) {
18343
18374
  let message = 'Object doesn\'t match XmdDateRepresentation (at "' + path_dates_item + '")\n';
18344
18375
  message += referencepath_dates_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -18353,7 +18384,7 @@ function validate$Y(obj, path = 'XmdRepresentation') {
18353
18384
  for (let i = 0; i < obj_derivedDimensions.length; i++) {
18354
18385
  const obj_derivedDimensions_item = obj_derivedDimensions[i];
18355
18386
  const path_derivedDimensions_item = path_derivedDimensions + '[' + i + ']';
18356
- const referencepath_derivedDimensions_itemValidationError = validate$2e(obj_derivedDimensions_item, path_derivedDimensions_item);
18387
+ const referencepath_derivedDimensions_itemValidationError = validate$2c(obj_derivedDimensions_item, path_derivedDimensions_item);
18357
18388
  if (referencepath_derivedDimensions_itemValidationError !== null) {
18358
18389
  let message = 'Object doesn\'t match XmdDimensionRepresentation (at "' + path_derivedDimensions_item + '")\n';
18359
18390
  message += referencepath_derivedDimensions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -18368,7 +18399,7 @@ function validate$Y(obj, path = 'XmdRepresentation') {
18368
18399
  for (let i = 0; i < obj_derivedMeasures.length; i++) {
18369
18400
  const obj_derivedMeasures_item = obj_derivedMeasures[i];
18370
18401
  const path_derivedMeasures_item = path_derivedMeasures + '[' + i + ']';
18371
- const referencepath_derivedMeasures_itemValidationError = validate$2b(obj_derivedMeasures_item, path_derivedMeasures_item);
18402
+ const referencepath_derivedMeasures_itemValidationError = validate$29(obj_derivedMeasures_item, path_derivedMeasures_item);
18372
18403
  if (referencepath_derivedMeasures_itemValidationError !== null) {
18373
18404
  let message = 'Object doesn\'t match XmdMeasureRepresentation (at "' + path_derivedMeasures_item + '")\n';
18374
18405
  message += referencepath_derivedMeasures_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -18383,7 +18414,7 @@ function validate$Y(obj, path = 'XmdRepresentation') {
18383
18414
  for (let i = 0; i < obj_dimensions.length; i++) {
18384
18415
  const obj_dimensions_item = obj_dimensions[i];
18385
18416
  const path_dimensions_item = path_dimensions + '[' + i + ']';
18386
- const referencepath_dimensions_itemValidationError = validate$2e(obj_dimensions_item, path_dimensions_item);
18417
+ const referencepath_dimensions_itemValidationError = validate$2c(obj_dimensions_item, path_dimensions_item);
18387
18418
  if (referencepath_dimensions_itemValidationError !== null) {
18388
18419
  let message = 'Object doesn\'t match XmdDimensionRepresentation (at "' + path_dimensions_item + '")\n';
18389
18420
  message += referencepath_dimensions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -18404,7 +18435,7 @@ function validate$Y(obj, path = 'XmdRepresentation') {
18404
18435
  }
18405
18436
  const obj_lastModifiedBy = obj.lastModifiedBy;
18406
18437
  const path_lastModifiedBy = path + '.lastModifiedBy';
18407
- const referencepath_lastModifiedByValidationError = validate$2r(obj_lastModifiedBy, path_lastModifiedBy);
18438
+ const referencepath_lastModifiedByValidationError = validate$2D(obj_lastModifiedBy, path_lastModifiedBy);
18408
18439
  if (referencepath_lastModifiedByValidationError !== null) {
18409
18440
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_lastModifiedBy + '")\n';
18410
18441
  message += referencepath_lastModifiedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -18423,7 +18454,7 @@ function validate$Y(obj, path = 'XmdRepresentation') {
18423
18454
  for (let i = 0; i < obj_measures.length; i++) {
18424
18455
  const obj_measures_item = obj_measures[i];
18425
18456
  const path_measures_item = path_measures + '[' + i + ']';
18426
- const referencepath_measures_itemValidationError = validate$2b(obj_measures_item, path_measures_item);
18457
+ const referencepath_measures_itemValidationError = validate$29(obj_measures_item, path_measures_item);
18427
18458
  if (referencepath_measures_itemValidationError !== null) {
18428
18459
  let message = 'Object doesn\'t match XmdMeasureRepresentation (at "' + path_measures_item + '")\n';
18429
18460
  message += referencepath_measures_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -18438,7 +18469,7 @@ function validate$Y(obj, path = 'XmdRepresentation') {
18438
18469
  for (let i = 0; i < obj_organizations.length; i++) {
18439
18470
  const obj_organizations_item = obj_organizations[i];
18440
18471
  const path_organizations_item = path_organizations + '[' + i + ']';
18441
- const referencepath_organizations_itemValidationError = validate$2a(obj_organizations_item, path_organizations_item);
18472
+ const referencepath_organizations_itemValidationError = validate$28(obj_organizations_item, path_organizations_item);
18442
18473
  if (referencepath_organizations_itemValidationError !== null) {
18443
18474
  let message = 'Object doesn\'t match XmdOrganizationRepresentation (at "' + path_organizations_item + '")\n';
18444
18475
  message += referencepath_organizations_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -18475,12 +18506,12 @@ function normalize$h(input, existing, path, luvio, store, timestamp) {
18475
18506
  return input;
18476
18507
  }
18477
18508
  const select$13 = function XmdRepresentationSelect() {
18478
- const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2s();
18479
- const { selections: XmdDatasetRepresentation__selections, opaque: XmdDatasetRepresentation__opaque, } = select$2m();
18480
- const { selections: XmdDateRepresentation__selections, opaque: XmdDateRepresentation__opaque, } = select$2k();
18481
- const { selections: XmdDimensionRepresentation__selections, opaque: XmdDimensionRepresentation__opaque, } = select$2f();
18482
- const { selections: XmdMeasureRepresentation__selections, opaque: XmdMeasureRepresentation__opaque, } = select$2c();
18483
- const { selections: XmdOrganizationRepresentation__selections, opaque: XmdOrganizationRepresentation__opaque, } = select$2b();
18509
+ const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2F();
18510
+ const { selections: XmdDatasetRepresentation__selections, opaque: XmdDatasetRepresentation__opaque, } = select$2k();
18511
+ const { selections: XmdDateRepresentation__selections, opaque: XmdDateRepresentation__opaque, } = select$2i();
18512
+ const { selections: XmdDimensionRepresentation__selections, opaque: XmdDimensionRepresentation__opaque, } = select$2d();
18513
+ const { selections: XmdMeasureRepresentation__selections, opaque: XmdMeasureRepresentation__opaque, } = select$2a();
18514
+ const { selections: XmdOrganizationRepresentation__selections, opaque: XmdOrganizationRepresentation__opaque, } = select$29();
18484
18515
  return {
18485
18516
  kind: 'Fragment',
18486
18517
  version: VERSION$F,
@@ -18611,18 +18642,18 @@ function equals$F(existing, incoming) {
18611
18642
  }
18612
18643
  const existing_createdBy = existing.createdBy;
18613
18644
  const incoming_createdBy = incoming.createdBy;
18614
- if (!(equals$1E(existing_createdBy, incoming_createdBy))) {
18645
+ if (!(equals$1P(existing_createdBy, incoming_createdBy))) {
18615
18646
  return false;
18616
18647
  }
18617
18648
  const existing_dataset = existing.dataset;
18618
18649
  const incoming_dataset = incoming.dataset;
18619
- if (!(equals$1y(existing_dataset, incoming_dataset))) {
18650
+ if (!(equals$1w(existing_dataset, incoming_dataset))) {
18620
18651
  return false;
18621
18652
  }
18622
18653
  const existing_dates = existing.dates;
18623
18654
  const incoming_dates = incoming.dates;
18624
18655
  const equals_dates_items = equalsArray(existing_dates, incoming_dates, (existing_dates_item, incoming_dates_item) => {
18625
- if (!(equals$1w(existing_dates_item, incoming_dates_item))) {
18656
+ if (!(equals$1u(existing_dates_item, incoming_dates_item))) {
18626
18657
  return false;
18627
18658
  }
18628
18659
  });
@@ -18632,7 +18663,7 @@ function equals$F(existing, incoming) {
18632
18663
  const existing_derivedDimensions = existing.derivedDimensions;
18633
18664
  const incoming_derivedDimensions = incoming.derivedDimensions;
18634
18665
  const equals_derivedDimensions_items = equalsArray(existing_derivedDimensions, incoming_derivedDimensions, (existing_derivedDimensions_item, incoming_derivedDimensions_item) => {
18635
- if (!(equals$1r(existing_derivedDimensions_item, incoming_derivedDimensions_item))) {
18666
+ if (!(equals$1p(existing_derivedDimensions_item, incoming_derivedDimensions_item))) {
18636
18667
  return false;
18637
18668
  }
18638
18669
  });
@@ -18642,7 +18673,7 @@ function equals$F(existing, incoming) {
18642
18673
  const existing_derivedMeasures = existing.derivedMeasures;
18643
18674
  const incoming_derivedMeasures = incoming.derivedMeasures;
18644
18675
  const equals_derivedMeasures_items = equalsArray(existing_derivedMeasures, incoming_derivedMeasures, (existing_derivedMeasures_item, incoming_derivedMeasures_item) => {
18645
- if (!(equals$1o(existing_derivedMeasures_item, incoming_derivedMeasures_item))) {
18676
+ if (!(equals$1m(existing_derivedMeasures_item, incoming_derivedMeasures_item))) {
18646
18677
  return false;
18647
18678
  }
18648
18679
  });
@@ -18652,7 +18683,7 @@ function equals$F(existing, incoming) {
18652
18683
  const existing_dimensions = existing.dimensions;
18653
18684
  const incoming_dimensions = incoming.dimensions;
18654
18685
  const equals_dimensions_items = equalsArray(existing_dimensions, incoming_dimensions, (existing_dimensions_item, incoming_dimensions_item) => {
18655
- if (!(equals$1r(existing_dimensions_item, incoming_dimensions_item))) {
18686
+ if (!(equals$1p(existing_dimensions_item, incoming_dimensions_item))) {
18656
18687
  return false;
18657
18688
  }
18658
18689
  });
@@ -18661,13 +18692,13 @@ function equals$F(existing, incoming) {
18661
18692
  }
18662
18693
  const existing_lastModifiedBy = existing.lastModifiedBy;
18663
18694
  const incoming_lastModifiedBy = incoming.lastModifiedBy;
18664
- if (!(equals$1E(existing_lastModifiedBy, incoming_lastModifiedBy))) {
18695
+ if (!(equals$1P(existing_lastModifiedBy, incoming_lastModifiedBy))) {
18665
18696
  return false;
18666
18697
  }
18667
18698
  const existing_measures = existing.measures;
18668
18699
  const incoming_measures = incoming.measures;
18669
18700
  const equals_measures_items = equalsArray(existing_measures, incoming_measures, (existing_measures_item, incoming_measures_item) => {
18670
- if (!(equals$1o(existing_measures_item, incoming_measures_item))) {
18701
+ if (!(equals$1m(existing_measures_item, incoming_measures_item))) {
18671
18702
  return false;
18672
18703
  }
18673
18704
  });
@@ -18677,7 +18708,7 @@ function equals$F(existing, incoming) {
18677
18708
  const existing_organizations = existing.organizations;
18678
18709
  const incoming_organizations = incoming.organizations;
18679
18710
  const equals_organizations_items = equalsArray(existing_organizations, incoming_organizations, (existing_organizations_item, incoming_organizations_item) => {
18680
- if (!(equals$1n(existing_organizations_item, incoming_organizations_item))) {
18711
+ if (!(equals$1l(existing_organizations_item, incoming_organizations_item))) {
18681
18712
  return false;
18682
18713
  }
18683
18714
  });
@@ -19067,7 +19098,7 @@ function validate$W(obj, path = 'DependencyRepresentation') {
19067
19098
  }
19068
19099
  const obj_folder = obj.folder;
19069
19100
  const path_folder = path + '.folder';
19070
- const referencepath_folderValidationError = validate$2o(obj_folder, path_folder);
19101
+ const referencepath_folderValidationError = validate$2m(obj_folder, path_folder);
19071
19102
  if (referencepath_folderValidationError !== null) {
19072
19103
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_folder + '")\n';
19073
19104
  message += referencepath_folderValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -19085,7 +19116,7 @@ function validate$W(obj, path = 'DependencyRepresentation') {
19085
19116
  }
19086
19117
  const obj_lastModifiedBy = obj.lastModifiedBy;
19087
19118
  const path_lastModifiedBy = path + '.lastModifiedBy';
19088
- const referencepath_lastModifiedByValidationError = validate$2r(obj_lastModifiedBy, path_lastModifiedBy);
19119
+ const referencepath_lastModifiedByValidationError = validate$2D(obj_lastModifiedBy, path_lastModifiedBy);
19089
19120
  if (referencepath_lastModifiedByValidationError !== null) {
19090
19121
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_lastModifiedBy + '")\n';
19091
19122
  message += referencepath_lastModifiedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -19150,8 +19181,8 @@ function normalize$g(input, existing, path, luvio, store, timestamp) {
19150
19181
  }
19151
19182
  const select$$ = function DependencyRepresentationSelect() {
19152
19183
  const { selections: DependencyCollectionRepresentation__selections, opaque: DependencyCollectionRepresentation__opaque, } = select$10();
19153
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
19154
- const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2s();
19184
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
19185
+ const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2F();
19155
19186
  return {
19156
19187
  kind: 'Fragment',
19157
19188
  version: VERSION$D,
@@ -19320,12 +19351,12 @@ function equals$D(existing, incoming) {
19320
19351
  }
19321
19352
  const existing_folder = existing.folder;
19322
19353
  const incoming_folder = incoming.folder;
19323
- if (!(equals$1B(existing_folder, incoming_folder))) {
19354
+ if (!(equals$1z(existing_folder, incoming_folder))) {
19324
19355
  return false;
19325
19356
  }
19326
19357
  const existing_lastModifiedBy = existing.lastModifiedBy;
19327
19358
  const incoming_lastModifiedBy = incoming.lastModifiedBy;
19328
- if (!(equals$1E(existing_lastModifiedBy, incoming_lastModifiedBy))) {
19359
+ if (!(equals$1P(existing_lastModifiedBy, incoming_lastModifiedBy))) {
19329
19360
  return false;
19330
19361
  }
19331
19362
  const existing_lenses = existing.lenses;
@@ -20295,7 +20326,7 @@ function validate$T(obj, path = 'WaveAnalyticsLimitRepresentation') {
20295
20326
  if (obj.licenseAttributes !== undefined) {
20296
20327
  const obj_licenseAttributes = obj.licenseAttributes;
20297
20328
  const path_licenseAttributes = path + '.licenseAttributes';
20298
- const referencepath_licenseAttributesValidationError = validate$26(obj_licenseAttributes, path_licenseAttributes);
20329
+ const referencepath_licenseAttributesValidationError = validate$24(obj_licenseAttributes, path_licenseAttributes);
20299
20330
  if (referencepath_licenseAttributesValidationError !== null) {
20300
20331
  let message = 'Object doesn\'t match LicenseAttributesRepresentation (at "' + path_licenseAttributes + '")\n';
20301
20332
  message += referencepath_licenseAttributesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -20315,7 +20346,7 @@ function validate$T(obj, path = 'WaveAnalyticsLimitRepresentation') {
20315
20346
  return v_error === undefined ? null : v_error;
20316
20347
  }
20317
20348
  const select$U = function WaveAnalyticsLimitRepresentationSelect() {
20318
- const { selections: LicenseAttributesRepresentation__selections, opaque: LicenseAttributesRepresentation__opaque, } = select$27();
20349
+ const { selections: LicenseAttributesRepresentation__selections, opaque: LicenseAttributesRepresentation__opaque, } = select$25();
20319
20350
  return {
20320
20351
  kind: 'Fragment',
20321
20352
  version: VERSION$B,
@@ -20394,7 +20425,7 @@ function equals$B(existing, incoming) {
20394
20425
  if (existing_licenseAttributes === undefined || incoming_licenseAttributes === undefined) {
20395
20426
  return false;
20396
20427
  }
20397
- if (!(equals$1j(existing_licenseAttributes, incoming_licenseAttributes))) {
20428
+ if (!(equals$1h(existing_licenseAttributes, incoming_licenseAttributes))) {
20398
20429
  return false;
20399
20430
  }
20400
20431
  }
@@ -21076,7 +21107,7 @@ function validate$N(obj, path = 'RecipeCollectionRepresentation') {
21076
21107
  for (let i = 0; i < obj_recipes.length; i++) {
21077
21108
  const obj_recipes_item = obj_recipes[i];
21078
21109
  const path_recipes_item = path_recipes + '[' + i + ']';
21079
- const referencepath_recipes_itemValidationError = validate$23(obj_recipes_item, path_recipes_item);
21110
+ const referencepath_recipes_itemValidationError = validate$21(obj_recipes_item, path_recipes_item);
21080
21111
  if (referencepath_recipes_itemValidationError !== null) {
21081
21112
  let message = 'Object doesn\'t match RecipeRepresentation (at "' + path_recipes_item + '")\n';
21082
21113
  message += referencepath_recipes_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -21308,7 +21339,7 @@ const getRecipesAdapterFactory = (luvio) => function WAVE__getRecipes(untrustedC
21308
21339
  };
21309
21340
 
21310
21341
  function select$M(luvio, params) {
21311
- return select$24();
21342
+ return select$22();
21312
21343
  }
21313
21344
  function keyBuilder$s(luvio, params) {
21314
21345
  return keyBuilder$1p(luvio, {
@@ -21341,7 +21372,7 @@ function ingestError$9(luvio, params, error, snapshotRefresh) {
21341
21372
  const storeMetadataParams = {
21342
21373
  ttl: TTL$x,
21343
21374
  namespace: keyPrefix,
21344
- version: VERSION$1g,
21375
+ version: VERSION$1e,
21345
21376
  representationName: RepresentationType$C
21346
21377
  };
21347
21378
  luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
@@ -22010,7 +22041,7 @@ function validate$C(obj, path = 'RecipeInputRepresentation') {
22010
22041
  }
22011
22042
 
22012
22043
  function select$L(luvio, params) {
22013
- return select$24();
22044
+ return select$22();
22014
22045
  }
22015
22046
  function getResponseCacheKeys$f(storeKeyMap, luvio, resourceParams, response) {
22016
22047
  getTypeCacheKeys$B(storeKeyMap, luvio, response);
@@ -22128,7 +22159,7 @@ function validate$B(obj, path = 'RecipeNotificationRepresentation') {
22128
22159
  }
22129
22160
  const obj_recipe = obj.recipe;
22130
22161
  const path_recipe = path + '.recipe';
22131
- const referencepath_recipeValidationError = validate$2o(obj_recipe, path_recipe);
22162
+ const referencepath_recipeValidationError = validate$2m(obj_recipe, path_recipe);
22132
22163
  if (referencepath_recipeValidationError !== null) {
22133
22164
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_recipe + '")\n';
22134
22165
  message += referencepath_recipeValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -22151,7 +22182,7 @@ function normalize$a(input, existing, path, luvio, store, timestamp) {
22151
22182
  return input;
22152
22183
  }
22153
22184
  const select$K = function RecipeNotificationRepresentationSelect() {
22154
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
22185
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
22155
22186
  return {
22156
22187
  kind: 'Fragment',
22157
22188
  version: VERSION$w,
@@ -22195,7 +22226,7 @@ function equals$w(existing, incoming) {
22195
22226
  }
22196
22227
  const existing_recipe = existing.recipe;
22197
22228
  const incoming_recipe = incoming.recipe;
22198
- if (!(equals$1B(existing_recipe, incoming_recipe))) {
22229
+ if (!(equals$1z(existing_recipe, incoming_recipe))) {
22199
22230
  return false;
22200
22231
  }
22201
22232
  return true;
@@ -22739,7 +22770,7 @@ function validate$x(obj, path = 'ReplicatedDatasetConnectorRepresentation') {
22739
22770
  if (obj.createdBy !== undefined) {
22740
22771
  const obj_createdBy = obj.createdBy;
22741
22772
  const path_createdBy = path + '.createdBy';
22742
- const referencepath_createdByValidationError = validate$2r(obj_createdBy, path_createdBy);
22773
+ const referencepath_createdByValidationError = validate$2D(obj_createdBy, path_createdBy);
22743
22774
  if (referencepath_createdByValidationError !== null) {
22744
22775
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_createdBy + '")\n';
22745
22776
  message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -22763,7 +22794,7 @@ function validate$x(obj, path = 'ReplicatedDatasetConnectorRepresentation') {
22763
22794
  if (obj.folder !== undefined) {
22764
22795
  const obj_folder = obj.folder;
22765
22796
  const path_folder = path + '.folder';
22766
- const referencepath_folderValidationError = validate$2o(obj_folder, path_folder);
22797
+ const referencepath_folderValidationError = validate$2m(obj_folder, path_folder);
22767
22798
  if (referencepath_folderValidationError !== null) {
22768
22799
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_folder + '")\n';
22769
22800
  message += referencepath_folderValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -22820,7 +22851,7 @@ function validate$x(obj, path = 'ReplicatedDatasetConnectorRepresentation') {
22820
22851
  const path_lastModifiedBy = path + '.lastModifiedBy';
22821
22852
  let obj_lastModifiedBy_union0 = null;
22822
22853
  const obj_lastModifiedBy_union0_error = (() => {
22823
- const referencepath_lastModifiedByValidationError = validate$2r(obj_lastModifiedBy, path_lastModifiedBy);
22854
+ const referencepath_lastModifiedByValidationError = validate$2D(obj_lastModifiedBy, path_lastModifiedBy);
22824
22855
  if (referencepath_lastModifiedByValidationError !== null) {
22825
22856
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_lastModifiedBy + '")\n';
22826
22857
  message += referencepath_lastModifiedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -22893,7 +22924,7 @@ function validate$x(obj, path = 'ReplicatedDatasetConnectorRepresentation') {
22893
22924
  const path_permissions = path + '.permissions';
22894
22925
  let obj_permissions_union0 = null;
22895
22926
  const obj_permissions_union0_error = (() => {
22896
- const referencepath_permissionsValidationError = validate$2q(obj_permissions, path_permissions);
22927
+ const referencepath_permissionsValidationError = validate$2o(obj_permissions, path_permissions);
22897
22928
  if (referencepath_permissionsValidationError !== null) {
22898
22929
  let message = 'Object doesn\'t match PermissionsRepresentation (at "' + path_permissions + '")\n';
22899
22930
  message += referencepath_permissionsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -22922,7 +22953,7 @@ function validate$x(obj, path = 'ReplicatedDatasetConnectorRepresentation') {
22922
22953
  if (obj.targetConnector !== undefined) {
22923
22954
  const obj_targetConnector = obj.targetConnector;
22924
22955
  const path_targetConnector = path + '.targetConnector';
22925
- const referencepath_targetConnectorValidationError = validate$2o(obj_targetConnector, path_targetConnector);
22956
+ const referencepath_targetConnectorValidationError = validate$2m(obj_targetConnector, path_targetConnector);
22926
22957
  if (referencepath_targetConnectorValidationError !== null) {
22927
22958
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_targetConnector + '")\n';
22928
22959
  message += referencepath_targetConnectorValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -22960,9 +22991,9 @@ function normalize$9(input, existing, path, luvio, store, timestamp) {
22960
22991
  }
22961
22992
  const select$F = function ReplicatedDatasetConnectorRepresentationSelect() {
22962
22993
  const { selections: ConnectionPropertyValueRepresentation__selections, opaque: ConnectionPropertyValueRepresentation__opaque, } = select$1N();
22963
- const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2s();
22964
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
22965
- const { selections: PermissionsRepresentation__selections, opaque: PermissionsRepresentation__opaque, } = select$2r();
22994
+ const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2F();
22995
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
22996
+ const { selections: PermissionsRepresentation__selections, opaque: PermissionsRepresentation__opaque, } = select$2p();
22966
22997
  return {
22967
22998
  kind: 'Fragment',
22968
22999
  version: VERSION$t,
@@ -23206,7 +23237,7 @@ function equals$t(existing, incoming) {
23206
23237
  if (existing_createdBy === undefined || incoming_createdBy === undefined) {
23207
23238
  return false;
23208
23239
  }
23209
- if (!(equals$1E(existing_createdBy, incoming_createdBy))) {
23240
+ if (!(equals$1P(existing_createdBy, incoming_createdBy))) {
23210
23241
  return false;
23211
23242
  }
23212
23243
  }
@@ -23219,7 +23250,7 @@ function equals$t(existing, incoming) {
23219
23250
  if (existing_folder === undefined || incoming_folder === undefined) {
23220
23251
  return false;
23221
23252
  }
23222
- if (!(equals$1B(existing_folder, incoming_folder))) {
23253
+ if (!(equals$1z(existing_folder, incoming_folder))) {
23223
23254
  return false;
23224
23255
  }
23225
23256
  }
@@ -23253,7 +23284,7 @@ function equals$t(existing, incoming) {
23253
23284
  if (!(existing_lastModifiedBy === incoming_lastModifiedBy
23254
23285
  || (existing_lastModifiedBy != null &&
23255
23286
  incoming_lastModifiedBy != null &&
23256
- equals$1E(existing_lastModifiedBy, incoming_lastModifiedBy)))) {
23287
+ equals$1P(existing_lastModifiedBy, incoming_lastModifiedBy)))) {
23257
23288
  return false;
23258
23289
  }
23259
23290
  }
@@ -23282,7 +23313,7 @@ function equals$t(existing, incoming) {
23282
23313
  if (!(existing_permissions === incoming_permissions
23283
23314
  || (existing_permissions != null &&
23284
23315
  incoming_permissions != null &&
23285
- equals$1D(existing_permissions, incoming_permissions)))) {
23316
+ equals$1B(existing_permissions, incoming_permissions)))) {
23286
23317
  return false;
23287
23318
  }
23288
23319
  }
@@ -23295,7 +23326,7 @@ function equals$t(existing, incoming) {
23295
23326
  if (existing_targetConnector === undefined || incoming_targetConnector === undefined) {
23296
23327
  return false;
23297
23328
  }
23298
- if (!(equals$1B(existing_targetConnector, incoming_targetConnector))) {
23329
+ if (!(equals$1z(existing_targetConnector, incoming_targetConnector))) {
23299
23330
  return false;
23300
23331
  }
23301
23332
  }
@@ -23388,7 +23419,7 @@ function validate$w(obj, path = 'ReplicatedDatasetRepresentation') {
23388
23419
  if (obj.createdBy !== undefined) {
23389
23420
  const obj_createdBy = obj.createdBy;
23390
23421
  const path_createdBy = path + '.createdBy';
23391
- const referencepath_createdByValidationError = validate$2r(obj_createdBy, path_createdBy);
23422
+ const referencepath_createdByValidationError = validate$2D(obj_createdBy, path_createdBy);
23392
23423
  if (referencepath_createdByValidationError !== null) {
23393
23424
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_createdBy + '")\n';
23394
23425
  message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -23492,7 +23523,7 @@ function validate$w(obj, path = 'ReplicatedDatasetRepresentation') {
23492
23523
  const path_lastModifiedBy = path + '.lastModifiedBy';
23493
23524
  let obj_lastModifiedBy_union0 = null;
23494
23525
  const obj_lastModifiedBy_union0_error = (() => {
23495
- const referencepath_lastModifiedByValidationError = validate$2r(obj_lastModifiedBy, path_lastModifiedBy);
23526
+ const referencepath_lastModifiedByValidationError = validate$2D(obj_lastModifiedBy, path_lastModifiedBy);
23496
23527
  if (referencepath_lastModifiedByValidationError !== null) {
23497
23528
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_lastModifiedBy + '")\n';
23498
23529
  message += referencepath_lastModifiedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -23596,7 +23627,7 @@ function validate$w(obj, path = 'ReplicatedDatasetRepresentation') {
23596
23627
  const path_permissions = path + '.permissions';
23597
23628
  let obj_permissions_union0 = null;
23598
23629
  const obj_permissions_union0_error = (() => {
23599
- const referencepath_permissionsValidationError = validate$2q(obj_permissions, path_permissions);
23630
+ const referencepath_permissionsValidationError = validate$2o(obj_permissions, path_permissions);
23600
23631
  if (referencepath_permissionsValidationError !== null) {
23601
23632
  let message = 'Object doesn\'t match PermissionsRepresentation (at "' + path_permissions + '")\n';
23602
23633
  message += referencepath_permissionsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -23707,9 +23738,9 @@ function normalize$8(input, existing, path, luvio, store, timestamp) {
23707
23738
  }
23708
23739
  const select$E = function ReplicatedDatasetRepresentationSelect() {
23709
23740
  const { selections: AdvancedPropertyValueRepresentation__selections, opaque: AdvancedPropertyValueRepresentation__opaque, } = select$H();
23710
- const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2s();
23741
+ const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2F();
23711
23742
  const { selections: OutputSourceRepresentation__selections, opaque: OutputSourceRepresentation__opaque, } = select$G();
23712
- const { selections: PermissionsRepresentation__selections, opaque: PermissionsRepresentation__opaque, } = select$2r();
23743
+ const { selections: PermissionsRepresentation__selections, opaque: PermissionsRepresentation__opaque, } = select$2p();
23713
23744
  return {
23714
23745
  kind: 'Fragment',
23715
23746
  version: VERSION$s,
@@ -24165,7 +24196,7 @@ function equals$s(existing, incoming) {
24165
24196
  if (existing_createdBy === undefined || incoming_createdBy === undefined) {
24166
24197
  return false;
24167
24198
  }
24168
- if (!(equals$1E(existing_createdBy, incoming_createdBy))) {
24199
+ if (!(equals$1P(existing_createdBy, incoming_createdBy))) {
24169
24200
  return false;
24170
24201
  }
24171
24202
  }
@@ -24194,7 +24225,7 @@ function equals$s(existing, incoming) {
24194
24225
  if (!(existing_lastModifiedBy === incoming_lastModifiedBy
24195
24226
  || (existing_lastModifiedBy != null &&
24196
24227
  incoming_lastModifiedBy != null &&
24197
- equals$1E(existing_lastModifiedBy, incoming_lastModifiedBy)))) {
24228
+ equals$1P(existing_lastModifiedBy, incoming_lastModifiedBy)))) {
24198
24229
  return false;
24199
24230
  }
24200
24231
  }
@@ -24236,7 +24267,7 @@ function equals$s(existing, incoming) {
24236
24267
  if (!(existing_permissions === incoming_permissions
24237
24268
  || (existing_permissions != null &&
24238
24269
  incoming_permissions != null &&
24239
- equals$1D(existing_permissions, incoming_permissions)))) {
24270
+ equals$1B(existing_permissions, incoming_permissions)))) {
24240
24271
  return false;
24241
24272
  }
24242
24273
  }
@@ -25054,7 +25085,7 @@ function validate$t(obj, path = 'ReplicatedFieldCollectionRepresentation') {
25054
25085
  }
25055
25086
  const obj_replicatedDataset = obj.replicatedDataset;
25056
25087
  const path_replicatedDataset = path + '.replicatedDataset';
25057
- const referencepath_replicatedDatasetValidationError = validate$2o(obj_replicatedDataset, path_replicatedDataset);
25088
+ const referencepath_replicatedDatasetValidationError = validate$2m(obj_replicatedDataset, path_replicatedDataset);
25058
25089
  if (referencepath_replicatedDatasetValidationError !== null) {
25059
25090
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_replicatedDataset + '")\n';
25060
25091
  message += referencepath_replicatedDatasetValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -25083,7 +25114,7 @@ function normalize$6(input, existing, path, luvio, store, timestamp) {
25083
25114
  }
25084
25115
  const select$y = function ReplicatedFieldCollectionRepresentationSelect() {
25085
25116
  const { selections: ReplicatedFieldRepresentation__selections, opaque: ReplicatedFieldRepresentation__opaque, } = select$1A();
25086
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
25117
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
25087
25118
  return {
25088
25119
  kind: 'Fragment',
25089
25120
  version: VERSION$q,
@@ -25125,7 +25156,7 @@ function equals$q(existing, incoming) {
25125
25156
  }
25126
25157
  const existing_replicatedDataset = existing.replicatedDataset;
25127
25158
  const incoming_replicatedDataset = incoming.replicatedDataset;
25128
- if (!(equals$1B(existing_replicatedDataset, incoming_replicatedDataset))) {
25159
+ if (!(equals$1z(existing_replicatedDataset, incoming_replicatedDataset))) {
25129
25160
  return false;
25130
25161
  }
25131
25162
  return true;
@@ -25417,7 +25448,7 @@ function validate$r(obj, path = 'DatasetVersionReferenceRepresentation') {
25417
25448
  }
25418
25449
  const obj_dataset = obj.dataset;
25419
25450
  const path_dataset = path + '.dataset';
25420
- const referencepath_datasetValidationError = validate$2o(obj_dataset, path_dataset);
25451
+ const referencepath_datasetValidationError = validate$2m(obj_dataset, path_dataset);
25421
25452
  if (referencepath_datasetValidationError !== null) {
25422
25453
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_dataset + '")\n';
25423
25454
  message += referencepath_datasetValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -25437,7 +25468,7 @@ function validate$r(obj, path = 'DatasetVersionReferenceRepresentation') {
25437
25468
  return v_error === undefined ? null : v_error;
25438
25469
  }
25439
25470
  const select$v = function DatasetVersionReferenceRepresentationSelect() {
25440
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
25471
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
25441
25472
  return {
25442
25473
  kind: 'Fragment',
25443
25474
  version: VERSION$p,
@@ -25472,7 +25503,7 @@ function equals$p(existing, incoming) {
25472
25503
  }
25473
25504
  const existing_dataset = existing.dataset;
25474
25505
  const incoming_dataset = incoming.dataset;
25475
- if (!(equals$1B(existing_dataset, incoming_dataset))) {
25506
+ if (!(equals$1z(existing_dataset, incoming_dataset))) {
25476
25507
  return false;
25477
25508
  }
25478
25509
  return true;
@@ -26705,7 +26736,7 @@ function validate$f(obj, path = 'TemplateRepresentation') {
26705
26736
  const path_createdBy = path + '.createdBy';
26706
26737
  let obj_createdBy_union0 = null;
26707
26738
  const obj_createdBy_union0_error = (() => {
26708
- const referencepath_createdByValidationError = validate$2r(obj_createdBy, path_createdBy);
26739
+ const referencepath_createdByValidationError = validate$2D(obj_createdBy, path_createdBy);
26709
26740
  if (referencepath_createdByValidationError !== null) {
26710
26741
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_createdBy + '")\n';
26711
26742
  message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -26801,7 +26832,7 @@ function validate$f(obj, path = 'TemplateRepresentation') {
26801
26832
  const path_folderSource = path + '.folderSource';
26802
26833
  let obj_folderSource_union0 = null;
26803
26834
  const obj_folderSource_union0_error = (() => {
26804
- const referencepath_folderSourceValidationError = validate$2o(obj_folderSource, path_folderSource);
26835
+ const referencepath_folderSourceValidationError = validate$2m(obj_folderSource, path_folderSource);
26805
26836
  if (referencepath_folderSourceValidationError !== null) {
26806
26837
  let message = 'Object doesn\'t match AssetReferenceRepresentation (at "' + path_folderSource + '")\n';
26807
26838
  message += referencepath_folderSourceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -26848,7 +26879,7 @@ function validate$f(obj, path = 'TemplateRepresentation') {
26848
26879
  const path_lastModifiedBy = path + '.lastModifiedBy';
26849
26880
  let obj_lastModifiedBy_union0 = null;
26850
26881
  const obj_lastModifiedBy_union0_error = (() => {
26851
- const referencepath_lastModifiedByValidationError = validate$2r(obj_lastModifiedBy, path_lastModifiedBy);
26882
+ const referencepath_lastModifiedByValidationError = validate$2D(obj_lastModifiedBy, path_lastModifiedBy);
26852
26883
  if (referencepath_lastModifiedByValidationError !== null) {
26853
26884
  let message = 'Object doesn\'t match WaveUserRepresentation (at "' + path_lastModifiedBy + '")\n';
26854
26885
  message += referencepath_lastModifiedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -26992,9 +27023,9 @@ function normalize$4(input, existing, path, luvio, store, timestamp) {
26992
27023
  return input;
26993
27024
  }
26994
27025
  const select$i = function TemplateRepresentationSelect() {
26995
- const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2s();
27026
+ const { selections: WaveUserRepresentation__selections, opaque: WaveUserRepresentation__opaque, } = select$2F();
26996
27027
  const { selections: TemplateCustomAttributesRepresentation__selections, opaque: TemplateCustomAttributesRepresentation__opaque, } = select$o();
26997
- const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2p();
27028
+ const { selections: AssetReferenceRepresentation__selections, opaque: AssetReferenceRepresentation__opaque, } = select$2n();
26998
27029
  const { selections: TemplateIconsRepresentation__selections, opaque: TemplateIconsRepresentation__opaque, } = select$l();
26999
27030
  const { selections: TemplateReleaseRepresentation__selections, opaque: TemplateReleaseRepresentation__opaque, } = select$k();
27000
27031
  const { selections: VideoInfoRepresentation__selections, opaque: VideoInfoRepresentation__opaque, } = select$j();
@@ -27136,7 +27167,7 @@ function equals$d(existing, incoming) {
27136
27167
  if (!(existing_createdBy === incoming_createdBy
27137
27168
  || (existing_createdBy != null &&
27138
27169
  incoming_createdBy != null &&
27139
- equals$1E(existing_createdBy, incoming_createdBy)))) {
27170
+ equals$1P(existing_createdBy, incoming_createdBy)))) {
27140
27171
  return false;
27141
27172
  }
27142
27173
  const existing_createdDate = existing.createdDate;
@@ -27164,7 +27195,7 @@ function equals$d(existing, incoming) {
27164
27195
  if (!(existing_folderSource === incoming_folderSource
27165
27196
  || (existing_folderSource != null &&
27166
27197
  incoming_folderSource != null &&
27167
- equals$1B(existing_folderSource, incoming_folderSource)))) {
27198
+ equals$1z(existing_folderSource, incoming_folderSource)))) {
27168
27199
  return false;
27169
27200
  }
27170
27201
  const existing_icons = existing.icons;
@@ -27177,7 +27208,7 @@ function equals$d(existing, incoming) {
27177
27208
  if (!(existing_lastModifiedBy === incoming_lastModifiedBy
27178
27209
  || (existing_lastModifiedBy != null &&
27179
27210
  incoming_lastModifiedBy != null &&
27180
- equals$1E(existing_lastModifiedBy, incoming_lastModifiedBy)))) {
27211
+ equals$1P(existing_lastModifiedBy, incoming_lastModifiedBy)))) {
27181
27212
  return false;
27182
27213
  }
27183
27214
  const existing_lastModifiedDate = existing.lastModifiedDate;