@salesforce/lds-worker-api 1.437.0 → 1.438.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4282,7 +4282,7 @@
4282
4282
  }
4283
4283
  callbacks.push(callback);
4284
4284
  }
4285
- // version: 1.437.0-90398d3223
4285
+ // version: 1.438.0-0ec0a89235
4286
4286
 
4287
4287
  // TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
4288
4288
  function instrumentAdapter$1(createFunction, _metadata) {
@@ -5326,7 +5326,7 @@
5326
5326
  const { apiFamily, name } = metadata;
5327
5327
  return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
5328
5328
  }
5329
- // version: 1.437.0-90398d3223
5329
+ // version: 1.438.0-0ec0a89235
5330
5330
 
5331
5331
  function isSupportedEntity(_objectApiName) {
5332
5332
  return true;
@@ -14379,7 +14379,7 @@
14379
14379
  return undefined;
14380
14380
  }
14381
14381
 
14382
- const VERSION$10$2 = "3f49d751896cf66e6e29788d8880e2cc";
14382
+ const VERSION$10$2 = "885c858e27ff690e5f69edc41d68c32b";
14383
14383
  const RepresentationType$G = 'PlatformActionRepresentation';
14384
14384
  function keyBuilder$1P$1(luvio, config) {
14385
14385
  return keyPrefix$3 + '::' + RepresentationType$G + ':' + config.externalId + ':' + (config.relatedSourceObject === null ? '' : config.relatedSourceObject) + ':' + (config.relatedListRecordId === null ? '' : config.relatedListRecordId);
@@ -14439,6 +14439,10 @@
14439
14439
  name: 'lwcComponent',
14440
14440
  kind: 'Scalar'
14441
14441
  },
14442
+ {
14443
+ name: 'pageDeveloperName',
14444
+ kind: 'Scalar'
14445
+ },
14442
14446
  {
14443
14447
  name: 'primaryColor',
14444
14448
  kind: 'Scalar'
@@ -14467,6 +14471,10 @@
14467
14471
  name: 'targetObject',
14468
14472
  kind: 'Scalar'
14469
14473
  },
14474
+ {
14475
+ name: 'targetParentField',
14476
+ kind: 'Scalar'
14477
+ },
14470
14478
  {
14471
14479
  name: 'targetUrl',
14472
14480
  kind: 'Scalar'
@@ -14539,6 +14547,11 @@
14539
14547
  if (!(existing_lwcComponent === incoming_lwcComponent)) {
14540
14548
  return false;
14541
14549
  }
14550
+ const existing_pageDeveloperName = existing.pageDeveloperName;
14551
+ const incoming_pageDeveloperName = incoming.pageDeveloperName;
14552
+ if (!(existing_pageDeveloperName === incoming_pageDeveloperName)) {
14553
+ return false;
14554
+ }
14542
14555
  const existing_primaryColor = existing.primaryColor;
14543
14556
  const incoming_primaryColor = incoming.primaryColor;
14544
14557
  if (!(existing_primaryColor === incoming_primaryColor)) {
@@ -14569,6 +14582,11 @@
14569
14582
  if (!(existing_targetObject === incoming_targetObject)) {
14570
14583
  return false;
14571
14584
  }
14585
+ const existing_targetParentField = existing.targetParentField;
14586
+ const incoming_targetParentField = incoming.targetParentField;
14587
+ if (!(existing_targetParentField === incoming_targetParentField)) {
14588
+ return false;
14589
+ }
14572
14590
  const existing_targetUrl = existing.targetUrl;
14573
14591
  const incoming_targetUrl = incoming.targetUrl;
14574
14592
  if (!(existing_targetUrl === incoming_targetUrl)) {
@@ -32526,7 +32544,7 @@
32526
32544
  throttle(60, 60000, setupNotifyAllListRecordUpdateAvailable(luvio));
32527
32545
  throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
32528
32546
  });
32529
- // version: 1.437.0-f680421dc4
32547
+ // version: 1.438.0-242a4ab027
32530
32548
 
32531
32549
  var allowUpdatesForNonCachedRecords = {
32532
32550
  isOpen: function (e) {
@@ -44167,11 +44185,6 @@
44167
44185
  },
44168
44186
  };
44169
44187
 
44170
- /*!
44171
- * Copyright (c) 2022, Salesforce, Inc.,
44172
- * All rights reserved.
44173
- * For full license text, see the LICENSE.txt file
44174
- */
44175
44188
  const { create: create$7, freeze: freeze$4, keys: keys$8, entries: entries$5 } = Object;
44176
44189
  const { hasOwnProperty: hasOwnProperty$3 } = Object.prototype;
44177
44190
  const { isArray: isArray$7 } = Array;
@@ -44235,7 +44248,7 @@
44235
44248
  };
44236
44249
  }
44237
44250
  function isPromiseLike$4(x) {
44238
- return typeof (x == null ? void 0 : x.then) === "function";
44251
+ return typeof x?.then === "function";
44239
44252
  }
44240
44253
  function racesync(values) {
44241
44254
  for (const value of values) {
@@ -44352,20 +44365,12 @@
44352
44365
  console.error("OneStore Command threw an error that we did not expect", error);
44353
44366
  }
44354
44367
 
44355
- /*!
44356
- * Copyright (c) 2022, Salesforce, Inc.,
44357
- * All rights reserved.
44358
- * For full license text, see the LICENSE.txt file
44359
- */
44360
44368
  function serviceSatisfies(service, request) {
44361
44369
  return (
44362
44370
  // service types must match
44363
44371
  service.type === request.type && // version of the service must satisfy the requested version
44364
44372
  satisfies(service.version, request.version) && // no tags requested, or the service matches every requested tag value
44365
- (request.tags === void 0 || Object.keys(request.tags).every((tag) => {
44366
- var _a;
44367
- return ((_a = service.tags) == null ? void 0 : _a[tag]) === request.tags[tag];
44368
- }))
44373
+ (request.tags === void 0 || Object.keys(request.tags).every((tag) => service.tags?.[tag] === request.tags[tag]))
44369
44374
  );
44370
44375
  }
44371
44376
  let resolverAvailable;
@@ -44423,11 +44428,6 @@
44423
44428
  };
44424
44429
  }
44425
44430
 
44426
- /*!
44427
- * Copyright (c) 2022, Salesforce, Inc.,
44428
- * All rights reserved.
44429
- * For full license text, see the LICENSE.txt file
44430
- */
44431
44431
  function isCacheEntryForType(cacheEntry, type) {
44432
44432
  return cacheEntry.metadata.type.namespace === type.namespace && cacheEntry.metadata.type.name === type.typeName;
44433
44433
  }
@@ -44445,9 +44445,8 @@
44445
44445
  return `${this.namespace}::${this.typeName}(${stableJSONStringify$3(params)})`;
44446
44446
  }
44447
44447
  write(cache, input) {
44448
- var _a;
44449
44448
  const key = this.buildKey(this.buildKeyParams(input));
44450
- const existingNormalizedData = (_a = cache.get(key)) == null ? void 0 : _a.value;
44449
+ const existingNormalizedData = cache.get(key)?.value;
44451
44450
  const normalized = this.normalizeData(cache, { ...input, existingNormalizedData });
44452
44451
  if (normalized.isErr()) {
44453
44452
  return err$3(normalized.error);
@@ -44522,11 +44521,6 @@
44522
44521
  return ok$3(data);
44523
44522
  }
44524
44523
 
44525
- /*!
44526
- * Copyright (c) 2022, Salesforce, Inc.,
44527
- * All rights reserved.
44528
- * For full license text, see the LICENSE.txt file
44529
- */
44530
44524
  let JsonSchemaViolationError$1 = class JsonSchemaViolationError extends Error {
44531
44525
  constructor(message, validationErrors) {
44532
44526
  super(message);
@@ -44956,11 +44950,6 @@
44956
44950
  return current;
44957
44951
  }
44958
44952
 
44959
- /*!
44960
- * Copyright (c) 2022, Salesforce, Inc.,
44961
- * All rights reserved.
44962
- * For full license text, see the LICENSE.txt file
44963
- */
44964
44953
  function devAssert(condition, message) {
44965
44954
  const booleanCondition = Boolean(condition);
44966
44955
  if (!booleanCondition) {
@@ -45811,10 +45800,7 @@
45811
45800
  return operations[0];
45812
45801
  }
45813
45802
  if (operationName) {
45814
- return operations.find((op) => {
45815
- var _a;
45816
- return ((_a = op.name) == null ? void 0 : _a.value) === operationName;
45817
- });
45803
+ return operations.find((op) => op.name?.value === operationName);
45818
45804
  }
45819
45805
  return void 0;
45820
45806
  }
@@ -45870,7 +45856,7 @@
45870
45856
  validateGraphQLOperations(
45871
45857
  { query: document, operationName },
45872
45858
  {
45873
- acceptedOperations: (options == null ? void 0 : options.acceptedOperations) ?? ["query"]
45859
+ acceptedOperations: options?.acceptedOperations ?? ["query"]
45874
45860
  }
45875
45861
  );
45876
45862
  return ok$3(document);
@@ -94101,11 +94087,6 @@
94101
94087
  return [];
94102
94088
  }
94103
94089
 
94104
- /*!
94105
- * Copyright (c) 2022, Salesforce, Inc.,
94106
- * All rights reserved.
94107
- * For full license text, see the LICENSE.txt file
94108
- */
94109
94090
  const { create: create$6, freeze: freeze$3, keys: keys$7, entries } = Object;
94110
94091
  const { isArray: isArray$1$1 } = Array;
94111
94092
  const { stringify: stringify$2, parse: parse$2 } = JSON;
@@ -94224,7 +94205,7 @@
94224
94205
  };
94225
94206
  }
94226
94207
  function isPromiseLike$2(x) {
94227
- return typeof (x == null ? void 0 : x.then) === "function";
94208
+ return typeof x?.then === "function";
94228
94209
  }
