@salesforce/lds-adapters-industries-recordaggregation 1.352.0 → 1.353.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -506,7 +506,7 @@ function equals$m(existing, incoming) {
506
506
  return true;
507
507
  }
508
508
 
509
- const VERSION$l = "c03cef456fdd47750fce35e6fdf8a837";
509
+ const VERSION$l = "ec7444b32b8111566bf44c407dfcb42e";
510
510
  function validate$m(obj, path = 'RecordRollupDefinitionLastUpdatedDetailsOutputRepresentation') {
511
511
  const v_error = (() => {
512
512
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -522,6 +522,13 @@ function validate$m(obj, path = 'RecordRollupDefinitionLastUpdatedDetailsOutputR
522
522
  return new TypeError('Expected "string" but received "' + typeof obj_errorType + '" (at "' + path_errorType + '")');
523
523
  }
524
524
  }
525
+ if (obj.processingMode !== undefined) {
526
+ const obj_processingMode = obj.processingMode;
527
+ const path_processingMode = path + '.processingMode';
528
+ if (typeof obj_processingMode !== 'string') {
529
+ return new TypeError('Expected "string" but received "' + typeof obj_processingMode + '" (at "' + path_processingMode + '")');
530
+ }
531
+ }
525
532
  })();
526
533
  return v_error === undefined ? null : v_error;
527
534
  }
@@ -540,6 +547,11 @@ const select$t = function RecordRollupDefinitionLastUpdatedDetailsOutputRepresen
540
547
  name: 'errorType',
541
548
  kind: 'Scalar',
542
549
  required: false
550
+ },
551
+ {
552
+ name: 'processingMode',
553
+ kind: 'Scalar',
554
+ required: false
543
555
  }
544
556
  ]
545
557
  };
@@ -558,6 +570,19 @@ function equals$l(existing, incoming) {
558
570
  return false;
559
571
  }
560
572
  }
573
+ const existing_processingMode = existing.processingMode;
574
+ const incoming_processingMode = incoming.processingMode;
575
+ // if at least one of these optionals is defined
576
+ if (existing_processingMode !== undefined || incoming_processingMode !== undefined) {
577
+ // if one of these is not defined we know the other is defined and therefore
578
+ // not equal
579
+ if (existing_processingMode === undefined || incoming_processingMode === undefined) {
580
+ return false;
581
+ }
582
+ if (!(existing_processingMode === incoming_processingMode)) {
583
+ return false;
584
+ }
585
+ }
561
586
  const existing_epochTime = existing.epochTime;
562
587
  const incoming_epochTime = incoming.epochTime;
563
588
  // if at least one of these optionals is defined
@@ -3528,7 +3553,7 @@ function equals$3(existing, incoming) {
3528
3553
  return true;
3529
3554
  }
3530
3555
 
3531
- const VERSION$2 = "20b032d9f7418ea2f104258df8163011";
3556
+ const VERSION$2 = "3f96fe3b7f6f6b28852304ac9f5bb831";
3532
3557
  function validate$2(obj, path = 'RecordRollupResultLastUpdatedDetailsOutputRepresentation') {
3533
3558
  const v_error = (() => {
3534
3559
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -3544,6 +3569,13 @@ function validate$2(obj, path = 'RecordRollupResultLastUpdatedDetailsOutputRepre
3544
3569
  return new TypeError('Expected "string" but received "' + typeof obj_errorType + '" (at "' + path_errorType + '")');
3545
3570
  }
3546
3571
  }
3572
+ if (obj.processingMode !== undefined) {
3573
+ const obj_processingMode = obj.processingMode;
3574
+ const path_processingMode = path + '.processingMode';
3575
+ if (typeof obj_processingMode !== 'string') {
3576
+ return new TypeError('Expected "string" but received "' + typeof obj_processingMode + '" (at "' + path_processingMode + '")');
3577
+ }
3578
+ }
3547
3579
  })();
3548
3580
  return v_error === undefined ? null : v_error;
3549
3581
  }
