@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.
@@ -4276,7 +4276,7 @@ function withDefaultLuvio(callback) {
4276
4276
  }
4277
4277
  callbacks.push(callback);
4278
4278
  }
4279
- // version: 1.438.0-0ec0a89235
4279
+ // version: 1.439.0-e3dc0cfb2a
4280
4280
 
4281
4281
  // TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
4282
4282
  function instrumentAdapter$1(createFunction, _metadata) {
@@ -5320,7 +5320,7 @@ function createGraphQLWireAdapterConstructor(luvio, adapter, metadata, astResolv
5320
5320
  const { apiFamily, name } = metadata;
5321
5321
  return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
5322
5322
  }
5323
- // version: 1.438.0-0ec0a89235
5323
+ // version: 1.439.0-e3dc0cfb2a
5324
5324
 
5325
5325
  function isSupportedEntity(_objectApiName) {
5326
5326
  return true;
@@ -32538,7 +32538,7 @@ withDefaultLuvio((luvio) => {
32538
32538
  throttle(60, 60000, setupNotifyAllListRecordUpdateAvailable(luvio));
32539
32539
  throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
32540
32540
  });
32541
- // version: 1.438.0-242a4ab027
32541
+ // version: 1.439.0-1d518350b5
32542
32542
 
32543
32543
  var allowUpdatesForNonCachedRecords = {
32544
32544
  isOpen: function (e) {
@@ -44179,6 +44179,11 @@ var useOneStore = {
44179
44179
  },
44180
44180
  };
44181
44181
 
44182
+ /*!
44183
+ * Copyright (c) 2022, Salesforce, Inc.,
44184
+ * All rights reserved.
44185
+ * For full license text, see the LICENSE.txt file
44186
+ */
44182
44187
  const { create: create$7, freeze: freeze$4, keys: keys$8, entries: entries$5 } = Object;
44183
44188
  const { hasOwnProperty: hasOwnProperty$3 } = Object.prototype;
44184
44189
  const { isArray: isArray$7 } = Array;
@@ -44242,7 +44247,7 @@ function rejectedPromiseLike$4(reason) {
44242
44247
  };
44243
44248
  }
44244
44249
  function isPromiseLike$4(x) {
44245
- return typeof x?.then === "function";
44250
+ return typeof (x == null ? void 0 : x.then) === "function";
44246
44251
  }
44247
44252
  function racesync(values) {
44248
44253
  for (const value of values) {
@@ -44359,12 +44364,20 @@ function logError$2(error) {
44359
44364
  console.error("OneStore Command threw an error that we did not expect", error);
44360
44365
  }
44361
44366
 
44367
+ /*!
44368
+ * Copyright (c) 2022, Salesforce, Inc.,
44369
+ * All rights reserved.
44370
+ * For full license text, see the LICENSE.txt file
44371
+ */
44362
44372
  function serviceSatisfies(service, request) {
44363
44373
  return (
44364
44374
  // service types must match
44365
44375
  service.type === request.type && // version of the service must satisfy the requested version
44366
44376
  satisfies(service.version, request.version) && // no tags requested, or the service matches every requested tag value
44367
- (request.tags === void 0 || Object.keys(request.tags).every((tag) => service.tags?.[tag] === request.tags[tag]))
44377
+ (request.tags === void 0 || Object.keys(request.tags).every((tag) => {
44378
+ var _a;
44379
+ return ((_a = service.tags) == null ? void 0 : _a[tag]) === request.tags[tag];
44380
+ }))
44368
44381
  );
44369
44382
  }
44370
44383
  let resolverAvailable;
@@ -44422,6 +44435,11 @@ function buildStaticServiceResolver(services) {
44422
44435
  };
44423
44436
  }
44424
44437
 
44438
+ /*!
44439
+ * Copyright (c) 2022, Salesforce, Inc.,
44440
+ * All rights reserved.
44441
+ * For full license text, see the LICENSE.txt file
44442
+ */
44425
44443
  function isCacheEntryForType(cacheEntry, type) {
44426
44444
  return cacheEntry.metadata.type.namespace === type.namespace && cacheEntry.metadata.type.name === type.typeName;
44427
44445
  }
@@ -44439,8 +44457,9 @@ class IdentifiableTypeRepository {
44439
44457
  return `${this.namespace}::${this.typeName}(${stableJSONStringify$3(params)})`;
44440
44458
  }
44441
44459
  write(cache, input) {
44460
+ var _a;
44442
44461
  const key = this.buildKey(this.buildKeyParams(input));
44443
- const existingNormalizedData = cache.get(key)?.value;
44462
+ const existingNormalizedData = (_a = cache.get(key)) == null ? void 0 : _a.value;
44444
44463
  const normalized = this.normalizeData(cache, { ...input, existingNormalizedData });
44445
44464
  if (normalized.isErr()) {
44446
44465
  return err$3(normalized.error);
@@ -44515,6 +44534,11 @@ function buildReadWriteResult(data, errors) {
44515
44534
  return ok$3(data);
44516
44535
  }
44517
44536
 
44537
+ /*!
44538
+ * Copyright (c) 2022, Salesforce, Inc.,
44539
+ * All rights reserved.
44540
+ * For full license text, see the LICENSE.txt file
44541
+ */
44518
44542
  let JsonSchemaViolationError$1 = class JsonSchemaViolationError extends Error {
44519
44543
  constructor(message, validationErrors) {
44520
44544
  super(message);
@@ -44944,6 +44968,11 @@ function findSchemaAtPath$1(document, ref) {
44944
44968
  return current;
44945
44969
  }
44946
44970
 
44971
+ /*!
44972
+ * Copyright (c) 2022, Salesforce, Inc.,
44973
+ * All rights reserved.
44974
+ * For full license text, see the LICENSE.txt file
44975
+ */
44947
44976
  function devAssert(condition, message) {
44948
44977
  const booleanCondition = Boolean(condition);
44949
44978
  if (!booleanCondition) {
@@ -45794,7 +45823,10 @@ function findExecutableOperation$2(document, operationName) {
45794
45823
  return operations[0];
45795
45824
  }
45796
45825
  if (operationName) {
45797
- return operations.find((op) => op.name?.value === operationName);
45826
+ return operations.find((op) => {
45827
+ var _a;
45828
+ return ((_a = op.name) == null ? void 0 : _a.value) === operationName;
45829
+ });
45798
45830
  }
45799
45831
  return void 0;
45800
45832
  }
@@ -45850,7 +45882,7 @@ function resolveAndValidateGraphQLDocument(query, operationName, options) {
45850
45882
  validateGraphQLOperations(
45851
45883
  { query: document, operationName },
45852
45884
  {
45853
- acceptedOperations: options?.acceptedOperations ?? ["query"]
45885
+ acceptedOperations: (options == null ? void 0 : options.acceptedOperations) ?? ["query"]
45854
45886
  }
45855
45887
  );
45856
45888
  return ok$3(document);
@@ -94081,6 +94113,11 @@ function createSfsSideEffectHooks(durableRecordStore) {
94081
94113
  return [];
94082
94114
  }
94083
94115
 
94116
+ /*!
94117
+ * Copyright (c) 2022, Salesforce, Inc.,
94118
+ * All rights reserved.
94119
+ * For full license text, see the LICENSE.txt file
94120
+ */
94084
94121
  const { create: create$6, freeze: freeze$3, keys: keys$7, entries } = Object;
94085
94122
  const { isArray: isArray$1$1 } = Array;
94086
94123
  const { stringify: stringify$2, parse: parse$2 } = JSON;
@@ -94199,7 +94236,7 @@ function rejectedPromiseLike$2(reason) {
94199
94236
  };
94200
94237
  }
94201
94238
  function isPromiseLike$2(x) {
94202
- return typeof x?.then === "function";
94239
+ return typeof (x == null ? void 0 : x.then) === "function";
94203
94240
  }
94204
94241
  function deepEquals$1(x, y) {
94205
94242
  if (x === void 0) {
@@ -94369,9 +94406,19 @@ function logError$1(error) {
94369
94406
  console.error("OneStore Command threw an error that we did not expect", error);
94370
94407
  }
94371
94408
 
94409
+ /*!
94410
+ * Copyright (c) 2022, Salesforce, Inc.,
94411
+ * All rights reserved.
94412
+ * For full license text, see the LICENSE.txt file
94413
+ */
94372
94414
  class BaseCommand {
94373
94415
  }
94374
94416
 
94417
+ /*!
94418
+ * Copyright (c) 2022, Salesforce, Inc.,
94419
+ * All rights reserved.
94420
+ * For full license text, see the LICENSE.txt file
94421
+ */
94375
94422
  let NetworkCommand$1 = class NetworkCommand extends BaseCommand {
94376
94423
  constructor(services) {
94377
94424
  super();
@@ -94422,6 +94469,11 @@ function buildServiceDescriptor$n() {
94422
94469
  };
94423
94470
  }
94424
94471
 
94472
+ /*!
94473
+ * Copyright (c) 2022, Salesforce, Inc.,
94474
+ * All rights reserved.
94475
+ * For full license text, see the LICENSE.txt file
94476
+ */
94425
94477
  class AuraNetworkCommand extends NetworkCommand$1 {
94426
94478
  constructor(services) {
94427
94479
  super(services);
@@ -94528,6 +94580,16 @@ function buildServiceDescriptor$m() {
94528
94580
  };
94529
94581
  }
94530
94582
 
94583
+ /*!
94584
+ * Copyright (c) 2022, Salesforce, Inc.,
94585
+ * All rights reserved.
94586
+ * For full license text, see the LICENSE.txt file
94587
+ */
94588
+ /*!
94589
+ * Copyright (c) 2022, Salesforce, Inc.,
94590
+ * All rights reserved.
94591
+ * For full license text, see the LICENSE.txt file
94592
+ */
94531
94593
  const { isArray: isArray$6 } = Array;
94532
94594
  let Ok$2 = class Ok {
94533
94595
  constructor(value) {
@@ -94595,7 +94657,7 @@ function rejectedPromiseLike$1(reason) {
94595
94657
  };
94596
94658
  }
94597
94659
  function isPromiseLike$1(x) {
94598
- return typeof x?.then === "function";
94660
+ return typeof (x == null ? void 0 : x.then) === "function";
94599
94661
  }
94600
94662
  function deepEquals(x, y) {
94601
94663
  if (x === void 0) {
@@ -94886,7 +94948,7 @@ class CacheControlCommand extends BaseCommand {
94886
94948
  unsubscribe() {
94887
94949
  while (this.unsubscribers.length > 0) {
94888
94950
  const unsubscriber = this.unsubscribers.pop();
94889
- unsubscriber?.();
94951
+ unsubscriber == null ? void 0 : unsubscriber();
94890
94952
  }
94891
94953
  }
94892
94954
  /**
@@ -95070,6 +95132,16 @@ function mergeCacheControlConfigs(baseConfig, overrides) {
95070
95132
  };
95071
95133
  }
95072
95134
 
95135
+ /*!
95136
+ * Copyright (c) 2022, Salesforce, Inc.,
95137
+ * All rights reserved.
95138
+ * For full license text, see the LICENSE.txt file
95139
+ */
95140
+ /*!
95141
+ * Copyright (c) 2022, Salesforce, Inc.,
95142
+ * All rights reserved.
95143
+ * For full license text, see the LICENSE.txt file
95144
+ */
95073
95145
  let AuraCacheControlCommand$1 = class AuraCacheControlCommand extends CacheControlCommand {
95074
95146
  constructor(services) {
95075
95147
  super(services);
@@ -95205,6 +95277,16 @@ function buildServiceDescriptor$l() {
95205
95277
  };
95206
95278
  }
95207
95279
 
95280
+ /*!
95281
+ * Copyright (c) 2022, Salesforce, Inc.,
95282
+ * All rights reserved.
95283
+ * For full license text, see the LICENSE.txt file
95284
+ */
95285
+ /*!
95286
+ * Copyright (c) 2022, Salesforce, Inc.,
95287
+ * All rights reserved.
95288
+ * For full license text, see the LICENSE.txt file
95289
+ */
95208
95290
  class AuraCacheControlCommand extends CacheControlCommand {
95209
95291
  constructor(services) {
95210
95292
  super(services);
@@ -95314,7 +95396,8 @@ class AuraResourceCacheControlCommand extends AuraCacheControlCommand {
95314
95396
  this.services = services;
95315
95397
  }
95316
95398
  readFromCache(cache) {
95317
- const data = cache.get(this.buildKey())?.value;
95399
+ var _a;
95400
+ const data = (_a = cache.get(this.buildKey())) == null ? void 0 : _a.value;
95318
95401
  if (data === void 0) {
95319
95402
  return resolvedPromiseLike$2(err$1(new Error("Failed to find data in cache")));
95320
95403
  }
@@ -95343,6 +95426,16 @@ function buildServiceDescriptor$k() {
95343
95426
  };
95344
95427
  }
95345
95428
 
95429
+ /*!
95430
+ * Copyright (c) 2022, Salesforce, Inc.,
95431
+ * All rights reserved.
95432
+ * For full license text, see the LICENSE.txt file
95433
+ */
95434
+ /*!
95435
+ * Copyright (c) 2022, Salesforce, Inc.,
95436
+ * All rights reserved.
95437
+ * For full license text, see the LICENSE.txt file
95438
+ */
95346
95439
  class NetworkCommand extends BaseCommand {
95347
95440
  constructor(services) {
95348
95441
  super();
@@ -95392,7 +95485,7 @@ function hasFetchParams(command) {
95392
95485
  return command && typeof command === "object" && "fetchParams" in command;
95393
95486
  }
95394
95487
  function createAbortableDecorator(command, options) {
95395
- if (!options?.signal || !(options?.signal instanceof AbortSignal)) {
95488
+ if (!(options == null ? void 0 : options.signal) || !((options == null ? void 0 : options.signal) instanceof AbortSignal)) {
95396
95489
  return command;
95397
95490
  }
95398
95491
  const { signal } = options;
@@ -95523,6 +95616,16 @@ function buildServiceDescriptor$j() {
95523
95616
  };
95524
95617
  }
95525
95618
 
95619
+ /*!
95620
+ * Copyright (c) 2022, Salesforce, Inc.,
95621
+ * All rights reserved.
95622
+ * For full license text, see the LICENSE.txt file
95623
+ */
95624
+ /*!
95625
+ * Copyright (c) 2022, Salesforce, Inc.,
95626
+ * All rights reserved.
95627
+ * For full license text, see the LICENSE.txt file
95628
+ */
95526
95629
  class HttpCacheControlCommand extends CacheControlCommand {
95527
95630
  constructor(services) {
95528
95631
  super(services);
@@ -95630,6 +95733,16 @@ function buildServiceDescriptor$i() {
95630
95733
  };
95631
95734
  }
95632
95735
 
95736
+ /*!
95737
+ * Copyright (c) 2022, Salesforce, Inc.,
95738
+ * All rights reserved.
95739
+ * For full license text, see the LICENSE.txt file
95740
+ */
95741
+ /*!
95742
+ * Copyright (c) 2022, Salesforce, Inc.,
95743
+ * All rights reserved.
95744
+ * For full license text, see the LICENSE.txt file
95745
+ */
95633
95746
  const { stringify: stringify$1, parse: parse$1 } = JSON;
95634
95747
  function deepCopy$1(x) {
95635
95748
  const stringified = stringify$1(x);
@@ -95653,7 +95766,7 @@ let DefaultRecordableCache$1 = class DefaultRecordableCache {
95653
95766
  if (value === void 0) {
95654
95767
  this.missingKeysRead.add(key);
95655
95768
  }
95656
- if (options?.copy) {
95769
+ if (options == null ? void 0 : options.copy) {
95657
95770
  return deepCopy$1(value);
95658
95771
  }
95659
95772
  return value;
@@ -95697,7 +95810,7 @@ let DefaultFilteredCache$1 = class DefaultFilteredCache {
95697
95810
  get(key, options) {
95698
95811
  const result = this.baseCache.get(key);
95699
95812
  if (result && this.predicate(key, result)) {
95700
- if (options?.copy) {
95813
+ if (options == null ? void 0 : options.copy) {
95701
95814
  return deepCopy$1(result);
95702
95815
  }
95703
95816
  return result;
@@ -95793,7 +95906,7 @@ let DefaultCache$1 = class DefaultCache {
95793
95906
  this.data = {};
95794
95907
  }
95795
95908
  get(key, options) {
95796
- if (options?.copy) {
95909
+ if (options == null ? void 0 : options.copy) {
95797
95910
  return deepCopy$1(this.data[key]);
95798
95911
  }
95799
95912
  return this.data[key];
@@ -95873,6 +95986,11 @@ function buildServiceDescriptor$h() {
95873
95986
  };
95874
95987
  }
95875
95988
 
95989
+ /*!
95990
+ * Copyright (c) 2022, Salesforce, Inc.,
95991
+ * All rights reserved.
95992
+ * For full license text, see the LICENSE.txt file
95993
+ */
95876
95994
  class CacheControlStrategy {
95877
95995
  constructor(services, config, requestRunner) {
95878
95996
  this.services = services;
@@ -95933,11 +96051,11 @@ class MaxAgeCacheControlStrategy extends CacheControlStrategy {
95933
96051
  if (value.isOk()) {
95934
96052
  this.collectCacheHitInstrumentation(
95935
96053
  startTime,
95936
- options?.instrumentationAttributes
96054
+ options == null ? void 0 : options.instrumentationAttributes
95937
96055
  );
95938
96056
  return ok$1(void 0);
95939
96057
  }
95940
- this.collectCacheMissInstrumentation(startTime, options?.instrumentationAttributes);
96058
+ this.collectCacheMissInstrumentation(startTime, options == null ? void 0 : options.instrumentationAttributes);
95941
96059
  const tempCache = this.filteredCache;
95942
96060
  return new Promise(async (resolve, reject) => {
95943
96061
  try {
@@ -96007,11 +96125,11 @@ class OnlyIfCachedCacheControlStrategy extends CacheControlStrategy {
96007
96125
  if (result.isOk()) {
96008
96126
  this.collectCacheHitInstrumentation(
96009
96127
  startTime,
96010
- options?.instrumentationAttributes
96128
+ options == null ? void 0 : options.instrumentationAttributes
96011
96129
  );
96012
96130
  return ok$1(void 0);
96013
96131
  }
96014
- this.collectCacheMissInstrumentation(startTime, options?.instrumentationAttributes);
96132
+ this.collectCacheMissInstrumentation(startTime, options == null ? void 0 : options.instrumentationAttributes);
96015
96133
  const error = new UserVisibleError(
96016
96134
  new FetchResponse(HttpStatusCode.GatewayTimeout, {
96017
96135
  error: "Cache miss for only-if-cached request"
@@ -96095,6 +96213,11 @@ function buildServiceDescriptor$g(cache, cacheInclusionPolicy, instrumentation)
96095
96213
  };
96096
96214
  }
96097
96215
 
96216
+ /*!
96217
+ * Copyright (c) 2022, Salesforce, Inc.,
96218
+ * All rights reserved.
96219
+ * For full license text, see the LICENSE.txt file
96220
+ */
96098
96221
  function buildInstrumentCommand(services) {
96099
96222
  const meter = services.instrumentation.metrics.getMeter("onestore");
96100
96223
  return function instrumentCommand(commandClass, commandName) {
@@ -96114,7 +96237,7 @@ function buildInstrumentCommand(services) {
96114
96237
  try {
96115
96238
  result = super.execute(...args);
96116
96239
  } catch (e) {
96117
- if (e?.name === "AbortError") {
96240
+ if ((e == null ? void 0 : e.name) === "AbortError") {
96118
96241
  abortCounter.add(1);
96119
96242
  } else {
96120
96243
  errorCounter.add(1);
@@ -96141,6 +96264,16 @@ function buildServiceDescriptor$f(instrumentation) {
96141
96264
  };
96142
96265
  }
96143
96266
 
96267
+ /*!
96268
+ * Copyright (c) 2022, Salesforce, Inc.,
96269
+ * All rights reserved.
96270
+ * For full license text, see the LICENSE.txt file
96271
+ */
96272
+ /*!
96273
+ * Copyright (c) 2022, Salesforce, Inc.,
96274
+ * All rights reserved.
96275
+ * For full license text, see the LICENSE.txt file
96276
+ */
96144
96277
  class O11yOTelTraceAPI {
96145
96278
  constructor(services) {
96146
96279
  this.services = services;
@@ -96156,9 +96289,9 @@ class O11yTracer {
96156
96289
  this.logger = logger;
96157
96290
  }
96158
96291
  startSpan(name, _options, context) {
96159
- const traceId = context?.getValue(/* @__PURE__ */ Symbol.for("traceId"));
96160
- const spanId = context?.getValue(/* @__PURE__ */ Symbol.for("spanId"));
96161
- const traceFlags = context?.getValue(/* @__PURE__ */ Symbol.for("traceFlags"));
96292
+ const traceId = context == null ? void 0 : context.getValue(Symbol.for("traceId"));
96293
+ const spanId = context == null ? void 0 : context.getValue(Symbol.for("spanId"));
96294
+ const traceFlags = context == null ? void 0 : context.getValue(Symbol.for("traceFlags"));
96162
96295
  let spanContext = void 0;
96163
96296
  if (traceId !== void 0 && spanId !== void 0 && traceFlags !== void 0) {
96164
96297
  spanContext = {
@@ -96401,7 +96534,12 @@ function buildServiceDescriptor$e(logger) {
96401
96534
  };
96402
96535
  }
96403
96536
 
96404
- const EventTypeWildcard = /* @__PURE__ */ Symbol("EventTypeWildcard");
96537
+ /*!
96538
+ * Copyright (c) 2022, Salesforce, Inc.,
96539
+ * All rights reserved.
96540
+ * For full license text, see the LICENSE.txt file
96541
+ */
96542
+ const EventTypeWildcard = Symbol("EventTypeWildcard");
96405
96543
  class DefaultPubSubService {
96406
96544
  constructor() {
96407
96545
  this.subscriptions = /* @__PURE__ */ new Map();
@@ -96464,6 +96602,11 @@ function buildServiceDescriptor$d() {
96464
96602
  };
96465
96603
  }
96466
96604
 
96605
+ /*!
96606
+ * Copyright (c) 2022, Salesforce, Inc.,
96607
+ * All rights reserved.
96608
+ * For full license text, see the LICENSE.txt file
96609
+ */
96467
96610
  class FeatureFlagsService {
96468
96611
  constructor() {
96469
96612
  this.flags = /* @__PURE__ */ new Map();
@@ -96525,7 +96668,7 @@ function buildServiceDescriptor$b(luvio) {
96525
96668
  },
96526
96669
  };
96527
96670
  }
96528
- // version: 1.438.0-0ec0a89235
96671
+ // version: 1.439.0-e3dc0cfb2a
96529
96672
 
96530
96673
  /**
96531
96674
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -96551,8 +96694,13 @@ function buildServiceDescriptor$a(notifyRecordUpdateAvailable, getNormalizedLuvi
96551
96694
  },
96552
96695
  };
96553
96696
  }
96554
- // version: 1.438.0-0ec0a89235
96697
+ // version: 1.439.0-e3dc0cfb2a
96555
96698
 
96699
+ /*!
96700
+ * Copyright (c) 2022, Salesforce, Inc.,
96701
+ * All rights reserved.
96702
+ * For full license text, see the LICENSE.txt file
96703
+ */
96556
96704
  function findExecutableOperation$1(input) {
96557
96705
  const operations = input.query.definitions.filter(
96558
96706
  (def) => def.kind === Kind$1.OPERATION_DEFINITION
@@ -96564,7 +96712,10 @@ function findExecutableOperation$1(input) {
96564
96712
  return ok$1(operations[0]);
96565
96713
  }
96566
96714
  if (input.operationName) {
96567
- const specifiedOperation = operations.find((op) => op.name?.value === input.operationName);
96715
+ const specifiedOperation = operations.find((op) => {
96716
+ var _a;
96717
+ return ((_a = op.name) == null ? void 0 : _a.value) === input.operationName;
96718
+ });
96568
96719
  if (specifiedOperation) {
96569
96720
  return ok$1(specifiedOperation);
96570
96721
  }
@@ -96580,13 +96731,14 @@ function buildGraphQLInputExtension$1(input) {
96580
96731
  const operation = operationResult.value;
96581
96732
  const selections = operation.selectionSet.selections;
96582
96733
  const variableDefinitions = operation.variableDefinitions;
96583
- const variables = variableDefinitions?.reduce((prev, def) => {
96734
+ const variables = (variableDefinitions == null ? void 0 : variableDefinitions.reduce((prev, def) => {
96735
+ var _a;
96584
96736
  prev[def.variable.name.value] = {
96585
96737
  definition: def,
96586
- value: input.variables?.[def.variable.name.value]
96738
+ value: (_a = input.variables) == null ? void 0 : _a[def.variable.name.value]
96587
96739
  };
96588
96740
  return prev;
96589
- }, {}) || {};
96741
+ }, {})) || {};
96590
96742
  const fragments = input.query.definitions.filter(isFragmentDefinition$1).reduce((prev, fragment) => {
96591
96743
  prev[fragment.name.value] = fragment;
96592
96744
  return prev;
@@ -96639,6 +96791,11 @@ function isFragmentDefinition$1(node) {
96639
96791
  return node.kind === Kind$1.FRAGMENT_DEFINITION;
96640
96792
  }
96641
96793
 
96794
+ /*!
96795
+ * Copyright (c) 2022, Salesforce, Inc.,
96796
+ * All rights reserved.
96797
+ * For full license text, see the LICENSE.txt file
96798
+ */
96642
96799
  class AuraGraphQLNormalizedCacheControlCommand extends AuraNormalizedCacheControlCommand {
96643
96800
  constructor(config, documentRootType, services) {
96644
96801
  super(services);
@@ -96819,6 +96976,11 @@ function buildServiceDescriptor$9() {
96819
96976
  };
96820
96977
  }
96821
96978
 
96979
+ /*!
96980
+ * Copyright (c) 2022, Salesforce, Inc.,
96981
+ * All rights reserved.
96982
+ * For full license text, see the LICENSE.txt file
96983
+ */
96822
96984
  class HttpGraphQLNormalizedCacheControlCommand extends HttpNormalizedCacheControlCommand {
96823
96985
  constructor(config, documentRootType, services) {
96824
96986
  super(services);
@@ -96932,6 +97094,11 @@ function buildServiceDescriptor$8() {
96932
97094
  };
96933
97095
  }
96934
97096
 
97097
+ /*!
97098
+ * Copyright (c) 2022, Salesforce, Inc.,
97099
+ * All rights reserved.
97100
+ * For full license text, see the LICENSE.txt file
97101
+ */
96935
97102
  class JsonSchemaViolationError extends Error {
96936
97103
  constructor(message, validationErrors) {
96937
97104
  super(message);
@@ -97361,6 +97528,11 @@ function findSchemaAtPath(document, ref) {
97361
97528
  return current;
97362
97529
  }
97363
97530
 
97531
+ /*!
97532
+ * Copyright (c) 2022, Salesforce, Inc.,
97533
+ * All rights reserved.
97534
+ * For full license text, see the LICENSE.txt file
97535
+ */
97364
97536
  function isUserVisibleError$2(error) {
97365
97537
  return error instanceof Error && "type" in error && error.type === "user-visible";
97366
97538
  }
@@ -97385,6 +97557,11 @@ function logError(error) {
97385
97557
  console.error("OneStore Command threw an error that we did not expect", error);
97386
97558
  }
97387
97559
 
97560
+ /*!
97561
+ * Copyright (c) 2022, Salesforce, Inc.,
97562
+ * All rights reserved.
97563
+ * For full license text, see the LICENSE.txt file
97564
+ */
97388
97565
  function buildBaseImperativeInvoker(getCommand, transformResult) {
97389
97566
  return async (...params) => {
97390
97567
  const command = getCommand({ params, assertIsValid });
@@ -97489,7 +97666,7 @@ class SubscribableImperativeBindingsService {
97489
97666
  const api = {
97490
97667
  data: result.value.data,
97491
97668
  subscribe: (cb) => {
97492
- return result.value.subscribe((result2) => {
97669
+ result.value.subscribe((result2) => {
97493
97670
  if (result2.isErr()) {
97494
97671
  return cb({ data: void 0, error: toError(result2.error) });
97495
97672
  }
@@ -97592,10 +97769,10 @@ class GraphQLImperativeBindingsService {
97592
97769
  acceptedOperations: ["query"]
97593
97770
  };
97594
97771
  const result = resolveAndValidateGraphQLConfig(params[0], options);
97595
- if (result?.isErr()) {
97772
+ if (result == null ? void 0 : result.isErr()) {
97596
97773
  return result.error;
97597
97774
  }
97598
- if (result?.isOk()) {
97775
+ if (result == null ? void 0 : result.isOk()) {
97599
97776
  params[0] = result.value;
97600
97777
  }
97601
97778
  }
@@ -97614,7 +97791,7 @@ class GraphQLImperativeBindingsService {
97614
97791
  deepFreeze(result.value);
97615
97792
  consumerEmittedData.data = result.value.data.data;
97616
97793
  consumerEmittedData.subscribe = (cb) => {
97617
- return result.value.subscribe((res) => {
97794
+ result.value.subscribe((res) => {
97618
97795
  const consumerEmittedData2 = {
97619
97796
  data: void 0,
97620
97797
  errors: void 0
@@ -97687,11 +97864,11 @@ class GraphQLLegacyImperativeBindingsService {
97687
97864
  acceptedOperations: ["query"]
97688
97865
  };
97689
97866
  const result = resolveAndValidateGraphQLConfig(config, options);
97690
- if (result?.isErr()) {
97867
+ if (result == null ? void 0 : result.isErr()) {
97691
97868
  callback(result.error);
97692
97869
  return;
97693
97870
  }
97694
- if (result?.isOk()) {
97871
+ if (result == null ? void 0 : result.isOk()) {
97695
97872
  config = result.value;
97696
97873
  }
97697
97874
  }
@@ -97722,12 +97899,12 @@ class GraphQLLegacyImperativeBindingsService {
97722
97899
  acceptedOperations: ["query"]
97723
97900
  };
97724
97901
  const result = resolveAndValidateGraphQLConfig(config, options);
97725
- if (result?.isErr()) {
97902
+ if (result == null ? void 0 : result.isErr()) {
97726
97903
  callback(result.error);
97727
97904
  return () => {
97728
97905
  };
97729
97906
  }
97730
- if (result?.isOk()) {
97907
+ if (result == null ? void 0 : result.isOk()) {
97731
97908
  config = result.value;
97732
97909
  }
97733
97910
  }
@@ -97789,13 +97966,13 @@ class GraphQLMutationBindingsService {
97789
97966
  acceptedOperations: ["mutation"]
97790
97967
  };
97791
97968
  const result2 = resolveAndValidateGraphQLConfig(params[0], options);
97792
- if (result2?.isErr()) {
97969
+ if (result2 == null ? void 0 : result2.isErr()) {
97793
97970
  return {
97794
97971
  data: void 0,
97795
97972
  errors: result2.error.errors
97796
97973
  };
97797
97974
  }
97798
- if (result2?.isOk()) {
97975
+ if (result2 == null ? void 0 : result2.isOk()) {
97799
97976
  params[0] = result2.value;
97800
97977
  }
97801
97978
  }
@@ -97821,6 +97998,11 @@ function buildServiceDescriptor$7() {
97821
97998
  };
97822
97999
  }
97823
98000
 
98001
+ /*!
98002
+ * Copyright (c) 2022, Salesforce, Inc.,
98003
+ * All rights reserved.
98004
+ * For full license text, see the LICENSE.txt file
98005
+ */
97824
98006
  class Sanitizer {
97825
98007
  constructor(obj) {
97826
98008
  this.obj = obj;
@@ -97880,7 +98062,7 @@ class CommandWireAdapterConstructor {
97880
98062
  this.callback = callback;
97881
98063
  this.connected = false;
97882
98064
  this.exposeRefresh = false;
97883
- if (!options?.skipEmptyEmit) {
98065
+ if (!(options == null ? void 0 : options.skipEmptyEmit)) {
97884
98066
  this.emit();
97885
98067
  }
97886
98068
  }
@@ -98177,6 +98359,11 @@ function buildServiceDescriptor$2() {
98177
98359
  };
98178
98360
  }
98179
98361
 
98362
+ /*!
98363
+ * Copyright (c) 2022, Salesforce, Inc.,
98364
+ * All rights reserved.
98365
+ * For full license text, see the LICENSE.txt file
98366
+ */
98180
98367
  function buildServiceDescriptor$1(interceptors = {
98181
98368
  request: [],
98182
98369
  retry: void 0,
@@ -98187,7 +98374,8 @@ function buildServiceDescriptor$1(interceptors = {
98187
98374
  type: "fetch",
98188
98375
  version: "1.0",
98189
98376
  service: function(...args) {
98190
- const context = interceptors.createContext?.();
98377
+ var _a;
98378
+ const context = (_a = interceptors.createContext) == null ? void 0 : _a.call(interceptors);
98191
98379
  const {
98192
98380
  request: requestInterceptors = [],
98193
98381
  retry: retryInterceptor = void 0,
@@ -98381,6 +98569,11 @@ function extractQueryParams(urlString) {
98381
98569
  return queryParams;
98382
98570
  }
98383
98571
 
98572
+ /*!
98573
+ * Copyright (c) 2022, Salesforce, Inc.,
98574
+ * All rights reserved.
98575
+ * For full license text, see the LICENSE.txt file
98576
+ */
98384
98577
  class CacheInclusionPolicyService {
98385
98578
  }
98386
98579
  function setDifference(setA, setB) {
@@ -98432,8 +98625,18 @@ function rejectedPromiseLike$3(reason) {
98432
98625
  };
98433
98626
  }
98434
98627
  function isPromiseLike$3(x) {
98435
- return typeof x?.then === "function";
98628
+ return typeof (x == null ? void 0 : x.then) === "function";
98436
98629
  }
98630
+ /*!
98631
+ * Copyright (c) 2022, Salesforce, Inc.,
98632
+ * All rights reserved.
98633
+ * For full license text, see the LICENSE.txt file
98634
+ */
98635
+ /*!
98636
+ * Copyright (c) 2022, Salesforce, Inc.,
98637
+ * All rights reserved.
98638
+ * For full license text, see the LICENSE.txt file
98639
+ */
98437
98640
  const { stringify: stringify$8, parse: parse$8 } = JSON;
98438
98641
  function deepCopy(x) {
98439
98642
  const stringified = stringify$8(x);
@@ -98457,7 +98660,7 @@ class DefaultRecordableCache {
98457
98660
  if (value === void 0) {
98458
98661
  this.missingKeysRead.add(key);
98459
98662
  }
98460
- if (options?.copy) {
98663
+ if (options == null ? void 0 : options.copy) {
98461
98664
  return deepCopy(value);
98462
98665
  }
98463
98666
  return value;
@@ -98501,7 +98704,7 @@ class DefaultFilteredCache {
98501
98704
  get(key, options) {
98502
98705
  const result = this.baseCache.get(key);
98503
98706
  if (result && this.predicate(key, result)) {
98504
- if (options?.copy) {
98707
+ if (options == null ? void 0 : options.copy) {
98505
98708
  return deepCopy(result);
98506
98709
  }
98507
98710
  return result;
@@ -98597,7 +98800,7 @@ class DefaultCache {
98597
98800
  this.data = {};
98598
98801
  }
98599
98802
  get(key, options) {
98600
- if (options?.copy) {
98803
+ if (options == null ? void 0 : options.copy) {
98601
98804
  return deepCopy(this.data[key]);
98602
98805
  }
98603
98806
  return this.data[key];
@@ -99219,12 +99422,17 @@ register$1({
99219
99422
  id: '@salesforce/lds-network-adapter',
99220
99423
  instrument: instrument$2,
99221
99424
  });
99222
- // version: 1.438.0-0ec0a89235
99425
+ // version: 1.439.0-e3dc0cfb2a
99223
99426
 
99224
99427
  const { create: create$2, keys: keys$2 } = Object;
99225
99428
  const { stringify, parse } = JSON;
99226
99429
  const { isArray: isArray$3 } = Array;
99227
99430
 
99431
+ /*!
99432
+ * Copyright (c) 2022, Salesforce, Inc.,
99433
+ * All rights reserved.
99434
+ * For full license text, see the LICENSE.txt file
99435
+ */
99228
99436
  function extractValue(valueNode, variableDefinitions, expectedType) {
99229
99437
  if (valueNode.kind === Kind$1.VARIABLE) {
99230
99438
  const variableResult = extractVariableValue(valueNode.name.value, variableDefinitions);
@@ -99345,7 +99553,10 @@ function findExecutableOperation(input) {
99345
99553
  return ok$3(operations[0]);
99346
99554
  }
99347
99555
  if (input.operationName) {
99348
- const specifiedOperation = operations.find((op) => op.name?.value === input.operationName);
99556
+ const specifiedOperation = operations.find((op) => {
99557
+ var _a;
99558
+ return ((_a = op.name) == null ? void 0 : _a.value) === input.operationName;
99559
+ });
99349
99560
  if (specifiedOperation) {
99350
99561
  return ok$3(specifiedOperation);
99351
99562
  }
@@ -99361,13 +99572,14 @@ function buildGraphQLInputExtension(input) {
99361
99572
  const operation = operationResult.value;
99362
99573
  const selections = operation.selectionSet.selections;
99363
99574
  const variableDefinitions = operation.variableDefinitions;
99364
- const variables = variableDefinitions?.reduce((prev, def) => {
99575
+ const variables = (variableDefinitions == null ? void 0 : variableDefinitions.reduce((prev, def) => {
99576
+ var _a;
99365
99577
  prev[def.variable.name.value] = {
99366
99578
  definition: def,
99367
- value: input.variables?.[def.variable.name.value]
99579
+ value: (_a = input.variables) == null ? void 0 : _a[def.variable.name.value]
99368
99580
  };
99369
99581
  return prev;
99370
- }, {}) || {};
99582
+ }, {})) || {};
99371
99583
  const fragments = input.query.definitions.filter(isFragmentDefinition).reduce((prev, fragment) => {
99372
99584
  prev[fragment.name.value] = fragment;
99373
99585
  return prev;
@@ -99379,10 +99591,11 @@ function buildGraphQLInputExtension(input) {
99379
99591
  });
99380
99592
  }
99381
99593
  function buildAugmentedFieldSelection(newSelection, selections, fragments) {
99594
+ var _a;
99382
99595
  if (selectionExists(newSelection, selections)) {
99383
99596
  return void 0;
99384
99597
  }
99385
- const baseAlias = newSelection.alias?.value || newSelection.name.value;
99598
+ const baseAlias = ((_a = newSelection.alias) == null ? void 0 : _a.value) || newSelection.name.value;
99386
99599
  const baseInjectedAlias = `framework_augmented_${baseAlias}`;
99387
99600
  const baseAliasedSelection = {
99388
99601
  ...newSelection,
@@ -99407,19 +99620,20 @@ function selectionExists(selection, selections) {
99407
99620
  return selections.some((s) => selectionEquals(selection, s));
99408
99621
  }
99409
99622
  function selectionEquals(a, b) {
99623
+ var _a, _b, _c, _d, _e, _f;
99410
99624
  if (a.kind !== b.kind) {
99411
99625
  return false;
99412
99626
  }
99413
99627
  if (a.kind === Kind$1.FIELD) {
99414
99628
  const bField = b;
99415
- return !!(a.name.value === bField.name.value) && !!(a.alias?.value === bField.alias?.value) && argumentsEqual(a.arguments, bField.arguments) && selectionSetsEqual(a.selectionSet?.selections, bField.selectionSet?.selections) && directivesEqual(a.directives, bField.directives);
99629
+ 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);
99416
99630
  }
99417
99631
  if (a.kind === Kind$1.FRAGMENT_SPREAD) {
99418
99632
  const bFragmentSpread = b;
99419
99633
  return a.name.value === bFragmentSpread.name.value && directivesEqual(a.directives, bFragmentSpread.directives);
99420
99634
  }
99421
99635
  const bInlineFragment = b;
99422
- return a.typeCondition === bInlineFragment.typeCondition && directivesEqual(a.directives, bInlineFragment.directives) && selectionSetsEqual(a.selectionSet?.selections, bInlineFragment.selectionSet?.selections);
99636
+ 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);
99423
99637
  }
99424
99638
  function argumentValueEquals(a, b) {
99425
99639
  if (a.kind !== b.kind) {
@@ -99462,7 +99676,7 @@ function directivesEqual(a, b) {
99462
99676
  return true;
99463
99677
  }
99464
99678
  if (a === void 0 || b === void 0) {
99465
- return (a?.length || 0) === (b?.length || 0);
99679
+ return ((a == null ? void 0 : a.length) || 0) === ((b == null ? void 0 : b.length) || 0);
99466
99680
  }
99467
99681
  if (a.length !== b.length) {
99468
99682
  return false;
@@ -99477,7 +99691,7 @@ function argumentsEqual(a, b) {
99477
99691
  return true;
99478
99692
  }
99479
99693
  if (a === void 0 || b === void 0) {
99480
- return (a?.length || 0) === (b?.length || 0);
99694
+ return ((a == null ? void 0 : a.length) || 0) === ((b == null ? void 0 : b.length) || 0);
99481
99695
  }
99482
99696
  if (a.length !== b.length) {
99483
99697
  return false;
@@ -99504,10 +99718,11 @@ function getUniqueSelectionName(fieldName, selections, fragments) {
99504
99718
  return `${fieldName}_${i}`;
99505
99719
  }
99506
99720
  function collectFieldNames(selections, fragments) {
99721
+ var _a;
99507
99722
  const fieldNames = /* @__PURE__ */ new Set();
99508
99723
  for (const selection of selections) {
99509
99724
  if (isField(selection)) {
99510
- fieldNames.add(selection.alias?.value || selection.name.value);
99725
+ fieldNames.add(((_a = selection.alias) == null ? void 0 : _a.value) || selection.name.value);
99511
99726
  } else if (isInlineFragment(selection)) {
99512
99727
  collectFieldNames(
99513
99728
  selection.selectionSet.selections,
@@ -99563,7 +99778,8 @@ function isFragmentDefinition(node) {
99563
99778
  return node.kind === Kind$1.FRAGMENT_DEFINITION;
99564
99779
  }
99565
99780
  function extractIfArgument(directive, variables, directiveName) {
99566
- const ifArg = directive.arguments?.find((arg) => arg.name.value === "if");
99781
+ var _a;
99782
+ const ifArg = (_a = directive.arguments) == null ? void 0 : _a.find((arg) => arg.name.value === "if");
99567
99783
  if (!ifArg) {
99568
99784
  return err$3(new Error(`@${directiveName} directive requires an 'if' argument`));
99569
99785
  }
@@ -99676,7 +99892,8 @@ class BaseArrayFieldDef {
99676
99892
  const arrayNormalizationErrors = [];
99677
99893
  const normalizedArray = [];
99678
99894
  input.data.forEach((item, index) => {
99679
- const existingItemData = input.existingNormalizedData?.[index];
99895
+ var _a;
99896
+ const existingItemData = (_a = input.existingNormalizedData) == null ? void 0 : _a[index];
99680
99897
  const normalizedItemResult = this.items.write(cache, {
99681
99898
  ...input,
99682
99899
  data: item,
@@ -99756,6 +99973,7 @@ class BaseObjectFieldDef {
99756
99973
  return this.repository.buildFieldKey(selection, variables);
99757
99974
  }
99758
99975
  write(cache, input) {
99976
+ var _a;
99759
99977
  if (!input.selection.selectionSet) {
99760
99978
  return err$3([
99761
99979
  {
@@ -99785,7 +100003,7 @@ class BaseObjectFieldDef {
99785
100003
  const writeResult = this.repository.write(cache, {
99786
100004
  ...input,
99787
100005
  data: input.data,
99788
- existingNormalizedData: input.existingNormalizedData?.data,
100006
+ existingNormalizedData: (_a = input.existingNormalizedData) == null ? void 0 : _a.data,
99789
100007
  request: input.request,
99790
100008
  selections: input.selection.selectionSet.selections,
99791
100009
  parentFieldSelection: input.selection
@@ -99796,6 +100014,7 @@ class BaseObjectFieldDef {
99796
100014
  return ok$3({ type: "data", data: writeResult.value });
99797
100015
  }
99798
100016
  read(cache, input) {
100017
+ var _a;
99799
100018
  if (!input.selection.selectionSet) {
99800
100019
  return err$3([
99801
100020
  {
@@ -99827,7 +100046,7 @@ class BaseObjectFieldDef {
99827
100046
  ...input,
99828
100047
  normalizedData: normalizedData.data,
99829
100048
  request: input.request,
99830
- selections: input.selection.selectionSet?.selections,
100049
+ selections: (_a = input.selection.selectionSet) == null ? void 0 : _a.selections,
99831
100050
  parentFieldSelection: input.selection
99832
100051
  });
99833
100052
  }
@@ -99878,12 +100097,13 @@ class BaseGraphQLTypeRepository {
99878
100097
  return { selections: augmentedSelections, fragments: augmentedFragments };
99879
100098
  }
99880
100099
  augmentFieldSelection(selection, fragments) {
100100
+ var _a;
99881
100101
  const field = this.getFieldDef(void 0, selection);
99882
100102
  if (field === void 0) {
99883
100103
  return { selections: [selection], fragments };
99884
100104
  }
99885
100105
  const result = field.augmentSelections({
99886
- selections: selection.selectionSet?.selections || [],
100106
+ selections: ((_a = selection.selectionSet) == null ? void 0 : _a.selections) || [],
99887
100107
  fragments
99888
100108
  });
99889
100109
  return {
@@ -99900,6 +100120,7 @@ class BaseGraphQLTypeRepository {
99900
100120
  };
99901
100121
  }
99902
100122
  augmentInlineFragmentSelection(fragment, fragments) {
100123
+ var _a;
99903
100124
  const satisfiedFragmentTypeConditionResult = this.satisfiesFragmentTypeCondition(
99904
100125
  void 0,
99905
100126
  fragment
@@ -99908,7 +100129,7 @@ class BaseGraphQLTypeRepository {
99908
100129
  return { selections: [], fragments };
99909
100130
  }
99910
100131
  const augmentedFragmentSelections = this.augmentSelections({
99911
- selections: fragment.selectionSet?.selections || [],
100132
+ selections: ((_a = fragment.selectionSet) == null ? void 0 : _a.selections) || [],
99912
100133
  fragments
99913
100134
  });
99914
100135
  return {
@@ -99925,6 +100146,7 @@ class BaseGraphQLTypeRepository {
99925
100146
  };
99926
100147
  }
99927
100148
  augmentFragmentSpreadSelection(selection, fragments) {
100149
+ var _a;
99928
100150
  const fragment = fragments[selection.name.value];
99929
100151
  if (fragment === void 0) {
99930
100152
  return { selections: [selection], fragments };
@@ -99937,7 +100159,7 @@ class BaseGraphQLTypeRepository {
99937
100159
  return { selections: [selection], fragments };
99938
100160
  }
99939
100161
  const augmentedFragment = this.augmentSelections({
99940
- selections: fragment.selectionSet?.selections || [],
100162
+ selections: ((_a = fragment.selectionSet) == null ? void 0 : _a.selections) || [],
99941
100163
  fragments
99942
100164
  });
99943
100165
  return {
@@ -99986,8 +100208,9 @@ class BaseGraphQLTypeRepository {
99986
100208
  return buildReadWriteResult(normalized, errors);
99987
100209
  }
99988
100210
  normalizeFieldSelection(cache, input, selection, errorCollector) {
100211
+ var _a;
99989
100212
  const canonicalFieldName = selection.name.value;
99990
- const dataInstanceFieldName = selection.alias?.value ?? selection.name.value;
100213
+ const dataInstanceFieldName = ((_a = selection.alias) == null ? void 0 : _a.value) ?? selection.name.value;
99991
100214
  const value = input.data[dataInstanceFieldName];
99992
100215
  const fieldDef = this.getFieldDef(input, selection);
99993
100216
  if (!fieldDef) {
@@ -100097,6 +100320,7 @@ class BaseGraphQLTypeRepository {
100097
100320
  return buildReadWriteResult(denormalized, errors);
100098
100321
  }
100099
100322
  getNormalizedFieldData(selection, input) {
100323
+ var _a;
100100
100324
  const fieldDef = this.getFieldDef(input, selection);
100101
100325
  if (!fieldDef) {
100102
100326
  return err$3(
@@ -100113,9 +100337,10 @@ class BaseGraphQLTypeRepository {
100113
100337
  return err$3(cacheFieldKeyResult.error);
100114
100338
  }
100115
100339
  const cacheFieldKey = cacheFieldKeyResult.value;
100116
- return ok$3((input.existingNormalizedData || input.normalizedData)?.[cacheFieldKey]);
100340
+ return ok$3((_a = input.existingNormalizedData || input.normalizedData) == null ? void 0 : _a[cacheFieldKey]);
100117
100341
  }
100118
100342
  denormalizeFieldSelection(cache, input, selection, errorCollector) {
100343
+ var _a;
100119
100344
  const canonicalFieldName = selection.name.value;
100120
100345
  const fieldDef = this.getFieldDef(input, selection);
100121
100346
  if (!fieldDef) {
@@ -100127,7 +100352,7 @@ class BaseGraphQLTypeRepository {
100127
100352
  });
100128
100353
  return {};
100129
100354
  }
100130
- const dataInstanceFieldName = selection.alias?.value ?? selection.name.value;
100355
+ const dataInstanceFieldName = ((_a = selection.alias) == null ? void 0 : _a.value) ?? selection.name.value;
100131
100356
  const normalizedFieldDataResult = this.getNormalizedFieldData(selection, input);
100132
100357
  if (normalizedFieldDataResult.isErr()) {
100133
100358
  errorCollector.push({
@@ -100195,18 +100420,19 @@ class BaseGraphQLTypeRepository {
100195
100420
  return {};
100196
100421
  }
100197
100422
  getFieldDef(input, selection) {
100423
+ var _a, _b, _c;
100198
100424
  const canonicalFieldName = selection.name.value;
100199
100425
  const fieldDef = this.fields[canonicalFieldName];
100200
100426
  if (fieldDef) {
100201
100427
  return fieldDef;
100202
100428
  }
100203
- const dataInstanceFieldName = selection.alias?.value ?? selection.name.value;
100429
+ const dataInstanceFieldName = ((_a = selection.alias) == null ? void 0 : _a.value) ?? selection.name.value;
100204
100430
  if (input === void 0) {
100205
100431
  return void 0;
100206
100432
  }
100207
100433
  if ("data" in input && input.data[dataInstanceFieldName] === void 0) {
100208
100434
  return missingFieldDef;
100209
- } else if ("normalizedData" in input && input.normalizedData?.[dataInstanceFieldName]?.type === "missing") {
100435
+ } else if ("normalizedData" in input && ((_c = (_b = input.normalizedData) == null ? void 0 : _b[dataInstanceFieldName]) == null ? void 0 : _c.type) === "missing") {
100210
100436
  return missingFieldDef;
100211
100437
  }
100212
100438
  return void 0;
@@ -100294,7 +100520,7 @@ class IdentifiableGraphQLTypeRepository extends IdentifiableTypeRepository {
100294
100520
  return err$3(normalized.error);
100295
100521
  }
100296
100522
  const existing = cache.get(key);
100297
- if (!deepEquals$2(existing?.value, normalized.value)) {
100523
+ if (!deepEquals$2(existing == null ? void 0 : existing.value, normalized.value)) {
100298
100524
  cache.set(key, {
100299
100525
  value: normalized.value,
100300
100526
  metadata: this.cacheMetadata
@@ -100310,7 +100536,7 @@ class IdentifiableGraphQLTypeRepository extends IdentifiableTypeRepository {
100310
100536
  const existingNormalizedData = cache.get(key, { copy: true });
100311
100537
  const normalizeDataResult = this.graphqlRepository.normalizeSelections(cache, {
100312
100538
  ...input,
100313
- existingNormalizedData: existingNormalizedData?.value
100539
+ existingNormalizedData: existingNormalizedData == null ? void 0 : existingNormalizedData.value
100314
100540
  });
100315
100541
  if (normalizeDataResult.isErr()) {
100316
100542
  return normalizeDataResult;
@@ -100318,7 +100544,7 @@ class IdentifiableGraphQLTypeRepository extends IdentifiableTypeRepository {
100318
100544
  return ok$3(
100319
100545
  deepMerge$2(
100320
100546
  {},
100321
- existingNormalizedData?.value || {},
100547
+ (existingNormalizedData == null ? void 0 : existingNormalizedData.value) || {},
100322
100548
  normalizeDataResult.value
100323
100549
  )
100324
100550
  );
@@ -100333,13 +100559,14 @@ class IdentifiableGraphQLTypeRepository extends IdentifiableTypeRepository {
100333
100559
  return this.graphqlRepository.buildFieldKey(selection, variables);
100334
100560
  }
100335
100561
  buildKeyParams(input) {
100562
+ var _a;
100336
100563
  const idField = input.selections.find(
100337
100564
  (selection) => selection.kind === Kind$1.FIELD && selection.name.value === this.idField
100338
100565
  );
100339
100566
  if (!idField) {
100340
100567
  throw new Error(`Id field ${this.idField} not found in selections`);
100341
100568
  }
100342
- const idFieldDataProperty = idField.alias?.value || idField.name.value;
100569
+ const idFieldDataProperty = ((_a = idField.alias) == null ? void 0 : _a.value) || idField.name.value;
100343
100570
  return {
100344
100571
  [this.idField]: input.data[idFieldDataProperty]
100345
100572
  };
@@ -100389,6 +100616,7 @@ class GraphQLDocumentRootTypeRepository extends IdentifiableGraphQLTypeRepositor
100389
100616
  });
100390
100617
  }
100391
100618
  buildAugmentedQuery(input) {
100619
+ var _a;
100392
100620
  const operationResult = findExecutableOperation(input);
100393
100621
  if (operationResult.isErr()) {
100394
100622
  return err$3(operationResult.error);
@@ -100405,7 +100633,7 @@ class GraphQLDocumentRootTypeRepository extends IdentifiableGraphQLTypeRepositor
100405
100633
  {}
100406
100634
  );
100407
100635
  const result = this.augmentSelections({
100408
- selections: operationResult.value.selectionSet?.selections || [],
100636
+ selections: ((_a = operationResult.value.selectionSet) == null ? void 0 : _a.selections) || [],
100409
100637
  fragments
100410
100638
  });
100411
100639
  const augmentedOperationSelections = result.selections;
@@ -100526,11 +100754,12 @@ class BaseInterfaceRepository {
100526
100754
  const augmentedSelections = [];
100527
100755
  let augmentedFragments = { ...input.fragments };
100528
100756
  input.selections.forEach((selection) => {
100757
+ var _a;
100529
100758
  if (selection.kind === Kind$1.FIELD) {
100530
100759
  if (Object.keys(this.fields).includes(selection.name.value)) {
100531
100760
  const field = this.fields[selection.name.value];
100532
100761
  const result2 = field.augmentSelections({
100533
- selections: selection.selectionSet?.selections || [],
100762
+ selections: ((_a = selection.selectionSet) == null ? void 0 : _a.selections) || [],
100534
100763
  fragments: input.fragments
100535
100764
  });
100536
100765
  augmentedSelections.push({
@@ -100563,11 +100792,12 @@ class BaseInterfaceRepository {
100563
100792
  return { selections: augmentedSelections, fragments: augmentedFragments };
100564
100793
  }
100565
100794
  getTypeDiscriminator(data, selections) {
100795
+ var _a;
100566
100796
  const typenameSelection = selections.find(
100567
100797
  (selection) => selection.kind === Kind$1.FIELD && selection.name.value === "__typename"
100568
100798
  );
100569
100799
  if (typenameSelection) {
100570
- return data[typenameSelection.alias?.value || typenameSelection.name.value];
100800
+ return data[((_a = typenameSelection.alias) == null ? void 0 : _a.value) || typenameSelection.name.value];
100571
100801
  } else {
100572
100802
  return data.__typename;
100573
100803
  }
@@ -100709,11 +100939,12 @@ class BaseUnionRepository {
100709
100939
  return { selections: augmentedSelections, fragments: augmentedFragments };
100710
100940
  }
100711
100941
  getTypeDiscriminator(data, selections) {
100942
+ var _a;
100712
100943
  const typenameSelection = selections.find(
100713
100944
  (selection) => selection.kind === Kind$1.FIELD && selection.name.value === "__typename"
100714
100945
  );
100715
100946
  if (typenameSelection) {
100716
- return data[typenameSelection.alias?.value || typenameSelection.name.value];
100947
+ return data[((_a = typenameSelection.alias) == null ? void 0 : _a.value) || typenameSelection.name.value];
100717
100948
  } else {
100718
100949
  return data.__typename;
100719
100950
  }
@@ -101208,6 +101439,11 @@ LockerSafeClass(ConsumedContextSignal);
101208
101439
  */
101209
101440
 
101210
101441
 
101442
+ /*!
101443
+ * Copyright (c) 2022, Salesforce, Inc.,
101444
+ * All rights reserved.
101445
+ * For full license text, see the LICENSE.txt file
101446
+ */
101211
101447
  const { hasOwnProperty: hasOwnProperty$1 } = Object.prototype;
101212
101448
  class Ok {
101213
101449
  constructor(value) {
@@ -101268,7 +101504,7 @@ function rejectedPromiseLike(reason) {
101268
101504
  };
101269
101505
  }
101270
101506
  function isPromiseLike(x) {
101271
- return typeof x?.then === "function";
101507
+ return typeof (x == null ? void 0 : x.then) === "function";
101272
101508
  }
101273
101509
  class InternalError extends Error {
101274
101510
  constructor(data) {
@@ -101287,10 +101523,11 @@ function applyDecorators(baseCommand, decorators, options) {
101287
101523
  class Analytics__AnalyticsBrowseRepository extends UnidentifiableGraphQLTypeRepository {
101288
101524
  constructor(services, typeRegistry) {
101289
101525
  super(services);
101526
+ this.services = services;
101527
+ this.typeRegistry = typeRegistry;
101290
101528
  this.namespace = "oas";
101291
101529
  this.typeName = "Analytics__AnalyticsBrowse";
101292
101530
  this.implementedInterfaces = [];
101293
- this.typeRegistry = typeRegistry;
101294
101531
  }
101295
101532
  get fields() {
101296
101533
  return {
@@ -101306,10 +101543,11 @@ class Analytics__AnalyticsBrowseRepository extends UnidentifiableGraphQLTypeRepo
101306
101543
  class Analytics__AnalyticsEdgeRepository extends UnidentifiableGraphQLTypeRepository {
101307
101544
  constructor(services, typeRegistry) {
101308
101545
  super(services);
101546
+ this.services = services;
101547
+ this.typeRegistry = typeRegistry;
101309
101548
  this.namespace = "oas";
101310
101549
  this.typeName = "Analytics__AnalyticsEdge";
101311
101550
  this.implementedInterfaces = [];
101312
- this.typeRegistry = typeRegistry;
101313
101551
  }
101314
101552
  get fields() {
101315
101553
  return {
@@ -101323,10 +101561,11 @@ class Analytics__AnalyticsEdgeRepository extends UnidentifiableGraphQLTypeReposi
101323
101561
  class Analytics__AnalyticsRepository extends UnidentifiableGraphQLTypeRepository {
101324
101562
  constructor(services, typeRegistry) {
101325
101563
  super(services);
101564
+ this.services = services;
101565
+ this.typeRegistry = typeRegistry;
101326
101566
  this.namespace = "oas";
101327
101567
  this.typeName = "Analytics__Analytics";
101328
101568
  this.implementedInterfaces = [];
101329
- this.typeRegistry = typeRegistry;
101330
101569
  }
101331
101570
  get fields() {
101332
101571
  return {
@@ -101339,10 +101578,11 @@ class Analytics__AnalyticsRepository extends UnidentifiableGraphQLTypeRepository
101339
101578
  class Analytics__AnalyticsRepresentationInterfaceRepository extends BaseInterfaceRepository {
101340
101579
  constructor(services, typeRegistry) {
101341
101580
  super(services);
101581
+ this.services = services;
101582
+ this.typeRegistry = typeRegistry;
101342
101583
  this.namespace = "oas";
101343
101584
  this.typeName = "Analytics__AnalyticsRepresentationInterface";
101344
101585
  this.implementedInterfaces = [];
101345
- this.typeRegistry = typeRegistry;
101346
101586
  }
101347
101587
  get fields() {
101348
101588
  return {
@@ -101378,11 +101618,12 @@ class Analytics__AnalyticsRepresentationInterfaceRepository extends BaseInterfac
101378
101618
  class Analytics__AnalyticsRepresentationRepository extends IdentifiableGraphQLTypeRepository {
101379
101619
  constructor(services, typeRegistry) {
101380
101620
  super(services);
101621
+ this.services = services;
101622
+ this.typeRegistry = typeRegistry;
101381
101623
  this.namespace = "oas";
101382
101624
  this.typeName = "Analytics__AnalyticsRepresentation";
101383
101625
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101384
101626
  this.idField = "Id";
101385
- this.typeRegistry = typeRegistry;
101386
101627
  }
101387
101628
  get fields() {
101388
101629
  return {
@@ -101412,10 +101653,11 @@ class Analytics__AnalyticsRepresentationRepository extends IdentifiableGraphQLTy
101412
101653
  class Analytics__AnalyticsWorkspaceAssetConnectionRepository extends UnidentifiableGraphQLTypeRepository {
101413
101654
  constructor(services, typeRegistry) {
101414
101655
  super(services);
101656
+ this.services = services;
101657
+ this.typeRegistry = typeRegistry;
101415
101658
  this.namespace = "oas";
101416
101659
  this.typeName = "Analytics__AnalyticsWorkspaceAssetConnection";
101417
101660
  this.implementedInterfaces = [];
101418
- this.typeRegistry = typeRegistry;
101419
101661
  }
101420
101662
  get fields() {
101421
101663
  return {
@@ -101431,10 +101673,11 @@ class Analytics__AnalyticsWorkspaceAssetConnectionRepository extends Unidentifia
101431
101673
  class Analytics__AnalyticsWorkspaceAssetEdgeRepository extends UnidentifiableGraphQLTypeRepository {
101432
101674
  constructor(services, typeRegistry) {
101433
101675
  super(services);
101676
+ this.services = services;
101677
+ this.typeRegistry = typeRegistry;
101434
101678
  this.namespace = "oas";
101435
101679
  this.typeName = "Analytics__AnalyticsWorkspaceAssetEdge";
101436
101680
  this.implementedInterfaces = [];
101437
- this.typeRegistry = typeRegistry;
101438
101681
  }
101439
101682
  get fields() {
101440
101683
  return {
@@ -101448,10 +101691,11 @@ class Analytics__AnalyticsWorkspaceAssetEdgeRepository extends UnidentifiableGra
101448
101691
  class Analytics__AnalyticsWorkspaceAssetRepository extends UnidentifiableGraphQLTypeRepository {
101449
101692
  constructor(services, typeRegistry) {
101450
101693
  super(services);
101694
+ this.services = services;
101695
+ this.typeRegistry = typeRegistry;
101451
101696
  this.namespace = "oas";
101452
101697
  this.typeName = "Analytics__AnalyticsWorkspaceAsset";
101453
101698
  this.implementedInterfaces = [];
101454
- this.typeRegistry = typeRegistry;
101455
101699
  }
101456
101700
  get fields() {
101457
101701
  return {
@@ -101468,11 +101712,12 @@ class Analytics__AnalyticsWorkspaceAssetRepository extends UnidentifiableGraphQL
101468
101712
  class Analytics__AnalyticsWorkspaceRepository extends IdentifiableGraphQLTypeRepository {
101469
101713
  constructor(services, typeRegistry) {
101470
101714
  super(services);
101715
+ this.services = services;
101716
+ this.typeRegistry = typeRegistry;
101471
101717
  this.namespace = "oas";
101472
101718
  this.typeName = "Analytics__AnalyticsWorkspace";
101473
101719
  this.implementedInterfaces = [];
101474
101720
  this.idField = "Id";
101475
- this.typeRegistry = typeRegistry;
101476
101721
  }
101477
101722
  get fields() {
101478
101723
  return {
@@ -101496,11 +101741,12 @@ class Analytics__AnalyticsWorkspaceRepository extends IdentifiableGraphQLTypeRep
101496
101741
  class Analytics__DataspaceRepresentationRepository extends IdentifiableGraphQLTypeRepository {
101497
101742
  constructor(services, typeRegistry) {
101498
101743
  super(services);
101744
+ this.services = services;
101745
+ this.typeRegistry = typeRegistry;
101499
101746
  this.namespace = "oas";
101500
101747
  this.typeName = "Analytics__DataspaceRepresentation";
101501
101748
  this.implementedInterfaces = [];
101502
101749
  this.idField = "Id";
101503
- this.typeRegistry = typeRegistry;
101504
101750
  }
101505
101751
  get fields() {
101506
101752
  return {
@@ -101519,11 +101765,12 @@ class Analytics__DataspaceRepresentationRepository extends IdentifiableGraphQLTy
101519
101765
  class Analytics__DominoTemplateRepository extends IdentifiableGraphQLTypeRepository {
101520
101766
  constructor(services, typeRegistry) {
101521
101767
  super(services);
101768
+ this.services = services;
101769
+ this.typeRegistry = typeRegistry;
101522
101770
  this.namespace = "oas";
101523
101771
  this.typeName = "Analytics__DominoTemplate";
101524
101772
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101525
101773
  this.idField = "Id";
101526
- this.typeRegistry = typeRegistry;
101527
101774
  }
101528
101775
  get fields() {
101529
101776
  return {
@@ -101555,11 +101802,12 @@ class Analytics__DominoTemplateRepository extends IdentifiableGraphQLTypeReposit
101555
101802
  class Analytics__MktDataConnectorRepository extends IdentifiableGraphQLTypeRepository {
101556
101803
  constructor(services, typeRegistry) {
101557
101804
  super(services);
101805
+ this.services = services;
101806
+ this.typeRegistry = typeRegistry;
101558
101807
  this.namespace = "oas";
101559
101808
  this.typeName = "Analytics__MktDataConnector";
101560
101809
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101561
101810
  this.idField = "Id";
101562
- this.typeRegistry = typeRegistry;
101563
101811
  }
101564
101812
  get fields() {
101565
101813
  return {
@@ -101590,11 +101838,12 @@ class Analytics__MktDataConnectorRepository extends IdentifiableGraphQLTypeRepos
101590
101838
  class Analytics__SemanticDefinitionRepository extends IdentifiableGraphQLTypeRepository {
101591
101839
  constructor(services, typeRegistry) {
101592
101840
  super(services);
101841
+ this.services = services;
101842
+ this.typeRegistry = typeRegistry;
101593
101843
  this.namespace = "oas";
101594
101844
  this.typeName = "Analytics__SemanticDefinition";
101595
101845
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101596
101846
  this.idField = "Id";
101597
- this.typeRegistry = typeRegistry;
101598
101847
  }
101599
101848
  get fields() {
101600
101849
  return {
@@ -101627,10 +101876,11 @@ class Analytics__SemanticDefinitionRepository extends IdentifiableGraphQLTypeRep
101627
101876
  class Analytics__SemanticModelRelatedModelConnectionRepository extends UnidentifiableGraphQLTypeRepository {
101628
101877
  constructor(services, typeRegistry) {
101629
101878
  super(services);
101879
+ this.services = services;
101880
+ this.typeRegistry = typeRegistry;
101630
101881
  this.namespace = "oas";
101631
101882
  this.typeName = "Analytics__SemanticModelRelatedModelConnection";
101632
101883
  this.implementedInterfaces = [];
101633
- this.typeRegistry = typeRegistry;
101634
101884
  }
101635
101885
  get fields() {
101636
101886
  return {
@@ -101646,10 +101896,11 @@ class Analytics__SemanticModelRelatedModelConnectionRepository extends Unidentif
101646
101896
  class Analytics__SemanticModelRelatedModelEdgeRepository extends UnidentifiableGraphQLTypeRepository {
101647
101897
  constructor(services, typeRegistry) {
101648
101898
  super(services);
101899
+ this.services = services;
101900
+ this.typeRegistry = typeRegistry;
101649
101901
  this.namespace = "oas";
101650
101902
  this.typeName = "Analytics__SemanticModelRelatedModelEdge";
101651
101903
  this.implementedInterfaces = [];
101652
- this.typeRegistry = typeRegistry;
101653
101904
  }
101654
101905
  get fields() {
101655
101906
  return {
@@ -101663,11 +101914,12 @@ class Analytics__SemanticModelRelatedModelEdgeRepository extends UnidentifiableG
101663
101914
  class Analytics__SemanticModelRelatedModelRepresentationRepository extends IdentifiableGraphQLTypeRepository {
101664
101915
  constructor(services, typeRegistry) {
101665
101916
  super(services);
101917
+ this.services = services;
101918
+ this.typeRegistry = typeRegistry;
101666
101919
  this.namespace = "oas";
101667
101920
  this.typeName = "Analytics__SemanticModelRelatedModelRepresentation";
101668
101921
  this.implementedInterfaces = [];
101669
101922
  this.idField = "Id";
101670
- this.typeRegistry = typeRegistry;
101671
101923
  }
101672
101924
  get fields() {
101673
101925
  return {
@@ -101686,11 +101938,12 @@ class Analytics__SemanticModelRelatedModelRepresentationRepository extends Ident
101686
101938
  class Analytics__SemanticModelRepository extends IdentifiableGraphQLTypeRepository {
101687
101939
  constructor(services, typeRegistry) {
101688
101940
  super(services);
101941
+ this.services = services;
101942
+ this.typeRegistry = typeRegistry;
101689
101943
  this.namespace = "oas";
101690
101944
  this.typeName = "Analytics__SemanticModel";
101691
101945
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101692
101946
  this.idField = "Id";
101693
- this.typeRegistry = typeRegistry;
101694
101947
  }
101695
101948
  get fields() {
101696
101949
  return {
@@ -101721,10 +101974,11 @@ class Analytics__SemanticModelRepository extends IdentifiableGraphQLTypeReposito
101721
101974
  class Analytics__SemanticSubMetricDefinitionConnectionRepository extends UnidentifiableGraphQLTypeRepository {
101722
101975
  constructor(services, typeRegistry) {
101723
101976
  super(services);
101977
+ this.services = services;
101978
+ this.typeRegistry = typeRegistry;
101724
101979
  this.namespace = "oas";
101725
101980
  this.typeName = "Analytics__SemanticSubMetricDefinitionConnection";
101726
101981
  this.implementedInterfaces = [];
101727
- this.typeRegistry = typeRegistry;
101728
101982
  }
101729
101983
  get fields() {
101730
101984
  return {
@@ -101740,10 +101994,11 @@ class Analytics__SemanticSubMetricDefinitionConnectionRepository extends Unident
101740
101994
  class Analytics__SemanticSubMetricDefinitionEdgeRepository extends UnidentifiableGraphQLTypeRepository {
101741
101995
  constructor(services, typeRegistry) {
101742
101996
  super(services);
101997
+ this.services = services;
101998
+ this.typeRegistry = typeRegistry;
101743
101999
  this.namespace = "oas";
101744
102000
  this.typeName = "Analytics__SemanticSubMetricDefinitionEdge";
101745
102001
  this.implementedInterfaces = [];
101746
- this.typeRegistry = typeRegistry;
101747
102002
  }
101748
102003
  get fields() {
101749
102004
  return {
@@ -101757,11 +102012,12 @@ class Analytics__SemanticSubMetricDefinitionEdgeRepository extends Unidentifiabl
101757
102012
  class Analytics__SemanticSubMetricDefinitionRepresentationRepository extends IdentifiableGraphQLTypeRepository {
101758
102013
  constructor(services, typeRegistry) {
101759
102014
  super(services);
102015
+ this.services = services;
102016
+ this.typeRegistry = typeRegistry;
101760
102017
  this.namespace = "oas";
101761
102018
  this.typeName = "Analytics__SemanticSubMetricDefinitionRepresentation";
101762
102019
  this.implementedInterfaces = [];
101763
102020
  this.idField = "Id";
101764
- this.typeRegistry = typeRegistry;
101765
102021
  }
101766
102022
  get fields() {
101767
102023
  return {
@@ -101787,10 +102043,11 @@ class Analytics__SemanticSubMetricDefinitionRepresentationRepository extends Ide
101787
102043
  class AnyTypeRepository extends BaseUnionRepository {
101788
102044
  constructor(services, typeRegistry) {
101789
102045
  super(services);
102046
+ this.services = services;
102047
+ this.typeRegistry = typeRegistry;
101790
102048
  this.namespace = "oas";
101791
102049
  this.typeName = "AnyType";
101792
102050
  this.implementedInterfaces = [];
101793
- this.typeRegistry = typeRegistry;
101794
102051
  }
101795
102052
  get fields() {
101796
102053
  return {
@@ -101811,10 +102068,11 @@ class AnyTypeRepository extends BaseUnionRepository {
101811
102068
  class Base64ValueRepository extends UnidentifiableGraphQLTypeRepository {
101812
102069
  constructor(services, typeRegistry) {
101813
102070
  super(services);
102071
+ this.services = services;
102072
+ this.typeRegistry = typeRegistry;
101814
102073
  this.namespace = "oas";
101815
102074
  this.typeName = "Base64Value";
101816
102075
  this.implementedInterfaces = ["FieldValue"];
101817
- this.typeRegistry = typeRegistry;
101818
102076
  }
101819
102077
  get fields() {
101820
102078
  return {
@@ -101828,10 +102086,11 @@ class Base64ValueRepository extends UnidentifiableGraphQLTypeRepository {
101828
102086
  class BooleanAggregateRepository extends UnidentifiableGraphQLTypeRepository {
101829
102087
  constructor(services, typeRegistry) {
101830
102088
  super(services);
102089
+ this.services = services;
102090
+ this.typeRegistry = typeRegistry;
101831
102091
  this.namespace = "oas";
101832
102092
  this.typeName = "BooleanAggregate";
101833
102093
  this.implementedInterfaces = ["FieldValue"];
101834
- this.typeRegistry = typeRegistry;
101835
102094
  }
101836
102095
  get fields() {
101837
102096
  return {
@@ -101846,10 +102105,11 @@ class BooleanAggregateRepository extends UnidentifiableGraphQLTypeRepository {
101846
102105
  class BooleanValueRepository extends UnidentifiableGraphQLTypeRepository {
101847
102106
  constructor(services, typeRegistry) {
101848
102107
  super(services);
102108
+ this.services = services;
102109
+ this.typeRegistry = typeRegistry;
101849
102110
  this.namespace = "oas";
101850
102111
  this.typeName = "BooleanValue";
101851
102112
  this.implementedInterfaces = ["FieldValue"];
101852
- this.typeRegistry = typeRegistry;
101853
102113
  }
101854
102114
  get fields() {
101855
102115
  return {
@@ -101863,10 +102123,11 @@ class BooleanValueRepository extends UnidentifiableGraphQLTypeRepository {
101863
102123
  class CanvasLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
101864
102124
  constructor(services, typeRegistry) {
101865
102125
  super(services);
102126
+ this.services = services;
102127
+ this.typeRegistry = typeRegistry;
101866
102128
  this.namespace = "oas";
101867
102129
  this.typeName = "CanvasLayoutComponent";
101868
102130
  this.implementedInterfaces = ["LayoutComponent"];
101869
- this.typeRegistry = typeRegistry;
101870
102131
  }
101871
102132
  get fields() {
101872
102133
  return {
@@ -101885,10 +102146,11 @@ class CanvasLayoutComponentRepository extends UnidentifiableGraphQLTypeRepositor
101885
102146
  class ChildRelationshipRepository extends UnidentifiableGraphQLTypeRepository {
101886
102147
  constructor(services, typeRegistry) {
101887
102148
  super(services);
102149
+ this.services = services;
102150
+ this.typeRegistry = typeRegistry;
101888
102151
  this.namespace = "oas";
101889
102152
  this.typeName = "ChildRelationship";
101890
102153
  this.implementedInterfaces = [];
101891
- this.typeRegistry = typeRegistry;
101892
102154
  }
101893
102155
  get fields() {
101894
102156
  return {
@@ -101906,10 +102168,11 @@ class ChildRelationshipRepository extends UnidentifiableGraphQLTypeRepository {
101906
102168
  let CompoundFieldRepository$1 = class CompoundFieldRepository extends UnidentifiableGraphQLTypeRepository {
101907
102169
  constructor(services, typeRegistry) {
101908
102170
  super(services);
102171
+ this.services = services;
102172
+ this.typeRegistry = typeRegistry;
101909
102173
  this.namespace = "oas";
101910
102174
  this.typeName = "CompoundField";
101911
102175
  this.implementedInterfaces = [];
101912
- this.typeRegistry = typeRegistry;
101913
102176
  }
101914
102177
  get fields() {
101915
102178
  return {
@@ -101945,10 +102208,11 @@ let CompoundFieldRepository$1 = class CompoundFieldRepository extends Unidentifi
101945
102208
  class ControllerValuesRepository extends UnidentifiableGraphQLTypeRepository {
101946
102209
  constructor(services, typeRegistry) {
101947
102210
  super(services);
102211
+ this.services = services;
102212
+ this.typeRegistry = typeRegistry;
101948
102213
  this.namespace = "oas";
101949
102214
  this.typeName = "ControllerValues";
101950
102215
  this.implementedInterfaces = [];
101951
- this.typeRegistry = typeRegistry;
101952
102216
  }
101953
102217
  get fields() {
101954
102218
  return {
@@ -101962,10 +102226,11 @@ class ControllerValuesRepository extends UnidentifiableGraphQLTypeRepository {
101962
102226
  class CurrencyAggregateRepository extends UnidentifiableGraphQLTypeRepository {
101963
102227
  constructor(services, typeRegistry) {
101964
102228
  super(services);
102229
+ this.services = services;
102230
+ this.typeRegistry = typeRegistry;
101965
102231
  this.namespace = "oas";
101966
102232
  this.typeName = "CurrencyAggregate";
101967
102233
  this.implementedInterfaces = ["FieldValue"];
101968
- this.typeRegistry = typeRegistry;
101969
102234
  }
101970
102235
  get fields() {
101971
102236
  return {
@@ -101986,10 +102251,11 @@ class CurrencyAggregateRepository extends UnidentifiableGraphQLTypeRepository {
101986
102251
  class CurrencyValueRepository extends UnidentifiableGraphQLTypeRepository {
101987
102252
  constructor(services, typeRegistry) {
101988
102253
  super(services);
102254
+ this.services = services;
102255
+ this.typeRegistry = typeRegistry;
101989
102256
  this.namespace = "oas";
101990
102257
  this.typeName = "CurrencyValue";
101991
102258
  this.implementedInterfaces = ["FieldValue"];
101992
- this.typeRegistry = typeRegistry;
101993
102259
  }
101994
102260
  get fields() {
101995
102261
  return {
@@ -102005,10 +102271,11 @@ class CurrencyValueRepository extends UnidentifiableGraphQLTypeRepository {
102005
102271
  class CustomLinkLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
102006
102272
  constructor(services, typeRegistry) {
102007
102273
  super(services);
102274
+ this.services = services;
102275
+ this.typeRegistry = typeRegistry;
102008
102276
  this.namespace = "oas";
102009
102277
  this.typeName = "CustomLinkLayoutComponent";
102010
102278
  this.implementedInterfaces = ["LayoutComponent"];
102011
- this.typeRegistry = typeRegistry;
102012
102279
  }
102013
102280
  get fields() {
102014
102281
  return {
@@ -102025,10 +102292,11 @@ class CustomLinkLayoutComponentRepository extends UnidentifiableGraphQLTypeRepos
102025
102292
  class DateAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102026
102293
  constructor(services, typeRegistry) {
102027
102294
  super(services);
102295
+ this.services = services;
102296
+ this.typeRegistry = typeRegistry;
102028
102297
  this.namespace = "oas";
102029
102298
  this.typeName = "DateAggregate";
102030
102299
  this.implementedInterfaces = ["FieldValue"];
102031
- this.typeRegistry = typeRegistry;
102032
102300
  }
102033
102301
  get fields() {
102034
102302
  return {
@@ -102059,10 +102327,11 @@ class DateAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102059
102327
  class DateFunctionAggregationRepository extends UnidentifiableGraphQLTypeRepository {
102060
102328
  constructor(services, typeRegistry) {
102061
102329
  super(services);
102330
+ this.services = services;
102331
+ this.typeRegistry = typeRegistry;
102062
102332
  this.namespace = "oas";
102063
102333
  this.typeName = "DateFunctionAggregation";
102064
102334
  this.implementedInterfaces = [];
102065
- this.typeRegistry = typeRegistry;
102066
102335
  }
102067
102336
  get fields() {
102068
102337
  return {
@@ -102076,10 +102345,11 @@ class DateFunctionAggregationRepository extends UnidentifiableGraphQLTypeReposit
102076
102345
  class DateTimeValueRepository extends UnidentifiableGraphQLTypeRepository {
102077
102346
  constructor(services, typeRegistry) {
102078
102347
  super(services);
102348
+ this.services = services;
102349
+ this.typeRegistry = typeRegistry;
102079
102350
  this.namespace = "oas";
102080
102351
  this.typeName = "DateTimeValue";
102081
102352
  this.implementedInterfaces = ["FieldValue"];
102082
- this.typeRegistry = typeRegistry;
102083
102353
  }
102084
102354
  get fields() {
102085
102355
  return {
@@ -102094,10 +102364,11 @@ class DateTimeValueRepository extends UnidentifiableGraphQLTypeRepository {
102094
102364
  class DateValueRepository extends UnidentifiableGraphQLTypeRepository {
102095
102365
  constructor(services, typeRegistry) {
102096
102366
  super(services);
102367
+ this.services = services;
102368
+ this.typeRegistry = typeRegistry;
102097
102369
  this.namespace = "oas";
102098
102370
  this.typeName = "DateValue";
102099
102371
  this.implementedInterfaces = ["FieldValue"];
102100
- this.typeRegistry = typeRegistry;
102101
102372
  }
102102
102373
  get fields() {
102103
102374
  return {
@@ -102112,10 +102383,11 @@ class DateValueRepository extends UnidentifiableGraphQLTypeRepository {
102112
102383
  class DependentFieldRepository extends UnidentifiableGraphQLTypeRepository {
102113
102384
  constructor(services, typeRegistry) {
102114
102385
  super(services);
102386
+ this.services = services;
102387
+ this.typeRegistry = typeRegistry;
102115
102388
  this.namespace = "oas";
102116
102389
  this.typeName = "DependentField";
102117
102390
  this.implementedInterfaces = [];
102118
- this.typeRegistry = typeRegistry;
102119
102391
  }
102120
102392
  get fields() {
102121
102393
  return {
@@ -102129,10 +102401,11 @@ class DependentFieldRepository extends UnidentifiableGraphQLTypeRepository {
102129
102401
  class DoubleAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102130
102402
  constructor(services, typeRegistry) {
102131
102403
  super(services);
102404
+ this.services = services;
102405
+ this.typeRegistry = typeRegistry;
102132
102406
  this.namespace = "oas";
102133
102407
  this.typeName = "DoubleAggregate";
102134
102408
  this.implementedInterfaces = ["FieldValue"];
102135
- this.typeRegistry = typeRegistry;
102136
102409
  }
102137
102410
  get fields() {
102138
102411
  return {
@@ -102153,10 +102426,11 @@ class DoubleAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102153
102426
  class DoubleValueRepository extends UnidentifiableGraphQLTypeRepository {
102154
102427
  constructor(services, typeRegistry) {
102155
102428
  super(services);
102429
+ this.services = services;
102430
+ this.typeRegistry = typeRegistry;
102156
102431
  this.namespace = "oas";
102157
102432
  this.typeName = "DoubleValue";
102158
102433
  this.implementedInterfaces = ["FieldValue"];
102159
- this.typeRegistry = typeRegistry;
102160
102434
  }
102161
102435
  get fields() {
102162
102436
  return {
@@ -102171,10 +102445,11 @@ class DoubleValueRepository extends UnidentifiableGraphQLTypeRepository {
102171
102445
  class EmailAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102172
102446
  constructor(services, typeRegistry) {
102173
102447
  super(services);
102448
+ this.services = services;
102449
+ this.typeRegistry = typeRegistry;
102174
102450
  this.namespace = "oas";
102175
102451
  this.typeName = "EmailAggregate";
102176
102452
  this.implementedInterfaces = ["FieldValue"];
102177
- this.typeRegistry = typeRegistry;
102178
102453
  }
102179
102454
  get fields() {
102180
102455
  return {
@@ -102193,10 +102468,11 @@ class EmailAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102193
102468
  class EmailValueRepository extends UnidentifiableGraphQLTypeRepository {
102194
102469
  constructor(services, typeRegistry) {
102195
102470
  super(services);
102471
+ this.services = services;
102472
+ this.typeRegistry = typeRegistry;
102196
102473
  this.namespace = "oas";
102197
102474
  this.typeName = "EmailValue";
102198
102475
  this.implementedInterfaces = ["FieldValue"];
102199
- this.typeRegistry = typeRegistry;
102200
102476
  }
102201
102477
  get fields() {
102202
102478
  return {
@@ -102210,10 +102486,11 @@ class EmailValueRepository extends UnidentifiableGraphQLTypeRepository {
102210
102486
  class EmptySpaceLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
102211
102487
  constructor(services, typeRegistry) {
102212
102488
  super(services);
102489
+ this.services = services;
102490
+ this.typeRegistry = typeRegistry;
102213
102491
  this.namespace = "oas";
102214
102492
  this.typeName = "EmptySpaceLayoutComponent";
102215
102493
  this.implementedInterfaces = ["LayoutComponent"];
102216
- this.typeRegistry = typeRegistry;
102217
102494
  }
102218
102495
  get fields() {
102219
102496
  return {
@@ -102227,10 +102504,11 @@ class EmptySpaceLayoutComponentRepository extends UnidentifiableGraphQLTypeRepos
102227
102504
  class EncryptedStringValueRepository extends UnidentifiableGraphQLTypeRepository {
102228
102505
  constructor(services, typeRegistry) {
102229
102506
  super(services);
102507
+ this.services = services;
102508
+ this.typeRegistry = typeRegistry;
102230
102509
  this.namespace = "oas";
102231
102510
  this.typeName = "EncryptedStringValue";
102232
102511
  this.implementedInterfaces = ["FieldValue"];
102233
- this.typeRegistry = typeRegistry;
102234
102512
  }
102235
102513
  get fields() {
102236
102514
  return {
@@ -102244,10 +102522,11 @@ class EncryptedStringValueRepository extends UnidentifiableGraphQLTypeRepository
102244
102522
  class FieldLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
102245
102523
  constructor(services, typeRegistry) {
102246
102524
  super(services);
102525
+ this.services = services;
102526
+ this.typeRegistry = typeRegistry;
102247
102527
  this.namespace = "oas";
102248
102528
  this.typeName = "FieldLayoutComponent";
102249
102529
  this.implementedInterfaces = ["LayoutComponent"];
102250
- this.typeRegistry = typeRegistry;
102251
102530
  }
102252
102531
  get fields() {
102253
102532
  return {
@@ -102262,10 +102541,11 @@ class FieldLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository
102262
102541
  class FieldRepository extends BaseInterfaceRepository {
102263
102542
  constructor(services, typeRegistry) {
102264
102543
  super(services);
102544
+ this.services = services;
102545
+ this.typeRegistry = typeRegistry;
102265
102546
  this.namespace = "oas";
102266
102547
  this.typeName = "Field";
102267
102548
  this.implementedInterfaces = [];
102268
- this.typeRegistry = typeRegistry;
102269
102549
  }
102270
102550
  get fields() {
102271
102551
  return {
@@ -102312,10 +102592,11 @@ class FieldRepository extends BaseInterfaceRepository {
102312
102592
  class FilteredLookupInfoRepository extends UnidentifiableGraphQLTypeRepository {
102313
102593
  constructor(services, typeRegistry) {
102314
102594
  super(services);
102595
+ this.services = services;
102596
+ this.typeRegistry = typeRegistry;
102315
102597
  this.namespace = "oas";
102316
102598
  this.typeName = "FilteredLookupInfo";
102317
102599
  this.implementedInterfaces = [];
102318
- this.typeRegistry = typeRegistry;
102319
102600
  }
102320
102601
  get fields() {
102321
102602
  return {
@@ -102330,10 +102611,11 @@ class FilteredLookupInfoRepository extends UnidentifiableGraphQLTypeRepository {
102330
102611
  class IDAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102331
102612
  constructor(services, typeRegistry) {
102332
102613
  super(services);
102614
+ this.services = services;
102615
+ this.typeRegistry = typeRegistry;
102333
102616
  this.namespace = "oas";
102334
102617
  this.typeName = "IDAggregate";
102335
102618
  this.implementedInterfaces = ["FieldValue"];
102336
- this.typeRegistry = typeRegistry;
102337
102619
  }
102338
102620
  get fields() {
102339
102621
  return {
@@ -102352,10 +102634,11 @@ class IDAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102352
102634
  class IDValueRepository extends UnidentifiableGraphQLTypeRepository {
102353
102635
  constructor(services, typeRegistry) {
102354
102636
  super(services);
102637
+ this.services = services;
102638
+ this.typeRegistry = typeRegistry;
102355
102639
  this.namespace = "oas";
102356
102640
  this.typeName = "IDValue";
102357
102641
  this.implementedInterfaces = ["FieldValue"];
102358
- this.typeRegistry = typeRegistry;
102359
102642
  }
102360
102643
  get fields() {
102361
102644
  return {
@@ -102369,10 +102652,11 @@ class IDValueRepository extends UnidentifiableGraphQLTypeRepository {
102369
102652
  class IntAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102370
102653
  constructor(services, typeRegistry) {
102371
102654
  super(services);
102655
+ this.services = services;
102656
+ this.typeRegistry = typeRegistry;
102372
102657
  this.namespace = "oas";
102373
102658
  this.typeName = "IntAggregate";
102374
102659
  this.implementedInterfaces = ["FieldValue"];
102375
- this.typeRegistry = typeRegistry;
102376
102660
  }
102377
102661
  get fields() {
102378
102662
  return {
@@ -102394,10 +102678,11 @@ class IntAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102394
102678
  class IntValueRepository extends UnidentifiableGraphQLTypeRepository {
102395
102679
  constructor(services, typeRegistry) {
102396
102680
  super(services);
102681
+ this.services = services;
102682
+ this.typeRegistry = typeRegistry;
102397
102683
  this.namespace = "oas";
102398
102684
  this.typeName = "IntValue";
102399
102685
  this.implementedInterfaces = ["FieldValue"];
102400
- this.typeRegistry = typeRegistry;
102401
102686
  }
102402
102687
  get fields() {
102403
102688
  return {
@@ -102412,10 +102697,11 @@ class IntValueRepository extends UnidentifiableGraphQLTypeRepository {
102412
102697
  class JSONValueRepository extends UnidentifiableGraphQLTypeRepository {
102413
102698
  constructor(services, typeRegistry) {
102414
102699
  super(services);
102700
+ this.services = services;
102701
+ this.typeRegistry = typeRegistry;
102415
102702
  this.namespace = "oas";
102416
102703
  this.typeName = "JSONValue";
102417
102704
  this.implementedInterfaces = ["FieldValue"];
102418
- this.typeRegistry = typeRegistry;
102419
102705
  }
102420
102706
  get fields() {
102421
102707
  return {
@@ -102429,10 +102715,11 @@ class JSONValueRepository extends UnidentifiableGraphQLTypeRepository {
102429
102715
  class LatitudeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102430
102716
  constructor(services, typeRegistry) {
102431
102717
  super(services);
102718
+ this.services = services;
102719
+ this.typeRegistry = typeRegistry;
102432
102720
  this.namespace = "oas";
102433
102721
  this.typeName = "LatitudeAggregate";
102434
102722
  this.implementedInterfaces = ["FieldValue"];
102435
- this.typeRegistry = typeRegistry;
102436
102723
  }
102437
102724
  get fields() {
102438
102725
  return {
@@ -102452,10 +102739,11 @@ class LatitudeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102452
102739
  class LatitudeValueRepository extends UnidentifiableGraphQLTypeRepository {
102453
102740
  constructor(services, typeRegistry) {
102454
102741
  super(services);
102742
+ this.services = services;
102743
+ this.typeRegistry = typeRegistry;
102455
102744
  this.namespace = "oas";
102456
102745
  this.typeName = "LatitudeValue";
102457
102746
  this.implementedInterfaces = ["FieldValue"];
102458
- this.typeRegistry = typeRegistry;
102459
102747
  }
102460
102748
  get fields() {
102461
102749
  return {
@@ -102469,10 +102757,11 @@ class LatitudeValueRepository extends UnidentifiableGraphQLTypeRepository {
102469
102757
  class LayoutComponentRepository extends BaseInterfaceRepository {
102470
102758
  constructor(services, typeRegistry) {
102471
102759
  super(services);
102760
+ this.services = services;
102761
+ this.typeRegistry = typeRegistry;
102472
102762
  this.namespace = "oas";
102473
102763
  this.typeName = "LayoutComponent";
102474
102764
  this.implementedInterfaces = [];
102475
- this.typeRegistry = typeRegistry;
102476
102765
  }
102477
102766
  get fields() {
102478
102767
  return {
@@ -102496,10 +102785,11 @@ class LayoutComponentRepository extends BaseInterfaceRepository {
102496
102785
  class LayoutConnectionRepository extends UnidentifiableGraphQLTypeRepository {
102497
102786
  constructor(services, typeRegistry) {
102498
102787
  super(services);
102788
+ this.services = services;
102789
+ this.typeRegistry = typeRegistry;
102499
102790
  this.namespace = "oas";
102500
102791
  this.typeName = "LayoutConnection";
102501
102792
  this.implementedInterfaces = [];
102502
- this.typeRegistry = typeRegistry;
102503
102793
  }
102504
102794
  get fields() {
102505
102795
  return {
@@ -102514,10 +102804,11 @@ class LayoutConnectionRepository extends UnidentifiableGraphQLTypeRepository {
102514
102804
  class LayoutEdgeRepository extends UnidentifiableGraphQLTypeRepository {
102515
102805
  constructor(services, typeRegistry) {
102516
102806
  super(services);
102807
+ this.services = services;
102808
+ this.typeRegistry = typeRegistry;
102517
102809
  this.namespace = "oas";
102518
102810
  this.typeName = "LayoutEdge";
102519
102811
  this.implementedInterfaces = [];
102520
- this.typeRegistry = typeRegistry;
102521
102812
  }
102522
102813
  get fields() {
102523
102814
  return {
@@ -102531,10 +102822,11 @@ class LayoutEdgeRepository extends UnidentifiableGraphQLTypeRepository {
102531
102822
  class LayoutItemRepository extends UnidentifiableGraphQLTypeRepository {
102532
102823
  constructor(services, typeRegistry) {
102533
102824
  super(services);
102825
+ this.services = services;
102826
+ this.typeRegistry = typeRegistry;
102534
102827
  this.namespace = "oas";
102535
102828
  this.typeName = "LayoutItem";
102536
102829
  this.implementedInterfaces = [];
102537
- this.typeRegistry = typeRegistry;
102538
102830
  }
102539
102831
  get fields() {
102540
102832
  return {
@@ -102554,11 +102846,12 @@ class LayoutItemRepository extends UnidentifiableGraphQLTypeRepository {
102554
102846
  class LayoutRepository extends IdentifiableGraphQLTypeRepository {
102555
102847
  constructor(services, typeRegistry) {
102556
102848
  super(services);
102849
+ this.services = services;
102850
+ this.typeRegistry = typeRegistry;
102557
102851
  this.namespace = "oas";
102558
102852
  this.typeName = "Layout";
102559
102853
  this.implementedInterfaces = [];
102560
102854
  this.idField = "id";
102561
- this.typeRegistry = typeRegistry;
102562
102855
  }
102563
102856
  get fields() {
102564
102857
  return {
@@ -102580,10 +102873,11 @@ class LayoutRepository extends IdentifiableGraphQLTypeRepository {
102580
102873
  class LayoutRowRepository extends UnidentifiableGraphQLTypeRepository {
102581
102874
  constructor(services, typeRegistry) {
102582
102875
  super(services);
102876
+ this.services = services;
102877
+ this.typeRegistry = typeRegistry;
102583
102878
  this.namespace = "oas";
102584
102879
  this.typeName = "LayoutRow";
102585
102880
  this.implementedInterfaces = [];
102586
- this.typeRegistry = typeRegistry;
102587
102881
  }
102588
102882
  get fields() {
102589
102883
  return {
@@ -102596,10 +102890,11 @@ class LayoutRowRepository extends UnidentifiableGraphQLTypeRepository {
102596
102890
  class LayoutSaveOptionRepository extends UnidentifiableGraphQLTypeRepository {
102597
102891
  constructor(services, typeRegistry) {
102598
102892
  super(services);
102893
+ this.services = services;
102894
+ this.typeRegistry = typeRegistry;
102599
102895
  this.namespace = "oas";
102600
102896
  this.typeName = "LayoutSaveOption";
102601
102897
  this.implementedInterfaces = [];
102602
- this.typeRegistry = typeRegistry;
102603
102898
  }
102604
102899
  get fields() {
102605
102900
  return {
@@ -102617,11 +102912,12 @@ class LayoutSaveOptionRepository extends UnidentifiableGraphQLTypeRepository {
102617
102912
  class LayoutSectionRepository extends IdentifiableGraphQLTypeRepository {
102618
102913
  constructor(services, typeRegistry) {
102619
102914
  super(services);
102915
+ this.services = services;
102916
+ this.typeRegistry = typeRegistry;
102620
102917
  this.namespace = "oas";
102621
102918
  this.typeName = "LayoutSection";
102622
102919
  this.implementedInterfaces = [];
102623
102920
  this.idField = "id";
102624
- this.typeRegistry = typeRegistry;
102625
102921
  }
102626
102922
  get fields() {
102627
102923
  return {
@@ -102644,10 +102940,11 @@ class LayoutSectionRepository extends IdentifiableGraphQLTypeRepository {
102644
102940
  class ListColumnRepository extends UnidentifiableGraphQLTypeRepository {
102645
102941
  constructor(services, typeRegistry) {
102646
102942
  super(services);
102943
+ this.services = services;
102944
+ this.typeRegistry = typeRegistry;
102647
102945
  this.namespace = "oas";
102648
102946
  this.typeName = "ListColumn";
102649
102947
  this.implementedInterfaces = [];
102650
- this.typeRegistry = typeRegistry;
102651
102948
  }
102652
102949
  get fields() {
102653
102950
  return {
@@ -102663,10 +102960,11 @@ class ListColumnRepository extends UnidentifiableGraphQLTypeRepository {
102663
102960
  class ListOrderRepository extends UnidentifiableGraphQLTypeRepository {
102664
102961
  constructor(services, typeRegistry) {
102665
102962
  super(services);
102963
+ this.services = services;
102964
+ this.typeRegistry = typeRegistry;
102666
102965
  this.namespace = "oas";
102667
102966
  this.typeName = "ListOrder";
102668
102967
  this.implementedInterfaces = [];
102669
- this.typeRegistry = typeRegistry;
102670
102968
  }
102671
102969
  get fields() {
102672
102970
  return {
@@ -102680,10 +102978,11 @@ class ListOrderRepository extends UnidentifiableGraphQLTypeRepository {
102680
102978
  class LongAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102681
102979
  constructor(services, typeRegistry) {
102682
102980
  super(services);
102981
+ this.services = services;
102982
+ this.typeRegistry = typeRegistry;
102683
102983
  this.namespace = "oas";
102684
102984
  this.typeName = "LongAggregate";
102685
102985
  this.implementedInterfaces = ["FieldValue"];
102686
- this.typeRegistry = typeRegistry;
102687
102986
  }
102688
102987
  get fields() {
102689
102988
  return {
@@ -102705,10 +103004,11 @@ class LongAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102705
103004
  class LongTextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
102706
103005
  constructor(services, typeRegistry) {
102707
103006
  super(services);
103007
+ this.services = services;
103008
+ this.typeRegistry = typeRegistry;
102708
103009
  this.namespace = "oas";
102709
103010
  this.typeName = "LongTextAreaValue";
102710
103011
  this.implementedInterfaces = ["FieldValue"];
102711
- this.typeRegistry = typeRegistry;
102712
103012
  }
102713
103013
  get fields() {
102714
103014
  return {
@@ -102723,10 +103023,11 @@ class LongTextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
102723
103023
  class LongValueRepository extends UnidentifiableGraphQLTypeRepository {
102724
103024
  constructor(services, typeRegistry) {
102725
103025
  super(services);
103026
+ this.services = services;
103027
+ this.typeRegistry = typeRegistry;
102726
103028
  this.namespace = "oas";
102727
103029
  this.typeName = "LongValue";
102728
103030
  this.implementedInterfaces = ["FieldValue"];
102729
- this.typeRegistry = typeRegistry;
102730
103031
  }
102731
103032
  get fields() {
102732
103033
  return {
@@ -102741,10 +103042,11 @@ class LongValueRepository extends UnidentifiableGraphQLTypeRepository {
102741
103042
  class LongitudeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102742
103043
  constructor(services, typeRegistry) {
102743
103044
  super(services);
103045
+ this.services = services;
103046
+ this.typeRegistry = typeRegistry;
102744
103047
  this.namespace = "oas";
102745
103048
  this.typeName = "LongitudeAggregate";
102746
103049
  this.implementedInterfaces = ["FieldValue"];
102747
- this.typeRegistry = typeRegistry;
102748
103050
  }
102749
103051
  get fields() {
102750
103052
  return {
@@ -102764,10 +103066,11 @@ class LongitudeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102764
103066
  class LongitudeValueRepository extends UnidentifiableGraphQLTypeRepository {
102765
103067
  constructor(services, typeRegistry) {
102766
103068
  super(services);
103069
+ this.services = services;
103070
+ this.typeRegistry = typeRegistry;
102767
103071
  this.namespace = "oas";
102768
103072
  this.typeName = "LongitudeValue";
102769
103073
  this.implementedInterfaces = ["FieldValue"];
102770
- this.typeRegistry = typeRegistry;
102771
103074
  }
102772
103075
  get fields() {
102773
103076
  return {
@@ -102781,10 +103084,11 @@ class LongitudeValueRepository extends UnidentifiableGraphQLTypeRepository {
102781
103084
  class MultiPicklistValueRepository extends UnidentifiableGraphQLTypeRepository {
102782
103085
  constructor(services, typeRegistry) {
102783
103086
  super(services);
103087
+ this.services = services;
103088
+ this.typeRegistry = typeRegistry;
102784
103089
  this.namespace = "oas";
102785
103090
  this.typeName = "MultiPicklistValue";
102786
103091
  this.implementedInterfaces = ["FieldValue"];
102787
- this.typeRegistry = typeRegistry;
102788
103092
  }
102789
103093
  get fields() {
102790
103094
  return {
@@ -102799,10 +103103,11 @@ class MultiPicklistValueRepository extends UnidentifiableGraphQLTypeRepository {
102799
103103
  class MutationRepository extends GraphQLDocumentRootTypeRepository {
102800
103104
  constructor(services, typeRegistry) {
102801
103105
  super(services);
103106
+ this.services = services;
103107
+ this.typeRegistry = typeRegistry;
102802
103108
  this.namespace = "oas";
102803
103109
  this.typeName = "Mutation";
102804
103110
  this.implementedInterfaces = [];
102805
- this.typeRegistry = typeRegistry;
102806
103111
  }
102807
103112
  get fields() {
102808
103113
  return {
@@ -102818,10 +103123,11 @@ class MutationRepository extends GraphQLDocumentRootTypeRepository {
102818
103123
  class ObjectInfoRepository extends UnidentifiableGraphQLTypeRepository {
102819
103124
  constructor(services, typeRegistry) {
102820
103125
  super(services);
103126
+ this.services = services;
103127
+ this.typeRegistry = typeRegistry;
102821
103128
  this.namespace = "oas";
102822
103129
  this.typeName = "ObjectInfo";
102823
103130
  this.implementedInterfaces = [];
102824
- this.typeRegistry = typeRegistry;
102825
103131
  }
102826
103132
  get fields() {
102827
103133
  return {
@@ -102854,10 +103160,11 @@ class ObjectInfoRepository extends UnidentifiableGraphQLTypeRepository {
102854
103160
  class PageInfoRepository extends UnidentifiableGraphQLTypeRepository {
102855
103161
  constructor(services, typeRegistry) {
102856
103162
  super(services);
103163
+ this.services = services;
103164
+ this.typeRegistry = typeRegistry;
102857
103165
  this.namespace = "oas";
102858
103166
  this.typeName = "PageInfo";
102859
103167
  this.implementedInterfaces = [];
102860
- this.typeRegistry = typeRegistry;
102861
103168
  }
102862
103169
  get fields() {
102863
103170
  return {
@@ -102873,10 +103180,11 @@ class PageInfoRepository extends UnidentifiableGraphQLTypeRepository {
102873
103180
  class PercentAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102874
103181
  constructor(services, typeRegistry) {
102875
103182
  super(services);
103183
+ this.services = services;
103184
+ this.typeRegistry = typeRegistry;
102876
103185
  this.namespace = "oas";
102877
103186
  this.typeName = "PercentAggregate";
102878
103187
  this.implementedInterfaces = ["FieldValue"];
102879
- this.typeRegistry = typeRegistry;
102880
103188
  }
102881
103189
  get fields() {
102882
103190
  return {
@@ -102897,10 +103205,11 @@ class PercentAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102897
103205
  class PercentValueRepository extends UnidentifiableGraphQLTypeRepository {
102898
103206
  constructor(services, typeRegistry) {
102899
103207
  super(services);
103208
+ this.services = services;
103209
+ this.typeRegistry = typeRegistry;
102900
103210
  this.namespace = "oas";
102901
103211
  this.typeName = "PercentValue";
102902
103212
  this.implementedInterfaces = ["FieldValue"];
102903
- this.typeRegistry = typeRegistry;
102904
103213
  }
102905
103214
  get fields() {
102906
103215
  return {
@@ -102915,10 +103224,11 @@ class PercentValueRepository extends UnidentifiableGraphQLTypeRepository {
102915
103224
  class PhoneNumberAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102916
103225
  constructor(services, typeRegistry) {
102917
103226
  super(services);
103227
+ this.services = services;
103228
+ this.typeRegistry = typeRegistry;
102918
103229
  this.namespace = "oas";
102919
103230
  this.typeName = "PhoneNumberAggregate";
102920
103231
  this.implementedInterfaces = ["FieldValue"];
102921
- this.typeRegistry = typeRegistry;
102922
103232
  }
102923
103233
  get fields() {
102924
103234
  return {
@@ -102937,10 +103247,11 @@ class PhoneNumberAggregateRepository extends UnidentifiableGraphQLTypeRepository
102937
103247
  class PhoneNumberValueRepository extends UnidentifiableGraphQLTypeRepository {
102938
103248
  constructor(services, typeRegistry) {
102939
103249
  super(services);
103250
+ this.services = services;
103251
+ this.typeRegistry = typeRegistry;
102940
103252
  this.namespace = "oas";
102941
103253
  this.typeName = "PhoneNumberValue";
102942
103254
  this.implementedInterfaces = ["FieldValue"];
102943
- this.typeRegistry = typeRegistry;
102944
103255
  }
102945
103256
  get fields() {
102946
103257
  return {
@@ -102954,10 +103265,11 @@ class PhoneNumberValueRepository extends UnidentifiableGraphQLTypeRepository {
102954
103265
  class PicklistAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102955
103266
  constructor(services, typeRegistry) {
102956
103267
  super(services);
103268
+ this.services = services;
103269
+ this.typeRegistry = typeRegistry;
102957
103270
  this.namespace = "oas";
102958
103271
  this.typeName = "PicklistAggregate";
102959
103272
  this.implementedInterfaces = ["FieldValue"];
102960
- this.typeRegistry = typeRegistry;
102961
103273
  }
102962
103274
  get fields() {
102963
103275
  return {
@@ -102977,10 +103289,11 @@ class PicklistAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102977
103289
  class PicklistAttributesRepository extends UnidentifiableGraphQLTypeRepository {
102978
103290
  constructor(services, typeRegistry) {
102979
103291
  super(services);
103292
+ this.services = services;
103293
+ this.typeRegistry = typeRegistry;
102980
103294
  this.namespace = "oas";
102981
103295
  this.typeName = "PicklistAttributes";
102982
103296
  this.implementedInterfaces = [];
102983
- this.typeRegistry = typeRegistry;
102984
103297
  }
102985
103298
  get fields() {
102986
103299
  return {
@@ -102994,10 +103307,11 @@ class PicklistAttributesRepository extends UnidentifiableGraphQLTypeRepository {
102994
103307
  class PicklistFieldRepository extends UnidentifiableGraphQLTypeRepository {
102995
103308
  constructor(services, typeRegistry) {
102996
103309
  super(services);
103310
+ this.services = services;
103311
+ this.typeRegistry = typeRegistry;
102997
103312
  this.namespace = "oas";
102998
103313
  this.typeName = "PicklistField";
102999
103314
  this.implementedInterfaces = ["Field"];
103000
- this.typeRegistry = typeRegistry;
103001
103315
  }
103002
103316
  get fields() {
103003
103317
  return {
@@ -103039,10 +103353,11 @@ class PicklistFieldRepository extends UnidentifiableGraphQLTypeRepository {
103039
103353
  class PicklistValueByRecordTypeIDsRepository extends UnidentifiableGraphQLTypeRepository {
103040
103354
  constructor(services, typeRegistry) {
103041
103355
  super(services);
103356
+ this.services = services;
103357
+ this.typeRegistry = typeRegistry;
103042
103358
  this.namespace = "oas";
103043
103359
  this.typeName = "PicklistValueByRecordTypeIDs";
103044
103360
  this.implementedInterfaces = [];
103045
- this.typeRegistry = typeRegistry;
103046
103361
  }
103047
103362
  get fields() {
103048
103363
  return {
@@ -103058,10 +103373,11 @@ class PicklistValueByRecordTypeIDsRepository extends UnidentifiableGraphQLTypeRe
103058
103373
  class PicklistValueRepository extends UnidentifiableGraphQLTypeRepository {
103059
103374
  constructor(services, typeRegistry) {
103060
103375
  super(services);
103376
+ this.services = services;
103377
+ this.typeRegistry = typeRegistry;
103061
103378
  this.namespace = "oas";
103062
103379
  this.typeName = "PicklistValue";
103063
103380
  this.implementedInterfaces = ["FieldValue"];
103064
- this.typeRegistry = typeRegistry;
103065
103381
  }
103066
103382
  get fields() {
103067
103383
  return {
@@ -103076,10 +103392,11 @@ class PicklistValueRepository extends UnidentifiableGraphQLTypeRepository {
103076
103392
  class PicklistValuesRepository extends UnidentifiableGraphQLTypeRepository {
103077
103393
  constructor(services, typeRegistry) {
103078
103394
  super(services);
103395
+ this.services = services;
103396
+ this.typeRegistry = typeRegistry;
103079
103397
  this.namespace = "oas";
103080
103398
  this.typeName = "PicklistValues";
103081
103399
  this.implementedInterfaces = [];
103082
- this.typeRegistry = typeRegistry;
103083
103400
  }
103084
103401
  get fields() {
103085
103402
  return {
@@ -103095,10 +103412,11 @@ class PicklistValuesRepository extends UnidentifiableGraphQLTypeRepository {
103095
103412
  let PolymorphicAggregateParentRelationshipRepository$1 = class PolymorphicAggregateParentRelationshipRepository extends BaseUnionRepository {
103096
103413
  constructor(services, typeRegistry) {
103097
103414
  super(services);
103415
+ this.services = services;
103416
+ this.typeRegistry = typeRegistry;
103098
103417
  this.namespace = "oas";
103099
103418
  this.typeName = "PolymorphicAggregateParentRelationship";
103100
103419
  this.implementedInterfaces = [];
103101
- this.typeRegistry = typeRegistry;
103102
103420
  }
103103
103421
  get fields() {
103104
103422
  return {
@@ -103115,10 +103433,11 @@ let PolymorphicAggregateParentRelationshipRepository$1 = class PolymorphicAggreg
103115
103433
  let PolymorphicParentRelationshipRepository$1 = class PolymorphicParentRelationshipRepository extends BaseUnionRepository {
103116
103434
  constructor(services, typeRegistry) {
103117
103435
  super(services);
103436
+ this.services = services;
103437
+ this.typeRegistry = typeRegistry;
103118
103438
  this.namespace = "oas";
103119
103439
  this.typeName = "PolymorphicParentRelationship";
103120
103440
  this.implementedInterfaces = [];
103121
- this.typeRegistry = typeRegistry;
103122
103441
  }
103123
103442
  get fields() {
103124
103443
  return {
@@ -103135,10 +103454,11 @@ let PolymorphicParentRelationshipRepository$1 = class PolymorphicParentRelations
103135
103454
  class QueryRepository extends GraphQLDocumentRootTypeRepository {
103136
103455
  constructor(services, typeRegistry) {
103137
103456
  super(services);
103457
+ this.services = services;
103458
+ this.typeRegistry = typeRegistry;
103138
103459
  this.namespace = "oas";
103139
103460
  this.typeName = "Query";
103140
103461
  this.implementedInterfaces = [];
103141
- this.typeRegistry = typeRegistry;
103142
103462
  }
103143
103463
  get fields() {
103144
103464
  return {
@@ -103156,10 +103476,11 @@ class QueryRepository extends GraphQLDocumentRootTypeRepository {
103156
103476
  let RecordAggregateConnectionRepository$1 = class RecordAggregateConnectionRepository extends UnidentifiableGraphQLTypeRepository {
103157
103477
  constructor(services, typeRegistry) {
103158
103478
  super(services);
103479
+ this.services = services;
103480
+ this.typeRegistry = typeRegistry;
103159
103481
  this.namespace = "oas";
103160
103482
  this.typeName = "RecordAggregateConnection";
103161
103483
  this.implementedInterfaces = [];
103162
- this.typeRegistry = typeRegistry;
103163
103484
  }
103164
103485
  get fields() {
103165
103486
  return {
@@ -103174,10 +103495,11 @@ let RecordAggregateConnectionRepository$1 = class RecordAggregateConnectionRepos
103174
103495
  let RecordAggregateEdgeRepository$1 = class RecordAggregateEdgeRepository extends UnidentifiableGraphQLTypeRepository {
103175
103496
  constructor(services, typeRegistry) {
103176
103497
  super(services);
103498
+ this.services = services;
103499
+ this.typeRegistry = typeRegistry;
103177
103500
  this.namespace = "oas";
103178
103501
  this.typeName = "RecordAggregateEdge";
103179
103502
  this.implementedInterfaces = [];
103180
- this.typeRegistry = typeRegistry;
103181
103503
  }
103182
103504
  get fields() {
103183
103505
  return {
@@ -103191,10 +103513,11 @@ let RecordAggregateEdgeRepository$1 = class RecordAggregateEdgeRepository extend
103191
103513
  let RecordAggregateRepository$1 = class RecordAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103192
103514
  constructor(services, typeRegistry) {
103193
103515
  super(services);
103516
+ this.services = services;
103517
+ this.typeRegistry = typeRegistry;
103194
103518
  this.namespace = "oas";
103195
103519
  this.typeName = "RecordAggregate";
103196
103520
  this.implementedInterfaces = [];
103197
- this.typeRegistry = typeRegistry;
103198
103521
  }
103199
103522
  get fields() {
103200
103523
  return {
@@ -103226,10 +103549,11 @@ let RecordAggregateRepository$1 = class RecordAggregateRepository extends Uniden
103226
103549
  let RecordConnectionRepository$1 = class RecordConnectionRepository extends UnidentifiableGraphQLTypeRepository {
103227
103550
  constructor(services, typeRegistry) {
103228
103551
  super(services);
103552
+ this.services = services;
103553
+ this.typeRegistry = typeRegistry;
103229
103554
  this.namespace = "oas";
103230
103555
  this.typeName = "RecordConnection";
103231
103556
  this.implementedInterfaces = [];
103232
- this.typeRegistry = typeRegistry;
103233
103557
  }
103234
103558
  get fields() {
103235
103559
  return {
@@ -103245,10 +103569,11 @@ let RecordConnectionRepository$1 = class RecordConnectionRepository extends Unid
103245
103569
  let RecordCreatePayloadRepository$1 = class RecordCreatePayloadRepository extends UnidentifiableGraphQLTypeRepository {
103246
103570
  constructor(services, typeRegistry) {
103247
103571
  super(services);
103572
+ this.services = services;
103573
+ this.typeRegistry = typeRegistry;
103248
103574
  this.namespace = "oas";
103249
103575
  this.typeName = "RecordCreatePayload";
103250
103576
  this.implementedInterfaces = [];
103251
- this.typeRegistry = typeRegistry;
103252
103577
  }
103253
103578
  get fields() {
103254
103579
  return {
@@ -103261,11 +103586,12 @@ let RecordCreatePayloadRepository$1 = class RecordCreatePayloadRepository extend
103261
103586
  let RecordDeletePayloadRepository$1 = class RecordDeletePayloadRepository extends IdentifiableGraphQLTypeRepository {
103262
103587
  constructor(services, typeRegistry) {
103263
103588
  super(services);
103589
+ this.services = services;
103590
+ this.typeRegistry = typeRegistry;
103264
103591
  this.namespace = "oas";
103265
103592
  this.typeName = "RecordDeletePayload";
103266
103593
  this.implementedInterfaces = [];
103267
103594
  this.idField = "Id";
103268
- this.typeRegistry = typeRegistry;
103269
103595
  }
103270
103596
  get fields() {
103271
103597
  return {
@@ -103281,10 +103607,11 @@ let RecordDeletePayloadRepository$1 = class RecordDeletePayloadRepository extend
103281
103607
  let RecordEdgeRepository$1 = class RecordEdgeRepository extends UnidentifiableGraphQLTypeRepository {
103282
103608
  constructor(services, typeRegistry) {
103283
103609
  super(services);
103610
+ this.services = services;
103611
+ this.typeRegistry = typeRegistry;
103284
103612
  this.namespace = "oas";
103285
103613
  this.typeName = "RecordEdge";
103286
103614
  this.implementedInterfaces = [];
103287
- this.typeRegistry = typeRegistry;
103288
103615
  }
103289
103616
  get fields() {
103290
103617
  return {
@@ -103298,10 +103625,11 @@ let RecordEdgeRepository$1 = class RecordEdgeRepository extends UnidentifiableGr
103298
103625
  let RecordQueryAggregateRepository$1 = class RecordQueryAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103299
103626
  constructor(services, typeRegistry) {
103300
103627
  super(services);
103628
+ this.services = services;
103629
+ this.typeRegistry = typeRegistry;
103301
103630
  this.namespace = "oas";
103302
103631
  this.typeName = "RecordQueryAggregate";
103303
103632
  this.implementedInterfaces = [];
103304
- this.typeRegistry = typeRegistry;
103305
103633
  }
103306
103634
  get fields() {
103307
103635
  return {
@@ -103314,10 +103642,11 @@ let RecordQueryAggregateRepository$1 = class RecordQueryAggregateRepository exte
103314
103642
  let RecordQueryRepository$1 = class RecordQueryRepository extends UnidentifiableGraphQLTypeRepository {
103315
103643
  constructor(services, typeRegistry) {
103316
103644
  super(services);
103645
+ this.services = services;
103646
+ this.typeRegistry = typeRegistry;
103317
103647
  this.namespace = "oas";
103318
103648
  this.typeName = "RecordQuery";
103319
103649
  this.implementedInterfaces = [];
103320
- this.typeRegistry = typeRegistry;
103321
103650
  }
103322
103651
  get fields() {
103323
103652
  return {
@@ -103330,11 +103659,12 @@ let RecordQueryRepository$1 = class RecordQueryRepository extends Unidentifiable
103330
103659
  let RecordRepresentationRepository$1 = class RecordRepresentationRepository extends IdentifiableGraphQLTypeRepository {
103331
103660
  constructor(services, typeRegistry) {
103332
103661
  super(services);
103662
+ this.services = services;
103663
+ this.typeRegistry = typeRegistry;
103333
103664
  this.namespace = "oas";
103334
103665
  this.typeName = "RecordRepresentation";
103335
103666
  this.implementedInterfaces = ["Record"];
103336
103667
  this.idField = "Id";
103337
- this.typeRegistry = typeRegistry;
103338
103668
  }
103339
103669
  get fields() {
103340
103670
  return {
@@ -103387,10 +103717,11 @@ let RecordRepresentationRepository$1 = class RecordRepresentationRepository exte
103387
103717
  let RecordResultRepository$1 = class RecordResultRepository extends UnidentifiableGraphQLTypeRepository {
103388
103718
  constructor(services, typeRegistry) {
103389
103719
  super(services);
103720
+ this.services = services;
103721
+ this.typeRegistry = typeRegistry;
103390
103722
  this.namespace = "oas";
103391
103723
  this.typeName = "RecordResult";
103392
103724
  this.implementedInterfaces = [];
103393
- this.typeRegistry = typeRegistry;
103394
103725
  }
103395
103726
  get fields() {
103396
103727
  return {
@@ -103403,10 +103734,11 @@ let RecordResultRepository$1 = class RecordResultRepository extends Unidentifiab
103403
103734
  class RecordTypeInfoRepository extends UnidentifiableGraphQLTypeRepository {
103404
103735
  constructor(services, typeRegistry) {
103405
103736
  super(services);
103737
+ this.services = services;
103738
+ this.typeRegistry = typeRegistry;
103406
103739
  this.namespace = "oas";
103407
103740
  this.typeName = "RecordTypeInfo";
103408
103741
  this.implementedInterfaces = [];
103409
- this.typeRegistry = typeRegistry;
103410
103742
  }
103411
103743
  get fields() {
103412
103744
  return {
@@ -103423,10 +103755,11 @@ class RecordTypeInfoRepository extends UnidentifiableGraphQLTypeRepository {
103423
103755
  let RecordUpdatePayloadRepository$1 = class RecordUpdatePayloadRepository extends UnidentifiableGraphQLTypeRepository {
103424
103756
  constructor(services, typeRegistry) {
103425
103757
  super(services);
103758
+ this.services = services;
103759
+ this.typeRegistry = typeRegistry;
103426
103760
  this.namespace = "oas";
103427
103761
  this.typeName = "RecordUpdatePayload";
103428
103762
  this.implementedInterfaces = [];
103429
- this.typeRegistry = typeRegistry;
103430
103763
  }
103431
103764
  get fields() {
103432
103765
  return {
@@ -103440,10 +103773,11 @@ let RecordUpdatePayloadRepository$1 = class RecordUpdatePayloadRepository extend
103440
103773
  class ReferenceToInfoRepository extends UnidentifiableGraphQLTypeRepository {
103441
103774
  constructor(services, typeRegistry) {
103442
103775
  super(services);
103776
+ this.services = services;
103777
+ this.typeRegistry = typeRegistry;
103443
103778
  this.namespace = "oas";
103444
103779
  this.typeName = "ReferenceToInfo";
103445
103780
  this.implementedInterfaces = [];
103446
- this.typeRegistry = typeRegistry;
103447
103781
  }
103448
103782
  get fields() {
103449
103783
  return {
@@ -103458,10 +103792,11 @@ class ReferenceToInfoRepository extends UnidentifiableGraphQLTypeRepository {
103458
103792
  class RelatedListInfoRepository extends UnidentifiableGraphQLTypeRepository {
103459
103793
  constructor(services, typeRegistry) {
103460
103794
  super(services);
103795
+ this.services = services;
103796
+ this.typeRegistry = typeRegistry;
103461
103797
  this.namespace = "oas";
103462
103798
  this.typeName = "RelatedListInfo";
103463
103799
  this.implementedInterfaces = [];
103464
- this.typeRegistry = typeRegistry;
103465
103800
  }
103466
103801
  get fields() {
103467
103802
  return {
@@ -103480,10 +103815,11 @@ class RelatedListInfoRepository extends UnidentifiableGraphQLTypeRepository {
103480
103815
  class ReportLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
103481
103816
  constructor(services, typeRegistry) {
103482
103817
  super(services);
103818
+ this.services = services;
103819
+ this.typeRegistry = typeRegistry;
103483
103820
  this.namespace = "oas";
103484
103821
  this.typeName = "ReportLayoutComponent";
103485
103822
  this.implementedInterfaces = ["LayoutComponent"];
103486
- this.typeRegistry = typeRegistry;
103487
103823
  }
103488
103824
  get fields() {
103489
103825
  return {
@@ -103505,10 +103841,11 @@ class ReportLayoutComponentRepository extends UnidentifiableGraphQLTypeRepositor
103505
103841
  class RichTextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
103506
103842
  constructor(services, typeRegistry) {
103507
103843
  super(services);
103844
+ this.services = services;
103845
+ this.typeRegistry = typeRegistry;
103508
103846
  this.namespace = "oas";
103509
103847
  this.typeName = "RichTextAreaValue";
103510
103848
  this.implementedInterfaces = ["FieldValue"];
103511
- this.typeRegistry = typeRegistry;
103512
103849
  }
103513
103850
  get fields() {
103514
103851
  return {
@@ -103523,10 +103860,11 @@ class RichTextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
103523
103860
  class SObject__FieldRepository extends UnidentifiableGraphQLTypeRepository {
103524
103861
  constructor(services, typeRegistry) {
103525
103862
  super(services);
103863
+ this.services = services;
103864
+ this.typeRegistry = typeRegistry;
103526
103865
  this.namespace = "oas";
103527
103866
  this.typeName = "SObject__Field";
103528
103867
  this.implementedInterfaces = [];
103529
- this.typeRegistry = typeRegistry;
103530
103868
  }
103531
103869
  get fields() {
103532
103870
  return {
@@ -103540,11 +103878,12 @@ class SObject__FieldRepository extends UnidentifiableGraphQLTypeRepository {
103540
103878
  class Setup__EntityRepresentationRepository extends IdentifiableGraphQLTypeRepository {
103541
103879
  constructor(services, typeRegistry) {
103542
103880
  super(services);
103881
+ this.services = services;
103882
+ this.typeRegistry = typeRegistry;
103543
103883
  this.namespace = "oas";
103544
103884
  this.typeName = "Setup__EntityRepresentation";
103545
103885
  this.implementedInterfaces = [];
103546
103886
  this.idField = "Id";
103547
- this.typeRegistry = typeRegistry;
103548
103887
  }
103549
103888
  get fields() {
103550
103889
  return {
@@ -103591,10 +103930,11 @@ class Setup__EntityRepresentationRepository extends IdentifiableGraphQLTypeRepos
103591
103930
  class Setup__ListColumnRepository extends UnidentifiableGraphQLTypeRepository {
103592
103931
  constructor(services, typeRegistry) {
103593
103932
  super(services);
103933
+ this.services = services;
103934
+ this.typeRegistry = typeRegistry;
103594
103935
  this.namespace = "oas";
103595
103936
  this.typeName = "Setup__ListColumn";
103596
103937
  this.implementedInterfaces = [];
103597
- this.typeRegistry = typeRegistry;
103598
103938
  }
103599
103939
  get fields() {
103600
103940
  return {
@@ -103616,10 +103956,11 @@ class Setup__ListColumnRepository extends UnidentifiableGraphQLTypeRepository {
103616
103956
  class Setup__ListFilterRepository extends UnidentifiableGraphQLTypeRepository {
103617
103957
  constructor(services, typeRegistry) {
103618
103958
  super(services);
103959
+ this.services = services;
103960
+ this.typeRegistry = typeRegistry;
103619
103961
  this.namespace = "oas";
103620
103962
  this.typeName = "Setup__ListFilter";
103621
103963
  this.implementedInterfaces = [];
103622
- this.typeRegistry = typeRegistry;
103623
103964
  }
103624
103965
  get fields() {
103625
103966
  return {
@@ -103635,10 +103976,11 @@ class Setup__ListFilterRepository extends UnidentifiableGraphQLTypeRepository {
103635
103976
  class Setup__ListInlineEditAttributeDetailsRepository extends UnidentifiableGraphQLTypeRepository {
103636
103977
  constructor(services, typeRegistry) {
103637
103978
  super(services);
103979
+ this.services = services;
103980
+ this.typeRegistry = typeRegistry;
103638
103981
  this.namespace = "oas";
103639
103982
  this.typeName = "Setup__ListInlineEditAttributeDetails";
103640
103983
  this.implementedInterfaces = [];
103641
- this.typeRegistry = typeRegistry;
103642
103984
  }
103643
103985
  get fields() {
103644
103986
  return {
@@ -103653,10 +103995,11 @@ class Setup__ListInlineEditAttributeDetailsRepository extends UnidentifiableGrap
103653
103995
  class Setup__ListInlineEditAttributesRepository extends UnidentifiableGraphQLTypeRepository {
103654
103996
  constructor(services, typeRegistry) {
103655
103997
  super(services);
103998
+ this.services = services;
103999
+ this.typeRegistry = typeRegistry;
103656
104000
  this.namespace = "oas";
103657
104001
  this.typeName = "Setup__ListInlineEditAttributes";
103658
104002
  this.implementedInterfaces = [];
103659
- this.typeRegistry = typeRegistry;
103660
104003
  }
103661
104004
  get fields() {
103662
104005
  return {
@@ -103671,10 +104014,11 @@ class Setup__ListInlineEditAttributesRepository extends UnidentifiableGraphQLTyp
103671
104014
  class Setup__ListOrderRepository extends UnidentifiableGraphQLTypeRepository {
103672
104015
  constructor(services, typeRegistry) {
103673
104016
  super(services);
104017
+ this.services = services;
104018
+ this.typeRegistry = typeRegistry;
103674
104019
  this.namespace = "oas";
103675
104020
  this.typeName = "Setup__ListOrder";
103676
104021
  this.implementedInterfaces = [];
103677
- this.typeRegistry = typeRegistry;
103678
104022
  }
103679
104023
  get fields() {
103680
104024
  return {
@@ -103689,10 +104033,11 @@ class Setup__ListOrderRepository extends UnidentifiableGraphQLTypeRepository {
103689
104033
  class Setup__ListScalarFieldRepository extends UnidentifiableGraphQLTypeRepository {
103690
104034
  constructor(services, typeRegistry) {
103691
104035
  super(services);
104036
+ this.services = services;
104037
+ this.typeRegistry = typeRegistry;
103692
104038
  this.namespace = "oas";
103693
104039
  this.typeName = "Setup__ListScalarField";
103694
104040
  this.implementedInterfaces = [];
103695
- this.typeRegistry = typeRegistry;
103696
104041
  }
103697
104042
  get fields() {
103698
104043
  return {
@@ -103712,10 +104057,11 @@ class Setup__ListScalarFieldRepository extends UnidentifiableGraphQLTypeReposito
103712
104057
  class Setup__ListViewObjectInfoRepository extends UnidentifiableGraphQLTypeRepository {
103713
104058
  constructor(services, typeRegistry) {
103714
104059
  super(services);
104060
+ this.services = services;
104061
+ this.typeRegistry = typeRegistry;
103715
104062
  this.namespace = "oas";
103716
104063
  this.typeName = "Setup__ListViewObjectInfo";
103717
104064
  this.implementedInterfaces = [];
103718
- this.typeRegistry = typeRegistry;
103719
104065
  }
103720
104066
  get fields() {
103721
104067
  return {
@@ -103728,10 +104074,11 @@ class Setup__ListViewObjectInfoRepository extends UnidentifiableGraphQLTypeRepos
103728
104074
  class Setup__ListViewRepository extends UnidentifiableGraphQLTypeRepository {
103729
104075
  constructor(services, typeRegistry) {
103730
104076
  super(services);
104077
+ this.services = services;
104078
+ this.typeRegistry = typeRegistry;
103731
104079
  this.namespace = "oas";
103732
104080
  this.typeName = "Setup__ListView";
103733
104081
  this.implementedInterfaces = [];
103734
- this.typeRegistry = typeRegistry;
103735
104082
  }
103736
104083
  get fields() {
103737
104084
  return {
@@ -103752,10 +104099,11 @@ class Setup__ListViewRepository extends UnidentifiableGraphQLTypeRepository {
103752
104099
  class Setup__ListViewRowConnectionRepository extends UnidentifiableGraphQLTypeRepository {
103753
104100
  constructor(services, typeRegistry) {
103754
104101
  super(services);
104102
+ this.services = services;
104103
+ this.typeRegistry = typeRegistry;
103755
104104
  this.namespace = "oas";
103756
104105
  this.typeName = "Setup__ListViewRowConnection";
103757
104106
  this.implementedInterfaces = [];
103758
- this.typeRegistry = typeRegistry;
103759
104107
  }
103760
104108
  get fields() {
103761
104109
  return {
@@ -103770,10 +104118,11 @@ class Setup__ListViewRowConnectionRepository extends UnidentifiableGraphQLTypeRe
103770
104118
  class Setup__ListViewRowEdgeRepository extends UnidentifiableGraphQLTypeRepository {
103771
104119
  constructor(services, typeRegistry) {
103772
104120
  super(services);
104121
+ this.services = services;
104122
+ this.typeRegistry = typeRegistry;
103773
104123
  this.namespace = "oas";
103774
104124
  this.typeName = "Setup__ListViewRowEdge";
103775
104125
  this.implementedInterfaces = [];
103776
- this.typeRegistry = typeRegistry;
103777
104126
  }
103778
104127
  get fields() {
103779
104128
  return {
@@ -103787,10 +104136,11 @@ class Setup__ListViewRowEdgeRepository extends UnidentifiableGraphQLTypeReposito
103787
104136
  class Setup__ListViewRowRepository extends UnidentifiableGraphQLTypeRepository {
103788
104137
  constructor(services, typeRegistry) {
103789
104138
  super(services);
104139
+ this.services = services;
104140
+ this.typeRegistry = typeRegistry;
103790
104141
  this.namespace = "oas";
103791
104142
  this.typeName = "Setup__ListViewRow";
103792
104143
  this.implementedInterfaces = [];
103793
- this.typeRegistry = typeRegistry;
103794
104144
  }
103795
104145
  get fields() {
103796
104146
  return {
@@ -103804,10 +104154,11 @@ class Setup__ListViewRowRepository extends UnidentifiableGraphQLTypeRepository {
103804
104154
  class Setup__SetupAggregateConnectionRepository extends UnidentifiableGraphQLTypeRepository {
103805
104155
  constructor(services, typeRegistry) {
103806
104156
  super(services);
104157
+ this.services = services;
104158
+ this.typeRegistry = typeRegistry;
103807
104159
  this.namespace = "oas";
103808
104160
  this.typeName = "Setup__SetupAggregateConnection";
103809
104161
  this.implementedInterfaces = [];
103810
- this.typeRegistry = typeRegistry;
103811
104162
  }
103812
104163
  get fields() {
103813
104164
  return {
@@ -103822,10 +104173,11 @@ class Setup__SetupAggregateConnectionRepository extends UnidentifiableGraphQLTyp
103822
104173
  class Setup__SetupAggregateEdgeRepository extends UnidentifiableGraphQLTypeRepository {
103823
104174
  constructor(services, typeRegistry) {
103824
104175
  super(services);
104176
+ this.services = services;
104177
+ this.typeRegistry = typeRegistry;
103825
104178
  this.namespace = "oas";
103826
104179
  this.typeName = "Setup__SetupAggregateEdge";
103827
104180
  this.implementedInterfaces = [];
103828
- this.typeRegistry = typeRegistry;
103829
104181
  }
103830
104182
  get fields() {
103831
104183
  return {
@@ -103839,10 +104191,11 @@ class Setup__SetupAggregateEdgeRepository extends UnidentifiableGraphQLTypeRepos
103839
104191
  class Setup__SetupConnectionRepository extends UnidentifiableGraphQLTypeRepository {
103840
104192
  constructor(services, typeRegistry) {
103841
104193
  super(services);
104194
+ this.services = services;
104195
+ this.typeRegistry = typeRegistry;
103842
104196
  this.namespace = "oas";
103843
104197
  this.typeName = "Setup__SetupConnection";
103844
104198
  this.implementedInterfaces = [];
103845
- this.typeRegistry = typeRegistry;
103846
104199
  }
103847
104200
  get fields() {
103848
104201
  return {
@@ -103858,10 +104211,11 @@ class Setup__SetupConnectionRepository extends UnidentifiableGraphQLTypeReposito
103858
104211
  class Setup__SetupEdgeRepository extends UnidentifiableGraphQLTypeRepository {
103859
104212
  constructor(services, typeRegistry) {
103860
104213
  super(services);
104214
+ this.services = services;
104215
+ this.typeRegistry = typeRegistry;
103861
104216
  this.namespace = "oas";
103862
104217
  this.typeName = "Setup__SetupEdge";
103863
104218
  this.implementedInterfaces = [];
103864
- this.typeRegistry = typeRegistry;
103865
104219
  }
103866
104220
  get fields() {
103867
104221
  return {
@@ -103875,10 +104229,11 @@ class Setup__SetupEdgeRepository extends UnidentifiableGraphQLTypeRepository {
103875
104229
  class Setup__SetupPolymorphicAggregateParentRelationshipRepository extends BaseUnionRepository {
103876
104230
  constructor(services, typeRegistry) {
103877
104231
  super(services);
104232
+ this.services = services;
104233
+ this.typeRegistry = typeRegistry;
103878
104234
  this.namespace = "oas";
103879
104235
  this.typeName = "Setup__SetupPolymorphicAggregateParentRelationship";
103880
104236
  this.implementedInterfaces = [];
103881
- this.typeRegistry = typeRegistry;
103882
104237
  }
103883
104238
  get fields() {
103884
104239
  return {
@@ -103895,10 +104250,11 @@ class Setup__SetupPolymorphicAggregateParentRelationshipRepository extends BaseU
103895
104250
  class Setup__SetupPolymorphicParentRelationshipRepository extends BaseUnionRepository {
103896
104251
  constructor(services, typeRegistry) {
103897
104252
  super(services);
104253
+ this.services = services;
104254
+ this.typeRegistry = typeRegistry;
103898
104255
  this.namespace = "oas";
103899
104256
  this.typeName = "Setup__SetupPolymorphicParentRelationship";
103900
104257
  this.implementedInterfaces = [];
103901
- this.typeRegistry = typeRegistry;
103902
104258
  }
103903
104259
  get fields() {
103904
104260
  return {
@@ -103915,10 +104271,11 @@ class Setup__SetupPolymorphicParentRelationshipRepository extends BaseUnionRepos
103915
104271
  class Setup__SetupQueryAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103916
104272
  constructor(services, typeRegistry) {
103917
104273
  super(services);
104274
+ this.services = services;
104275
+ this.typeRegistry = typeRegistry;
103918
104276
  this.namespace = "oas";
103919
104277
  this.typeName = "Setup__SetupQueryAggregate";
103920
104278
  this.implementedInterfaces = [];
103921
- this.typeRegistry = typeRegistry;
103922
104279
  }
103923
104280
  get fields() {
103924
104281
  return {
@@ -103931,10 +104288,11 @@ class Setup__SetupQueryAggregateRepository extends UnidentifiableGraphQLTypeRepo
103931
104288
  class Setup__SetupQueryRepository extends UnidentifiableGraphQLTypeRepository {
103932
104289
  constructor(services, typeRegistry) {
103933
104290
  super(services);
104291
+ this.services = services;
104292
+ this.typeRegistry = typeRegistry;
103934
104293
  this.namespace = "oas";
103935
104294
  this.typeName = "Setup__SetupQuery";
103936
104295
  this.implementedInterfaces = [];
103937
- this.typeRegistry = typeRegistry;
103938
104296
  }
103939
104297
  get fields() {
103940
104298
  return {
@@ -103947,10 +104305,11 @@ class Setup__SetupQueryRepository extends UnidentifiableGraphQLTypeRepository {
103947
104305
  class Setup__SetupRecordAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103948
104306
  constructor(services, typeRegistry) {
103949
104307
  super(services);
104308
+ this.services = services;
104309
+ this.typeRegistry = typeRegistry;
103950
104310
  this.namespace = "oas";
103951
104311
  this.typeName = "Setup__SetupRecordAggregate";
103952
104312
  this.implementedInterfaces = [];
103953
- this.typeRegistry = typeRegistry;
103954
104313
  }
103955
104314
  get fields() {
103956
104315
  return {
@@ -103982,10 +104341,11 @@ class Setup__SetupRecordAggregateRepository extends UnidentifiableGraphQLTypeRep
103982
104341
  class Setup__SetupRecordResultRepository extends UnidentifiableGraphQLTypeRepository {
103983
104342
  constructor(services, typeRegistry) {
103984
104343
  super(services);
104344
+ this.services = services;
104345
+ this.typeRegistry = typeRegistry;
103985
104346
  this.namespace = "oas";
103986
104347
  this.typeName = "Setup__SetupRecordResult";
103987
104348
  this.implementedInterfaces = [];
103988
- this.typeRegistry = typeRegistry;
103989
104349
  }
103990
104350
  get fields() {
103991
104351
  return {
@@ -103998,10 +104358,11 @@ class Setup__SetupRecordResultRepository extends UnidentifiableGraphQLTypeReposi
103998
104358
  class Setup__SetupRepository extends UnidentifiableGraphQLTypeRepository {
103999
104359
  constructor(services, typeRegistry) {
104000
104360
  super(services);
104361
+ this.services = services;
104362
+ this.typeRegistry = typeRegistry;
104001
104363
  this.namespace = "oas";
104002
104364
  this.typeName = "Setup__Setup";
104003
104365
  this.implementedInterfaces = [];
104004
- this.typeRegistry = typeRegistry;
104005
104366
  }
104006
104367
  get fields() {
104007
104368
  return {
@@ -104018,10 +104379,11 @@ class Setup__SetupRepository extends UnidentifiableGraphQLTypeRepository {
104018
104379
  class StandardFieldRepository extends UnidentifiableGraphQLTypeRepository {
104019
104380
  constructor(services, typeRegistry) {
104020
104381
  super(services);
104382
+ this.services = services;
104383
+ this.typeRegistry = typeRegistry;
104021
104384
  this.namespace = "oas";
104022
104385
  this.typeName = "StandardField";
104023
104386
  this.implementedInterfaces = ["Field"];
104024
- this.typeRegistry = typeRegistry;
104025
104387
  }
104026
104388
  get fields() {
104027
104389
  return {
@@ -104062,10 +104424,11 @@ class StandardFieldRepository extends UnidentifiableGraphQLTypeRepository {
104062
104424
  class StringAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104063
104425
  constructor(services, typeRegistry) {
104064
104426
  super(services);
104427
+ this.services = services;
104428
+ this.typeRegistry = typeRegistry;
104065
104429
  this.namespace = "oas";
104066
104430
  this.typeName = "StringAggregate";
104067
104431
  this.implementedInterfaces = ["FieldValue"];
104068
- this.typeRegistry = typeRegistry;
104069
104432
  }
104070
104433
  get fields() {
104071
104434
  return {
@@ -104085,10 +104448,11 @@ class StringAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104085
104448
  class StringValueRepository extends UnidentifiableGraphQLTypeRepository {
104086
104449
  constructor(services, typeRegistry) {
104087
104450
  super(services);
104451
+ this.services = services;
104452
+ this.typeRegistry = typeRegistry;
104088
104453
  this.namespace = "oas";
104089
104454
  this.typeName = "StringValue";
104090
104455
  this.implementedInterfaces = ["FieldValue"];
104091
- this.typeRegistry = typeRegistry;
104092
104456
  }
104093
104457
  get fields() {
104094
104458
  return {
@@ -104103,10 +104467,11 @@ class StringValueRepository extends UnidentifiableGraphQLTypeRepository {
104103
104467
  class TextAreaAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104104
104468
  constructor(services, typeRegistry) {
104105
104469
  super(services);
104470
+ this.services = services;
104471
+ this.typeRegistry = typeRegistry;
104106
104472
  this.namespace = "oas";
104107
104473
  this.typeName = "TextAreaAggregate";
104108
104474
  this.implementedInterfaces = ["FieldValue"];
104109
- this.typeRegistry = typeRegistry;
104110
104475
  }
104111
104476
  get fields() {
104112
104477
  return {
@@ -104126,10 +104491,11 @@ class TextAreaAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104126
104491
  class TextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
104127
104492
  constructor(services, typeRegistry) {
104128
104493
  super(services);
104494
+ this.services = services;
104495
+ this.typeRegistry = typeRegistry;
104129
104496
  this.namespace = "oas";
104130
104497
  this.typeName = "TextAreaValue";
104131
104498
  this.implementedInterfaces = ["FieldValue"];
104132
- this.typeRegistry = typeRegistry;
104133
104499
  }
104134
104500
  get fields() {
104135
104501
  return {
@@ -104144,10 +104510,11 @@ class TextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
104144
104510
  class ThemeInfoRepository extends UnidentifiableGraphQLTypeRepository {
104145
104511
  constructor(services, typeRegistry) {
104146
104512
  super(services);
104513
+ this.services = services;
104514
+ this.typeRegistry = typeRegistry;
104147
104515
  this.namespace = "oas";
104148
104516
  this.typeName = "ThemeInfo";
104149
104517
  this.implementedInterfaces = [];
104150
- this.typeRegistry = typeRegistry;
104151
104518
  }
104152
104519
  get fields() {
104153
104520
  return {
@@ -104161,10 +104528,11 @@ class ThemeInfoRepository extends UnidentifiableGraphQLTypeRepository {
104161
104528
  class TimeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104162
104529
  constructor(services, typeRegistry) {
104163
104530
  super(services);
104531
+ this.services = services;
104532
+ this.typeRegistry = typeRegistry;
104164
104533
  this.namespace = "oas";
104165
104534
  this.typeName = "TimeAggregate";
104166
104535
  this.implementedInterfaces = ["FieldValue"];
104167
- this.typeRegistry = typeRegistry;
104168
104536
  }
104169
104537
  get fields() {
104170
104538
  return {
@@ -104180,10 +104548,11 @@ class TimeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104180
104548
  class TimeValueRepository extends UnidentifiableGraphQLTypeRepository {
104181
104549
  constructor(services, typeRegistry) {
104182
104550
  super(services);
104551
+ this.services = services;
104552
+ this.typeRegistry = typeRegistry;
104183
104553
  this.namespace = "oas";
104184
104554
  this.typeName = "TimeValue";
104185
104555
  this.implementedInterfaces = ["FieldValue"];
104186
- this.typeRegistry = typeRegistry;
104187
104556
  }
104188
104557
  get fields() {
104189
104558
  return {
@@ -104198,10 +104567,11 @@ class TimeValueRepository extends UnidentifiableGraphQLTypeRepository {
104198
104567
  let UIAPIMutationsRepository$1 = class UIAPIMutationsRepository extends UnidentifiableGraphQLTypeRepository {
104199
104568
  constructor(services, typeRegistry) {
104200
104569
  super(services);
104570
+ this.services = services;
104571
+ this.typeRegistry = typeRegistry;
104201
104572
  this.namespace = "oas";
104202
104573
  this.typeName = "UIAPIMutations";
104203
104574
  this.implementedInterfaces = [];
104204
- this.typeRegistry = typeRegistry;
104205
104575
  }
104206
104576
  get fields() {
104207
104577
  return {
@@ -104216,10 +104586,11 @@ let UIAPIMutationsRepository$1 = class UIAPIMutationsRepository extends Unidenti
104216
104586
  class UIAPIRepository extends UnidentifiableGraphQLTypeRepository {
104217
104587
  constructor(services, typeRegistry) {
104218
104588
  super(services);
104589
+ this.services = services;
104590
+ this.typeRegistry = typeRegistry;
104219
104591
  this.namespace = "oas";
104220
104592
  this.typeName = "UIAPI";
104221
104593
  this.implementedInterfaces = [];
104222
- this.typeRegistry = typeRegistry;
104223
104594
  }
104224
104595
  get fields() {
104225
104596
  return {
@@ -104237,10 +104608,11 @@ class UIAPIRepository extends UnidentifiableGraphQLTypeRepository {
104237
104608
  class UrlAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104238
104609
  constructor(services, typeRegistry) {
104239
104610
  super(services);
104611
+ this.services = services;
104612
+ this.typeRegistry = typeRegistry;
104240
104613
  this.namespace = "oas";
104241
104614
  this.typeName = "UrlAggregate";
104242
104615
  this.implementedInterfaces = ["FieldValue"];
104243
- this.typeRegistry = typeRegistry;
104244
104616
  }
104245
104617
  get fields() {
104246
104618
  return {
@@ -104259,10 +104631,11 @@ class UrlAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104259
104631
  class UrlValueRepository extends UnidentifiableGraphQLTypeRepository {
104260
104632
  constructor(services, typeRegistry) {
104261
104633
  super(services);
104634
+ this.services = services;
104635
+ this.typeRegistry = typeRegistry;
104262
104636
  this.namespace = "oas";
104263
104637
  this.typeName = "UrlValue";
104264
104638
  this.implementedInterfaces = ["FieldValue"];
104265
- this.typeRegistry = typeRegistry;
104266
104639
  }
104267
104640
  get fields() {
104268
104641
  return {
@@ -104276,10 +104649,11 @@ class UrlValueRepository extends UnidentifiableGraphQLTypeRepository {
104276
104649
  class VisualforceLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
104277
104650
  constructor(services, typeRegistry) {
104278
104651
  super(services);
104652
+ this.services = services;
104653
+ this.typeRegistry = typeRegistry;
104279
104654
  this.namespace = "oas";
104280
104655
  this.typeName = "VisualforceLayoutComponent";
104281
104656
  this.implementedInterfaces = ["LayoutComponent"];
104282
- this.typeRegistry = typeRegistry;
104283
104657
  }
104284
104658
  get fields() {
104285
104659
  return {
@@ -105938,7 +106312,6 @@ function buildCommandClass(baseClass) {
105938
106312
  this.config = config;
105939
106313
  this.documentRootType = documentRootType;
105940
106314
  this.services = services;
105941
- this.endpoint = 'RecordUiController.executeGraphQL';
105942
106315
  }
105943
106316
  get url() {
105944
106317
  return '/services/data/v68.0/graphql';
@@ -105950,22 +106323,6 @@ function buildCommandClass(baseClass) {
105950
106323
  now: Date.now() / 1000,
105951
106324
  };
105952
106325
  }
105953
- get auraBodyWrapperName() {
105954
- return 'queryInput';
105955
- }
105956
- get auraParams() {
105957
- const params = super.auraParams;
105958
- const body = params[this.auraBodyWrapperName];
105959
- return {
105960
- ...params,
105961
- [this.auraBodyWrapperName]: {
105962
- ...body,
105963
- extensions: {
105964
- requiredTypeFields,
105965
- },
105966
- },
105967
- };
105968
- }
105969
106326
  get fetchParams() {
105970
106327
  const [url, params] = super.fetchParams;
105971
106328
  const body = JSON.parse(params.body);
@@ -106539,6 +106896,26 @@ function cloneConfig(config) {
106539
106896
  return cloned;
106540
106897
  }
106541
106898
 
106899
+ const requiredKeys = ['query'];
106900
+ const optionalKeys = ['variables', 'operationName'];
106901
+ /**
106902
+ * Factory that builds the graphql adapter-state-manager from a `getCommand`
106903
+ * function. Used on-core (with the platform-supplied command constructor that
106904
+ * provisions services from `_conduit_client_service_provisioner_v1`) and reused
106905
+ * off-core (with a host-provided command, e.g. an MCP-backed command synthesized
106906
+ * by `vite-plugin-lwc-ui-bundle`'s runtime).
106907
+ *
106908
+ * Mirrors the shape of `createSmRecord` / `createSmObjectInfo` in
106909
+ * `@salesforce/state-managers-uiapi`: factory + fixed config-key contract,
106910
+ * adapter supplied by the caller.
106911
+ *
106912
+ * @param getCommand - Function that takes a config and returns a `GraphQLCommand`
106913
+ * @returns The graphql adapter-state-manager definition
106914
+ */
106915
+ function createSmGraphQL(getCommand) {
106916
+ return createStateManager(getCommand, requiredKeys, optionalKeys);
106917
+ }
106918
+
106542
106919
  let graphql$1;
106543
106920
  let graphql_v1_import;
106544
106921
  let graphql_imperative$1;
@@ -106587,19 +106964,13 @@ const serviceRequirements = {
106587
106964
  type: 'lwcGraphQLWireBindings',
106588
106965
  version: '1.0',
106589
106966
  },
106590
- auraGraphQLNormalizedCacheControlCommand: {
106591
- type: 'auraGraphQLNormalizedCacheControlCommand',
106967
+ httpGraphQLNormalizedCacheControlCommand: {
106968
+ type: 'httpGraphQLNormalizedCacheControlCommand',
106592
106969
  version: '1.0',
106593
106970
  },
106594
- auraNetwork: {
106595
- type: 'auraNetwork',
106596
- version: '1.0',
106597
- optional: true,
106598
- },
106599
106971
  fetch: {
106600
106972
  type: 'fetch',
106601
106973
  version: '1.0',
106602
- optional: true,
106603
106974
  },
106604
106975
  luvio: {
106605
106976
  type: 'luvio',
@@ -106625,7 +106996,7 @@ getServices(serviceRequirements).then((services) => {
106625
106996
  const graphqlTypeRegistry = new CustomGraphQLTypeRegistry(services);
106626
106997
  const documentRootType = graphqlTypeRegistry.Query;
106627
106998
  const mutationType = graphqlTypeRegistry.Mutation;
106628
- const graphql_ctor = services.instrumentCommand(buildCommandClass(services.auraGraphQLNormalizedCacheControlCommand), 'graphqlCommand');
106999
+ const graphql_ctor = services.instrumentCommand(buildCommandClass(services.httpGraphQLNormalizedCacheControlCommand), 'graphqlCommand');
106629
107000
  graphql$1 = services.lwcGraphQLWireBindings.bind((config) => new graphql_ctor(config, documentRootType, services), CONFIG_SCHEMA, true);
106630
107001
  class GraphqlV1ImportAdapter extends graphql$1 {
106631
107002
  update(config, _context) {
@@ -106639,7 +107010,7 @@ getServices(serviceRequirements).then((services) => {
106639
107010
  }
106640
107011
  }
106641
107012
  graphql_v1_import = GraphqlV1ImportAdapter;
106642
- const graphql_imperative_ctor = services.instrumentCommand(buildCommandClass(services.auraGraphQLNormalizedCacheControlCommand), 'graphqlCommand');
107013
+ const graphql_imperative_ctor = services.instrumentCommand(buildCommandClass(services.httpGraphQLNormalizedCacheControlCommand), 'graphqlCommand');
106643
107014
  graphql_imperative$1 = services.graphQLImperativeBindings.bind(({ params, assertIsValid }) => {
106644
107015
  const config = params[0];
106645
107016
  const options = params[1];
@@ -106667,7 +107038,7 @@ getServices(serviceRequirements).then((services) => {
106667
107038
  /*
106668
107039
  * State Manager
106669
107040
  */
106670
- const graphql_state_manager_ctor = services.instrumentCommand(buildCommandClass(services.auraGraphQLNormalizedCacheControlCommand), 'graphql_state_manager');
107041
+ const graphql_state_manager_ctor = services.instrumentCommand(buildCommandClass(services.httpGraphQLNormalizedCacheControlCommand), 'graphql_state_manager');
106671
107042
  const factory = (config) => {
106672
107043
  assertIsValid$1(config, CONFIG_SCHEMA);
106673
107044
  const validatedConfig = resolveAndValidateGraphQLConfig(config, {
@@ -106679,8 +107050,8 @@ getServices(serviceRequirements).then((services) => {
106679
107050
  }
106680
107051
  return new graphql_state_manager_ctor(validatedConfig.value, documentRootType, services);
106681
107052
  };
106682
- graphql_state_manager = createStateManager(factory, ['query'], ['variables', 'operationName']);
106683
- const executeMutation_ctor = services.instrumentCommand(buildCommandClass(services.auraGraphQLNormalizedCacheControlCommand), 'graphqlCommand');
107053
+ graphql_state_manager = createSmGraphQL(factory);
107054
+ const executeMutation_ctor = services.instrumentCommand(buildCommandClass(services.httpGraphQLNormalizedCacheControlCommand), 'graphqlCommand');
106684
107055
  services.graphQLMutationBindings.bind(({ params, assertIsValid }) => {
106685
107056
  const config = params[0];
106686
107057
  const options = params[1];
@@ -106702,7 +107073,7 @@ function registerCallback(cb) {
106702
107073
  cb(graphql_v1_import, graphql_imperative$1, graphql_imperative_legacy_v1_import, graphql_state_manager, useOneStoreGraphQL);
106703
107074
  }
106704
107075
  }
106705
- // version: 1.438.0-242a4ab027
107076
+ // version: 1.439.0-1d518350b5
106706
107077
 
106707
107078
  function createFragmentMap(documentNode) {
106708
107079
  const fragments = {};
@@ -135909,7 +136280,7 @@ register$1({
135909
136280
  configuration: { ...configurationForGraphQLAdapters$1 },
135910
136281
  instrument: instrument$1,
135911
136282
  });
135912
- // version: 1.438.0-242a4ab027
136283
+ // version: 1.439.0-1d518350b5
135913
136284
 
135914
136285
  // On core the unstable adapters are re-exported with different names,
135915
136286
  // we want to match them here.
@@ -136061,7 +136432,7 @@ withDefaultLuvio((luvio) => {
136061
136432
  unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
136062
136433
  graphQLImperative = ldsAdapter;
136063
136434
  });
136064
- // version: 1.438.0-242a4ab027
136435
+ // version: 1.439.0-1d518350b5
136065
136436
 
136066
136437
  var gqlApi = /*#__PURE__*/Object.freeze({
136067
136438
  __proto__: null,
@@ -136860,7 +137231,7 @@ const callbacks$1 = [];
136860
137231
  function register(r) {
136861
137232
  callbacks$1.forEach((callback) => callback(r));
136862
137233
  }
136863
- // version: 1.438.0-0ec0a89235
137234
+ // version: 1.439.0-e3dc0cfb2a
136864
137235
 
136865
137236
  /**
136866
137237
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -138149,4 +138520,4 @@ const { luvio } = getRuntime();
138149
138520
  setDefaultLuvio({ luvio });
138150
138521
 
138151
138522
  export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, importLuvioAdapterModule, importOneStoreAdapterModule, invokeAdapter, invokeAdapterWithDraftToMerge, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, registerReportObserver, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
138152
- // version: 1.438.0-0ec0a89235
138523
+ // version: 1.439.0-e3dc0cfb2a