@salesforce/lds-worker-api 1.158.1 → 1.159.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.
- package/dist/sfdc/es/ldsWorkerApi.js +1 -1
- package/dist/standalone/es/lds-worker-api.js +298 -2503
- package/dist/standalone/umd/lds-worker-api.js +298 -2503
- package/package.json +2 -2
|
@@ -3678,7 +3678,7 @@
|
|
|
3678
3678
|
return this.environment.buildStructuredKey(namespace, representationName, idValues);
|
|
3679
3679
|
}
|
|
3680
3680
|
}
|
|
3681
|
-
// engine version: 0.143.
|
|
3681
|
+
// engine version: 0.143.5-e5a21255
|
|
3682
3682
|
|
|
3683
3683
|
/**
|
|
3684
3684
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -3805,7 +3805,7 @@
|
|
|
3805
3805
|
}
|
|
3806
3806
|
callbacks.push(callback);
|
|
3807
3807
|
}
|
|
3808
|
-
// version: 1.
|
|
3808
|
+
// version: 1.159.0-f2aa2c085
|
|
3809
3809
|
|
|
3810
3810
|
// TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
|
|
3811
3811
|
function instrumentAdapter$1(createFunction, _metadata) {
|
|
@@ -15238,7 +15238,7 @@
|
|
|
15238
15238
|
updateReferenceMapWithKnownKey(ast, luvioDocumentNode);
|
|
15239
15239
|
return luvioDocumentNode;
|
|
15240
15240
|
}
|
|
15241
|
-
// version: 1.
|
|
15241
|
+
// version: 1.159.0-f2aa2c085
|
|
15242
15242
|
|
|
15243
15243
|
function unwrap(data) {
|
|
15244
15244
|
// The lwc-luvio bindings import a function from lwc called "unwrap".
|
|
@@ -16151,7 +16151,7 @@
|
|
|
16151
16151
|
const { apiFamily, name } = metadata;
|
|
16152
16152
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
16153
16153
|
}
|
|
16154
|
-
// version: 1.
|
|
16154
|
+
// version: 1.159.0-f2aa2c085
|
|
16155
16155
|
|
|
16156
16156
|
/**
|
|
16157
16157
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -16234,7 +16234,7 @@
|
|
|
16234
16234
|
({
|
|
16235
16235
|
state: FragmentReadResultState.Missing,
|
|
16236
16236
|
});
|
|
16237
|
-
// engine version: 0.143.
|
|
16237
|
+
// engine version: 0.143.5-e5a21255
|
|
16238
16238
|
|
|
16239
16239
|
const { keys: ObjectKeys$3, create: ObjectCreate$3 } = Object;
|
|
16240
16240
|
|
|
@@ -44022,7 +44022,7 @@
|
|
|
44022
44022
|
dropFunction: instrumentation$2.notifyRecordUpdateAvailableDropped,
|
|
44023
44023
|
});
|
|
44024
44024
|
});
|
|
44025
|
-
// version: 1.
|
|
44025
|
+
// version: 1.159.0-5eb16a449
|
|
44026
44026
|
|
|
44027
44027
|
var caseSensitiveUserId = '005B0000000GR4OIAW';
|
|
44028
44028
|
|
|
@@ -60056,7 +60056,7 @@
|
|
|
60056
60056
|
id: '@salesforce/lds-network-adapter',
|
|
60057
60057
|
instrument: instrument$1,
|
|
60058
60058
|
});
|
|
60059
|
-
// version: 1.
|
|
60059
|
+
// version: 1.159.0-f2aa2c085
|
|
60060
60060
|
|
|
60061
60061
|
const { create: create$2, keys: keys$2 } = Object;
|
|
60062
60062
|
const { stringify: stringify$1, parse: parse$1 } = JSON;
|
|
@@ -60072,6 +60072,17 @@
|
|
|
60072
60072
|
return fragments;
|
|
60073
60073
|
}
|
|
60074
60074
|
|
|
60075
|
+
function buildFieldState(state, fullPath, data) {
|
|
60076
|
+
return {
|
|
60077
|
+
...state,
|
|
60078
|
+
path: {
|
|
60079
|
+
parent: null,
|
|
60080
|
+
propertyName: null,
|
|
60081
|
+
fullPath,
|
|
60082
|
+
},
|
|
60083
|
+
data,
|
|
60084
|
+
};
|
|
60085
|
+
}
|
|
60075
60086
|
function serializeFieldArguments(argumentNodes, variables) {
|
|
60076
60087
|
const mutableArgumentNodes = Object.assign([], argumentNodes);
|
|
60077
60088
|
return `args__(${mutableArgumentNodes
|
|
@@ -61063,80 +61074,32 @@
|
|
|
61063
61074
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
61064
61075
|
switch (fieldType.typename) {
|
|
61065
61076
|
case 'DoubleValue': {
|
|
61066
|
-
const avgState =
|
|
61067
|
-
...state,
|
|
61068
|
-
path: {
|
|
61069
|
-
parent: null,
|
|
61070
|
-
propertyName: null,
|
|
61071
|
-
fullPath: rootKey + '__' + fieldKey
|
|
61072
|
-
},
|
|
61073
|
-
data: fieldData,
|
|
61074
|
-
};
|
|
61077
|
+
const avgState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
61075
61078
|
cacheKeySink.merge(getTypeCacheKeys$16(requestedField, avgState));
|
|
61076
61079
|
break;
|
|
61077
61080
|
}
|
|
61078
61081
|
case 'LongValue': {
|
|
61079
|
-
const countState =
|
|
61080
|
-
...state,
|
|
61081
|
-
path: {
|
|
61082
|
-
parent: null,
|
|
61083
|
-
propertyName: null,
|
|
61084
|
-
fullPath: rootKey + '__' + fieldKey
|
|
61085
|
-
},
|
|
61086
|
-
data: fieldData,
|
|
61087
|
-
};
|
|
61082
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
61088
61083
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
61089
61084
|
break;
|
|
61090
61085
|
}
|
|
61091
61086
|
case 'LongValue': {
|
|
61092
|
-
const countDistinctState =
|
|
61093
|
-
...state,
|
|
61094
|
-
path: {
|
|
61095
|
-
parent: null,
|
|
61096
|
-
propertyName: null,
|
|
61097
|
-
fullPath: rootKey + '__' + fieldKey
|
|
61098
|
-
},
|
|
61099
|
-
data: fieldData,
|
|
61100
|
-
};
|
|
61087
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
61101
61088
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
61102
61089
|
break;
|
|
61103
61090
|
}
|
|
61104
61091
|
case 'PercentValue': {
|
|
61105
|
-
const maxState =
|
|
61106
|
-
...state,
|
|
61107
|
-
path: {
|
|
61108
|
-
parent: null,
|
|
61109
|
-
propertyName: null,
|
|
61110
|
-
fullPath: rootKey + '__' + fieldKey
|
|
61111
|
-
},
|
|
61112
|
-
data: fieldData,
|
|
61113
|
-
};
|
|
61092
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
61114
61093
|
cacheKeySink.merge(getTypeCacheKeys$14(requestedField, maxState));
|
|
61115
61094
|
break;
|
|
61116
61095
|
}
|
|
61117
61096
|
case 'PercentValue': {
|
|
61118
|
-
const minState =
|
|
61119
|
-
...state,
|
|
61120
|
-
path: {
|
|
61121
|
-
parent: null,
|
|
61122
|
-
propertyName: null,
|
|
61123
|
-
fullPath: rootKey + '__' + fieldKey
|
|
61124
|
-
},
|
|
61125
|
-
data: fieldData,
|
|
61126
|
-
};
|
|
61097
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
61127
61098
|
cacheKeySink.merge(getTypeCacheKeys$14(requestedField, minState));
|
|
61128
61099
|
break;
|
|
61129
61100
|
}
|
|
61130
61101
|
case 'PercentValue': {
|
|
61131
|
-
const sumState =
|
|
61132
|
-
...state,
|
|
61133
|
-
path: {
|
|
61134
|
-
parent: null,
|
|
61135
|
-
propertyName: null,
|
|
61136
|
-
fullPath: rootKey + '__' + fieldKey
|
|
61137
|
-
},
|
|
61138
|
-
data: fieldData,
|
|
61139
|
-
};
|
|
61102
|
+
const sumState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
61140
61103
|
cacheKeySink.merge(getTypeCacheKeys$14(requestedField, sumState));
|
|
61141
61104
|
break;
|
|
61142
61105
|
}
|
|
@@ -61227,41 +61190,17 @@
|
|
|
61227
61190
|
break;
|
|
61228
61191
|
}
|
|
61229
61192
|
case 'DoubleValue': {
|
|
61230
|
-
const DoubleValueState =
|
|
61231
|
-
...state,
|
|
61232
|
-
path: {
|
|
61233
|
-
parent: null,
|
|
61234
|
-
propertyName: null,
|
|
61235
|
-
fullPath: parentKey + '__' + fieldKey
|
|
61236
|
-
},
|
|
61237
|
-
data: fieldData,
|
|
61238
|
-
};
|
|
61193
|
+
const DoubleValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
61239
61194
|
sink[fieldKey] = ingest$13(requestedField, DoubleValueState);
|
|
61240
61195
|
break;
|
|
61241
61196
|
}
|
|
61242
61197
|
case 'LongValue': {
|
|
61243
|
-
const LongValueState =
|
|
61244
|
-
...state,
|
|
61245
|
-
path: {
|
|
61246
|
-
parent: null,
|
|
61247
|
-
propertyName: null,
|
|
61248
|
-
fullPath: parentKey + '__' + fieldKey
|
|
61249
|
-
},
|
|
61250
|
-
data: fieldData,
|
|
61251
|
-
};
|
|
61198
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
61252
61199
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
61253
61200
|
break;
|
|
61254
61201
|
}
|
|
61255
61202
|
case 'PercentValue': {
|
|
61256
|
-
const PercentValueState =
|
|
61257
|
-
...state,
|
|
61258
|
-
path: {
|
|
61259
|
-
parent: null,
|
|
61260
|
-
propertyName: null,
|
|
61261
|
-
fullPath: parentKey + '__' + fieldKey
|
|
61262
|
-
},
|
|
61263
|
-
data: fieldData,
|
|
61264
|
-
};
|
|
61203
|
+
const PercentValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
61265
61204
|
sink[fieldKey] = ingest$11(requestedField, PercentValueState);
|
|
61266
61205
|
break;
|
|
61267
61206
|
}
|
|
@@ -61673,67 +61612,27 @@
|
|
|
61673
61612
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
61674
61613
|
switch (fieldType.typename) {
|
|
61675
61614
|
case 'LongValue': {
|
|
61676
|
-
const countState =
|
|
61677
|
-
...state,
|
|
61678
|
-
path: {
|
|
61679
|
-
parent: null,
|
|
61680
|
-
propertyName: null,
|
|
61681
|
-
fullPath: rootKey + '__' + fieldKey
|
|
61682
|
-
},
|
|
61683
|
-
data: fieldData,
|
|
61684
|
-
};
|
|
61615
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
61685
61616
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
61686
61617
|
break;
|
|
61687
61618
|
}
|
|
61688
61619
|
case 'LongValue': {
|
|
61689
|
-
const countDistinctState =
|
|
61690
|
-
...state,
|
|
61691
|
-
path: {
|
|
61692
|
-
parent: null,
|
|
61693
|
-
propertyName: null,
|
|
61694
|
-
fullPath: rootKey + '__' + fieldKey
|
|
61695
|
-
},
|
|
61696
|
-
data: fieldData,
|
|
61697
|
-
};
|
|
61620
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
61698
61621
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
61699
61622
|
break;
|
|
61700
61623
|
}
|
|
61701
61624
|
case 'IntValue': {
|
|
61702
|
-
const groupingState =
|
|
61703
|
-
...state,
|
|
61704
|
-
path: {
|
|
61705
|
-
parent: null,
|
|
61706
|
-
propertyName: null,
|
|
61707
|
-
fullPath: rootKey + '__' + fieldKey
|
|
61708
|
-
},
|
|
61709
|
-
data: fieldData,
|
|
61710
|
-
};
|
|
61625
|
+
const groupingState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
61711
61626
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, groupingState));
|
|
61712
61627
|
break;
|
|
61713
61628
|
}
|
|
61714
61629
|
case 'StringValue': {
|
|
61715
|
-
const maxState =
|
|
61716
|
-
...state,
|
|
61717
|
-
path: {
|
|
61718
|
-
parent: null,
|
|
61719
|
-
propertyName: null,
|
|
61720
|
-
fullPath: rootKey + '__' + fieldKey
|
|
61721
|
-
},
|
|
61722
|
-
data: fieldData,
|
|
61723
|
-
};
|
|
61630
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
61724
61631
|
cacheKeySink.merge(getTypeCacheKeys$11(requestedField, maxState));
|
|
61725
61632
|
break;
|
|
61726
61633
|
}
|
|
61727
61634
|
case 'StringValue': {
|
|
61728
|
-
const minState =
|
|
61729
|
-
...state,
|
|
61730
|
-
path: {
|
|
61731
|
-
parent: null,
|
|
61732
|
-
propertyName: null,
|
|
61733
|
-
fullPath: rootKey + '__' + fieldKey
|
|
61734
|
-
},
|
|
61735
|
-
data: fieldData,
|
|
61736
|
-
};
|
|
61635
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
61737
61636
|
cacheKeySink.merge(getTypeCacheKeys$11(requestedField, minState));
|
|
61738
61637
|
break;
|
|
61739
61638
|
}
|
|
@@ -61814,41 +61713,17 @@
|
|
|
61814
61713
|
break;
|
|
61815
61714
|
}
|
|
61816
61715
|
case 'LongValue': {
|
|
61817
|
-
const LongValueState =
|
|
61818
|
-
...state,
|
|
61819
|
-
path: {
|
|
61820
|
-
parent: null,
|
|
61821
|
-
propertyName: null,
|
|
61822
|
-
fullPath: parentKey + '__' + fieldKey
|
|
61823
|
-
},
|
|
61824
|
-
data: fieldData,
|
|
61825
|
-
};
|
|
61716
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
61826
61717
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
61827
61718
|
break;
|
|
61828
61719
|
}
|
|
61829
61720
|
case 'IntValue': {
|
|
61830
|
-
const IntValueState =
|
|
61831
|
-
...state,
|
|
61832
|
-
path: {
|
|
61833
|
-
parent: null,
|
|
61834
|
-
propertyName: null,
|
|
61835
|
-
fullPath: parentKey + '__' + fieldKey
|
|
61836
|
-
},
|
|
61837
|
-
data: fieldData,
|
|
61838
|
-
};
|
|
61721
|
+
const IntValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
61839
61722
|
sink[fieldKey] = ingest$$(requestedField, IntValueState);
|
|
61840
61723
|
break;
|
|
61841
61724
|
}
|
|
61842
61725
|
case 'StringValue': {
|
|
61843
|
-
const StringValueState =
|
|
61844
|
-
...state,
|
|
61845
|
-
path: {
|
|
61846
|
-
parent: null,
|
|
61847
|
-
propertyName: null,
|
|
61848
|
-
fullPath: parentKey + '__' + fieldKey
|
|
61849
|
-
},
|
|
61850
|
-
data: fieldData,
|
|
61851
|
-
};
|
|
61726
|
+
const StringValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
61852
61727
|
sink[fieldKey] = ingest$_(requestedField, StringValueState);
|
|
61853
61728
|
break;
|
|
61854
61729
|
}
|
|
@@ -62324,210 +62199,82 @@
|
|
|
62324
62199
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
62325
62200
|
switch (fieldType.typename) {
|
|
62326
62201
|
case 'DateFunctionAggregation': {
|
|
62327
|
-
const calendarMonthState =
|
|
62328
|
-
...state,
|
|
62329
|
-
path: {
|
|
62330
|
-
parent: null,
|
|
62331
|
-
propertyName: null,
|
|
62332
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62333
|
-
},
|
|
62334
|
-
data: fieldData,
|
|
62335
|
-
};
|
|
62202
|
+
const calendarMonthState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62336
62203
|
cacheKeySink.merge(getTypeCacheKeys$$(requestedField, calendarMonthState));
|
|
62337
62204
|
break;
|
|
62338
62205
|
}
|
|
62339
62206
|
case 'DateFunctionAggregation': {
|
|
62340
|
-
const calendarQuarterState =
|
|
62341
|
-
...state,
|
|
62342
|
-
path: {
|
|
62343
|
-
parent: null,
|
|
62344
|
-
propertyName: null,
|
|
62345
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62346
|
-
},
|
|
62347
|
-
data: fieldData,
|
|
62348
|
-
};
|
|
62207
|
+
const calendarQuarterState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62349
62208
|
cacheKeySink.merge(getTypeCacheKeys$$(requestedField, calendarQuarterState));
|
|
62350
62209
|
break;
|
|
62351
62210
|
}
|
|
62352
62211
|
case 'DateFunctionAggregation': {
|
|
62353
|
-
const calendarYearState =
|
|
62354
|
-
...state,
|
|
62355
|
-
path: {
|
|
62356
|
-
parent: null,
|
|
62357
|
-
propertyName: null,
|
|
62358
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62359
|
-
},
|
|
62360
|
-
data: fieldData,
|
|
62361
|
-
};
|
|
62212
|
+
const calendarYearState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62362
62213
|
cacheKeySink.merge(getTypeCacheKeys$$(requestedField, calendarYearState));
|
|
62363
62214
|
break;
|
|
62364
62215
|
}
|
|
62365
62216
|
case 'LongValue': {
|
|
62366
|
-
const countState =
|
|
62367
|
-
...state,
|
|
62368
|
-
path: {
|
|
62369
|
-
parent: null,
|
|
62370
|
-
propertyName: null,
|
|
62371
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62372
|
-
},
|
|
62373
|
-
data: fieldData,
|
|
62374
|
-
};
|
|
62217
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62375
62218
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
62376
62219
|
break;
|
|
62377
62220
|
}
|
|
62378
62221
|
case 'LongValue': {
|
|
62379
|
-
const countDistinctState =
|
|
62380
|
-
...state,
|
|
62381
|
-
path: {
|
|
62382
|
-
parent: null,
|
|
62383
|
-
propertyName: null,
|
|
62384
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62385
|
-
},
|
|
62386
|
-
data: fieldData,
|
|
62387
|
-
};
|
|
62222
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62388
62223
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
62389
62224
|
break;
|
|
62390
62225
|
}
|
|
62391
62226
|
case 'DateFunctionAggregation': {
|
|
62392
|
-
const dayInMonthState =
|
|
62393
|
-
...state,
|
|
62394
|
-
path: {
|
|
62395
|
-
parent: null,
|
|
62396
|
-
propertyName: null,
|
|
62397
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62398
|
-
},
|
|
62399
|
-
data: fieldData,
|
|
62400
|
-
};
|
|
62227
|
+
const dayInMonthState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62401
62228
|
cacheKeySink.merge(getTypeCacheKeys$$(requestedField, dayInMonthState));
|
|
62402
62229
|
break;
|
|
62403
62230
|
}
|
|
62404
62231
|
case 'DateFunctionAggregation': {
|
|
62405
|
-
const dayInWeekState =
|
|
62406
|
-
...state,
|
|
62407
|
-
path: {
|
|
62408
|
-
parent: null,
|
|
62409
|
-
propertyName: null,
|
|
62410
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62411
|
-
},
|
|
62412
|
-
data: fieldData,
|
|
62413
|
-
};
|
|
62232
|
+
const dayInWeekState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62414
62233
|
cacheKeySink.merge(getTypeCacheKeys$$(requestedField, dayInWeekState));
|
|
62415
62234
|
break;
|
|
62416
62235
|
}
|
|
62417
62236
|
case 'DateFunctionAggregation': {
|
|
62418
|
-
const dayInYearState =
|
|
62419
|
-
...state,
|
|
62420
|
-
path: {
|
|
62421
|
-
parent: null,
|
|
62422
|
-
propertyName: null,
|
|
62423
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62424
|
-
},
|
|
62425
|
-
data: fieldData,
|
|
62426
|
-
};
|
|
62237
|
+
const dayInYearState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62427
62238
|
cacheKeySink.merge(getTypeCacheKeys$$(requestedField, dayInYearState));
|
|
62428
62239
|
break;
|
|
62429
62240
|
}
|
|
62430
62241
|
case 'DateFunctionAggregation': {
|
|
62431
|
-
const fiscalMonthState =
|
|
62432
|
-
...state,
|
|
62433
|
-
path: {
|
|
62434
|
-
parent: null,
|
|
62435
|
-
propertyName: null,
|
|
62436
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62437
|
-
},
|
|
62438
|
-
data: fieldData,
|
|
62439
|
-
};
|
|
62242
|
+
const fiscalMonthState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62440
62243
|
cacheKeySink.merge(getTypeCacheKeys$$(requestedField, fiscalMonthState));
|
|
62441
62244
|
break;
|
|
62442
62245
|
}
|
|
62443
62246
|
case 'DateFunctionAggregation': {
|
|
62444
|
-
const fiscalQuarterState =
|
|
62445
|
-
...state,
|
|
62446
|
-
path: {
|
|
62447
|
-
parent: null,
|
|
62448
|
-
propertyName: null,
|
|
62449
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62450
|
-
},
|
|
62451
|
-
data: fieldData,
|
|
62452
|
-
};
|
|
62247
|
+
const fiscalQuarterState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62453
62248
|
cacheKeySink.merge(getTypeCacheKeys$$(requestedField, fiscalQuarterState));
|
|
62454
62249
|
break;
|
|
62455
62250
|
}
|
|
62456
62251
|
case 'DateFunctionAggregation': {
|
|
62457
|
-
const fiscalYearState =
|
|
62458
|
-
...state,
|
|
62459
|
-
path: {
|
|
62460
|
-
parent: null,
|
|
62461
|
-
propertyName: null,
|
|
62462
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62463
|
-
},
|
|
62464
|
-
data: fieldData,
|
|
62465
|
-
};
|
|
62252
|
+
const fiscalYearState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62466
62253
|
cacheKeySink.merge(getTypeCacheKeys$$(requestedField, fiscalYearState));
|
|
62467
62254
|
break;
|
|
62468
62255
|
}
|
|
62469
62256
|
case 'IntValue': {
|
|
62470
|
-
const groupingState =
|
|
62471
|
-
...state,
|
|
62472
|
-
path: {
|
|
62473
|
-
parent: null,
|
|
62474
|
-
propertyName: null,
|
|
62475
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62476
|
-
},
|
|
62477
|
-
data: fieldData,
|
|
62478
|
-
};
|
|
62257
|
+
const groupingState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62479
62258
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, groupingState));
|
|
62480
62259
|
break;
|
|
62481
62260
|
}
|
|
62482
62261
|
case 'DateValue': {
|
|
62483
|
-
const maxState =
|
|
62484
|
-
...state,
|
|
62485
|
-
path: {
|
|
62486
|
-
parent: null,
|
|
62487
|
-
propertyName: null,
|
|
62488
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62489
|
-
},
|
|
62490
|
-
data: fieldData,
|
|
62491
|
-
};
|
|
62262
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62492
62263
|
cacheKeySink.merge(getTypeCacheKeys$_(requestedField, maxState));
|
|
62493
62264
|
break;
|
|
62494
62265
|
}
|
|
62495
62266
|
case 'DateValue': {
|
|
62496
|
-
const minState =
|
|
62497
|
-
...state,
|
|
62498
|
-
path: {
|
|
62499
|
-
parent: null,
|
|
62500
|
-
propertyName: null,
|
|
62501
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62502
|
-
},
|
|
62503
|
-
data: fieldData,
|
|
62504
|
-
};
|
|
62267
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62505
62268
|
cacheKeySink.merge(getTypeCacheKeys$_(requestedField, minState));
|
|
62506
62269
|
break;
|
|
62507
62270
|
}
|
|
62508
62271
|
case 'DateFunctionAggregation': {
|
|
62509
|
-
const weekInMonthState =
|
|
62510
|
-
...state,
|
|
62511
|
-
path: {
|
|
62512
|
-
parent: null,
|
|
62513
|
-
propertyName: null,
|
|
62514
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62515
|
-
},
|
|
62516
|
-
data: fieldData,
|
|
62517
|
-
};
|
|
62272
|
+
const weekInMonthState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62518
62273
|
cacheKeySink.merge(getTypeCacheKeys$$(requestedField, weekInMonthState));
|
|
62519
62274
|
break;
|
|
62520
62275
|
}
|
|
62521
62276
|
case 'DateFunctionAggregation': {
|
|
62522
|
-
const weekInYearState =
|
|
62523
|
-
...state,
|
|
62524
|
-
path: {
|
|
62525
|
-
parent: null,
|
|
62526
|
-
propertyName: null,
|
|
62527
|
-
fullPath: rootKey + '__' + fieldKey
|
|
62528
|
-
},
|
|
62529
|
-
data: fieldData,
|
|
62530
|
-
};
|
|
62277
|
+
const weekInYearState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
62531
62278
|
cacheKeySink.merge(getTypeCacheKeys$$(requestedField, weekInYearState));
|
|
62532
62279
|
break;
|
|
62533
62280
|
}
|
|
@@ -62678,54 +62425,22 @@
|
|
|
62678
62425
|
break;
|
|
62679
62426
|
}
|
|
62680
62427
|
case 'DateFunctionAggregation': {
|
|
62681
|
-
const DateFunctionAggregationState =
|
|
62682
|
-
...state,
|
|
62683
|
-
path: {
|
|
62684
|
-
parent: null,
|
|
62685
|
-
propertyName: null,
|
|
62686
|
-
fullPath: parentKey + '__' + fieldKey
|
|
62687
|
-
},
|
|
62688
|
-
data: fieldData,
|
|
62689
|
-
};
|
|
62428
|
+
const DateFunctionAggregationState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
62690
62429
|
sink[fieldKey] = ingest$Y(requestedField, DateFunctionAggregationState);
|
|
62691
62430
|
break;
|
|
62692
62431
|
}
|
|
62693
62432
|
case 'LongValue': {
|
|
62694
|
-
const LongValueState =
|
|
62695
|
-
...state,
|
|
62696
|
-
path: {
|
|
62697
|
-
parent: null,
|
|
62698
|
-
propertyName: null,
|
|
62699
|
-
fullPath: parentKey + '__' + fieldKey
|
|
62700
|
-
},
|
|
62701
|
-
data: fieldData,
|
|
62702
|
-
};
|
|
62433
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
62703
62434
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
62704
62435
|
break;
|
|
62705
62436
|
}
|
|
62706
62437
|
case 'IntValue': {
|
|
62707
|
-
const IntValueState =
|
|
62708
|
-
...state,
|
|
62709
|
-
path: {
|
|
62710
|
-
parent: null,
|
|
62711
|
-
propertyName: null,
|
|
62712
|
-
fullPath: parentKey + '__' + fieldKey
|
|
62713
|
-
},
|
|
62714
|
-
data: fieldData,
|
|
62715
|
-
};
|
|
62438
|
+
const IntValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
62716
62439
|
sink[fieldKey] = ingest$$(requestedField, IntValueState);
|
|
62717
62440
|
break;
|
|
62718
62441
|
}
|
|
62719
62442
|
case 'DateValue': {
|
|
62720
|
-
const DateValueState =
|
|
62721
|
-
...state,
|
|
62722
|
-
path: {
|
|
62723
|
-
parent: null,
|
|
62724
|
-
propertyName: null,
|
|
62725
|
-
fullPath: parentKey + '__' + fieldKey
|
|
62726
|
-
},
|
|
62727
|
-
data: fieldData,
|
|
62728
|
-
};
|
|
62443
|
+
const DateValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
62729
62444
|
sink[fieldKey] = ingest$X(requestedField, DateValueState);
|
|
62730
62445
|
break;
|
|
62731
62446
|
}
|
|
@@ -63193,15 +62908,7 @@
|
|
|
63193
62908
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
63194
62909
|
switch (fieldType.typename) {
|
|
63195
62910
|
case 'ObjectInfo': {
|
|
63196
|
-
const objectInfoState =
|
|
63197
|
-
...state,
|
|
63198
|
-
path: {
|
|
63199
|
-
parent: null,
|
|
63200
|
-
propertyName: null,
|
|
63201
|
-
fullPath: rootKey + '__' + fieldKey
|
|
63202
|
-
},
|
|
63203
|
-
data: fieldData,
|
|
63204
|
-
};
|
|
62911
|
+
const objectInfoState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
63205
62912
|
cacheKeySink.merge(getTypeCacheKeys$R(requestedField, objectInfoState));
|
|
63206
62913
|
break;
|
|
63207
62914
|
}
|
|
@@ -63270,15 +62977,7 @@
|
|
|
63270
62977
|
break;
|
|
63271
62978
|
}
|
|
63272
62979
|
case 'ObjectInfo': {
|
|
63273
|
-
const ObjectInfoState =
|
|
63274
|
-
...state,
|
|
63275
|
-
path: {
|
|
63276
|
-
parent: null,
|
|
63277
|
-
propertyName: null,
|
|
63278
|
-
fullPath: parentKey + '__' + fieldKey
|
|
63279
|
-
},
|
|
63280
|
-
data: fieldData,
|
|
63281
|
-
};
|
|
62980
|
+
const ObjectInfoState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
63282
62981
|
sink[fieldKey] = ingest$O(requestedField, ObjectInfoState);
|
|
63283
62982
|
break;
|
|
63284
62983
|
}
|
|
@@ -63724,15 +63423,7 @@
|
|
|
63724
63423
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
63725
63424
|
switch (fieldType.typename) {
|
|
63726
63425
|
case 'FilteredLookupInfo': {
|
|
63727
|
-
const filteredLookupInfoState =
|
|
63728
|
-
...state,
|
|
63729
|
-
path: {
|
|
63730
|
-
parent: null,
|
|
63731
|
-
propertyName: null,
|
|
63732
|
-
fullPath: rootKey + '__' + fieldKey
|
|
63733
|
-
},
|
|
63734
|
-
data: fieldData,
|
|
63735
|
-
};
|
|
63426
|
+
const filteredLookupInfoState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
63736
63427
|
cacheKeySink.merge(getTypeCacheKeys$U(requestedField, filteredLookupInfoState));
|
|
63737
63428
|
break;
|
|
63738
63429
|
}
|
|
@@ -63968,15 +63659,7 @@
|
|
|
63968
63659
|
break;
|
|
63969
63660
|
}
|
|
63970
63661
|
case 'FilteredLookupInfo': {
|
|
63971
|
-
const FilteredLookupInfoState =
|
|
63972
|
-
...state,
|
|
63973
|
-
path: {
|
|
63974
|
-
parent: null,
|
|
63975
|
-
propertyName: null,
|
|
63976
|
-
fullPath: parentKey + '__' + fieldKey
|
|
63977
|
-
},
|
|
63978
|
-
data: fieldData,
|
|
63979
|
-
};
|
|
63662
|
+
const FilteredLookupInfoState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
63980
63663
|
sink[fieldKey] = ingest$R(requestedField, FilteredLookupInfoState);
|
|
63981
63664
|
break;
|
|
63982
63665
|
}
|
|
@@ -63985,15 +63668,7 @@
|
|
|
63985
63668
|
break;
|
|
63986
63669
|
}
|
|
63987
63670
|
case 'ReferenceToInfo': {
|
|
63988
|
-
const ReferenceToInfoState =
|
|
63989
|
-
...state,
|
|
63990
|
-
path: {
|
|
63991
|
-
parent: null,
|
|
63992
|
-
propertyName: null,
|
|
63993
|
-
fullPath: parentKey + '__' + fieldKey
|
|
63994
|
-
},
|
|
63995
|
-
data: fieldData,
|
|
63996
|
-
};
|
|
63671
|
+
const ReferenceToInfoState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
63997
63672
|
sink[fieldKey] = ingest$N(requestedField, ReferenceToInfoState);
|
|
63998
63673
|
break;
|
|
63999
63674
|
}
|
|
@@ -64354,15 +64029,7 @@
|
|
|
64354
64029
|
break;
|
|
64355
64030
|
}
|
|
64356
64031
|
case 'ThemeInfo': {
|
|
64357
|
-
const themeInfoState =
|
|
64358
|
-
...state,
|
|
64359
|
-
path: {
|
|
64360
|
-
parent: null,
|
|
64361
|
-
propertyName: null,
|
|
64362
|
-
fullPath: rootKey + '__' + fieldKey
|
|
64363
|
-
},
|
|
64364
|
-
data: fieldData,
|
|
64365
|
-
};
|
|
64032
|
+
const themeInfoState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
64366
64033
|
cacheKeySink.merge(getTypeCacheKeys$S(requestedField, themeInfoState));
|
|
64367
64034
|
break;
|
|
64368
64035
|
}
|
|
@@ -64515,15 +64182,7 @@
|
|
|
64515
64182
|
break;
|
|
64516
64183
|
}
|
|
64517
64184
|
case 'ChildRelationship': {
|
|
64518
|
-
const ChildRelationshipState =
|
|
64519
|
-
...state,
|
|
64520
|
-
path: {
|
|
64521
|
-
parent: null,
|
|
64522
|
-
propertyName: null,
|
|
64523
|
-
fullPath: parentKey + '__' + fieldKey
|
|
64524
|
-
},
|
|
64525
|
-
data: fieldData,
|
|
64526
|
-
};
|
|
64185
|
+
const ChildRelationshipState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
64527
64186
|
sink[fieldKey] = ingest$T(requestedField, ChildRelationshipState);
|
|
64528
64187
|
break;
|
|
64529
64188
|
}
|
|
@@ -64536,54 +64195,22 @@
|
|
|
64536
64195
|
break;
|
|
64537
64196
|
}
|
|
64538
64197
|
case 'DependentField': {
|
|
64539
|
-
const DependentFieldState =
|
|
64540
|
-
...state,
|
|
64541
|
-
path: {
|
|
64542
|
-
parent: null,
|
|
64543
|
-
propertyName: null,
|
|
64544
|
-
fullPath: parentKey + '__' + fieldKey
|
|
64545
|
-
},
|
|
64546
|
-
data: fieldData,
|
|
64547
|
-
};
|
|
64198
|
+
const DependentFieldState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
64548
64199
|
sink[fieldKey] = ingest$S(requestedField, DependentFieldState);
|
|
64549
64200
|
break;
|
|
64550
64201
|
}
|
|
64551
64202
|
case 'Field': {
|
|
64552
|
-
const FieldState =
|
|
64553
|
-
...state,
|
|
64554
|
-
path: {
|
|
64555
|
-
parent: null,
|
|
64556
|
-
propertyName: null,
|
|
64557
|
-
fullPath: parentKey + '__' + fieldKey
|
|
64558
|
-
},
|
|
64559
|
-
data: fieldData,
|
|
64560
|
-
};
|
|
64203
|
+
const FieldState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
64561
64204
|
sink[fieldKey] = ingest$Q(requestedField, FieldState);
|
|
64562
64205
|
break;
|
|
64563
64206
|
}
|
|
64564
64207
|
case 'RecordTypeInfo': {
|
|
64565
|
-
const RecordTypeInfoState =
|
|
64566
|
-
...state,
|
|
64567
|
-
path: {
|
|
64568
|
-
parent: null,
|
|
64569
|
-
propertyName: null,
|
|
64570
|
-
fullPath: parentKey + '__' + fieldKey
|
|
64571
|
-
},
|
|
64572
|
-
data: fieldData,
|
|
64573
|
-
};
|
|
64208
|
+
const RecordTypeInfoState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
64574
64209
|
sink[fieldKey] = ingest$V(requestedField, RecordTypeInfoState);
|
|
64575
64210
|
break;
|
|
64576
64211
|
}
|
|
64577
64212
|
case 'ThemeInfo': {
|
|
64578
|
-
const ThemeInfoState =
|
|
64579
|
-
...state,
|
|
64580
|
-
path: {
|
|
64581
|
-
parent: null,
|
|
64582
|
-
propertyName: null,
|
|
64583
|
-
fullPath: parentKey + '__' + fieldKey
|
|
64584
|
-
},
|
|
64585
|
-
data: fieldData,
|
|
64586
|
-
};
|
|
64213
|
+
const ThemeInfoState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
64587
64214
|
sink[fieldKey] = ingest$P(requestedField, ThemeInfoState);
|
|
64588
64215
|
break;
|
|
64589
64216
|
}
|
|
@@ -64708,15 +64335,7 @@
|
|
|
64708
64335
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
64709
64336
|
switch (fieldType.typename) {
|
|
64710
64337
|
case 'ObjectInfo': {
|
|
64711
|
-
const objectInfoState =
|
|
64712
|
-
...state,
|
|
64713
|
-
path: {
|
|
64714
|
-
parent: null,
|
|
64715
|
-
propertyName: null,
|
|
64716
|
-
fullPath: rootKey + '__' + fieldKey
|
|
64717
|
-
},
|
|
64718
|
-
data: fieldData,
|
|
64719
|
-
};
|
|
64338
|
+
const objectInfoState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
64720
64339
|
cacheKeySink.merge(getTypeCacheKeys$R(requestedField, objectInfoState));
|
|
64721
64340
|
break;
|
|
64722
64341
|
}
|
|
@@ -64767,15 +64386,7 @@
|
|
|
64767
64386
|
break;
|
|
64768
64387
|
}
|
|
64769
64388
|
case 'ObjectInfo': {
|
|
64770
|
-
const ObjectInfoState =
|
|
64771
|
-
...state,
|
|
64772
|
-
path: {
|
|
64773
|
-
parent: null,
|
|
64774
|
-
propertyName: null,
|
|
64775
|
-
fullPath: parentKey + '__' + fieldKey
|
|
64776
|
-
},
|
|
64777
|
-
data: fieldData,
|
|
64778
|
-
};
|
|
64389
|
+
const ObjectInfoState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
64779
64390
|
sink[fieldKey] = ingest$O(requestedField, ObjectInfoState);
|
|
64780
64391
|
break;
|
|
64781
64392
|
}
|
|
@@ -65189,93 +64800,37 @@
|
|
|
65189
64800
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
65190
64801
|
switch (fieldType.typename) {
|
|
65191
64802
|
case 'DoubleValue': {
|
|
65192
|
-
const avgState =
|
|
65193
|
-
...state,
|
|
65194
|
-
path: {
|
|
65195
|
-
parent: null,
|
|
65196
|
-
propertyName: null,
|
|
65197
|
-
fullPath: rootKey + '__' + fieldKey
|
|
65198
|
-
},
|
|
65199
|
-
data: fieldData,
|
|
65200
|
-
};
|
|
64803
|
+
const avgState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
65201
64804
|
cacheKeySink.merge(getTypeCacheKeys$16(requestedField, avgState));
|
|
65202
64805
|
break;
|
|
65203
64806
|
}
|
|
65204
64807
|
case 'LongValue': {
|
|
65205
|
-
const countState =
|
|
65206
|
-
...state,
|
|
65207
|
-
path: {
|
|
65208
|
-
parent: null,
|
|
65209
|
-
propertyName: null,
|
|
65210
|
-
fullPath: rootKey + '__' + fieldKey
|
|
65211
|
-
},
|
|
65212
|
-
data: fieldData,
|
|
65213
|
-
};
|
|
64808
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
65214
64809
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
65215
64810
|
break;
|
|
65216
64811
|
}
|
|
65217
64812
|
case 'LongValue': {
|
|
65218
|
-
const countDistinctState =
|
|
65219
|
-
...state,
|
|
65220
|
-
path: {
|
|
65221
|
-
parent: null,
|
|
65222
|
-
propertyName: null,
|
|
65223
|
-
fullPath: rootKey + '__' + fieldKey
|
|
65224
|
-
},
|
|
65225
|
-
data: fieldData,
|
|
65226
|
-
};
|
|
64813
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
65227
64814
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
65228
64815
|
break;
|
|
65229
64816
|
}
|
|
65230
64817
|
case 'IntValue': {
|
|
65231
|
-
const groupingState =
|
|
65232
|
-
...state,
|
|
65233
|
-
path: {
|
|
65234
|
-
parent: null,
|
|
65235
|
-
propertyName: null,
|
|
65236
|
-
fullPath: rootKey + '__' + fieldKey
|
|
65237
|
-
},
|
|
65238
|
-
data: fieldData,
|
|
65239
|
-
};
|
|
64818
|
+
const groupingState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
65240
64819
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, groupingState));
|
|
65241
64820
|
break;
|
|
65242
64821
|
}
|
|
65243
64822
|
case 'LongValue': {
|
|
65244
|
-
const maxState =
|
|
65245
|
-
...state,
|
|
65246
|
-
path: {
|
|
65247
|
-
parent: null,
|
|
65248
|
-
propertyName: null,
|
|
65249
|
-
fullPath: rootKey + '__' + fieldKey
|
|
65250
|
-
},
|
|
65251
|
-
data: fieldData,
|
|
65252
|
-
};
|
|
64823
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
65253
64824
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, maxState));
|
|
65254
64825
|
break;
|
|
65255
64826
|
}
|
|
65256
64827
|
case 'LongValue': {
|
|
65257
|
-
const minState =
|
|
65258
|
-
...state,
|
|
65259
|
-
path: {
|
|
65260
|
-
parent: null,
|
|
65261
|
-
propertyName: null,
|
|
65262
|
-
fullPath: rootKey + '__' + fieldKey
|
|
65263
|
-
},
|
|
65264
|
-
data: fieldData,
|
|
65265
|
-
};
|
|
64828
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
65266
64829
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, minState));
|
|
65267
64830
|
break;
|
|
65268
64831
|
}
|
|
65269
64832
|
case 'LongValue': {
|
|
65270
|
-
const sumState =
|
|
65271
|
-
...state,
|
|
65272
|
-
path: {
|
|
65273
|
-
parent: null,
|
|
65274
|
-
propertyName: null,
|
|
65275
|
-
fullPath: rootKey + '__' + fieldKey
|
|
65276
|
-
},
|
|
65277
|
-
data: fieldData,
|
|
65278
|
-
};
|
|
64833
|
+
const sumState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
65279
64834
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, sumState));
|
|
65280
64835
|
break;
|
|
65281
64836
|
}
|
|
@@ -65372,41 +64927,17 @@
|
|
|
65372
64927
|
break;
|
|
65373
64928
|
}
|
|
65374
64929
|
case 'DoubleValue': {
|
|
65375
|
-
const DoubleValueState =
|
|
65376
|
-
...state,
|
|
65377
|
-
path: {
|
|
65378
|
-
parent: null,
|
|
65379
|
-
propertyName: null,
|
|
65380
|
-
fullPath: parentKey + '__' + fieldKey
|
|
65381
|
-
},
|
|
65382
|
-
data: fieldData,
|
|
65383
|
-
};
|
|
64930
|
+
const DoubleValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
65384
64931
|
sink[fieldKey] = ingest$13(requestedField, DoubleValueState);
|
|
65385
64932
|
break;
|
|
65386
64933
|
}
|
|
65387
64934
|
case 'LongValue': {
|
|
65388
|
-
const LongValueState =
|
|
65389
|
-
...state,
|
|
65390
|
-
path: {
|
|
65391
|
-
parent: null,
|
|
65392
|
-
propertyName: null,
|
|
65393
|
-
fullPath: parentKey + '__' + fieldKey
|
|
65394
|
-
},
|
|
65395
|
-
data: fieldData,
|
|
65396
|
-
};
|
|
64935
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
65397
64936
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
65398
64937
|
break;
|
|
65399
64938
|
}
|
|
65400
64939
|
case 'IntValue': {
|
|
65401
|
-
const IntValueState =
|
|
65402
|
-
...state,
|
|
65403
|
-
path: {
|
|
65404
|
-
parent: null,
|
|
65405
|
-
propertyName: null,
|
|
65406
|
-
fullPath: parentKey + '__' + fieldKey
|
|
65407
|
-
},
|
|
65408
|
-
data: fieldData,
|
|
65409
|
-
};
|
|
64940
|
+
const IntValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
65410
64941
|
sink[fieldKey] = ingest$$(requestedField, IntValueState);
|
|
65411
64942
|
break;
|
|
65412
64943
|
}
|
|
@@ -65682,67 +65213,27 @@
|
|
|
65682
65213
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
65683
65214
|
switch (fieldType.typename) {
|
|
65684
65215
|
case 'LongValue': {
|
|
65685
|
-
const countState =
|
|
65686
|
-
...state,
|
|
65687
|
-
path: {
|
|
65688
|
-
parent: null,
|
|
65689
|
-
propertyName: null,
|
|
65690
|
-
fullPath: rootKey + '__' + fieldKey
|
|
65691
|
-
},
|
|
65692
|
-
data: fieldData,
|
|
65693
|
-
};
|
|
65216
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
65694
65217
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
65695
65218
|
break;
|
|
65696
65219
|
}
|
|
65697
65220
|
case 'LongValue': {
|
|
65698
|
-
const countDistinctState =
|
|
65699
|
-
...state,
|
|
65700
|
-
path: {
|
|
65701
|
-
parent: null,
|
|
65702
|
-
propertyName: null,
|
|
65703
|
-
fullPath: rootKey + '__' + fieldKey
|
|
65704
|
-
},
|
|
65705
|
-
data: fieldData,
|
|
65706
|
-
};
|
|
65221
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
65707
65222
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
65708
65223
|
break;
|
|
65709
65224
|
}
|
|
65710
65225
|
case 'IntValue': {
|
|
65711
|
-
const groupingState =
|
|
65712
|
-
...state,
|
|
65713
|
-
path: {
|
|
65714
|
-
parent: null,
|
|
65715
|
-
propertyName: null,
|
|
65716
|
-
fullPath: rootKey + '__' + fieldKey
|
|
65717
|
-
},
|
|
65718
|
-
data: fieldData,
|
|
65719
|
-
};
|
|
65226
|
+
const groupingState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
65720
65227
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, groupingState));
|
|
65721
65228
|
break;
|
|
65722
65229
|
}
|
|
65723
65230
|
case 'PhoneNumberValue': {
|
|
65724
|
-
const maxState =
|
|
65725
|
-
...state,
|
|
65726
|
-
path: {
|
|
65727
|
-
parent: null,
|
|
65728
|
-
propertyName: null,
|
|
65729
|
-
fullPath: rootKey + '__' + fieldKey
|
|
65730
|
-
},
|
|
65731
|
-
data: fieldData,
|
|
65732
|
-
};
|
|
65231
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
65733
65232
|
cacheKeySink.merge(getTypeCacheKeys$M(requestedField, maxState));
|
|
65734
65233
|
break;
|
|
65735
65234
|
}
|
|
65736
65235
|
case 'PhoneNumberValue': {
|
|
65737
|
-
const minState =
|
|
65738
|
-
...state,
|
|
65739
|
-
path: {
|
|
65740
|
-
parent: null,
|
|
65741
|
-
propertyName: null,
|
|
65742
|
-
fullPath: rootKey + '__' + fieldKey
|
|
65743
|
-
},
|
|
65744
|
-
data: fieldData,
|
|
65745
|
-
};
|
|
65236
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
65746
65237
|
cacheKeySink.merge(getTypeCacheKeys$M(requestedField, minState));
|
|
65747
65238
|
break;
|
|
65748
65239
|
}
|
|
@@ -65821,41 +65312,17 @@
|
|
|
65821
65312
|
break;
|
|
65822
65313
|
}
|
|
65823
65314
|
case 'LongValue': {
|
|
65824
|
-
const LongValueState =
|
|
65825
|
-
...state,
|
|
65826
|
-
path: {
|
|
65827
|
-
parent: null,
|
|
65828
|
-
propertyName: null,
|
|
65829
|
-
fullPath: parentKey + '__' + fieldKey
|
|
65830
|
-
},
|
|
65831
|
-
data: fieldData,
|
|
65832
|
-
};
|
|
65315
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
65833
65316
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
65834
65317
|
break;
|
|
65835
65318
|
}
|
|
65836
65319
|
case 'IntValue': {
|
|
65837
|
-
const IntValueState =
|
|
65838
|
-
...state,
|
|
65839
|
-
path: {
|
|
65840
|
-
parent: null,
|
|
65841
|
-
propertyName: null,
|
|
65842
|
-
fullPath: parentKey + '__' + fieldKey
|
|
65843
|
-
},
|
|
65844
|
-
data: fieldData,
|
|
65845
|
-
};
|
|
65320
|
+
const IntValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
65846
65321
|
sink[fieldKey] = ingest$$(requestedField, IntValueState);
|
|
65847
65322
|
break;
|
|
65848
65323
|
}
|
|
65849
65324
|
case 'PhoneNumberValue': {
|
|
65850
|
-
const PhoneNumberValueState =
|
|
65851
|
-
...state,
|
|
65852
|
-
path: {
|
|
65853
|
-
parent: null,
|
|
65854
|
-
propertyName: null,
|
|
65855
|
-
fullPath: parentKey + '__' + fieldKey
|
|
65856
|
-
},
|
|
65857
|
-
data: fieldData,
|
|
65858
|
-
};
|
|
65325
|
+
const PhoneNumberValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
65859
65326
|
sink[fieldKey] = ingest$J(requestedField, PhoneNumberValueState);
|
|
65860
65327
|
break;
|
|
65861
65328
|
}
|
|
@@ -66281,80 +65748,32 @@
|
|
|
66281
65748
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
66282
65749
|
switch (fieldType.typename) {
|
|
66283
65750
|
case 'DoubleValue': {
|
|
66284
|
-
const avgState =
|
|
66285
|
-
...state,
|
|
66286
|
-
path: {
|
|
66287
|
-
parent: null,
|
|
66288
|
-
propertyName: null,
|
|
66289
|
-
fullPath: rootKey + '__' + fieldKey
|
|
66290
|
-
},
|
|
66291
|
-
data: fieldData,
|
|
66292
|
-
};
|
|
65751
|
+
const avgState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
66293
65752
|
cacheKeySink.merge(getTypeCacheKeys$16(requestedField, avgState));
|
|
66294
65753
|
break;
|
|
66295
65754
|
}
|
|
66296
65755
|
case 'LongValue': {
|
|
66297
|
-
const countState =
|
|
66298
|
-
...state,
|
|
66299
|
-
path: {
|
|
66300
|
-
parent: null,
|
|
66301
|
-
propertyName: null,
|
|
66302
|
-
fullPath: rootKey + '__' + fieldKey
|
|
66303
|
-
},
|
|
66304
|
-
data: fieldData,
|
|
66305
|
-
};
|
|
65756
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
66306
65757
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
66307
65758
|
break;
|
|
66308
65759
|
}
|
|
66309
65760
|
case 'LongValue': {
|
|
66310
|
-
const countDistinctState =
|
|
66311
|
-
...state,
|
|
66312
|
-
path: {
|
|
66313
|
-
parent: null,
|
|
66314
|
-
propertyName: null,
|
|
66315
|
-
fullPath: rootKey + '__' + fieldKey
|
|
66316
|
-
},
|
|
66317
|
-
data: fieldData,
|
|
66318
|
-
};
|
|
65761
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
66319
65762
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
66320
65763
|
break;
|
|
66321
65764
|
}
|
|
66322
65765
|
case 'CurrencyValue': {
|
|
66323
|
-
const maxState =
|
|
66324
|
-
...state,
|
|
66325
|
-
path: {
|
|
66326
|
-
parent: null,
|
|
66327
|
-
propertyName: null,
|
|
66328
|
-
fullPath: rootKey + '__' + fieldKey
|
|
66329
|
-
},
|
|
66330
|
-
data: fieldData,
|
|
66331
|
-
};
|
|
65766
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
66332
65767
|
cacheKeySink.merge(getTypeCacheKeys$J(requestedField, maxState));
|
|
66333
65768
|
break;
|
|
66334
65769
|
}
|
|
66335
65770
|
case 'CurrencyValue': {
|
|
66336
|
-
const minState =
|
|
66337
|
-
...state,
|
|
66338
|
-
path: {
|
|
66339
|
-
parent: null,
|
|
66340
|
-
propertyName: null,
|
|
66341
|
-
fullPath: rootKey + '__' + fieldKey
|
|
66342
|
-
},
|
|
66343
|
-
data: fieldData,
|
|
66344
|
-
};
|
|
65771
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
66345
65772
|
cacheKeySink.merge(getTypeCacheKeys$J(requestedField, minState));
|
|
66346
65773
|
break;
|
|
66347
65774
|
}
|
|
66348
65775
|
case 'CurrencyValue': {
|
|
66349
|
-
const sumState =
|
|
66350
|
-
...state,
|
|
66351
|
-
path: {
|
|
66352
|
-
parent: null,
|
|
66353
|
-
propertyName: null,
|
|
66354
|
-
fullPath: rootKey + '__' + fieldKey
|
|
66355
|
-
},
|
|
66356
|
-
data: fieldData,
|
|
66357
|
-
};
|
|
65776
|
+
const sumState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
66358
65777
|
cacheKeySink.merge(getTypeCacheKeys$J(requestedField, sumState));
|
|
66359
65778
|
break;
|
|
66360
65779
|
}
|
|
@@ -66445,41 +65864,17 @@
|
|
|
66445
65864
|
break;
|
|
66446
65865
|
}
|
|
66447
65866
|
case 'DoubleValue': {
|
|
66448
|
-
const DoubleValueState =
|
|
66449
|
-
...state,
|
|
66450
|
-
path: {
|
|
66451
|
-
parent: null,
|
|
66452
|
-
propertyName: null,
|
|
66453
|
-
fullPath: parentKey + '__' + fieldKey
|
|
66454
|
-
},
|
|
66455
|
-
data: fieldData,
|
|
66456
|
-
};
|
|
65867
|
+
const DoubleValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
66457
65868
|
sink[fieldKey] = ingest$13(requestedField, DoubleValueState);
|
|
66458
65869
|
break;
|
|
66459
65870
|
}
|
|
66460
65871
|
case 'LongValue': {
|
|
66461
|
-
const LongValueState =
|
|
66462
|
-
...state,
|
|
66463
|
-
path: {
|
|
66464
|
-
parent: null,
|
|
66465
|
-
propertyName: null,
|
|
66466
|
-
fullPath: parentKey + '__' + fieldKey
|
|
66467
|
-
},
|
|
66468
|
-
data: fieldData,
|
|
66469
|
-
};
|
|
65872
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
66470
65873
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
66471
65874
|
break;
|
|
66472
65875
|
}
|
|
66473
65876
|
case 'CurrencyValue': {
|
|
66474
|
-
const CurrencyValueState =
|
|
66475
|
-
...state,
|
|
66476
|
-
path: {
|
|
66477
|
-
parent: null,
|
|
66478
|
-
propertyName: null,
|
|
66479
|
-
fullPath: parentKey + '__' + fieldKey
|
|
66480
|
-
},
|
|
66481
|
-
data: fieldData,
|
|
66482
|
-
};
|
|
65877
|
+
const CurrencyValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
66483
65878
|
sink[fieldKey] = ingest$G(requestedField, CurrencyValueState);
|
|
66484
65879
|
break;
|
|
66485
65880
|
}
|
|
@@ -67047,67 +66442,27 @@
|
|
|
67047
66442
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
67048
66443
|
switch (fieldType.typename) {
|
|
67049
66444
|
case 'LongValue': {
|
|
67050
|
-
const countState =
|
|
67051
|
-
...state,
|
|
67052
|
-
path: {
|
|
67053
|
-
parent: null,
|
|
67054
|
-
propertyName: null,
|
|
67055
|
-
fullPath: rootKey + '__' + fieldKey
|
|
67056
|
-
},
|
|
67057
|
-
data: fieldData,
|
|
67058
|
-
};
|
|
66445
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
67059
66446
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
67060
66447
|
break;
|
|
67061
66448
|
}
|
|
67062
66449
|
case 'LongValue': {
|
|
67063
|
-
const countDistinctState =
|
|
67064
|
-
...state,
|
|
67065
|
-
path: {
|
|
67066
|
-
parent: null,
|
|
67067
|
-
propertyName: null,
|
|
67068
|
-
fullPath: rootKey + '__' + fieldKey
|
|
67069
|
-
},
|
|
67070
|
-
data: fieldData,
|
|
67071
|
-
};
|
|
66450
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
67072
66451
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
67073
66452
|
break;
|
|
67074
66453
|
}
|
|
67075
66454
|
case 'IntValue': {
|
|
67076
|
-
const groupingState =
|
|
67077
|
-
...state,
|
|
67078
|
-
path: {
|
|
67079
|
-
parent: null,
|
|
67080
|
-
propertyName: null,
|
|
67081
|
-
fullPath: rootKey + '__' + fieldKey
|
|
67082
|
-
},
|
|
67083
|
-
data: fieldData,
|
|
67084
|
-
};
|
|
66455
|
+
const groupingState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
67085
66456
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, groupingState));
|
|
67086
66457
|
break;
|
|
67087
66458
|
}
|
|
67088
66459
|
case 'EmailValue': {
|
|
67089
|
-
const maxState =
|
|
67090
|
-
...state,
|
|
67091
|
-
path: {
|
|
67092
|
-
parent: null,
|
|
67093
|
-
propertyName: null,
|
|
67094
|
-
fullPath: rootKey + '__' + fieldKey
|
|
67095
|
-
},
|
|
67096
|
-
data: fieldData,
|
|
67097
|
-
};
|
|
66460
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
67098
66461
|
cacheKeySink.merge(getTypeCacheKeys$G(requestedField, maxState));
|
|
67099
66462
|
break;
|
|
67100
66463
|
}
|
|
67101
66464
|
case 'EmailValue': {
|
|
67102
|
-
const minState =
|
|
67103
|
-
...state,
|
|
67104
|
-
path: {
|
|
67105
|
-
parent: null,
|
|
67106
|
-
propertyName: null,
|
|
67107
|
-
fullPath: rootKey + '__' + fieldKey
|
|
67108
|
-
},
|
|
67109
|
-
data: fieldData,
|
|
67110
|
-
};
|
|
66465
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
67111
66466
|
cacheKeySink.merge(getTypeCacheKeys$G(requestedField, minState));
|
|
67112
66467
|
break;
|
|
67113
66468
|
}
|
|
@@ -67186,41 +66541,17 @@
|
|
|
67186
66541
|
break;
|
|
67187
66542
|
}
|
|
67188
66543
|
case 'LongValue': {
|
|
67189
|
-
const LongValueState =
|
|
67190
|
-
...state,
|
|
67191
|
-
path: {
|
|
67192
|
-
parent: null,
|
|
67193
|
-
propertyName: null,
|
|
67194
|
-
fullPath: parentKey + '__' + fieldKey
|
|
67195
|
-
},
|
|
67196
|
-
data: fieldData,
|
|
67197
|
-
};
|
|
66544
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
67198
66545
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
67199
66546
|
break;
|
|
67200
66547
|
}
|
|
67201
66548
|
case 'IntValue': {
|
|
67202
|
-
const IntValueState =
|
|
67203
|
-
...state,
|
|
67204
|
-
path: {
|
|
67205
|
-
parent: null,
|
|
67206
|
-
propertyName: null,
|
|
67207
|
-
fullPath: parentKey + '__' + fieldKey
|
|
67208
|
-
},
|
|
67209
|
-
data: fieldData,
|
|
67210
|
-
};
|
|
66549
|
+
const IntValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
67211
66550
|
sink[fieldKey] = ingest$$(requestedField, IntValueState);
|
|
67212
66551
|
break;
|
|
67213
66552
|
}
|
|
67214
66553
|
case 'EmailValue': {
|
|
67215
|
-
const EmailValueState =
|
|
67216
|
-
...state,
|
|
67217
|
-
path: {
|
|
67218
|
-
parent: null,
|
|
67219
|
-
propertyName: null,
|
|
67220
|
-
fullPath: parentKey + '__' + fieldKey
|
|
67221
|
-
},
|
|
67222
|
-
data: fieldData,
|
|
67223
|
-
};
|
|
66554
|
+
const EmailValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
67224
66555
|
sink[fieldKey] = ingest$D(requestedField, EmailValueState);
|
|
67225
66556
|
break;
|
|
67226
66557
|
}
|
|
@@ -67632,15 +66963,7 @@
|
|
|
67632
66963
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
67633
66964
|
switch (fieldType.typename) {
|
|
67634
66965
|
case 'DateFunctionAggregation': {
|
|
67635
|
-
const hourInDayState =
|
|
67636
|
-
...state,
|
|
67637
|
-
path: {
|
|
67638
|
-
parent: null,
|
|
67639
|
-
propertyName: null,
|
|
67640
|
-
fullPath: rootKey + '__' + fieldKey
|
|
67641
|
-
},
|
|
67642
|
-
data: fieldData,
|
|
67643
|
-
};
|
|
66966
|
+
const hourInDayState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
67644
66967
|
cacheKeySink.merge(getTypeCacheKeys$$(requestedField, hourInDayState));
|
|
67645
66968
|
break;
|
|
67646
66969
|
}
|
|
@@ -67701,15 +67024,7 @@
|
|
|
67701
67024
|
break;
|
|
67702
67025
|
}
|
|
67703
67026
|
case 'DateFunctionAggregation': {
|
|
67704
|
-
const DateFunctionAggregationState =
|
|
67705
|
-
...state,
|
|
67706
|
-
path: {
|
|
67707
|
-
parent: null,
|
|
67708
|
-
propertyName: null,
|
|
67709
|
-
fullPath: parentKey + '__' + fieldKey
|
|
67710
|
-
},
|
|
67711
|
-
data: fieldData,
|
|
67712
|
-
};
|
|
67027
|
+
const DateFunctionAggregationState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
67713
67028
|
sink[fieldKey] = ingest$Y(requestedField, DateFunctionAggregationState);
|
|
67714
67029
|
break;
|
|
67715
67030
|
}
|
|
@@ -67985,80 +67300,32 @@
|
|
|
67985
67300
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
67986
67301
|
switch (fieldType.typename) {
|
|
67987
67302
|
case 'DoubleValue': {
|
|
67988
|
-
const avgState =
|
|
67989
|
-
...state,
|
|
67990
|
-
path: {
|
|
67991
|
-
parent: null,
|
|
67992
|
-
propertyName: null,
|
|
67993
|
-
fullPath: rootKey + '__' + fieldKey
|
|
67994
|
-
},
|
|
67995
|
-
data: fieldData,
|
|
67996
|
-
};
|
|
67303
|
+
const avgState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
67997
67304
|
cacheKeySink.merge(getTypeCacheKeys$16(requestedField, avgState));
|
|
67998
67305
|
break;
|
|
67999
67306
|
}
|
|
68000
67307
|
case 'LongValue': {
|
|
68001
|
-
const countState =
|
|
68002
|
-
...state,
|
|
68003
|
-
path: {
|
|
68004
|
-
parent: null,
|
|
68005
|
-
propertyName: null,
|
|
68006
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68007
|
-
},
|
|
68008
|
-
data: fieldData,
|
|
68009
|
-
};
|
|
67308
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68010
67309
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
68011
67310
|
break;
|
|
68012
67311
|
}
|
|
68013
67312
|
case 'LongValue': {
|
|
68014
|
-
const countDistinctState =
|
|
68015
|
-
...state,
|
|
68016
|
-
path: {
|
|
68017
|
-
parent: null,
|
|
68018
|
-
propertyName: null,
|
|
68019
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68020
|
-
},
|
|
68021
|
-
data: fieldData,
|
|
68022
|
-
};
|
|
67313
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68023
67314
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
68024
67315
|
break;
|
|
68025
67316
|
}
|
|
68026
67317
|
case 'LatitudeValue': {
|
|
68027
|
-
const maxState =
|
|
68028
|
-
...state,
|
|
68029
|
-
path: {
|
|
68030
|
-
parent: null,
|
|
68031
|
-
propertyName: null,
|
|
68032
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68033
|
-
},
|
|
68034
|
-
data: fieldData,
|
|
68035
|
-
};
|
|
67318
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68036
67319
|
cacheKeySink.merge(getTypeCacheKeys$B(requestedField, maxState));
|
|
68037
67320
|
break;
|
|
68038
67321
|
}
|
|
68039
67322
|
case 'LatitudeValue': {
|
|
68040
|
-
const minState =
|
|
68041
|
-
...state,
|
|
68042
|
-
path: {
|
|
68043
|
-
parent: null,
|
|
68044
|
-
propertyName: null,
|
|
68045
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68046
|
-
},
|
|
68047
|
-
data: fieldData,
|
|
68048
|
-
};
|
|
67323
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68049
67324
|
cacheKeySink.merge(getTypeCacheKeys$B(requestedField, minState));
|
|
68050
67325
|
break;
|
|
68051
67326
|
}
|
|
68052
67327
|
case 'DoubleValue': {
|
|
68053
|
-
const sumState =
|
|
68054
|
-
...state,
|
|
68055
|
-
path: {
|
|
68056
|
-
parent: null,
|
|
68057
|
-
propertyName: null,
|
|
68058
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68059
|
-
},
|
|
68060
|
-
data: fieldData,
|
|
68061
|
-
};
|
|
67328
|
+
const sumState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68062
67329
|
cacheKeySink.merge(getTypeCacheKeys$16(requestedField, sumState));
|
|
68063
67330
|
break;
|
|
68064
67331
|
}
|
|
@@ -68143,41 +67410,17 @@
|
|
|
68143
67410
|
break;
|
|
68144
67411
|
}
|
|
68145
67412
|
case 'DoubleValue': {
|
|
68146
|
-
const DoubleValueState =
|
|
68147
|
-
...state,
|
|
68148
|
-
path: {
|
|
68149
|
-
parent: null,
|
|
68150
|
-
propertyName: null,
|
|
68151
|
-
fullPath: parentKey + '__' + fieldKey
|
|
68152
|
-
},
|
|
68153
|
-
data: fieldData,
|
|
68154
|
-
};
|
|
67413
|
+
const DoubleValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
68155
67414
|
sink[fieldKey] = ingest$13(requestedField, DoubleValueState);
|
|
68156
67415
|
break;
|
|
68157
67416
|
}
|
|
68158
67417
|
case 'LongValue': {
|
|
68159
|
-
const LongValueState =
|
|
68160
|
-
...state,
|
|
68161
|
-
path: {
|
|
68162
|
-
parent: null,
|
|
68163
|
-
propertyName: null,
|
|
68164
|
-
fullPath: parentKey + '__' + fieldKey
|
|
68165
|
-
},
|
|
68166
|
-
data: fieldData,
|
|
68167
|
-
};
|
|
67418
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
68168
67419
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
68169
67420
|
break;
|
|
68170
67421
|
}
|
|
68171
67422
|
case 'LatitudeValue': {
|
|
68172
|
-
const LatitudeValueState =
|
|
68173
|
-
...state,
|
|
68174
|
-
path: {
|
|
68175
|
-
parent: null,
|
|
68176
|
-
propertyName: null,
|
|
68177
|
-
fullPath: parentKey + '__' + fieldKey
|
|
68178
|
-
},
|
|
68179
|
-
data: fieldData,
|
|
68180
|
-
};
|
|
67423
|
+
const LatitudeValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
68181
67424
|
sink[fieldKey] = ingest$y(requestedField, LatitudeValueState);
|
|
68182
67425
|
break;
|
|
68183
67426
|
}
|
|
@@ -68453,80 +67696,32 @@
|
|
|
68453
67696
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
68454
67697
|
switch (fieldType.typename) {
|
|
68455
67698
|
case 'DoubleValue': {
|
|
68456
|
-
const avgState =
|
|
68457
|
-
...state,
|
|
68458
|
-
path: {
|
|
68459
|
-
parent: null,
|
|
68460
|
-
propertyName: null,
|
|
68461
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68462
|
-
},
|
|
68463
|
-
data: fieldData,
|
|
68464
|
-
};
|
|
67699
|
+
const avgState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68465
67700
|
cacheKeySink.merge(getTypeCacheKeys$16(requestedField, avgState));
|
|
68466
67701
|
break;
|
|
68467
67702
|
}
|
|
68468
67703
|
case 'LongValue': {
|
|
68469
|
-
const countState =
|
|
68470
|
-
...state,
|
|
68471
|
-
path: {
|
|
68472
|
-
parent: null,
|
|
68473
|
-
propertyName: null,
|
|
68474
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68475
|
-
},
|
|
68476
|
-
data: fieldData,
|
|
68477
|
-
};
|
|
67704
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68478
67705
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
68479
67706
|
break;
|
|
68480
67707
|
}
|
|
68481
67708
|
case 'LongValue': {
|
|
68482
|
-
const countDistinctState =
|
|
68483
|
-
...state,
|
|
68484
|
-
path: {
|
|
68485
|
-
parent: null,
|
|
68486
|
-
propertyName: null,
|
|
68487
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68488
|
-
},
|
|
68489
|
-
data: fieldData,
|
|
68490
|
-
};
|
|
67709
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68491
67710
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
68492
67711
|
break;
|
|
68493
67712
|
}
|
|
68494
67713
|
case 'LongitudeValue': {
|
|
68495
|
-
const maxState =
|
|
68496
|
-
...state,
|
|
68497
|
-
path: {
|
|
68498
|
-
parent: null,
|
|
68499
|
-
propertyName: null,
|
|
68500
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68501
|
-
},
|
|
68502
|
-
data: fieldData,
|
|
68503
|
-
};
|
|
67714
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68504
67715
|
cacheKeySink.merge(getTypeCacheKeys$P(requestedField, maxState));
|
|
68505
67716
|
break;
|
|
68506
67717
|
}
|
|
68507
67718
|
case 'LongitudeValue': {
|
|
68508
|
-
const minState =
|
|
68509
|
-
...state,
|
|
68510
|
-
path: {
|
|
68511
|
-
parent: null,
|
|
68512
|
-
propertyName: null,
|
|
68513
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68514
|
-
},
|
|
68515
|
-
data: fieldData,
|
|
68516
|
-
};
|
|
67719
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68517
67720
|
cacheKeySink.merge(getTypeCacheKeys$P(requestedField, minState));
|
|
68518
67721
|
break;
|
|
68519
67722
|
}
|
|
68520
67723
|
case 'DoubleValue': {
|
|
68521
|
-
const sumState =
|
|
68522
|
-
...state,
|
|
68523
|
-
path: {
|
|
68524
|
-
parent: null,
|
|
68525
|
-
propertyName: null,
|
|
68526
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68527
|
-
},
|
|
68528
|
-
data: fieldData,
|
|
68529
|
-
};
|
|
67724
|
+
const sumState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68530
67725
|
cacheKeySink.merge(getTypeCacheKeys$16(requestedField, sumState));
|
|
68531
67726
|
break;
|
|
68532
67727
|
}
|
|
@@ -68611,41 +67806,17 @@
|
|
|
68611
67806
|
break;
|
|
68612
67807
|
}
|
|
68613
67808
|
case 'DoubleValue': {
|
|
68614
|
-
const DoubleValueState =
|
|
68615
|
-
...state,
|
|
68616
|
-
path: {
|
|
68617
|
-
parent: null,
|
|
68618
|
-
propertyName: null,
|
|
68619
|
-
fullPath: parentKey + '__' + fieldKey
|
|
68620
|
-
},
|
|
68621
|
-
data: fieldData,
|
|
68622
|
-
};
|
|
67809
|
+
const DoubleValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
68623
67810
|
sink[fieldKey] = ingest$13(requestedField, DoubleValueState);
|
|
68624
67811
|
break;
|
|
68625
67812
|
}
|
|
68626
67813
|
case 'LongValue': {
|
|
68627
|
-
const LongValueState =
|
|
68628
|
-
...state,
|
|
68629
|
-
path: {
|
|
68630
|
-
parent: null,
|
|
68631
|
-
propertyName: null,
|
|
68632
|
-
fullPath: parentKey + '__' + fieldKey
|
|
68633
|
-
},
|
|
68634
|
-
data: fieldData,
|
|
68635
|
-
};
|
|
67814
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
68636
67815
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
68637
67816
|
break;
|
|
68638
67817
|
}
|
|
68639
67818
|
case 'LongitudeValue': {
|
|
68640
|
-
const LongitudeValueState =
|
|
68641
|
-
...state,
|
|
68642
|
-
path: {
|
|
68643
|
-
parent: null,
|
|
68644
|
-
propertyName: null,
|
|
68645
|
-
fullPath: parentKey + '__' + fieldKey
|
|
68646
|
-
},
|
|
68647
|
-
data: fieldData,
|
|
68648
|
-
};
|
|
67819
|
+
const LongitudeValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
68649
67820
|
sink[fieldKey] = ingest$M(requestedField, LongitudeValueState);
|
|
68650
67821
|
break;
|
|
68651
67822
|
}
|
|
@@ -68779,80 +67950,32 @@
|
|
|
68779
67950
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
68780
67951
|
switch (fieldType.typename) {
|
|
68781
67952
|
case 'DoubleValue': {
|
|
68782
|
-
const avgState =
|
|
68783
|
-
...state,
|
|
68784
|
-
path: {
|
|
68785
|
-
parent: null,
|
|
68786
|
-
propertyName: null,
|
|
68787
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68788
|
-
},
|
|
68789
|
-
data: fieldData,
|
|
68790
|
-
};
|
|
67953
|
+
const avgState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68791
67954
|
cacheKeySink.merge(getTypeCacheKeys$16(requestedField, avgState));
|
|
68792
67955
|
break;
|
|
68793
67956
|
}
|
|
68794
67957
|
case 'LongValue': {
|
|
68795
|
-
const countState =
|
|
68796
|
-
...state,
|
|
68797
|
-
path: {
|
|
68798
|
-
parent: null,
|
|
68799
|
-
propertyName: null,
|
|
68800
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68801
|
-
},
|
|
68802
|
-
data: fieldData,
|
|
68803
|
-
};
|
|
67958
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68804
67959
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
68805
67960
|
break;
|
|
68806
67961
|
}
|
|
68807
67962
|
case 'LongValue': {
|
|
68808
|
-
const countDistinctState =
|
|
68809
|
-
...state,
|
|
68810
|
-
path: {
|
|
68811
|
-
parent: null,
|
|
68812
|
-
propertyName: null,
|
|
68813
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68814
|
-
},
|
|
68815
|
-
data: fieldData,
|
|
68816
|
-
};
|
|
67963
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68817
67964
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
68818
67965
|
break;
|
|
68819
67966
|
}
|
|
68820
67967
|
case 'DoubleValue': {
|
|
68821
|
-
const maxState =
|
|
68822
|
-
...state,
|
|
68823
|
-
path: {
|
|
68824
|
-
parent: null,
|
|
68825
|
-
propertyName: null,
|
|
68826
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68827
|
-
},
|
|
68828
|
-
data: fieldData,
|
|
68829
|
-
};
|
|
67968
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68830
67969
|
cacheKeySink.merge(getTypeCacheKeys$16(requestedField, maxState));
|
|
68831
67970
|
break;
|
|
68832
67971
|
}
|
|
68833
67972
|
case 'DoubleValue': {
|
|
68834
|
-
const minState =
|
|
68835
|
-
...state,
|
|
68836
|
-
path: {
|
|
68837
|
-
parent: null,
|
|
68838
|
-
propertyName: null,
|
|
68839
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68840
|
-
},
|
|
68841
|
-
data: fieldData,
|
|
68842
|
-
};
|
|
67973
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68843
67974
|
cacheKeySink.merge(getTypeCacheKeys$16(requestedField, minState));
|
|
68844
67975
|
break;
|
|
68845
67976
|
}
|
|
68846
67977
|
case 'DoubleValue': {
|
|
68847
|
-
const sumState =
|
|
68848
|
-
...state,
|
|
68849
|
-
path: {
|
|
68850
|
-
parent: null,
|
|
68851
|
-
propertyName: null,
|
|
68852
|
-
fullPath: rootKey + '__' + fieldKey
|
|
68853
|
-
},
|
|
68854
|
-
data: fieldData,
|
|
68855
|
-
};
|
|
67978
|
+
const sumState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
68856
67979
|
cacheKeySink.merge(getTypeCacheKeys$16(requestedField, sumState));
|
|
68857
67980
|
break;
|
|
68858
67981
|
}
|
|
@@ -68943,28 +68066,12 @@
|
|
|
68943
68066
|
break;
|
|
68944
68067
|
}
|
|
68945
68068
|
case 'DoubleValue': {
|
|
68946
|
-
const DoubleValueState =
|
|
68947
|
-
...state,
|
|
68948
|
-
path: {
|
|
68949
|
-
parent: null,
|
|
68950
|
-
propertyName: null,
|
|
68951
|
-
fullPath: parentKey + '__' + fieldKey
|
|
68952
|
-
},
|
|
68953
|
-
data: fieldData,
|
|
68954
|
-
};
|
|
68069
|
+
const DoubleValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
68955
68070
|
sink[fieldKey] = ingest$13(requestedField, DoubleValueState);
|
|
68956
68071
|
break;
|
|
68957
68072
|
}
|
|
68958
68073
|
case 'LongValue': {
|
|
68959
|
-
const LongValueState =
|
|
68960
|
-
...state,
|
|
68961
|
-
path: {
|
|
68962
|
-
parent: null,
|
|
68963
|
-
propertyName: null,
|
|
68964
|
-
fullPath: parentKey + '__' + fieldKey
|
|
68965
|
-
},
|
|
68966
|
-
data: fieldData,
|
|
68967
|
-
};
|
|
68074
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
68968
68075
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
68969
68076
|
break;
|
|
68970
68077
|
}
|
|
@@ -69240,67 +68347,27 @@
|
|
|
69240
68347
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
69241
68348
|
switch (fieldType.typename) {
|
|
69242
68349
|
case 'LongValue': {
|
|
69243
|
-
const countState =
|
|
69244
|
-
...state,
|
|
69245
|
-
path: {
|
|
69246
|
-
parent: null,
|
|
69247
|
-
propertyName: null,
|
|
69248
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69249
|
-
},
|
|
69250
|
-
data: fieldData,
|
|
69251
|
-
};
|
|
68350
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69252
68351
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
69253
68352
|
break;
|
|
69254
68353
|
}
|
|
69255
68354
|
case 'LongValue': {
|
|
69256
|
-
const countDistinctState =
|
|
69257
|
-
...state,
|
|
69258
|
-
path: {
|
|
69259
|
-
parent: null,
|
|
69260
|
-
propertyName: null,
|
|
69261
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69262
|
-
},
|
|
69263
|
-
data: fieldData,
|
|
69264
|
-
};
|
|
68355
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69265
68356
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
69266
68357
|
break;
|
|
69267
68358
|
}
|
|
69268
68359
|
case 'IntValue': {
|
|
69269
|
-
const groupingState =
|
|
69270
|
-
...state,
|
|
69271
|
-
path: {
|
|
69272
|
-
parent: null,
|
|
69273
|
-
propertyName: null,
|
|
69274
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69275
|
-
},
|
|
69276
|
-
data: fieldData,
|
|
69277
|
-
};
|
|
68360
|
+
const groupingState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69278
68361
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, groupingState));
|
|
69279
68362
|
break;
|
|
69280
68363
|
}
|
|
69281
68364
|
case 'IDValue': {
|
|
69282
|
-
const maxState =
|
|
69283
|
-
...state,
|
|
69284
|
-
path: {
|
|
69285
|
-
parent: null,
|
|
69286
|
-
propertyName: null,
|
|
69287
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69288
|
-
},
|
|
69289
|
-
data: fieldData,
|
|
69290
|
-
};
|
|
68365
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69291
68366
|
cacheKeySink.merge(getTypeCacheKeys$a(requestedField, maxState));
|
|
69292
68367
|
break;
|
|
69293
68368
|
}
|
|
69294
68369
|
case 'IDValue': {
|
|
69295
|
-
const minState =
|
|
69296
|
-
...state,
|
|
69297
|
-
path: {
|
|
69298
|
-
parent: null,
|
|
69299
|
-
propertyName: null,
|
|
69300
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69301
|
-
},
|
|
69302
|
-
data: fieldData,
|
|
69303
|
-
};
|
|
68370
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69304
68371
|
cacheKeySink.merge(getTypeCacheKeys$a(requestedField, minState));
|
|
69305
68372
|
break;
|
|
69306
68373
|
}
|
|
@@ -69379,41 +68446,17 @@
|
|
|
69379
68446
|
break;
|
|
69380
68447
|
}
|
|
69381
68448
|
case 'LongValue': {
|
|
69382
|
-
const LongValueState =
|
|
69383
|
-
...state,
|
|
69384
|
-
path: {
|
|
69385
|
-
parent: null,
|
|
69386
|
-
propertyName: null,
|
|
69387
|
-
fullPath: parentKey + '__' + fieldKey
|
|
69388
|
-
},
|
|
69389
|
-
data: fieldData,
|
|
69390
|
-
};
|
|
68449
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
69391
68450
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
69392
68451
|
break;
|
|
69393
68452
|
}
|
|
69394
68453
|
case 'IntValue': {
|
|
69395
|
-
const IntValueState =
|
|
69396
|
-
...state,
|
|
69397
|
-
path: {
|
|
69398
|
-
parent: null,
|
|
69399
|
-
propertyName: null,
|
|
69400
|
-
fullPath: parentKey + '__' + fieldKey
|
|
69401
|
-
},
|
|
69402
|
-
data: fieldData,
|
|
69403
|
-
};
|
|
68454
|
+
const IntValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
69404
68455
|
sink[fieldKey] = ingest$$(requestedField, IntValueState);
|
|
69405
68456
|
break;
|
|
69406
68457
|
}
|
|
69407
68458
|
case 'IDValue': {
|
|
69408
|
-
const IDValueState =
|
|
69409
|
-
...state,
|
|
69410
|
-
path: {
|
|
69411
|
-
parent: null,
|
|
69412
|
-
propertyName: null,
|
|
69413
|
-
fullPath: parentKey + '__' + fieldKey
|
|
69414
|
-
},
|
|
69415
|
-
data: fieldData,
|
|
69416
|
-
};
|
|
68459
|
+
const IDValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
69417
68460
|
sink[fieldKey] = ingest$7(requestedField, IDValueState);
|
|
69418
68461
|
break;
|
|
69419
68462
|
}
|
|
@@ -69551,67 +68594,27 @@
|
|
|
69551
68594
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
69552
68595
|
switch (fieldType.typename) {
|
|
69553
68596
|
case 'LongValue': {
|
|
69554
|
-
const countState =
|
|
69555
|
-
...state,
|
|
69556
|
-
path: {
|
|
69557
|
-
parent: null,
|
|
69558
|
-
propertyName: null,
|
|
69559
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69560
|
-
},
|
|
69561
|
-
data: fieldData,
|
|
69562
|
-
};
|
|
68597
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69563
68598
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
69564
68599
|
break;
|
|
69565
68600
|
}
|
|
69566
68601
|
case 'LongValue': {
|
|
69567
|
-
const countDistinctState =
|
|
69568
|
-
...state,
|
|
69569
|
-
path: {
|
|
69570
|
-
parent: null,
|
|
69571
|
-
propertyName: null,
|
|
69572
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69573
|
-
},
|
|
69574
|
-
data: fieldData,
|
|
69575
|
-
};
|
|
68602
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69576
68603
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
69577
68604
|
break;
|
|
69578
68605
|
}
|
|
69579
68606
|
case 'IntValue': {
|
|
69580
|
-
const groupingState =
|
|
69581
|
-
...state,
|
|
69582
|
-
path: {
|
|
69583
|
-
parent: null,
|
|
69584
|
-
propertyName: null,
|
|
69585
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69586
|
-
},
|
|
69587
|
-
data: fieldData,
|
|
69588
|
-
};
|
|
68607
|
+
const groupingState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69589
68608
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, groupingState));
|
|
69590
68609
|
break;
|
|
69591
68610
|
}
|
|
69592
68611
|
case 'UrlValue': {
|
|
69593
|
-
const maxState =
|
|
69594
|
-
...state,
|
|
69595
|
-
path: {
|
|
69596
|
-
parent: null,
|
|
69597
|
-
propertyName: null,
|
|
69598
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69599
|
-
},
|
|
69600
|
-
data: fieldData,
|
|
69601
|
-
};
|
|
68612
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69602
68613
|
cacheKeySink.merge(getTypeCacheKeys$O(requestedField, maxState));
|
|
69603
68614
|
break;
|
|
69604
68615
|
}
|
|
69605
68616
|
case 'UrlValue': {
|
|
69606
|
-
const minState =
|
|
69607
|
-
...state,
|
|
69608
|
-
path: {
|
|
69609
|
-
parent: null,
|
|
69610
|
-
propertyName: null,
|
|
69611
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69612
|
-
},
|
|
69613
|
-
data: fieldData,
|
|
69614
|
-
};
|
|
68617
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69615
68618
|
cacheKeySink.merge(getTypeCacheKeys$O(requestedField, minState));
|
|
69616
68619
|
break;
|
|
69617
68620
|
}
|
|
@@ -69690,41 +68693,17 @@
|
|
|
69690
68693
|
break;
|
|
69691
68694
|
}
|
|
69692
68695
|
case 'LongValue': {
|
|
69693
|
-
const LongValueState =
|
|
69694
|
-
...state,
|
|
69695
|
-
path: {
|
|
69696
|
-
parent: null,
|
|
69697
|
-
propertyName: null,
|
|
69698
|
-
fullPath: parentKey + '__' + fieldKey
|
|
69699
|
-
},
|
|
69700
|
-
data: fieldData,
|
|
69701
|
-
};
|
|
68696
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
69702
68697
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
69703
68698
|
break;
|
|
69704
68699
|
}
|
|
69705
68700
|
case 'IntValue': {
|
|
69706
|
-
const IntValueState =
|
|
69707
|
-
...state,
|
|
69708
|
-
path: {
|
|
69709
|
-
parent: null,
|
|
69710
|
-
propertyName: null,
|
|
69711
|
-
fullPath: parentKey + '__' + fieldKey
|
|
69712
|
-
},
|
|
69713
|
-
data: fieldData,
|
|
69714
|
-
};
|
|
68701
|
+
const IntValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
69715
68702
|
sink[fieldKey] = ingest$$(requestedField, IntValueState);
|
|
69716
68703
|
break;
|
|
69717
68704
|
}
|
|
69718
68705
|
case 'UrlValue': {
|
|
69719
|
-
const UrlValueState =
|
|
69720
|
-
...state,
|
|
69721
|
-
path: {
|
|
69722
|
-
parent: null,
|
|
69723
|
-
propertyName: null,
|
|
69724
|
-
fullPath: parentKey + '__' + fieldKey
|
|
69725
|
-
},
|
|
69726
|
-
data: fieldData,
|
|
69727
|
-
};
|
|
68706
|
+
const UrlValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
69728
68707
|
sink[fieldKey] = ingest$L(requestedField, UrlValueState);
|
|
69729
68708
|
break;
|
|
69730
68709
|
}
|
|
@@ -69862,67 +68841,27 @@
|
|
|
69862
68841
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
69863
68842
|
switch (fieldType.typename) {
|
|
69864
68843
|
case 'LongValue': {
|
|
69865
|
-
const countState =
|
|
69866
|
-
...state,
|
|
69867
|
-
path: {
|
|
69868
|
-
parent: null,
|
|
69869
|
-
propertyName: null,
|
|
69870
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69871
|
-
},
|
|
69872
|
-
data: fieldData,
|
|
69873
|
-
};
|
|
68844
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69874
68845
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
69875
68846
|
break;
|
|
69876
68847
|
}
|
|
69877
68848
|
case 'LongValue': {
|
|
69878
|
-
const countDistinctState =
|
|
69879
|
-
...state,
|
|
69880
|
-
path: {
|
|
69881
|
-
parent: null,
|
|
69882
|
-
propertyName: null,
|
|
69883
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69884
|
-
},
|
|
69885
|
-
data: fieldData,
|
|
69886
|
-
};
|
|
68849
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69887
68850
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
69888
68851
|
break;
|
|
69889
68852
|
}
|
|
69890
68853
|
case 'IntValue': {
|
|
69891
|
-
const groupingState =
|
|
69892
|
-
...state,
|
|
69893
|
-
path: {
|
|
69894
|
-
parent: null,
|
|
69895
|
-
propertyName: null,
|
|
69896
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69897
|
-
},
|
|
69898
|
-
data: fieldData,
|
|
69899
|
-
};
|
|
68854
|
+
const groupingState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69900
68855
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, groupingState));
|
|
69901
68856
|
break;
|
|
69902
68857
|
}
|
|
69903
68858
|
case 'TextAreaValue': {
|
|
69904
|
-
const maxState =
|
|
69905
|
-
...state,
|
|
69906
|
-
path: {
|
|
69907
|
-
parent: null,
|
|
69908
|
-
propertyName: null,
|
|
69909
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69910
|
-
},
|
|
69911
|
-
data: fieldData,
|
|
69912
|
-
};
|
|
68859
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69913
68860
|
cacheKeySink.merge(getTypeCacheKeys$w(requestedField, maxState));
|
|
69914
68861
|
break;
|
|
69915
68862
|
}
|
|
69916
68863
|
case 'TextAreaValue': {
|
|
69917
|
-
const minState =
|
|
69918
|
-
...state,
|
|
69919
|
-
path: {
|
|
69920
|
-
parent: null,
|
|
69921
|
-
propertyName: null,
|
|
69922
|
-
fullPath: rootKey + '__' + fieldKey
|
|
69923
|
-
},
|
|
69924
|
-
data: fieldData,
|
|
69925
|
-
};
|
|
68864
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
69926
68865
|
cacheKeySink.merge(getTypeCacheKeys$w(requestedField, minState));
|
|
69927
68866
|
break;
|
|
69928
68867
|
}
|
|
@@ -70001,41 +68940,17 @@
|
|
|
70001
68940
|
break;
|
|
70002
68941
|
}
|
|
70003
68942
|
case 'LongValue': {
|
|
70004
|
-
const LongValueState =
|
|
70005
|
-
...state,
|
|
70006
|
-
path: {
|
|
70007
|
-
parent: null,
|
|
70008
|
-
propertyName: null,
|
|
70009
|
-
fullPath: parentKey + '__' + fieldKey
|
|
70010
|
-
},
|
|
70011
|
-
data: fieldData,
|
|
70012
|
-
};
|
|
68943
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
70013
68944
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
70014
68945
|
break;
|
|
70015
68946
|
}
|
|
70016
68947
|
case 'IntValue': {
|
|
70017
|
-
const IntValueState =
|
|
70018
|
-
...state,
|
|
70019
|
-
path: {
|
|
70020
|
-
parent: null,
|
|
70021
|
-
propertyName: null,
|
|
70022
|
-
fullPath: parentKey + '__' + fieldKey
|
|
70023
|
-
},
|
|
70024
|
-
data: fieldData,
|
|
70025
|
-
};
|
|
68948
|
+
const IntValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
70026
68949
|
sink[fieldKey] = ingest$$(requestedField, IntValueState);
|
|
70027
68950
|
break;
|
|
70028
68951
|
}
|
|
70029
68952
|
case 'TextAreaValue': {
|
|
70030
|
-
const TextAreaValueState =
|
|
70031
|
-
...state,
|
|
70032
|
-
path: {
|
|
70033
|
-
parent: null,
|
|
70034
|
-
propertyName: null,
|
|
70035
|
-
fullPath: parentKey + '__' + fieldKey
|
|
70036
|
-
},
|
|
70037
|
-
data: fieldData,
|
|
70038
|
-
};
|
|
68953
|
+
const TextAreaValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
70039
68954
|
sink[fieldKey] = ingest$t(requestedField, TextAreaValueState);
|
|
70040
68955
|
break;
|
|
70041
68956
|
}
|
|
@@ -70317,67 +69232,27 @@
|
|
|
70317
69232
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
70318
69233
|
switch (fieldType.typename) {
|
|
70319
69234
|
case 'LongValue': {
|
|
70320
|
-
const countState =
|
|
70321
|
-
...state,
|
|
70322
|
-
path: {
|
|
70323
|
-
parent: null,
|
|
70324
|
-
propertyName: null,
|
|
70325
|
-
fullPath: rootKey + '__' + fieldKey
|
|
70326
|
-
},
|
|
70327
|
-
data: fieldData,
|
|
70328
|
-
};
|
|
69235
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
70329
69236
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
70330
69237
|
break;
|
|
70331
69238
|
}
|
|
70332
69239
|
case 'LongValue': {
|
|
70333
|
-
const countDistinctState =
|
|
70334
|
-
...state,
|
|
70335
|
-
path: {
|
|
70336
|
-
parent: null,
|
|
70337
|
-
propertyName: null,
|
|
70338
|
-
fullPath: rootKey + '__' + fieldKey
|
|
70339
|
-
},
|
|
70340
|
-
data: fieldData,
|
|
70341
|
-
};
|
|
69240
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
70342
69241
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
70343
69242
|
break;
|
|
70344
69243
|
}
|
|
70345
69244
|
case 'IntValue': {
|
|
70346
|
-
const groupingState =
|
|
70347
|
-
...state,
|
|
70348
|
-
path: {
|
|
70349
|
-
parent: null,
|
|
70350
|
-
propertyName: null,
|
|
70351
|
-
fullPath: rootKey + '__' + fieldKey
|
|
70352
|
-
},
|
|
70353
|
-
data: fieldData,
|
|
70354
|
-
};
|
|
69245
|
+
const groupingState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
70355
69246
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, groupingState));
|
|
70356
69247
|
break;
|
|
70357
69248
|
}
|
|
70358
69249
|
case 'PicklistValue': {
|
|
70359
|
-
const maxState =
|
|
70360
|
-
...state,
|
|
70361
|
-
path: {
|
|
70362
|
-
parent: null,
|
|
70363
|
-
propertyName: null,
|
|
70364
|
-
fullPath: rootKey + '__' + fieldKey
|
|
70365
|
-
},
|
|
70366
|
-
data: fieldData,
|
|
70367
|
-
};
|
|
69250
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
70368
69251
|
cacheKeySink.merge(getTypeCacheKeys$K(requestedField, maxState));
|
|
70369
69252
|
break;
|
|
70370
69253
|
}
|
|
70371
69254
|
case 'PicklistValue': {
|
|
70372
|
-
const minState =
|
|
70373
|
-
...state,
|
|
70374
|
-
path: {
|
|
70375
|
-
parent: null,
|
|
70376
|
-
propertyName: null,
|
|
70377
|
-
fullPath: rootKey + '__' + fieldKey
|
|
70378
|
-
},
|
|
70379
|
-
data: fieldData,
|
|
70380
|
-
};
|
|
69255
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
70381
69256
|
cacheKeySink.merge(getTypeCacheKeys$K(requestedField, minState));
|
|
70382
69257
|
break;
|
|
70383
69258
|
}
|
|
@@ -70462,41 +69337,17 @@
|
|
|
70462
69337
|
break;
|
|
70463
69338
|
}
|
|
70464
69339
|
case 'LongValue': {
|
|
70465
|
-
const LongValueState =
|
|
70466
|
-
...state,
|
|
70467
|
-
path: {
|
|
70468
|
-
parent: null,
|
|
70469
|
-
propertyName: null,
|
|
70470
|
-
fullPath: parentKey + '__' + fieldKey
|
|
70471
|
-
},
|
|
70472
|
-
data: fieldData,
|
|
70473
|
-
};
|
|
69340
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
70474
69341
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
70475
69342
|
break;
|
|
70476
69343
|
}
|
|
70477
69344
|
case 'IntValue': {
|
|
70478
|
-
const IntValueState =
|
|
70479
|
-
...state,
|
|
70480
|
-
path: {
|
|
70481
|
-
parent: null,
|
|
70482
|
-
propertyName: null,
|
|
70483
|
-
fullPath: parentKey + '__' + fieldKey
|
|
70484
|
-
},
|
|
70485
|
-
data: fieldData,
|
|
70486
|
-
};
|
|
69345
|
+
const IntValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
70487
69346
|
sink[fieldKey] = ingest$$(requestedField, IntValueState);
|
|
70488
69347
|
break;
|
|
70489
69348
|
}
|
|
70490
69349
|
case 'PicklistValue': {
|
|
70491
|
-
const PicklistValueState =
|
|
70492
|
-
...state,
|
|
70493
|
-
path: {
|
|
70494
|
-
parent: null,
|
|
70495
|
-
propertyName: null,
|
|
70496
|
-
fullPath: parentKey + '__' + fieldKey
|
|
70497
|
-
},
|
|
70498
|
-
data: fieldData,
|
|
70499
|
-
};
|
|
69350
|
+
const PicklistValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
70500
69351
|
sink[fieldKey] = ingest$H(requestedField, PicklistValueState);
|
|
70501
69352
|
break;
|
|
70502
69353
|
}
|
|
@@ -70634,93 +69485,37 @@
|
|
|
70634
69485
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
70635
69486
|
switch (fieldType.typename) {
|
|
70636
69487
|
case 'DoubleValue': {
|
|
70637
|
-
const avgState =
|
|
70638
|
-
...state,
|
|
70639
|
-
path: {
|
|
70640
|
-
parent: null,
|
|
70641
|
-
propertyName: null,
|
|
70642
|
-
fullPath: rootKey + '__' + fieldKey
|
|
70643
|
-
},
|
|
70644
|
-
data: fieldData,
|
|
70645
|
-
};
|
|
69488
|
+
const avgState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
70646
69489
|
cacheKeySink.merge(getTypeCacheKeys$16(requestedField, avgState));
|
|
70647
69490
|
break;
|
|
70648
69491
|
}
|
|
70649
69492
|
case 'LongValue': {
|
|
70650
|
-
const countState =
|
|
70651
|
-
...state,
|
|
70652
|
-
path: {
|
|
70653
|
-
parent: null,
|
|
70654
|
-
propertyName: null,
|
|
70655
|
-
fullPath: rootKey + '__' + fieldKey
|
|
70656
|
-
},
|
|
70657
|
-
data: fieldData,
|
|
70658
|
-
};
|
|
69493
|
+
const countState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
70659
69494
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countState));
|
|
70660
69495
|
break;
|
|
70661
69496
|
}
|
|
70662
69497
|
case 'LongValue': {
|
|
70663
|
-
const countDistinctState =
|
|
70664
|
-
...state,
|
|
70665
|
-
path: {
|
|
70666
|
-
parent: null,
|
|
70667
|
-
propertyName: null,
|
|
70668
|
-
fullPath: rootKey + '__' + fieldKey
|
|
70669
|
-
},
|
|
70670
|
-
data: fieldData,
|
|
70671
|
-
};
|
|
69498
|
+
const countDistinctState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
70672
69499
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, countDistinctState));
|
|
70673
69500
|
break;
|
|
70674
69501
|
}
|
|
70675
69502
|
case 'IntValue': {
|
|
70676
|
-
const groupingState =
|
|
70677
|
-
...state,
|
|
70678
|
-
path: {
|
|
70679
|
-
parent: null,
|
|
70680
|
-
propertyName: null,
|
|
70681
|
-
fullPath: rootKey + '__' + fieldKey
|
|
70682
|
-
},
|
|
70683
|
-
data: fieldData,
|
|
70684
|
-
};
|
|
69503
|
+
const groupingState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
70685
69504
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, groupingState));
|
|
70686
69505
|
break;
|
|
70687
69506
|
}
|
|
70688
69507
|
case 'IntValue': {
|
|
70689
|
-
const maxState =
|
|
70690
|
-
...state,
|
|
70691
|
-
path: {
|
|
70692
|
-
parent: null,
|
|
70693
|
-
propertyName: null,
|
|
70694
|
-
fullPath: rootKey + '__' + fieldKey
|
|
70695
|
-
},
|
|
70696
|
-
data: fieldData,
|
|
70697
|
-
};
|
|
69508
|
+
const maxState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
70698
69509
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, maxState));
|
|
70699
69510
|
break;
|
|
70700
69511
|
}
|
|
70701
69512
|
case 'IntValue': {
|
|
70702
|
-
const minState =
|
|
70703
|
-
...state,
|
|
70704
|
-
path: {
|
|
70705
|
-
parent: null,
|
|
70706
|
-
propertyName: null,
|
|
70707
|
-
fullPath: rootKey + '__' + fieldKey
|
|
70708
|
-
},
|
|
70709
|
-
data: fieldData,
|
|
70710
|
-
};
|
|
69513
|
+
const minState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
70711
69514
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, minState));
|
|
70712
69515
|
break;
|
|
70713
69516
|
}
|
|
70714
69517
|
case 'LongValue': {
|
|
70715
|
-
const sumState =
|
|
70716
|
-
...state,
|
|
70717
|
-
path: {
|
|
70718
|
-
parent: null,
|
|
70719
|
-
propertyName: null,
|
|
70720
|
-
fullPath: rootKey + '__' + fieldKey
|
|
70721
|
-
},
|
|
70722
|
-
data: fieldData,
|
|
70723
|
-
};
|
|
69518
|
+
const sumState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
70724
69519
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, sumState));
|
|
70725
69520
|
break;
|
|
70726
69521
|
}
|
|
@@ -70817,41 +69612,17 @@
|
|
|
70817
69612
|
break;
|
|
70818
69613
|
}
|
|
70819
69614
|
case 'DoubleValue': {
|
|
70820
|
-
const DoubleValueState =
|
|
70821
|
-
...state,
|
|
70822
|
-
path: {
|
|
70823
|
-
parent: null,
|
|
70824
|
-
propertyName: null,
|
|
70825
|
-
fullPath: parentKey + '__' + fieldKey
|
|
70826
|
-
},
|
|
70827
|
-
data: fieldData,
|
|
70828
|
-
};
|
|
69615
|
+
const DoubleValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
70829
69616
|
sink[fieldKey] = ingest$13(requestedField, DoubleValueState);
|
|
70830
69617
|
break;
|
|
70831
69618
|
}
|
|
70832
69619
|
case 'LongValue': {
|
|
70833
|
-
const LongValueState =
|
|
70834
|
-
...state,
|
|
70835
|
-
path: {
|
|
70836
|
-
parent: null,
|
|
70837
|
-
propertyName: null,
|
|
70838
|
-
fullPath: parentKey + '__' + fieldKey
|
|
70839
|
-
},
|
|
70840
|
-
data: fieldData,
|
|
70841
|
-
};
|
|
69620
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
70842
69621
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
70843
69622
|
break;
|
|
70844
69623
|
}
|
|
70845
69624
|
case 'IntValue': {
|
|
70846
|
-
const IntValueState =
|
|
70847
|
-
...state,
|
|
70848
|
-
path: {
|
|
70849
|
-
parent: null,
|
|
70850
|
-
propertyName: null,
|
|
70851
|
-
fullPath: parentKey + '__' + fieldKey
|
|
70852
|
-
},
|
|
70853
|
-
data: fieldData,
|
|
70854
|
-
};
|
|
69625
|
+
const IntValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
70855
69626
|
sink[fieldKey] = ingest$$(requestedField, IntValueState);
|
|
70856
69627
|
break;
|
|
70857
69628
|
}
|
|
@@ -71119,15 +69890,7 @@
|
|
|
71119
69890
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
71120
69891
|
switch (fieldType.typename) {
|
|
71121
69892
|
case 'IntValue': {
|
|
71122
|
-
const groupingState =
|
|
71123
|
-
...state,
|
|
71124
|
-
path: {
|
|
71125
|
-
parent: null,
|
|
71126
|
-
propertyName: null,
|
|
71127
|
-
fullPath: rootKey + '__' + fieldKey
|
|
71128
|
-
},
|
|
71129
|
-
data: fieldData,
|
|
71130
|
-
};
|
|
69893
|
+
const groupingState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
71131
69894
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, groupingState));
|
|
71132
69895
|
break;
|
|
71133
69896
|
}
|
|
@@ -71182,15 +69945,7 @@
|
|
|
71182
69945
|
break;
|
|
71183
69946
|
}
|
|
71184
69947
|
case 'IntValue': {
|
|
71185
|
-
const IntValueState =
|
|
71186
|
-
...state,
|
|
71187
|
-
path: {
|
|
71188
|
-
parent: null,
|
|
71189
|
-
propertyName: null,
|
|
71190
|
-
fullPath: parentKey + '__' + fieldKey
|
|
71191
|
-
},
|
|
71192
|
-
data: fieldData,
|
|
71193
|
-
};
|
|
69948
|
+
const IntValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
71194
69949
|
sink[fieldKey] = ingest$$(requestedField, IntValueState);
|
|
71195
69950
|
break;
|
|
71196
69951
|
}
|
|
@@ -72046,28 +70801,12 @@
|
|
|
72046
70801
|
break;
|
|
72047
70802
|
}
|
|
72048
70803
|
case 'ListColumn': {
|
|
72049
|
-
const ListColumnState =
|
|
72050
|
-
...state,
|
|
72051
|
-
path: {
|
|
72052
|
-
parent: null,
|
|
72053
|
-
propertyName: null,
|
|
72054
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72055
|
-
},
|
|
72056
|
-
data: fieldData,
|
|
72057
|
-
};
|
|
70804
|
+
const ListColumnState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72058
70805
|
sink[fieldKey] = ingest$i(requestedField, ListColumnState);
|
|
72059
70806
|
break;
|
|
72060
70807
|
}
|
|
72061
70808
|
case 'ListOrder': {
|
|
72062
|
-
const ListOrderState =
|
|
72063
|
-
...state,
|
|
72064
|
-
path: {
|
|
72065
|
-
parent: null,
|
|
72066
|
-
propertyName: null,
|
|
72067
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72068
|
-
},
|
|
72069
|
-
data: fieldData,
|
|
72070
|
-
};
|
|
70809
|
+
const ListOrderState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72071
70810
|
sink[fieldKey] = ingest$h(requestedField, ListOrderState);
|
|
72072
70811
|
break;
|
|
72073
70812
|
}
|
|
@@ -72456,223 +71195,87 @@
|
|
|
72456
71195
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
72457
71196
|
switch (fieldType.typename) {
|
|
72458
71197
|
case 'BooleanAggregate': {
|
|
72459
|
-
const BooleanAggregateState =
|
|
72460
|
-
...state,
|
|
72461
|
-
path: {
|
|
72462
|
-
parent: null,
|
|
72463
|
-
propertyName: null,
|
|
72464
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72465
|
-
},
|
|
72466
|
-
data: fieldData,
|
|
72467
|
-
};
|
|
71198
|
+
const BooleanAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72468
71199
|
cacheKeySink.merge(getTypeCacheKeys$o(requestedField, BooleanAggregateState));
|
|
72469
71200
|
break;
|
|
72470
71201
|
}
|
|
72471
71202
|
case 'CurrencyAggregate': {
|
|
72472
|
-
const CurrencyAggregateState =
|
|
72473
|
-
...state,
|
|
72474
|
-
path: {
|
|
72475
|
-
parent: null,
|
|
72476
|
-
propertyName: null,
|
|
72477
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72478
|
-
},
|
|
72479
|
-
data: fieldData,
|
|
72480
|
-
};
|
|
71203
|
+
const CurrencyAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72481
71204
|
cacheKeySink.merge(getTypeCacheKeys$I(requestedField, CurrencyAggregateState));
|
|
72482
71205
|
break;
|
|
72483
71206
|
}
|
|
72484
71207
|
case 'DateAggregate': {
|
|
72485
|
-
const DateAggregateState =
|
|
72486
|
-
...state,
|
|
72487
|
-
path: {
|
|
72488
|
-
parent: null,
|
|
72489
|
-
propertyName: null,
|
|
72490
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72491
|
-
},
|
|
72492
|
-
data: fieldData,
|
|
72493
|
-
};
|
|
71208
|
+
const DateAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72494
71209
|
cacheKeySink.merge(getTypeCacheKeys$Z(requestedField, DateAggregateState));
|
|
72495
71210
|
break;
|
|
72496
71211
|
}
|
|
72497
71212
|
case 'DoubleAggregate': {
|
|
72498
|
-
const DoubleAggregateState =
|
|
72499
|
-
...state,
|
|
72500
|
-
path: {
|
|
72501
|
-
parent: null,
|
|
72502
|
-
propertyName: null,
|
|
72503
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72504
|
-
},
|
|
72505
|
-
data: fieldData,
|
|
72506
|
-
};
|
|
71213
|
+
const DoubleAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72507
71214
|
cacheKeySink.merge(getTypeCacheKeys$x(requestedField, DoubleAggregateState));
|
|
72508
71215
|
break;
|
|
72509
71216
|
}
|
|
72510
71217
|
case 'EmailAggregate': {
|
|
72511
|
-
const EmailAggregateState =
|
|
72512
|
-
...state,
|
|
72513
|
-
path: {
|
|
72514
|
-
parent: null,
|
|
72515
|
-
propertyName: null,
|
|
72516
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72517
|
-
},
|
|
72518
|
-
data: fieldData,
|
|
72519
|
-
};
|
|
71218
|
+
const EmailAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72520
71219
|
cacheKeySink.merge(getTypeCacheKeys$F(requestedField, EmailAggregateState));
|
|
72521
71220
|
break;
|
|
72522
71221
|
}
|
|
72523
71222
|
case 'IDAggregate': {
|
|
72524
|
-
const IDAggregateState =
|
|
72525
|
-
...state,
|
|
72526
|
-
path: {
|
|
72527
|
-
parent: null,
|
|
72528
|
-
propertyName: null,
|
|
72529
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72530
|
-
},
|
|
72531
|
-
data: fieldData,
|
|
72532
|
-
};
|
|
71223
|
+
const IDAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72533
71224
|
cacheKeySink.merge(getTypeCacheKeys$v(requestedField, IDAggregateState));
|
|
72534
71225
|
break;
|
|
72535
71226
|
}
|
|
72536
71227
|
case 'IntAggregate': {
|
|
72537
|
-
const IntAggregateState =
|
|
72538
|
-
...state,
|
|
72539
|
-
path: {
|
|
72540
|
-
parent: null,
|
|
72541
|
-
propertyName: null,
|
|
72542
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72543
|
-
},
|
|
72544
|
-
data: fieldData,
|
|
72545
|
-
};
|
|
71228
|
+
const IntAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72546
71229
|
cacheKeySink.merge(getTypeCacheKeys$q(requestedField, IntAggregateState));
|
|
72547
71230
|
break;
|
|
72548
71231
|
}
|
|
72549
71232
|
case 'LatitudeAggregate': {
|
|
72550
|
-
const LatitudeAggregateState =
|
|
72551
|
-
...state,
|
|
72552
|
-
path: {
|
|
72553
|
-
parent: null,
|
|
72554
|
-
propertyName: null,
|
|
72555
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72556
|
-
},
|
|
72557
|
-
data: fieldData,
|
|
72558
|
-
};
|
|
71233
|
+
const LatitudeAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72559
71234
|
cacheKeySink.merge(getTypeCacheKeys$A(requestedField, LatitudeAggregateState));
|
|
72560
71235
|
break;
|
|
72561
71236
|
}
|
|
72562
71237
|
case 'LongitudeAggregate': {
|
|
72563
|
-
const LongitudeAggregateState =
|
|
72564
|
-
...state,
|
|
72565
|
-
path: {
|
|
72566
|
-
parent: null,
|
|
72567
|
-
propertyName: null,
|
|
72568
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72569
|
-
},
|
|
72570
|
-
data: fieldData,
|
|
72571
|
-
};
|
|
71238
|
+
const LongitudeAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72572
71239
|
cacheKeySink.merge(getTypeCacheKeys$y(requestedField, LongitudeAggregateState));
|
|
72573
71240
|
break;
|
|
72574
71241
|
}
|
|
72575
71242
|
case 'LongAggregate': {
|
|
72576
|
-
const LongAggregateState =
|
|
72577
|
-
...state,
|
|
72578
|
-
path: {
|
|
72579
|
-
parent: null,
|
|
72580
|
-
propertyName: null,
|
|
72581
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72582
|
-
},
|
|
72583
|
-
data: fieldData,
|
|
72584
|
-
};
|
|
71243
|
+
const LongAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72585
71244
|
cacheKeySink.merge(getTypeCacheKeys$N(requestedField, LongAggregateState));
|
|
72586
71245
|
break;
|
|
72587
71246
|
}
|
|
72588
71247
|
case 'PercentAggregate': {
|
|
72589
|
-
const PercentAggregateState =
|
|
72590
|
-
...state,
|
|
72591
|
-
path: {
|
|
72592
|
-
parent: null,
|
|
72593
|
-
propertyName: null,
|
|
72594
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72595
|
-
},
|
|
72596
|
-
data: fieldData,
|
|
72597
|
-
};
|
|
71248
|
+
const PercentAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72598
71249
|
cacheKeySink.merge(getTypeCacheKeys$13(requestedField, PercentAggregateState));
|
|
72599
71250
|
break;
|
|
72600
71251
|
}
|
|
72601
71252
|
case 'PhoneNumberAggregate': {
|
|
72602
|
-
const PhoneNumberAggregateState =
|
|
72603
|
-
...state,
|
|
72604
|
-
path: {
|
|
72605
|
-
parent: null,
|
|
72606
|
-
propertyName: null,
|
|
72607
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72608
|
-
},
|
|
72609
|
-
data: fieldData,
|
|
72610
|
-
};
|
|
71253
|
+
const PhoneNumberAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72611
71254
|
cacheKeySink.merge(getTypeCacheKeys$L(requestedField, PhoneNumberAggregateState));
|
|
72612
71255
|
break;
|
|
72613
71256
|
}
|
|
72614
71257
|
case 'PicklistAggregate': {
|
|
72615
|
-
const PicklistAggregateState =
|
|
72616
|
-
...state,
|
|
72617
|
-
path: {
|
|
72618
|
-
parent: null,
|
|
72619
|
-
propertyName: null,
|
|
72620
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72621
|
-
},
|
|
72622
|
-
data: fieldData,
|
|
72623
|
-
};
|
|
71258
|
+
const PicklistAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72624
71259
|
cacheKeySink.merge(getTypeCacheKeys$r(requestedField, PicklistAggregateState));
|
|
72625
71260
|
break;
|
|
72626
71261
|
}
|
|
72627
71262
|
case 'StringAggregate': {
|
|
72628
|
-
const StringAggregateState =
|
|
72629
|
-
...state,
|
|
72630
|
-
path: {
|
|
72631
|
-
parent: null,
|
|
72632
|
-
propertyName: null,
|
|
72633
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72634
|
-
},
|
|
72635
|
-
data: fieldData,
|
|
72636
|
-
};
|
|
71263
|
+
const StringAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72637
71264
|
cacheKeySink.merge(getTypeCacheKeys$10(requestedField, StringAggregateState));
|
|
72638
71265
|
break;
|
|
72639
71266
|
}
|
|
72640
71267
|
case 'TextAreaAggregate': {
|
|
72641
|
-
const TextAreaAggregateState =
|
|
72642
|
-
...state,
|
|
72643
|
-
path: {
|
|
72644
|
-
parent: null,
|
|
72645
|
-
propertyName: null,
|
|
72646
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72647
|
-
},
|
|
72648
|
-
data: fieldData,
|
|
72649
|
-
};
|
|
71268
|
+
const TextAreaAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72650
71269
|
cacheKeySink.merge(getTypeCacheKeys$t(requestedField, TextAreaAggregateState));
|
|
72651
71270
|
break;
|
|
72652
71271
|
}
|
|
72653
71272
|
case 'TimeAggregate': {
|
|
72654
|
-
const TimeAggregateState =
|
|
72655
|
-
...state,
|
|
72656
|
-
path: {
|
|
72657
|
-
parent: null,
|
|
72658
|
-
propertyName: null,
|
|
72659
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72660
|
-
},
|
|
72661
|
-
data: fieldData,
|
|
72662
|
-
};
|
|
71273
|
+
const TimeAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72663
71274
|
cacheKeySink.merge(getTypeCacheKeys$C(requestedField, TimeAggregateState));
|
|
72664
71275
|
break;
|
|
72665
71276
|
}
|
|
72666
71277
|
case 'UrlAggregate': {
|
|
72667
|
-
const UrlAggregateState =
|
|
72668
|
-
...state,
|
|
72669
|
-
path: {
|
|
72670
|
-
parent: null,
|
|
72671
|
-
propertyName: null,
|
|
72672
|
-
fullPath: rootKey + '__' + fieldKey
|
|
72673
|
-
},
|
|
72674
|
-
data: fieldData,
|
|
72675
|
-
};
|
|
71278
|
+
const UrlAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
72676
71279
|
cacheKeySink.merge(getTypeCacheKeys$u(requestedField, UrlAggregateState));
|
|
72677
71280
|
break;
|
|
72678
71281
|
}
|
|
@@ -72693,223 +71296,87 @@
|
|
|
72693
71296
|
break;
|
|
72694
71297
|
}
|
|
72695
71298
|
case 'BooleanAggregate': {
|
|
72696
|
-
const BooleanAggregateState =
|
|
72697
|
-
...state,
|
|
72698
|
-
path: {
|
|
72699
|
-
parent: null,
|
|
72700
|
-
propertyName: null,
|
|
72701
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72702
|
-
},
|
|
72703
|
-
data: fieldData,
|
|
72704
|
-
};
|
|
71299
|
+
const BooleanAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72705
71300
|
sink[fieldKey] = ingest$l(requestedField, BooleanAggregateState);
|
|
72706
71301
|
break;
|
|
72707
71302
|
}
|
|
72708
71303
|
case 'CurrencyAggregate': {
|
|
72709
|
-
const CurrencyAggregateState =
|
|
72710
|
-
...state,
|
|
72711
|
-
path: {
|
|
72712
|
-
parent: null,
|
|
72713
|
-
propertyName: null,
|
|
72714
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72715
|
-
},
|
|
72716
|
-
data: fieldData,
|
|
72717
|
-
};
|
|
71304
|
+
const CurrencyAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72718
71305
|
sink[fieldKey] = ingest$F(requestedField, CurrencyAggregateState);
|
|
72719
71306
|
break;
|
|
72720
71307
|
}
|
|
72721
71308
|
case 'DateAggregate': {
|
|
72722
|
-
const DateAggregateState =
|
|
72723
|
-
...state,
|
|
72724
|
-
path: {
|
|
72725
|
-
parent: null,
|
|
72726
|
-
propertyName: null,
|
|
72727
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72728
|
-
},
|
|
72729
|
-
data: fieldData,
|
|
72730
|
-
};
|
|
71309
|
+
const DateAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72731
71310
|
sink[fieldKey] = ingest$W(requestedField, DateAggregateState);
|
|
72732
71311
|
break;
|
|
72733
71312
|
}
|
|
72734
71313
|
case 'DoubleAggregate': {
|
|
72735
|
-
const DoubleAggregateState =
|
|
72736
|
-
...state,
|
|
72737
|
-
path: {
|
|
72738
|
-
parent: null,
|
|
72739
|
-
propertyName: null,
|
|
72740
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72741
|
-
},
|
|
72742
|
-
data: fieldData,
|
|
72743
|
-
};
|
|
71314
|
+
const DoubleAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72744
71315
|
sink[fieldKey] = ingest$u(requestedField, DoubleAggregateState);
|
|
72745
71316
|
break;
|
|
72746
71317
|
}
|
|
72747
71318
|
case 'EmailAggregate': {
|
|
72748
|
-
const EmailAggregateState =
|
|
72749
|
-
...state,
|
|
72750
|
-
path: {
|
|
72751
|
-
parent: null,
|
|
72752
|
-
propertyName: null,
|
|
72753
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72754
|
-
},
|
|
72755
|
-
data: fieldData,
|
|
72756
|
-
};
|
|
71319
|
+
const EmailAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72757
71320
|
sink[fieldKey] = ingest$C(requestedField, EmailAggregateState);
|
|
72758
71321
|
break;
|
|
72759
71322
|
}
|
|
72760
71323
|
case 'IDAggregate': {
|
|
72761
|
-
const IDAggregateState =
|
|
72762
|
-
...state,
|
|
72763
|
-
path: {
|
|
72764
|
-
parent: null,
|
|
72765
|
-
propertyName: null,
|
|
72766
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72767
|
-
},
|
|
72768
|
-
data: fieldData,
|
|
72769
|
-
};
|
|
71324
|
+
const IDAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72770
71325
|
sink[fieldKey] = ingest$s(requestedField, IDAggregateState);
|
|
72771
71326
|
break;
|
|
72772
71327
|
}
|
|
72773
71328
|
case 'IntAggregate': {
|
|
72774
|
-
const IntAggregateState =
|
|
72775
|
-
...state,
|
|
72776
|
-
path: {
|
|
72777
|
-
parent: null,
|
|
72778
|
-
propertyName: null,
|
|
72779
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72780
|
-
},
|
|
72781
|
-
data: fieldData,
|
|
72782
|
-
};
|
|
71329
|
+
const IntAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72783
71330
|
sink[fieldKey] = ingest$n(requestedField, IntAggregateState);
|
|
72784
71331
|
break;
|
|
72785
71332
|
}
|
|
72786
71333
|
case 'LatitudeAggregate': {
|
|
72787
|
-
const LatitudeAggregateState =
|
|
72788
|
-
...state,
|
|
72789
|
-
path: {
|
|
72790
|
-
parent: null,
|
|
72791
|
-
propertyName: null,
|
|
72792
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72793
|
-
},
|
|
72794
|
-
data: fieldData,
|
|
72795
|
-
};
|
|
71334
|
+
const LatitudeAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72796
71335
|
sink[fieldKey] = ingest$x(requestedField, LatitudeAggregateState);
|
|
72797
71336
|
break;
|
|
72798
71337
|
}
|
|
72799
71338
|
case 'LongitudeAggregate': {
|
|
72800
|
-
const LongitudeAggregateState =
|
|
72801
|
-
...state,
|
|
72802
|
-
path: {
|
|
72803
|
-
parent: null,
|
|
72804
|
-
propertyName: null,
|
|
72805
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72806
|
-
},
|
|
72807
|
-
data: fieldData,
|
|
72808
|
-
};
|
|
71339
|
+
const LongitudeAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72809
71340
|
sink[fieldKey] = ingest$v(requestedField, LongitudeAggregateState);
|
|
72810
71341
|
break;
|
|
72811
71342
|
}
|
|
72812
71343
|
case 'LongAggregate': {
|
|
72813
|
-
const LongAggregateState =
|
|
72814
|
-
...state,
|
|
72815
|
-
path: {
|
|
72816
|
-
parent: null,
|
|
72817
|
-
propertyName: null,
|
|
72818
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72819
|
-
},
|
|
72820
|
-
data: fieldData,
|
|
72821
|
-
};
|
|
71344
|
+
const LongAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72822
71345
|
sink[fieldKey] = ingest$K(requestedField, LongAggregateState);
|
|
72823
71346
|
break;
|
|
72824
71347
|
}
|
|
72825
71348
|
case 'PercentAggregate': {
|
|
72826
|
-
const PercentAggregateState =
|
|
72827
|
-
...state,
|
|
72828
|
-
path: {
|
|
72829
|
-
parent: null,
|
|
72830
|
-
propertyName: null,
|
|
72831
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72832
|
-
},
|
|
72833
|
-
data: fieldData,
|
|
72834
|
-
};
|
|
71349
|
+
const PercentAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72835
71350
|
sink[fieldKey] = ingest$10(requestedField, PercentAggregateState);
|
|
72836
71351
|
break;
|
|
72837
71352
|
}
|
|
72838
71353
|
case 'PhoneNumberAggregate': {
|
|
72839
|
-
const PhoneNumberAggregateState =
|
|
72840
|
-
...state,
|
|
72841
|
-
path: {
|
|
72842
|
-
parent: null,
|
|
72843
|
-
propertyName: null,
|
|
72844
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72845
|
-
},
|
|
72846
|
-
data: fieldData,
|
|
72847
|
-
};
|
|
71354
|
+
const PhoneNumberAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72848
71355
|
sink[fieldKey] = ingest$I(requestedField, PhoneNumberAggregateState);
|
|
72849
71356
|
break;
|
|
72850
71357
|
}
|
|
72851
71358
|
case 'PicklistAggregate': {
|
|
72852
|
-
const PicklistAggregateState =
|
|
72853
|
-
...state,
|
|
72854
|
-
path: {
|
|
72855
|
-
parent: null,
|
|
72856
|
-
propertyName: null,
|
|
72857
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72858
|
-
},
|
|
72859
|
-
data: fieldData,
|
|
72860
|
-
};
|
|
71359
|
+
const PicklistAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72861
71360
|
sink[fieldKey] = ingest$o(requestedField, PicklistAggregateState);
|
|
72862
71361
|
break;
|
|
72863
71362
|
}
|
|
72864
71363
|
case 'StringAggregate': {
|
|
72865
|
-
const StringAggregateState =
|
|
72866
|
-
...state,
|
|
72867
|
-
path: {
|
|
72868
|
-
parent: null,
|
|
72869
|
-
propertyName: null,
|
|
72870
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72871
|
-
},
|
|
72872
|
-
data: fieldData,
|
|
72873
|
-
};
|
|
71364
|
+
const StringAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72874
71365
|
sink[fieldKey] = ingest$Z(requestedField, StringAggregateState);
|
|
72875
71366
|
break;
|
|
72876
71367
|
}
|
|
72877
71368
|
case 'TextAreaAggregate': {
|
|
72878
|
-
const TextAreaAggregateState =
|
|
72879
|
-
...state,
|
|
72880
|
-
path: {
|
|
72881
|
-
parent: null,
|
|
72882
|
-
propertyName: null,
|
|
72883
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72884
|
-
},
|
|
72885
|
-
data: fieldData,
|
|
72886
|
-
};
|
|
71369
|
+
const TextAreaAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72887
71370
|
sink[fieldKey] = ingest$q(requestedField, TextAreaAggregateState);
|
|
72888
71371
|
break;
|
|
72889
71372
|
}
|
|
72890
71373
|
case 'TimeAggregate': {
|
|
72891
|
-
const TimeAggregateState =
|
|
72892
|
-
...state,
|
|
72893
|
-
path: {
|
|
72894
|
-
parent: null,
|
|
72895
|
-
propertyName: null,
|
|
72896
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72897
|
-
},
|
|
72898
|
-
data: fieldData,
|
|
72899
|
-
};
|
|
71374
|
+
const TimeAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72900
71375
|
sink[fieldKey] = ingest$z(requestedField, TimeAggregateState);
|
|
72901
71376
|
break;
|
|
72902
71377
|
}
|
|
72903
71378
|
case 'UrlAggregate': {
|
|
72904
|
-
const UrlAggregateState =
|
|
72905
|
-
...state,
|
|
72906
|
-
path: {
|
|
72907
|
-
parent: null,
|
|
72908
|
-
propertyName: null,
|
|
72909
|
-
fullPath: parentKey + '__' + fieldKey
|
|
72910
|
-
},
|
|
72911
|
-
data: fieldData,
|
|
72912
|
-
};
|
|
71379
|
+
const UrlAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
72913
71380
|
sink[fieldKey] = ingest$r(requestedField, UrlAggregateState);
|
|
72914
71381
|
break;
|
|
72915
71382
|
}
|
|
@@ -73034,15 +71501,7 @@
|
|
|
73034
71501
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
73035
71502
|
switch (fieldType.typename) {
|
|
73036
71503
|
case 'RecordAggregate': {
|
|
73037
|
-
const aggregateState =
|
|
73038
|
-
...state,
|
|
73039
|
-
path: {
|
|
73040
|
-
parent: null,
|
|
73041
|
-
propertyName: null,
|
|
73042
|
-
fullPath: rootKey + '__' + fieldKey
|
|
73043
|
-
},
|
|
73044
|
-
data: fieldData,
|
|
73045
|
-
};
|
|
71504
|
+
const aggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
73046
71505
|
cacheKeySink.merge(getTypeCacheKeys$h(requestedField, aggregateState));
|
|
73047
71506
|
break;
|
|
73048
71507
|
}
|
|
@@ -73081,15 +71540,7 @@
|
|
|
73081
71540
|
break;
|
|
73082
71541
|
}
|
|
73083
71542
|
case 'RecordAggregate': {
|
|
73084
|
-
const RecordAggregateState =
|
|
73085
|
-
...state,
|
|
73086
|
-
path: {
|
|
73087
|
-
parent: null,
|
|
73088
|
-
propertyName: null,
|
|
73089
|
-
fullPath: parentKey + '__' + fieldKey
|
|
73090
|
-
},
|
|
73091
|
-
data: fieldData,
|
|
73092
|
-
};
|
|
71543
|
+
const RecordAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
73093
71544
|
sink[fieldKey] = ingest$e(requestedField, RecordAggregateState);
|
|
73094
71545
|
break;
|
|
73095
71546
|
}
|
|
@@ -73214,15 +71665,7 @@
|
|
|
73214
71665
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
73215
71666
|
switch (fieldType.typename) {
|
|
73216
71667
|
case 'RecordResult': {
|
|
73217
|
-
const nodeState =
|
|
73218
|
-
...state,
|
|
73219
|
-
path: {
|
|
73220
|
-
parent: null,
|
|
73221
|
-
propertyName: null,
|
|
73222
|
-
fullPath: rootKey + '__' + fieldKey
|
|
73223
|
-
},
|
|
73224
|
-
data: fieldData,
|
|
73225
|
-
};
|
|
71668
|
+
const nodeState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
73226
71669
|
cacheKeySink.merge(getTypeCacheKeys$g(requestedField, nodeState));
|
|
73227
71670
|
break;
|
|
73228
71671
|
}
|
|
@@ -73267,15 +71710,7 @@
|
|
|
73267
71710
|
break;
|
|
73268
71711
|
}
|
|
73269
71712
|
case 'RecordResult': {
|
|
73270
|
-
const RecordResultState =
|
|
73271
|
-
...state,
|
|
73272
|
-
path: {
|
|
73273
|
-
parent: null,
|
|
73274
|
-
propertyName: null,
|
|
73275
|
-
fullPath: parentKey + '__' + fieldKey
|
|
73276
|
-
},
|
|
73277
|
-
data: fieldData,
|
|
73278
|
-
};
|
|
71713
|
+
const RecordResultState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
73279
71714
|
sink[fieldKey] = ingest$d(requestedField, RecordResultState);
|
|
73280
71715
|
break;
|
|
73281
71716
|
}
|
|
@@ -73641,15 +72076,7 @@
|
|
|
73641
72076
|
break;
|
|
73642
72077
|
}
|
|
73643
72078
|
case 'PageInfo': {
|
|
73644
|
-
const pageInfoState =
|
|
73645
|
-
...state,
|
|
73646
|
-
path: {
|
|
73647
|
-
parent: null,
|
|
73648
|
-
propertyName: null,
|
|
73649
|
-
fullPath: rootKey + '__' + fieldKey
|
|
73650
|
-
},
|
|
73651
|
-
data: fieldData,
|
|
73652
|
-
};
|
|
72079
|
+
const pageInfoState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
73653
72080
|
cacheKeySink.merge(getTypeCacheKeys$e(requestedField, pageInfoState));
|
|
73654
72081
|
break;
|
|
73655
72082
|
}
|
|
@@ -73700,28 +72127,12 @@
|
|
|
73700
72127
|
break;
|
|
73701
72128
|
}
|
|
73702
72129
|
case 'RecordAggregateEdge': {
|
|
73703
|
-
const RecordAggregateEdgeState =
|
|
73704
|
-
...state,
|
|
73705
|
-
path: {
|
|
73706
|
-
parent: null,
|
|
73707
|
-
propertyName: null,
|
|
73708
|
-
fullPath: fullPathKey
|
|
73709
|
-
},
|
|
73710
|
-
data: fieldData,
|
|
73711
|
-
};
|
|
72130
|
+
const RecordAggregateEdgeState = buildFieldState(state, fullPathKey, fieldData);
|
|
73712
72131
|
sink[fieldKey] = ingest$c(requestedField, RecordAggregateEdgeState);
|
|
73713
72132
|
break;
|
|
73714
72133
|
}
|
|
73715
72134
|
case 'PageInfo': {
|
|
73716
|
-
const PageInfoState =
|
|
73717
|
-
...state,
|
|
73718
|
-
path: {
|
|
73719
|
-
parent: null,
|
|
73720
|
-
propertyName: null,
|
|
73721
|
-
fullPath: fullPathKey
|
|
73722
|
-
},
|
|
73723
|
-
data: fieldData,
|
|
73724
|
-
};
|
|
72135
|
+
const PageInfoState = buildFieldState(state, fullPathKey, fieldData);
|
|
73725
72136
|
sink[fieldKey] = ingest$b(requestedField, PageInfoState);
|
|
73726
72137
|
break;
|
|
73727
72138
|
}
|
|
@@ -74187,15 +72598,7 @@
|
|
|
74187
72598
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
74188
72599
|
switch (fieldType.typename) {
|
|
74189
72600
|
case 'RecordAggregateConnection': {
|
|
74190
|
-
const recordQueryAggregateState =
|
|
74191
|
-
...state,
|
|
74192
|
-
path: {
|
|
74193
|
-
parent: null,
|
|
74194
|
-
propertyName: null,
|
|
74195
|
-
fullPath: rootKey + '__' + fieldKey
|
|
74196
|
-
},
|
|
74197
|
-
data: fieldData,
|
|
74198
|
-
};
|
|
72601
|
+
const recordQueryAggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
74199
72602
|
cacheKeySink.merge(getTypeCacheKeys$d(requestedField, recordQueryAggregateState));
|
|
74200
72603
|
break;
|
|
74201
72604
|
}
|
|
@@ -74216,15 +72619,7 @@
|
|
|
74216
72619
|
break;
|
|
74217
72620
|
}
|
|
74218
72621
|
case 'RecordAggregateConnection': {
|
|
74219
|
-
const RecordAggregateConnectionState =
|
|
74220
|
-
...state,
|
|
74221
|
-
path: {
|
|
74222
|
-
parent: null,
|
|
74223
|
-
propertyName: null,
|
|
74224
|
-
fullPath: parentKey + '__' + fieldKey
|
|
74225
|
-
},
|
|
74226
|
-
data: fieldData,
|
|
74227
|
-
};
|
|
72622
|
+
const RecordAggregateConnectionState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
74228
72623
|
sink[fieldKey] = ingest$a(requestedField, RecordAggregateConnectionState);
|
|
74229
72624
|
break;
|
|
74230
72625
|
}
|
|
@@ -76567,405 +74962,157 @@
|
|
|
76567
74962
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
76568
74963
|
switch (fieldType.typename) {
|
|
76569
74964
|
case 'IDValue': {
|
|
76570
|
-
const LastModifiedByIdState =
|
|
76571
|
-
...state,
|
|
76572
|
-
path: {
|
|
76573
|
-
parent: null,
|
|
76574
|
-
propertyName: null,
|
|
76575
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76576
|
-
},
|
|
76577
|
-
data: fieldData,
|
|
76578
|
-
};
|
|
74965
|
+
const LastModifiedByIdState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76579
74966
|
cacheKeySink.merge(getTypeCacheKeys$a(requestedField, LastModifiedByIdState));
|
|
76580
74967
|
break;
|
|
76581
74968
|
}
|
|
76582
74969
|
case 'DateTimeValue': {
|
|
76583
|
-
const LastModifiedDateState =
|
|
76584
|
-
...state,
|
|
76585
|
-
path: {
|
|
76586
|
-
parent: null,
|
|
76587
|
-
propertyName: null,
|
|
76588
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76589
|
-
},
|
|
76590
|
-
data: fieldData,
|
|
76591
|
-
};
|
|
74970
|
+
const LastModifiedDateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76592
74971
|
cacheKeySink.merge(getTypeCacheKeys$H(requestedField, LastModifiedDateState));
|
|
76593
74972
|
break;
|
|
76594
74973
|
}
|
|
76595
74974
|
case 'DateTimeValue': {
|
|
76596
|
-
const SystemModstampState =
|
|
76597
|
-
...state,
|
|
76598
|
-
path: {
|
|
76599
|
-
parent: null,
|
|
76600
|
-
propertyName: null,
|
|
76601
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76602
|
-
},
|
|
76603
|
-
data: fieldData,
|
|
76604
|
-
};
|
|
74975
|
+
const SystemModstampState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76605
74976
|
cacheKeySink.merge(getTypeCacheKeys$H(requestedField, SystemModstampState));
|
|
76606
74977
|
break;
|
|
76607
74978
|
}
|
|
76608
74979
|
case 'IDValue': {
|
|
76609
|
-
const RecordTypeIdState =
|
|
76610
|
-
...state,
|
|
76611
|
-
path: {
|
|
76612
|
-
parent: null,
|
|
76613
|
-
propertyName: null,
|
|
76614
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76615
|
-
},
|
|
76616
|
-
data: fieldData,
|
|
76617
|
-
};
|
|
74980
|
+
const RecordTypeIdState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76618
74981
|
cacheKeySink.merge(getTypeCacheKeys$a(requestedField, RecordTypeIdState));
|
|
76619
74982
|
break;
|
|
76620
74983
|
}
|
|
76621
74984
|
case 'IntValue': {
|
|
76622
|
-
const IntValueState =
|
|
76623
|
-
...state,
|
|
76624
|
-
path: {
|
|
76625
|
-
parent: null,
|
|
76626
|
-
propertyName: null,
|
|
76627
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76628
|
-
},
|
|
76629
|
-
data: fieldData,
|
|
76630
|
-
};
|
|
74985
|
+
const IntValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76631
74986
|
cacheKeySink.merge(getTypeCacheKeys$12(requestedField, IntValueState));
|
|
76632
74987
|
break;
|
|
76633
74988
|
}
|
|
76634
74989
|
case 'StringValue': {
|
|
76635
|
-
const StringValueState =
|
|
76636
|
-
...state,
|
|
76637
|
-
path: {
|
|
76638
|
-
parent: null,
|
|
76639
|
-
propertyName: null,
|
|
76640
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76641
|
-
},
|
|
76642
|
-
data: fieldData,
|
|
76643
|
-
};
|
|
74990
|
+
const StringValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76644
74991
|
cacheKeySink.merge(getTypeCacheKeys$11(requestedField, StringValueState));
|
|
76645
74992
|
break;
|
|
76646
74993
|
}
|
|
76647
74994
|
case 'BooleanValue': {
|
|
76648
|
-
const BooleanValueState =
|
|
76649
|
-
...state,
|
|
76650
|
-
path: {
|
|
76651
|
-
parent: null,
|
|
76652
|
-
propertyName: null,
|
|
76653
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76654
|
-
},
|
|
76655
|
-
data: fieldData,
|
|
76656
|
-
};
|
|
74995
|
+
const BooleanValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76657
74996
|
cacheKeySink.merge(getTypeCacheKeys$X(requestedField, BooleanValueState));
|
|
76658
74997
|
break;
|
|
76659
74998
|
}
|
|
76660
74999
|
case 'IDValue': {
|
|
76661
|
-
const IDValueState =
|
|
76662
|
-
...state,
|
|
76663
|
-
path: {
|
|
76664
|
-
parent: null,
|
|
76665
|
-
propertyName: null,
|
|
76666
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76667
|
-
},
|
|
76668
|
-
data: fieldData,
|
|
76669
|
-
};
|
|
75000
|
+
const IDValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76670
75001
|
cacheKeySink.merge(getTypeCacheKeys$a(requestedField, IDValueState));
|
|
76671
75002
|
break;
|
|
76672
75003
|
}
|
|
76673
75004
|
case 'DateTimeValue': {
|
|
76674
|
-
const DateTimeValueState =
|
|
76675
|
-
...state,
|
|
76676
|
-
path: {
|
|
76677
|
-
parent: null,
|
|
76678
|
-
propertyName: null,
|
|
76679
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76680
|
-
},
|
|
76681
|
-
data: fieldData,
|
|
76682
|
-
};
|
|
75005
|
+
const DateTimeValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76683
75006
|
cacheKeySink.merge(getTypeCacheKeys$H(requestedField, DateTimeValueState));
|
|
76684
75007
|
break;
|
|
76685
75008
|
}
|
|
76686
75009
|
case 'TimeValue': {
|
|
76687
|
-
const TimeValueState =
|
|
76688
|
-
...state,
|
|
76689
|
-
path: {
|
|
76690
|
-
parent: null,
|
|
76691
|
-
propertyName: null,
|
|
76692
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76693
|
-
},
|
|
76694
|
-
data: fieldData,
|
|
76695
|
-
};
|
|
75010
|
+
const TimeValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76696
75011
|
cacheKeySink.merge(getTypeCacheKeys$s(requestedField, TimeValueState));
|
|
76697
75012
|
break;
|
|
76698
75013
|
}
|
|
76699
75014
|
case 'DateValue': {
|
|
76700
|
-
const DateValueState =
|
|
76701
|
-
...state,
|
|
76702
|
-
path: {
|
|
76703
|
-
parent: null,
|
|
76704
|
-
propertyName: null,
|
|
76705
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76706
|
-
},
|
|
76707
|
-
data: fieldData,
|
|
76708
|
-
};
|
|
75015
|
+
const DateValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76709
75016
|
cacheKeySink.merge(getTypeCacheKeys$_(requestedField, DateValueState));
|
|
76710
75017
|
break;
|
|
76711
75018
|
}
|
|
76712
75019
|
case 'TextAreaValue': {
|
|
76713
|
-
const TextAreaValueState =
|
|
76714
|
-
...state,
|
|
76715
|
-
path: {
|
|
76716
|
-
parent: null,
|
|
76717
|
-
propertyName: null,
|
|
76718
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76719
|
-
},
|
|
76720
|
-
data: fieldData,
|
|
76721
|
-
};
|
|
75020
|
+
const TextAreaValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76722
75021
|
cacheKeySink.merge(getTypeCacheKeys$w(requestedField, TextAreaValueState));
|
|
76723
75022
|
break;
|
|
76724
75023
|
}
|
|
76725
75024
|
case 'LongTextAreaValue': {
|
|
76726
|
-
const LongTextAreaValueState =
|
|
76727
|
-
...state,
|
|
76728
|
-
path: {
|
|
76729
|
-
parent: null,
|
|
76730
|
-
propertyName: null,
|
|
76731
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76732
|
-
},
|
|
76733
|
-
data: fieldData,
|
|
76734
|
-
};
|
|
75025
|
+
const LongTextAreaValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76735
75026
|
cacheKeySink.merge(getTypeCacheKeys$z(requestedField, LongTextAreaValueState));
|
|
76736
75027
|
break;
|
|
76737
75028
|
}
|
|
76738
75029
|
case 'RichTextAreaValue': {
|
|
76739
|
-
const RichTextAreaValueState =
|
|
76740
|
-
...state,
|
|
76741
|
-
path: {
|
|
76742
|
-
parent: null,
|
|
76743
|
-
propertyName: null,
|
|
76744
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76745
|
-
},
|
|
76746
|
-
data: fieldData,
|
|
76747
|
-
};
|
|
75030
|
+
const RichTextAreaValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76748
75031
|
cacheKeySink.merge(getTypeCacheKeys$E(requestedField, RichTextAreaValueState));
|
|
76749
75032
|
break;
|
|
76750
75033
|
}
|
|
76751
75034
|
case 'PhoneNumberValue': {
|
|
76752
|
-
const PhoneNumberValueState =
|
|
76753
|
-
...state,
|
|
76754
|
-
path: {
|
|
76755
|
-
parent: null,
|
|
76756
|
-
propertyName: null,
|
|
76757
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76758
|
-
},
|
|
76759
|
-
data: fieldData,
|
|
76760
|
-
};
|
|
75035
|
+
const PhoneNumberValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76761
75036
|
cacheKeySink.merge(getTypeCacheKeys$M(requestedField, PhoneNumberValueState));
|
|
76762
75037
|
break;
|
|
76763
75038
|
}
|
|
76764
75039
|
case 'EmailValue': {
|
|
76765
|
-
const EmailValueState =
|
|
76766
|
-
...state,
|
|
76767
|
-
path: {
|
|
76768
|
-
parent: null,
|
|
76769
|
-
propertyName: null,
|
|
76770
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76771
|
-
},
|
|
76772
|
-
data: fieldData,
|
|
76773
|
-
};
|
|
75040
|
+
const EmailValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76774
75041
|
cacheKeySink.merge(getTypeCacheKeys$G(requestedField, EmailValueState));
|
|
76775
75042
|
break;
|
|
76776
75043
|
}
|
|
76777
75044
|
case 'UrlValue': {
|
|
76778
|
-
const UrlValueState =
|
|
76779
|
-
...state,
|
|
76780
|
-
path: {
|
|
76781
|
-
parent: null,
|
|
76782
|
-
propertyName: null,
|
|
76783
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76784
|
-
},
|
|
76785
|
-
data: fieldData,
|
|
76786
|
-
};
|
|
75045
|
+
const UrlValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76787
75046
|
cacheKeySink.merge(getTypeCacheKeys$O(requestedField, UrlValueState));
|
|
76788
75047
|
break;
|
|
76789
75048
|
}
|
|
76790
75049
|
case 'EncryptedStringValue': {
|
|
76791
|
-
const EncryptedStringValueState =
|
|
76792
|
-
...state,
|
|
76793
|
-
path: {
|
|
76794
|
-
parent: null,
|
|
76795
|
-
propertyName: null,
|
|
76796
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76797
|
-
},
|
|
76798
|
-
data: fieldData,
|
|
76799
|
-
};
|
|
75050
|
+
const EncryptedStringValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76800
75051
|
cacheKeySink.merge(getTypeCacheKeys$m(requestedField, EncryptedStringValueState));
|
|
76801
75052
|
break;
|
|
76802
75053
|
}
|
|
76803
75054
|
case 'CurrencyValue': {
|
|
76804
|
-
const CurrencyValueState =
|
|
76805
|
-
...state,
|
|
76806
|
-
path: {
|
|
76807
|
-
parent: null,
|
|
76808
|
-
propertyName: null,
|
|
76809
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76810
|
-
},
|
|
76811
|
-
data: fieldData,
|
|
76812
|
-
};
|
|
75055
|
+
const CurrencyValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76813
75056
|
cacheKeySink.merge(getTypeCacheKeys$J(requestedField, CurrencyValueState));
|
|
76814
75057
|
break;
|
|
76815
75058
|
}
|
|
76816
75059
|
case 'LongitudeValue': {
|
|
76817
|
-
const LongitudeValueState =
|
|
76818
|
-
...state,
|
|
76819
|
-
path: {
|
|
76820
|
-
parent: null,
|
|
76821
|
-
propertyName: null,
|
|
76822
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76823
|
-
},
|
|
76824
|
-
data: fieldData,
|
|
76825
|
-
};
|
|
75060
|
+
const LongitudeValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76826
75061
|
cacheKeySink.merge(getTypeCacheKeys$P(requestedField, LongitudeValueState));
|
|
76827
75062
|
break;
|
|
76828
75063
|
}
|
|
76829
75064
|
case 'LatitudeValue': {
|
|
76830
|
-
const LatitudeValueState =
|
|
76831
|
-
...state,
|
|
76832
|
-
path: {
|
|
76833
|
-
parent: null,
|
|
76834
|
-
propertyName: null,
|
|
76835
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76836
|
-
},
|
|
76837
|
-
data: fieldData,
|
|
76838
|
-
};
|
|
75065
|
+
const LatitudeValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76839
75066
|
cacheKeySink.merge(getTypeCacheKeys$B(requestedField, LatitudeValueState));
|
|
76840
75067
|
break;
|
|
76841
75068
|
}
|
|
76842
75069
|
case 'PicklistValue': {
|
|
76843
|
-
const PicklistValueState =
|
|
76844
|
-
...state,
|
|
76845
|
-
path: {
|
|
76846
|
-
parent: null,
|
|
76847
|
-
propertyName: null,
|
|
76848
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76849
|
-
},
|
|
76850
|
-
data: fieldData,
|
|
76851
|
-
};
|
|
75070
|
+
const PicklistValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76852
75071
|
cacheKeySink.merge(getTypeCacheKeys$K(requestedField, PicklistValueState));
|
|
76853
75072
|
break;
|
|
76854
75073
|
}
|
|
76855
75074
|
case 'MultiPicklistValue': {
|
|
76856
|
-
const MultiPicklistValueState =
|
|
76857
|
-
...state,
|
|
76858
|
-
path: {
|
|
76859
|
-
parent: null,
|
|
76860
|
-
propertyName: null,
|
|
76861
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76862
|
-
},
|
|
76863
|
-
data: fieldData,
|
|
76864
|
-
};
|
|
75075
|
+
const MultiPicklistValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76865
75076
|
cacheKeySink.merge(getTypeCacheKeys$D(requestedField, MultiPicklistValueState));
|
|
76866
75077
|
break;
|
|
76867
75078
|
}
|
|
76868
75079
|
case 'LongValue': {
|
|
76869
|
-
const LongValueState =
|
|
76870
|
-
...state,
|
|
76871
|
-
path: {
|
|
76872
|
-
parent: null,
|
|
76873
|
-
propertyName: null,
|
|
76874
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76875
|
-
},
|
|
76876
|
-
data: fieldData,
|
|
76877
|
-
};
|
|
75080
|
+
const LongValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76878
75081
|
cacheKeySink.merge(getTypeCacheKeys$15(requestedField, LongValueState));
|
|
76879
75082
|
break;
|
|
76880
75083
|
}
|
|
76881
75084
|
case 'DoubleValue': {
|
|
76882
|
-
const DoubleValueState =
|
|
76883
|
-
...state,
|
|
76884
|
-
path: {
|
|
76885
|
-
parent: null,
|
|
76886
|
-
propertyName: null,
|
|
76887
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76888
|
-
},
|
|
76889
|
-
data: fieldData,
|
|
76890
|
-
};
|
|
75085
|
+
const DoubleValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76891
75086
|
cacheKeySink.merge(getTypeCacheKeys$16(requestedField, DoubleValueState));
|
|
76892
75087
|
break;
|
|
76893
75088
|
}
|
|
76894
75089
|
case 'PercentValue': {
|
|
76895
|
-
const PercentValueState =
|
|
76896
|
-
...state,
|
|
76897
|
-
path: {
|
|
76898
|
-
parent: null,
|
|
76899
|
-
propertyName: null,
|
|
76900
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76901
|
-
},
|
|
76902
|
-
data: fieldData,
|
|
76903
|
-
};
|
|
75090
|
+
const PercentValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76904
75091
|
cacheKeySink.merge(getTypeCacheKeys$14(requestedField, PercentValueState));
|
|
76905
75092
|
break;
|
|
76906
75093
|
}
|
|
76907
75094
|
case 'Base64Value': {
|
|
76908
|
-
const Base64ValueState =
|
|
76909
|
-
...state,
|
|
76910
|
-
path: {
|
|
76911
|
-
parent: null,
|
|
76912
|
-
propertyName: null,
|
|
76913
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76914
|
-
},
|
|
76915
|
-
data: fieldData,
|
|
76916
|
-
};
|
|
75095
|
+
const Base64ValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76917
75096
|
cacheKeySink.merge(getTypeCacheKeys$n(requestedField, Base64ValueState));
|
|
76918
75097
|
break;
|
|
76919
75098
|
}
|
|
76920
75099
|
case 'JSONValue': {
|
|
76921
|
-
const JSONValueState =
|
|
76922
|
-
...state,
|
|
76923
|
-
path: {
|
|
76924
|
-
parent: null,
|
|
76925
|
-
propertyName: null,
|
|
76926
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76927
|
-
},
|
|
76928
|
-
data: fieldData,
|
|
76929
|
-
};
|
|
75100
|
+
const JSONValueState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76930
75101
|
cacheKeySink.merge(getTypeCacheKeys$p(requestedField, JSONValueState));
|
|
76931
75102
|
break;
|
|
76932
75103
|
}
|
|
76933
75104
|
case 'RecordRepresentation': {
|
|
76934
|
-
const parentRelationshipState =
|
|
76935
|
-
...state,
|
|
76936
|
-
path: {
|
|
76937
|
-
parent: null,
|
|
76938
|
-
propertyName: null,
|
|
76939
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76940
|
-
},
|
|
76941
|
-
data: fieldData,
|
|
76942
|
-
};
|
|
75105
|
+
const parentRelationshipState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76943
75106
|
cacheKeySink.merge(getTypeCacheKeys$5(requestedField, parentRelationshipState));
|
|
76944
75107
|
break;
|
|
76945
75108
|
}
|
|
76946
75109
|
case 'PolymorphicParentRelationship': {
|
|
76947
|
-
const polymorphicParentRelationshipState =
|
|
76948
|
-
...state,
|
|
76949
|
-
path: {
|
|
76950
|
-
parent: null,
|
|
76951
|
-
propertyName: null,
|
|
76952
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76953
|
-
},
|
|
76954
|
-
data: fieldData,
|
|
76955
|
-
};
|
|
75110
|
+
const polymorphicParentRelationshipState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76956
75111
|
cacheKeySink.merge(getTypeCacheKeys$i(requestedField, polymorphicParentRelationshipState));
|
|
76957
75112
|
break;
|
|
76958
75113
|
}
|
|
76959
75114
|
case 'RecordConnection': {
|
|
76960
|
-
const childRelationshipState =
|
|
76961
|
-
...state,
|
|
76962
|
-
path: {
|
|
76963
|
-
parent: null,
|
|
76964
|
-
propertyName: null,
|
|
76965
|
-
fullPath: rootKey + '__' + fieldKey
|
|
76966
|
-
},
|
|
76967
|
-
data: fieldData,
|
|
76968
|
-
};
|
|
75115
|
+
const childRelationshipState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
76969
75116
|
cacheKeySink.merge(getTypeCacheKeys$6(requestedField, childRelationshipState));
|
|
76970
75117
|
break;
|
|
76971
75118
|
}
|
|
@@ -76995,353 +75142,137 @@
|
|
|
76995
75142
|
break;
|
|
76996
75143
|
}
|
|
76997
75144
|
case 'IDValue': {
|
|
76998
|
-
const IDValueState =
|
|
76999
|
-
...state,
|
|
77000
|
-
path: {
|
|
77001
|
-
parent: null,
|
|
77002
|
-
propertyName: null,
|
|
77003
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77004
|
-
},
|
|
77005
|
-
data: fieldData,
|
|
77006
|
-
};
|
|
75145
|
+
const IDValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77007
75146
|
sink[fieldKey] = ingest$7(requestedField, IDValueState);
|
|
77008
75147
|
break;
|
|
77009
75148
|
}
|
|
77010
75149
|
case 'DateTimeValue': {
|
|
77011
|
-
const DateTimeValueState =
|
|
77012
|
-
...state,
|
|
77013
|
-
path: {
|
|
77014
|
-
parent: null,
|
|
77015
|
-
propertyName: null,
|
|
77016
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77017
|
-
},
|
|
77018
|
-
data: fieldData,
|
|
77019
|
-
};
|
|
75150
|
+
const DateTimeValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77020
75151
|
sink[fieldKey] = ingest$E(requestedField, DateTimeValueState);
|
|
77021
75152
|
break;
|
|
77022
75153
|
}
|
|
77023
75154
|
case 'IntValue': {
|
|
77024
|
-
const IntValueState =
|
|
77025
|
-
...state,
|
|
77026
|
-
path: {
|
|
77027
|
-
parent: null,
|
|
77028
|
-
propertyName: null,
|
|
77029
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77030
|
-
},
|
|
77031
|
-
data: fieldData,
|
|
77032
|
-
};
|
|
75155
|
+
const IntValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77033
75156
|
sink[fieldKey] = ingest$$(requestedField, IntValueState);
|
|
77034
75157
|
break;
|
|
77035
75158
|
}
|
|
77036
75159
|
case 'StringValue': {
|
|
77037
|
-
const StringValueState =
|
|
77038
|
-
...state,
|
|
77039
|
-
path: {
|
|
77040
|
-
parent: null,
|
|
77041
|
-
propertyName: null,
|
|
77042
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77043
|
-
},
|
|
77044
|
-
data: fieldData,
|
|
77045
|
-
};
|
|
75160
|
+
const StringValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77046
75161
|
sink[fieldKey] = ingest$_(requestedField, StringValueState);
|
|
77047
75162
|
break;
|
|
77048
75163
|
}
|
|
77049
75164
|
case 'BooleanValue': {
|
|
77050
|
-
const BooleanValueState =
|
|
77051
|
-
...state,
|
|
77052
|
-
path: {
|
|
77053
|
-
parent: null,
|
|
77054
|
-
propertyName: null,
|
|
77055
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77056
|
-
},
|
|
77057
|
-
data: fieldData,
|
|
77058
|
-
};
|
|
75165
|
+
const BooleanValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77059
75166
|
sink[fieldKey] = ingest$U(requestedField, BooleanValueState);
|
|
77060
75167
|
break;
|
|
77061
75168
|
}
|
|
77062
75169
|
case 'TimeValue': {
|
|
77063
|
-
const TimeValueState =
|
|
77064
|
-
...state,
|
|
77065
|
-
path: {
|
|
77066
|
-
parent: null,
|
|
77067
|
-
propertyName: null,
|
|
77068
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77069
|
-
},
|
|
77070
|
-
data: fieldData,
|
|
77071
|
-
};
|
|
75170
|
+
const TimeValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77072
75171
|
sink[fieldKey] = ingest$p(requestedField, TimeValueState);
|
|
77073
75172
|
break;
|
|
77074
75173
|
}
|
|
77075
75174
|
case 'DateValue': {
|
|
77076
|
-
const DateValueState =
|
|
77077
|
-
...state,
|
|
77078
|
-
path: {
|
|
77079
|
-
parent: null,
|
|
77080
|
-
propertyName: null,
|
|
77081
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77082
|
-
},
|
|
77083
|
-
data: fieldData,
|
|
77084
|
-
};
|
|
75175
|
+
const DateValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77085
75176
|
sink[fieldKey] = ingest$X(requestedField, DateValueState);
|
|
77086
75177
|
break;
|
|
77087
75178
|
}
|
|
77088
75179
|
case 'TextAreaValue': {
|
|
77089
|
-
const TextAreaValueState =
|
|
77090
|
-
...state,
|
|
77091
|
-
path: {
|
|
77092
|
-
parent: null,
|
|
77093
|
-
propertyName: null,
|
|
77094
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77095
|
-
},
|
|
77096
|
-
data: fieldData,
|
|
77097
|
-
};
|
|
75180
|
+
const TextAreaValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77098
75181
|
sink[fieldKey] = ingest$t(requestedField, TextAreaValueState);
|
|
77099
75182
|
break;
|
|
77100
75183
|
}
|
|
77101
75184
|
case 'LongTextAreaValue': {
|
|
77102
|
-
const LongTextAreaValueState =
|
|
77103
|
-
...state,
|
|
77104
|
-
path: {
|
|
77105
|
-
parent: null,
|
|
77106
|
-
propertyName: null,
|
|
77107
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77108
|
-
},
|
|
77109
|
-
data: fieldData,
|
|
77110
|
-
};
|
|
75185
|
+
const LongTextAreaValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77111
75186
|
sink[fieldKey] = ingest$w(requestedField, LongTextAreaValueState);
|
|
77112
75187
|
break;
|
|
77113
75188
|
}
|
|
77114
75189
|
case 'RichTextAreaValue': {
|
|
77115
|
-
const RichTextAreaValueState =
|
|
77116
|
-
...state,
|
|
77117
|
-
path: {
|
|
77118
|
-
parent: null,
|
|
77119
|
-
propertyName: null,
|
|
77120
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77121
|
-
},
|
|
77122
|
-
data: fieldData,
|
|
77123
|
-
};
|
|
75190
|
+
const RichTextAreaValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77124
75191
|
sink[fieldKey] = ingest$B(requestedField, RichTextAreaValueState);
|
|
77125
75192
|
break;
|
|
77126
75193
|
}
|
|
77127
75194
|
case 'PhoneNumberValue': {
|
|
77128
|
-
const PhoneNumberValueState =
|
|
77129
|
-
...state,
|
|
77130
|
-
path: {
|
|
77131
|
-
parent: null,
|
|
77132
|
-
propertyName: null,
|
|
77133
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77134
|
-
},
|
|
77135
|
-
data: fieldData,
|
|
77136
|
-
};
|
|
75195
|
+
const PhoneNumberValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77137
75196
|
sink[fieldKey] = ingest$J(requestedField, PhoneNumberValueState);
|
|
77138
75197
|
break;
|
|
77139
75198
|
}
|
|
77140
75199
|
case 'EmailValue': {
|
|
77141
|
-
const EmailValueState =
|
|
77142
|
-
...state,
|
|
77143
|
-
path: {
|
|
77144
|
-
parent: null,
|
|
77145
|
-
propertyName: null,
|
|
77146
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77147
|
-
},
|
|
77148
|
-
data: fieldData,
|
|
77149
|
-
};
|
|
75200
|
+
const EmailValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77150
75201
|
sink[fieldKey] = ingest$D(requestedField, EmailValueState);
|
|
77151
75202
|
break;
|
|
77152
75203
|
}
|
|
77153
75204
|
case 'UrlValue': {
|
|
77154
|
-
const UrlValueState =
|
|
77155
|
-
...state,
|
|
77156
|
-
path: {
|
|
77157
|
-
parent: null,
|
|
77158
|
-
propertyName: null,
|
|
77159
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77160
|
-
},
|
|
77161
|
-
data: fieldData,
|
|
77162
|
-
};
|
|
75205
|
+
const UrlValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77163
75206
|
sink[fieldKey] = ingest$L(requestedField, UrlValueState);
|
|
77164
75207
|
break;
|
|
77165
75208
|
}
|
|
77166
75209
|
case 'EncryptedStringValue': {
|
|
77167
|
-
const EncryptedStringValueState =
|
|
77168
|
-
...state,
|
|
77169
|
-
path: {
|
|
77170
|
-
parent: null,
|
|
77171
|
-
propertyName: null,
|
|
77172
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77173
|
-
},
|
|
77174
|
-
data: fieldData,
|
|
77175
|
-
};
|
|
75210
|
+
const EncryptedStringValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77176
75211
|
sink[fieldKey] = ingest$j(requestedField, EncryptedStringValueState);
|
|
77177
75212
|
break;
|
|
77178
75213
|
}
|
|
77179
75214
|
case 'CurrencyValue': {
|
|
77180
|
-
const CurrencyValueState =
|
|
77181
|
-
...state,
|
|
77182
|
-
path: {
|
|
77183
|
-
parent: null,
|
|
77184
|
-
propertyName: null,
|
|
77185
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77186
|
-
},
|
|
77187
|
-
data: fieldData,
|
|
77188
|
-
};
|
|
75215
|
+
const CurrencyValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77189
75216
|
sink[fieldKey] = ingest$G(requestedField, CurrencyValueState);
|
|
77190
75217
|
break;
|
|
77191
75218
|
}
|
|
77192
75219
|
case 'LongitudeValue': {
|
|
77193
|
-
const LongitudeValueState =
|
|
77194
|
-
...state,
|
|
77195
|
-
path: {
|
|
77196
|
-
parent: null,
|
|
77197
|
-
propertyName: null,
|
|
77198
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77199
|
-
},
|
|
77200
|
-
data: fieldData,
|
|
77201
|
-
};
|
|
75220
|
+
const LongitudeValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77202
75221
|
sink[fieldKey] = ingest$M(requestedField, LongitudeValueState);
|
|
77203
75222
|
break;
|
|
77204
75223
|
}
|
|
77205
75224
|
case 'LatitudeValue': {
|
|
77206
|
-
const LatitudeValueState =
|
|
77207
|
-
...state,
|
|
77208
|
-
path: {
|
|
77209
|
-
parent: null,
|
|
77210
|
-
propertyName: null,
|
|
77211
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77212
|
-
},
|
|
77213
|
-
data: fieldData,
|
|
77214
|
-
};
|
|
75225
|
+
const LatitudeValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77215
75226
|
sink[fieldKey] = ingest$y(requestedField, LatitudeValueState);
|
|
77216
75227
|
break;
|
|
77217
75228
|
}
|
|
77218
75229
|
case 'PicklistValue': {
|
|
77219
|
-
const PicklistValueState =
|
|
77220
|
-
...state,
|
|
77221
|
-
path: {
|
|
77222
|
-
parent: null,
|
|
77223
|
-
propertyName: null,
|
|
77224
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77225
|
-
},
|
|
77226
|
-
data: fieldData,
|
|
77227
|
-
};
|
|
75230
|
+
const PicklistValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77228
75231
|
sink[fieldKey] = ingest$H(requestedField, PicklistValueState);
|
|
77229
75232
|
break;
|
|
77230
75233
|
}
|
|
77231
75234
|
case 'MultiPicklistValue': {
|
|
77232
|
-
const MultiPicklistValueState =
|
|
77233
|
-
...state,
|
|
77234
|
-
path: {
|
|
77235
|
-
parent: null,
|
|
77236
|
-
propertyName: null,
|
|
77237
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77238
|
-
},
|
|
77239
|
-
data: fieldData,
|
|
77240
|
-
};
|
|
75235
|
+
const MultiPicklistValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77241
75236
|
sink[fieldKey] = ingest$A(requestedField, MultiPicklistValueState);
|
|
77242
75237
|
break;
|
|
77243
75238
|
}
|
|
77244
75239
|
case 'LongValue': {
|
|
77245
|
-
const LongValueState =
|
|
77246
|
-
...state,
|
|
77247
|
-
path: {
|
|
77248
|
-
parent: null,
|
|
77249
|
-
propertyName: null,
|
|
77250
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77251
|
-
},
|
|
77252
|
-
data: fieldData,
|
|
77253
|
-
};
|
|
75240
|
+
const LongValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77254
75241
|
sink[fieldKey] = ingest$12(requestedField, LongValueState);
|
|
77255
75242
|
break;
|
|
77256
75243
|
}
|
|
77257
75244
|
case 'DoubleValue': {
|
|
77258
|
-
const DoubleValueState =
|
|
77259
|
-
...state,
|
|
77260
|
-
path: {
|
|
77261
|
-
parent: null,
|
|
77262
|
-
propertyName: null,
|
|
77263
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77264
|
-
},
|
|
77265
|
-
data: fieldData,
|
|
77266
|
-
};
|
|
75245
|
+
const DoubleValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77267
75246
|
sink[fieldKey] = ingest$13(requestedField, DoubleValueState);
|
|
77268
75247
|
break;
|
|
77269
75248
|
}
|
|
77270
75249
|
case 'PercentValue': {
|
|
77271
|
-
const PercentValueState =
|
|
77272
|
-
...state,
|
|
77273
|
-
path: {
|
|
77274
|
-
parent: null,
|
|
77275
|
-
propertyName: null,
|
|
77276
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77277
|
-
},
|
|
77278
|
-
data: fieldData,
|
|
77279
|
-
};
|
|
75250
|
+
const PercentValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77280
75251
|
sink[fieldKey] = ingest$11(requestedField, PercentValueState);
|
|
77281
75252
|
break;
|
|
77282
75253
|
}
|
|
77283
75254
|
case 'Base64Value': {
|
|
77284
|
-
const Base64ValueState =
|
|
77285
|
-
...state,
|
|
77286
|
-
path: {
|
|
77287
|
-
parent: null,
|
|
77288
|
-
propertyName: null,
|
|
77289
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77290
|
-
},
|
|
77291
|
-
data: fieldData,
|
|
77292
|
-
};
|
|
75255
|
+
const Base64ValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77293
75256
|
sink[fieldKey] = ingest$k(requestedField, Base64ValueState);
|
|
77294
75257
|
break;
|
|
77295
75258
|
}
|
|
77296
75259
|
case 'JSONValue': {
|
|
77297
|
-
const JSONValueState =
|
|
77298
|
-
...state,
|
|
77299
|
-
path: {
|
|
77300
|
-
parent: null,
|
|
77301
|
-
propertyName: null,
|
|
77302
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77303
|
-
},
|
|
77304
|
-
data: fieldData,
|
|
77305
|
-
};
|
|
75260
|
+
const JSONValueState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77306
75261
|
sink[fieldKey] = ingest$m(requestedField, JSONValueState);
|
|
77307
75262
|
break;
|
|
77308
75263
|
}
|
|
77309
75264
|
case 'RecordRepresentation': {
|
|
77310
|
-
const RecordRepresentationState =
|
|
77311
|
-
...state,
|
|
77312
|
-
path: {
|
|
77313
|
-
parent: null,
|
|
77314
|
-
propertyName: null,
|
|
77315
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77316
|
-
},
|
|
77317
|
-
data: fieldData,
|
|
77318
|
-
};
|
|
75265
|
+
const RecordRepresentationState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77319
75266
|
sink[fieldKey] = ingest$6(requestedField, RecordRepresentationState);
|
|
77320
75267
|
break;
|
|
77321
75268
|
}
|
|
77322
75269
|
case 'PolymorphicParentRelationship': {
|
|
77323
|
-
const PolymorphicParentRelationshipState =
|
|
77324
|
-
...state,
|
|
77325
|
-
path: {
|
|
77326
|
-
parent: null,
|
|
77327
|
-
propertyName: null,
|
|
77328
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77329
|
-
},
|
|
77330
|
-
data: fieldData,
|
|
77331
|
-
};
|
|
75270
|
+
const PolymorphicParentRelationshipState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77332
75271
|
sink[fieldKey] = ingest$f(requestedField, PolymorphicParentRelationshipState);
|
|
77333
75272
|
break;
|
|
77334
75273
|
}
|
|
77335
75274
|
case 'RecordConnection': {
|
|
77336
|
-
const RecordConnectionState =
|
|
77337
|
-
...state,
|
|
77338
|
-
path: {
|
|
77339
|
-
parent: null,
|
|
77340
|
-
propertyName: null,
|
|
77341
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77342
|
-
},
|
|
77343
|
-
data: fieldData,
|
|
77344
|
-
};
|
|
75275
|
+
const RecordConnectionState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77345
75276
|
sink[fieldKey] = ingest$4(requestedField, RecordConnectionState);
|
|
77346
75277
|
break;
|
|
77347
75278
|
}
|
|
@@ -77460,15 +75391,7 @@
|
|
|
77460
75391
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
77461
75392
|
switch (fieldType.typename) {
|
|
77462
75393
|
case 'RecordRepresentation': {
|
|
77463
|
-
const nodeState =
|
|
77464
|
-
...state,
|
|
77465
|
-
path: {
|
|
77466
|
-
parent: null,
|
|
77467
|
-
propertyName: null,
|
|
77468
|
-
fullPath: rootKey + '__' + fieldKey
|
|
77469
|
-
},
|
|
77470
|
-
data: fieldData,
|
|
77471
|
-
};
|
|
75394
|
+
const nodeState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
77472
75395
|
cacheKeySink.merge(getTypeCacheKeys$5(requestedField, nodeState));
|
|
77473
75396
|
break;
|
|
77474
75397
|
}
|
|
@@ -77513,15 +75436,7 @@
|
|
|
77513
75436
|
break;
|
|
77514
75437
|
}
|
|
77515
75438
|
case 'RecordRepresentation': {
|
|
77516
|
-
const RecordRepresentationState =
|
|
77517
|
-
...state,
|
|
77518
|
-
path: {
|
|
77519
|
-
parent: null,
|
|
77520
|
-
propertyName: null,
|
|
77521
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77522
|
-
},
|
|
77523
|
-
data: fieldData,
|
|
77524
|
-
};
|
|
75439
|
+
const RecordRepresentationState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77525
75440
|
sink[fieldKey] = ingest$6(requestedField, RecordRepresentationState);
|
|
77526
75441
|
break;
|
|
77527
75442
|
}
|
|
@@ -77727,28 +75642,12 @@
|
|
|
77727
75642
|
break;
|
|
77728
75643
|
}
|
|
77729
75644
|
case 'RecordEdge': {
|
|
77730
|
-
const RecordEdgeState =
|
|
77731
|
-
...state,
|
|
77732
|
-
path: {
|
|
77733
|
-
parent: null,
|
|
77734
|
-
propertyName: null,
|
|
77735
|
-
fullPath: fullPathKey
|
|
77736
|
-
},
|
|
77737
|
-
data: fieldData,
|
|
77738
|
-
};
|
|
75645
|
+
const RecordEdgeState = buildFieldState(state, fullPathKey, fieldData);
|
|
77739
75646
|
sink[fieldKey] = ingest$5(requestedField, RecordEdgeState);
|
|
77740
75647
|
break;
|
|
77741
75648
|
}
|
|
77742
75649
|
case 'PageInfo': {
|
|
77743
|
-
const PageInfoState =
|
|
77744
|
-
...state,
|
|
77745
|
-
path: {
|
|
77746
|
-
parent: null,
|
|
77747
|
-
propertyName: null,
|
|
77748
|
-
fullPath: fullPathKey
|
|
77749
|
-
},
|
|
77750
|
-
data: fieldData,
|
|
77751
|
-
};
|
|
75650
|
+
const PageInfoState = buildFieldState(state, fullPathKey, fieldData);
|
|
77752
75651
|
sink[fieldKey] = ingest$b(requestedField, PageInfoState);
|
|
77753
75652
|
break;
|
|
77754
75653
|
}
|
|
@@ -77877,15 +75776,7 @@
|
|
|
77877
75776
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
77878
75777
|
switch (fieldType.typename) {
|
|
77879
75778
|
case 'RecordConnection': {
|
|
77880
|
-
const recordQueryState =
|
|
77881
|
-
...state,
|
|
77882
|
-
path: {
|
|
77883
|
-
parent: null,
|
|
77884
|
-
propertyName: null,
|
|
77885
|
-
fullPath: rootKey + '__' + fieldKey
|
|
77886
|
-
},
|
|
77887
|
-
data: fieldData,
|
|
77888
|
-
};
|
|
75779
|
+
const recordQueryState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
77889
75780
|
cacheKeySink.merge(getTypeCacheKeys$6(requestedField, recordQueryState));
|
|
77890
75781
|
break;
|
|
77891
75782
|
}
|
|
@@ -77906,15 +75797,7 @@
|
|
|
77906
75797
|
break;
|
|
77907
75798
|
}
|
|
77908
75799
|
case 'RecordConnection': {
|
|
77909
|
-
const RecordConnectionState =
|
|
77910
|
-
...state,
|
|
77911
|
-
path: {
|
|
77912
|
-
parent: null,
|
|
77913
|
-
propertyName: null,
|
|
77914
|
-
fullPath: parentKey + '__' + fieldKey
|
|
77915
|
-
},
|
|
77916
|
-
data: fieldData,
|
|
77917
|
-
};
|
|
75800
|
+
const RecordConnectionState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
77918
75801
|
sink[fieldKey] = ingest$4(requestedField, RecordConnectionState);
|
|
77919
75802
|
break;
|
|
77920
75803
|
}
|
|
@@ -78051,28 +75934,12 @@
|
|
|
78051
75934
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
78052
75935
|
switch (fieldType.typename) {
|
|
78053
75936
|
case 'RecordQuery': {
|
|
78054
|
-
const queryState =
|
|
78055
|
-
...state,
|
|
78056
|
-
path: {
|
|
78057
|
-
parent: null,
|
|
78058
|
-
propertyName: null,
|
|
78059
|
-
fullPath: rootKey + '__' + fieldKey
|
|
78060
|
-
},
|
|
78061
|
-
data: fieldData,
|
|
78062
|
-
};
|
|
75937
|
+
const queryState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
78063
75938
|
cacheKeySink.merge(getTypeCacheKeys$3(requestedField, queryState));
|
|
78064
75939
|
break;
|
|
78065
75940
|
}
|
|
78066
75941
|
case 'RecordQueryAggregate': {
|
|
78067
|
-
const aggregateState =
|
|
78068
|
-
...state,
|
|
78069
|
-
path: {
|
|
78070
|
-
parent: null,
|
|
78071
|
-
propertyName: null,
|
|
78072
|
-
fullPath: rootKey + '__' + fieldKey
|
|
78073
|
-
},
|
|
78074
|
-
data: fieldData,
|
|
78075
|
-
};
|
|
75942
|
+
const aggregateState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
78076
75943
|
cacheKeySink.merge(getTypeCacheKeys$c(requestedField, aggregateState));
|
|
78077
75944
|
break;
|
|
78078
75945
|
}
|
|
@@ -78094,15 +75961,7 @@
|
|
|
78094
75961
|
break;
|
|
78095
75962
|
}
|
|
78096
75963
|
case 'RelatedListInfo': {
|
|
78097
|
-
const relatedListByNameState =
|
|
78098
|
-
...state,
|
|
78099
|
-
path: {
|
|
78100
|
-
parent: null,
|
|
78101
|
-
propertyName: null,
|
|
78102
|
-
fullPath: rootKey + '__' + fieldKey
|
|
78103
|
-
},
|
|
78104
|
-
data: fieldData,
|
|
78105
|
-
};
|
|
75964
|
+
const relatedListByNameState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
78106
75965
|
cacheKeySink.merge(getTypeCacheKeys$j(requestedField, relatedListByNameState));
|
|
78107
75966
|
break;
|
|
78108
75967
|
}
|
|
@@ -78159,54 +76018,22 @@
|
|
|
78159
76018
|
break;
|
|
78160
76019
|
}
|
|
78161
76020
|
case 'RecordQuery': {
|
|
78162
|
-
const RecordQueryState =
|
|
78163
|
-
...state,
|
|
78164
|
-
path: {
|
|
78165
|
-
parent: null,
|
|
78166
|
-
propertyName: null,
|
|
78167
|
-
fullPath: parentKey + '__' + fieldKey
|
|
78168
|
-
},
|
|
78169
|
-
data: fieldData,
|
|
78170
|
-
};
|
|
76021
|
+
const RecordQueryState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
78171
76022
|
sink[fieldKey] = ingest$3(requestedField, RecordQueryState);
|
|
78172
76023
|
break;
|
|
78173
76024
|
}
|
|
78174
76025
|
case 'RecordQueryAggregate': {
|
|
78175
|
-
const RecordQueryAggregateState =
|
|
78176
|
-
...state,
|
|
78177
|
-
path: {
|
|
78178
|
-
parent: null,
|
|
78179
|
-
propertyName: null,
|
|
78180
|
-
fullPath: parentKey + '__' + fieldKey
|
|
78181
|
-
},
|
|
78182
|
-
data: fieldData,
|
|
78183
|
-
};
|
|
76026
|
+
const RecordQueryAggregateState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
78184
76027
|
sink[fieldKey] = ingest$9(requestedField, RecordQueryAggregateState);
|
|
78185
76028
|
break;
|
|
78186
76029
|
}
|
|
78187
76030
|
case 'ObjectInfo': {
|
|
78188
|
-
const ObjectInfoState =
|
|
78189
|
-
...state,
|
|
78190
|
-
path: {
|
|
78191
|
-
parent: null,
|
|
78192
|
-
propertyName: null,
|
|
78193
|
-
fullPath: parentKey + '__' + fieldKey
|
|
78194
|
-
},
|
|
78195
|
-
data: fieldData,
|
|
78196
|
-
};
|
|
76031
|
+
const ObjectInfoState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
78197
76032
|
sink[fieldKey] = ingest$O(requestedField, ObjectInfoState);
|
|
78198
76033
|
break;
|
|
78199
76034
|
}
|
|
78200
76035
|
case 'RelatedListInfo': {
|
|
78201
|
-
const RelatedListInfoState =
|
|
78202
|
-
...state,
|
|
78203
|
-
path: {
|
|
78204
|
-
parent: null,
|
|
78205
|
-
propertyName: null,
|
|
78206
|
-
fullPath: parentKey + '__' + fieldKey
|
|
78207
|
-
},
|
|
78208
|
-
data: fieldData,
|
|
78209
|
-
};
|
|
76036
|
+
const RelatedListInfoState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
78210
76037
|
sink[fieldKey] = ingest$g(requestedField, RelatedListInfoState);
|
|
78211
76038
|
break;
|
|
78212
76039
|
}
|
|
@@ -78331,28 +76158,12 @@
|
|
|
78331
76158
|
const fieldKey = getSerializedKeyForField(requestedField, state.variables, fieldType);
|
|
78332
76159
|
switch (fieldType.typename) {
|
|
78333
76160
|
case 'UIAPI': {
|
|
78334
|
-
const uiapiState =
|
|
78335
|
-
...state,
|
|
78336
|
-
path: {
|
|
78337
|
-
parent: null,
|
|
78338
|
-
propertyName: null,
|
|
78339
|
-
fullPath: rootKey + '__' + fieldKey
|
|
78340
|
-
},
|
|
78341
|
-
data: fieldData,
|
|
78342
|
-
};
|
|
76161
|
+
const uiapiState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
78343
76162
|
cacheKeySink.merge(getTypeCacheKeys$2(requestedField, uiapiState));
|
|
78344
76163
|
break;
|
|
78345
76164
|
}
|
|
78346
76165
|
case 'RateLimit': {
|
|
78347
|
-
const rateLimitState =
|
|
78348
|
-
...state,
|
|
78349
|
-
path: {
|
|
78350
|
-
parent: null,
|
|
78351
|
-
propertyName: null,
|
|
78352
|
-
fullPath: rootKey + '__' + fieldKey
|
|
78353
|
-
},
|
|
78354
|
-
data: fieldData,
|
|
78355
|
-
};
|
|
76166
|
+
const rateLimitState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
78356
76167
|
cacheKeySink.merge(getTypeCacheKeys$b(requestedField, rateLimitState));
|
|
78357
76168
|
break;
|
|
78358
76169
|
}
|
|
@@ -78397,28 +76208,12 @@
|
|
|
78397
76208
|
break;
|
|
78398
76209
|
}
|
|
78399
76210
|
case 'UIAPI': {
|
|
78400
|
-
const UIAPIState =
|
|
78401
|
-
...state,
|
|
78402
|
-
path: {
|
|
78403
|
-
parent: null,
|
|
78404
|
-
propertyName: null,
|
|
78405
|
-
fullPath: parentKey + '__' + fieldKey
|
|
78406
|
-
},
|
|
78407
|
-
data: fieldData,
|
|
78408
|
-
};
|
|
76211
|
+
const UIAPIState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
78409
76212
|
sink[fieldKey] = ingest$2(requestedField, UIAPIState);
|
|
78410
76213
|
break;
|
|
78411
76214
|
}
|
|
78412
76215
|
case 'RateLimit': {
|
|
78413
|
-
const RateLimitState =
|
|
78414
|
-
...state,
|
|
78415
|
-
path: {
|
|
78416
|
-
parent: null,
|
|
78417
|
-
propertyName: null,
|
|
78418
|
-
fullPath: parentKey + '__' + fieldKey
|
|
78419
|
-
},
|
|
78420
|
-
data: fieldData,
|
|
78421
|
-
};
|
|
76216
|
+
const RateLimitState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
|
|
78422
76217
|
sink[fieldKey] = ingest$8(requestedField, RateLimitState);
|
|
78423
76218
|
break;
|
|
78424
76219
|
}
|
|
@@ -79743,7 +77538,7 @@
|
|
|
79743
77538
|
configuration: { ...configurationForGraphQLAdapters },
|
|
79744
77539
|
instrument,
|
|
79745
77540
|
});
|
|
79746
|
-
// version: 1.
|
|
77541
|
+
// version: 1.159.0-5eb16a449
|
|
79747
77542
|
|
|
79748
77543
|
// On core the unstable adapters are re-exported with different names,
|
|
79749
77544
|
|
|
@@ -81990,7 +79785,7 @@
|
|
|
81990
79785
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
81991
79786
|
graphQLImperative = ldsAdapter;
|
|
81992
79787
|
});
|
|
81993
|
-
// version: 1.
|
|
79788
|
+
// version: 1.159.0-5eb16a449
|
|
81994
79789
|
|
|
81995
79790
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
81996
79791
|
__proto__: null,
|
|
@@ -82696,4 +80491,4 @@
|
|
|
82696
80491
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
82697
80492
|
|
|
82698
80493
|
}));
|
|
82699
|
-
// version: 1.
|
|
80494
|
+
// version: 1.159.0-f2aa2c085
|