@@ -3562,6 +3594,11 @@ const select$3 = function RecordRollupResultLastUpdatedDetailsOutputRepresentati
3562
3594
  name: 'errorType',
3563
3595
  kind: 'Scalar',
3564
3596
  required: false
3597
+ },
3598
+ {
3599
+ name: 'processingMode',
3600
+ kind: 'Scalar',
3601
+ required: false
3565
3602
  }
3566
3603
  ]
3567
3604
  };
@@ -3580,6 +3617,19 @@ function equals$2(existing, incoming) {
3580
3617
  return false;
3581
3618
  }
3582
3619
  }
3620
+ const existing_processingMode = existing.processingMode;
3621
+ const incoming_processingMode = incoming.processingMode;
3622
+ // if at least one of these optionals is defined
3623
+ if (existing_processingMode !== undefined || incoming_processingMode !== undefined) {
3624
+ // if one of these is not defined we know the other is defined and therefore
3625
+ // not equal
3626
+ if (existing_processingMode === undefined || incoming_processingMode === undefined) {
3627
+ return false;
3628
+ }
3629
+ if (!(existing_processingMode === incoming_processingMode)) {
3630
+ return false;
3631
+ }
3632
+ }
3583
3633
  const existing_epochTime = existing.epochTime;
3584
3634
  const incoming_epochTime = incoming.epochTime;
3585
3635
  // if at least one of these optionals is defined
@@ -1,5 +1,5 @@
1
1
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "c03cef456fdd47750fce35e6fdf8a837";
2
+ export declare const VERSION = "ec7444b32b8111566bf44c407dfcb42e";
3
3
  export declare function validate(obj: any, path?: string): TypeError | null;
4
4
  export declare const RepresentationType: string;
5
5
  export declare function normalize(input: RecordRollupDefinitionLastUpdatedDetailsOutputRepresentation, existing: RecordRollupDefinitionLastUpdatedDetailsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RecordRollupDefinitionLastUpdatedDetailsOutputRepresentationNormalized;
@@ -18,6 +18,8 @@ export interface RecordRollupDefinitionLastUpdatedDetailsOutputRepresentationNor
18
18
  epochTime?: number;
19
19
  /** The type of error encountered while fetching the last updated record rollup definition details. */
20
20
  errorType?: string;
21
+ /** The record rollup mode which generated the last updated details - Batch or On-Demand. */
22
+ processingMode?: string;
21
23
  }
22
24
  /**
23
25
  * Represents the last updated information of the record rollup results.
@@ -28,4 +30,5 @@ export interface RecordRollupDefinitionLastUpdatedDetailsOutputRepresentationNor
28
30
  export interface RecordRollupDefinitionLastUpdatedDetailsOutputRepresentation {
29
31
  epochTime?: number;
30
32
  errorType?: string;
33
+ processingMode?: string;
31
34
  }
@@ -1,5 +1,5 @@
1
1
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "20b032d9f7418ea2f104258df8163011";
2
+ export declare const VERSION = "3f96fe3b7f6f6b28852304ac9f5bb831";
3
3
  export declare function validate(obj: any, path?: string): TypeError | null;
4
4
  export declare const RepresentationType: string;
5
5
  export declare function normalize(input: RecordRollupResultLastUpdatedDetailsOutputRepresentation, existing: RecordRollupResultLastUpdatedDetailsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RecordRollupResultLastUpdatedDetailsOutputRepresentationNormalized;
@@ -18,6 +18,8 @@ export interface RecordRollupResultLastUpdatedDetailsOutputRepresentationNormali
18
18
  epochTime?: number;
19
19
  /** The type of error encountered while fetching the last updated record rollup definition details. */
20
20
  errorType?: string;
21
+ /** The record rollup mode which generated the last updated details - Batch or On-Demand. */
22
+ processingMode?: string;
21
23
  }
