@salesforce/lds-worker-api 1.438.0 → 1.439.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.
|
@@ -4282,7 +4282,7 @@
|
|
|
4282
4282
|
}
|
|
4283
4283
|
callbacks.push(callback);
|
|
4284
4284
|
}
|
|
4285
|
-
// version: 1.
|
|
4285
|
+
// version: 1.439.0-e3dc0cfb2a
|
|
4286
4286
|
|
|
4287
4287
|
// TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
|
|
4288
4288
|
function instrumentAdapter$1(createFunction, _metadata) {
|
|
@@ -5326,7 +5326,7 @@
|
|
|
5326
5326
|
const { apiFamily, name } = metadata;
|
|
5327
5327
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
5328
5328
|
}
|
|
5329
|
-
// version: 1.
|
|
5329
|
+
// version: 1.439.0-e3dc0cfb2a
|
|
5330
5330
|
|
|
5331
5331
|
function isSupportedEntity(_objectApiName) {
|
|
5332
5332
|
return true;
|
|
@@ -32544,7 +32544,7 @@
|
|
|
32544
32544
|
throttle(60, 60000, setupNotifyAllListRecordUpdateAvailable(luvio));
|
|
32545
32545
|
throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
|
|
32546
32546
|
});
|
|
32547
|
-
// version: 1.
|
|
32547
|
+
// version: 1.439.0-1d518350b5
|
|
32548
32548
|
|
|
32549
32549
|
var allowUpdatesForNonCachedRecords = {
|
|
32550
32550
|
isOpen: function (e) {
|
|
@@ -44185,6 +44185,11 @@
|
|
|
44185
44185
|
},
|
|
44186
44186
|
};
|
|
44187
44187
|
|
|
44188
|
+
/*!
|
|
44189
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
44190
|
+
* All rights reserved.
|
|
44191
|
+
* For full license text, see the LICENSE.txt file
|
|
44192
|
+
*/
|
|
44188
44193
|
const { create: create$7, freeze: freeze$4, keys: keys$8, entries: entries$5 } = Object;
|
|
44189
44194
|
const { hasOwnProperty: hasOwnProperty$3 } = Object.prototype;
|
|
44190
44195
|
const { isArray: isArray$7 } = Array;
|
|
@@ -44248,7 +44253,7 @@
|
|
|
44248
44253
|
};
|
|
44249
44254
|
}
|
|
44250
44255
|
function isPromiseLike$4(x) {
|
|
44251
|
-
return typeof x
|
|
44256
|
+
return typeof (x == null ? void 0 : x.then) === "function";
|
|
44252
44257
|
}
|
|
44253
44258
|
function racesync(values) {
|
|
44254
44259
|
for (const value of values) {
|
|
@@ -44365,12 +44370,20 @@
|
|
|
44365
44370
|
console.error("OneStore Command threw an error that we did not expect", error);
|
|
44366
44371
|
}
|
|
44367
44372
|
|
|
44373
|
+
/*!
|
|
44374
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
44375
|
+
* All rights reserved.
|
|
44376
|
+
* For full license text, see the LICENSE.txt file
|
|
44377
|
+
*/
|
|
44368
44378
|
function serviceSatisfies(service, request) {
|
|
44369
44379
|
return (
|
|
44370
44380
|
// service types must match
|
|
44371
44381
|
service.type === request.type && // version of the service must satisfy the requested version
|
|
44372
44382
|
satisfies(service.version, request.version) && // no tags requested, or the service matches every requested tag value
|
|
44373
|
-
(request.tags === void 0 || Object.keys(request.tags).every((tag) =>
|
|
44383
|
+
(request.tags === void 0 || Object.keys(request.tags).every((tag) => {
|
|
44384
|
+
var _a;
|
|
44385
|
+
return ((_a = service.tags) == null ? void 0 : _a[tag]) === request.tags[tag];
|
|
44386
|
+
}))
|
|
44374
44387
|
);
|
|
44375
44388
|
}
|
|
44376
44389
|
let resolverAvailable;
|
|
@@ -44428,6 +44441,11 @@
|
|
|
44428
44441
|
};
|
|
44429
44442
|
}
|
|
44430
44443
|
|
|
44444
|
+
/*!
|
|
44445
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
44446
|
+
* All rights reserved.
|
|
44447
|
+
* For full license text, see the LICENSE.txt file
|
|
44448
|
+
*/
|
|
44431
44449
|
function isCacheEntryForType(cacheEntry, type) {
|
|
44432
44450
|
return cacheEntry.metadata.type.namespace === type.namespace && cacheEntry.metadata.type.name === type.typeName;
|
|
44433
44451
|
}
|
|
@@ -44445,8 +44463,9 @@
|
|
|
44445
44463
|
return `${this.namespace}::${this.typeName}(${stableJSONStringify$3(params)})`;
|
|
44446
44464
|
}
|
|
44447
44465
|
write(cache, input) {
|
|
44466
|
+
var _a;
|
|
44448
44467
|
const key = this.buildKey(this.buildKeyParams(input));
|
|
44449
|
-
const existingNormalizedData = cache.get(key)
|
|
44468
|
+
const existingNormalizedData = (_a = cache.get(key)) == null ? void 0 : _a.value;
|
|
44450
44469
|
const normalized = this.normalizeData(cache, { ...input, existingNormalizedData });
|
|
44451
44470
|
if (normalized.isErr()) {
|
|
44452
44471
|
return err$3(normalized.error);
|
|
@@ -44521,6 +44540,11 @@
|
|
|
44521
44540
|
return ok$3(data);
|
|
44522
44541
|
}
|
|
44523
44542
|
|
|
44543
|
+
/*!
|
|
44544
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
44545
|
+
* All rights reserved.
|
|
44546
|
+
* For full license text, see the LICENSE.txt file
|
|
44547
|
+
*/
|
|
44524
44548
|
let JsonSchemaViolationError$1 = class JsonSchemaViolationError extends Error {
|
|
44525
44549
|
constructor(message, validationErrors) {
|
|
44526
44550
|
super(message);
|
|
@@ -44950,6 +44974,11 @@
|
|
|
44950
44974
|
return current;
|
|
44951
44975
|
}
|
|
44952
44976
|
|
|
44977
|
+
/*!
|
|
44978
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
44979
|
+
* All rights reserved.
|
|
44980
|
+
* For full license text, see the LICENSE.txt file
|
|
44981
|
+
*/
|
|
44953
44982
|
function devAssert(condition, message) {
|
|
44954
44983
|
const booleanCondition = Boolean(condition);
|
|
44955
44984
|
if (!booleanCondition) {
|
|
@@ -45800,7 +45829,10 @@
|
|
|
45800
45829
|
return operations[0];
|
|
45801
45830
|
}
|
|
45802
45831
|
if (operationName) {
|
|
45803
|
-
return operations.find((op) =>
|
|
45832
|
+
return operations.find((op) => {
|
|
45833
|
+
var _a;
|
|
45834
|
+
return ((_a = op.name) == null ? void 0 : _a.value) === operationName;
|
|
45835
|
+
});
|
|
45804
45836
|
}
|
|
45805
45837
|
return void 0;
|
|
45806
45838
|
}
|
|
@@ -45856,7 +45888,7 @@
|
|
|
45856
45888
|
validateGraphQLOperations(
|
|
45857
45889
|
{ query: document, operationName },
|
|
45858
45890
|
{
|
|
45859
|
-
acceptedOperations: options
|
|
45891
|
+
acceptedOperations: (options == null ? void 0 : options.acceptedOperations) ?? ["query"]
|
|
45860
45892
|
}
|
|
45861
45893
|
);
|
|
45862
45894
|
return ok$3(document);
|
|
@@ -94087,6 +94119,11 @@
|
|
|
94087
94119
|
return [];
|
|
94088
94120
|
}
|
|
94089
94121
|
|
|
94122
|
+
/*!
|
|
94123
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
94124
|
+
* All rights reserved.
|
|
94125
|
+
* For full license text, see the LICENSE.txt file
|
|
94126
|
+
*/
|
|
94090
94127
|
const { create: create$6, freeze: freeze$3, keys: keys$7, entries } = Object;
|
|
94091
94128
|
const { isArray: isArray$1$1 } = Array;
|
|
94092
94129
|
const { stringify: stringify$2, parse: parse$2 } = JSON;
|
|
@@ -94205,7 +94242,7 @@
|
|
|
94205
94242
|
};
|
|
94206
94243
|
}
|
|
94207
94244
|
function isPromiseLike$2(x) {
|
|
94208
|
-
return typeof x
|
|
94245
|
+
return typeof (x == null ? void 0 : x.then) === "function";
|
|
94209
94246
|
}
|
|
94210
94247
|
function deepEquals$1(x, y) {
|
|
94211
94248
|
if (x === void 0) {
|
|
@@ -94375,9 +94412,19 @@
|
|
|
94375
94412
|
console.error("OneStore Command threw an error that we did not expect", error);
|
|
94376
94413
|
}
|
|
94377
94414
|
|
|
94415
|
+
/*!
|
|
94416
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
94417
|
+
* All rights reserved.
|
|
94418
|
+
* For full license text, see the LICENSE.txt file
|
|
94419
|
+
*/
|
|
94378
94420
|
class BaseCommand {
|
|
94379
94421
|
}
|
|
94380
94422
|
|
|
94423
|
+
/*!
|
|
94424
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
94425
|
+
* All rights reserved.
|
|
94426
|
+
* For full license text, see the LICENSE.txt file
|
|
94427
|
+
*/
|
|
94381
94428
|
let NetworkCommand$1 = class NetworkCommand extends BaseCommand {
|
|
94382
94429
|
constructor(services) {
|
|
94383
94430
|
super();
|
|
@@ -94428,6 +94475,11 @@
|
|
|
94428
94475
|
};
|
|
94429
94476
|
}
|
|
94430
94477
|
|
|
94478
|
+
/*!
|
|
94479
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
94480
|
+
* All rights reserved.
|
|
94481
|
+
* For full license text, see the LICENSE.txt file
|
|
94482
|
+
*/
|
|
94431
94483
|
class AuraNetworkCommand extends NetworkCommand$1 {
|
|
94432
94484
|
constructor(services) {
|
|
94433
94485
|
super(services);
|
|
@@ -94534,6 +94586,16 @@
|
|
|
94534
94586
|
};
|
|
94535
94587
|
}
|
|
94536
94588
|
|
|
94589
|
+
/*!
|
|
94590
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
94591
|
+
* All rights reserved.
|
|
94592
|
+
* For full license text, see the LICENSE.txt file
|
|
94593
|
+
*/
|
|
94594
|
+
/*!
|
|
94595
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
94596
|
+
* All rights reserved.
|
|
94597
|
+
* For full license text, see the LICENSE.txt file
|
|
94598
|
+
*/
|
|
94537
94599
|
const { isArray: isArray$6 } = Array;
|
|
94538
94600
|
let Ok$2 = class Ok {
|
|
94539
94601
|
constructor(value) {
|
|
@@ -94601,7 +94663,7 @@
|
|
|
94601
94663
|
};
|
|
94602
94664
|
}
|
|
94603
94665
|
function isPromiseLike$1(x) {
|
|
94604
|
-
return typeof x
|
|
94666
|
+
return typeof (x == null ? void 0 : x.then) === "function";
|
|
94605
94667
|
}
|
|
94606
94668
|
function deepEquals(x, y) {
|
|
94607
94669
|
if (x === void 0) {
|
|
@@ -94892,7 +94954,7 @@
|
|
|
94892
94954
|
unsubscribe() {
|
|
94893
94955
|
while (this.unsubscribers.length > 0) {
|
|
94894
94956
|
const unsubscriber = this.unsubscribers.pop();
|
|
94895
|
-
unsubscriber
|
|
94957
|
+
unsubscriber == null ? void 0 : unsubscriber();
|
|
94896
94958
|
}
|
|
94897
94959
|
}
|
|
94898
94960
|
/**
|
|
@@ -95076,6 +95138,16 @@
|
|
|
95076
95138
|
};
|
|
95077
95139
|
}
|
|
95078
95140
|
|
|
95141
|
+
/*!
|
|
95142
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
95143
|
+
* All rights reserved.
|
|
95144
|
+
* For full license text, see the LICENSE.txt file
|
|
95145
|
+
*/
|
|
95146
|
+
/*!
|
|
95147
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
95148
|
+
* All rights reserved.
|
|
95149
|
+
* For full license text, see the LICENSE.txt file
|
|
95150
|
+
*/
|
|
95079
95151
|
let AuraCacheControlCommand$1 = class AuraCacheControlCommand extends CacheControlCommand {
|
|
95080
95152
|
constructor(services) {
|
|
95081
95153
|
super(services);
|
|
@@ -95211,6 +95283,16 @@
|
|
|
95211
95283
|
};
|
|
95212
95284
|
}
|
|
95213
95285
|
|
|
95286
|
+
/*!
|
|
95287
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
95288
|
+
* All rights reserved.
|
|
95289
|
+
* For full license text, see the LICENSE.txt file
|
|
95290
|
+
*/
|
|
95291
|
+
/*!
|
|
95292
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
95293
|
+
* All rights reserved.
|
|
95294
|
+
* For full license text, see the LICENSE.txt file
|
|
95295
|
+
*/
|
|
95214
95296
|
class AuraCacheControlCommand extends CacheControlCommand {
|
|
95215
95297
|
constructor(services) {
|
|
95216
95298
|
super(services);
|
|
@@ -95320,7 +95402,8 @@
|
|
|
95320
95402
|
this.services = services;
|
|
95321
95403
|
}
|
|
95322
95404
|
readFromCache(cache) {
|
|
95323
|
-
|
|
95405
|
+
var _a;
|
|
95406
|
+
const data = (_a = cache.get(this.buildKey())) == null ? void 0 : _a.value;
|
|
95324
95407
|
if (data === void 0) {
|
|
95325
95408
|
return resolvedPromiseLike$2(err$1(new Error("Failed to find data in cache")));
|
|
95326
95409
|
}
|
|
@@ -95349,6 +95432,16 @@
|
|
|
95349
95432
|
};
|
|
95350
95433
|
}
|
|
95351
95434
|
|
|
95435
|
+
/*!
|
|
95436
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
95437
|
+
* All rights reserved.
|
|
95438
|
+
* For full license text, see the LICENSE.txt file
|
|
95439
|
+
*/
|
|
95440
|
+
/*!
|
|
95441
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
95442
|
+
* All rights reserved.
|
|
95443
|
+
* For full license text, see the LICENSE.txt file
|
|
95444
|
+
*/
|
|
95352
95445
|
class NetworkCommand extends BaseCommand {
|
|
95353
95446
|
constructor(services) {
|
|
95354
95447
|
super();
|
|
@@ -95398,7 +95491,7 @@
|
|
|
95398
95491
|
return command && typeof command === "object" && "fetchParams" in command;
|
|
95399
95492
|
}
|
|
95400
95493
|
function createAbortableDecorator(command, options) {
|
|
95401
|
-
if (!options
|
|
95494
|
+
if (!(options == null ? void 0 : options.signal) || !((options == null ? void 0 : options.signal) instanceof AbortSignal)) {
|
|
95402
95495
|
return command;
|
|
95403
95496
|
}
|
|
95404
95497
|
const { signal } = options;
|
|
@@ -95529,6 +95622,16 @@
|
|
|
95529
95622
|
};
|
|
95530
95623
|
}
|
|
95531
95624
|
|
|
95625
|
+
/*!
|
|
95626
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
95627
|
+
* All rights reserved.
|
|
95628
|
+
* For full license text, see the LICENSE.txt file
|
|
95629
|
+
*/
|
|
95630
|
+
/*!
|
|
95631
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
95632
|
+
* All rights reserved.
|
|
95633
|
+
* For full license text, see the LICENSE.txt file
|
|
95634
|
+
*/
|
|
95532
95635
|
class HttpCacheControlCommand extends CacheControlCommand {
|
|
95533
95636
|
constructor(services) {
|
|
95534
95637
|
super(services);
|
|
@@ -95636,6 +95739,16 @@
|
|
|
95636
95739
|
};
|
|
95637
95740
|
}
|
|
95638
95741
|
|
|
95742
|
+
/*!
|
|
95743
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
95744
|
+
* All rights reserved.
|
|
95745
|
+
* For full license text, see the LICENSE.txt file
|
|
95746
|
+
*/
|
|
95747
|
+
/*!
|
|
95748
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
95749
|
+
* All rights reserved.
|
|
95750
|
+
* For full license text, see the LICENSE.txt file
|
|
95751
|
+
*/
|
|
95639
95752
|
const { stringify: stringify$1, parse: parse$1 } = JSON;
|
|
95640
95753
|
function deepCopy$1(x) {
|
|
95641
95754
|
const stringified = stringify$1(x);
|
|
@@ -95659,7 +95772,7 @@
|
|
|
95659
95772
|
if (value === void 0) {
|
|
95660
95773
|
this.missingKeysRead.add(key);
|
|
95661
95774
|
}
|
|
95662
|
-
if (options
|
|
95775
|
+
if (options == null ? void 0 : options.copy) {
|
|
95663
95776
|
return deepCopy$1(value);
|
|
95664
95777
|
}
|
|
95665
95778
|
return value;
|
|
@@ -95703,7 +95816,7 @@
|
|
|
95703
95816
|
get(key, options) {
|
|
95704
95817
|
const result = this.baseCache.get(key);
|
|
95705
95818
|
if (result && this.predicate(key, result)) {
|
|
95706
|
-
if (options
|
|
95819
|
+
if (options == null ? void 0 : options.copy) {
|
|
95707
95820
|
return deepCopy$1(result);
|
|
95708
95821
|
}
|
|
95709
95822
|
return result;
|
|
@@ -95799,7 +95912,7 @@
|
|
|
95799
95912
|
this.data = {};
|
|
95800
95913
|
}
|
|
95801
95914
|
get(key, options) {
|
|
95802
|
-
if (options
|
|
95915
|
+
if (options == null ? void 0 : options.copy) {
|
|
95803
95916
|
return deepCopy$1(this.data[key]);
|
|
95804
95917
|
}
|
|
95805
95918
|
return this.data[key];
|
|
@@ -95879,6 +95992,11 @@
|
|
|
95879
95992
|
};
|
|
95880
95993
|
}
|
|
95881
95994
|
|
|
95995
|
+
/*!
|
|
95996
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
95997
|
+
* All rights reserved.
|
|
95998
|
+
* For full license text, see the LICENSE.txt file
|
|
95999
|
+
*/
|
|
95882
96000
|
class CacheControlStrategy {
|
|
95883
96001
|
constructor(services, config, requestRunner) {
|
|
95884
96002
|
this.services = services;
|
|
@@ -95939,11 +96057,11 @@
|
|
|
95939
96057
|
if (value.isOk()) {
|
|
95940
96058
|
this.collectCacheHitInstrumentation(
|
|
95941
96059
|
startTime,
|
|
95942
|
-
options
|
|
96060
|
+
options == null ? void 0 : options.instrumentationAttributes
|
|
95943
96061
|
);
|
|
95944
96062
|
return ok$1(void 0);
|
|
95945
96063
|
}
|
|
95946
|
-
this.collectCacheMissInstrumentation(startTime, options
|
|
96064
|
+
this.collectCacheMissInstrumentation(startTime, options == null ? void 0 : options.instrumentationAttributes);
|
|
95947
96065
|
const tempCache = this.filteredCache;
|
|
95948
96066
|
return new Promise(async (resolve, reject) => {
|
|
95949
96067
|
try {
|
|
@@ -96013,11 +96131,11 @@
|
|
|
96013
96131
|
if (result.isOk()) {
|
|
96014
96132
|
this.collectCacheHitInstrumentation(
|
|
96015
96133
|
startTime,
|
|
96016
|
-
options
|
|
96134
|
+
options == null ? void 0 : options.instrumentationAttributes
|
|
96017
96135
|
);
|
|
96018
96136
|
return ok$1(void 0);
|
|
96019
96137
|
}
|
|
96020
|
-
this.collectCacheMissInstrumentation(startTime, options
|
|
96138
|
+
this.collectCacheMissInstrumentation(startTime, options == null ? void 0 : options.instrumentationAttributes);
|
|
96021
96139
|
const error = new UserVisibleError(
|
|
96022
96140
|
new FetchResponse(HttpStatusCode.GatewayTimeout, {
|
|
96023
96141
|
error: "Cache miss for only-if-cached request"
|
|
@@ -96101,6 +96219,11 @@
|
|
|
96101
96219
|
};
|
|
96102
96220
|
}
|
|
96103
96221
|
|
|
96222
|
+
/*!
|
|
96223
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
96224
|
+
* All rights reserved.
|
|
96225
|
+
* For full license text, see the LICENSE.txt file
|
|
96226
|
+
*/
|
|
96104
96227
|
function buildInstrumentCommand(services) {
|
|
96105
96228
|
const meter = services.instrumentation.metrics.getMeter("onestore");
|
|
96106
96229
|
return function instrumentCommand(commandClass, commandName) {
|
|
@@ -96120,7 +96243,7 @@
|
|
|
96120
96243
|
try {
|
|
96121
96244
|
result = super.execute(...args);
|
|
96122
96245
|
} catch (e) {
|
|
96123
|
-
if (e
|
|
96246
|
+
if ((e == null ? void 0 : e.name) === "AbortError") {
|
|
96124
96247
|
abortCounter.add(1);
|
|
96125
96248
|
} else {
|
|
96126
96249
|
errorCounter.add(1);
|
|
@@ -96147,6 +96270,16 @@
|
|
|
96147
96270
|
};
|
|
96148
96271
|
}
|
|
96149
96272
|
|
|
96273
|
+
/*!
|
|
96274
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
96275
|
+
* All rights reserved.
|
|
96276
|
+
* For full license text, see the LICENSE.txt file
|
|
96277
|
+
*/
|
|
96278
|
+
/*!
|
|
96279
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
96280
|
+
* All rights reserved.
|
|
96281
|
+
* For full license text, see the LICENSE.txt file
|
|
96282
|
+
*/
|
|
96150
96283
|
class O11yOTelTraceAPI {
|
|
96151
96284
|
constructor(services) {
|
|
96152
96285
|
this.services = services;
|
|
@@ -96162,9 +96295,9 @@
|
|
|
96162
96295
|
this.logger = logger;
|
|
96163
96296
|
}
|
|
96164
96297
|
startSpan(name, _options, context) {
|
|
96165
|
-
const traceId = context
|
|
96166
|
-
const spanId = context
|
|
96167
|
-
const traceFlags = context
|
|
96298
|
+
const traceId = context == null ? void 0 : context.getValue(Symbol.for("traceId"));
|
|
96299
|
+
const spanId = context == null ? void 0 : context.getValue(Symbol.for("spanId"));
|
|
96300
|
+
const traceFlags = context == null ? void 0 : context.getValue(Symbol.for("traceFlags"));
|
|
96168
96301
|
let spanContext = void 0;
|
|
96169
96302
|
if (traceId !== void 0 && spanId !== void 0 && traceFlags !== void 0) {
|
|
96170
96303
|
spanContext = {
|
|
@@ -96407,7 +96540,12 @@
|
|
|
96407
96540
|
};
|
|
96408
96541
|
}
|
|
96409
96542
|
|
|
96410
|
-
|
|
96543
|
+
/*!
|
|
96544
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
96545
|
+
* All rights reserved.
|
|
96546
|
+
* For full license text, see the LICENSE.txt file
|
|
96547
|
+
*/
|
|
96548
|
+
const EventTypeWildcard = Symbol("EventTypeWildcard");
|
|
96411
96549
|
class DefaultPubSubService {
|
|
96412
96550
|
constructor() {
|
|
96413
96551
|
this.subscriptions = /* @__PURE__ */ new Map();
|
|
@@ -96470,6 +96608,11 @@
|
|
|
96470
96608
|
};
|
|
96471
96609
|
}
|
|
96472
96610
|
|
|
96611
|
+
/*!
|
|
96612
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
96613
|
+
* All rights reserved.
|
|
96614
|
+
* For full license text, see the LICENSE.txt file
|
|
96615
|
+
*/
|
|
96473
96616
|
class FeatureFlagsService {
|
|
96474
96617
|
constructor() {
|
|
96475
96618
|
this.flags = /* @__PURE__ */ new Map();
|
|
@@ -96531,7 +96674,7 @@
|
|
|
96531
96674
|
},
|
|
96532
96675
|
};
|
|
96533
96676
|
}
|
|
96534
|
-
// version: 1.
|
|
96677
|
+
// version: 1.439.0-e3dc0cfb2a
|
|
96535
96678
|
|
|
96536
96679
|
/**
|
|
96537
96680
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -96557,8 +96700,13 @@
|
|
|
96557
96700
|
},
|
|
96558
96701
|
};
|
|
96559
96702
|
}
|
|
96560
|
-
// version: 1.
|
|
96703
|
+
// version: 1.439.0-e3dc0cfb2a
|
|
96561
96704
|
|
|
96705
|
+
/*!
|
|
96706
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
96707
|
+
* All rights reserved.
|
|
96708
|
+
* For full license text, see the LICENSE.txt file
|
|
96709
|
+
*/
|
|
96562
96710
|
function findExecutableOperation$1(input) {
|
|
96563
96711
|
const operations = input.query.definitions.filter(
|
|
96564
96712
|
(def) => def.kind === Kind$1.OPERATION_DEFINITION
|
|
@@ -96570,7 +96718,10 @@
|
|
|
96570
96718
|
return ok$1(operations[0]);
|
|
96571
96719
|
}
|
|
96572
96720
|
if (input.operationName) {
|
|
96573
|
-
const specifiedOperation = operations.find((op) =>
|
|
96721
|
+
const specifiedOperation = operations.find((op) => {
|
|
96722
|
+
var _a;
|
|
96723
|
+
return ((_a = op.name) == null ? void 0 : _a.value) === input.operationName;
|
|
96724
|
+
});
|
|
96574
96725
|
if (specifiedOperation) {
|
|
96575
96726
|
return ok$1(specifiedOperation);
|
|
96576
96727
|
}
|
|
@@ -96586,13 +96737,14 @@
|
|
|
96586
96737
|
const operation = operationResult.value;
|
|
96587
96738
|
const selections = operation.selectionSet.selections;
|
|
96588
96739
|
const variableDefinitions = operation.variableDefinitions;
|
|
96589
|
-
const variables = variableDefinitions
|
|
96740
|
+
const variables = (variableDefinitions == null ? void 0 : variableDefinitions.reduce((prev, def) => {
|
|
96741
|
+
var _a;
|
|
96590
96742
|
prev[def.variable.name.value] = {
|
|
96591
96743
|
definition: def,
|
|
96592
|
-
value: input.variables
|
|
96744
|
+
value: (_a = input.variables) == null ? void 0 : _a[def.variable.name.value]
|
|
96593
96745
|
};
|
|
96594
96746
|
return prev;
|
|
96595
|
-
}, {}) || {};
|
|
96747
|
+
}, {})) || {};
|
|
96596
96748
|
const fragments = input.query.definitions.filter(isFragmentDefinition$1).reduce((prev, fragment) => {
|
|
96597
96749
|
prev[fragment.name.value] = fragment;
|
|
96598
96750
|
return prev;
|
|
@@ -96645,6 +96797,11 @@
|
|
|
96645
96797
|
return node.kind === Kind$1.FRAGMENT_DEFINITION;
|
|
96646
96798
|
}
|
|
96647
96799
|
|
|
96800
|
+
/*!
|
|
96801
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
96802
|
+
* All rights reserved.
|
|
96803
|
+
* For full license text, see the LICENSE.txt file
|
|
96804
|
+
*/
|
|
96648
96805
|
class AuraGraphQLNormalizedCacheControlCommand extends AuraNormalizedCacheControlCommand {
|
|
96649
96806
|
constructor(config, documentRootType, services) {
|
|
96650
96807
|
super(services);
|
|
@@ -96825,6 +96982,11 @@
|
|
|
96825
96982
|
};
|
|
96826
96983
|
}
|
|
96827
96984
|
|
|
96985
|
+
/*!
|
|
96986
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
96987
|
+
* All rights reserved.
|
|
96988
|
+
* For full license text, see the LICENSE.txt file
|
|
96989
|
+
*/
|
|
96828
96990
|
class HttpGraphQLNormalizedCacheControlCommand extends HttpNormalizedCacheControlCommand {
|
|
96829
96991
|
constructor(config, documentRootType, services) {
|
|
96830
96992
|
super(services);
|
|
@@ -96938,6 +97100,11 @@
|
|
|
96938
97100
|
};
|
|
96939
97101
|
}
|
|
96940
97102
|
|
|
97103
|
+
/*!
|
|
97104
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
97105
|
+
* All rights reserved.
|
|
97106
|
+
* For full license text, see the LICENSE.txt file
|
|
97107
|
+
*/
|
|
96941
97108
|
class JsonSchemaViolationError extends Error {
|
|
96942
97109
|
constructor(message, validationErrors) {
|
|
96943
97110
|
super(message);
|
|
@@ -97367,6 +97534,11 @@
|
|
|
97367
97534
|
return current;
|
|
97368
97535
|
}
|
|
97369
97536
|
|
|
97537
|
+
/*!
|
|
97538
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
97539
|
+
* All rights reserved.
|
|
97540
|
+
* For full license text, see the LICENSE.txt file
|
|
97541
|
+
*/
|
|
97370
97542
|
function isUserVisibleError$2(error) {
|
|
97371
97543
|
return error instanceof Error && "type" in error && error.type === "user-visible";
|
|
97372
97544
|
}
|
|
@@ -97391,6 +97563,11 @@
|
|
|
97391
97563
|
console.error("OneStore Command threw an error that we did not expect", error);
|
|
97392
97564
|
}
|
|
97393
97565
|
|
|
97566
|
+
/*!
|
|
97567
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
97568
|
+
* All rights reserved.
|
|
97569
|
+
* For full license text, see the LICENSE.txt file
|
|
97570
|
+
*/
|
|
97394
97571
|
function buildBaseImperativeInvoker(getCommand, transformResult) {
|
|
97395
97572
|
return async (...params) => {
|
|
97396
97573
|
const command = getCommand({ params, assertIsValid });
|
|
@@ -97495,7 +97672,7 @@
|
|
|
97495
97672
|
const api = {
|
|
97496
97673
|
data: result.value.data,
|
|
97497
97674
|
subscribe: (cb) => {
|
|
97498
|
-
|
|
97675
|
+
result.value.subscribe((result2) => {
|
|
97499
97676
|
if (result2.isErr()) {
|
|
97500
97677
|
return cb({ data: void 0, error: toError(result2.error) });
|
|
97501
97678
|
}
|
|
@@ -97598,10 +97775,10 @@
|
|
|
97598
97775
|
acceptedOperations: ["query"]
|
|
97599
97776
|
};
|
|
97600
97777
|
const result = resolveAndValidateGraphQLConfig(params[0], options);
|
|
97601
|
-
if (result
|
|
97778
|
+
if (result == null ? void 0 : result.isErr()) {
|
|
97602
97779
|
return result.error;
|
|
97603
97780
|
}
|
|
97604
|
-
if (result
|
|
97781
|
+
if (result == null ? void 0 : result.isOk()) {
|
|
97605
97782
|
params[0] = result.value;
|
|
97606
97783
|
}
|
|
97607
97784
|
}
|
|
@@ -97620,7 +97797,7 @@
|
|
|
97620
97797
|
deepFreeze(result.value);
|
|
97621
97798
|
consumerEmittedData.data = result.value.data.data;
|
|
97622
97799
|
consumerEmittedData.subscribe = (cb) => {
|
|
97623
|
-
|
|
97800
|
+
result.value.subscribe((res) => {
|
|
97624
97801
|
const consumerEmittedData2 = {
|
|
97625
97802
|
data: void 0,
|
|
97626
97803
|
errors: void 0
|
|
@@ -97693,11 +97870,11 @@
|
|
|
97693
97870
|
acceptedOperations: ["query"]
|
|
97694
97871
|
};
|
|
97695
97872
|
const result = resolveAndValidateGraphQLConfig(config, options);
|
|
97696
|
-
if (result
|
|
97873
|
+
if (result == null ? void 0 : result.isErr()) {
|
|
97697
97874
|
callback(result.error);
|
|
97698
97875
|
return;
|
|
97699
97876
|
}
|
|
97700
|
-
if (result
|
|
97877
|
+
if (result == null ? void 0 : result.isOk()) {
|
|
97701
97878
|
config = result.value;
|
|
97702
97879
|
}
|
|
97703
97880
|
}
|
|
@@ -97728,12 +97905,12 @@
|
|
|
97728
97905
|
acceptedOperations: ["query"]
|
|
97729
97906
|
};
|
|
97730
97907
|
const result = resolveAndValidateGraphQLConfig(config, options);
|
|
97731
|
-
if (result
|
|
97908
|
+
if (result == null ? void 0 : result.isErr()) {
|
|
97732
97909
|
callback(result.error);
|
|
97733
97910
|
return () => {
|
|
97734
97911
|
};
|
|
97735
97912
|
}
|
|
97736
|
-
if (result
|
|
97913
|
+
if (result == null ? void 0 : result.isOk()) {
|
|
97737
97914
|
config = result.value;
|
|
97738
97915
|
}
|
|
97739
97916
|
}
|
|
@@ -97795,13 +97972,13 @@
|
|
|
97795
97972
|
acceptedOperations: ["mutation"]
|
|
97796
97973
|
};
|
|
97797
97974
|
const result2 = resolveAndValidateGraphQLConfig(params[0], options);
|
|
97798
|
-
if (result2
|
|
97975
|
+
if (result2 == null ? void 0 : result2.isErr()) {
|
|
97799
97976
|
return {
|
|
97800
97977
|
data: void 0,
|
|
97801
97978
|
errors: result2.error.errors
|
|
97802
97979
|
};
|
|
97803
97980
|
}
|
|
97804
|
-
if (result2
|
|
97981
|
+
if (result2 == null ? void 0 : result2.isOk()) {
|
|
97805
97982
|
params[0] = result2.value;
|
|
97806
97983
|
}
|
|
97807
97984
|
}
|
|
@@ -97827,6 +98004,11 @@
|
|
|
97827
98004
|
};
|
|
97828
98005
|
}
|
|
97829
98006
|
|
|
98007
|
+
/*!
|
|
98008
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
98009
|
+
* All rights reserved.
|
|
98010
|
+
* For full license text, see the LICENSE.txt file
|
|
98011
|
+
*/
|
|
97830
98012
|
class Sanitizer {
|
|
97831
98013
|
constructor(obj) {
|
|
97832
98014
|
this.obj = obj;
|
|
@@ -97886,7 +98068,7 @@
|
|
|
97886
98068
|
this.callback = callback;
|
|
97887
98069
|
this.connected = false;
|
|
97888
98070
|
this.exposeRefresh = false;
|
|
97889
|
-
if (!options
|
|
98071
|
+
if (!(options == null ? void 0 : options.skipEmptyEmit)) {
|
|
97890
98072
|
this.emit();
|
|
97891
98073
|
}
|
|
97892
98074
|
}
|
|
@@ -98183,6 +98365,11 @@
|
|
|
98183
98365
|
};
|
|
98184
98366
|
}
|
|
98185
98367
|
|
|
98368
|
+
/*!
|
|
98369
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
98370
|
+
* All rights reserved.
|
|
98371
|
+
* For full license text, see the LICENSE.txt file
|
|
98372
|
+
*/
|
|
98186
98373
|
function buildServiceDescriptor$1(interceptors = {
|
|
98187
98374
|
request: [],
|
|
98188
98375
|
retry: void 0,
|
|
@@ -98193,7 +98380,8 @@
|
|
|
98193
98380
|
type: "fetch",
|
|
98194
98381
|
version: "1.0",
|
|
98195
98382
|
service: function(...args) {
|
|
98196
|
-
|
|
98383
|
+
var _a;
|
|
98384
|
+
const context = (_a = interceptors.createContext) == null ? void 0 : _a.call(interceptors);
|
|
98197
98385
|
const {
|
|
98198
98386
|
request: requestInterceptors = [],
|
|
98199
98387
|
retry: retryInterceptor = void 0,
|
|
@@ -98387,6 +98575,11 @@
|
|
|
98387
98575
|
return queryParams;
|
|
98388
98576
|
}
|
|
98389
98577
|
|
|
98578
|
+
/*!
|
|
98579
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
98580
|
+
* All rights reserved.
|
|
98581
|
+
* For full license text, see the LICENSE.txt file
|
|
98582
|
+
*/
|
|
98390
98583
|
class CacheInclusionPolicyService {
|
|
98391
98584
|
}
|
|
98392
98585
|
function setDifference(setA, setB) {
|
|
@@ -98438,8 +98631,18 @@
|
|
|
98438
98631
|
};
|
|
98439
98632
|
}
|
|
98440
98633
|
function isPromiseLike$3(x) {
|
|
98441
|
-
return typeof x
|
|
98634
|
+
return typeof (x == null ? void 0 : x.then) === "function";
|
|
98442
98635
|
}
|
|
98636
|
+
/*!
|
|
98637
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
98638
|
+
* All rights reserved.
|
|
98639
|
+
* For full license text, see the LICENSE.txt file
|
|
98640
|
+
*/
|
|
98641
|
+
/*!
|
|
98642
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
98643
|
+
* All rights reserved.
|
|
98644
|
+
* For full license text, see the LICENSE.txt file
|
|
98645
|
+
*/
|
|
98443
98646
|
const { stringify: stringify$8, parse: parse$8 } = JSON;
|
|
98444
98647
|
function deepCopy(x) {
|
|
98445
98648
|
const stringified = stringify$8(x);
|
|
@@ -98463,7 +98666,7 @@
|
|
|
98463
98666
|
if (value === void 0) {
|
|
98464
98667
|
this.missingKeysRead.add(key);
|
|
98465
98668
|
}
|
|
98466
|
-
if (options
|
|
98669
|
+
if (options == null ? void 0 : options.copy) {
|
|
98467
98670
|
return deepCopy(value);
|
|
98468
98671
|
}
|
|
98469
98672
|
return value;
|
|
@@ -98507,7 +98710,7 @@
|
|
|
98507
98710
|
get(key, options) {
|
|
98508
98711
|
const result = this.baseCache.get(key);
|
|
98509
98712
|
if (result && this.predicate(key, result)) {
|
|
98510
|
-
if (options
|
|
98713
|
+
if (options == null ? void 0 : options.copy) {
|
|
98511
98714
|
return deepCopy(result);
|
|
98512
98715
|
}
|
|
98513
98716
|
return result;
|
|
@@ -98603,7 +98806,7 @@
|
|
|
98603
98806
|
this.data = {};
|
|
98604
98807
|
}
|
|
98605
98808
|
get(key, options) {
|
|
98606
|
-
if (options
|
|
98809
|
+
if (options == null ? void 0 : options.copy) {
|
|
98607
98810
|
return deepCopy(this.data[key]);
|
|
98608
98811
|
}
|
|
98609
98812
|
return this.data[key];
|
|
@@ -99225,12 +99428,17 @@
|
|
|
99225
99428
|
id: '@salesforce/lds-network-adapter',
|
|
99226
99429
|
instrument: instrument$2,
|
|
99227
99430
|
});
|
|
99228
|
-
// version: 1.
|
|
99431
|
+
// version: 1.439.0-e3dc0cfb2a
|
|
99229
99432
|
|
|
99230
99433
|
const { create: create$2, keys: keys$2 } = Object;
|
|
99231
99434
|
const { stringify, parse } = JSON;
|
|
99232
99435
|
const { isArray: isArray$3 } = Array;
|
|
99233
99436
|
|
|
99437
|
+
/*!
|
|
99438
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
99439
|
+
* All rights reserved.
|
|
99440
|
+
* For full license text, see the LICENSE.txt file
|
|
99441
|
+
*/
|
|
99234
99442
|
function extractValue(valueNode, variableDefinitions, expectedType) {
|
|
99235
99443
|
if (valueNode.kind === Kind$1.VARIABLE) {
|
|
99236
99444
|
const variableResult = extractVariableValue(valueNode.name.value, variableDefinitions);
|
|
@@ -99351,7 +99559,10 @@
|
|
|
99351
99559
|
return ok$3(operations[0]);
|
|
99352
99560
|
}
|
|
99353
99561
|
if (input.operationName) {
|
|
99354
|
-
const specifiedOperation = operations.find((op) =>
|
|
99562
|
+
const specifiedOperation = operations.find((op) => {
|
|
99563
|
+
var _a;
|
|
99564
|
+
return ((_a = op.name) == null ? void 0 : _a.value) === input.operationName;
|
|
99565
|
+
});
|
|
99355
99566
|
if (specifiedOperation) {
|
|
99356
99567
|
return ok$3(specifiedOperation);
|
|
99357
99568
|
}
|
|
@@ -99367,13 +99578,14 @@
|
|
|
99367
99578
|
const operation = operationResult.value;
|
|
99368
99579
|
const selections = operation.selectionSet.selections;
|
|
99369
99580
|
const variableDefinitions = operation.variableDefinitions;
|
|
99370
|
-
const variables = variableDefinitions
|
|
99581
|
+
const variables = (variableDefinitions == null ? void 0 : variableDefinitions.reduce((prev, def) => {
|
|
99582
|
+
var _a;
|
|
99371
99583
|
prev[def.variable.name.value] = {
|
|
99372
99584
|
definition: def,
|
|
99373
|
-
value: input.variables
|
|
99585
|
+
value: (_a = input.variables) == null ? void 0 : _a[def.variable.name.value]
|
|
99374
99586
|
};
|
|
99375
99587
|
return prev;
|
|
99376
|
-
}, {}) || {};
|
|
99588
|
+
}, {})) || {};
|
|
99377
99589
|
const fragments = input.query.definitions.filter(isFragmentDefinition).reduce((prev, fragment) => {
|
|
99378
99590
|
prev[fragment.name.value] = fragment;
|
|
99379
99591
|
return prev;
|
|
@@ -99385,10 +99597,11 @@
|
|
|
99385
99597
|
});
|
|
99386
99598
|
}
|
|
99387
99599
|
function buildAugmentedFieldSelection(newSelection, selections, fragments) {
|
|
99600
|
+
var _a;
|
|
99388
99601
|
if (selectionExists(newSelection, selections)) {
|
|
99389
99602
|
return void 0;
|
|
99390
99603
|
}
|
|
99391
|
-
const baseAlias = newSelection.alias
|
|
99604
|
+
const baseAlias = ((_a = newSelection.alias) == null ? void 0 : _a.value) || newSelection.name.value;
|
|
99392
99605
|
const baseInjectedAlias = `framework_augmented_${baseAlias}`;
|
|
99393
99606
|
const baseAliasedSelection = {
|
|
99394
99607
|
...newSelection,
|
|
@@ -99413,19 +99626,20 @@
|
|
|
99413
99626
|
return selections.some((s) => selectionEquals(selection, s));
|
|
99414
99627
|
}
|
|
99415
99628
|
function selectionEquals(a, b) {
|
|
99629
|
+
var _a, _b, _c, _d, _e, _f;
|
|
99416
99630
|
if (a.kind !== b.kind) {
|
|
99417
99631
|
return false;
|
|
99418
99632
|
}
|
|
99419
99633
|
if (a.kind === Kind$1.FIELD) {
|
|
99420
99634
|
const bField = b;
|
|
99421
|
-
return !!(a.name.value === bField.name.value) && !!(a.alias
|
|
99635
|
+
return !!(a.name.value === bField.name.value) && !!(((_a = a.alias) == null ? void 0 : _a.value) === ((_b = bField.alias) == null ? void 0 : _b.value)) && argumentsEqual(a.arguments, bField.arguments) && selectionSetsEqual((_c = a.selectionSet) == null ? void 0 : _c.selections, (_d = bField.selectionSet) == null ? void 0 : _d.selections) && directivesEqual(a.directives, bField.directives);
|
|
99422
99636
|
}
|
|
99423
99637
|
if (a.kind === Kind$1.FRAGMENT_SPREAD) {
|
|
99424
99638
|
const bFragmentSpread = b;
|
|
99425
99639
|
return a.name.value === bFragmentSpread.name.value && directivesEqual(a.directives, bFragmentSpread.directives);
|
|
99426
99640
|
}
|
|
99427
99641
|
const bInlineFragment = b;
|
|
99428
|
-
return a.typeCondition === bInlineFragment.typeCondition && directivesEqual(a.directives, bInlineFragment.directives) && selectionSetsEqual(a.selectionSet
|
|
99642
|
+
return a.typeCondition === bInlineFragment.typeCondition && directivesEqual(a.directives, bInlineFragment.directives) && selectionSetsEqual((_e = a.selectionSet) == null ? void 0 : _e.selections, (_f = bInlineFragment.selectionSet) == null ? void 0 : _f.selections);
|
|
99429
99643
|
}
|
|
99430
99644
|
function argumentValueEquals(a, b) {
|
|
99431
99645
|
if (a.kind !== b.kind) {
|
|
@@ -99468,7 +99682,7 @@
|
|
|
99468
99682
|
return true;
|
|
99469
99683
|
}
|
|
99470
99684
|
if (a === void 0 || b === void 0) {
|
|
99471
|
-
return (a
|
|
99685
|
+
return ((a == null ? void 0 : a.length) || 0) === ((b == null ? void 0 : b.length) || 0);
|
|
99472
99686
|
}
|
|
99473
99687
|
if (a.length !== b.length) {
|
|
99474
99688
|
return false;
|
|
@@ -99483,7 +99697,7 @@
|
|
|
99483
99697
|
return true;
|
|
99484
99698
|
}
|
|
99485
99699
|
if (a === void 0 || b === void 0) {
|
|
99486
|
-
return (a
|
|
99700
|
+
return ((a == null ? void 0 : a.length) || 0) === ((b == null ? void 0 : b.length) || 0);
|
|
99487
99701
|
}
|
|
99488
99702
|
if (a.length !== b.length) {
|
|
99489
99703
|
return false;
|
|
@@ -99510,10 +99724,11 @@
|
|
|
99510
99724
|
return `${fieldName}_${i}`;
|
|
99511
99725
|
}
|
|
99512
99726
|
function collectFieldNames(selections, fragments) {
|
|
99727
|
+
var _a;
|
|
99513
99728
|
const fieldNames = /* @__PURE__ */ new Set();
|
|
99514
99729
|
for (const selection of selections) {
|
|
99515
99730
|
if (isField(selection)) {
|
|
99516
|
-
fieldNames.add(selection.alias
|
|
99731
|
+
fieldNames.add(((_a = selection.alias) == null ? void 0 : _a.value) || selection.name.value);
|
|
99517
99732
|
} else if (isInlineFragment(selection)) {
|
|
99518
99733
|
collectFieldNames(
|
|
99519
99734
|
selection.selectionSet.selections,
|
|
@@ -99569,7 +99784,8 @@
|
|
|
99569
99784
|
return node.kind === Kind$1.FRAGMENT_DEFINITION;
|
|
99570
99785
|
}
|
|
99571
99786
|
function extractIfArgument(directive, variables, directiveName) {
|
|
99572
|
-
|
|
99787
|
+
var _a;
|
|
99788
|
+
const ifArg = (_a = directive.arguments) == null ? void 0 : _a.find((arg) => arg.name.value === "if");
|
|
99573
99789
|
if (!ifArg) {
|
|
99574
99790
|
return err$3(new Error(`@${directiveName} directive requires an 'if' argument`));
|
|
99575
99791
|
}
|
|
@@ -99682,7 +99898,8 @@
|
|
|
99682
99898
|
const arrayNormalizationErrors = [];
|
|
99683
99899
|
const normalizedArray = [];
|
|
99684
99900
|
input.data.forEach((item, index) => {
|
|
99685
|
-
|
|
99901
|
+
var _a;
|
|
99902
|
+
const existingItemData = (_a = input.existingNormalizedData) == null ? void 0 : _a[index];
|
|
99686
99903
|
const normalizedItemResult = this.items.write(cache, {
|
|
99687
99904
|
...input,
|
|
99688
99905
|
data: item,
|
|
@@ -99762,6 +99979,7 @@
|
|
|
99762
99979
|
return this.repository.buildFieldKey(selection, variables);
|
|
99763
99980
|
}
|
|
99764
99981
|
write(cache, input) {
|
|
99982
|
+
var _a;
|
|
99765
99983
|
if (!input.selection.selectionSet) {
|
|
99766
99984
|
return err$3([
|
|
99767
99985
|
{
|
|
@@ -99791,7 +100009,7 @@
|
|
|
99791
100009
|
const writeResult = this.repository.write(cache, {
|
|
99792
100010
|
...input,
|
|
99793
100011
|
data: input.data,
|
|
99794
|
-
existingNormalizedData: input.existingNormalizedData
|
|
100012
|
+
existingNormalizedData: (_a = input.existingNormalizedData) == null ? void 0 : _a.data,
|
|
99795
100013
|
request: input.request,
|
|
99796
100014
|
selections: input.selection.selectionSet.selections,
|
|
99797
100015
|
parentFieldSelection: input.selection
|
|
@@ -99802,6 +100020,7 @@
|
|
|
99802
100020
|
return ok$3({ type: "data", data: writeResult.value });
|
|
99803
100021
|
}
|
|
99804
100022
|
read(cache, input) {
|
|
100023
|
+
var _a;
|
|
99805
100024
|
if (!input.selection.selectionSet) {
|
|
99806
100025
|
return err$3([
|
|
99807
100026
|
{
|
|
@@ -99833,7 +100052,7 @@
|
|
|
99833
100052
|
...input,
|
|
99834
100053
|
normalizedData: normalizedData.data,
|
|
99835
100054
|
request: input.request,
|
|
99836
|
-
selections: input.selection.selectionSet
|
|
100055
|
+
selections: (_a = input.selection.selectionSet) == null ? void 0 : _a.selections,
|
|
99837
100056
|
parentFieldSelection: input.selection
|
|
99838
100057
|
});
|
|
99839
100058
|
}
|
|
@@ -99884,12 +100103,13 @@
|
|
|
99884
100103
|
return { selections: augmentedSelections, fragments: augmentedFragments };
|
|
99885
100104
|
}
|
|
99886
100105
|
augmentFieldSelection(selection, fragments) {
|
|
100106
|
+
var _a;
|
|
99887
100107
|
const field = this.getFieldDef(void 0, selection);
|
|
99888
100108
|
if (field === void 0) {
|
|
99889
100109
|
return { selections: [selection], fragments };
|
|
99890
100110
|
}
|
|
99891
100111
|
const result = field.augmentSelections({
|
|
99892
|
-
selections: selection.selectionSet
|
|
100112
|
+
selections: ((_a = selection.selectionSet) == null ? void 0 : _a.selections) || [],
|
|
99893
100113
|
fragments
|
|
99894
100114
|
});
|
|
99895
100115
|
return {
|
|
@@ -99906,6 +100126,7 @@
|
|
|
99906
100126
|
};
|
|
99907
100127
|
}
|
|
99908
100128
|
augmentInlineFragmentSelection(fragment, fragments) {
|
|
100129
|
+
var _a;
|
|
99909
100130
|
const satisfiedFragmentTypeConditionResult = this.satisfiesFragmentTypeCondition(
|
|
99910
100131
|
void 0,
|
|
99911
100132
|
fragment
|
|
@@ -99914,7 +100135,7 @@
|
|
|
99914
100135
|
return { selections: [], fragments };
|
|
99915
100136
|
}
|
|
99916
100137
|
const augmentedFragmentSelections = this.augmentSelections({
|
|
99917
|
-
selections: fragment.selectionSet
|
|
100138
|
+
selections: ((_a = fragment.selectionSet) == null ? void 0 : _a.selections) || [],
|
|
99918
100139
|
fragments
|
|
99919
100140
|
});
|
|
99920
100141
|
return {
|
|
@@ -99931,6 +100152,7 @@
|
|
|
99931
100152
|
};
|
|
99932
100153
|
}
|
|
99933
100154
|
augmentFragmentSpreadSelection(selection, fragments) {
|
|
100155
|
+
var _a;
|
|
99934
100156
|
const fragment = fragments[selection.name.value];
|
|
99935
100157
|
if (fragment === void 0) {
|
|
99936
100158
|
return { selections: [selection], fragments };
|
|
@@ -99943,7 +100165,7 @@
|
|
|
99943
100165
|
return { selections: [selection], fragments };
|
|
99944
100166
|
}
|
|
99945
100167
|
const augmentedFragment = this.augmentSelections({
|
|
99946
|
-
selections: fragment.selectionSet
|
|
100168
|
+
selections: ((_a = fragment.selectionSet) == null ? void 0 : _a.selections) || [],
|
|
99947
100169
|
fragments
|
|
99948
100170
|
});
|
|
99949
100171
|
return {
|
|
@@ -99992,8 +100214,9 @@
|
|
|
99992
100214
|
return buildReadWriteResult(normalized, errors);
|
|
99993
100215
|
}
|
|
99994
100216
|
normalizeFieldSelection(cache, input, selection, errorCollector) {
|
|
100217
|
+
var _a;
|
|
99995
100218
|
const canonicalFieldName = selection.name.value;
|
|
99996
|
-
const dataInstanceFieldName = selection.alias
|
|
100219
|
+
const dataInstanceFieldName = ((_a = selection.alias) == null ? void 0 : _a.value) ?? selection.name.value;
|
|
99997
100220
|
const value = input.data[dataInstanceFieldName];
|
|
99998
100221
|
const fieldDef = this.getFieldDef(input, selection);
|
|
99999
100222
|
if (!fieldDef) {
|
|
@@ -100103,6 +100326,7 @@
|
|
|
100103
100326
|
return buildReadWriteResult(denormalized, errors);
|
|
100104
100327
|
}
|
|
100105
100328
|
getNormalizedFieldData(selection, input) {
|
|
100329
|
+
var _a;
|
|
100106
100330
|
const fieldDef = this.getFieldDef(input, selection);
|
|
100107
100331
|
if (!fieldDef) {
|
|
100108
100332
|
return err$3(
|
|
@@ -100119,9 +100343,10 @@
|
|
|
100119
100343
|
return err$3(cacheFieldKeyResult.error);
|
|
100120
100344
|
}
|
|
100121
100345
|
const cacheFieldKey = cacheFieldKeyResult.value;
|
|
100122
|
-
return ok$3((input.existingNormalizedData || input.normalizedData)
|
|
100346
|
+
return ok$3((_a = input.existingNormalizedData || input.normalizedData) == null ? void 0 : _a[cacheFieldKey]);
|
|
100123
100347
|
}
|
|
100124
100348
|
denormalizeFieldSelection(cache, input, selection, errorCollector) {
|
|
100349
|
+
var _a;
|
|
100125
100350
|
const canonicalFieldName = selection.name.value;
|
|
100126
100351
|
const fieldDef = this.getFieldDef(input, selection);
|
|
100127
100352
|
if (!fieldDef) {
|
|
@@ -100133,7 +100358,7 @@
|
|
|
100133
100358
|
});
|
|
100134
100359
|
return {};
|
|
100135
100360
|
}
|
|
100136
|
-
const dataInstanceFieldName = selection.alias
|
|
100361
|
+
const dataInstanceFieldName = ((_a = selection.alias) == null ? void 0 : _a.value) ?? selection.name.value;
|
|
100137
100362
|
const normalizedFieldDataResult = this.getNormalizedFieldData(selection, input);
|
|
100138
100363
|
if (normalizedFieldDataResult.isErr()) {
|
|
100139
100364
|
errorCollector.push({
|
|
@@ -100201,18 +100426,19 @@
|
|
|
100201
100426
|
return {};
|
|
100202
100427
|
}
|
|
100203
100428
|
getFieldDef(input, selection) {
|
|
100429
|
+
var _a, _b, _c;
|
|
100204
100430
|
const canonicalFieldName = selection.name.value;
|
|
100205
100431
|
const fieldDef = this.fields[canonicalFieldName];
|
|
100206
100432
|
if (fieldDef) {
|
|
100207
100433
|
return fieldDef;
|
|
100208
100434
|
}
|
|
100209
|
-
const dataInstanceFieldName = selection.alias
|
|
100435
|
+
const dataInstanceFieldName = ((_a = selection.alias) == null ? void 0 : _a.value) ?? selection.name.value;
|
|
100210
100436
|
if (input === void 0) {
|
|
100211
100437
|
return void 0;
|
|
100212
100438
|
}
|
|
100213
100439
|
if ("data" in input && input.data[dataInstanceFieldName] === void 0) {
|
|
100214
100440
|
return missingFieldDef;
|
|
100215
|
-
} else if ("normalizedData" in input && input.normalizedData
|
|
100441
|
+
} else if ("normalizedData" in input && ((_c = (_b = input.normalizedData) == null ? void 0 : _b[dataInstanceFieldName]) == null ? void 0 : _c.type) === "missing") {
|
|
100216
100442
|
return missingFieldDef;
|
|
100217
100443
|
}
|
|
100218
100444
|
return void 0;
|
|
@@ -100300,7 +100526,7 @@
|
|
|
100300
100526
|
return err$3(normalized.error);
|
|
100301
100527
|
}
|
|
100302
100528
|
const existing = cache.get(key);
|
|
100303
|
-
if (!deepEquals$2(existing
|
|
100529
|
+
if (!deepEquals$2(existing == null ? void 0 : existing.value, normalized.value)) {
|
|
100304
100530
|
cache.set(key, {
|
|
100305
100531
|
value: normalized.value,
|
|
100306
100532
|
metadata: this.cacheMetadata
|
|
@@ -100316,7 +100542,7 @@
|
|
|
100316
100542
|
const existingNormalizedData = cache.get(key, { copy: true });
|
|
100317
100543
|
const normalizeDataResult = this.graphqlRepository.normalizeSelections(cache, {
|
|
100318
100544
|
...input,
|
|
100319
|
-
existingNormalizedData: existingNormalizedData
|
|
100545
|
+
existingNormalizedData: existingNormalizedData == null ? void 0 : existingNormalizedData.value
|
|
100320
100546
|
});
|
|
100321
100547
|
if (normalizeDataResult.isErr()) {
|
|
100322
100548
|
return normalizeDataResult;
|
|
@@ -100324,7 +100550,7 @@
|
|
|
100324
100550
|
return ok$3(
|
|
100325
100551
|
deepMerge$2(
|
|
100326
100552
|
{},
|
|
100327
|
-
existingNormalizedData
|
|
100553
|
+
(existingNormalizedData == null ? void 0 : existingNormalizedData.value) || {},
|
|
100328
100554
|
normalizeDataResult.value
|
|
100329
100555
|
)
|
|
100330
100556
|
);
|
|
@@ -100339,13 +100565,14 @@
|
|
|
100339
100565
|
return this.graphqlRepository.buildFieldKey(selection, variables);
|
|
100340
100566
|
}
|
|
100341
100567
|
buildKeyParams(input) {
|
|
100568
|
+
var _a;
|
|
100342
100569
|
const idField = input.selections.find(
|
|
100343
100570
|
(selection) => selection.kind === Kind$1.FIELD && selection.name.value === this.idField
|
|
100344
100571
|
);
|
|
100345
100572
|
if (!idField) {
|
|
100346
100573
|
throw new Error(`Id field ${this.idField} not found in selections`);
|
|
100347
100574
|
}
|
|
100348
|
-
const idFieldDataProperty = idField.alias
|
|
100575
|
+
const idFieldDataProperty = ((_a = idField.alias) == null ? void 0 : _a.value) || idField.name.value;
|
|
100349
100576
|
return {
|
|
100350
100577
|
[this.idField]: input.data[idFieldDataProperty]
|
|
100351
100578
|
};
|
|
@@ -100395,6 +100622,7 @@
|
|
|
100395
100622
|
});
|
|
100396
100623
|
}
|
|
100397
100624
|
buildAugmentedQuery(input) {
|
|
100625
|
+
var _a;
|
|
100398
100626
|
const operationResult = findExecutableOperation(input);
|
|
100399
100627
|
if (operationResult.isErr()) {
|
|
100400
100628
|
return err$3(operationResult.error);
|
|
@@ -100411,7 +100639,7 @@
|
|
|
100411
100639
|
{}
|
|
100412
100640
|
);
|
|
100413
100641
|
const result = this.augmentSelections({
|
|
100414
|
-
selections: operationResult.value.selectionSet
|
|
100642
|
+
selections: ((_a = operationResult.value.selectionSet) == null ? void 0 : _a.selections) || [],
|
|
100415
100643
|
fragments
|
|
100416
100644
|
});
|
|
100417
100645
|
const augmentedOperationSelections = result.selections;
|
|
@@ -100532,11 +100760,12 @@
|
|
|
100532
100760
|
const augmentedSelections = [];
|
|
100533
100761
|
let augmentedFragments = { ...input.fragments };
|
|
100534
100762
|
input.selections.forEach((selection) => {
|
|
100763
|
+
var _a;
|
|
100535
100764
|
if (selection.kind === Kind$1.FIELD) {
|
|
100536
100765
|
if (Object.keys(this.fields).includes(selection.name.value)) {
|
|
100537
100766
|
const field = this.fields[selection.name.value];
|
|
100538
100767
|
const result2 = field.augmentSelections({
|
|
100539
|
-
selections: selection.selectionSet
|
|
100768
|
+
selections: ((_a = selection.selectionSet) == null ? void 0 : _a.selections) || [],
|
|
100540
100769
|
fragments: input.fragments
|
|
100541
100770
|
});
|
|
100542
100771
|
augmentedSelections.push({
|
|
@@ -100569,11 +100798,12 @@
|
|
|
100569
100798
|
return { selections: augmentedSelections, fragments: augmentedFragments };
|
|
100570
100799
|
}
|
|
100571
100800
|
getTypeDiscriminator(data, selections) {
|
|
100801
|
+
var _a;
|
|
100572
100802
|
const typenameSelection = selections.find(
|
|
100573
100803
|
(selection) => selection.kind === Kind$1.FIELD && selection.name.value === "__typename"
|
|
100574
100804
|
);
|
|
100575
100805
|
if (typenameSelection) {
|
|
100576
|
-
return data[typenameSelection.alias
|
|
100806
|
+
return data[((_a = typenameSelection.alias) == null ? void 0 : _a.value) || typenameSelection.name.value];
|
|
100577
100807
|
} else {
|
|
100578
100808
|
return data.__typename;
|
|
100579
100809
|
}
|
|
@@ -100715,11 +100945,12 @@
|
|
|
100715
100945
|
return { selections: augmentedSelections, fragments: augmentedFragments };
|
|
100716
100946
|
}
|
|
100717
100947
|
getTypeDiscriminator(data, selections) {
|
|
100948
|
+
var _a;
|
|
100718
100949
|
const typenameSelection = selections.find(
|
|
100719
100950
|
(selection) => selection.kind === Kind$1.FIELD && selection.name.value === "__typename"
|
|
100720
100951
|
);
|
|
100721
100952
|
if (typenameSelection) {
|
|
100722
|
-
return data[typenameSelection.alias
|
|
100953
|
+
return data[((_a = typenameSelection.alias) == null ? void 0 : _a.value) || typenameSelection.name.value];
|
|
100723
100954
|
} else {
|
|
100724
100955
|
return data.__typename;
|
|
100725
100956
|
}
|
|
@@ -101214,6 +101445,11 @@
|
|
|
101214
101445
|
*/
|
|
101215
101446
|
|
|
101216
101447
|
|
|
101448
|
+
/*!
|
|
101449
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
101450
|
+
* All rights reserved.
|
|
101451
|
+
* For full license text, see the LICENSE.txt file
|
|
101452
|
+
*/
|
|
101217
101453
|
const { hasOwnProperty: hasOwnProperty$1 } = Object.prototype;
|
|
101218
101454
|
class Ok {
|
|
101219
101455
|
constructor(value) {
|
|
@@ -101274,7 +101510,7 @@
|
|
|
101274
101510
|
};
|
|
101275
101511
|
}
|
|
101276
101512
|
function isPromiseLike(x) {
|
|
101277
|
-
return typeof x
|
|
101513
|
+
return typeof (x == null ? void 0 : x.then) === "function";
|
|
101278
101514
|
}
|
|
101279
101515
|
class InternalError extends Error {
|
|
101280
101516
|
constructor(data) {
|
|
@@ -101293,10 +101529,11 @@
|
|
|
101293
101529
|
class Analytics__AnalyticsBrowseRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101294
101530
|
constructor(services, typeRegistry) {
|
|
101295
101531
|
super(services);
|
|
101532
|
+
this.services = services;
|
|
101533
|
+
this.typeRegistry = typeRegistry;
|
|
101296
101534
|
this.namespace = "oas";
|
|
101297
101535
|
this.typeName = "Analytics__AnalyticsBrowse";
|
|
101298
101536
|
this.implementedInterfaces = [];
|
|
101299
|
-
this.typeRegistry = typeRegistry;
|
|
101300
101537
|
}
|
|
101301
101538
|
get fields() {
|
|
101302
101539
|
return {
|
|
@@ -101312,10 +101549,11 @@
|
|
|
101312
101549
|
class Analytics__AnalyticsEdgeRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101313
101550
|
constructor(services, typeRegistry) {
|
|
101314
101551
|
super(services);
|
|
101552
|
+
this.services = services;
|
|
101553
|
+
this.typeRegistry = typeRegistry;
|
|
101315
101554
|
this.namespace = "oas";
|
|
101316
101555
|
this.typeName = "Analytics__AnalyticsEdge";
|
|
101317
101556
|
this.implementedInterfaces = [];
|
|
101318
|
-
this.typeRegistry = typeRegistry;
|
|
101319
101557
|
}
|
|
101320
101558
|
get fields() {
|
|
101321
101559
|
return {
|
|
@@ -101329,10 +101567,11 @@
|
|
|
101329
101567
|
class Analytics__AnalyticsRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101330
101568
|
constructor(services, typeRegistry) {
|
|
101331
101569
|
super(services);
|
|
101570
|
+
this.services = services;
|
|
101571
|
+
this.typeRegistry = typeRegistry;
|
|
101332
101572
|
this.namespace = "oas";
|
|
101333
101573
|
this.typeName = "Analytics__Analytics";
|
|
101334
101574
|
this.implementedInterfaces = [];
|
|
101335
|
-
this.typeRegistry = typeRegistry;
|
|
101336
101575
|
}
|
|
101337
101576
|
get fields() {
|
|
101338
101577
|
return {
|
|
@@ -101345,10 +101584,11 @@
|
|
|
101345
101584
|
class Analytics__AnalyticsRepresentationInterfaceRepository extends BaseInterfaceRepository {
|
|
101346
101585
|
constructor(services, typeRegistry) {
|
|
101347
101586
|
super(services);
|
|
101587
|
+
this.services = services;
|
|
101588
|
+
this.typeRegistry = typeRegistry;
|
|
101348
101589
|
this.namespace = "oas";
|
|
101349
101590
|
this.typeName = "Analytics__AnalyticsRepresentationInterface";
|
|
101350
101591
|
this.implementedInterfaces = [];
|
|
101351
|
-
this.typeRegistry = typeRegistry;
|
|
101352
101592
|
}
|
|
101353
101593
|
get fields() {
|
|
101354
101594
|
return {
|
|
@@ -101384,11 +101624,12 @@
|
|
|
101384
101624
|
class Analytics__AnalyticsRepresentationRepository extends IdentifiableGraphQLTypeRepository {
|
|
101385
101625
|
constructor(services, typeRegistry) {
|
|
101386
101626
|
super(services);
|
|
101627
|
+
this.services = services;
|
|
101628
|
+
this.typeRegistry = typeRegistry;
|
|
101387
101629
|
this.namespace = "oas";
|
|
101388
101630
|
this.typeName = "Analytics__AnalyticsRepresentation";
|
|
101389
101631
|
this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
|
|
101390
101632
|
this.idField = "Id";
|
|
101391
|
-
this.typeRegistry = typeRegistry;
|
|
101392
101633
|
}
|
|
101393
101634
|
get fields() {
|
|
101394
101635
|
return {
|
|
@@ -101418,10 +101659,11 @@
|
|
|
101418
101659
|
class Analytics__AnalyticsWorkspaceAssetConnectionRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101419
101660
|
constructor(services, typeRegistry) {
|
|
101420
101661
|
super(services);
|
|
101662
|
+
this.services = services;
|
|
101663
|
+
this.typeRegistry = typeRegistry;
|
|
101421
101664
|
this.namespace = "oas";
|
|
101422
101665
|
this.typeName = "Analytics__AnalyticsWorkspaceAssetConnection";
|
|
101423
101666
|
this.implementedInterfaces = [];
|
|
101424
|
-
this.typeRegistry = typeRegistry;
|
|
101425
101667
|
}
|
|
101426
101668
|
get fields() {
|
|
101427
101669
|
return {
|
|
@@ -101437,10 +101679,11 @@
|
|
|
101437
101679
|
class Analytics__AnalyticsWorkspaceAssetEdgeRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101438
101680
|
constructor(services, typeRegistry) {
|
|
101439
101681
|
super(services);
|
|
101682
|
+
this.services = services;
|
|
101683
|
+
this.typeRegistry = typeRegistry;
|
|
101440
101684
|
this.namespace = "oas";
|
|
101441
101685
|
this.typeName = "Analytics__AnalyticsWorkspaceAssetEdge";
|
|
101442
101686
|
this.implementedInterfaces = [];
|
|
101443
|
-
this.typeRegistry = typeRegistry;
|
|
101444
101687
|
}
|
|
101445
101688
|
get fields() {
|
|
101446
101689
|
return {
|
|
@@ -101454,10 +101697,11 @@
|
|
|
101454
101697
|
class Analytics__AnalyticsWorkspaceAssetRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101455
101698
|
constructor(services, typeRegistry) {
|
|
101456
101699
|
super(services);
|
|
101700
|
+
this.services = services;
|
|
101701
|
+
this.typeRegistry = typeRegistry;
|
|
101457
101702
|
this.namespace = "oas";
|
|
101458
101703
|
this.typeName = "Analytics__AnalyticsWorkspaceAsset";
|
|
101459
101704
|
this.implementedInterfaces = [];
|
|
101460
|
-
this.typeRegistry = typeRegistry;
|
|
101461
101705
|
}
|
|
101462
101706
|
get fields() {
|
|
101463
101707
|
return {
|
|
@@ -101474,11 +101718,12 @@
|
|
|
101474
101718
|
class Analytics__AnalyticsWorkspaceRepository extends IdentifiableGraphQLTypeRepository {
|
|
101475
101719
|
constructor(services, typeRegistry) {
|
|
101476
101720
|
super(services);
|
|
101721
|
+
this.services = services;
|
|
101722
|
+
this.typeRegistry = typeRegistry;
|
|
101477
101723
|
this.namespace = "oas";
|
|
101478
101724
|
this.typeName = "Analytics__AnalyticsWorkspace";
|
|
101479
101725
|
this.implementedInterfaces = [];
|
|
101480
101726
|
this.idField = "Id";
|
|
101481
|
-
this.typeRegistry = typeRegistry;
|
|
101482
101727
|
}
|
|
101483
101728
|
get fields() {
|
|
101484
101729
|
return {
|
|
@@ -101502,11 +101747,12 @@
|
|
|
101502
101747
|
class Analytics__DataspaceRepresentationRepository extends IdentifiableGraphQLTypeRepository {
|
|
101503
101748
|
constructor(services, typeRegistry) {
|
|
101504
101749
|
super(services);
|
|
101750
|
+
this.services = services;
|
|
101751
|
+
this.typeRegistry = typeRegistry;
|
|
101505
101752
|
this.namespace = "oas";
|
|
101506
101753
|
this.typeName = "Analytics__DataspaceRepresentation";
|
|
101507
101754
|
this.implementedInterfaces = [];
|
|
101508
101755
|
this.idField = "Id";
|
|
101509
|
-
this.typeRegistry = typeRegistry;
|
|
101510
101756
|
}
|
|
101511
101757
|
get fields() {
|
|
101512
101758
|
return {
|
|
@@ -101525,11 +101771,12 @@
|
|
|
101525
101771
|
class Analytics__DominoTemplateRepository extends IdentifiableGraphQLTypeRepository {
|
|
101526
101772
|
constructor(services, typeRegistry) {
|
|
101527
101773
|
super(services);
|
|
101774
|
+
this.services = services;
|
|
101775
|
+
this.typeRegistry = typeRegistry;
|
|
101528
101776
|
this.namespace = "oas";
|
|
101529
101777
|
this.typeName = "Analytics__DominoTemplate";
|
|
101530
101778
|
this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
|
|
101531
101779
|
this.idField = "Id";
|
|
101532
|
-
this.typeRegistry = typeRegistry;
|
|
101533
101780
|
}
|
|
101534
101781
|
get fields() {
|
|
101535
101782
|
return {
|
|
@@ -101561,11 +101808,12 @@
|
|
|
101561
101808
|
class Analytics__MktDataConnectorRepository extends IdentifiableGraphQLTypeRepository {
|
|
101562
101809
|
constructor(services, typeRegistry) {
|
|
101563
101810
|
super(services);
|
|
101811
|
+
this.services = services;
|
|
101812
|
+
this.typeRegistry = typeRegistry;
|
|
101564
101813
|
this.namespace = "oas";
|
|
101565
101814
|
this.typeName = "Analytics__MktDataConnector";
|
|
101566
101815
|
this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
|
|
101567
101816
|
this.idField = "Id";
|
|
101568
|
-
this.typeRegistry = typeRegistry;
|
|
101569
101817
|
}
|
|
101570
101818
|
get fields() {
|
|
101571
101819
|
return {
|
|
@@ -101596,11 +101844,12 @@
|
|
|
101596
101844
|
class Analytics__SemanticDefinitionRepository extends IdentifiableGraphQLTypeRepository {
|
|
101597
101845
|
constructor(services, typeRegistry) {
|
|
101598
101846
|
super(services);
|
|
101847
|
+
this.services = services;
|
|
101848
|
+
this.typeRegistry = typeRegistry;
|
|
101599
101849
|
this.namespace = "oas";
|
|
101600
101850
|
this.typeName = "Analytics__SemanticDefinition";
|
|
101601
101851
|
this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
|
|
101602
101852
|
this.idField = "Id";
|
|
101603
|
-
this.typeRegistry = typeRegistry;
|
|
101604
101853
|
}
|
|
101605
101854
|
get fields() {
|
|
101606
101855
|
return {
|
|
@@ -101633,10 +101882,11 @@
|
|
|
101633
101882
|
class Analytics__SemanticModelRelatedModelConnectionRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101634
101883
|
constructor(services, typeRegistry) {
|
|
101635
101884
|
super(services);
|
|
101885
|
+
this.services = services;
|
|
101886
|
+
this.typeRegistry = typeRegistry;
|
|
101636
101887
|
this.namespace = "oas";
|
|
101637
101888
|
this.typeName = "Analytics__SemanticModelRelatedModelConnection";
|
|
101638
101889
|
this.implementedInterfaces = [];
|
|
101639
|
-
this.typeRegistry = typeRegistry;
|
|
101640
101890
|
}
|
|
101641
101891
|
get fields() {
|
|
101642
101892
|
return {
|
|
@@ -101652,10 +101902,11 @@
|
|
|
101652
101902
|
class Analytics__SemanticModelRelatedModelEdgeRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101653
101903
|
constructor(services, typeRegistry) {
|
|
101654
101904
|
super(services);
|
|
101905
|
+
this.services = services;
|
|
101906
|
+
this.typeRegistry = typeRegistry;
|
|
101655
101907
|
this.namespace = "oas";
|
|
101656
101908
|
this.typeName = "Analytics__SemanticModelRelatedModelEdge";
|
|
101657
101909
|
this.implementedInterfaces = [];
|
|
101658
|
-
this.typeRegistry = typeRegistry;
|
|
101659
101910
|
}
|
|
101660
101911
|
get fields() {
|
|
101661
101912
|
return {
|
|
@@ -101669,11 +101920,12 @@
|
|
|
101669
101920
|
class Analytics__SemanticModelRelatedModelRepresentationRepository extends IdentifiableGraphQLTypeRepository {
|
|
101670
101921
|
constructor(services, typeRegistry) {
|
|
101671
101922
|
super(services);
|
|
101923
|
+
this.services = services;
|
|
101924
|
+
this.typeRegistry = typeRegistry;
|
|
101672
101925
|
this.namespace = "oas";
|
|
101673
101926
|
this.typeName = "Analytics__SemanticModelRelatedModelRepresentation";
|
|
101674
101927
|
this.implementedInterfaces = [];
|
|
101675
101928
|
this.idField = "Id";
|
|
101676
|
-
this.typeRegistry = typeRegistry;
|
|
101677
101929
|
}
|
|
101678
101930
|
get fields() {
|
|
101679
101931
|
return {
|
|
@@ -101692,11 +101944,12 @@
|
|
|
101692
101944
|
class Analytics__SemanticModelRepository extends IdentifiableGraphQLTypeRepository {
|
|
101693
101945
|
constructor(services, typeRegistry) {
|
|
101694
101946
|
super(services);
|
|
101947
|
+
this.services = services;
|
|
101948
|
+
this.typeRegistry = typeRegistry;
|
|
101695
101949
|
this.namespace = "oas";
|
|
101696
101950
|
this.typeName = "Analytics__SemanticModel";
|
|
101697
101951
|
this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
|
|
101698
101952
|
this.idField = "Id";
|
|
101699
|
-
this.typeRegistry = typeRegistry;
|
|
101700
101953
|
}
|
|
101701
101954
|
get fields() {
|
|
101702
101955
|
return {
|
|
@@ -101727,10 +101980,11 @@
|
|
|
101727
101980
|
class Analytics__SemanticSubMetricDefinitionConnectionRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101728
101981
|
constructor(services, typeRegistry) {
|
|
101729
101982
|
super(services);
|
|
101983
|
+
this.services = services;
|
|
101984
|
+
this.typeRegistry = typeRegistry;
|
|
101730
101985
|
this.namespace = "oas";
|
|
101731
101986
|
this.typeName = "Analytics__SemanticSubMetricDefinitionConnection";
|
|
101732
101987
|
this.implementedInterfaces = [];
|
|
101733
|
-
this.typeRegistry = typeRegistry;
|
|
101734
101988
|
}
|
|
101735
101989
|
get fields() {
|
|
101736
101990
|
return {
|
|
@@ -101746,10 +102000,11 @@
|
|
|
101746
102000
|
class Analytics__SemanticSubMetricDefinitionEdgeRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101747
102001
|
constructor(services, typeRegistry) {
|
|
101748
102002
|
super(services);
|
|
102003
|
+
this.services = services;
|
|
102004
|
+
this.typeRegistry = typeRegistry;
|
|
101749
102005
|
this.namespace = "oas";
|
|
101750
102006
|
this.typeName = "Analytics__SemanticSubMetricDefinitionEdge";
|
|
101751
102007
|
this.implementedInterfaces = [];
|
|
101752
|
-
this.typeRegistry = typeRegistry;
|
|
101753
102008
|
}
|
|
101754
102009
|
get fields() {
|
|
101755
102010
|
return {
|
|
@@ -101763,11 +102018,12 @@
|
|
|
101763
102018
|
class Analytics__SemanticSubMetricDefinitionRepresentationRepository extends IdentifiableGraphQLTypeRepository {
|
|
101764
102019
|
constructor(services, typeRegistry) {
|
|
101765
102020
|
super(services);
|
|
102021
|
+
this.services = services;
|
|
102022
|
+
this.typeRegistry = typeRegistry;
|
|
101766
102023
|
this.namespace = "oas";
|
|
101767
102024
|
this.typeName = "Analytics__SemanticSubMetricDefinitionRepresentation";
|
|
101768
102025
|
this.implementedInterfaces = [];
|
|
101769
102026
|
this.idField = "Id";
|
|
101770
|
-
this.typeRegistry = typeRegistry;
|
|
101771
102027
|
}
|
|
101772
102028
|
get fields() {
|
|
101773
102029
|
return {
|
|
@@ -101793,10 +102049,11 @@
|
|
|
101793
102049
|
class AnyTypeRepository extends BaseUnionRepository {
|
|
101794
102050
|
constructor(services, typeRegistry) {
|
|
101795
102051
|
super(services);
|
|
102052
|
+
this.services = services;
|
|
102053
|
+
this.typeRegistry = typeRegistry;
|
|
101796
102054
|
this.namespace = "oas";
|
|
101797
102055
|
this.typeName = "AnyType";
|
|
101798
102056
|
this.implementedInterfaces = [];
|
|
101799
|
-
this.typeRegistry = typeRegistry;
|
|
101800
102057
|
}
|
|
101801
102058
|
get fields() {
|
|
101802
102059
|
return {
|
|
@@ -101817,10 +102074,11 @@
|
|
|
101817
102074
|
class Base64ValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101818
102075
|
constructor(services, typeRegistry) {
|
|
101819
102076
|
super(services);
|
|
102077
|
+
this.services = services;
|
|
102078
|
+
this.typeRegistry = typeRegistry;
|
|
101820
102079
|
this.namespace = "oas";
|
|
101821
102080
|
this.typeName = "Base64Value";
|
|
101822
102081
|
this.implementedInterfaces = ["FieldValue"];
|
|
101823
|
-
this.typeRegistry = typeRegistry;
|
|
101824
102082
|
}
|
|
101825
102083
|
get fields() {
|
|
101826
102084
|
return {
|
|
@@ -101834,10 +102092,11 @@
|
|
|
101834
102092
|
class BooleanAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101835
102093
|
constructor(services, typeRegistry) {
|
|
101836
102094
|
super(services);
|
|
102095
|
+
this.services = services;
|
|
102096
|
+
this.typeRegistry = typeRegistry;
|
|
101837
102097
|
this.namespace = "oas";
|
|
101838
102098
|
this.typeName = "BooleanAggregate";
|
|
101839
102099
|
this.implementedInterfaces = ["FieldValue"];
|
|
101840
|
-
this.typeRegistry = typeRegistry;
|
|
101841
102100
|
}
|
|
101842
102101
|
get fields() {
|
|
101843
102102
|
return {
|
|
@@ -101852,10 +102111,11 @@
|
|
|
101852
102111
|
class BooleanValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101853
102112
|
constructor(services, typeRegistry) {
|
|
101854
102113
|
super(services);
|
|
102114
|
+
this.services = services;
|
|
102115
|
+
this.typeRegistry = typeRegistry;
|
|
101855
102116
|
this.namespace = "oas";
|
|
101856
102117
|
this.typeName = "BooleanValue";
|
|
101857
102118
|
this.implementedInterfaces = ["FieldValue"];
|
|
101858
|
-
this.typeRegistry = typeRegistry;
|
|
101859
102119
|
}
|
|
101860
102120
|
get fields() {
|
|
101861
102121
|
return {
|
|
@@ -101869,10 +102129,11 @@
|
|
|
101869
102129
|
class CanvasLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101870
102130
|
constructor(services, typeRegistry) {
|
|
101871
102131
|
super(services);
|
|
102132
|
+
this.services = services;
|
|
102133
|
+
this.typeRegistry = typeRegistry;
|
|
101872
102134
|
this.namespace = "oas";
|
|
101873
102135
|
this.typeName = "CanvasLayoutComponent";
|
|
101874
102136
|
this.implementedInterfaces = ["LayoutComponent"];
|
|
101875
|
-
this.typeRegistry = typeRegistry;
|
|
101876
102137
|
}
|
|
101877
102138
|
get fields() {
|
|
101878
102139
|
return {
|
|
@@ -101891,10 +102152,11 @@
|
|
|
101891
102152
|
class ChildRelationshipRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101892
102153
|
constructor(services, typeRegistry) {
|
|
101893
102154
|
super(services);
|
|
102155
|
+
this.services = services;
|
|
102156
|
+
this.typeRegistry = typeRegistry;
|
|
101894
102157
|
this.namespace = "oas";
|
|
101895
102158
|
this.typeName = "ChildRelationship";
|
|
101896
102159
|
this.implementedInterfaces = [];
|
|
101897
|
-
this.typeRegistry = typeRegistry;
|
|
101898
102160
|
}
|
|
101899
102161
|
get fields() {
|
|
101900
102162
|
return {
|
|
@@ -101912,10 +102174,11 @@
|
|
|
101912
102174
|
let CompoundFieldRepository$1 = class CompoundFieldRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101913
102175
|
constructor(services, typeRegistry) {
|
|
101914
102176
|
super(services);
|
|
102177
|
+
this.services = services;
|
|
102178
|
+
this.typeRegistry = typeRegistry;
|
|
101915
102179
|
this.namespace = "oas";
|
|
101916
102180
|
this.typeName = "CompoundField";
|
|
101917
102181
|
this.implementedInterfaces = [];
|
|
101918
|
-
this.typeRegistry = typeRegistry;
|
|
101919
102182
|
}
|
|
101920
102183
|
get fields() {
|
|
101921
102184
|
return {
|
|
@@ -101951,10 +102214,11 @@
|
|
|
101951
102214
|
class ControllerValuesRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101952
102215
|
constructor(services, typeRegistry) {
|
|
101953
102216
|
super(services);
|
|
102217
|
+
this.services = services;
|
|
102218
|
+
this.typeRegistry = typeRegistry;
|
|
101954
102219
|
this.namespace = "oas";
|
|
101955
102220
|
this.typeName = "ControllerValues";
|
|
101956
102221
|
this.implementedInterfaces = [];
|
|
101957
|
-
this.typeRegistry = typeRegistry;
|
|
101958
102222
|
}
|
|
101959
102223
|
get fields() {
|
|
101960
102224
|
return {
|
|
@@ -101968,10 +102232,11 @@
|
|
|
101968
102232
|
class CurrencyAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101969
102233
|
constructor(services, typeRegistry) {
|
|
101970
102234
|
super(services);
|
|
102235
|
+
this.services = services;
|
|
102236
|
+
this.typeRegistry = typeRegistry;
|
|
101971
102237
|
this.namespace = "oas";
|
|
101972
102238
|
this.typeName = "CurrencyAggregate";
|
|
101973
102239
|
this.implementedInterfaces = ["FieldValue"];
|
|
101974
|
-
this.typeRegistry = typeRegistry;
|
|
101975
102240
|
}
|
|
101976
102241
|
get fields() {
|
|
101977
102242
|
return {
|
|
@@ -101992,10 +102257,11 @@
|
|
|
101992
102257
|
class CurrencyValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
101993
102258
|
constructor(services, typeRegistry) {
|
|
101994
102259
|
super(services);
|
|
102260
|
+
this.services = services;
|
|
102261
|
+
this.typeRegistry = typeRegistry;
|
|
101995
102262
|
this.namespace = "oas";
|
|
101996
102263
|
this.typeName = "CurrencyValue";
|
|
101997
102264
|
this.implementedInterfaces = ["FieldValue"];
|
|
101998
|
-
this.typeRegistry = typeRegistry;
|
|
101999
102265
|
}
|
|
102000
102266
|
get fields() {
|
|
102001
102267
|
return {
|
|
@@ -102011,10 +102277,11 @@
|
|
|
102011
102277
|
class CustomLinkLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102012
102278
|
constructor(services, typeRegistry) {
|
|
102013
102279
|
super(services);
|
|
102280
|
+
this.services = services;
|
|
102281
|
+
this.typeRegistry = typeRegistry;
|
|
102014
102282
|
this.namespace = "oas";
|
|
102015
102283
|
this.typeName = "CustomLinkLayoutComponent";
|
|
102016
102284
|
this.implementedInterfaces = ["LayoutComponent"];
|
|
102017
|
-
this.typeRegistry = typeRegistry;
|
|
102018
102285
|
}
|
|
102019
102286
|
get fields() {
|
|
102020
102287
|
return {
|
|
@@ -102031,10 +102298,11 @@
|
|
|
102031
102298
|
class DateAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102032
102299
|
constructor(services, typeRegistry) {
|
|
102033
102300
|
super(services);
|
|
102301
|
+
this.services = services;
|
|
102302
|
+
this.typeRegistry = typeRegistry;
|
|
102034
102303
|
this.namespace = "oas";
|
|
102035
102304
|
this.typeName = "DateAggregate";
|
|
102036
102305
|
this.implementedInterfaces = ["FieldValue"];
|
|
102037
|
-
this.typeRegistry = typeRegistry;
|
|
102038
102306
|
}
|
|
102039
102307
|
get fields() {
|
|
102040
102308
|
return {
|
|
@@ -102065,10 +102333,11 @@
|
|
|
102065
102333
|
class DateFunctionAggregationRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102066
102334
|
constructor(services, typeRegistry) {
|
|
102067
102335
|
super(services);
|
|
102336
|
+
this.services = services;
|
|
102337
|
+
this.typeRegistry = typeRegistry;
|
|
102068
102338
|
this.namespace = "oas";
|
|
102069
102339
|
this.typeName = "DateFunctionAggregation";
|
|
102070
102340
|
this.implementedInterfaces = [];
|
|
102071
|
-
this.typeRegistry = typeRegistry;
|
|
102072
102341
|
}
|
|
102073
102342
|
get fields() {
|
|
102074
102343
|
return {
|
|
@@ -102082,10 +102351,11 @@
|
|
|
102082
102351
|
class DateTimeValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102083
102352
|
constructor(services, typeRegistry) {
|
|
102084
102353
|
super(services);
|
|
102354
|
+
this.services = services;
|
|
102355
|
+
this.typeRegistry = typeRegistry;
|
|
102085
102356
|
this.namespace = "oas";
|
|
102086
102357
|
this.typeName = "DateTimeValue";
|
|
102087
102358
|
this.implementedInterfaces = ["FieldValue"];
|
|
102088
|
-
this.typeRegistry = typeRegistry;
|
|
102089
102359
|
}
|
|
102090
102360
|
get fields() {
|
|
102091
102361
|
return {
|
|
@@ -102100,10 +102370,11 @@
|
|
|
102100
102370
|
class DateValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102101
102371
|
constructor(services, typeRegistry) {
|
|
102102
102372
|
super(services);
|
|
102373
|
+
this.services = services;
|
|
102374
|
+
this.typeRegistry = typeRegistry;
|
|
102103
102375
|
this.namespace = "oas";
|
|
102104
102376
|
this.typeName = "DateValue";
|
|
102105
102377
|
this.implementedInterfaces = ["FieldValue"];
|
|
102106
|
-
this.typeRegistry = typeRegistry;
|
|
102107
102378
|
}
|
|
102108
102379
|
get fields() {
|
|
102109
102380
|
return {
|
|
@@ -102118,10 +102389,11 @@
|
|
|
102118
102389
|
class DependentFieldRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102119
102390
|
constructor(services, typeRegistry) {
|
|
102120
102391
|
super(services);
|
|
102392
|
+
this.services = services;
|
|
102393
|
+
this.typeRegistry = typeRegistry;
|
|
102121
102394
|
this.namespace = "oas";
|
|
102122
102395
|
this.typeName = "DependentField";
|
|
102123
102396
|
this.implementedInterfaces = [];
|
|
102124
|
-
this.typeRegistry = typeRegistry;
|
|
102125
102397
|
}
|
|
102126
102398
|
get fields() {
|
|
102127
102399
|
return {
|
|
@@ -102135,10 +102407,11 @@
|
|
|
102135
102407
|
class DoubleAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102136
102408
|
constructor(services, typeRegistry) {
|
|
102137
102409
|
super(services);
|
|
102410
|
+
this.services = services;
|
|
102411
|
+
this.typeRegistry = typeRegistry;
|
|
102138
102412
|
this.namespace = "oas";
|
|
102139
102413
|
this.typeName = "DoubleAggregate";
|
|
102140
102414
|
this.implementedInterfaces = ["FieldValue"];
|
|
102141
|
-
this.typeRegistry = typeRegistry;
|
|
102142
102415
|
}
|
|
102143
102416
|
get fields() {
|
|
102144
102417
|
return {
|
|
@@ -102159,10 +102432,11 @@
|
|
|
102159
102432
|
class DoubleValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102160
102433
|
constructor(services, typeRegistry) {
|
|
102161
102434
|
super(services);
|
|
102435
|
+
this.services = services;
|
|
102436
|
+
this.typeRegistry = typeRegistry;
|
|
102162
102437
|
this.namespace = "oas";
|
|
102163
102438
|
this.typeName = "DoubleValue";
|
|
102164
102439
|
this.implementedInterfaces = ["FieldValue"];
|
|
102165
|
-
this.typeRegistry = typeRegistry;
|
|
102166
102440
|
}
|
|
102167
102441
|
get fields() {
|
|
102168
102442
|
return {
|
|
@@ -102177,10 +102451,11 @@
|
|
|
102177
102451
|
class EmailAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102178
102452
|
constructor(services, typeRegistry) {
|
|
102179
102453
|
super(services);
|
|
102454
|
+
this.services = services;
|
|
102455
|
+
this.typeRegistry = typeRegistry;
|
|
102180
102456
|
this.namespace = "oas";
|
|
102181
102457
|
this.typeName = "EmailAggregate";
|
|
102182
102458
|
this.implementedInterfaces = ["FieldValue"];
|
|
102183
|
-
this.typeRegistry = typeRegistry;
|
|
102184
102459
|
}
|
|
102185
102460
|
get fields() {
|
|
102186
102461
|
return {
|
|
@@ -102199,10 +102474,11 @@
|
|
|
102199
102474
|
class EmailValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102200
102475
|
constructor(services, typeRegistry) {
|
|
102201
102476
|
super(services);
|
|
102477
|
+
this.services = services;
|
|
102478
|
+
this.typeRegistry = typeRegistry;
|
|
102202
102479
|
this.namespace = "oas";
|
|
102203
102480
|
this.typeName = "EmailValue";
|
|
102204
102481
|
this.implementedInterfaces = ["FieldValue"];
|
|
102205
|
-
this.typeRegistry = typeRegistry;
|
|
102206
102482
|
}
|
|
102207
102483
|
get fields() {
|
|
102208
102484
|
return {
|
|
@@ -102216,10 +102492,11 @@
|
|
|
102216
102492
|
class EmptySpaceLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102217
102493
|
constructor(services, typeRegistry) {
|
|
102218
102494
|
super(services);
|
|
102495
|
+
this.services = services;
|
|
102496
|
+
this.typeRegistry = typeRegistry;
|
|
102219
102497
|
this.namespace = "oas";
|
|
102220
102498
|
this.typeName = "EmptySpaceLayoutComponent";
|
|
102221
102499
|
this.implementedInterfaces = ["LayoutComponent"];
|
|
102222
|
-
this.typeRegistry = typeRegistry;
|
|
102223
102500
|
}
|
|
102224
102501
|
get fields() {
|
|
102225
102502
|
return {
|
|
@@ -102233,10 +102510,11 @@
|
|
|
102233
102510
|
class EncryptedStringValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102234
102511
|
constructor(services, typeRegistry) {
|
|
102235
102512
|
super(services);
|
|
102513
|
+
this.services = services;
|
|
102514
|
+
this.typeRegistry = typeRegistry;
|
|
102236
102515
|
this.namespace = "oas";
|
|
102237
102516
|
this.typeName = "EncryptedStringValue";
|
|
102238
102517
|
this.implementedInterfaces = ["FieldValue"];
|
|
102239
|
-
this.typeRegistry = typeRegistry;
|
|
102240
102518
|
}
|
|
102241
102519
|
get fields() {
|
|
102242
102520
|
return {
|
|
@@ -102250,10 +102528,11 @@
|
|
|
102250
102528
|
class FieldLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102251
102529
|
constructor(services, typeRegistry) {
|
|
102252
102530
|
super(services);
|
|
102531
|
+
this.services = services;
|
|
102532
|
+
this.typeRegistry = typeRegistry;
|
|
102253
102533
|
this.namespace = "oas";
|
|
102254
102534
|
this.typeName = "FieldLayoutComponent";
|
|
102255
102535
|
this.implementedInterfaces = ["LayoutComponent"];
|
|
102256
|
-
this.typeRegistry = typeRegistry;
|
|
102257
102536
|
}
|
|
102258
102537
|
get fields() {
|
|
102259
102538
|
return {
|
|
@@ -102268,10 +102547,11 @@
|
|
|
102268
102547
|
class FieldRepository extends BaseInterfaceRepository {
|
|
102269
102548
|
constructor(services, typeRegistry) {
|
|
102270
102549
|
super(services);
|
|
102550
|
+
this.services = services;
|
|
102551
|
+
this.typeRegistry = typeRegistry;
|
|
102271
102552
|
this.namespace = "oas";
|
|
102272
102553
|
this.typeName = "Field";
|
|
102273
102554
|
this.implementedInterfaces = [];
|
|
102274
|
-
this.typeRegistry = typeRegistry;
|
|
102275
102555
|
}
|
|
102276
102556
|
get fields() {
|
|
102277
102557
|
return {
|
|
@@ -102318,10 +102598,11 @@
|
|
|
102318
102598
|
class FilteredLookupInfoRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102319
102599
|
constructor(services, typeRegistry) {
|
|
102320
102600
|
super(services);
|
|
102601
|
+
this.services = services;
|
|
102602
|
+
this.typeRegistry = typeRegistry;
|
|
102321
102603
|
this.namespace = "oas";
|
|
102322
102604
|
this.typeName = "FilteredLookupInfo";
|
|
102323
102605
|
this.implementedInterfaces = [];
|
|
102324
|
-
this.typeRegistry = typeRegistry;
|
|
102325
102606
|
}
|
|
102326
102607
|
get fields() {
|
|
102327
102608
|
return {
|
|
@@ -102336,10 +102617,11 @@
|
|
|
102336
102617
|
class IDAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102337
102618
|
constructor(services, typeRegistry) {
|
|
102338
102619
|
super(services);
|
|
102620
|
+
this.services = services;
|
|
102621
|
+
this.typeRegistry = typeRegistry;
|
|
102339
102622
|
this.namespace = "oas";
|
|
102340
102623
|
this.typeName = "IDAggregate";
|
|
102341
102624
|
this.implementedInterfaces = ["FieldValue"];
|
|
102342
|
-
this.typeRegistry = typeRegistry;
|
|
102343
102625
|
}
|
|
102344
102626
|
get fields() {
|
|
102345
102627
|
return {
|
|
@@ -102358,10 +102640,11 @@
|
|
|
102358
102640
|
class IDValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102359
102641
|
constructor(services, typeRegistry) {
|
|
102360
102642
|
super(services);
|
|
102643
|
+
this.services = services;
|
|
102644
|
+
this.typeRegistry = typeRegistry;
|
|
102361
102645
|
this.namespace = "oas";
|
|
102362
102646
|
this.typeName = "IDValue";
|
|
102363
102647
|
this.implementedInterfaces = ["FieldValue"];
|
|
102364
|
-
this.typeRegistry = typeRegistry;
|
|
102365
102648
|
}
|
|
102366
102649
|
get fields() {
|
|
102367
102650
|
return {
|
|
@@ -102375,10 +102658,11 @@
|
|
|
102375
102658
|
class IntAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102376
102659
|
constructor(services, typeRegistry) {
|
|
102377
102660
|
super(services);
|
|
102661
|
+
this.services = services;
|
|
102662
|
+
this.typeRegistry = typeRegistry;
|
|
102378
102663
|
this.namespace = "oas";
|
|
102379
102664
|
this.typeName = "IntAggregate";
|
|
102380
102665
|
this.implementedInterfaces = ["FieldValue"];
|
|
102381
|
-
this.typeRegistry = typeRegistry;
|
|
102382
102666
|
}
|
|
102383
102667
|
get fields() {
|
|
102384
102668
|
return {
|
|
@@ -102400,10 +102684,11 @@
|
|
|
102400
102684
|
class IntValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102401
102685
|
constructor(services, typeRegistry) {
|
|
102402
102686
|
super(services);
|
|
102687
|
+
this.services = services;
|
|
102688
|
+
this.typeRegistry = typeRegistry;
|
|
102403
102689
|
this.namespace = "oas";
|
|
102404
102690
|
this.typeName = "IntValue";
|
|
102405
102691
|
this.implementedInterfaces = ["FieldValue"];
|
|
102406
|
-
this.typeRegistry = typeRegistry;
|
|
102407
102692
|
}
|
|
102408
102693
|
get fields() {
|
|
102409
102694
|
return {
|
|
@@ -102418,10 +102703,11 @@
|
|
|
102418
102703
|
class JSONValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102419
102704
|
constructor(services, typeRegistry) {
|
|
102420
102705
|
super(services);
|
|
102706
|
+
this.services = services;
|
|
102707
|
+
this.typeRegistry = typeRegistry;
|
|
102421
102708
|
this.namespace = "oas";
|
|
102422
102709
|
this.typeName = "JSONValue";
|
|
102423
102710
|
this.implementedInterfaces = ["FieldValue"];
|
|
102424
|
-
this.typeRegistry = typeRegistry;
|
|
102425
102711
|
}
|
|
102426
102712
|
get fields() {
|
|
102427
102713
|
return {
|
|
@@ -102435,10 +102721,11 @@
|
|
|
102435
102721
|
class LatitudeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102436
102722
|
constructor(services, typeRegistry) {
|
|
102437
102723
|
super(services);
|
|
102724
|
+
this.services = services;
|
|
102725
|
+
this.typeRegistry = typeRegistry;
|
|
102438
102726
|
this.namespace = "oas";
|
|
102439
102727
|
this.typeName = "LatitudeAggregate";
|
|
102440
102728
|
this.implementedInterfaces = ["FieldValue"];
|
|
102441
|
-
this.typeRegistry = typeRegistry;
|
|
102442
102729
|
}
|
|
102443
102730
|
get fields() {
|
|
102444
102731
|
return {
|
|
@@ -102458,10 +102745,11 @@
|
|
|
102458
102745
|
class LatitudeValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102459
102746
|
constructor(services, typeRegistry) {
|
|
102460
102747
|
super(services);
|
|
102748
|
+
this.services = services;
|
|
102749
|
+
this.typeRegistry = typeRegistry;
|
|
102461
102750
|
this.namespace = "oas";
|
|
102462
102751
|
this.typeName = "LatitudeValue";
|
|
102463
102752
|
this.implementedInterfaces = ["FieldValue"];
|
|
102464
|
-
this.typeRegistry = typeRegistry;
|
|
102465
102753
|
}
|
|
102466
102754
|
get fields() {
|
|
102467
102755
|
return {
|
|
@@ -102475,10 +102763,11 @@
|
|
|
102475
102763
|
class LayoutComponentRepository extends BaseInterfaceRepository {
|
|
102476
102764
|
constructor(services, typeRegistry) {
|
|
102477
102765
|
super(services);
|
|
102766
|
+
this.services = services;
|
|
102767
|
+
this.typeRegistry = typeRegistry;
|
|
102478
102768
|
this.namespace = "oas";
|
|
102479
102769
|
this.typeName = "LayoutComponent";
|
|
102480
102770
|
this.implementedInterfaces = [];
|
|
102481
|
-
this.typeRegistry = typeRegistry;
|
|
102482
102771
|
}
|
|
102483
102772
|
get fields() {
|
|
102484
102773
|
return {
|
|
@@ -102502,10 +102791,11 @@
|
|
|
102502
102791
|
class LayoutConnectionRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102503
102792
|
constructor(services, typeRegistry) {
|
|
102504
102793
|
super(services);
|
|
102794
|
+
this.services = services;
|
|
102795
|
+
this.typeRegistry = typeRegistry;
|
|
102505
102796
|
this.namespace = "oas";
|
|
102506
102797
|
this.typeName = "LayoutConnection";
|
|
102507
102798
|
this.implementedInterfaces = [];
|
|
102508
|
-
this.typeRegistry = typeRegistry;
|
|
102509
102799
|
}
|
|
102510
102800
|
get fields() {
|
|
102511
102801
|
return {
|
|
@@ -102520,10 +102810,11 @@
|
|
|
102520
102810
|
class LayoutEdgeRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102521
102811
|
constructor(services, typeRegistry) {
|
|
102522
102812
|
super(services);
|
|
102813
|
+
this.services = services;
|
|
102814
|
+
this.typeRegistry = typeRegistry;
|
|
102523
102815
|
this.namespace = "oas";
|
|
102524
102816
|
this.typeName = "LayoutEdge";
|
|
102525
102817
|
this.implementedInterfaces = [];
|
|
102526
|
-
this.typeRegistry = typeRegistry;
|
|
102527
102818
|
}
|
|
102528
102819
|
get fields() {
|
|
102529
102820
|
return {
|
|
@@ -102537,10 +102828,11 @@
|
|
|
102537
102828
|
class LayoutItemRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102538
102829
|
constructor(services, typeRegistry) {
|
|
102539
102830
|
super(services);
|
|
102831
|
+
this.services = services;
|
|
102832
|
+
this.typeRegistry = typeRegistry;
|
|
102540
102833
|
this.namespace = "oas";
|
|
102541
102834
|
this.typeName = "LayoutItem";
|
|
102542
102835
|
this.implementedInterfaces = [];
|
|
102543
|
-
this.typeRegistry = typeRegistry;
|
|
102544
102836
|
}
|
|
102545
102837
|
get fields() {
|
|
102546
102838
|
return {
|
|
@@ -102560,11 +102852,12 @@
|
|
|
102560
102852
|
class LayoutRepository extends IdentifiableGraphQLTypeRepository {
|
|
102561
102853
|
constructor(services, typeRegistry) {
|
|
102562
102854
|
super(services);
|
|
102855
|
+
this.services = services;
|
|
102856
|
+
this.typeRegistry = typeRegistry;
|
|
102563
102857
|
this.namespace = "oas";
|
|
102564
102858
|
this.typeName = "Layout";
|
|
102565
102859
|
this.implementedInterfaces = [];
|
|
102566
102860
|
this.idField = "id";
|
|
102567
|
-
this.typeRegistry = typeRegistry;
|
|
102568
102861
|
}
|
|
102569
102862
|
get fields() {
|
|
102570
102863
|
return {
|
|
@@ -102586,10 +102879,11 @@
|
|
|
102586
102879
|
class LayoutRowRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102587
102880
|
constructor(services, typeRegistry) {
|
|
102588
102881
|
super(services);
|
|
102882
|
+
this.services = services;
|
|
102883
|
+
this.typeRegistry = typeRegistry;
|
|
102589
102884
|
this.namespace = "oas";
|
|
102590
102885
|
this.typeName = "LayoutRow";
|
|
102591
102886
|
this.implementedInterfaces = [];
|
|
102592
|
-
this.typeRegistry = typeRegistry;
|
|
102593
102887
|
}
|
|
102594
102888
|
get fields() {
|
|
102595
102889
|
return {
|
|
@@ -102602,10 +102896,11 @@
|
|
|
102602
102896
|
class LayoutSaveOptionRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102603
102897
|
constructor(services, typeRegistry) {
|
|
102604
102898
|
super(services);
|
|
102899
|
+
this.services = services;
|
|
102900
|
+
this.typeRegistry = typeRegistry;
|
|
102605
102901
|
this.namespace = "oas";
|
|
102606
102902
|
this.typeName = "LayoutSaveOption";
|
|
102607
102903
|
this.implementedInterfaces = [];
|
|
102608
|
-
this.typeRegistry = typeRegistry;
|
|
102609
102904
|
}
|
|
102610
102905
|
get fields() {
|
|
102611
102906
|
return {
|
|
@@ -102623,11 +102918,12 @@
|
|
|
102623
102918
|
class LayoutSectionRepository extends IdentifiableGraphQLTypeRepository {
|
|
102624
102919
|
constructor(services, typeRegistry) {
|
|
102625
102920
|
super(services);
|
|
102921
|
+
this.services = services;
|
|
102922
|
+
this.typeRegistry = typeRegistry;
|
|
102626
102923
|
this.namespace = "oas";
|
|
102627
102924
|
this.typeName = "LayoutSection";
|
|
102628
102925
|
this.implementedInterfaces = [];
|
|
102629
102926
|
this.idField = "id";
|
|
102630
|
-
this.typeRegistry = typeRegistry;
|
|
102631
102927
|
}
|
|
102632
102928
|
get fields() {
|
|
102633
102929
|
return {
|
|
@@ -102650,10 +102946,11 @@
|
|
|
102650
102946
|
class ListColumnRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102651
102947
|
constructor(services, typeRegistry) {
|
|
102652
102948
|
super(services);
|
|
102949
|
+
this.services = services;
|
|
102950
|
+
this.typeRegistry = typeRegistry;
|
|
102653
102951
|
this.namespace = "oas";
|
|
102654
102952
|
this.typeName = "ListColumn";
|
|
102655
102953
|
this.implementedInterfaces = [];
|
|
102656
|
-
this.typeRegistry = typeRegistry;
|
|
102657
102954
|
}
|
|
102658
102955
|
get fields() {
|
|
102659
102956
|
return {
|
|
@@ -102669,10 +102966,11 @@
|
|
|
102669
102966
|
class ListOrderRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102670
102967
|
constructor(services, typeRegistry) {
|
|
102671
102968
|
super(services);
|
|
102969
|
+
this.services = services;
|
|
102970
|
+
this.typeRegistry = typeRegistry;
|
|
102672
102971
|
this.namespace = "oas";
|
|
102673
102972
|
this.typeName = "ListOrder";
|
|
102674
102973
|
this.implementedInterfaces = [];
|
|
102675
|
-
this.typeRegistry = typeRegistry;
|
|
102676
102974
|
}
|
|
102677
102975
|
get fields() {
|
|
102678
102976
|
return {
|
|
@@ -102686,10 +102984,11 @@
|
|
|
102686
102984
|
class LongAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102687
102985
|
constructor(services, typeRegistry) {
|
|
102688
102986
|
super(services);
|
|
102987
|
+
this.services = services;
|
|
102988
|
+
this.typeRegistry = typeRegistry;
|
|
102689
102989
|
this.namespace = "oas";
|
|
102690
102990
|
this.typeName = "LongAggregate";
|
|
102691
102991
|
this.implementedInterfaces = ["FieldValue"];
|
|
102692
|
-
this.typeRegistry = typeRegistry;
|
|
102693
102992
|
}
|
|
102694
102993
|
get fields() {
|
|
102695
102994
|
return {
|
|
@@ -102711,10 +103010,11 @@
|
|
|
102711
103010
|
class LongTextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102712
103011
|
constructor(services, typeRegistry) {
|
|
102713
103012
|
super(services);
|
|
103013
|
+
this.services = services;
|
|
103014
|
+
this.typeRegistry = typeRegistry;
|
|
102714
103015
|
this.namespace = "oas";
|
|
102715
103016
|
this.typeName = "LongTextAreaValue";
|
|
102716
103017
|
this.implementedInterfaces = ["FieldValue"];
|
|
102717
|
-
this.typeRegistry = typeRegistry;
|
|
102718
103018
|
}
|
|
102719
103019
|
get fields() {
|
|
102720
103020
|
return {
|
|
@@ -102729,10 +103029,11 @@
|
|
|
102729
103029
|
class LongValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102730
103030
|
constructor(services, typeRegistry) {
|
|
102731
103031
|
super(services);
|
|
103032
|
+
this.services = services;
|
|
103033
|
+
this.typeRegistry = typeRegistry;
|
|
102732
103034
|
this.namespace = "oas";
|
|
102733
103035
|
this.typeName = "LongValue";
|
|
102734
103036
|
this.implementedInterfaces = ["FieldValue"];
|
|
102735
|
-
this.typeRegistry = typeRegistry;
|
|
102736
103037
|
}
|
|
102737
103038
|
get fields() {
|
|
102738
103039
|
return {
|
|
@@ -102747,10 +103048,11 @@
|
|
|
102747
103048
|
class LongitudeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102748
103049
|
constructor(services, typeRegistry) {
|
|
102749
103050
|
super(services);
|
|
103051
|
+
this.services = services;
|
|
103052
|
+
this.typeRegistry = typeRegistry;
|
|
102750
103053
|
this.namespace = "oas";
|
|
102751
103054
|
this.typeName = "LongitudeAggregate";
|
|
102752
103055
|
this.implementedInterfaces = ["FieldValue"];
|
|
102753
|
-
this.typeRegistry = typeRegistry;
|
|
102754
103056
|
}
|
|
102755
103057
|
get fields() {
|
|
102756
103058
|
return {
|
|
@@ -102770,10 +103072,11 @@
|
|
|
102770
103072
|
class LongitudeValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102771
103073
|
constructor(services, typeRegistry) {
|
|
102772
103074
|
super(services);
|
|
103075
|
+
this.services = services;
|
|
103076
|
+
this.typeRegistry = typeRegistry;
|
|
102773
103077
|
this.namespace = "oas";
|
|
102774
103078
|
this.typeName = "LongitudeValue";
|
|
102775
103079
|
this.implementedInterfaces = ["FieldValue"];
|
|
102776
|
-
this.typeRegistry = typeRegistry;
|
|
102777
103080
|
}
|
|
102778
103081
|
get fields() {
|
|
102779
103082
|
return {
|
|
@@ -102787,10 +103090,11 @@
|
|
|
102787
103090
|
class MultiPicklistValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102788
103091
|
constructor(services, typeRegistry) {
|
|
102789
103092
|
super(services);
|
|
103093
|
+
this.services = services;
|
|
103094
|
+
this.typeRegistry = typeRegistry;
|
|
102790
103095
|
this.namespace = "oas";
|
|
102791
103096
|
this.typeName = "MultiPicklistValue";
|
|
102792
103097
|
this.implementedInterfaces = ["FieldValue"];
|
|
102793
|
-
this.typeRegistry = typeRegistry;
|
|
102794
103098
|
}
|
|
102795
103099
|
get fields() {
|
|
102796
103100
|
return {
|
|
@@ -102805,10 +103109,11 @@
|
|
|
102805
103109
|
class MutationRepository extends GraphQLDocumentRootTypeRepository {
|
|
102806
103110
|
constructor(services, typeRegistry) {
|
|
102807
103111
|
super(services);
|
|
103112
|
+
this.services = services;
|
|
103113
|
+
this.typeRegistry = typeRegistry;
|
|
102808
103114
|
this.namespace = "oas";
|
|
102809
103115
|
this.typeName = "Mutation";
|
|
102810
103116
|
this.implementedInterfaces = [];
|
|
102811
|
-
this.typeRegistry = typeRegistry;
|
|
102812
103117
|
}
|
|
102813
103118
|
get fields() {
|
|
102814
103119
|
return {
|
|
@@ -102824,10 +103129,11 @@
|
|
|
102824
103129
|
class ObjectInfoRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102825
103130
|
constructor(services, typeRegistry) {
|
|
102826
103131
|
super(services);
|
|
103132
|
+
this.services = services;
|
|
103133
|
+
this.typeRegistry = typeRegistry;
|
|
102827
103134
|
this.namespace = "oas";
|
|
102828
103135
|
this.typeName = "ObjectInfo";
|
|
102829
103136
|
this.implementedInterfaces = [];
|
|
102830
|
-
this.typeRegistry = typeRegistry;
|
|
102831
103137
|
}
|
|
102832
103138
|
get fields() {
|
|
102833
103139
|
return {
|
|
@@ -102860,10 +103166,11 @@
|
|
|
102860
103166
|
class PageInfoRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102861
103167
|
constructor(services, typeRegistry) {
|
|
102862
103168
|
super(services);
|
|
103169
|
+
this.services = services;
|
|
103170
|
+
this.typeRegistry = typeRegistry;
|
|
102863
103171
|
this.namespace = "oas";
|
|
102864
103172
|
this.typeName = "PageInfo";
|
|
102865
103173
|
this.implementedInterfaces = [];
|
|
102866
|
-
this.typeRegistry = typeRegistry;
|
|
102867
103174
|
}
|
|
102868
103175
|
get fields() {
|
|
102869
103176
|
return {
|
|
@@ -102879,10 +103186,11 @@
|
|
|
102879
103186
|
class PercentAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102880
103187
|
constructor(services, typeRegistry) {
|
|
102881
103188
|
super(services);
|
|
103189
|
+
this.services = services;
|
|
103190
|
+
this.typeRegistry = typeRegistry;
|
|
102882
103191
|
this.namespace = "oas";
|
|
102883
103192
|
this.typeName = "PercentAggregate";
|
|
102884
103193
|
this.implementedInterfaces = ["FieldValue"];
|
|
102885
|
-
this.typeRegistry = typeRegistry;
|
|
102886
103194
|
}
|
|
102887
103195
|
get fields() {
|
|
102888
103196
|
return {
|
|
@@ -102903,10 +103211,11 @@
|
|
|
102903
103211
|
class PercentValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102904
103212
|
constructor(services, typeRegistry) {
|
|
102905
103213
|
super(services);
|
|
103214
|
+
this.services = services;
|
|
103215
|
+
this.typeRegistry = typeRegistry;
|
|
102906
103216
|
this.namespace = "oas";
|
|
102907
103217
|
this.typeName = "PercentValue";
|
|
102908
103218
|
this.implementedInterfaces = ["FieldValue"];
|
|
102909
|
-
this.typeRegistry = typeRegistry;
|
|
102910
103219
|
}
|
|
102911
103220
|
get fields() {
|
|
102912
103221
|
return {
|
|
@@ -102921,10 +103230,11 @@
|
|
|
102921
103230
|
class PhoneNumberAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102922
103231
|
constructor(services, typeRegistry) {
|
|
102923
103232
|
super(services);
|
|
103233
|
+
this.services = services;
|
|
103234
|
+
this.typeRegistry = typeRegistry;
|
|
102924
103235
|
this.namespace = "oas";
|
|
102925
103236
|
this.typeName = "PhoneNumberAggregate";
|
|
102926
103237
|
this.implementedInterfaces = ["FieldValue"];
|
|
102927
|
-
this.typeRegistry = typeRegistry;
|
|
102928
103238
|
}
|
|
102929
103239
|
get fields() {
|
|
102930
103240
|
return {
|
|
@@ -102943,10 +103253,11 @@
|
|
|
102943
103253
|
class PhoneNumberValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102944
103254
|
constructor(services, typeRegistry) {
|
|
102945
103255
|
super(services);
|
|
103256
|
+
this.services = services;
|
|
103257
|
+
this.typeRegistry = typeRegistry;
|
|
102946
103258
|
this.namespace = "oas";
|
|
102947
103259
|
this.typeName = "PhoneNumberValue";
|
|
102948
103260
|
this.implementedInterfaces = ["FieldValue"];
|
|
102949
|
-
this.typeRegistry = typeRegistry;
|
|
102950
103261
|
}
|
|
102951
103262
|
get fields() {
|
|
102952
103263
|
return {
|
|
@@ -102960,10 +103271,11 @@
|
|
|
102960
103271
|
class PicklistAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102961
103272
|
constructor(services, typeRegistry) {
|
|
102962
103273
|
super(services);
|
|
103274
|
+
this.services = services;
|
|
103275
|
+
this.typeRegistry = typeRegistry;
|
|
102963
103276
|
this.namespace = "oas";
|
|
102964
103277
|
this.typeName = "PicklistAggregate";
|
|
102965
103278
|
this.implementedInterfaces = ["FieldValue"];
|
|
102966
|
-
this.typeRegistry = typeRegistry;
|
|
102967
103279
|
}
|
|
102968
103280
|
get fields() {
|
|
102969
103281
|
return {
|
|
@@ -102983,10 +103295,11 @@
|
|
|
102983
103295
|
class PicklistAttributesRepository extends UnidentifiableGraphQLTypeRepository {
|
|
102984
103296
|
constructor(services, typeRegistry) {
|
|
102985
103297
|
super(services);
|
|
103298
|
+
this.services = services;
|
|
103299
|
+
this.typeRegistry = typeRegistry;
|
|
102986
103300
|
this.namespace = "oas";
|
|
102987
103301
|
this.typeName = "PicklistAttributes";
|
|
102988
103302
|
this.implementedInterfaces = [];
|
|
102989
|
-
this.typeRegistry = typeRegistry;
|
|
102990
103303
|
}
|
|
102991
103304
|
get fields() {
|
|
102992
103305
|
return {
|
|
@@ -103000,10 +103313,11 @@
|
|
|
103000
103313
|
class PicklistFieldRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103001
103314
|
constructor(services, typeRegistry) {
|
|
103002
103315
|
super(services);
|
|
103316
|
+
this.services = services;
|
|
103317
|
+
this.typeRegistry = typeRegistry;
|
|
103003
103318
|
this.namespace = "oas";
|
|
103004
103319
|
this.typeName = "PicklistField";
|
|
103005
103320
|
this.implementedInterfaces = ["Field"];
|
|
103006
|
-
this.typeRegistry = typeRegistry;
|
|
103007
103321
|
}
|
|
103008
103322
|
get fields() {
|
|
103009
103323
|
return {
|
|
@@ -103045,10 +103359,11 @@
|
|
|
103045
103359
|
class PicklistValueByRecordTypeIDsRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103046
103360
|
constructor(services, typeRegistry) {
|
|
103047
103361
|
super(services);
|
|
103362
|
+
this.services = services;
|
|
103363
|
+
this.typeRegistry = typeRegistry;
|
|
103048
103364
|
this.namespace = "oas";
|
|
103049
103365
|
this.typeName = "PicklistValueByRecordTypeIDs";
|
|
103050
103366
|
this.implementedInterfaces = [];
|
|
103051
|
-
this.typeRegistry = typeRegistry;
|
|
103052
103367
|
}
|
|
103053
103368
|
get fields() {
|
|
103054
103369
|
return {
|
|
@@ -103064,10 +103379,11 @@
|
|
|
103064
103379
|
class PicklistValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103065
103380
|
constructor(services, typeRegistry) {
|
|
103066
103381
|
super(services);
|
|
103382
|
+
this.services = services;
|
|
103383
|
+
this.typeRegistry = typeRegistry;
|
|
103067
103384
|
this.namespace = "oas";
|
|
103068
103385
|
this.typeName = "PicklistValue";
|
|
103069
103386
|
this.implementedInterfaces = ["FieldValue"];
|
|
103070
|
-
this.typeRegistry = typeRegistry;
|
|
103071
103387
|
}
|
|
103072
103388
|
get fields() {
|
|
103073
103389
|
return {
|
|
@@ -103082,10 +103398,11 @@
|
|
|
103082
103398
|
class PicklistValuesRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103083
103399
|
constructor(services, typeRegistry) {
|
|
103084
103400
|
super(services);
|
|
103401
|
+
this.services = services;
|
|
103402
|
+
this.typeRegistry = typeRegistry;
|
|
103085
103403
|
this.namespace = "oas";
|
|
103086
103404
|
this.typeName = "PicklistValues";
|
|
103087
103405
|
this.implementedInterfaces = [];
|
|
103088
|
-
this.typeRegistry = typeRegistry;
|
|
103089
103406
|
}
|
|
103090
103407
|
get fields() {
|
|
103091
103408
|
return {
|
|
@@ -103101,10 +103418,11 @@
|
|
|
103101
103418
|
let PolymorphicAggregateParentRelationshipRepository$1 = class PolymorphicAggregateParentRelationshipRepository extends BaseUnionRepository {
|
|
103102
103419
|
constructor(services, typeRegistry) {
|
|
103103
103420
|
super(services);
|
|
103421
|
+
this.services = services;
|
|
103422
|
+
this.typeRegistry = typeRegistry;
|
|
103104
103423
|
this.namespace = "oas";
|
|
103105
103424
|
this.typeName = "PolymorphicAggregateParentRelationship";
|
|
103106
103425
|
this.implementedInterfaces = [];
|
|
103107
|
-
this.typeRegistry = typeRegistry;
|
|
103108
103426
|
}
|
|
103109
103427
|
get fields() {
|
|
103110
103428
|
return {
|
|
@@ -103121,10 +103439,11 @@
|
|
|
103121
103439
|
let PolymorphicParentRelationshipRepository$1 = class PolymorphicParentRelationshipRepository extends BaseUnionRepository {
|
|
103122
103440
|
constructor(services, typeRegistry) {
|
|
103123
103441
|
super(services);
|
|
103442
|
+
this.services = services;
|
|
103443
|
+
this.typeRegistry = typeRegistry;
|
|
103124
103444
|
this.namespace = "oas";
|
|
103125
103445
|
this.typeName = "PolymorphicParentRelationship";
|
|
103126
103446
|
this.implementedInterfaces = [];
|
|
103127
|
-
this.typeRegistry = typeRegistry;
|
|
103128
103447
|
}
|
|
103129
103448
|
get fields() {
|
|
103130
103449
|
return {
|
|
@@ -103141,10 +103460,11 @@
|
|
|
103141
103460
|
class QueryRepository extends GraphQLDocumentRootTypeRepository {
|
|
103142
103461
|
constructor(services, typeRegistry) {
|
|
103143
103462
|
super(services);
|
|
103463
|
+
this.services = services;
|
|
103464
|
+
this.typeRegistry = typeRegistry;
|
|
103144
103465
|
this.namespace = "oas";
|
|
103145
103466
|
this.typeName = "Query";
|
|
103146
103467
|
this.implementedInterfaces = [];
|
|
103147
|
-
this.typeRegistry = typeRegistry;
|
|
103148
103468
|
}
|
|
103149
103469
|
get fields() {
|
|
103150
103470
|
return {
|
|
@@ -103162,10 +103482,11 @@
|
|
|
103162
103482
|
let RecordAggregateConnectionRepository$1 = class RecordAggregateConnectionRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103163
103483
|
constructor(services, typeRegistry) {
|
|
103164
103484
|
super(services);
|
|
103485
|
+
this.services = services;
|
|
103486
|
+
this.typeRegistry = typeRegistry;
|
|
103165
103487
|
this.namespace = "oas";
|
|
103166
103488
|
this.typeName = "RecordAggregateConnection";
|
|
103167
103489
|
this.implementedInterfaces = [];
|
|
103168
|
-
this.typeRegistry = typeRegistry;
|
|
103169
103490
|
}
|
|
103170
103491
|
get fields() {
|
|
103171
103492
|
return {
|
|
@@ -103180,10 +103501,11 @@
|
|
|
103180
103501
|
let RecordAggregateEdgeRepository$1 = class RecordAggregateEdgeRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103181
103502
|
constructor(services, typeRegistry) {
|
|
103182
103503
|
super(services);
|
|
103504
|
+
this.services = services;
|
|
103505
|
+
this.typeRegistry = typeRegistry;
|
|
103183
103506
|
this.namespace = "oas";
|
|
103184
103507
|
this.typeName = "RecordAggregateEdge";
|
|
103185
103508
|
this.implementedInterfaces = [];
|
|
103186
|
-
this.typeRegistry = typeRegistry;
|
|
103187
103509
|
}
|
|
103188
103510
|
get fields() {
|
|
103189
103511
|
return {
|
|
@@ -103197,10 +103519,11 @@
|
|
|
103197
103519
|
let RecordAggregateRepository$1 = class RecordAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103198
103520
|
constructor(services, typeRegistry) {
|
|
103199
103521
|
super(services);
|
|
103522
|
+
this.services = services;
|
|
103523
|
+
this.typeRegistry = typeRegistry;
|
|
103200
103524
|
this.namespace = "oas";
|
|
103201
103525
|
this.typeName = "RecordAggregate";
|
|
103202
103526
|
this.implementedInterfaces = [];
|
|
103203
|
-
this.typeRegistry = typeRegistry;
|
|
103204
103527
|
}
|
|
103205
103528
|
get fields() {
|
|
103206
103529
|
return {
|
|
@@ -103232,10 +103555,11 @@
|
|
|
103232
103555
|
let RecordConnectionRepository$1 = class RecordConnectionRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103233
103556
|
constructor(services, typeRegistry) {
|
|
103234
103557
|
super(services);
|
|
103558
|
+
this.services = services;
|
|
103559
|
+
this.typeRegistry = typeRegistry;
|
|
103235
103560
|
this.namespace = "oas";
|
|
103236
103561
|
this.typeName = "RecordConnection";
|
|
103237
103562
|
this.implementedInterfaces = [];
|
|
103238
|
-
this.typeRegistry = typeRegistry;
|
|
103239
103563
|
}
|
|
103240
103564
|
get fields() {
|
|
103241
103565
|
return {
|
|
@@ -103251,10 +103575,11 @@
|
|
|
103251
103575
|
let RecordCreatePayloadRepository$1 = class RecordCreatePayloadRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103252
103576
|
constructor(services, typeRegistry) {
|
|
103253
103577
|
super(services);
|
|
103578
|
+
this.services = services;
|
|
103579
|
+
this.typeRegistry = typeRegistry;
|
|
103254
103580
|
this.namespace = "oas";
|
|
103255
103581
|
this.typeName = "RecordCreatePayload";
|
|
103256
103582
|
this.implementedInterfaces = [];
|
|
103257
|
-
this.typeRegistry = typeRegistry;
|
|
103258
103583
|
}
|
|
103259
103584
|
get fields() {
|
|
103260
103585
|
return {
|
|
@@ -103267,11 +103592,12 @@
|
|
|
103267
103592
|
let RecordDeletePayloadRepository$1 = class RecordDeletePayloadRepository extends IdentifiableGraphQLTypeRepository {
|
|
103268
103593
|
constructor(services, typeRegistry) {
|
|
103269
103594
|
super(services);
|
|
103595
|
+
this.services = services;
|
|
103596
|
+
this.typeRegistry = typeRegistry;
|
|
103270
103597
|
this.namespace = "oas";
|
|
103271
103598
|
this.typeName = "RecordDeletePayload";
|
|
103272
103599
|
this.implementedInterfaces = [];
|
|
103273
103600
|
this.idField = "Id";
|
|
103274
|
-
this.typeRegistry = typeRegistry;
|
|
103275
103601
|
}
|
|
103276
103602
|
get fields() {
|
|
103277
103603
|
return {
|
|
@@ -103287,10 +103613,11 @@
|
|
|
103287
103613
|
let RecordEdgeRepository$1 = class RecordEdgeRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103288
103614
|
constructor(services, typeRegistry) {
|
|
103289
103615
|
super(services);
|
|
103616
|
+
this.services = services;
|
|
103617
|
+
this.typeRegistry = typeRegistry;
|
|
103290
103618
|
this.namespace = "oas";
|
|
103291
103619
|
this.typeName = "RecordEdge";
|
|
103292
103620
|
this.implementedInterfaces = [];
|
|
103293
|
-
this.typeRegistry = typeRegistry;
|
|
103294
103621
|
}
|
|
103295
103622
|
get fields() {
|
|
103296
103623
|
return {
|
|
@@ -103304,10 +103631,11 @@
|
|
|
103304
103631
|
let RecordQueryAggregateRepository$1 = class RecordQueryAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103305
103632
|
constructor(services, typeRegistry) {
|
|
103306
103633
|
super(services);
|
|
103634
|
+
this.services = services;
|
|
103635
|
+
this.typeRegistry = typeRegistry;
|
|
103307
103636
|
this.namespace = "oas";
|
|
103308
103637
|
this.typeName = "RecordQueryAggregate";
|
|
103309
103638
|
this.implementedInterfaces = [];
|
|
103310
|
-
this.typeRegistry = typeRegistry;
|
|
103311
103639
|
}
|
|
103312
103640
|
get fields() {
|
|
103313
103641
|
return {
|
|
@@ -103320,10 +103648,11 @@
|
|
|
103320
103648
|
let RecordQueryRepository$1 = class RecordQueryRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103321
103649
|
constructor(services, typeRegistry) {
|
|
103322
103650
|
super(services);
|
|
103651
|
+
this.services = services;
|
|
103652
|
+
this.typeRegistry = typeRegistry;
|
|
103323
103653
|
this.namespace = "oas";
|
|
103324
103654
|
this.typeName = "RecordQuery";
|
|
103325
103655
|
this.implementedInterfaces = [];
|
|
103326
|
-
this.typeRegistry = typeRegistry;
|
|
103327
103656
|
}
|
|
103328
103657
|
get fields() {
|
|
103329
103658
|
return {
|
|
@@ -103336,11 +103665,12 @@
|
|
|
103336
103665
|
let RecordRepresentationRepository$1 = class RecordRepresentationRepository extends IdentifiableGraphQLTypeRepository {
|
|
103337
103666
|
constructor(services, typeRegistry) {
|
|
103338
103667
|
super(services);
|
|
103668
|
+
this.services = services;
|
|
103669
|
+
this.typeRegistry = typeRegistry;
|
|
103339
103670
|
this.namespace = "oas";
|
|
103340
103671
|
this.typeName = "RecordRepresentation";
|
|
103341
103672
|
this.implementedInterfaces = ["Record"];
|
|
103342
103673
|
this.idField = "Id";
|
|
103343
|
-
this.typeRegistry = typeRegistry;
|
|
103344
103674
|
}
|
|
103345
103675
|
get fields() {
|
|
103346
103676
|
return {
|
|
@@ -103393,10 +103723,11 @@
|
|
|
103393
103723
|
let RecordResultRepository$1 = class RecordResultRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103394
103724
|
constructor(services, typeRegistry) {
|
|
103395
103725
|
super(services);
|
|
103726
|
+
this.services = services;
|
|
103727
|
+
this.typeRegistry = typeRegistry;
|
|
103396
103728
|
this.namespace = "oas";
|
|
103397
103729
|
this.typeName = "RecordResult";
|
|
103398
103730
|
this.implementedInterfaces = [];
|
|
103399
|
-
this.typeRegistry = typeRegistry;
|
|
103400
103731
|
}
|
|
103401
103732
|
get fields() {
|
|
103402
103733
|
return {
|
|
@@ -103409,10 +103740,11 @@
|
|
|
103409
103740
|
class RecordTypeInfoRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103410
103741
|
constructor(services, typeRegistry) {
|
|
103411
103742
|
super(services);
|
|
103743
|
+
this.services = services;
|
|
103744
|
+
this.typeRegistry = typeRegistry;
|
|
103412
103745
|
this.namespace = "oas";
|
|
103413
103746
|
this.typeName = "RecordTypeInfo";
|
|
103414
103747
|
this.implementedInterfaces = [];
|
|
103415
|
-
this.typeRegistry = typeRegistry;
|
|
103416
103748
|
}
|
|
103417
103749
|
get fields() {
|
|
103418
103750
|
return {
|
|
@@ -103429,10 +103761,11 @@
|
|
|
103429
103761
|
let RecordUpdatePayloadRepository$1 = class RecordUpdatePayloadRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103430
103762
|
constructor(services, typeRegistry) {
|
|
103431
103763
|
super(services);
|
|
103764
|
+
this.services = services;
|
|
103765
|
+
this.typeRegistry = typeRegistry;
|
|
103432
103766
|
this.namespace = "oas";
|
|
103433
103767
|
this.typeName = "RecordUpdatePayload";
|
|
103434
103768
|
this.implementedInterfaces = [];
|
|
103435
|
-
this.typeRegistry = typeRegistry;
|
|
103436
103769
|
}
|
|
103437
103770
|
get fields() {
|
|
103438
103771
|
return {
|
|
@@ -103446,10 +103779,11 @@
|
|
|
103446
103779
|
class ReferenceToInfoRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103447
103780
|
constructor(services, typeRegistry) {
|
|
103448
103781
|
super(services);
|
|
103782
|
+
this.services = services;
|
|
103783
|
+
this.typeRegistry = typeRegistry;
|
|
103449
103784
|
this.namespace = "oas";
|
|
103450
103785
|
this.typeName = "ReferenceToInfo";
|
|
103451
103786
|
this.implementedInterfaces = [];
|
|
103452
|
-
this.typeRegistry = typeRegistry;
|
|
103453
103787
|
}
|
|
103454
103788
|
get fields() {
|
|
103455
103789
|
return {
|
|
@@ -103464,10 +103798,11 @@
|
|
|
103464
103798
|
class RelatedListInfoRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103465
103799
|
constructor(services, typeRegistry) {
|
|
103466
103800
|
super(services);
|
|
103801
|
+
this.services = services;
|
|
103802
|
+
this.typeRegistry = typeRegistry;
|
|
103467
103803
|
this.namespace = "oas";
|
|
103468
103804
|
this.typeName = "RelatedListInfo";
|
|
103469
103805
|
this.implementedInterfaces = [];
|
|
103470
|
-
this.typeRegistry = typeRegistry;
|
|
103471
103806
|
}
|
|
103472
103807
|
get fields() {
|
|
103473
103808
|
return {
|
|
@@ -103486,10 +103821,11 @@
|
|
|
103486
103821
|
class ReportLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103487
103822
|
constructor(services, typeRegistry) {
|
|
103488
103823
|
super(services);
|
|
103824
|
+
this.services = services;
|
|
103825
|
+
this.typeRegistry = typeRegistry;
|
|
103489
103826
|
this.namespace = "oas";
|
|
103490
103827
|
this.typeName = "ReportLayoutComponent";
|
|
103491
103828
|
this.implementedInterfaces = ["LayoutComponent"];
|
|
103492
|
-
this.typeRegistry = typeRegistry;
|
|
103493
103829
|
}
|
|
103494
103830
|
get fields() {
|
|
103495
103831
|
return {
|
|
@@ -103511,10 +103847,11 @@
|
|
|
103511
103847
|
class RichTextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103512
103848
|
constructor(services, typeRegistry) {
|
|
103513
103849
|
super(services);
|
|
103850
|
+
this.services = services;
|
|
103851
|
+
this.typeRegistry = typeRegistry;
|
|
103514
103852
|
this.namespace = "oas";
|
|
103515
103853
|
this.typeName = "RichTextAreaValue";
|
|
103516
103854
|
this.implementedInterfaces = ["FieldValue"];
|
|
103517
|
-
this.typeRegistry = typeRegistry;
|
|
103518
103855
|
}
|
|
103519
103856
|
get fields() {
|
|
103520
103857
|
return {
|
|
@@ -103529,10 +103866,11 @@
|
|
|
103529
103866
|
class SObject__FieldRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103530
103867
|
constructor(services, typeRegistry) {
|
|
103531
103868
|
super(services);
|
|
103869
|
+
this.services = services;
|
|
103870
|
+
this.typeRegistry = typeRegistry;
|
|
103532
103871
|
this.namespace = "oas";
|
|
103533
103872
|
this.typeName = "SObject__Field";
|
|
103534
103873
|
this.implementedInterfaces = [];
|
|
103535
|
-
this.typeRegistry = typeRegistry;
|
|
103536
103874
|
}
|
|
103537
103875
|
get fields() {
|
|
103538
103876
|
return {
|
|
@@ -103546,11 +103884,12 @@
|
|
|
103546
103884
|
class Setup__EntityRepresentationRepository extends IdentifiableGraphQLTypeRepository {
|
|
103547
103885
|
constructor(services, typeRegistry) {
|
|
103548
103886
|
super(services);
|
|
103887
|
+
this.services = services;
|
|
103888
|
+
this.typeRegistry = typeRegistry;
|
|
103549
103889
|
this.namespace = "oas";
|
|
103550
103890
|
this.typeName = "Setup__EntityRepresentation";
|
|
103551
103891
|
this.implementedInterfaces = [];
|
|
103552
103892
|
this.idField = "Id";
|
|
103553
|
-
this.typeRegistry = typeRegistry;
|
|
103554
103893
|
}
|
|
103555
103894
|
get fields() {
|
|
103556
103895
|
return {
|
|
@@ -103597,10 +103936,11 @@
|
|
|
103597
103936
|
class Setup__ListColumnRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103598
103937
|
constructor(services, typeRegistry) {
|
|
103599
103938
|
super(services);
|
|
103939
|
+
this.services = services;
|
|
103940
|
+
this.typeRegistry = typeRegistry;
|
|
103600
103941
|
this.namespace = "oas";
|
|
103601
103942
|
this.typeName = "Setup__ListColumn";
|
|
103602
103943
|
this.implementedInterfaces = [];
|
|
103603
|
-
this.typeRegistry = typeRegistry;
|
|
103604
103944
|
}
|
|
103605
103945
|
get fields() {
|
|
103606
103946
|
return {
|
|
@@ -103622,10 +103962,11 @@
|
|
|
103622
103962
|
class Setup__ListFilterRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103623
103963
|
constructor(services, typeRegistry) {
|
|
103624
103964
|
super(services);
|
|
103965
|
+
this.services = services;
|
|
103966
|
+
this.typeRegistry = typeRegistry;
|
|
103625
103967
|
this.namespace = "oas";
|
|
103626
103968
|
this.typeName = "Setup__ListFilter";
|
|
103627
103969
|
this.implementedInterfaces = [];
|
|
103628
|
-
this.typeRegistry = typeRegistry;
|
|
103629
103970
|
}
|
|
103630
103971
|
get fields() {
|
|
103631
103972
|
return {
|
|
@@ -103641,10 +103982,11 @@
|
|
|
103641
103982
|
class Setup__ListInlineEditAttributeDetailsRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103642
103983
|
constructor(services, typeRegistry) {
|
|
103643
103984
|
super(services);
|
|
103985
|
+
this.services = services;
|
|
103986
|
+
this.typeRegistry = typeRegistry;
|
|
103644
103987
|
this.namespace = "oas";
|
|
103645
103988
|
this.typeName = "Setup__ListInlineEditAttributeDetails";
|
|
103646
103989
|
this.implementedInterfaces = [];
|
|
103647
|
-
this.typeRegistry = typeRegistry;
|
|
103648
103990
|
}
|
|
103649
103991
|
get fields() {
|
|
103650
103992
|
return {
|
|
@@ -103659,10 +104001,11 @@
|
|
|
103659
104001
|
class Setup__ListInlineEditAttributesRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103660
104002
|
constructor(services, typeRegistry) {
|
|
103661
104003
|
super(services);
|
|
104004
|
+
this.services = services;
|
|
104005
|
+
this.typeRegistry = typeRegistry;
|
|
103662
104006
|
this.namespace = "oas";
|
|
103663
104007
|
this.typeName = "Setup__ListInlineEditAttributes";
|
|
103664
104008
|
this.implementedInterfaces = [];
|
|
103665
|
-
this.typeRegistry = typeRegistry;
|
|
103666
104009
|
}
|
|
103667
104010
|
get fields() {
|
|
103668
104011
|
return {
|
|
@@ -103677,10 +104020,11 @@
|
|
|
103677
104020
|
class Setup__ListOrderRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103678
104021
|
constructor(services, typeRegistry) {
|
|
103679
104022
|
super(services);
|
|
104023
|
+
this.services = services;
|
|
104024
|
+
this.typeRegistry = typeRegistry;
|
|
103680
104025
|
this.namespace = "oas";
|
|
103681
104026
|
this.typeName = "Setup__ListOrder";
|
|
103682
104027
|
this.implementedInterfaces = [];
|
|
103683
|
-
this.typeRegistry = typeRegistry;
|
|
103684
104028
|
}
|
|
103685
104029
|
get fields() {
|
|
103686
104030
|
return {
|
|
@@ -103695,10 +104039,11 @@
|
|
|
103695
104039
|
class Setup__ListScalarFieldRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103696
104040
|
constructor(services, typeRegistry) {
|
|
103697
104041
|
super(services);
|
|
104042
|
+
this.services = services;
|
|
104043
|
+
this.typeRegistry = typeRegistry;
|
|
103698
104044
|
this.namespace = "oas";
|
|
103699
104045
|
this.typeName = "Setup__ListScalarField";
|
|
103700
104046
|
this.implementedInterfaces = [];
|
|
103701
|
-
this.typeRegistry = typeRegistry;
|
|
103702
104047
|
}
|
|
103703
104048
|
get fields() {
|
|
103704
104049
|
return {
|
|
@@ -103718,10 +104063,11 @@
|
|
|
103718
104063
|
class Setup__ListViewObjectInfoRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103719
104064
|
constructor(services, typeRegistry) {
|
|
103720
104065
|
super(services);
|
|
104066
|
+
this.services = services;
|
|
104067
|
+
this.typeRegistry = typeRegistry;
|
|
103721
104068
|
this.namespace = "oas";
|
|
103722
104069
|
this.typeName = "Setup__ListViewObjectInfo";
|
|
103723
104070
|
this.implementedInterfaces = [];
|
|
103724
|
-
this.typeRegistry = typeRegistry;
|
|
103725
104071
|
}
|
|
103726
104072
|
get fields() {
|
|
103727
104073
|
return {
|
|
@@ -103734,10 +104080,11 @@
|
|
|
103734
104080
|
class Setup__ListViewRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103735
104081
|
constructor(services, typeRegistry) {
|
|
103736
104082
|
super(services);
|
|
104083
|
+
this.services = services;
|
|
104084
|
+
this.typeRegistry = typeRegistry;
|
|
103737
104085
|
this.namespace = "oas";
|
|
103738
104086
|
this.typeName = "Setup__ListView";
|
|
103739
104087
|
this.implementedInterfaces = [];
|
|
103740
|
-
this.typeRegistry = typeRegistry;
|
|
103741
104088
|
}
|
|
103742
104089
|
get fields() {
|
|
103743
104090
|
return {
|
|
@@ -103758,10 +104105,11 @@
|
|
|
103758
104105
|
class Setup__ListViewRowConnectionRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103759
104106
|
constructor(services, typeRegistry) {
|
|
103760
104107
|
super(services);
|
|
104108
|
+
this.services = services;
|
|
104109
|
+
this.typeRegistry = typeRegistry;
|
|
103761
104110
|
this.namespace = "oas";
|
|
103762
104111
|
this.typeName = "Setup__ListViewRowConnection";
|
|
103763
104112
|
this.implementedInterfaces = [];
|
|
103764
|
-
this.typeRegistry = typeRegistry;
|
|
103765
104113
|
}
|
|
103766
104114
|
get fields() {
|
|
103767
104115
|
return {
|
|
@@ -103776,10 +104124,11 @@
|
|
|
103776
104124
|
class Setup__ListViewRowEdgeRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103777
104125
|
constructor(services, typeRegistry) {
|
|
103778
104126
|
super(services);
|
|
104127
|
+
this.services = services;
|
|
104128
|
+
this.typeRegistry = typeRegistry;
|
|
103779
104129
|
this.namespace = "oas";
|
|
103780
104130
|
this.typeName = "Setup__ListViewRowEdge";
|
|
103781
104131
|
this.implementedInterfaces = [];
|
|
103782
|
-
this.typeRegistry = typeRegistry;
|
|
103783
104132
|
}
|
|
103784
104133
|
get fields() {
|
|
103785
104134
|
return {
|
|
@@ -103793,10 +104142,11 @@
|
|
|
103793
104142
|
class Setup__ListViewRowRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103794
104143
|
constructor(services, typeRegistry) {
|
|
103795
104144
|
super(services);
|
|
104145
|
+
this.services = services;
|
|
104146
|
+
this.typeRegistry = typeRegistry;
|
|
103796
104147
|
this.namespace = "oas";
|
|
103797
104148
|
this.typeName = "Setup__ListViewRow";
|
|
103798
104149
|
this.implementedInterfaces = [];
|
|
103799
|
-
this.typeRegistry = typeRegistry;
|
|
103800
104150
|
}
|
|
103801
104151
|
get fields() {
|
|
103802
104152
|
return {
|
|
@@ -103810,10 +104160,11 @@
|
|
|
103810
104160
|
class Setup__SetupAggregateConnectionRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103811
104161
|
constructor(services, typeRegistry) {
|
|
103812
104162
|
super(services);
|
|
104163
|
+
this.services = services;
|
|
104164
|
+
this.typeRegistry = typeRegistry;
|
|
103813
104165
|
this.namespace = "oas";
|
|
103814
104166
|
this.typeName = "Setup__SetupAggregateConnection";
|
|
103815
104167
|
this.implementedInterfaces = [];
|
|
103816
|
-
this.typeRegistry = typeRegistry;
|
|
103817
104168
|
}
|
|
103818
104169
|
get fields() {
|
|
103819
104170
|
return {
|
|
@@ -103828,10 +104179,11 @@
|
|
|
103828
104179
|
class Setup__SetupAggregateEdgeRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103829
104180
|
constructor(services, typeRegistry) {
|
|
103830
104181
|
super(services);
|
|
104182
|
+
this.services = services;
|
|
104183
|
+
this.typeRegistry = typeRegistry;
|
|
103831
104184
|
this.namespace = "oas";
|
|
103832
104185
|
this.typeName = "Setup__SetupAggregateEdge";
|
|
103833
104186
|
this.implementedInterfaces = [];
|
|
103834
|
-
this.typeRegistry = typeRegistry;
|
|
103835
104187
|
}
|
|
103836
104188
|
get fields() {
|
|
103837
104189
|
return {
|
|
@@ -103845,10 +104197,11 @@
|
|
|
103845
104197
|
class Setup__SetupConnectionRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103846
104198
|
constructor(services, typeRegistry) {
|
|
103847
104199
|
super(services);
|
|
104200
|
+
this.services = services;
|
|
104201
|
+
this.typeRegistry = typeRegistry;
|
|
103848
104202
|
this.namespace = "oas";
|
|
103849
104203
|
this.typeName = "Setup__SetupConnection";
|
|
103850
104204
|
this.implementedInterfaces = [];
|
|
103851
|
-
this.typeRegistry = typeRegistry;
|
|
103852
104205
|
}
|
|
103853
104206
|
get fields() {
|
|
103854
104207
|
return {
|
|
@@ -103864,10 +104217,11 @@
|
|
|
103864
104217
|
class Setup__SetupEdgeRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103865
104218
|
constructor(services, typeRegistry) {
|
|
103866
104219
|
super(services);
|
|
104220
|
+
this.services = services;
|
|
104221
|
+
this.typeRegistry = typeRegistry;
|
|
103867
104222
|
this.namespace = "oas";
|
|
103868
104223
|
this.typeName = "Setup__SetupEdge";
|
|
103869
104224
|
this.implementedInterfaces = [];
|
|
103870
|
-
this.typeRegistry = typeRegistry;
|
|
103871
104225
|
}
|
|
103872
104226
|
get fields() {
|
|
103873
104227
|
return {
|
|
@@ -103881,10 +104235,11 @@
|
|
|
103881
104235
|
class Setup__SetupPolymorphicAggregateParentRelationshipRepository extends BaseUnionRepository {
|
|
103882
104236
|
constructor(services, typeRegistry) {
|
|
103883
104237
|
super(services);
|
|
104238
|
+
this.services = services;
|
|
104239
|
+
this.typeRegistry = typeRegistry;
|
|
103884
104240
|
this.namespace = "oas";
|
|
103885
104241
|
this.typeName = "Setup__SetupPolymorphicAggregateParentRelationship";
|
|
103886
104242
|
this.implementedInterfaces = [];
|
|
103887
|
-
this.typeRegistry = typeRegistry;
|
|
103888
104243
|
}
|
|
103889
104244
|
get fields() {
|
|
103890
104245
|
return {
|
|
@@ -103901,10 +104256,11 @@
|
|
|
103901
104256
|
class Setup__SetupPolymorphicParentRelationshipRepository extends BaseUnionRepository {
|
|
103902
104257
|
constructor(services, typeRegistry) {
|
|
103903
104258
|
super(services);
|
|
104259
|
+
this.services = services;
|
|
104260
|
+
this.typeRegistry = typeRegistry;
|
|
103904
104261
|
this.namespace = "oas";
|
|
103905
104262
|
this.typeName = "Setup__SetupPolymorphicParentRelationship";
|
|
103906
104263
|
this.implementedInterfaces = [];
|
|
103907
|
-
this.typeRegistry = typeRegistry;
|
|
103908
104264
|
}
|
|
103909
104265
|
get fields() {
|
|
103910
104266
|
return {
|
|
@@ -103921,10 +104277,11 @@
|
|
|
103921
104277
|
class Setup__SetupQueryAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103922
104278
|
constructor(services, typeRegistry) {
|
|
103923
104279
|
super(services);
|
|
104280
|
+
this.services = services;
|
|
104281
|
+
this.typeRegistry = typeRegistry;
|
|
103924
104282
|
this.namespace = "oas";
|
|
103925
104283
|
this.typeName = "Setup__SetupQueryAggregate";
|
|
103926
104284
|
this.implementedInterfaces = [];
|
|
103927
|
-
this.typeRegistry = typeRegistry;
|
|
103928
104285
|
}
|
|
103929
104286
|
get fields() {
|
|
103930
104287
|
return {
|
|
@@ -103937,10 +104294,11 @@
|
|
|
103937
104294
|
class Setup__SetupQueryRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103938
104295
|
constructor(services, typeRegistry) {
|
|
103939
104296
|
super(services);
|
|
104297
|
+
this.services = services;
|
|
104298
|
+
this.typeRegistry = typeRegistry;
|
|
103940
104299
|
this.namespace = "oas";
|
|
103941
104300
|
this.typeName = "Setup__SetupQuery";
|
|
103942
104301
|
this.implementedInterfaces = [];
|
|
103943
|
-
this.typeRegistry = typeRegistry;
|
|
103944
104302
|
}
|
|
103945
104303
|
get fields() {
|
|
103946
104304
|
return {
|
|
@@ -103953,10 +104311,11 @@
|
|
|
103953
104311
|
class Setup__SetupRecordAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103954
104312
|
constructor(services, typeRegistry) {
|
|
103955
104313
|
super(services);
|
|
104314
|
+
this.services = services;
|
|
104315
|
+
this.typeRegistry = typeRegistry;
|
|
103956
104316
|
this.namespace = "oas";
|
|
103957
104317
|
this.typeName = "Setup__SetupRecordAggregate";
|
|
103958
104318
|
this.implementedInterfaces = [];
|
|
103959
|
-
this.typeRegistry = typeRegistry;
|
|
103960
104319
|
}
|
|
103961
104320
|
get fields() {
|
|
103962
104321
|
return {
|
|
@@ -103988,10 +104347,11 @@
|
|
|
103988
104347
|
class Setup__SetupRecordResultRepository extends UnidentifiableGraphQLTypeRepository {
|
|
103989
104348
|
constructor(services, typeRegistry) {
|
|
103990
104349
|
super(services);
|
|
104350
|
+
this.services = services;
|
|
104351
|
+
this.typeRegistry = typeRegistry;
|
|
103991
104352
|
this.namespace = "oas";
|
|
103992
104353
|
this.typeName = "Setup__SetupRecordResult";
|
|
103993
104354
|
this.implementedInterfaces = [];
|
|
103994
|
-
this.typeRegistry = typeRegistry;
|
|
103995
104355
|
}
|
|
103996
104356
|
get fields() {
|
|
103997
104357
|
return {
|
|
@@ -104004,10 +104364,11 @@
|
|
|
104004
104364
|
class Setup__SetupRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104005
104365
|
constructor(services, typeRegistry) {
|
|
104006
104366
|
super(services);
|
|
104367
|
+
this.services = services;
|
|
104368
|
+
this.typeRegistry = typeRegistry;
|
|
104007
104369
|
this.namespace = "oas";
|
|
104008
104370
|
this.typeName = "Setup__Setup";
|
|
104009
104371
|
this.implementedInterfaces = [];
|
|
104010
|
-
this.typeRegistry = typeRegistry;
|
|
104011
104372
|
}
|
|
104012
104373
|
get fields() {
|
|
104013
104374
|
return {
|
|
@@ -104024,10 +104385,11 @@
|
|
|
104024
104385
|
class StandardFieldRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104025
104386
|
constructor(services, typeRegistry) {
|
|
104026
104387
|
super(services);
|
|
104388
|
+
this.services = services;
|
|
104389
|
+
this.typeRegistry = typeRegistry;
|
|
104027
104390
|
this.namespace = "oas";
|
|
104028
104391
|
this.typeName = "StandardField";
|
|
104029
104392
|
this.implementedInterfaces = ["Field"];
|
|
104030
|
-
this.typeRegistry = typeRegistry;
|
|
104031
104393
|
}
|
|
104032
104394
|
get fields() {
|
|
104033
104395
|
return {
|
|
@@ -104068,10 +104430,11 @@
|
|
|
104068
104430
|
class StringAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104069
104431
|
constructor(services, typeRegistry) {
|
|
104070
104432
|
super(services);
|
|
104433
|
+
this.services = services;
|
|
104434
|
+
this.typeRegistry = typeRegistry;
|
|
104071
104435
|
this.namespace = "oas";
|
|
104072
104436
|
this.typeName = "StringAggregate";
|
|
104073
104437
|
this.implementedInterfaces = ["FieldValue"];
|
|
104074
|
-
this.typeRegistry = typeRegistry;
|
|
104075
104438
|
}
|
|
104076
104439
|
get fields() {
|
|
104077
104440
|
return {
|
|
@@ -104091,10 +104454,11 @@
|
|
|
104091
104454
|
class StringValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104092
104455
|
constructor(services, typeRegistry) {
|
|
104093
104456
|
super(services);
|
|
104457
|
+
this.services = services;
|
|
104458
|
+
this.typeRegistry = typeRegistry;
|
|
104094
104459
|
this.namespace = "oas";
|
|
104095
104460
|
this.typeName = "StringValue";
|
|
104096
104461
|
this.implementedInterfaces = ["FieldValue"];
|
|
104097
|
-
this.typeRegistry = typeRegistry;
|
|
104098
104462
|
}
|
|
104099
104463
|
get fields() {
|
|
104100
104464
|
return {
|
|
@@ -104109,10 +104473,11 @@
|
|
|
104109
104473
|
class TextAreaAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104110
104474
|
constructor(services, typeRegistry) {
|
|
104111
104475
|
super(services);
|
|
104476
|
+
this.services = services;
|
|
104477
|
+
this.typeRegistry = typeRegistry;
|
|
104112
104478
|
this.namespace = "oas";
|
|
104113
104479
|
this.typeName = "TextAreaAggregate";
|
|
104114
104480
|
this.implementedInterfaces = ["FieldValue"];
|
|
104115
|
-
this.typeRegistry = typeRegistry;
|
|
104116
104481
|
}
|
|
104117
104482
|
get fields() {
|
|
104118
104483
|
return {
|
|
@@ -104132,10 +104497,11 @@
|
|
|
104132
104497
|
class TextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104133
104498
|
constructor(services, typeRegistry) {
|
|
104134
104499
|
super(services);
|
|
104500
|
+
this.services = services;
|
|
104501
|
+
this.typeRegistry = typeRegistry;
|
|
104135
104502
|
this.namespace = "oas";
|
|
104136
104503
|
this.typeName = "TextAreaValue";
|
|
104137
104504
|
this.implementedInterfaces = ["FieldValue"];
|
|
104138
|
-
this.typeRegistry = typeRegistry;
|
|
104139
104505
|
}
|
|
104140
104506
|
get fields() {
|
|
104141
104507
|
return {
|
|
@@ -104150,10 +104516,11 @@
|
|
|
104150
104516
|
class ThemeInfoRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104151
104517
|
constructor(services, typeRegistry) {
|
|
104152
104518
|
super(services);
|
|
104519
|
+
this.services = services;
|
|
104520
|
+
this.typeRegistry = typeRegistry;
|
|
104153
104521
|
this.namespace = "oas";
|
|
104154
104522
|
this.typeName = "ThemeInfo";
|
|
104155
104523
|
this.implementedInterfaces = [];
|
|
104156
|
-
this.typeRegistry = typeRegistry;
|
|
104157
104524
|
}
|
|
104158
104525
|
get fields() {
|
|
104159
104526
|
return {
|
|
@@ -104167,10 +104534,11 @@
|
|
|
104167
104534
|
class TimeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104168
104535
|
constructor(services, typeRegistry) {
|
|
104169
104536
|
super(services);
|
|
104537
|
+
this.services = services;
|
|
104538
|
+
this.typeRegistry = typeRegistry;
|
|
104170
104539
|
this.namespace = "oas";
|
|
104171
104540
|
this.typeName = "TimeAggregate";
|
|
104172
104541
|
this.implementedInterfaces = ["FieldValue"];
|
|
104173
|
-
this.typeRegistry = typeRegistry;
|
|
104174
104542
|
}
|
|
104175
104543
|
get fields() {
|
|
104176
104544
|
return {
|
|
@@ -104186,10 +104554,11 @@
|
|
|
104186
104554
|
class TimeValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104187
104555
|
constructor(services, typeRegistry) {
|
|
104188
104556
|
super(services);
|
|
104557
|
+
this.services = services;
|
|
104558
|
+
this.typeRegistry = typeRegistry;
|
|
104189
104559
|
this.namespace = "oas";
|
|
104190
104560
|
this.typeName = "TimeValue";
|
|
104191
104561
|
this.implementedInterfaces = ["FieldValue"];
|
|
104192
|
-
this.typeRegistry = typeRegistry;
|
|
104193
104562
|
}
|
|
104194
104563
|
get fields() {
|
|
104195
104564
|
return {
|
|
@@ -104204,10 +104573,11 @@
|
|
|
104204
104573
|
let UIAPIMutationsRepository$1 = class UIAPIMutationsRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104205
104574
|
constructor(services, typeRegistry) {
|
|
104206
104575
|
super(services);
|
|
104576
|
+
this.services = services;
|
|
104577
|
+
this.typeRegistry = typeRegistry;
|
|
104207
104578
|
this.namespace = "oas";
|
|
104208
104579
|
this.typeName = "UIAPIMutations";
|
|
104209
104580
|
this.implementedInterfaces = [];
|
|
104210
|
-
this.typeRegistry = typeRegistry;
|
|
104211
104581
|
}
|
|
104212
104582
|
get fields() {
|
|
104213
104583
|
return {
|
|
@@ -104222,10 +104592,11 @@
|
|
|
104222
104592
|
class UIAPIRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104223
104593
|
constructor(services, typeRegistry) {
|
|
104224
104594
|
super(services);
|
|
104595
|
+
this.services = services;
|
|
104596
|
+
this.typeRegistry = typeRegistry;
|
|
104225
104597
|
this.namespace = "oas";
|
|
104226
104598
|
this.typeName = "UIAPI";
|
|
104227
104599
|
this.implementedInterfaces = [];
|
|
104228
|
-
this.typeRegistry = typeRegistry;
|
|
104229
104600
|
}
|
|
104230
104601
|
get fields() {
|
|
104231
104602
|
return {
|
|
@@ -104243,10 +104614,11 @@
|
|
|
104243
104614
|
class UrlAggregateRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104244
104615
|
constructor(services, typeRegistry) {
|
|
104245
104616
|
super(services);
|
|
104617
|
+
this.services = services;
|
|
104618
|
+
this.typeRegistry = typeRegistry;
|
|
104246
104619
|
this.namespace = "oas";
|
|
104247
104620
|
this.typeName = "UrlAggregate";
|
|
104248
104621
|
this.implementedInterfaces = ["FieldValue"];
|
|
104249
|
-
this.typeRegistry = typeRegistry;
|
|
104250
104622
|
}
|
|
104251
104623
|
get fields() {
|
|
104252
104624
|
return {
|
|
@@ -104265,10 +104637,11 @@
|
|
|
104265
104637
|
class UrlValueRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104266
104638
|
constructor(services, typeRegistry) {
|
|
104267
104639
|
super(services);
|
|
104640
|
+
this.services = services;
|
|
104641
|
+
this.typeRegistry = typeRegistry;
|
|
104268
104642
|
this.namespace = "oas";
|
|
104269
104643
|
this.typeName = "UrlValue";
|
|
104270
104644
|
this.implementedInterfaces = ["FieldValue"];
|
|
104271
|
-
this.typeRegistry = typeRegistry;
|
|
104272
104645
|
}
|
|
104273
104646
|
get fields() {
|
|
104274
104647
|
return {
|
|
@@ -104282,10 +104655,11 @@
|
|
|
104282
104655
|
class VisualforceLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
|
|
104283
104656
|
constructor(services, typeRegistry) {
|
|
104284
104657
|
super(services);
|
|
104658
|
+
this.services = services;
|
|
104659
|
+
this.typeRegistry = typeRegistry;
|
|
104285
104660
|
this.namespace = "oas";
|
|
104286
104661
|
this.typeName = "VisualforceLayoutComponent";
|
|
104287
104662
|
this.implementedInterfaces = ["LayoutComponent"];
|
|
104288
|
-
this.typeRegistry = typeRegistry;
|
|
104289
104663
|
}
|
|
104290
104664
|
get fields() {
|
|
104291
104665
|
return {
|
|
@@ -105944,7 +106318,6 @@
|
|
|
105944
106318
|
this.config = config;
|
|
105945
106319
|
this.documentRootType = documentRootType;
|
|
105946
106320
|
this.services = services;
|
|
105947
|
-
this.endpoint = 'RecordUiController.executeGraphQL';
|
|
105948
106321
|
}
|
|
105949
106322
|
get url() {
|
|
105950
106323
|
return '/services/data/v68.0/graphql';
|
|
@@ -105956,22 +106329,6 @@
|
|
|
105956
106329
|
now: Date.now() / 1000,
|
|
105957
106330
|
};
|
|
105958
106331
|
}
|
|
105959
|
-
get auraBodyWrapperName() {
|
|
105960
|
-
return 'queryInput';
|
|
105961
|
-
}
|
|
105962
|
-
get auraParams() {
|
|
105963
|
-
const params = super.auraParams;
|
|
105964
|
-
const body = params[this.auraBodyWrapperName];
|
|
105965
|
-
return {
|
|
105966
|
-
...params,
|
|
105967
|
-
[this.auraBodyWrapperName]: {
|
|
105968
|
-
...body,
|
|
105969
|
-
extensions: {
|
|
105970
|
-
requiredTypeFields,
|
|
105971
|
-
},
|
|
105972
|
-
},
|
|
105973
|
-
};
|
|
105974
|
-
}
|
|
105975
106332
|
get fetchParams() {
|
|
105976
106333
|
const [url, params] = super.fetchParams;
|
|
105977
106334
|
const body = JSON.parse(params.body);
|
|
@@ -106545,6 +106902,26 @@
|
|
|
106545
106902
|
return cloned;
|
|
106546
106903
|
}
|
|
106547
106904
|
|
|
106905
|
+
const requiredKeys = ['query'];
|
|
106906
|
+
const optionalKeys = ['variables', 'operationName'];
|
|
106907
|
+
/**
|
|
106908
|
+
* Factory that builds the graphql adapter-state-manager from a `getCommand`
|
|
106909
|
+
* function. Used on-core (with the platform-supplied command constructor that
|
|
106910
|
+
* provisions services from `_conduit_client_service_provisioner_v1`) and reused
|
|
106911
|
+
* off-core (with a host-provided command, e.g. an MCP-backed command synthesized
|
|
106912
|
+
* by `vite-plugin-lwc-ui-bundle`'s runtime).
|
|
106913
|
+
*
|
|
106914
|
+
* Mirrors the shape of `createSmRecord` / `createSmObjectInfo` in
|
|
106915
|
+
* `@salesforce/state-managers-uiapi`: factory + fixed config-key contract,
|
|
106916
|
+
* adapter supplied by the caller.
|
|
106917
|
+
*
|
|
106918
|
+
* @param getCommand - Function that takes a config and returns a `GraphQLCommand`
|
|
106919
|
+
* @returns The graphql adapter-state-manager definition
|
|
106920
|
+
*/
|
|
106921
|
+
function createSmGraphQL(getCommand) {
|
|
106922
|
+
return createStateManager(getCommand, requiredKeys, optionalKeys);
|
|
106923
|
+
}
|
|
106924
|
+
|
|
106548
106925
|
let graphql$1;
|
|
106549
106926
|
let graphql_v1_import;
|
|
106550
106927
|
let graphql_imperative$1;
|
|
@@ -106593,19 +106970,13 @@
|
|
|
106593
106970
|
type: 'lwcGraphQLWireBindings',
|
|
106594
106971
|
version: '1.0',
|
|
106595
106972
|
},
|
|
106596
|
-
|
|
106597
|
-
type: '
|
|
106973
|
+
httpGraphQLNormalizedCacheControlCommand: {
|
|
106974
|
+
type: 'httpGraphQLNormalizedCacheControlCommand',
|
|
106598
106975
|
version: '1.0',
|
|
106599
106976
|
},
|
|
106600
|
-
auraNetwork: {
|
|
106601
|
-
type: 'auraNetwork',
|
|
106602
|
-
version: '1.0',
|
|
106603
|
-
optional: true,
|
|
106604
|
-
},
|
|
106605
106977
|
fetch: {
|
|
106606
106978
|
type: 'fetch',
|
|
106607
106979
|
version: '1.0',
|
|
106608
|
-
optional: true,
|
|
106609
106980
|
},
|
|
106610
106981
|
luvio: {
|
|
106611
106982
|
type: 'luvio',
|
|
@@ -106631,7 +107002,7 @@
|
|
|
106631
107002
|
const graphqlTypeRegistry = new CustomGraphQLTypeRegistry(services);
|
|
106632
107003
|
const documentRootType = graphqlTypeRegistry.Query;
|
|
106633
107004
|
const mutationType = graphqlTypeRegistry.Mutation;
|
|
106634
|
-
const graphql_ctor = services.instrumentCommand(buildCommandClass(services.
|
|
107005
|
+
const graphql_ctor = services.instrumentCommand(buildCommandClass(services.httpGraphQLNormalizedCacheControlCommand), 'graphqlCommand');
|
|
106635
107006
|
graphql$1 = services.lwcGraphQLWireBindings.bind((config) => new graphql_ctor(config, documentRootType, services), CONFIG_SCHEMA, true);
|
|
106636
107007
|
class GraphqlV1ImportAdapter extends graphql$1 {
|
|
106637
107008
|
update(config, _context) {
|
|
@@ -106645,7 +107016,7 @@
|
|
|
106645
107016
|
}
|
|
106646
107017
|
}
|
|
106647
107018
|
graphql_v1_import = GraphqlV1ImportAdapter;
|
|
106648
|
-
const graphql_imperative_ctor = services.instrumentCommand(buildCommandClass(services.
|
|
107019
|
+
const graphql_imperative_ctor = services.instrumentCommand(buildCommandClass(services.httpGraphQLNormalizedCacheControlCommand), 'graphqlCommand');
|
|
106649
107020
|
graphql_imperative$1 = services.graphQLImperativeBindings.bind(({ params, assertIsValid }) => {
|
|
106650
107021
|
const config = params[0];
|
|
106651
107022
|
const options = params[1];
|
|
@@ -106673,7 +107044,7 @@
|
|
|
106673
107044
|
/*
|
|
106674
107045
|
* State Manager
|
|
106675
107046
|
*/
|
|
106676
|
-
const graphql_state_manager_ctor = services.instrumentCommand(buildCommandClass(services.
|
|
107047
|
+
const graphql_state_manager_ctor = services.instrumentCommand(buildCommandClass(services.httpGraphQLNormalizedCacheControlCommand), 'graphql_state_manager');
|
|
106677
107048
|
const factory = (config) => {
|
|
106678
107049
|
assertIsValid$1(config, CONFIG_SCHEMA);
|
|
106679
107050
|
const validatedConfig = resolveAndValidateGraphQLConfig(config, {
|
|
@@ -106685,8 +107056,8 @@
|
|
|
106685
107056
|
}
|
|
106686
107057
|
return new graphql_state_manager_ctor(validatedConfig.value, documentRootType, services);
|
|
106687
107058
|
};
|
|
106688
|
-
graphql_state_manager =
|
|
106689
|
-
const executeMutation_ctor = services.instrumentCommand(buildCommandClass(services.
|
|
107059
|
+
graphql_state_manager = createSmGraphQL(factory);
|
|
107060
|
+
const executeMutation_ctor = services.instrumentCommand(buildCommandClass(services.httpGraphQLNormalizedCacheControlCommand), 'graphqlCommand');
|
|
106690
107061
|
services.graphQLMutationBindings.bind(({ params, assertIsValid }) => {
|
|
106691
107062
|
const config = params[0];
|
|
106692
107063
|
const options = params[1];
|
|
@@ -106708,7 +107079,7 @@
|
|
|
106708
107079
|
cb(graphql_v1_import, graphql_imperative$1, graphql_imperative_legacy_v1_import, graphql_state_manager, useOneStoreGraphQL);
|
|
106709
107080
|
}
|
|
106710
107081
|
}
|
|
106711
|
-
// version: 1.
|
|
107082
|
+
// version: 1.439.0-1d518350b5
|
|
106712
107083
|
|
|
106713
107084
|
function createFragmentMap(documentNode) {
|
|
106714
107085
|
const fragments = {};
|
|
@@ -135915,7 +136286,7 @@
|
|
|
135915
136286
|
configuration: { ...configurationForGraphQLAdapters$1 },
|
|
135916
136287
|
instrument: instrument$1,
|
|
135917
136288
|
});
|
|
135918
|
-
// version: 1.
|
|
136289
|
+
// version: 1.439.0-1d518350b5
|
|
135919
136290
|
|
|
135920
136291
|
// On core the unstable adapters are re-exported with different names,
|
|
135921
136292
|
// we want to match them here.
|
|
@@ -136067,7 +136438,7 @@
|
|
|
136067
136438
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
136068
136439
|
graphQLImperative = ldsAdapter;
|
|
136069
136440
|
});
|
|
136070
|
-
// version: 1.
|
|
136441
|
+
// version: 1.439.0-1d518350b5
|
|
136071
136442
|
|
|
136072
136443
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
136073
136444
|
__proto__: null,
|
|
@@ -136866,7 +137237,7 @@
|
|
|
136866
137237
|
function register(r) {
|
|
136867
137238
|
callbacks$1.forEach((callback) => callback(r));
|
|
136868
137239
|
}
|
|
136869
|
-
// version: 1.
|
|
137240
|
+
// version: 1.439.0-e3dc0cfb2a
|
|
136870
137241
|
|
|
136871
137242
|
/**
|
|
136872
137243
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -138176,4 +138547,4 @@
|
|
|
138176
138547
|
exports.subscribeToAdapter = subscribeToAdapter;
|
|
138177
138548
|
|
|
138178
138549
|
}));
|
|
138179
|
-
// version: 1.
|
|
138550
|
+
// version: 1.439.0-e3dc0cfb2a
|