94229
94210
  function deepEquals$1(x, y) {
94230
94211
  if (x === void 0) {
@@ -94394,19 +94375,9 @@
94394
94375
  console.error("OneStore Command threw an error that we did not expect", error);
94395
94376
  }
94396
94377
 
94397
- /*!
94398
- * Copyright (c) 2022, Salesforce, Inc.,
94399
- * All rights reserved.
94400
- * For full license text, see the LICENSE.txt file
94401
- */
94402
94378
  class BaseCommand {
94403
94379
  }
94404
94380
 
94405
- /*!
94406
- * Copyright (c) 2022, Salesforce, Inc.,
94407
- * All rights reserved.
94408
- * For full license text, see the LICENSE.txt file
94409
- */
94410
94381
  let NetworkCommand$1 = class NetworkCommand extends BaseCommand {
94411
94382
  constructor(services) {
94412
94383
  super();
@@ -94457,11 +94428,6 @@
94457
94428
  };
94458
94429
  }
94459
94430
 
94460
- /*!
94461
- * Copyright (c) 2022, Salesforce, Inc.,
94462
- * All rights reserved.
94463
- * For full license text, see the LICENSE.txt file
94464
- */
94465
94431
  class AuraNetworkCommand extends NetworkCommand$1 {
94466
94432
  constructor(services) {
94467
94433
  super(services);
@@ -94568,16 +94534,6 @@
94568
94534
  };
94569
94535
  }
94570
94536
 
94571
- /*!
94572
- * Copyright (c) 2022, Salesforce, Inc.,
94573
- * All rights reserved.
94574
- * For full license text, see the LICENSE.txt file
94575
- */
94576
- /*!
94577
- * Copyright (c) 2022, Salesforce, Inc.,
94578
- * All rights reserved.
94579
- * For full license text, see the LICENSE.txt file
94580
- */
94581
94537
  const { isArray: isArray$6 } = Array;
94582
94538
  let Ok$2 = class Ok {
94583
94539
  constructor(value) {
@@ -94645,7 +94601,7 @@
94645
94601
  };
94646
94602
  }
94647
94603
  function isPromiseLike$1(x) {
94648
- return typeof (x == null ? void 0 : x.then) === "function";
94604
+ return typeof x?.then === "function";
94649
94605
  }
94650
94606
  function deepEquals(x, y) {
94651
94607
  if (x === void 0) {
@@ -94936,7 +94892,7 @@
94936
94892
  unsubscribe() {
94937
94893
  while (this.unsubscribers.length > 0) {
94938
94894
  const unsubscriber = this.unsubscribers.pop();
94939
- unsubscriber == null ? void 0 : unsubscriber();
94895
+ unsubscriber?.();
94940
94896
  }
94941
94897
  }
94942
94898
  /**
@@ -95120,16 +95076,6 @@
95120
95076
  };
95121
95077
  }
95122
95078
 
95123
- /*!
95124
- * Copyright (c) 2022, Salesforce, Inc.,
95125
- * All rights reserved.
95126
- * For full license text, see the LICENSE.txt file
95127
- */
95128
- /*!
95129
- * Copyright (c) 2022, Salesforce, Inc.,
95130
- * All rights reserved.
95131
- * For full license text, see the LICENSE.txt file
95132
- */
95133
95079
  let AuraCacheControlCommand$1 = class AuraCacheControlCommand extends CacheControlCommand {
95134
95080
  constructor(services) {
95135
95081
  super(services);
@@ -95265,16 +95211,6 @@
95265
95211
  };
95266
95212
  }
95267
95213
 
95268
- /*!
95269
- * Copyright (c) 2022, Salesforce, Inc.,
95270
- * All rights reserved.
95271
- * For full license text, see the LICENSE.txt file
95272
- */
95273
- /*!
95274
- * Copyright (c) 2022, Salesforce, Inc.,
95275
- * All rights reserved.
95276
- * For full license text, see the LICENSE.txt file
95277
- */
95278
95214
  class AuraCacheControlCommand extends CacheControlCommand {
95279
95215
  constructor(services) {
95280
95216
  super(services);
@@ -95384,8 +95320,7 @@
95384
95320
  this.services = services;
95385
95321
  }
95386
95322
  readFromCache(cache) {
95387
- var _a;
95388
- const data = (_a = cache.get(this.buildKey())) == null ? void 0 : _a.value;
95323
+ const data = cache.get(this.buildKey())?.value;
95389
95324
  if (data === void 0) {
95390
95325
  return resolvedPromiseLike$2(err$1(new Error("Failed to find data in cache")));
95391
95326
  }
@@ -95414,16 +95349,6 @@
95414
95349
  };
95415
95350
  }
95416
95351
 
95417
- /*!
95418
- * Copyright (c) 2022, Salesforce, Inc.,
95419
- * All rights reserved.
95420
- * For full license text, see the LICENSE.txt file
95421
- */
95422
- /*!
95423
- * Copyright (c) 2022, Salesforce, Inc.,
95424
- * All rights reserved.
95425
- * For full license text, see the LICENSE.txt file
95426
- */
95427
95352
  class NetworkCommand extends BaseCommand {
95428
95353
  constructor(services) {
95429
95354
  super();
@@ -95473,7 +95398,7 @@
95473
95398
  return command && typeof command === "object" && "fetchParams" in command;
95474
95399
  }
95475
95400
  function createAbortableDecorator(command, options) {
95476
- if (!(options == null ? void 0 : options.signal) || !((options == null ? void 0 : options.signal) instanceof AbortSignal)) {
95401
+ if (!options?.signal || !(options?.signal instanceof AbortSignal)) {
95477
95402
  return command;
95478
95403
  }
95479
95404
  const { signal } = options;
@@ -95604,16 +95529,6 @@
95604
95529
  };
95605
95530
  }
95606
95531
 
95607
- /*!
95608
- * Copyright (c) 2022, Salesforce, Inc.,
95609
- * All rights reserved.
95610
- * For full license text, see the LICENSE.txt file
95611
- */
95612
- /*!
95613
- * Copyright (c) 2022, Salesforce, Inc.,
95614
- * All rights reserved.
95615
- * For full license text, see the LICENSE.txt file
95616
- */
95617
95532
  class HttpCacheControlCommand extends CacheControlCommand {
95618
95533
  constructor(services) {
95619
95534
  super(services);
@@ -95721,16 +95636,6 @@
95721
95636
  };
95722
95637
  }
95723
95638
 
95724
- /*!
95725
- * Copyright (c) 2022, Salesforce, Inc.,
95726
- * All rights reserved.
95727
- * For full license text, see the LICENSE.txt file
95728
- */
95729
- /*!
95730
- * Copyright (c) 2022, Salesforce, Inc.,
95731
- * All rights reserved.
95732
- * For full license text, see the LICENSE.txt file
95733
- */
95734
95639
  const { stringify: stringify$1, parse: parse$1 } = JSON;
95735
95640
  function deepCopy$1(x) {
95736
95641
  const stringified = stringify$1(x);
@@ -95754,7 +95659,7 @@
95754
95659
  if (value === void 0) {
95755
95660
  this.missingKeysRead.add(key);
95756
95661
  }
95757
- if (options == null ? void 0 : options.copy) {
95662
+ if (options?.copy) {
95758
95663
  return deepCopy$1(value);
95759
95664
  }
95760
95665
  return value;
@@ -95798,7 +95703,7 @@
95798
95703
  get(key, options) {
95799
95704
  const result = this.baseCache.get(key);
95800
95705
  if (result && this.predicate(key, result)) {
95801
- if (options == null ? void 0 : options.copy) {
95706
+ if (options?.copy) {
95802
95707
  return deepCopy$1(result);
95803
95708
  }
95804
95709
  return result;
@@ -95894,7 +95799,7 @@
95894
95799
  this.data = {};
95895
95800
  }
95896
95801
  get(key, options) {
95897
- if (options == null ? void 0 : options.copy) {
95802
+ if (options?.copy) {
95898
95803
  return deepCopy$1(this.data[key]);
95899
95804
  }
95900
95805
  return this.data[key];
@@ -95974,11 +95879,6 @@
95974
95879
  };
95975
95880
  }
95976
95881
 
95977
- /*!
95978
- * Copyright (c) 2022, Salesforce, Inc.,
95979
- * All rights reserved.
95980
- * For full license text, see the LICENSE.txt file
95981
- */
95982
95882
  class CacheControlStrategy {
95983
95883
  constructor(services, config, requestRunner) {
95984
95884
  this.services = services;
@@ -96039,11 +95939,11 @@
96039
95939
  if (value.isOk()) {
96040
95940
  this.collectCacheHitInstrumentation(
96041
95941
  startTime,
96042
- options == null ? void 0 : options.instrumentationAttributes
95942
+ options?.instrumentationAttributes
96043
95943
  );
96044
95944
  return ok$1(void 0);
96045
95945
  }
96046
- this.collectCacheMissInstrumentation(startTime, options == null ? void 0 : options.instrumentationAttributes);
95946
+ this.collectCacheMissInstrumentation(startTime, options?.instrumentationAttributes);
96047
95947
  const tempCache = this.filteredCache;
96048
95948
  return new Promise(async (resolve, reject) => {
96049
95949
  try {
@@ -96113,11 +96013,11 @@
96113
96013
  if (result.isOk()) {
96114
96014
  this.collectCacheHitInstrumentation(
96115
96015
  startTime,
96116
- options == null ? void 0 : options.instrumentationAttributes
96016
+ options?.instrumentationAttributes
96117
96017
  );
96118
96018
  return ok$1(void 0);
96119
96019
  }
96120
- this.collectCacheMissInstrumentation(startTime, options == null ? void 0 : options.instrumentationAttributes);
96020
+ this.collectCacheMissInstrumentation(startTime, options?.instrumentationAttributes);
96121
96021
  const error = new UserVisibleError(
96122
96022
  new FetchResponse(HttpStatusCode.GatewayTimeout, {
96123
96023
  error: "Cache miss for only-if-cached request"
@@ -96201,11 +96101,6 @@
96201
96101
  };
96202
96102
  }
96203
96103
 
96204
- /*!
96205
- * Copyright (c) 2022, Salesforce, Inc.,
96206
- * All rights reserved.
96207
- * For full license text, see the LICENSE.txt file
96208
- */
96209
96104
  function buildInstrumentCommand(services) {
96210
96105
  const meter = services.instrumentation.metrics.getMeter("onestore");
96211
96106
  return function instrumentCommand(commandClass, commandName) {
@@ -96225,7 +96120,7 @@
96225
96120
  try {
96226
96121
  result = super.execute(...args);
96227
96122
  } catch (e) {
96228
- if ((e == null ? void 0 : e.name) === "AbortError") {
96123
+ if (e?.name === "AbortError") {
96229
96124
  abortCounter.add(1);
96230
96125
  } else {
96231
96126
  errorCounter.add(1);
@@ -96252,16 +96147,6 @@
96252
96147
  };
96253
96148
  }
96254
96149
 
96255
- /*!
96256
- * Copyright (c) 2022, Salesforce, Inc.,
96257
- * All rights reserved.
96258
- * For full license text, see the LICENSE.txt file
96259
- */
96260
- /*!
96261
- * Copyright (c) 2022, Salesforce, Inc.,
96262
- * All rights reserved.
96263
- * For full license text, see the LICENSE.txt file
96264
- */
96265
96150
  class O11yOTelTraceAPI {
96266
96151
  constructor(services) {
96267
96152
  this.services = services;
@@ -96277,9 +96162,9 @@
96277
96162
  this.logger = logger;
96278
96163
  }
96279
96164
  startSpan(name, _options, context) {
96280
- const traceId = context == null ? void 0 : context.getValue(Symbol.for("traceId"));
96281
- const spanId = context == null ? void 0 : context.getValue(Symbol.for("spanId"));
96282
- const traceFlags = context == null ? void 0 : context.getValue(Symbol.for("traceFlags"));
96165
+ const traceId = context?.getValue(/* @__PURE__ */ Symbol.for("traceId"));
96166
+ const spanId = context?.getValue(/* @__PURE__ */ Symbol.for("spanId"));
96167
+ const traceFlags = context?.getValue(/* @__PURE__ */ Symbol.for("traceFlags"));
96283
96168
  let spanContext = void 0;
96284
96169
  if (traceId !== void 0 && spanId !== void 0 && traceFlags !== void 0) {
96285
96170
  spanContext = {
@@ -96522,12 +96407,7 @@
96522
96407
  };
96523
96408
  }
96524
96409
 
96525
- /*!
96526
- * Copyright (c) 2022, Salesforce, Inc.,
96527
- * All rights reserved.
96528
- * For full license text, see the LICENSE.txt file
96529
- */
96530
- const EventTypeWildcard = Symbol("EventTypeWildcard");
96410
+ const EventTypeWildcard = /* @__PURE__ */ Symbol("EventTypeWildcard");
96531
96411
  class DefaultPubSubService {
96532
96412
  constructor() {
96533
96413
  this.subscriptions = /* @__PURE__ */ new Map();
@@ -96590,11 +96470,6 @@
96590
96470
  };
96591
96471
  }
96592
96472
 
96593
- /*!
96594
- * Copyright (c) 2022, Salesforce, Inc.,
96595
- * All rights reserved.
96596
- * For full license text, see the LICENSE.txt file
96597
- */
96598
96473
  class FeatureFlagsService {
96599
96474
  constructor() {
96600
96475
  this.flags = /* @__PURE__ */ new Map();
@@ -96656,7 +96531,7 @@
96656
96531
  },
96657
96532
  };
96658
96533
  }
96659
- // version: 1.437.0-90398d3223
96534
+ // version: 1.438.0-0ec0a89235
96660
96535
 
96661
96536
  /**
96662
96537
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -96682,13 +96557,8 @@
96682
96557
  },
96683
96558
  };
96684
96559
  }
96685
- // version: 1.437.0-90398d3223
96560
+ // version: 1.438.0-0ec0a89235
96686
96561
 
96687
- /*!
96688
- * Copyright (c) 2022, Salesforce, Inc.,
96689
- * All rights reserved.
96690
- * For full license text, see the LICENSE.txt file
96691
- */
96692
96562
  function findExecutableOperation$1(input) {
96693
96563
  const operations = input.query.definitions.filter(
96694
96564
  (def) => def.kind === Kind$1.OPERATION_DEFINITION
@@ -96700,10 +96570,7 @@
96700
96570
  return ok$1(operations[0]);
96701
96571
  }
96702
96572
  if (input.operationName) {
96703
- const specifiedOperation = operations.find((op) => {
96704
- var _a;
96705
- return ((_a = op.name) == null ? void 0 : _a.value) === input.operationName;
96706
- });
96573
+ const specifiedOperation = operations.find((op) => op.name?.value === input.operationName);
96707
96574
  if (specifiedOperation) {
96708
96575
  return ok$1(specifiedOperation);
96709
96576
  }
@@ -96719,14 +96586,13 @@
96719
96586
  const operation = operationResult.value;
96720
96587
  const selections = operation.selectionSet.selections;
96721
96588
  const variableDefinitions = operation.variableDefinitions;
96722
- const variables = (variableDefinitions == null ? void 0 : variableDefinitions.reduce((prev, def) => {
96723
- var _a;
96589
+ const variables = variableDefinitions?.reduce((prev, def) => {
96724
96590
  prev[def.variable.name.value] = {
96725
96591
  definition: def,
96726
- value: (_a = input.variables) == null ? void 0 : _a[def.variable.name.value]
96592
+ value: input.variables?.[def.variable.name.value]
96727
96593
  };
96728
96594
  return prev;
96729
- }, {})) || {};
96595
+ }, {}) || {};
96730
96596
  const fragments = input.query.definitions.filter(isFragmentDefinition$1).reduce((prev, fragment) => {
96731
96597
  prev[fragment.name.value] = fragment;
96732
96598
  return prev;
@@ -96779,11 +96645,6 @@
96779
96645
  return node.kind === Kind$1.FRAGMENT_DEFINITION;
96780
96646
  }
96781
96647
 
96782
- /*!
96783
- * Copyright (c) 2022, Salesforce, Inc.,
96784
- * All rights reserved.
96785
- * For full license text, see the LICENSE.txt file
96786
- */
96787
96648
  class AuraGraphQLNormalizedCacheControlCommand extends AuraNormalizedCacheControlCommand {
96788
96649
  constructor(config, documentRootType, services) {
96789
96650
  super(services);
@@ -96964,11 +96825,6 @@
96964
96825
  };
96965
96826
  }
96966
96827
 
96967
- /*!
96968
- * Copyright (c) 2022, Salesforce, Inc.,
96969
- * All rights reserved.
96970
- * For full license text, see the LICENSE.txt file
96971
- */
96972
96828
  class HttpGraphQLNormalizedCacheControlCommand extends HttpNormalizedCacheControlCommand {
96973
96829
  constructor(config, documentRootType, services) {
96974
96830
  super(services);
@@ -97082,11 +96938,6 @@
97082
96938
  };
97083
96939
  }
97084
96940
 
97085
- /*!
97086
- * Copyright (c) 2022, Salesforce, Inc.,
97087
- * All rights reserved.
97088
- * For full license text, see the LICENSE.txt file
97089
- */
97090
96941
  class JsonSchemaViolationError extends Error {
97091
96942
  constructor(message, validationErrors) {
97092
96943
  super(message);
@@ -97516,11 +97367,6 @@
97516
97367
  return current;
97517
97368
  }
97518
97369
 
97519
- /*!
97520
- * Copyright (c) 2022, Salesforce, Inc.,
97521
- * All rights reserved.
97522
- * For full license text, see the LICENSE.txt file
97523
- */
97524
97370
  function isUserVisibleError$2(error) {
97525
97371
  return error instanceof Error && "type" in error && error.type === "user-visible";
97526
97372
  }
@@ -97545,11 +97391,6 @@
97545
97391
  console.error("OneStore Command threw an error that we did not expect", error);
97546
97392
  }
97547
97393
 
97548
- /*!
97549
- * Copyright (c) 2022, Salesforce, Inc.,
97550
- * All rights reserved.
97551
- * For full license text, see the LICENSE.txt file
97552
- */
97553
97394
  function buildBaseImperativeInvoker(getCommand, transformResult) {
97554
97395
  return async (...params) => {
97555
97396
  const command = getCommand({ params, assertIsValid });
@@ -97654,7 +97495,7 @@
97654
97495
  const api = {
97655
97496
  data: result.value.data,
97656
97497
  subscribe: (cb) => {
97657
- result.value.subscribe((result2) => {
97498
+ return result.value.subscribe((result2) => {
97658
97499
  if (result2.isErr()) {
97659
97500
  return cb({ data: void 0, error: toError(result2.error) });
97660
97501
  }
@@ -97757,10 +97598,10 @@
97757
97598
  acceptedOperations: ["query"]
97758
97599
  };
97759
97600
  const result = resolveAndValidateGraphQLConfig(params[0], options);
97760
- if (result == null ? void 0 : result.isErr()) {
97601
+ if (result?.isErr()) {
97761
97602
  return result.error;
97762
97603
  }
97763
- if (result == null ? void 0 : result.isOk()) {
97604
+ if (result?.isOk()) {
97764
97605
  params[0] = result.value;
97765
97606
  }
97766
97607
  }
@@ -97779,7 +97620,7 @@
97779
97620
  deepFreeze(result.value);
97780
97621
  consumerEmittedData.data = result.value.data.data;
97781
97622
  consumerEmittedData.subscribe = (cb) => {
97782
- result.value.subscribe((res) => {
97623
+ return result.value.subscribe((res) => {
97783
97624
  const consumerEmittedData2 = {
97784
97625
  data: void 0,
97785
97626
  errors: void 0
@@ -97852,11 +97693,11 @@
97852
97693
  acceptedOperations: ["query"]
97853
97694
  };
97854
97695
  const result = resolveAndValidateGraphQLConfig(config, options);
97855
- if (result == null ? void 0 : result.isErr()) {
97696
+ if (result?.isErr()) {
97856
97697
  callback(result.error);
97857
97698
  return;
97858
97699
  }
97859
- if (result == null ? void 0 : result.isOk()) {
97700
+ if (result?.isOk()) {
97860
97701
  config = result.value;
97861
97702
  }
97862
97703
  }
@@ -97887,12 +97728,12 @@
97887
97728
  acceptedOperations: ["query"]
97888
97729
  };
97889
97730
  const result = resolveAndValidateGraphQLConfig(config, options);
97890
- if (result == null ? void 0 : result.isErr()) {
97731
+ if (result?.isErr()) {
97891
97732
  callback(result.error);
97892
97733
  return () => {
97893
97734
  };
97894
97735
  }
97895
- if (result == null ? void 0 : result.isOk()) {
97736
+ if (result?.isOk()) {
97896
97737
  config = result.value;
97897
97738
  }
97898
97739
  }
@@ -97954,13 +97795,13 @@
97954
97795
  acceptedOperations: ["mutation"]
97955
97796
  };
97956
97797
  const result2 = resolveAndValidateGraphQLConfig(params[0], options);
97957
- if (result2 == null ? void 0 : result2.isErr()) {
97798
+ if (result2?.isErr()) {
97958
97799
  return {
97959
97800
  data: void 0,
97960
97801
  errors: result2.error.errors
97961
97802
  };
97962
97803
  }
97963
- if (result2 == null ? void 0 : result2.isOk()) {
97804
+ if (result2?.isOk()) {
97964
97805
  params[0] = result2.value;
97965
97806
  }
97966
97807
  }
@@ -97986,11 +97827,6 @@
97986
97827
  };
97987
97828
  }
97988
97829
 
97989
- /*!
97990
- * Copyright (c) 2022, Salesforce, Inc.,
97991
- * All rights reserved.
97992
- * For full license text, see the LICENSE.txt file
97993
- */
97994
97830
  class Sanitizer {
97995
97831
  constructor(obj) {
97996
97832
  this.obj = obj;
@@ -98050,7 +97886,7 @@
98050
97886
  this.callback = callback;
98051
97887
  this.connected = false;
98052
97888
  this.exposeRefresh = false;
98053
- if (!(options == null ? void 0 : options.skipEmptyEmit)) {
97889
+ if (!options?.skipEmptyEmit) {
98054
97890
  this.emit();
98055
97891
  }
98056
97892
  }
@@ -98347,11 +98183,6 @@
98347
98183
  };
98348
98184
  }
98349
98185
 
98350
- /*!
98351
- * Copyright (c) 2022, Salesforce, Inc.,
98352
- * All rights reserved.
98353
- * For full license text, see the LICENSE.txt file
98354
- */
98355
98186
  function buildServiceDescriptor$1(interceptors = {
98356
98187
  request: [],
98357
98188
  retry: void 0,
@@ -98362,8 +98193,7 @@
98362
98193
  type: "fetch",
98363
98194
  version: "1.0",
98364
98195
  service: function(...args) {
98365
- var _a;
98366
- const context = (_a = interceptors.createContext) == null ? void 0 : _a.call(interceptors);
98196
+ const context = interceptors.createContext?.();
98367
98197
  const {
98368
98198
  request: requestInterceptors = [],
98369
98199
  retry: retryInterceptor = void 0,
@@ -98557,11 +98387,6 @@
98557
98387
  return queryParams;
98558
98388
  }
98559
98389
 
98560
- /*!
98561
- * Copyright (c) 2022, Salesforce, Inc.,
98562
- * All rights reserved.
98563
- * For full license text, see the LICENSE.txt file
98564
- */
98565
98390
  class CacheInclusionPolicyService {
98566
98391
  }
98567
98392
  function setDifference(setA, setB) {
@@ -98613,18 +98438,8 @@
98613
98438
  };
98614
98439
  }
98615
98440
  function isPromiseLike$3(x) {
98616
- return typeof (x == null ? void 0 : x.then) === "function";
98441
+ return typeof x?.then === "function";
98617
98442
  }
98618
- /*!
98619
- * Copyright (c) 2022, Salesforce, Inc.,
98620
- * All rights reserved.
98621
- * For full license text, see the LICENSE.txt file
98622
- */
98623
- /*!
98624
- * Copyright (c) 2022, Salesforce, Inc.,
98625
- * All rights reserved.
98626
- * For full license text, see the LICENSE.txt file
98627
- */
98628
98443
  const { stringify: stringify$8, parse: parse$8 } = JSON;
98629
98444
  function deepCopy(x) {
98630
98445
  const stringified = stringify$8(x);
@@ -98648,7 +98463,7 @@
98648
98463
  if (value === void 0) {
98649
98464
  this.missingKeysRead.add(key);
98650
98465
  }
98651
- if (options == null ? void 0 : options.copy) {
98466
+ if (options?.copy) {
98652
98467
  return deepCopy(value);
98653
98468
  }
98654
98469
  return value;
@@ -98692,7 +98507,7 @@
98692
98507
  get(key, options) {
98693
98508
  const result = this.baseCache.get(key);
98694
98509
  if (result && this.predicate(key, result)) {
98695
- if (options == null ? void 0 : options.copy) {
98510
+ if (options?.copy) {
98696
98511
  return deepCopy(result);
98697
98512
  }
98698
98513
  return result;
@@ -98788,7 +98603,7 @@
98788
98603
  this.data = {};
98789
98604
  }
98790
98605
  get(key, options) {
98791
- if (options == null ? void 0 : options.copy) {
98606
+ if (options?.copy) {
98792
98607
  return deepCopy(this.data[key]);
98793
98608
  }
98794
98609
  return this.data[key];
@@ -99410,17 +99225,12 @@
99410
99225
  id: '@salesforce/lds-network-adapter',
99411
99226
  instrument: instrument$2,
99412
99227
  });
99413
- // version: 1.437.0-90398d3223
99228
+ // version: 1.438.0-0ec0a89235
99414
99229
 
99415
99230
  const { create: create$2, keys: keys$2 } = Object;
99416
99231
  const { stringify, parse } = JSON;
99417
99232
  const { isArray: isArray$3 } = Array;
99418
99233
 
99419
- /*!
99420
- * Copyright (c) 2022, Salesforce, Inc.,
99421
- * All rights reserved.
99422
- * For full license text, see the LICENSE.txt file
99423
- */
99424
99234
  function extractValue(valueNode, variableDefinitions, expectedType) {
99425
99235
  if (valueNode.kind === Kind$1.VARIABLE) {
99426
99236
  const variableResult = extractVariableValue(valueNode.name.value, variableDefinitions);
@@ -99541,10 +99351,7 @@
99541
99351
  return ok$3(operations[0]);
99542
99352
  }
99543
99353
  if (input.operationName) {
99544
- const specifiedOperation = operations.find((op) => {
99545
- var _a;
99546
- return ((_a = op.name) == null ? void 0 : _a.value) === input.operationName;
99547
- });
99354
+ const specifiedOperation = operations.find((op) => op.name?.value === input.operationName);
99548
99355
  if (specifiedOperation) {
99549
99356
  return ok$3(specifiedOperation);
99550
99357
  }
@@ -99560,14 +99367,13 @@
99560
99367
  const operation = operationResult.value;
99561
99368
  const selections = operation.selectionSet.selections;
99562
99369
  const variableDefinitions = operation.variableDefinitions;
99563
- const variables = (variableDefinitions == null ? void 0 : variableDefinitions.reduce((prev, def) => {
99564
- var _a;
99370
+ const variables = variableDefinitions?.reduce((prev, def) => {
99565
99371
  prev[def.variable.name.value] = {
99566
99372
  definition: def,
99567
- value: (_a = input.variables) == null ? void 0 : _a[def.variable.name.value]
99373
+ value: input.variables?.[def.variable.name.value]
99568
99374
  };
99569
99375
  return prev;
99570
- }, {})) || {};
99376
+ }, {}) || {};
99571
99377
  const fragments = input.query.definitions.filter(isFragmentDefinition).reduce((prev, fragment) => {
99572
99378
  prev[fragment.name.value] = fragment;
99573
99379
  return prev;
@@ -99579,11 +99385,10 @@
99579
99385
  });
99580
99386
  }
99581
99387
  function buildAugmentedFieldSelection(newSelection, selections, fragments) {
99582
- var _a;
99583
99388
  if (selectionExists(newSelection, selections)) {
99584
99389
  return void 0;
99585
99390
  }
99586
- const baseAlias = ((_a = newSelection.alias) == null ? void 0 : _a.value) || newSelection.name.value;
99391
+ const baseAlias = newSelection.alias?.value || newSelection.name.value;
99587
99392
  const baseInjectedAlias = `framework_augmented_${baseAlias}`;
99588
99393
  const baseAliasedSelection = {
99589
99394
  ...newSelection,
@@ -99608,20 +99413,19 @@
99608
99413
  return selections.some((s) => selectionEquals(selection, s));
99609
99414
  }
99610
99415
  function selectionEquals(a, b) {
99611
- var _a, _b, _c, _d, _e, _f;
99612
99416
  if (a.kind !== b.kind) {
99613
99417
  return false;
99614
99418
  }
99615
99419
  if (a.kind === Kind$1.FIELD) {
99616
99420
  const bField = b;
99617
- 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);
99421
+ 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);
99618
99422
  }
99619
99423
  if (a.kind === Kind$1.FRAGMENT_SPREAD) {
99620
99424
  const bFragmentSpread = b;
99621
99425
  return a.name.value === bFragmentSpread.name.value && directivesEqual(a.directives, bFragmentSpread.directives);
99622
99426
  }
99623
99427
  const bInlineFragment = b;
99624
- 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);
99428
+ return a.typeCondition === bInlineFragment.typeCondition && directivesEqual(a.directives, bInlineFragment.directives) && selectionSetsEqual(a.selectionSet?.selections, bInlineFragment.selectionSet?.selections);
99625
99429
  }
99626
99430
  function argumentValueEquals(a, b) {
99627
99431
  if (a.kind !== b.kind) {
@@ -99664,7 +99468,7 @@
99664
99468
  return true;
99665
99469
  }
99666
99470
  if (a === void 0 || b === void 0) {
99667
- return ((a == null ? void 0 : a.length) || 0) === ((b == null ? void 0 : b.length) || 0);
99471
+ return (a?.length || 0) === (b?.length || 0);
99668
99472
  }
99669
99473
  if (a.length !== b.length) {
99670
99474
  return false;
@@ -99679,7 +99483,7 @@
99679
99483
  return true;
99680
99484
  }
99681
99485
  if (a === void 0 || b === void 0) {
99682
- return ((a == null ? void 0 : a.length) || 0) === ((b == null ? void 0 : b.length) || 0);
99486
+ return (a?.length || 0) === (b?.length || 0);
99683
99487
  }
99684
99488
  if (a.length !== b.length) {
99685
99489
  return false;
@@ -99706,11 +99510,10 @@
99706
99510
  return `${fieldName}_${i}`;
99707
99511
  }
99708
99512
  function collectFieldNames(selections, fragments) {
99709
- var _a;
99710
99513
  const fieldNames = /* @__PURE__ */ new Set();
99711
99514
  for (const selection of selections) {
99712
99515
  if (isField(selection)) {
99713
- fieldNames.add(((_a = selection.alias) == null ? void 0 : _a.value) || selection.name.value);
99516
+ fieldNames.add(selection.alias?.value || selection.name.value);
99714
99517
  } else if (isInlineFragment(selection)) {
99715
99518
  collectFieldNames(
99716
99519
  selection.selectionSet.selections,
@@ -99766,8 +99569,7 @@
99766
99569
  return node.kind === Kind$1.FRAGMENT_DEFINITION;
99767
99570
  }
99768
99571
  function extractIfArgument(directive, variables, directiveName) {
99769
- var _a;
99770
- const ifArg = (_a = directive.arguments) == null ? void 0 : _a.find((arg) => arg.name.value === "if");
99572
+ const ifArg = directive.arguments?.find((arg) => arg.name.value === "if");
99771
99573
  if (!ifArg) {
99772
99574
  return err$3(new Error(`@${directiveName} directive requires an 'if' argument`));
99773
99575
  }
@@ -99880,8 +99682,7 @@
99880
99682
  const arrayNormalizationErrors = [];
99881
99683
  const normalizedArray = [];
99882
99684
  input.data.forEach((item, index) => {
99883
- var _a;
99884
- const existingItemData = (_a = input.existingNormalizedData) == null ? void 0 : _a[index];
99685
+ const existingItemData = input.existingNormalizedData?.[index];
99885
99686
  const normalizedItemResult = this.items.write(cache, {
99886
99687
  ...input,
99887
99688
  data: item,
@@ -99961,7 +99762,6 @@
99961
99762
  return this.repository.buildFieldKey(selection, variables);
99962
99763
  }
99963
99764
  write(cache, input) {
99964
- var _a;
99965
99765
  if (!input.selection.selectionSet) {
99966
99766
  return err$3([
99967
99767
  {
@@ -99991,7 +99791,7 @@
99991
99791
  const writeResult = this.repository.write(cache, {
99992
99792
  ...input,
99993
99793
  data: input.data,
99994
- existingNormalizedData: (_a = input.existingNormalizedData) == null ? void 0 : _a.data,
99794
+ existingNormalizedData: input.existingNormalizedData?.data,
99995
99795
  request: input.request,
99996
99796
  selections: input.selection.selectionSet.selections,
99997
99797
  parentFieldSelection: input.selection
@@ -100002,7 +99802,6 @@
100002
99802
  return ok$3({ type: "data", data: writeResult.value });
100003
99803
  }
100004
99804
  read(cache, input) {
100005
- var _a;
100006
99805
  if (!input.selection.selectionSet) {
100007
99806
  return err$3([
100008
99807
  {
@@ -100034,7 +99833,7 @@
100034
99833
  ...input,
100035
99834
  normalizedData: normalizedData.data,
100036
99835
  request: input.request,
100037
- selections: (_a = input.selection.selectionSet) == null ? void 0 : _a.selections,
99836
+ selections: input.selection.selectionSet?.selections,
100038
99837
  parentFieldSelection: input.selection
100039
99838
  });
100040
99839
  }
@@ -100085,13 +99884,12 @@
100085
99884
  return { selections: augmentedSelections, fragments: augmentedFragments };
100086
99885
  }
100087
99886
  augmentFieldSelection(selection, fragments) {
100088
- var _a;
100089
99887
  const field = this.getFieldDef(void 0, selection);
100090
99888
  if (field === void 0) {
100091
99889
  return { selections: [selection], fragments };
100092
99890
  }
100093
99891
  const result = field.augmentSelections({
100094
- selections: ((_a = selection.selectionSet) == null ? void 0 : _a.selections) || [],
99892
+ selections: selection.selectionSet?.selections || [],
100095
99893
  fragments
100096
99894
  });
100097
99895
  return {
@@ -100108,7 +99906,6 @@
100108
99906
  };
100109
99907
  }
100110
99908
  augmentInlineFragmentSelection(fragment, fragments) {
100111
- var _a;
100112
99909
  const satisfiedFragmentTypeConditionResult = this.satisfiesFragmentTypeCondition(
100113
99910
  void 0,
100114
99911
  fragment
@@ -100117,7 +99914,7 @@
100117
99914
  return { selections: [], fragments };
100118
99915
  }
100119
99916
  const augmentedFragmentSelections = this.augmentSelections({
100120
- selections: ((_a = fragment.selectionSet) == null ? void 0 : _a.selections) || [],
99917
+ selections: fragment.selectionSet?.selections || [],
100121
99918
  fragments
100122
99919
  });
100123
99920
  return {
@@ -100134,7 +99931,6 @@
100134
99931
  };
100135
99932
  }
100136
99933
  augmentFragmentSpreadSelection(selection, fragments) {
100137
- var _a;
100138
99934
  const fragment = fragments[selection.name.value];
100139
99935
  if (fragment === void 0) {
100140
99936
  return { selections: [selection], fragments };
@@ -100147,7 +99943,7 @@
100147
99943
  return { selections: [selection], fragments };
100148
99944
  }
100149
99945
  const augmentedFragment = this.augmentSelections({
100150
- selections: ((_a = fragment.selectionSet) == null ? void 0 : _a.selections) || [],
99946
+ selections: fragment.selectionSet?.selections || [],
100151
99947
  fragments
100152
99948
  });
100153
99949
  return {
@@ -100196,9 +99992,8 @@
100196
99992
  return buildReadWriteResult(normalized, errors);
100197
99993
  }
100198
99994
  normalizeFieldSelection(cache, input, selection, errorCollector) {
100199
- var _a;
100200
99995
  const canonicalFieldName = selection.name.value;
100201
- const dataInstanceFieldName = ((_a = selection.alias) == null ? void 0 : _a.value) ?? selection.name.value;
99996
+ const dataInstanceFieldName = selection.alias?.value ?? selection.name.value;
100202
99997
  const value = input.data[dataInstanceFieldName];
100203
99998
  const fieldDef = this.getFieldDef(input, selection);
100204
99999
  if (!fieldDef) {
@@ -100308,7 +100103,6 @@
100308
100103
  return buildReadWriteResult(denormalized, errors);
100309
100104
  }
100310
100105
  getNormalizedFieldData(selection, input) {
100311
- var _a;
100312
100106
  const fieldDef = this.getFieldDef(input, selection);
100313
100107
  if (!fieldDef) {
100314
100108
  return err$3(
@@ -100325,10 +100119,9 @@
100325
100119
  return err$3(cacheFieldKeyResult.error);
100326
100120
  }
100327
100121
  const cacheFieldKey = cacheFieldKeyResult.value;
100328
- return ok$3((_a = input.existingNormalizedData || input.normalizedData) == null ? void 0 : _a[cacheFieldKey]);
100122
+ return ok$3((input.existingNormalizedData || input.normalizedData)?.[cacheFieldKey]);
100329
100123
  }
100330
100124
  denormalizeFieldSelection(cache, input, selection, errorCollector) {
100331
- var _a;
100332
100125
  const canonicalFieldName = selection.name.value;
100333
100126
  const fieldDef = this.getFieldDef(input, selection);
100334
100127
  if (!fieldDef) {
@@ -100340,7 +100133,7 @@
100340
100133
  });
100341
100134
  return {};
100342
100135
  }
100343
- const dataInstanceFieldName = ((_a = selection.alias) == null ? void 0 : _a.value) ?? selection.name.value;
100136
+ const dataInstanceFieldName = selection.alias?.value ?? selection.name.value;
100344
100137
  const normalizedFieldDataResult = this.getNormalizedFieldData(selection, input);
100345
100138
  if (normalizedFieldDataResult.isErr()) {
100346
100139
  errorCollector.push({
@@ -100408,19 +100201,18 @@
100408
100201
  return {};
100409
100202
  }
100410
100203
  getFieldDef(input, selection) {
100411
- var _a, _b, _c;
100412
100204
  const canonicalFieldName = selection.name.value;
100413
100205
  const fieldDef = this.fields[canonicalFieldName];
100414
100206
  if (fieldDef) {
100415
100207
  return fieldDef;
100416
100208
  }
100417
- const dataInstanceFieldName = ((_a = selection.alias) == null ? void 0 : _a.value) ?? selection.name.value;
100209
+ const dataInstanceFieldName = selection.alias?.value ?? selection.name.value;
100418
100210
  if (input === void 0) {
100419
100211
  return void 0;
100420
100212
  }
100421
100213
  if ("data" in input && input.data[dataInstanceFieldName] === void 0) {
100422
100214
  return missingFieldDef;
100423
- } else if ("normalizedData" in input && ((_c = (_b = input.normalizedData) == null ? void 0 : _b[dataInstanceFieldName]) == null ? void 0 : _c.type) === "missing") {
100215
+ } else if ("normalizedData" in input && input.normalizedData?.[dataInstanceFieldName]?.type === "missing") {
100424
100216
  return missingFieldDef;
100425
100217
  }
100426
100218
  return void 0;
@@ -100508,7 +100300,7 @@
100508
100300
  return err$3(normalized.error);
100509
100301
  }
100510
100302
  const existing = cache.get(key);
100511
- if (!deepEquals$2(existing == null ? void 0 : existing.value, normalized.value)) {
100303
+ if (!deepEquals$2(existing?.value, normalized.value)) {
100512
100304
  cache.set(key, {
100513
100305
  value: normalized.value,
100514
100306
  metadata: this.cacheMetadata
@@ -100524,7 +100316,7 @@
100524
100316
  const existingNormalizedData = cache.get(key, { copy: true });
100525
100317
  const normalizeDataResult = this.graphqlRepository.normalizeSelections(cache, {
100526
100318
  ...input,
100527
- existingNormalizedData: existingNormalizedData == null ? void 0 : existingNormalizedData.value
100319
+ existingNormalizedData: existingNormalizedData?.value
100528
100320
  });
100529
100321
  if (normalizeDataResult.isErr()) {
100530
100322
  return normalizeDataResult;
@@ -100532,7 +100324,7 @@
100532
100324
  return ok$3(
100533
100325
  deepMerge$2(
100534
100326
  {},
100535
- (existingNormalizedData == null ? void 0 : existingNormalizedData.value) || {},
100327
+ existingNormalizedData?.value || {},
100536
100328
  normalizeDataResult.value
100537
100329
  )
100538
100330
  );
@@ -100547,14 +100339,13 @@
100547
100339
  return this.graphqlRepository.buildFieldKey(selection, variables);
100548
100340
  }
100549
100341
  buildKeyParams(input) {
100550
- var _a;
100551
100342
  const idField = input.selections.find(
100552
100343
  (selection) => selection.kind === Kind$1.FIELD && selection.name.value === this.idField
100553
100344
  );
100554
100345
  if (!idField) {
100555
100346
  throw new Error(`Id field ${this.idField} not found in selections`);
100556
100347
  }
100557
- const idFieldDataProperty = ((_a = idField.alias) == null ? void 0 : _a.value) || idField.name.value;
100348
+ const idFieldDataProperty = idField.alias?.value || idField.name.value;
100558
100349
  return {
100559
100350
  [this.idField]: input.data[idFieldDataProperty]
100560
100351
  };
@@ -100604,7 +100395,6 @@
100604
100395
  });
100605
100396
  }
100606
100397
  buildAugmentedQuery(input) {
100607
- var _a;
100608
100398
  const operationResult = findExecutableOperation(input);
100609
100399
  if (operationResult.isErr()) {
100610
100400
  return err$3(operationResult.error);
@@ -100621,7 +100411,7 @@
100621
100411
  {}
100622
100412
  );
100623
100413
  const result = this.augmentSelections({
100624
- selections: ((_a = operationResult.value.selectionSet) == null ? void 0 : _a.selections) || [],
100414
+ selections: operationResult.value.selectionSet?.selections || [],
100625
100415
  fragments
100626
100416
  });
100627
100417
  const augmentedOperationSelections = result.selections;
@@ -100742,12 +100532,11 @@
100742
100532
  const augmentedSelections = [];
100743
100533
  let augmentedFragments = { ...input.fragments };
100744
100534
  input.selections.forEach((selection) => {
100745
- var _a;
100746
100535
  if (selection.kind === Kind$1.FIELD) {
100747
100536
  if (Object.keys(this.fields).includes(selection.name.value)) {
100748
100537
  const field = this.fields[selection.name.value];
100749
100538
  const result2 = field.augmentSelections({
100750
- selections: ((_a = selection.selectionSet) == null ? void 0 : _a.selections) || [],
100539
+ selections: selection.selectionSet?.selections || [],
100751
100540
  fragments: input.fragments
100752
100541
  });
100753
100542
  augmentedSelections.push({
@@ -100780,12 +100569,11 @@
100780
100569
  return { selections: augmentedSelections, fragments: augmentedFragments };
100781
100570
  }
100782
100571
  getTypeDiscriminator(data, selections) {
100783
- var _a;
100784
100572
  const typenameSelection = selections.find(
100785
100573
  (selection) => selection.kind === Kind$1.FIELD && selection.name.value === "__typename"
100786
100574
  );
100787
100575
  if (typenameSelection) {
100788
- return data[((_a = typenameSelection.alias) == null ? void 0 : _a.value) || typenameSelection.name.value];
100576
+ return data[typenameSelection.alias?.value || typenameSelection.name.value];
100789
100577
  } else {
100790
100578
  return data.__typename;
100791
100579
  }
@@ -100927,12 +100715,11 @@
100927
100715
  return { selections: augmentedSelections, fragments: augmentedFragments };
100928
100716
  }
100929
100717
  getTypeDiscriminator(data, selections) {
100930
- var _a;
100931
100718
  const typenameSelection = selections.find(
100932
100719
  (selection) => selection.kind === Kind$1.FIELD && selection.name.value === "__typename"
100933
100720
  );
100934
100721
  if (typenameSelection) {
100935
- return data[((_a = typenameSelection.alias) == null ? void 0 : _a.value) || typenameSelection.name.value];
100722
+ return data[typenameSelection.alias?.value || typenameSelection.name.value];
100936
100723
  } else {
100937
100724
  return data.__typename;
100938
100725
  }
@@ -101427,11 +101214,6 @@
101427
101214
  */
101428
101215
 
101429
101216
 
101430
- /*!
101431
- * Copyright (c) 2022, Salesforce, Inc.,
101432
- * All rights reserved.
101433
- * For full license text, see the LICENSE.txt file
101434
- */
101435
101217
  const { hasOwnProperty: hasOwnProperty$1 } = Object.prototype;
101436
101218
  class Ok {
101437
101219
  constructor(value) {
@@ -101492,7 +101274,7 @@
101492
101274
  };
101493
101275
  }
101494
101276
  function isPromiseLike(x) {
101495
- return typeof (x == null ? void 0 : x.then) === "function";
101277
+ return typeof x?.then === "function";
101496
101278
  }
101497
101279
  class InternalError extends Error {
101498
101280
  constructor(data) {
@@ -101511,11 +101293,10 @@
101511
101293
  class Analytics__AnalyticsBrowseRepository extends UnidentifiableGraphQLTypeRepository {
101512
101294
  constructor(services, typeRegistry) {
101513
101295
  super(services);
101514
- this.services = services;
101515
- this.typeRegistry = typeRegistry;
101516
101296
  this.namespace = "oas";
101517
101297
  this.typeName = "Analytics__AnalyticsBrowse";
101518
101298
  this.implementedInterfaces = [];
101299
+ this.typeRegistry = typeRegistry;
101519
101300
  }
101520
101301
  get fields() {
101521
101302
  return {
@@ -101531,11 +101312,10 @@
101531
101312
  class Analytics__AnalyticsEdgeRepository extends UnidentifiableGraphQLTypeRepository {
101532
101313
  constructor(services, typeRegistry) {
101533
101314
  super(services);
101534
- this.services = services;
101535
- this.typeRegistry = typeRegistry;
101536
101315
  this.namespace = "oas";
101537
101316
  this.typeName = "Analytics__AnalyticsEdge";
101538
101317
  this.implementedInterfaces = [];
101318
+ this.typeRegistry = typeRegistry;
101539
101319
  }
101540
101320
  get fields() {
101541
101321
  return {
@@ -101549,11 +101329,10 @@
101549
101329
  class Analytics__AnalyticsRepository extends UnidentifiableGraphQLTypeRepository {
101550
101330
  constructor(services, typeRegistry) {
101551
101331
  super(services);
101552
- this.services = services;
101553
- this.typeRegistry = typeRegistry;
101554
101332
  this.namespace = "oas";
101555
101333
  this.typeName = "Analytics__Analytics";
101556
101334
  this.implementedInterfaces = [];
101335
+ this.typeRegistry = typeRegistry;
101557
101336
  }
101558
101337
  get fields() {
101559
101338
  return {
@@ -101566,11 +101345,10 @@
101566
101345
  class Analytics__AnalyticsRepresentationInterfaceRepository extends BaseInterfaceRepository {
101567
101346
  constructor(services, typeRegistry) {
101568
101347
  super(services);
101569
- this.services = services;
101570
- this.typeRegistry = typeRegistry;
101571
101348
  this.namespace = "oas";
101572
101349
  this.typeName = "Analytics__AnalyticsRepresentationInterface";
101573
101350
  this.implementedInterfaces = [];
101351
+ this.typeRegistry = typeRegistry;
101574
101352
  }
101575
101353
  get fields() {
101576
101354
  return {
@@ -101606,12 +101384,11 @@
101606
101384
  class Analytics__AnalyticsRepresentationRepository extends IdentifiableGraphQLTypeRepository {
101607
101385
  constructor(services, typeRegistry) {
101608
101386
  super(services);
101609
- this.services = services;
101610
- this.typeRegistry = typeRegistry;
101611
101387
  this.namespace = "oas";
101612
101388
  this.typeName = "Analytics__AnalyticsRepresentation";
101613
101389
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101614
101390
  this.idField = "Id";
101391
+ this.typeRegistry = typeRegistry;
101615
101392
  }
101616
101393
  get fields() {
101617
101394
  return {
@@ -101641,11 +101418,10 @@
101641
101418
  class Analytics__AnalyticsWorkspaceAssetConnectionRepository extends UnidentifiableGraphQLTypeRepository {
101642
101419
  constructor(services, typeRegistry) {
101643
101420
  super(services);
101644
- this.services = services;
101645
- this.typeRegistry = typeRegistry;
101646
101421
  this.namespace = "oas";
101647
101422
  this.typeName = "Analytics__AnalyticsWorkspaceAssetConnection";
101648
101423
  this.implementedInterfaces = [];
101424
+ this.typeRegistry = typeRegistry;
101649
101425
  }
101650
101426
  get fields() {
101651
101427
  return {
@@ -101661,11 +101437,10 @@
101661
101437
  class Analytics__AnalyticsWorkspaceAssetEdgeRepository extends UnidentifiableGraphQLTypeRepository {
101662
101438
  constructor(services, typeRegistry) {
101663
101439
  super(services);
101664
- this.services = services;
101665
- this.typeRegistry = typeRegistry;
101666
101440
  this.namespace = "oas";
101667
101441
  this.typeName = "Analytics__AnalyticsWorkspaceAssetEdge";
101668
101442
  this.implementedInterfaces = [];
101443
+ this.typeRegistry = typeRegistry;
101669
101444
  }
101670
101445
  get fields() {
101671
101446
  return {
@@ -101679,11 +101454,10 @@
101679
101454
  class Analytics__AnalyticsWorkspaceAssetRepository extends UnidentifiableGraphQLTypeRepository {
101680
101455
  constructor(services, typeRegistry) {
101681
101456
  super(services);
101682
- this.services = services;
101683
- this.typeRegistry = typeRegistry;
101684
101457
  this.namespace = "oas";
101685
101458
  this.typeName = "Analytics__AnalyticsWorkspaceAsset";
101686
101459
  this.implementedInterfaces = [];
101460
+ this.typeRegistry = typeRegistry;
101687
101461
  }
101688
101462
  get fields() {
101689
101463
  return {
@@ -101700,12 +101474,11 @@
101700
101474
  class Analytics__AnalyticsWorkspaceRepository extends IdentifiableGraphQLTypeRepository {
101701
101475
  constructor(services, typeRegistry) {
101702
101476
  super(services);
101703
- this.services = services;
101704
- this.typeRegistry = typeRegistry;
101705
101477
  this.namespace = "oas";
101706
101478
  this.typeName = "Analytics__AnalyticsWorkspace";
101707
101479
  this.implementedInterfaces = [];
101708
101480
  this.idField = "Id";
101481
+ this.typeRegistry = typeRegistry;
101709
101482
  }
101710
101483
  get fields() {
101711
101484
  return {
@@ -101729,12 +101502,11 @@
101729
101502
  class Analytics__DataspaceRepresentationRepository extends IdentifiableGraphQLTypeRepository {
101730
101503
  constructor(services, typeRegistry) {
101731
101504
  super(services);
101732
- this.services = services;
101733
- this.typeRegistry = typeRegistry;
101734
101505
  this.namespace = "oas";
101735
101506
  this.typeName = "Analytics__DataspaceRepresentation";
101736
101507
  this.implementedInterfaces = [];
101737
101508
  this.idField = "Id";
101509
+ this.typeRegistry = typeRegistry;
101738
101510
  }
101739
101511
  get fields() {
101740
101512
  return {
@@ -101753,12 +101525,11 @@
101753
101525
  class Analytics__DominoTemplateRepository extends IdentifiableGraphQLTypeRepository {
101754
101526
  constructor(services, typeRegistry) {
101755
101527
  super(services);
101756
- this.services = services;
101757
- this.typeRegistry = typeRegistry;
101758
101528
  this.namespace = "oas";
101759
101529
  this.typeName = "Analytics__DominoTemplate";
101760
101530
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101761
101531
  this.idField = "Id";
101532
+ this.typeRegistry = typeRegistry;
101762
101533
  }
101763
101534
  get fields() {
101764
101535
  return {
@@ -101790,12 +101561,11 @@
101790
101561
  class Analytics__MktDataConnectorRepository extends IdentifiableGraphQLTypeRepository {
101791
101562
  constructor(services, typeRegistry) {
101792
101563
  super(services);
101793
- this.services = services;
101794
- this.typeRegistry = typeRegistry;
101795
101564
  this.namespace = "oas";
101796
101565
  this.typeName = "Analytics__MktDataConnector";
101797
101566
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101798
101567
  this.idField = "Id";
101568
+ this.typeRegistry = typeRegistry;
101799
101569
  }
101800
101570
  get fields() {
101801
101571
  return {
@@ -101826,12 +101596,11 @@
101826
101596
  class Analytics__SemanticDefinitionRepository extends IdentifiableGraphQLTypeRepository {
101827
101597
  constructor(services, typeRegistry) {
101828
101598
  super(services);
101829
- this.services = services;
101830
- this.typeRegistry = typeRegistry;
101831
101599
  this.namespace = "oas";
101832
101600
  this.typeName = "Analytics__SemanticDefinition";
101833
101601
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101834
101602
  this.idField = "Id";
101603
+ this.typeRegistry = typeRegistry;
101835
101604
  }
101836
101605
  get fields() {
101837
101606
  return {
@@ -101864,11 +101633,10 @@
101864
101633
  class Analytics__SemanticModelRelatedModelConnectionRepository extends UnidentifiableGraphQLTypeRepository {
101865
101634
  constructor(services, typeRegistry) {
101866
101635
  super(services);
101867
- this.services = services;
101868
- this.typeRegistry = typeRegistry;
101869
101636
  this.namespace = "oas";
101870
101637
  this.typeName = "Analytics__SemanticModelRelatedModelConnection";
101871
101638
  this.implementedInterfaces = [];
101639
+ this.typeRegistry = typeRegistry;
101872
101640
  }
101873
101641
  get fields() {
101874
101642
  return {
@@ -101884,11 +101652,10 @@
101884
101652
  class Analytics__SemanticModelRelatedModelEdgeRepository extends UnidentifiableGraphQLTypeRepository {
101885
101653
  constructor(services, typeRegistry) {
101886
101654
  super(services);
101887
- this.services = services;
101888
- this.typeRegistry = typeRegistry;
101889
101655
  this.namespace = "oas";
101890
101656
  this.typeName = "Analytics__SemanticModelRelatedModelEdge";
101891
101657
  this.implementedInterfaces = [];
101658
+ this.typeRegistry = typeRegistry;
101892
101659
  }
101893
101660
  get fields() {
101894
101661
  return {
@@ -101902,12 +101669,11 @@
101902
101669
  class Analytics__SemanticModelRelatedModelRepresentationRepository extends IdentifiableGraphQLTypeRepository {
101903
101670
  constructor(services, typeRegistry) {
101904
101671
  super(services);
101905
- this.services = services;
101906
- this.typeRegistry = typeRegistry;
101907
101672
  this.namespace = "oas";
101908
101673
  this.typeName = "Analytics__SemanticModelRelatedModelRepresentation";
101909
101674
  this.implementedInterfaces = [];
101910
101675
  this.idField = "Id";
101676
+ this.typeRegistry = typeRegistry;
101911
101677
  }
101912
101678
  get fields() {
101913
101679
  return {
@@ -101926,12 +101692,11 @@
101926
101692
  class Analytics__SemanticModelRepository extends IdentifiableGraphQLTypeRepository {
101927
101693
  constructor(services, typeRegistry) {
101928
101694
  super(services);
101929
- this.services = services;
101930
- this.typeRegistry = typeRegistry;
101931
101695
  this.namespace = "oas";
101932
101696
  this.typeName = "Analytics__SemanticModel";
101933
101697
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101934
101698
  this.idField = "Id";
101699
+ this.typeRegistry = typeRegistry;
101935
101700
  }
101936
101701
  get fields() {
101937
101702
  return {
@@ -101962,11 +101727,10 @@
101962
101727
  class Analytics__SemanticSubMetricDefinitionConnectionRepository extends UnidentifiableGraphQLTypeRepository {
101963
101728
  constructor(services, typeRegistry) {
101964
101729
  super(services);
101965
- this.services = services;
101966
- this.typeRegistry = typeRegistry;
101967
101730
  this.namespace = "oas";
101968
101731
  this.typeName = "Analytics__SemanticSubMetricDefinitionConnection";
101969
101732
  this.implementedInterfaces = [];
101733
+ this.typeRegistry = typeRegistry;
101970
101734
  }
101971
101735
  get fields() {
101972
101736
  return {
@@ -101982,11 +101746,10 @@
101982
101746
  class Analytics__SemanticSubMetricDefinitionEdgeRepository extends UnidentifiableGraphQLTypeRepository {
101983
101747
  constructor(services, typeRegistry) {
101984
101748
  super(services);
101985
- this.services = services;
101986
- this.typeRegistry = typeRegistry;
101987
101749
  this.namespace = "oas";
101988
101750
  this.typeName = "Analytics__SemanticSubMetricDefinitionEdge";
101989
101751
  this.implementedInterfaces = [];
101752
+ this.typeRegistry = typeRegistry;
101990
101753
  }
101991
101754
  get fields() {
101992
101755
  return {
@@ -102000,12 +101763,11 @@
102000
101763
  class Analytics__SemanticSubMetricDefinitionRepresentationRepository extends IdentifiableGraphQLTypeRepository {
102001
101764
  constructor(services, typeRegistry) {
102002
101765
  super(services);
102003
- this.services = services;
102004
- this.typeRegistry = typeRegistry;
102005
101766
  this.namespace = "oas";
102006
101767
  this.typeName = "Analytics__SemanticSubMetricDefinitionRepresentation";
102007
101768
  this.implementedInterfaces = [];
102008
101769
  this.idField = "Id";
101770
+ this.typeRegistry = typeRegistry;
102009
101771
  }
102010
101772
  get fields() {
102011
101773
  return {
@@ -102031,11 +101793,10 @@
102031
101793
  class AnyTypeRepository extends BaseUnionRepository {
102032
101794
  constructor(services, typeRegistry) {
102033
101795
  super(services);
102034
- this.services = services;
102035
- this.typeRegistry = typeRegistry;
102036
101796
  this.namespace = "oas";
102037
101797
  this.typeName = "AnyType";
102038
101798
  this.implementedInterfaces = [];
101799
+ this.typeRegistry = typeRegistry;
102039
101800
  }
102040
101801
  get fields() {
102041
101802
  return {
@@ -102056,11 +101817,10 @@
102056
101817
  class Base64ValueRepository extends UnidentifiableGraphQLTypeRepository {
102057
101818
  constructor(services, typeRegistry) {
102058
101819
  super(services);
102059
- this.services = services;
102060
- this.typeRegistry = typeRegistry;
102061
101820
  this.namespace = "oas";
102062
101821
  this.typeName = "Base64Value";
102063
101822
  this.implementedInterfaces = ["FieldValue"];
101823
+ this.typeRegistry = typeRegistry;
102064
101824
  }
102065
101825
  get fields() {
102066
101826
  return {
@@ -102074,11 +101834,10 @@
102074
101834
  class BooleanAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102075
101835
  constructor(services, typeRegistry) {
102076
101836
  super(services);
102077
- this.services = services;
102078
- this.typeRegistry = typeRegistry;
102079
101837
  this.namespace = "oas";
102080
101838
  this.typeName = "BooleanAggregate";
102081
101839
  this.implementedInterfaces = ["FieldValue"];
101840
+ this.typeRegistry = typeRegistry;
102082
101841
  }
102083
101842
  get fields() {
102084
101843
  return {
@@ -102093,11 +101852,10 @@
102093
101852
  class BooleanValueRepository extends UnidentifiableGraphQLTypeRepository {
102094
101853
  constructor(services, typeRegistry) {
102095
101854
  super(services);
102096
- this.services = services;
102097
- this.typeRegistry = typeRegistry;
102098
101855
  this.namespace = "oas";
102099
101856
  this.typeName = "BooleanValue";
102100
101857
  this.implementedInterfaces = ["FieldValue"];
101858
+ this.typeRegistry = typeRegistry;
102101
101859
  }
102102
101860
  get fields() {
102103
101861
  return {
@@ -102111,11 +101869,10 @@
102111
101869
  class CanvasLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
102112
101870
  constructor(services, typeRegistry) {
102113
101871
  super(services);
102114
- this.services = services;
102115
- this.typeRegistry = typeRegistry;
102116
101872
  this.namespace = "oas";
102117
101873
  this.typeName = "CanvasLayoutComponent";
102118
101874
  this.implementedInterfaces = ["LayoutComponent"];
101875
+ this.typeRegistry = typeRegistry;
102119
101876
  }
102120
101877
  get fields() {
102121
101878
  return {
@@ -102134,11 +101891,10 @@
102134
101891
  class ChildRelationshipRepository extends UnidentifiableGraphQLTypeRepository {
102135
101892
  constructor(services, typeRegistry) {
102136
101893
  super(services);
102137
- this.services = services;
102138
- this.typeRegistry = typeRegistry;
102139
101894
  this.namespace = "oas";
102140
101895
  this.typeName = "ChildRelationship";
102141
101896
  this.implementedInterfaces = [];
101897
+ this.typeRegistry = typeRegistry;
102142
101898
  }
102143
101899
  get fields() {
102144
101900
  return {
@@ -102156,11 +101912,10 @@
102156
101912
  let CompoundFieldRepository$1 = class CompoundFieldRepository extends UnidentifiableGraphQLTypeRepository {
102157
101913
  constructor(services, typeRegistry) {
102158
101914
  super(services);
102159
- this.services = services;
102160
- this.typeRegistry = typeRegistry;
102161
101915
  this.namespace = "oas";
102162
101916
  this.typeName = "CompoundField";
102163
101917
  this.implementedInterfaces = [];
101918
+ this.typeRegistry = typeRegistry;
102164
101919
  }
102165
101920
  get fields() {
102166
101921
  return {
@@ -102196,11 +101951,10 @@
102196
101951
  class ControllerValuesRepository extends UnidentifiableGraphQLTypeRepository {
102197
101952
  constructor(services, typeRegistry) {
102198
101953
  super(services);
102199
- this.services = services;
102200
- this.typeRegistry = typeRegistry;
102201
101954
  this.namespace = "oas";
102202
101955
  this.typeName = "ControllerValues";
102203
101956
  this.implementedInterfaces = [];
101957
+ this.typeRegistry = typeRegistry;
102204
101958
  }
102205
101959
  get fields() {
102206
101960
  return {
@@ -102214,11 +101968,10 @@
102214
101968
  class CurrencyAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102215
101969
  constructor(services, typeRegistry) {
102216
101970
  super(services);
102217
- this.services = services;
102218
- this.typeRegistry = typeRegistry;
102219
101971
  this.namespace = "oas";
102220
101972
  this.typeName = "CurrencyAggregate";
102221
101973
  this.implementedInterfaces = ["FieldValue"];
101974
+ this.typeRegistry = typeRegistry;
102222
101975
  }
102223
101976
  get fields() {
102224
101977
  return {
@@ -102239,11 +101992,10 @@
102239
101992
  class CurrencyValueRepository extends UnidentifiableGraphQLTypeRepository {
102240
101993
  constructor(services, typeRegistry) {
102241
101994
  super(services);
102242
- this.services = services;
102243
- this.typeRegistry = typeRegistry;
102244
101995
  this.namespace = "oas";
102245
101996
  this.typeName = "CurrencyValue";
102246
101997
  this.implementedInterfaces = ["FieldValue"];
101998
+ this.typeRegistry = typeRegistry;
102247
101999
  }
102248
102000
  get fields() {
102249
102001
  return {
@@ -102259,11 +102011,10 @@
102259
102011
  class CustomLinkLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
102260
102012
  constructor(services, typeRegistry) {
102261
102013
  super(services);
102262
- this.services = services;
102263
- this.typeRegistry = typeRegistry;
102264
102014
  this.namespace = "oas";
102265
102015
  this.typeName = "CustomLinkLayoutComponent";
102266
102016
  this.implementedInterfaces = ["LayoutComponent"];
102017
+ this.typeRegistry = typeRegistry;
102267
102018
  }
102268
102019
  get fields() {
102269
102020
  return {
@@ -102280,11 +102031,10 @@
102280
102031
  class DateAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102281
102032
  constructor(services, typeRegistry) {
102282
102033
  super(services);
102283
- this.services = services;
102284
- this.typeRegistry = typeRegistry;
102285
102034
  this.namespace = "oas";
102286
102035
  this.typeName = "DateAggregate";
102287
102036
  this.implementedInterfaces = ["FieldValue"];
102037
+ this.typeRegistry = typeRegistry;
102288
102038
  }
102289
102039
  get fields() {
102290
102040
  return {
@@ -102315,11 +102065,10 @@
102315
102065
  class DateFunctionAggregationRepository extends UnidentifiableGraphQLTypeRepository {
102316
102066
  constructor(services, typeRegistry) {
102317
102067
  super(services);
102318
- this.services = services;
102319
- this.typeRegistry = typeRegistry;
102320
102068
  this.namespace = "oas";
102321
102069
  this.typeName = "DateFunctionAggregation";
102322
102070
  this.implementedInterfaces = [];
102071
+ this.typeRegistry = typeRegistry;
102323
102072
  }
102324
102073
  get fields() {
102325
102074
  return {
@@ -102333,11 +102082,10 @@
102333
102082
  class DateTimeValueRepository extends UnidentifiableGraphQLTypeRepository {
102334
102083
  constructor(services, typeRegistry) {
102335
102084
  super(services);
102336
- this.services = services;
102337
- this.typeRegistry = typeRegistry;
102338
102085
  this.namespace = "oas";
102339
102086
  this.typeName = "DateTimeValue";
102340
102087
  this.implementedInterfaces = ["FieldValue"];
102088
+ this.typeRegistry = typeRegistry;
102341
102089
  }
102342
102090
  get fields() {
102343
102091
  return {
@@ -102352,11 +102100,10 @@
102352
102100
  class DateValueRepository extends UnidentifiableGraphQLTypeRepository {
102353
102101
  constructor(services, typeRegistry) {
102354
102102
  super(services);
102355
- this.services = services;
102356
- this.typeRegistry = typeRegistry;
102357
102103
  this.namespace = "oas";
102358
102104
  this.typeName = "DateValue";
102359
102105
  this.implementedInterfaces = ["FieldValue"];
102106
+ this.typeRegistry = typeRegistry;
102360
102107
  }
102361
102108
  get fields() {
102362
102109
  return {
@@ -102371,11 +102118,10 @@
102371
102118
  class DependentFieldRepository extends UnidentifiableGraphQLTypeRepository {
102372
102119
  constructor(services, typeRegistry) {
102373
102120
  super(services);
102374
- this.services = services;
102375
- this.typeRegistry = typeRegistry;
102376
102121
  this.namespace = "oas";
102377
102122
  this.typeName = "DependentField";
102378
102123
  this.implementedInterfaces = [];
102124
+ this.typeRegistry = typeRegistry;
102379
102125
  }
102380
102126
  get fields() {
102381
102127
  return {
@@ -102389,11 +102135,10 @@
102389
102135
  class DoubleAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102390
102136
  constructor(services, typeRegistry) {
102391
102137
  super(services);
102392
- this.services = services;
102393
- this.typeRegistry = typeRegistry;
102394
102138
  this.namespace = "oas";
102395
102139
  this.typeName = "DoubleAggregate";
102396
102140
  this.implementedInterfaces = ["FieldValue"];
102141
+ this.typeRegistry = typeRegistry;
102397
102142
  }
102398
102143
  get fields() {
102399
102144
  return {
@@ -102414,11 +102159,10 @@
102414
102159
  class DoubleValueRepository extends UnidentifiableGraphQLTypeRepository {
102415
102160
  constructor(services, typeRegistry) {
102416
102161
  super(services);
102417
- this.services = services;
102418
- this.typeRegistry = typeRegistry;
102419
102162
  this.namespace = "oas";
102420
102163
  this.typeName = "DoubleValue";
102421
102164
  this.implementedInterfaces = ["FieldValue"];
102165
+ this.typeRegistry = typeRegistry;
102422
102166
  }
102423
102167
  get fields() {
102424
102168
  return {
@@ -102433,11 +102177,10 @@
102433
102177
  class EmailAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102434
102178
  constructor(services, typeRegistry) {
102435
102179
  super(services);
102436
- this.services = services;
102437
- this.typeRegistry = typeRegistry;
102438
102180
  this.namespace = "oas";
102439
102181
  this.typeName = "EmailAggregate";
102440
102182
  this.implementedInterfaces = ["FieldValue"];
102183
+ this.typeRegistry = typeRegistry;
102441
102184
  }
102442
102185
  get fields() {
102443
102186
  return {
@@ -102456,11 +102199,10 @@
102456
102199
  class EmailValueRepository extends UnidentifiableGraphQLTypeRepository {
102457
102200
  constructor(services, typeRegistry) {
102458
102201
  super(services);
102459
- this.services = services;
102460
- this.typeRegistry = typeRegistry;
102461
102202
  this.namespace = "oas";
102462
102203
  this.typeName = "EmailValue";
102463
102204
  this.implementedInterfaces = ["FieldValue"];
102205
+ this.typeRegistry = typeRegistry;
102464
102206
  }
102465
102207
  get fields() {
102466
102208
  return {
@@ -102474,11 +102216,10 @@
102474
102216
  class EmptySpaceLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
102475
102217
  constructor(services, typeRegistry) {
102476
102218
  super(services);
102477
- this.services = services;
102478
- this.typeRegistry = typeRegistry;
102479
102219
  this.namespace = "oas";
102480
102220
  this.typeName = "EmptySpaceLayoutComponent";
102481
102221
  this.implementedInterfaces = ["LayoutComponent"];
102222
+ this.typeRegistry = typeRegistry;
102482
102223
  }
102483
102224
  get fields() {
102484
102225
  return {
@@ -102492,11 +102233,10 @@
102492
102233
  class EncryptedStringValueRepository extends UnidentifiableGraphQLTypeRepository {
102493
102234
  constructor(services, typeRegistry) {
102494
102235
  super(services);
102495
- this.services = services;
102496
- this.typeRegistry = typeRegistry;
102497
102236
  this.namespace = "oas";
102498
102237
  this.typeName = "EncryptedStringValue";
102499
102238
  this.implementedInterfaces = ["FieldValue"];
102239
+ this.typeRegistry = typeRegistry;
102500
102240
  }
102501
102241
  get fields() {
102502
102242
  return {
@@ -102510,11 +102250,10 @@
102510
102250
  class FieldLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
102511
102251
  constructor(services, typeRegistry) {
102512
102252
  super(services);
102513
- this.services = services;
102514
- this.typeRegistry = typeRegistry;
102515
102253
  this.namespace = "oas";
102516
102254
  this.typeName = "FieldLayoutComponent";
102517
102255
  this.implementedInterfaces = ["LayoutComponent"];
102256
+ this.typeRegistry = typeRegistry;
102518
102257
  }
102519
102258
  get fields() {
102520
102259
  return {
@@ -102529,11 +102268,10 @@
102529
102268
  class FieldRepository extends BaseInterfaceRepository {
102530
102269
  constructor(services, typeRegistry) {
102531
102270
  super(services);
102532
- this.services = services;
102533
- this.typeRegistry = typeRegistry;
102534
102271
  this.namespace = "oas";
102535
102272
  this.typeName = "Field";
102536
102273
  this.implementedInterfaces = [];
102274
+ this.typeRegistry = typeRegistry;
102537
102275
  }
102538
102276
  get fields() {
102539
102277
  return {
@@ -102580,11 +102318,10 @@
102580
102318
  class FilteredLookupInfoRepository extends UnidentifiableGraphQLTypeRepository {
102581
102319
  constructor(services, typeRegistry) {
102582
102320
  super(services);
102583
- this.services = services;
102584
- this.typeRegistry = typeRegistry;
102585
102321
  this.namespace = "oas";
102586
102322
  this.typeName = "FilteredLookupInfo";
102587
102323
  this.implementedInterfaces = [];
102324
+ this.typeRegistry = typeRegistry;
102588
102325
  }
102589
102326
  get fields() {
102590
102327
  return {
@@ -102599,11 +102336,10 @@
102599
102336
  class IDAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102600
102337
  constructor(services, typeRegistry) {
102601
102338
  super(services);
102602
- this.services = services;
102603
- this.typeRegistry = typeRegistry;
102604
102339
  this.namespace = "oas";
102605
102340
  this.typeName = "IDAggregate";
102606
102341
  this.implementedInterfaces = ["FieldValue"];
102342
+ this.typeRegistry = typeRegistry;
102607
102343
  }
102608
102344
  get fields() {
102609
102345
  return {
@@ -102622,11 +102358,10 @@
102622
102358
  class IDValueRepository extends UnidentifiableGraphQLTypeRepository {
102623
102359
  constructor(services, typeRegistry) {
102624
102360
  super(services);
102625
- this.services = services;
102626
- this.typeRegistry = typeRegistry;
102627
102361
  this.namespace = "oas";
102628
102362
  this.typeName = "IDValue";
102629
102363
  this.implementedInterfaces = ["FieldValue"];
102364
+ this.typeRegistry = typeRegistry;
102630
102365
  }
102631
102366
  get fields() {
102632
102367
  return {
@@ -102640,11 +102375,10 @@
102640
102375
  class IntAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102641
102376
  constructor(services, typeRegistry) {
102642
102377
  super(services);
102643
- this.services = services;
102644
- this.typeRegistry = typeRegistry;
102645
102378
  this.namespace = "oas";
102646
102379
  this.typeName = "IntAggregate";
102647
102380
  this.implementedInterfaces = ["FieldValue"];
102381
+ this.typeRegistry = typeRegistry;
102648
102382
  }
102649
102383
  get fields() {
102650
102384
  return {
@@ -102666,11 +102400,10 @@
102666
102400
  class IntValueRepository extends UnidentifiableGraphQLTypeRepository {
102667
102401
  constructor(services, typeRegistry) {
102668
102402
  super(services);
102669
- this.services = services;
102670
- this.typeRegistry = typeRegistry;
102671
102403
  this.namespace = "oas";
102672
102404
  this.typeName = "IntValue";
102673
102405
  this.implementedInterfaces = ["FieldValue"];
102406
+ this.typeRegistry = typeRegistry;
102674
102407
  }
102675
102408
  get fields() {
102676
102409
  return {
@@ -102685,11 +102418,10 @@
102685
102418
  class JSONValueRepository extends UnidentifiableGraphQLTypeRepository {
102686
102419
  constructor(services, typeRegistry) {
102687
102420
  super(services);
102688
- this.services = services;
102689
- this.typeRegistry = typeRegistry;
102690
102421
  this.namespace = "oas";
102691
102422
  this.typeName = "JSONValue";
102692
102423
  this.implementedInterfaces = ["FieldValue"];
102424
+ this.typeRegistry = typeRegistry;
102693
102425
  }
102694
102426
  get fields() {
102695
102427
  return {
@@ -102703,11 +102435,10 @@
102703
102435
  class LatitudeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102704
102436
  constructor(services, typeRegistry) {
102705
102437
  super(services);
102706
- this.services = services;
102707
- this.typeRegistry = typeRegistry;
102708
102438
  this.namespace = "oas";
102709
102439
  this.typeName = "LatitudeAggregate";
102710
102440
  this.implementedInterfaces = ["FieldValue"];
102441
+ this.typeRegistry = typeRegistry;
102711
102442
  }
102712
102443
  get fields() {
102713
102444
  return {
@@ -102727,11 +102458,10 @@
102727
102458
  class LatitudeValueRepository extends UnidentifiableGraphQLTypeRepository {
102728
102459
  constructor(services, typeRegistry) {
102729
102460
  super(services);
102730
- this.services = services;
102731
- this.typeRegistry = typeRegistry;
102732
102461
  this.namespace = "oas";
102733
102462
  this.typeName = "LatitudeValue";
102734
102463
  this.implementedInterfaces = ["FieldValue"];
102464
+ this.typeRegistry = typeRegistry;
102735
102465
  }
102736
102466
  get fields() {
102737
102467
  return {
@@ -102745,11 +102475,10 @@
102745
102475
  class LayoutComponentRepository extends BaseInterfaceRepository {
102746
102476
  constructor(services, typeRegistry) {
102747
102477
  super(services);
102748
- this.services = services;
102749
- this.typeRegistry = typeRegistry;
102750
102478
  this.namespace = "oas";
102751
102479
  this.typeName = "LayoutComponent";
102752
102480
  this.implementedInterfaces = [];
102481
+ this.typeRegistry = typeRegistry;
102753
102482
  }
102754
102483
  get fields() {
102755
102484
  return {
@@ -102773,11 +102502,10 @@
102773
102502
  class LayoutConnectionRepository extends UnidentifiableGraphQLTypeRepository {
102774
102503
  constructor(services, typeRegistry) {
102775
102504
  super(services);
102776
- this.services = services;
102777
- this.typeRegistry = typeRegistry;
102778
102505
  this.namespace = "oas";
102779
102506
  this.typeName = "LayoutConnection";
102780
102507
  this.implementedInterfaces = [];
102508
+ this.typeRegistry = typeRegistry;
102781
102509
  }
102782
102510
  get fields() {
102783
102511
  return {
@@ -102792,11 +102520,10 @@
102792
102520
  class LayoutEdgeRepository extends UnidentifiableGraphQLTypeRepository {
102793
102521
  constructor(services, typeRegistry) {
102794
102522
  super(services);
102795
- this.services = services;
102796
- this.typeRegistry = typeRegistry;
102797
102523
  this.namespace = "oas";
102798
102524
  this.typeName = "LayoutEdge";
102799
102525
  this.implementedInterfaces = [];
102526
+ this.typeRegistry = typeRegistry;
102800
102527
  }
102801
102528
  get fields() {
102802
102529
  return {
@@ -102810,11 +102537,10 @@
102810
102537
  class LayoutItemRepository extends UnidentifiableGraphQLTypeRepository {
102811
102538
  constructor(services, typeRegistry) {
102812
102539
  super(services);
102813
- this.services = services;
102814
- this.typeRegistry = typeRegistry;
102815
102540
  this.namespace = "oas";
102816
102541
  this.typeName = "LayoutItem";
102817
102542
  this.implementedInterfaces = [];
102543
+ this.typeRegistry = typeRegistry;
102818
102544
  }
102819
102545
  get fields() {
102820
102546
  return {
@@ -102834,12 +102560,11 @@
102834
102560
  class LayoutRepository extends IdentifiableGraphQLTypeRepository {
102835
102561
  constructor(services, typeRegistry) {
102836
102562
  super(services);
102837
- this.services = services;
102838
- this.typeRegistry = typeRegistry;
102839
102563
  this.namespace = "oas";
102840
102564
  this.typeName = "Layout";
102841
102565
  this.implementedInterfaces = [];
102842
102566
  this.idField = "id";
102567
+ this.typeRegistry = typeRegistry;
102843
102568
  }
102844
102569
  get fields() {
102845
102570
  return {
@@ -102861,11 +102586,10 @@
102861
102586
  class LayoutRowRepository extends UnidentifiableGraphQLTypeRepository {
102862
102587
  constructor(services, typeRegistry) {
102863
102588
  super(services);
102864
- this.services = services;
102865
- this.typeRegistry = typeRegistry;
102866
102589
  this.namespace = "oas";
102867
102590
  this.typeName = "LayoutRow";
102868
102591
  this.implementedInterfaces = [];
102592
+ this.typeRegistry = typeRegistry;
102869
102593
  }
102870
102594
  get fields() {
102871
102595
  return {
@@ -102878,11 +102602,10 @@
102878
102602
  class LayoutSaveOptionRepository extends UnidentifiableGraphQLTypeRepository {
102879
102603
  constructor(services, typeRegistry) {
102880
102604
  super(services);
102881
- this.services = services;
102882
- this.typeRegistry = typeRegistry;
102883
102605
  this.namespace = "oas";
102884
102606
  this.typeName = "LayoutSaveOption";
102885
102607
  this.implementedInterfaces = [];
102608
+ this.typeRegistry = typeRegistry;
102886
102609
  }
102887
102610
  get fields() {
102888
102611
  return {
@@ -102900,12 +102623,11 @@
102900
102623
  class LayoutSectionRepository extends IdentifiableGraphQLTypeRepository {
102901
102624
  constructor(services, typeRegistry) {
102902
102625
  super(services);
102903
- this.services = services;
102904
- this.typeRegistry = typeRegistry;
102905
102626
  this.namespace = "oas";
102906
102627
  this.typeName = "LayoutSection";
102907
102628
  this.implementedInterfaces = [];
102908
102629
  this.idField = "id";
102630
+ this.typeRegistry = typeRegistry;
102909
102631
  }
102910
102632
  get fields() {
102911
102633
  return {
@@ -102928,11 +102650,10 @@
102928
102650
  class ListColumnRepository extends UnidentifiableGraphQLTypeRepository {
102929
102651
  constructor(services, typeRegistry) {
102930
102652
  super(services);
102931
- this.services = services;
102932
- this.typeRegistry = typeRegistry;
102933
102653
  this.namespace = "oas";
102934
102654
  this.typeName = "ListColumn";
102935
102655
  this.implementedInterfaces = [];
102656
+ this.typeRegistry = typeRegistry;
102936
102657
  }
102937
102658
  get fields() {
102938
102659
  return {
@@ -102948,11 +102669,10 @@
102948
102669
  class ListOrderRepository extends UnidentifiableGraphQLTypeRepository {
102949
102670
  constructor(services, typeRegistry) {
102950
102671
  super(services);
102951
- this.services = services;
102952
- this.typeRegistry = typeRegistry;
102953
102672
  this.namespace = "oas";
102954
102673
  this.typeName = "ListOrder";
102955
102674
  this.implementedInterfaces = [];
102675
+ this.typeRegistry = typeRegistry;
102956
102676
  }
102957
102677
  get fields() {
102958
102678
  return {
@@ -102966,11 +102686,10 @@
102966
102686
  class LongAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102967
102687
  constructor(services, typeRegistry) {
102968
102688
  super(services);
102969
- this.services = services;
102970
- this.typeRegistry = typeRegistry;
102971
102689
  this.namespace = "oas";
102972
102690
  this.typeName = "LongAggregate";
102973
102691
  this.implementedInterfaces = ["FieldValue"];
102692
+ this.typeRegistry = typeRegistry;
102974
102693
  }
102975
102694
  get fields() {
102976
102695
  return {
@@ -102992,11 +102711,10 @@
102992
102711
  class LongTextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
102993
102712
  constructor(services, typeRegistry) {
102994
102713
  super(services);
102995
- this.services = services;
102996
- this.typeRegistry = typeRegistry;
102997
102714
  this.namespace = "oas";
102998
102715
  this.typeName = "LongTextAreaValue";
102999
102716
  this.implementedInterfaces = ["FieldValue"];
102717
+ this.typeRegistry = typeRegistry;
103000
102718
  }
103001
102719
  get fields() {
103002
102720
  return {
@@ -103011,11 +102729,10 @@
103011
102729
  class LongValueRepository extends UnidentifiableGraphQLTypeRepository {
103012
102730
  constructor(services, typeRegistry) {
103013
102731
  super(services);
103014
- this.services = services;
103015
- this.typeRegistry = typeRegistry;
103016
102732
  this.namespace = "oas";
103017
102733
  this.typeName = "LongValue";
103018
102734
  this.implementedInterfaces = ["FieldValue"];
102735
+ this.typeRegistry = typeRegistry;
103019
102736
  }
103020
102737
  get fields() {
103021
102738
  return {
@@ -103030,11 +102747,10 @@
103030
102747
  class LongitudeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103031
102748
  constructor(services, typeRegistry) {
103032
102749
  super(services);
103033
- this.services = services;
103034
- this.typeRegistry = typeRegistry;
103035
102750
  this.namespace = "oas";
103036
102751
  this.typeName = "LongitudeAggregate";
103037
102752
  this.implementedInterfaces = ["FieldValue"];
102753
+ this.typeRegistry = typeRegistry;
103038
102754
  }
103039
102755
  get fields() {
103040
102756
  return {
@@ -103054,11 +102770,10 @@
103054
102770
  class LongitudeValueRepository extends UnidentifiableGraphQLTypeRepository {
103055
102771
  constructor(services, typeRegistry) {
103056
102772
  super(services);
103057
- this.services = services;
103058
- this.typeRegistry = typeRegistry;
103059
102773
  this.namespace = "oas";
103060
102774
  this.typeName = "LongitudeValue";
103061
102775
  this.implementedInterfaces = ["FieldValue"];
102776
+ this.typeRegistry = typeRegistry;
103062
102777
  }
103063
102778
  get fields() {
103064
102779
  return {
@@ -103072,11 +102787,10 @@
103072
102787
  class MultiPicklistValueRepository extends UnidentifiableGraphQLTypeRepository {
103073
102788
  constructor(services, typeRegistry) {
103074
102789
  super(services);
103075
- this.services = services;
103076
- this.typeRegistry = typeRegistry;
103077
102790
  this.namespace = "oas";
103078
102791
  this.typeName = "MultiPicklistValue";
103079
102792
  this.implementedInterfaces = ["FieldValue"];
102793
+ this.typeRegistry = typeRegistry;
103080
102794
  }
103081
102795
  get fields() {
103082
102796
  return {
@@ -103091,11 +102805,10 @@
103091
102805
  class MutationRepository extends GraphQLDocumentRootTypeRepository {
103092
102806
  constructor(services, typeRegistry) {
103093
102807
  super(services);
103094
- this.services = services;
103095
- this.typeRegistry = typeRegistry;
103096
102808
  this.namespace = "oas";
103097
102809
  this.typeName = "Mutation";
103098
102810
  this.implementedInterfaces = [];
102811
+ this.typeRegistry = typeRegistry;
103099
102812
  }
103100
102813
  get fields() {
103101
102814
  return {
@@ -103111,11 +102824,10 @@
103111
102824
  class ObjectInfoRepository extends UnidentifiableGraphQLTypeRepository {
103112
102825
  constructor(services, typeRegistry) {
103113
102826
  super(services);
103114
- this.services = services;
103115
- this.typeRegistry = typeRegistry;
103116
102827
  this.namespace = "oas";
103117
102828
  this.typeName = "ObjectInfo";
103118
102829
  this.implementedInterfaces = [];
102830
+ this.typeRegistry = typeRegistry;
103119
102831
  }
103120
102832
  get fields() {
103121
102833
  return {
@@ -103148,11 +102860,10 @@
103148
102860
  class PageInfoRepository extends UnidentifiableGraphQLTypeRepository {
103149
102861
  constructor(services, typeRegistry) {
103150
102862
  super(services);
103151
- this.services = services;
103152
- this.typeRegistry = typeRegistry;
103153
102863
  this.namespace = "oas";
103154
102864
  this.typeName = "PageInfo";
103155
102865
  this.implementedInterfaces = [];
102866
+ this.typeRegistry = typeRegistry;
103156
102867
  }
103157
102868
  get fields() {
103158
102869
  return {
@@ -103168,11 +102879,10 @@
103168
102879
  class PercentAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103169
102880
  constructor(services, typeRegistry) {
103170
102881
  super(services);
103171
- this.services = services;
103172
- this.typeRegistry = typeRegistry;
103173
102882
  this.namespace = "oas";
103174
102883
  this.typeName = "PercentAggregate";
103175
102884
  this.implementedInterfaces = ["FieldValue"];
102885
+ this.typeRegistry = typeRegistry;
103176
102886
  }
103177
102887
  get fields() {
103178
102888
  return {
@@ -103193,11 +102903,10 @@
103193
102903
  class PercentValueRepository extends UnidentifiableGraphQLTypeRepository {
103194
102904
  constructor(services, typeRegistry) {
103195
102905
  super(services);
103196
- this.services = services;
103197
- this.typeRegistry = typeRegistry;
103198
102906
  this.namespace = "oas";
103199
102907
  this.typeName = "PercentValue";
103200
102908
  this.implementedInterfaces = ["FieldValue"];
102909
+ this.typeRegistry = typeRegistry;
103201
102910
  }
103202
102911
  get fields() {
103203
102912
  return {
@@ -103212,11 +102921,10 @@
103212
102921
  class PhoneNumberAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103213
102922
  constructor(services, typeRegistry) {
103214
102923
  super(services);
103215
- this.services = services;
103216
- this.typeRegistry = typeRegistry;
103217
102924
  this.namespace = "oas";
103218
102925
  this.typeName = "PhoneNumberAggregate";
103219
102926
  this.implementedInterfaces = ["FieldValue"];
102927
+ this.typeRegistry = typeRegistry;
103220
102928
  }
103221
102929
  get fields() {
103222
102930
  return {
@@ -103235,11 +102943,10 @@
103235
102943
  class PhoneNumberValueRepository extends UnidentifiableGraphQLTypeRepository {
103236
102944
  constructor(services, typeRegistry) {
103237
102945
  super(services);
103238
- this.services = services;
103239
- this.typeRegistry = typeRegistry;
103240
102946
  this.namespace = "oas";
103241
102947
  this.typeName = "PhoneNumberValue";
103242
102948
  this.implementedInterfaces = ["FieldValue"];
102949
+ this.typeRegistry = typeRegistry;
103243
102950
  }
103244
102951
  get fields() {
103245
102952
  return {
@@ -103253,11 +102960,10 @@
103253
102960
  class PicklistAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103254
102961
  constructor(services, typeRegistry) {
103255
102962
  super(services);
103256
- this.services = services;
103257
- this.typeRegistry = typeRegistry;
103258
102963
  this.namespace = "oas";
103259
102964
  this.typeName = "PicklistAggregate";
103260
102965
  this.implementedInterfaces = ["FieldValue"];
102966
+ this.typeRegistry = typeRegistry;
103261
102967
  }
103262
102968
  get fields() {
103263
102969
  return {
@@ -103277,11 +102983,10 @@
103277
102983
  class PicklistAttributesRepository extends UnidentifiableGraphQLTypeRepository {
103278
102984
  constructor(services, typeRegistry) {
103279
102985
  super(services);
103280
- this.services = services;
103281
- this.typeRegistry = typeRegistry;
103282
102986
  this.namespace = "oas";
103283
102987
  this.typeName = "PicklistAttributes";
103284
102988
  this.implementedInterfaces = [];
102989
+ this.typeRegistry = typeRegistry;
103285
102990
  }
103286
102991
  get fields() {
103287
102992
  return {
@@ -103295,11 +103000,10 @@
103295
103000
  class PicklistFieldRepository extends UnidentifiableGraphQLTypeRepository {
103296
103001
  constructor(services, typeRegistry) {
103297
103002
  super(services);
103298
- this.services = services;
103299
- this.typeRegistry = typeRegistry;
103300
103003
  this.namespace = "oas";
103301
103004
  this.typeName = "PicklistField";
103302
103005
  this.implementedInterfaces = ["Field"];
103006
+ this.typeRegistry = typeRegistry;
103303
103007
  }
103304
103008
  get fields() {
103305
103009
  return {
@@ -103341,11 +103045,10 @@
103341
103045
  class PicklistValueByRecordTypeIDsRepository extends UnidentifiableGraphQLTypeRepository {
103342
103046
  constructor(services, typeRegistry) {
103343
103047
  super(services);
103344
- this.services = services;
103345
- this.typeRegistry = typeRegistry;
103346
103048
  this.namespace = "oas";
103347
103049
  this.typeName = "PicklistValueByRecordTypeIDs";
103348
103050
  this.implementedInterfaces = [];
103051
+ this.typeRegistry = typeRegistry;
103349
103052
  }
103350
103053
  get fields() {
103351
103054
  return {
@@ -103361,11 +103064,10 @@
103361
103064
  class PicklistValueRepository extends UnidentifiableGraphQLTypeRepository {
103362
103065
  constructor(services, typeRegistry) {
103363
103066
  super(services);
103364
- this.services = services;
103365
- this.typeRegistry = typeRegistry;
103366
103067
  this.namespace = "oas";
103367
103068
  this.typeName = "PicklistValue";
103368
103069
  this.implementedInterfaces = ["FieldValue"];
103070
+ this.typeRegistry = typeRegistry;
103369
103071
  }
103370
103072
  get fields() {
103371
103073
  return {
@@ -103380,11 +103082,10 @@
103380
103082
  class PicklistValuesRepository extends UnidentifiableGraphQLTypeRepository {
103381
103083
  constructor(services, typeRegistry) {
103382
103084
  super(services);
103383
- this.services = services;
103384
- this.typeRegistry = typeRegistry;
103385
103085
  this.namespace = "oas";
103386
103086
  this.typeName = "PicklistValues";
103387
103087
  this.implementedInterfaces = [];
103088
+ this.typeRegistry = typeRegistry;
103388
103089
  }
103389
103090
  get fields() {
103390
103091
  return {
@@ -103400,11 +103101,10 @@
103400
103101
  let PolymorphicAggregateParentRelationshipRepository$1 = class PolymorphicAggregateParentRelationshipRepository extends BaseUnionRepository {
103401
103102
  constructor(services, typeRegistry) {
103402
103103
  super(services);
103403
- this.services = services;
103404
- this.typeRegistry = typeRegistry;
103405
103104
  this.namespace = "oas";
103406
103105
  this.typeName = "PolymorphicAggregateParentRelationship";
103407
103106
  this.implementedInterfaces = [];
103107
+ this.typeRegistry = typeRegistry;
103408
103108
  }
103409
103109
  get fields() {
103410
103110
  return {
@@ -103421,11 +103121,10 @@
103421
103121
  let PolymorphicParentRelationshipRepository$1 = class PolymorphicParentRelationshipRepository extends BaseUnionRepository {
103422
103122
  constructor(services, typeRegistry) {
103423
103123
  super(services);
103424
- this.services = services;
103425
- this.typeRegistry = typeRegistry;
103426
103124
  this.namespace = "oas";
103427
103125
  this.typeName = "PolymorphicParentRelationship";
103428
103126
  this.implementedInterfaces = [];
103127
+ this.typeRegistry = typeRegistry;
103429
103128
  }
103430
103129
  get fields() {
103431
103130
  return {
@@ -103442,11 +103141,10 @@
103442
103141
  class QueryRepository extends GraphQLDocumentRootTypeRepository {
103443
103142
  constructor(services, typeRegistry) {
103444
103143
  super(services);
103445
- this.services = services;
103446
- this.typeRegistry = typeRegistry;
103447
103144
  this.namespace = "oas";
103448
103145
  this.typeName = "Query";
103449
103146
  this.implementedInterfaces = [];
103147
+ this.typeRegistry = typeRegistry;
103450
103148
  }
103451
103149
  get fields() {
103452
103150
  return {
@@ -103464,11 +103162,10 @@
103464
103162
  let RecordAggregateConnectionRepository$1 = class RecordAggregateConnectionRepository extends UnidentifiableGraphQLTypeRepository {
103465
103163
  constructor(services, typeRegistry) {
103466
103164
  super(services);
103467
- this.services = services;
103468
- this.typeRegistry = typeRegistry;
103469
103165
  this.namespace = "oas";
103470
103166
  this.typeName = "RecordAggregateConnection";
103471
103167
  this.implementedInterfaces = [];
103168
+ this.typeRegistry = typeRegistry;
103472
103169
  }
103473
103170
  get fields() {
103474
103171
  return {
@@ -103483,11 +103180,10 @@
103483
103180
  let RecordAggregateEdgeRepository$1 = class RecordAggregateEdgeRepository extends UnidentifiableGraphQLTypeRepository {
103484
103181
  constructor(services, typeRegistry) {
103485
103182
  super(services);
103486
- this.services = services;
103487
- this.typeRegistry = typeRegistry;
103488
103183
  this.namespace = "oas";
103489
103184
  this.typeName = "RecordAggregateEdge";
103490
103185
  this.implementedInterfaces = [];
103186
+ this.typeRegistry = typeRegistry;
103491
103187
  }
103492
103188
  get fields() {
103493
103189
  return {
@@ -103501,11 +103197,10 @@
103501
103197
  let RecordAggregateRepository$1 = class RecordAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103502
103198
  constructor(services, typeRegistry) {
103503
103199
  super(services);
103504
- this.services = services;
103505
- this.typeRegistry = typeRegistry;
103506
103200
  this.namespace = "oas";
103507
103201
  this.typeName = "RecordAggregate";
103508
103202
  this.implementedInterfaces = [];
103203
+ this.typeRegistry = typeRegistry;
103509
103204
  }
103510
103205
  get fields() {
103511
103206
  return {
@@ -103537,11 +103232,10 @@
103537
103232
  let RecordConnectionRepository$1 = class RecordConnectionRepository extends UnidentifiableGraphQLTypeRepository {
103538
103233
  constructor(services, typeRegistry) {
103539
103234
  super(services);
103540
- this.services = services;
103541
- this.typeRegistry = typeRegistry;
103542
103235
  this.namespace = "oas";
103543
103236
  this.typeName = "RecordConnection";
103544
103237
  this.implementedInterfaces = [];
103238
+ this.typeRegistry = typeRegistry;
103545
103239
  }
103546
103240
  get fields() {
103547
103241
  return {
@@ -103557,11 +103251,10 @@
103557
103251
  let RecordCreatePayloadRepository$1 = class RecordCreatePayloadRepository extends UnidentifiableGraphQLTypeRepository {
103558
103252
  constructor(services, typeRegistry) {
103559
103253
  super(services);
103560
- this.services = services;
103561
- this.typeRegistry = typeRegistry;
103562
103254
  this.namespace = "oas";
103563
103255
  this.typeName = "RecordCreatePayload";
103564
103256
  this.implementedInterfaces = [];
103257
+ this.typeRegistry = typeRegistry;
103565
103258
  }
103566
103259
  get fields() {
103567
103260
  return {
@@ -103574,12 +103267,11 @@
103574
103267
  let RecordDeletePayloadRepository$1 = class RecordDeletePayloadRepository extends IdentifiableGraphQLTypeRepository {
103575
103268
  constructor(services, typeRegistry) {
103576
103269
  super(services);
103577
- this.services = services;
103578
- this.typeRegistry = typeRegistry;
103579
103270
  this.namespace = "oas";
103580
103271
  this.typeName = "RecordDeletePayload";
103581
103272
  this.implementedInterfaces = [];
103582
103273
  this.idField = "Id";
103274
+ this.typeRegistry = typeRegistry;
103583
103275
  }
103584
103276
  get fields() {
103585
103277
  return {
@@ -103595,11 +103287,10 @@
103595
103287
  let RecordEdgeRepository$1 = class RecordEdgeRepository extends UnidentifiableGraphQLTypeRepository {
103596
103288
  constructor(services, typeRegistry) {
103597
103289
  super(services);
103598
- this.services = services;
103599
- this.typeRegistry = typeRegistry;
103600
103290
  this.namespace = "oas";
103601
103291
  this.typeName = "RecordEdge";
103602
103292
  this.implementedInterfaces = [];
103293
+ this.typeRegistry = typeRegistry;
103603
103294
  }
103604
103295
  get fields() {
103605
103296
  return {
@@ -103613,11 +103304,10 @@
103613
103304
  let RecordQueryAggregateRepository$1 = class RecordQueryAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103614
103305
  constructor(services, typeRegistry) {
103615
103306
  super(services);
103616
- this.services = services;
103617
- this.typeRegistry = typeRegistry;
103618
103307
  this.namespace = "oas";
103619
103308
  this.typeName = "RecordQueryAggregate";
103620
103309
  this.implementedInterfaces = [];
103310
+ this.typeRegistry = typeRegistry;
103621
103311
  }
103622
103312
  get fields() {
103623
103313
  return {
@@ -103630,11 +103320,10 @@
103630
103320
  let RecordQueryRepository$1 = class RecordQueryRepository extends UnidentifiableGraphQLTypeRepository {
103631
103321
  constructor(services, typeRegistry) {
103632
103322
  super(services);
103633
- this.services = services;
103634
- this.typeRegistry = typeRegistry;
103635
103323
  this.namespace = "oas";
103636
103324
  this.typeName = "RecordQuery";
103637
103325
  this.implementedInterfaces = [];
103326
+ this.typeRegistry = typeRegistry;
103638
103327
  }
103639
103328
  get fields() {
103640
103329
  return {
@@ -103647,12 +103336,11 @@
103647
103336
  let RecordRepresentationRepository$1 = class RecordRepresentationRepository extends IdentifiableGraphQLTypeRepository {
103648
103337
  constructor(services, typeRegistry) {
103649
103338
  super(services);
103650
- this.services = services;
103651
- this.typeRegistry = typeRegistry;
103652
103339
  this.namespace = "oas";
103653
103340
  this.typeName = "RecordRepresentation";
103654
103341
  this.implementedInterfaces = ["Record"];
103655
103342
  this.idField = "Id";
103343
+ this.typeRegistry = typeRegistry;
103656
103344
  }
103657
103345
  get fields() {
103658
103346
  return {
@@ -103705,11 +103393,10 @@
103705
103393
  let RecordResultRepository$1 = class RecordResultRepository extends UnidentifiableGraphQLTypeRepository {
103706
103394
  constructor(services, typeRegistry) {
103707
103395
  super(services);
103708
- this.services = services;
103709
- this.typeRegistry = typeRegistry;
103710
103396
  this.namespace = "oas";
103711
103397
  this.typeName = "RecordResult";
103712
103398
  this.implementedInterfaces = [];
103399
+ this.typeRegistry = typeRegistry;
103713
103400
  }
103714
103401
  get fields() {
103715
103402
  return {
@@ -103722,11 +103409,10 @@
103722
103409
  class RecordTypeInfoRepository extends UnidentifiableGraphQLTypeRepository {
103723
103410
  constructor(services, typeRegistry) {
103724
103411
  super(services);
103725
- this.services = services;
103726
- this.typeRegistry = typeRegistry;
103727
103412
  this.namespace = "oas";
103728
103413
  this.typeName = "RecordTypeInfo";
103729
103414
  this.implementedInterfaces = [];
103415
+ this.typeRegistry = typeRegistry;
103730
103416
  }
103731
103417
  get fields() {
103732
103418
  return {
@@ -103743,11 +103429,10 @@
103743
103429
  let RecordUpdatePayloadRepository$1 = class RecordUpdatePayloadRepository extends UnidentifiableGraphQLTypeRepository {
103744
103430
  constructor(services, typeRegistry) {
103745
103431
  super(services);
103746
- this.services = services;
103747
- this.typeRegistry = typeRegistry;
103748
103432
  this.namespace = "oas";
103749
103433
  this.typeName = "RecordUpdatePayload";
103750
103434
  this.implementedInterfaces = [];
103435
+ this.typeRegistry = typeRegistry;
103751
103436
  }
103752
103437
  get fields() {
103753
103438
  return {
@@ -103761,11 +103446,10 @@
103761
103446
  class ReferenceToInfoRepository extends UnidentifiableGraphQLTypeRepository {
103762
103447
  constructor(services, typeRegistry) {
103763
103448
  super(services);
103764
- this.services = services;
103765
- this.typeRegistry = typeRegistry;
103766
103449
  this.namespace = "oas";
103767
103450
  this.typeName = "ReferenceToInfo";
103768
103451
  this.implementedInterfaces = [];
103452
+ this.typeRegistry = typeRegistry;
103769
103453
  }
103770
103454
  get fields() {
103771
103455
  return {
@@ -103780,11 +103464,10 @@
103780
103464
  class RelatedListInfoRepository extends UnidentifiableGraphQLTypeRepository {
103781
103465
  constructor(services, typeRegistry) {
103782
103466
  super(services);
103783
- this.services = services;
103784
- this.typeRegistry = typeRegistry;
103785
103467
  this.namespace = "oas";
103786
103468
  this.typeName = "RelatedListInfo";
103787
103469
  this.implementedInterfaces = [];
103470
+ this.typeRegistry = typeRegistry;
103788
103471
  }
103789
103472
  get fields() {
103790
103473
  return {
@@ -103803,11 +103486,10 @@
103803
103486
  class ReportLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
103804
103487
  constructor(services, typeRegistry) {
103805
103488
  super(services);
103806
- this.services = services;
103807
- this.typeRegistry = typeRegistry;
103808
103489
  this.namespace = "oas";
103809
103490
  this.typeName = "ReportLayoutComponent";
103810
103491
  this.implementedInterfaces = ["LayoutComponent"];
103492
+ this.typeRegistry = typeRegistry;
103811
103493
  }
103812
103494
  get fields() {
103813
103495
  return {
@@ -103829,11 +103511,10 @@
103829
103511
  class RichTextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
103830
103512
  constructor(services, typeRegistry) {
103831
103513
  super(services);
103832
- this.services = services;
103833
- this.typeRegistry = typeRegistry;
103834
103514
  this.namespace = "oas";
103835
103515
  this.typeName = "RichTextAreaValue";
103836
103516
  this.implementedInterfaces = ["FieldValue"];
103517
+ this.typeRegistry = typeRegistry;
103837
103518
  }
103838
103519
  get fields() {
103839
103520
  return {
@@ -103848,11 +103529,10 @@
103848
103529
  class SObject__FieldRepository extends UnidentifiableGraphQLTypeRepository {
103849
103530
  constructor(services, typeRegistry) {
103850
103531
  super(services);
103851
- this.services = services;
103852
- this.typeRegistry = typeRegistry;
103853
103532
  this.namespace = "oas";
103854
103533
  this.typeName = "SObject__Field";
103855
103534
  this.implementedInterfaces = [];
103535
+ this.typeRegistry = typeRegistry;
103856
103536
  }
103857
103537
  get fields() {
103858
103538
  return {
@@ -103866,12 +103546,11 @@
103866
103546
  class Setup__EntityRepresentationRepository extends IdentifiableGraphQLTypeRepository {
103867
103547
  constructor(services, typeRegistry) {
103868
103548
  super(services);
103869
- this.services = services;
103870
- this.typeRegistry = typeRegistry;
103871
103549
  this.namespace = "oas";
103872
103550
  this.typeName = "Setup__EntityRepresentation";
103873
103551
  this.implementedInterfaces = [];
103874
103552
  this.idField = "Id";
103553
+ this.typeRegistry = typeRegistry;
103875
103554
  }
103876
103555
  get fields() {
103877
103556
  return {
@@ -103918,11 +103597,10 @@
103918
103597
  class Setup__ListColumnRepository extends UnidentifiableGraphQLTypeRepository {
103919
103598
  constructor(services, typeRegistry) {
103920
103599
  super(services);
103921
- this.services = services;
103922
- this.typeRegistry = typeRegistry;
103923
103600
  this.namespace = "oas";
103924
103601
  this.typeName = "Setup__ListColumn";
103925
103602
  this.implementedInterfaces = [];
103603
+ this.typeRegistry = typeRegistry;
103926
103604
  }
103927
103605
  get fields() {
103928
103606
  return {
@@ -103944,11 +103622,10 @@
103944
103622
  class Setup__ListFilterRepository extends UnidentifiableGraphQLTypeRepository {
103945
103623
  constructor(services, typeRegistry) {
103946
103624
  super(services);
103947
- this.services = services;
103948
- this.typeRegistry = typeRegistry;
103949
103625
  this.namespace = "oas";
103950
103626
  this.typeName = "Setup__ListFilter";
103951
103627
  this.implementedInterfaces = [];
103628
+ this.typeRegistry = typeRegistry;
103952
103629
  }
103953
103630
  get fields() {
103954
103631
  return {
@@ -103964,11 +103641,10 @@
103964
103641
  class Setup__ListInlineEditAttributeDetailsRepository extends UnidentifiableGraphQLTypeRepository {
103965
103642
  constructor(services, typeRegistry) {
103966
103643
  super(services);
103967
- this.services = services;
103968
- this.typeRegistry = typeRegistry;
103969
103644
  this.namespace = "oas";
103970
103645
  this.typeName = "Setup__ListInlineEditAttributeDetails";
103971
103646
  this.implementedInterfaces = [];
103647
+ this.typeRegistry = typeRegistry;
103972
103648
  }
103973
103649
  get fields() {
103974
103650
  return {
@@ -103983,11 +103659,10 @@
103983
103659
  class Setup__ListInlineEditAttributesRepository extends UnidentifiableGraphQLTypeRepository {
103984
103660
  constructor(services, typeRegistry) {
103985
103661
  super(services);
103986
- this.services = services;
103987
- this.typeRegistry = typeRegistry;
103988
103662
  this.namespace = "oas";
103989
103663
  this.typeName = "Setup__ListInlineEditAttributes";
103990
103664
  this.implementedInterfaces = [];
103665
+ this.typeRegistry = typeRegistry;
103991
103666
  }
103992
103667
  get fields() {
103993
103668
  return {
@@ -104002,11 +103677,10 @@
104002
103677
  class Setup__ListOrderRepository extends UnidentifiableGraphQLTypeRepository {
104003
103678
  constructor(services, typeRegistry) {
104004
103679
  super(services);
104005
- this.services = services;
104006
- this.typeRegistry = typeRegistry;
104007
103680
  this.namespace = "oas";
104008
103681
  this.typeName = "Setup__ListOrder";
104009
103682
  this.implementedInterfaces = [];
103683
+ this.typeRegistry = typeRegistry;
104010
103684
  }
104011
103685
  get fields() {
104012
103686
  return {
@@ -104021,11 +103695,10 @@
104021
103695
  class Setup__ListScalarFieldRepository extends UnidentifiableGraphQLTypeRepository {
104022
103696
  constructor(services, typeRegistry) {
104023
103697
  super(services);
104024
- this.services = services;
104025
- this.typeRegistry = typeRegistry;
104026
103698
  this.namespace = "oas";
104027
103699
  this.typeName = "Setup__ListScalarField";
104028
103700
  this.implementedInterfaces = [];
103701
+ this.typeRegistry = typeRegistry;
104029
103702
  }
104030
103703
  get fields() {
104031
103704
  return {
@@ -104045,11 +103718,10 @@
104045
103718
  class Setup__ListViewObjectInfoRepository extends UnidentifiableGraphQLTypeRepository {
104046
103719
  constructor(services, typeRegistry) {
104047
103720
  super(services);
104048
- this.services = services;
104049
- this.typeRegistry = typeRegistry;
104050
103721
  this.namespace = "oas";
104051
103722
  this.typeName = "Setup__ListViewObjectInfo";
104052
103723
  this.implementedInterfaces = [];
103724
+ this.typeRegistry = typeRegistry;
104053
103725
  }
104054
103726
  get fields() {
104055
103727
  return {
@@ -104062,11 +103734,10 @@
104062
103734
  class Setup__ListViewRepository extends UnidentifiableGraphQLTypeRepository {
104063
103735
  constructor(services, typeRegistry) {
104064
103736
  super(services);
104065
- this.services = services;
104066
- this.typeRegistry = typeRegistry;
104067
103737
  this.namespace = "oas";
104068
103738
  this.typeName = "Setup__ListView";
104069
103739
  this.implementedInterfaces = [];
103740
+ this.typeRegistry = typeRegistry;
104070
103741
  }
104071
103742
  get fields() {
104072
103743
  return {
@@ -104087,11 +103758,10 @@
104087
103758
  class Setup__ListViewRowConnectionRepository extends UnidentifiableGraphQLTypeRepository {
104088
103759
  constructor(services, typeRegistry) {
104089
103760
  super(services);
104090
- this.services = services;
104091
- this.typeRegistry = typeRegistry;
104092
103761
  this.namespace = "oas";
104093
103762
  this.typeName = "Setup__ListViewRowConnection";
104094
103763
  this.implementedInterfaces = [];
103764
+ this.typeRegistry = typeRegistry;
104095
103765
  }
104096
103766
  get fields() {
104097
103767
  return {
@@ -104106,11 +103776,10 @@
104106
103776
  class Setup__ListViewRowEdgeRepository extends UnidentifiableGraphQLTypeRepository {
104107
103777
  constructor(services, typeRegistry) {
104108
103778
  super(services);
104109
- this.services = services;
104110
- this.typeRegistry = typeRegistry;
104111
103779
  this.namespace = "oas";
104112
103780
  this.typeName = "Setup__ListViewRowEdge";
104113
103781
  this.implementedInterfaces = [];
103782
+ this.typeRegistry = typeRegistry;
104114
103783
  }
104115
103784
  get fields() {
104116
103785
  return {
@@ -104124,11 +103793,10 @@
104124
103793
  class Setup__ListViewRowRepository extends UnidentifiableGraphQLTypeRepository {
104125
103794
  constructor(services, typeRegistry) {
104126
103795
  super(services);
104127
- this.services = services;
104128
- this.typeRegistry = typeRegistry;
104129
103796
  this.namespace = "oas";
104130
103797
  this.typeName = "Setup__ListViewRow";
104131
103798
  this.implementedInterfaces = [];
103799
+ this.typeRegistry = typeRegistry;
104132
103800
  }
104133
103801
  get fields() {
104134
103802
  return {
@@ -104142,11 +103810,10 @@
104142
103810
  class Setup__SetupAggregateConnectionRepository extends UnidentifiableGraphQLTypeRepository {
104143
103811
  constructor(services, typeRegistry) {
104144
103812
  super(services);
104145
- this.services = services;
104146
- this.typeRegistry = typeRegistry;
104147
103813
  this.namespace = "oas";
104148
103814
  this.typeName = "Setup__SetupAggregateConnection";
104149
103815
  this.implementedInterfaces = [];
103816
+ this.typeRegistry = typeRegistry;
104150
103817
  }
104151
103818
  get fields() {
104152
103819
  return {
@@ -104161,11 +103828,10 @@
104161
103828
  class Setup__SetupAggregateEdgeRepository extends UnidentifiableGraphQLTypeRepository {
104162
103829
  constructor(services, typeRegistry) {
104163
103830
  super(services);
104164
- this.services = services;
104165
- this.typeRegistry = typeRegistry;
104166
103831
  this.namespace = "oas";
104167
103832
  this.typeName = "Setup__SetupAggregateEdge";
104168
103833
  this.implementedInterfaces = [];
103834
+ this.typeRegistry = typeRegistry;
104169
103835
  }
104170
103836
  get fields() {
104171
103837
  return {
@@ -104179,11 +103845,10 @@
104179
103845
  class Setup__SetupConnectionRepository extends UnidentifiableGraphQLTypeRepository {
104180
103846
  constructor(services, typeRegistry) {
104181
103847
  super(services);
104182
- this.services = services;
104183
- this.typeRegistry = typeRegistry;
104184
103848
  this.namespace = "oas";
104185
103849
  this.typeName = "Setup__SetupConnection";
104186
103850
  this.implementedInterfaces = [];
103851
+ this.typeRegistry = typeRegistry;
104187
103852
  }
104188
103853
  get fields() {
104189
103854
  return {
@@ -104199,11 +103864,10 @@
104199
103864
  class Setup__SetupEdgeRepository extends UnidentifiableGraphQLTypeRepository {
104200
103865
  constructor(services, typeRegistry) {
104201
103866
  super(services);
104202
- this.services = services;
104203
- this.typeRegistry = typeRegistry;
104204
103867
  this.namespace = "oas";
104205
103868
  this.typeName = "Setup__SetupEdge";
104206
103869
  this.implementedInterfaces = [];
103870
+ this.typeRegistry = typeRegistry;
104207
103871
  }
104208
103872
  get fields() {
104209
103873
  return {
@@ -104217,11 +103881,10 @@
104217
103881
  class Setup__SetupPolymorphicAggregateParentRelationshipRepository extends BaseUnionRepository {
104218
103882
  constructor(services, typeRegistry) {
104219
103883
  super(services);
104220
- this.services = services;
104221
- this.typeRegistry = typeRegistry;
104222
103884
  this.namespace = "oas";
104223
103885
  this.typeName = "Setup__SetupPolymorphicAggregateParentRelationship";
104224
103886
  this.implementedInterfaces = [];
103887
+ this.typeRegistry = typeRegistry;
104225
103888
  }
104226
103889
  get fields() {
104227
103890
  return {
@@ -104238,11 +103901,10 @@
104238
103901
  class Setup__SetupPolymorphicParentRelationshipRepository extends BaseUnionRepository {
104239
103902
  constructor(services, typeRegistry) {
104240
103903
  super(services);
104241
- this.services = services;
104242
- this.typeRegistry = typeRegistry;
104243
103904
  this.namespace = "oas";
104244
103905
  this.typeName = "Setup__SetupPolymorphicParentRelationship";
104245
103906
  this.implementedInterfaces = [];
103907
+ this.typeRegistry = typeRegistry;
104246
103908
  }
104247
103909
  get fields() {
104248
103910
  return {
@@ -104259,11 +103921,10 @@
104259
103921
  class Setup__SetupQueryAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104260
103922
  constructor(services, typeRegistry) {
104261
103923
  super(services);
104262
- this.services = services;
104263
- this.typeRegistry = typeRegistry;
104264
103924
  this.namespace = "oas";
104265
103925
  this.typeName = "Setup__SetupQueryAggregate";
104266
103926
  this.implementedInterfaces = [];
103927
+ this.typeRegistry = typeRegistry;
104267
103928
  }
104268
103929
  get fields() {
104269
103930
  return {
@@ -104276,11 +103937,10 @@
104276
103937
  class Setup__SetupQueryRepository extends UnidentifiableGraphQLTypeRepository {
104277
103938
  constructor(services, typeRegistry) {
104278
103939
  super(services);
104279
- this.services = services;
104280
- this.typeRegistry = typeRegistry;
104281
103940
  this.namespace = "oas";
104282
103941
  this.typeName = "Setup__SetupQuery";
104283
103942
  this.implementedInterfaces = [];
103943
+ this.typeRegistry = typeRegistry;
104284
103944
  }
104285
103945
  get fields() {
104286
103946
  return {
@@ -104293,11 +103953,10 @@
104293
103953
  class Setup__SetupRecordAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104294
103954
  constructor(services, typeRegistry) {
104295
103955
  super(services);
104296
- this.services = services;
104297
- this.typeRegistry = typeRegistry;
104298
103956
  this.namespace = "oas";
104299
103957
  this.typeName = "Setup__SetupRecordAggregate";
104300
103958
  this.implementedInterfaces = [];
103959
+ this.typeRegistry = typeRegistry;
104301
103960
  }
104302
103961
  get fields() {
104303
103962
  return {
@@ -104329,11 +103988,10 @@
104329
103988
  class Setup__SetupRecordResultRepository extends UnidentifiableGraphQLTypeRepository {
104330
103989
  constructor(services, typeRegistry) {
104331
103990
  super(services);
104332
- this.services = services;
104333
- this.typeRegistry = typeRegistry;
104334
103991
  this.namespace = "oas";
104335
103992
  this.typeName = "Setup__SetupRecordResult";
104336
103993
  this.implementedInterfaces = [];
103994
+ this.typeRegistry = typeRegistry;
104337
103995
  }
104338
103996
  get fields() {
104339
103997
  return {
@@ -104346,11 +104004,10 @@
104346
104004
  class Setup__SetupRepository extends UnidentifiableGraphQLTypeRepository {
104347
104005
  constructor(services, typeRegistry) {
104348
104006
  super(services);
104349
- this.services = services;
104350
- this.typeRegistry = typeRegistry;
104351
104007
  this.namespace = "oas";
104352
104008
  this.typeName = "Setup__Setup";
104353
104009
  this.implementedInterfaces = [];
104010
+ this.typeRegistry = typeRegistry;
104354
104011
  }
104355
104012
  get fields() {
104356
104013
  return {
@@ -104367,11 +104024,10 @@
104367
104024
  class StandardFieldRepository extends UnidentifiableGraphQLTypeRepository {
104368
104025
  constructor(services, typeRegistry) {
104369
104026
  super(services);
104370
- this.services = services;
104371
- this.typeRegistry = typeRegistry;
104372
104027
  this.namespace = "oas";
104373
104028
  this.typeName = "StandardField";
104374
104029
  this.implementedInterfaces = ["Field"];
104030
+ this.typeRegistry = typeRegistry;
104375
104031
  }
104376
104032
  get fields() {
104377
104033
  return {
@@ -104412,11 +104068,10 @@
104412
104068
  class StringAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104413
104069
  constructor(services, typeRegistry) {
104414
104070
  super(services);
104415
- this.services = services;
104416
- this.typeRegistry = typeRegistry;
104417
104071
  this.namespace = "oas";
104418
104072
  this.typeName = "StringAggregate";
104419
104073
  this.implementedInterfaces = ["FieldValue"];
104074
+ this.typeRegistry = typeRegistry;
104420
104075
  }
104421
104076
  get fields() {
104422
104077
  return {
@@ -104436,11 +104091,10 @@
104436
104091
  class StringValueRepository extends UnidentifiableGraphQLTypeRepository {
104437
104092
  constructor(services, typeRegistry) {
104438
104093
  super(services);
104439
- this.services = services;
104440
- this.typeRegistry = typeRegistry;
104441
104094
  this.namespace = "oas";
104442
104095
  this.typeName = "StringValue";
104443
104096
  this.implementedInterfaces = ["FieldValue"];
104097
+ this.typeRegistry = typeRegistry;
104444
104098
  }
104445
104099
  get fields() {
104446
104100
  return {
@@ -104455,11 +104109,10 @@
104455
104109
  class TextAreaAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104456
104110
  constructor(services, typeRegistry) {
104457
104111
  super(services);
104458
- this.services = services;
104459
- this.typeRegistry = typeRegistry;
104460
104112
  this.namespace = "oas";
104461
104113
  this.typeName = "TextAreaAggregate";
104462
104114
  this.implementedInterfaces = ["FieldValue"];
104115
+ this.typeRegistry = typeRegistry;
104463
104116
  }
104464
104117
  get fields() {
104465
104118
  return {
@@ -104479,11 +104132,10 @@
104479
104132
  class TextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
104480
104133
  constructor(services, typeRegistry) {
104481
104134
  super(services);
104482
- this.services = services;
104483
- this.typeRegistry = typeRegistry;
104484
104135
  this.namespace = "oas";
104485
104136
  this.typeName = "TextAreaValue";
104486
104137
  this.implementedInterfaces = ["FieldValue"];
104138
+ this.typeRegistry = typeRegistry;
104487
104139
  }
104488
104140
  get fields() {
104489
104141
  return {
@@ -104498,11 +104150,10 @@
104498
104150
  class ThemeInfoRepository extends UnidentifiableGraphQLTypeRepository {
104499
104151
  constructor(services, typeRegistry) {
104500
104152
  super(services);
104501
- this.services = services;
104502
- this.typeRegistry = typeRegistry;
104503
104153
  this.namespace = "oas";
104504
104154
  this.typeName = "ThemeInfo";
104505
104155
  this.implementedInterfaces = [];
104156
+ this.typeRegistry = typeRegistry;
104506
104157
  }
104507
104158
  get fields() {
104508
104159
  return {
@@ -104516,11 +104167,10 @@
104516
104167
  class TimeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104517
104168
  constructor(services, typeRegistry) {
104518
104169
  super(services);
104519
- this.services = services;
104520
- this.typeRegistry = typeRegistry;
104521
104170
  this.namespace = "oas";
104522
104171
  this.typeName = "TimeAggregate";
104523
104172
  this.implementedInterfaces = ["FieldValue"];
104173
+ this.typeRegistry = typeRegistry;
104524
104174
  }
104525
104175
  get fields() {
104526
104176
  return {
@@ -104536,11 +104186,10 @@
104536
104186
  class TimeValueRepository extends UnidentifiableGraphQLTypeRepository {
104537
104187
  constructor(services, typeRegistry) {
104538
104188
  super(services);
104539
- this.services = services;
104540
- this.typeRegistry = typeRegistry;
104541
104189
  this.namespace = "oas";
104542
104190
  this.typeName = "TimeValue";
104543
104191
  this.implementedInterfaces = ["FieldValue"];
104192
+ this.typeRegistry = typeRegistry;
104544
104193
  }
104545
104194
  get fields() {
104546
104195
  return {
@@ -104555,11 +104204,10 @@
104555
104204
  let UIAPIMutationsRepository$1 = class UIAPIMutationsRepository extends UnidentifiableGraphQLTypeRepository {
104556
104205
  constructor(services, typeRegistry) {
104557
104206
  super(services);
104558
- this.services = services;
104559
- this.typeRegistry = typeRegistry;
104560
104207
  this.namespace = "oas";
104561
104208
  this.typeName = "UIAPIMutations";
104562
104209
  this.implementedInterfaces = [];
104210
+ this.typeRegistry = typeRegistry;
104563
104211
  }
104564
104212
  get fields() {
104565
104213
  return {
@@ -104574,11 +104222,10 @@
104574
104222
  class UIAPIRepository extends UnidentifiableGraphQLTypeRepository {
104575
104223
  constructor(services, typeRegistry) {
104576
104224
  super(services);
104577
- this.services = services;
104578
- this.typeRegistry = typeRegistry;
104579
104225
  this.namespace = "oas";
104580
104226
  this.typeName = "UIAPI";
104581
104227
  this.implementedInterfaces = [];
104228
+ this.typeRegistry = typeRegistry;
104582
104229
  }
104583
104230
  get fields() {
104584
104231
  return {
@@ -104596,11 +104243,10 @@
104596
104243
  class UrlAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104597
104244
  constructor(services, typeRegistry) {
104598
104245
  super(services);
104599
- this.services = services;
104600
- this.typeRegistry = typeRegistry;
104601
104246
  this.namespace = "oas";
104602
104247
  this.typeName = "UrlAggregate";
104603
104248
  this.implementedInterfaces = ["FieldValue"];
104249
+ this.typeRegistry = typeRegistry;
104604
104250
  }
104605
104251
  get fields() {
104606
104252
  return {
@@ -104619,11 +104265,10 @@
104619
104265
  class UrlValueRepository extends UnidentifiableGraphQLTypeRepository {
104620
104266
  constructor(services, typeRegistry) {
104621
104267
  super(services);
104622
- this.services = services;
104623
- this.typeRegistry = typeRegistry;
104624
104268
  this.namespace = "oas";
104625
104269
  this.typeName = "UrlValue";
104626
104270
  this.implementedInterfaces = ["FieldValue"];
104271
+ this.typeRegistry = typeRegistry;
104627
104272
  }
104628
104273
  get fields() {
104629
104274
  return {
@@ -104637,11 +104282,10 @@
104637
104282
  class VisualforceLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
104638
104283
  constructor(services, typeRegistry) {
104639
104284
  super(services);
104640
- this.services = services;
104641
- this.typeRegistry = typeRegistry;
104642
104285
  this.namespace = "oas";
104643
104286
  this.typeName = "VisualforceLayoutComponent";
104644
104287
  this.implementedInterfaces = ["LayoutComponent"];
104288
+ this.typeRegistry = typeRegistry;
104645
104289
  }
104646
104290
  get fields() {
104647
104291
  return {
@@ -107064,7 +106708,7 @@
107064
106708
  cb(graphql_v1_import, graphql_imperative$1, graphql_imperative_legacy_v1_import, graphql_state_manager, useOneStoreGraphQL);
107065
106709
  }
107066
106710
  }
107067
- // version: 1.437.0-f680421dc4
106711
+ // version: 1.438.0-242a4ab027
107068
106712
 
107069
106713
  function createFragmentMap(documentNode) {
107070
106714
  const fragments = {};
@@ -136271,7 +135915,7 @@
136271
135915
  configuration: { ...configurationForGraphQLAdapters$1 },
136272
135916
  instrument: instrument$1,
136273
135917
  });
136274
- // version: 1.437.0-f680421dc4
135918
+ // version: 1.438.0-242a4ab027
136275
135919
 
136276
135920
  // On core the unstable adapters are re-exported with different names,
136277
135921
  // we want to match them here.
@@ -136423,7 +136067,7 @@
136423
136067
  unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
136424
136068
  graphQLImperative = ldsAdapter;
136425
136069
  });
136426
- // version: 1.437.0-f680421dc4
136070
+ // version: 1.438.0-242a4ab027
136427
136071
 
136428
136072
  var gqlApi = /*#__PURE__*/Object.freeze({
136429
136073
  __proto__: null,
@@ -137222,7 +136866,7 @@
137222
136866
  function register(r) {
137223
136867
  callbacks$1.forEach((callback) => callback(r));
137224
136868
  }
137225
- // version: 1.437.0-90398d3223
136869
+ // version: 1.438.0-0ec0a89235
137226
136870
 
137227
136871
  /**
137228
136872
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -138532,4 +138176,4 @@
138532
138176
  exports.subscribeToAdapter = subscribeToAdapter;
138533
138177
 
138534
138178
  }));
138535
- // version: 1.437.0-90398d3223
138179
+ // version: 1.438.0-0ec0a89235