22
24
  /**
23
25
  * Represents the last updated information of the record rollup results.
@@ -28,4 +30,5 @@ export interface RecordRollupResultLastUpdatedDetailsOutputRepresentationNormali
28
30
  export interface RecordRollupResultLastUpdatedDetailsOutputRepresentation {
29
31
  epochTime?: number;
30
32
  errorType?: string;
33
+ processingMode?: string;
31
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-recordaggregation",
3
- "version": "1.352.0",
3
+ "version": "1.353.0",
4
4
  "description": "",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/industries-recordaggregation.js",
@@ -40,10 +40,10 @@
40
40
  "test:unit": "jest"
41
41
  },
42
42
  "dependencies": {
43
- "@salesforce/lds-bindings": "^1.352.0"
43
+ "@salesforce/lds-bindings": "^1.353.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.352.0"
46
+ "@salesforce/lds-compiler-plugins": "^1.353.0"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {
package/sfdc/index.js CHANGED
@@ -1010,7 +1010,7 @@ function equals$h(existing, incoming) {
1010
1010
  return true;
1011
1011
  }
1012
1012
 
1013
- const VERSION$g = "c03cef456fdd47750fce35e6fdf8a837";
1013
+ const VERSION$g = "ec7444b32b8111566bf44c407dfcb42e";
1014
1014
  function validate$m(obj, path = 'RecordRollupDefinitionLastUpdatedDetailsOutputRepresentation') {
1015
1015
  const v_error = (() => {
1016
1016
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -1026,6 +1026,13 @@ function validate$m(obj, path = 'RecordRollupDefinitionLastUpdatedDetailsOutputR
1026
1026
  return new TypeError('Expected "string" but received "' + typeof obj_errorType + '" (at "' + path_errorType + '")');
1027
1027
  }
1028
1028
  }
1029
+ if (obj.processingMode !== undefined) {
1030
+ const obj_processingMode = obj.processingMode;
1031
+ const path_processingMode = path + '.processingMode';
1032
+ if (typeof obj_processingMode !== 'string') {
1033
+ return new TypeError('Expected "string" but received "' + typeof obj_processingMode + '" (at "' + path_processingMode + '")');
1034
+ }
1035
+ }
1029
1036
  })();
1030
1037
  return v_error === undefined ? null : v_error;
1031
1038
  }
@@ -1044,6 +1051,11 @@ const select$p = function RecordRollupDefinitionLastUpdatedDetailsOutputRepresen
1044
1051
  name: 'errorType',
1045
1052
  kind: 'Scalar',
1046
1053
  required: false
1054
+ },
1055
+ {
1056
+ name: 'processingMode',
1057
+ kind: 'Scalar',
1058
+ required: false
1047
1059
  }
1048
1060
  ]
1049
1061
  };
@@ -1062,6 +1074,19 @@ function equals$g(existing, incoming) {
1062
1074
  return false;
1063
1075
  }
1064
1076
  }
1077
+ const existing_processingMode = existing.processingMode;
1078
+ const incoming_processingMode = incoming.processingMode;
1079
+ // if at least one of these optionals is defined
1080
+ if (existing_processingMode !== undefined || incoming_processingMode !== undefined) {
1081
+ // if one of these is not defined we know the other is defined and therefore
1082
+ // not equal
1083
+ if (existing_processingMode === undefined || incoming_processingMode === undefined) {
1084
+ return false;
1085
+ }
1086
+ if (!(existing_processingMode === incoming_processingMode)) {
1087
+ return false;
1088
+ }
1089
+ }
1065
1090
  const existing_epochTime = existing.epochTime;
1066
1091
  const incoming_epochTime = incoming.epochTime;
1067
1092
  // if at least one of these optionals is defined
@@ -3040,7 +3065,7 @@ function equals$5(existing, incoming) {
3040
3065
  return true;
3041
3066
  }
3042
3067
 
3043
- const VERSION$4 = "20b032d9f7418ea2f104258df8163011";
3068
+ const VERSION$4 = "3f96fe3b7f6f6b28852304ac9f5bb831";
3044
3069
  function validate$9(obj, path = 'RecordRollupResultLastUpdatedDetailsOutputRepresentation') {
3045
3070
  const v_error = (() => {
3046
3071
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -3056,6 +3081,13 @@ function validate$9(obj, path = 'RecordRollupResultLastUpdatedDetailsOutputRepre
3056
3081
  return new TypeError('Expected "string" but received "' + typeof obj_errorType + '" (at "' + path_errorType + '")');
3057
3082
  }
3058
3083
  }
3084
+ if (obj.processingMode !== undefined) {
3085
+ const obj_processingMode = obj.processingMode;
3086
+ const path_processingMode = path + '.processingMode';
3087
+ if (typeof obj_processingMode !== 'string') {
3088
+ return new TypeError('Expected "string" but received "' + typeof obj_processingMode + '" (at "' + path_processingMode + '")');
3089
+ }
3090
+ }
3059
3091
  })();
3060
3092
  return v_error === undefined ? null : v_error;
3061
3093
  }
@@ -3074,6 +3106,11 @@ const select$7 = function RecordRollupResultLastUpdatedDetailsOutputRepresentati
3074
3106
  name: 'errorType',
3075
3107
  kind: 'Scalar',
3076
3108
  required: false
3109
+ },
3110
+ {
3111
+ name: 'processingMode',
3112
+ kind: 'Scalar',
3113
+ required: false
3077
3114
  }
3078
3115
  ]
3079
3116
  };
@@ -3092,6 +3129,19 @@ function equals$4(existing, incoming) {
3092
3129
  return false;
3093
3130
  }
3094
3131
  }
3132
+ const existing_processingMode = existing.processingMode;
3133
+ const incoming_processingMode = incoming.processingMode;
3134
+ // if at least one of these optionals is defined
3135
+ if (existing_processingMode !== undefined || incoming_processingMode !== undefined) {
3136
+ // if one of these is not defined we know the other is defined and therefore
3137
+ // not equal
3138
+ if (existing_processingMode === undefined || incoming_processingMode === undefined) {
3139
+ return false;
3140
+ }
3141
+ if (!(existing_processingMode === incoming_processingMode)) {
3142
+ return false;
3143
+ }
3144
+ }
3095
3145
  const existing_epochTime = existing.epochTime;
3096
3146
  const incoming_epochTime = incoming.epochTime;
3097
3147
  // if at least one of these optionals is defined
@@ -4068,4 +4118,4 @@ withDefaultLuvio((luvio) => {
4068
4118
  });
4069
4119
 
4070
4120
  export { deleteRecordAggregationDefinition, getBulkRecordRollupDefinitionDetails, getRecordAggregationApplicableObjects, getRecordAggregationApplicableObjects_imperative, getRecordAggregationDefinition, getRecordAggregationDefinitionNotifyChange, getRecordAggregationDefinition_imperative, getRecordAggregationEntityApplicableFields, getRecordAggregationEntityApplicableFields_imperative, patchRecordAggregationDefinition, performBulkRecordRollupSyncExecution, postGenerateRecordRollupResult, postRecordAggregationCreation, putRecordAggregationDefinition };
4071
- // version: 1.352.0-abe5da40fa
4121
+ // version: 1.353.0-330d59cfcb
package/src/raml/api.raml CHANGED
@@ -488,6 +488,10 @@ types:
488
488
  format: double
489
489
  type: number
490
490
  required: false
491
+ processingMode:
492
+ description: The record rollup mode which generated the last updated details - Batch or On-Demand.
493
+ type: string
494
+ required: false
491
495
  RecordRollupDefinitionLastUpdatedDetailsOutputRepresentation:
492
496
  description: Represents the last updated information of the record rollup results.
493
497
  type: object
@@ -502,6 +506,10 @@ types:
502
506
  format: double
503
507
  type: number
504
508
  required: false
509
+ processingMode:
510
+ description: The record rollup mode which generated the last updated details - Batch or On-Demand.
511
+ type: string
512
+ required: false
505
513
  RecordRollupResultRowOutputRepresentation:
506
514
  description: Represents the output for fetching Record Rollup Results
507
515
  type: object