@salesforce/lds-worker-api 1.436.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.
@@ -1997,7 +1997,9 @@
1997
1997
  HttpStatusCode[HttpStatusCode["Unauthorized"] = 401] = "Unauthorized";
1998
1998
  HttpStatusCode[HttpStatusCode["Forbidden"] = 403] = "Forbidden";
1999
1999
  HttpStatusCode[HttpStatusCode["NotFound"] = 404] = "NotFound";
2000
+ HttpStatusCode[HttpStatusCode["TooManyRequests"] = 429] = "TooManyRequests";
2000
2001
  HttpStatusCode[HttpStatusCode["ServerError"] = 500] = "ServerError";
2002
+ HttpStatusCode[HttpStatusCode["ServiceUnavailable"] = 503] = "ServiceUnavailable";
2001
2003
  HttpStatusCode[HttpStatusCode["GatewayTimeout"] = 504] = "GatewayTimeout";
2002
2004
  })(HttpStatusCode$2 || (HttpStatusCode$2 = {}));
2003
2005
  /**
@@ -4152,7 +4154,7 @@
4152
4154
  }
4153
4155
  return resourceParams;
4154
4156
  }
4155
- // engine version: 0.160.4-b7e0ea82
4157
+ // engine version: 0.160.5-e6ada846
4156
4158
 
4157
4159
  /**
4158
4160
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -4280,7 +4282,7 @@
4280
4282
  }
4281
4283
  callbacks.push(callback);
4282
4284
  }
4283
- // version: 1.436.0-581b8a5964
4285
+ // version: 1.438.0-0ec0a89235
4284
4286
 
4285
4287
  // TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
4286
4288
  function instrumentAdapter$1(createFunction, _metadata) {
@@ -5324,7 +5326,7 @@
5324
5326
  const { apiFamily, name } = metadata;
5325
5327
  return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
5326
5328
  }
5327
- // version: 1.436.0-581b8a5964
5329
+ // version: 1.438.0-0ec0a89235
5328
5330
 
5329
5331
  function isSupportedEntity(_objectApiName) {
5330
5332
  return true;
@@ -5383,7 +5385,9 @@
5383
5385
  HttpStatusCode[HttpStatusCode["Unauthorized"] = 401] = "Unauthorized";
5384
5386
  HttpStatusCode[HttpStatusCode["Forbidden"] = 403] = "Forbidden";
5385
5387
  HttpStatusCode[HttpStatusCode["NotFound"] = 404] = "NotFound";
5388
+ HttpStatusCode[HttpStatusCode["TooManyRequests"] = 429] = "TooManyRequests";
5386
5389
  HttpStatusCode[HttpStatusCode["ServerError"] = 500] = "ServerError";
5390
+ HttpStatusCode[HttpStatusCode["ServiceUnavailable"] = 503] = "ServiceUnavailable";
5387
5391
  HttpStatusCode[HttpStatusCode["GatewayTimeout"] = 504] = "GatewayTimeout";
5388
5392
  })(HttpStatusCode$1 || (HttpStatusCode$1 = {}));
5389
5393
  var GraphNodeType;
@@ -5428,7 +5432,7 @@
5428
5432
  TypeCheckShapes[TypeCheckShapes["Integer"] = 3] = "Integer";
5429
5433
  TypeCheckShapes[TypeCheckShapes["Unsupported"] = 4] = "Unsupported";
5430
5434
  })(TypeCheckShapes || (TypeCheckShapes = {}));
5431
- // engine version: 0.160.4-b7e0ea82
5435
+ // engine version: 0.160.5-e6ada846
5432
5436
 
5433
5437
  const { keys: ObjectKeys$4, create: ObjectCreate$4 } = Object;
5434
5438
 
@@ -14375,7 +14379,7 @@
14375
14379
  return undefined;
14376
14380
  }
14377
14381
 
14378
- const VERSION$10$2 = "3f49d751896cf66e6e29788d8880e2cc";
14382
+ const VERSION$10$2 = "885c858e27ff690e5f69edc41d68c32b";
14379
14383
  const RepresentationType$G = 'PlatformActionRepresentation';
14380
14384
  function keyBuilder$1P$1(luvio, config) {
14381
14385
  return keyPrefix$3 + '::' + RepresentationType$G + ':' + config.externalId + ':' + (config.relatedSourceObject === null ? '' : config.relatedSourceObject) + ':' + (config.relatedListRecordId === null ? '' : config.relatedListRecordId);
@@ -14435,6 +14439,10 @@
14435
14439
  name: 'lwcComponent',
14436
14440
  kind: 'Scalar'
14437
14441
  },
14442
+ {
14443
+ name: 'pageDeveloperName',
14444
+ kind: 'Scalar'
14445
+ },
14438
14446
  {
14439
14447
  name: 'primaryColor',
14440
14448
  kind: 'Scalar'
@@ -14463,6 +14471,10 @@
14463
14471
  name: 'targetObject',
14464
14472
  kind: 'Scalar'
14465
14473
  },
14474
+ {
14475
+ name: 'targetParentField',
14476
+ kind: 'Scalar'
14477
+ },
14466
14478
  {
14467
14479
  name: 'targetUrl',
14468
14480
  kind: 'Scalar'
@@ -14535,6 +14547,11 @@
14535
14547
  if (!(existing_lwcComponent === incoming_lwcComponent)) {
14536
14548
  return false;
14537
14549
  }
14550
+ const existing_pageDeveloperName = existing.pageDeveloperName;
14551
+ const incoming_pageDeveloperName = incoming.pageDeveloperName;
14552
+ if (!(existing_pageDeveloperName === incoming_pageDeveloperName)) {
14553
+ return false;
14554
+ }
14538
14555
  const existing_primaryColor = existing.primaryColor;
14539
14556
  const incoming_primaryColor = incoming.primaryColor;
14540
14557
  if (!(existing_primaryColor === incoming_primaryColor)) {
@@ -14565,6 +14582,11 @@
14565
14582
  if (!(existing_targetObject === incoming_targetObject)) {
14566
14583
  return false;
14567
14584
  }
14585
+ const existing_targetParentField = existing.targetParentField;
14586
+ const incoming_targetParentField = incoming.targetParentField;
14587
+ if (!(existing_targetParentField === incoming_targetParentField)) {
14588
+ return false;
14589
+ }
14568
14590
  const existing_targetUrl = existing.targetUrl;
14569
14591
  const incoming_targetUrl = incoming.targetUrl;
14570
14592
  if (!(existing_targetUrl === incoming_targetUrl)) {
@@ -32522,7 +32544,7 @@
32522
32544
  throttle(60, 60000, setupNotifyAllListRecordUpdateAvailable(luvio));
32523
32545
  throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
32524
32546
  });
32525
- // version: 1.436.0-7cd4295391
32547
+ // version: 1.438.0-242a4ab027
32526
32548
 
32527
32549
  var allowUpdatesForNonCachedRecords = {
32528
32550
  isOpen: function (e) {
@@ -44163,11 +44185,6 @@
44163
44185
  },
44164
44186
  };
44165
44187
 
44166
- /*!
44167
- * Copyright (c) 2022, Salesforce, Inc.,
44168
- * All rights reserved.
44169
- * For full license text, see the LICENSE.txt file
44170
- */
44171
44188
  const { create: create$7, freeze: freeze$4, keys: keys$8, entries: entries$5 } = Object;
44172
44189
  const { hasOwnProperty: hasOwnProperty$3 } = Object.prototype;
44173
44190
  const { isArray: isArray$7 } = Array;
@@ -44231,7 +44248,7 @@
44231
44248
  };
44232
44249
  }
44233
44250
  function isPromiseLike$4(x) {
44234
- return typeof (x == null ? void 0 : x.then) === "function";
44251
+ return typeof x?.then === "function";
44235
44252
  }
44236
44253
  function racesync(values) {
44237
44254
  for (const value of values) {
@@ -44348,20 +44365,12 @@
44348
44365
  console.error("OneStore Command threw an error that we did not expect", error);
44349
44366
  }
44350
44367
 
44351
- /*!
44352
- * Copyright (c) 2022, Salesforce, Inc.,
44353
- * All rights reserved.
44354
- * For full license text, see the LICENSE.txt file
44355
- */
44356
44368
  function serviceSatisfies(service, request) {
44357
44369
  return (
44358
44370
  // service types must match
44359
44371
  service.type === request.type && // version of the service must satisfy the requested version
44360
44372
  satisfies(service.version, request.version) && // no tags requested, or the service matches every requested tag value
44361
- (request.tags === void 0 || Object.keys(request.tags).every((tag) => {
44362
- var _a;
44363
- return ((_a = service.tags) == null ? void 0 : _a[tag]) === request.tags[tag];
44364
- }))
44373
+ (request.tags === void 0 || Object.keys(request.tags).every((tag) => service.tags?.[tag] === request.tags[tag]))
44365
44374
  );
44366
44375
  }
44367
44376
  let resolverAvailable;
@@ -44419,11 +44428,6 @@
44419
44428
  };
44420
44429
  }
44421
44430
 
44422
- /*!
44423
- * Copyright (c) 2022, Salesforce, Inc.,
44424
- * All rights reserved.
44425
- * For full license text, see the LICENSE.txt file
44426
- */
44427
44431
  function isCacheEntryForType(cacheEntry, type) {
44428
44432
  return cacheEntry.metadata.type.namespace === type.namespace && cacheEntry.metadata.type.name === type.typeName;
44429
44433
  }
@@ -44441,9 +44445,8 @@
44441
44445
  return `${this.namespace}::${this.typeName}(${stableJSONStringify$3(params)})`;
44442
44446
  }
44443
44447
  write(cache, input) {
44444
- var _a;
44445
44448
  const key = this.buildKey(this.buildKeyParams(input));
44446
- const existingNormalizedData = (_a = cache.get(key)) == null ? void 0 : _a.value;
44449
+ const existingNormalizedData = cache.get(key)?.value;
44447
44450
  const normalized = this.normalizeData(cache, { ...input, existingNormalizedData });
44448
44451
  if (normalized.isErr()) {
44449
44452
  return err$3(normalized.error);
@@ -44518,11 +44521,6 @@
44518
44521
  return ok$3(data);
44519
44522
  }
44520
44523
 
44521
- /*!
44522
- * Copyright (c) 2022, Salesforce, Inc.,
44523
- * All rights reserved.
44524
- * For full license text, see the LICENSE.txt file
44525
- */
44526
44524
  let JsonSchemaViolationError$1 = class JsonSchemaViolationError extends Error {
44527
44525
  constructor(message, validationErrors) {
44528
44526
  super(message);
@@ -44952,11 +44950,6 @@
44952
44950
  return current;
44953
44951
  }
44954
44952
 
44955
- /*!
44956
- * Copyright (c) 2022, Salesforce, Inc.,
44957
- * All rights reserved.
44958
- * For full license text, see the LICENSE.txt file
44959
- */
44960
44953
  function devAssert(condition, message) {
44961
44954
  const booleanCondition = Boolean(condition);
44962
44955
  if (!booleanCondition) {
@@ -45807,10 +45800,7 @@
45807
45800
  return operations[0];
45808
45801
  }
45809
45802
  if (operationName) {
45810
- return operations.find((op) => {
45811
- var _a;
45812
- return ((_a = op.name) == null ? void 0 : _a.value) === operationName;
45813
- });
45803
+ return operations.find((op) => op.name?.value === operationName);
45814
45804
  }
45815
45805
  return void 0;
45816
45806
  }
@@ -45866,7 +45856,7 @@
45866
45856
  validateGraphQLOperations(
45867
45857
  { query: document, operationName },
45868
45858
  {
45869
- acceptedOperations: (options == null ? void 0 : options.acceptedOperations) ?? ["query"]
45859
+ acceptedOperations: options?.acceptedOperations ?? ["query"]
45870
45860
  }
45871
45861
  );
45872
45862
  return ok$3(document);
@@ -45982,6 +45972,9 @@
45982
45972
  targetFields[fieldName] = sourceFields[fieldName];
45983
45973
  continue;
45984
45974
  }
45975
+ if (targetField.displayValue === null && sourceField.displayValue !== null) {
45976
+ targetField.displayValue = sourceField.displayValue;
45977
+ }
45985
45978
  mergeRecordFields$2(targetField.value, sourceField.value);
45986
45979
  continue;
45987
45980
  }
@@ -89467,6 +89460,9 @@
89467
89460
  targetFields[fieldName] = sourceField;
89468
89461
  continue;
89469
89462
  }
89463
+ if (targetField.displayValue === null && sourceField.displayValue !== null) {
89464
+ targetField.displayValue = sourceField.displayValue;
89465
+ }
89470
89466
  mergeRecordFields(targetField.value, sourceField.value);
89471
89467
  continue;
89472
89468
  }
@@ -94091,11 +94087,6 @@
94091
94087
  return [];
94092
94088
  }
94093
94089
 
94094
- /*!
94095
- * Copyright (c) 2022, Salesforce, Inc.,
94096
- * All rights reserved.
94097
- * For full license text, see the LICENSE.txt file
94098
- */
94099
94090
  const { create: create$6, freeze: freeze$3, keys: keys$7, entries } = Object;
94100
94091
  const { isArray: isArray$1$1 } = Array;
94101
94092
  const { stringify: stringify$2, parse: parse$2 } = JSON;
@@ -94214,7 +94205,7 @@
94214
94205
  };
94215
94206
  }
94216
94207
  function isPromiseLike$2(x) {
94217
- return typeof (x == null ? void 0 : x.then) === "function";
94208
+ return typeof x?.then === "function";
94218
94209
  }
94219
94210
  function deepEquals$1(x, y) {
94220
94211
  if (x === void 0) {
@@ -94384,19 +94375,9 @@
94384
94375
  console.error("OneStore Command threw an error that we did not expect", error);
94385
94376
  }
94386
94377
 
94387
- /*!
94388
- * Copyright (c) 2022, Salesforce, Inc.,
94389
- * All rights reserved.
94390
- * For full license text, see the LICENSE.txt file
94391
- */
94392
94378
  class BaseCommand {
94393
94379
  }
94394
94380
 
94395
- /*!
94396
- * Copyright (c) 2022, Salesforce, Inc.,
94397
- * All rights reserved.
94398
- * For full license text, see the LICENSE.txt file
94399
- */
94400
94381
  let NetworkCommand$1 = class NetworkCommand extends BaseCommand {
94401
94382
  constructor(services) {
94402
94383
  super();
@@ -94447,11 +94428,6 @@
94447
94428
  };
94448
94429
  }
94449
94430
 
94450
- /*!
94451
- * Copyright (c) 2022, Salesforce, Inc.,
94452
- * All rights reserved.
94453
- * For full license text, see the LICENSE.txt file
94454
- */
94455
94431
  class AuraNetworkCommand extends NetworkCommand$1 {
94456
94432
  constructor(services) {
94457
94433
  super(services);
@@ -94558,16 +94534,6 @@
94558
94534
  };
94559
94535
  }
94560
94536
 
94561
- /*!
94562
- * Copyright (c) 2022, Salesforce, Inc.,
94563
- * All rights reserved.
94564
- * For full license text, see the LICENSE.txt file
94565
- */
94566
- /*!
94567
- * Copyright (c) 2022, Salesforce, Inc.,
94568
- * All rights reserved.
94569
- * For full license text, see the LICENSE.txt file
94570
- */
94571
94537
  const { isArray: isArray$6 } = Array;
94572
94538
  let Ok$2 = class Ok {
94573
94539
  constructor(value) {
@@ -94635,7 +94601,7 @@
94635
94601
  };
94636
94602
  }
94637
94603
  function isPromiseLike$1(x) {
94638
- return typeof (x == null ? void 0 : x.then) === "function";
94604
+ return typeof x?.then === "function";
94639
94605
  }
94640
94606
  function deepEquals(x, y) {
94641
94607
  if (x === void 0) {
@@ -94926,7 +94892,7 @@
94926
94892
  unsubscribe() {
94927
94893
  while (this.unsubscribers.length > 0) {
94928
94894
  const unsubscriber = this.unsubscribers.pop();
94929
- unsubscriber == null ? void 0 : unsubscriber();
94895
+ unsubscriber?.();
94930
94896
  }
94931
94897
  }
94932
94898
  /**
@@ -95110,16 +95076,6 @@
95110
95076
  };
95111
95077
  }
95112
95078
 
95113
- /*!
95114
- * Copyright (c) 2022, Salesforce, Inc.,
95115
- * All rights reserved.
95116
- * For full license text, see the LICENSE.txt file
95117
- */
95118
- /*!
95119
- * Copyright (c) 2022, Salesforce, Inc.,
95120
- * All rights reserved.
95121
- * For full license text, see the LICENSE.txt file
95122
- */
95123
95079
  let AuraCacheControlCommand$1 = class AuraCacheControlCommand extends CacheControlCommand {
95124
95080
  constructor(services) {
95125
95081
  super(services);
@@ -95255,16 +95211,6 @@
95255
95211
  };
95256
95212
  }
95257
95213
 
95258
- /*!
95259
- * Copyright (c) 2022, Salesforce, Inc.,
95260
- * All rights reserved.
95261
- * For full license text, see the LICENSE.txt file
95262
- */
95263
- /*!
95264
- * Copyright (c) 2022, Salesforce, Inc.,
95265
- * All rights reserved.
95266
- * For full license text, see the LICENSE.txt file
95267
- */
95268
95214
  class AuraCacheControlCommand extends CacheControlCommand {
95269
95215
  constructor(services) {
95270
95216
  super(services);
@@ -95374,8 +95320,7 @@
95374
95320
  this.services = services;
95375
95321
  }
95376
95322
  readFromCache(cache) {
95377
- var _a;
95378
- const data = (_a = cache.get(this.buildKey())) == null ? void 0 : _a.value;
95323
+ const data = cache.get(this.buildKey())?.value;
95379
95324
  if (data === void 0) {
95380
95325
  return resolvedPromiseLike$2(err$1(new Error("Failed to find data in cache")));
95381
95326
  }
@@ -95404,16 +95349,6 @@
95404
95349
  };
95405
95350
  }
95406
95351
 
95407
- /*!
95408
- * Copyright (c) 2022, Salesforce, Inc.,
95409
- * All rights reserved.
95410
- * For full license text, see the LICENSE.txt file
95411
- */
95412
- /*!
95413
- * Copyright (c) 2022, Salesforce, Inc.,
95414
- * All rights reserved.
95415
- * For full license text, see the LICENSE.txt file
95416
- */
95417
95352
  class NetworkCommand extends BaseCommand {
95418
95353
  constructor(services) {
95419
95354
  super();
@@ -95463,7 +95398,7 @@
95463
95398
  return command && typeof command === "object" && "fetchParams" in command;
95464
95399
  }
95465
95400
  function createAbortableDecorator(command, options) {
95466
- if (!(options == null ? void 0 : options.signal) || !((options == null ? void 0 : options.signal) instanceof AbortSignal)) {
95401
+ if (!options?.signal || !(options?.signal instanceof AbortSignal)) {
95467
95402
  return command;
95468
95403
  }
95469
95404
  const { signal } = options;
@@ -95594,16 +95529,6 @@
95594
95529
  };
95595
95530
  }
95596
95531
 
95597
- /*!
95598
- * Copyright (c) 2022, Salesforce, Inc.,
95599
- * All rights reserved.
95600
- * For full license text, see the LICENSE.txt file
95601
- */
95602
- /*!
95603
- * Copyright (c) 2022, Salesforce, Inc.,
95604
- * All rights reserved.
95605
- * For full license text, see the LICENSE.txt file
95606
- */
95607
95532
  class HttpCacheControlCommand extends CacheControlCommand {
95608
95533
  constructor(services) {
95609
95534
  super(services);
@@ -95711,16 +95636,6 @@
95711
95636
  };
95712
95637
  }
95713
95638
 
95714
- /*!
95715
- * Copyright (c) 2022, Salesforce, Inc.,
95716
- * All rights reserved.
95717
- * For full license text, see the LICENSE.txt file
95718
- */
95719
- /*!
95720
- * Copyright (c) 2022, Salesforce, Inc.,
95721
- * All rights reserved.
95722
- * For full license text, see the LICENSE.txt file
95723
- */
95724
95639
  const { stringify: stringify$1, parse: parse$1 } = JSON;
95725
95640
  function deepCopy$1(x) {
95726
95641
  const stringified = stringify$1(x);
@@ -95744,7 +95659,7 @@
95744
95659
  if (value === void 0) {
95745
95660
  this.missingKeysRead.add(key);
95746
95661
  }
95747
- if (options == null ? void 0 : options.copy) {
95662
+ if (options?.copy) {
95748
95663
  return deepCopy$1(value);
95749
95664
  }
95750
95665
  return value;
@@ -95788,7 +95703,7 @@
95788
95703
  get(key, options) {
95789
95704
  const result = this.baseCache.get(key);
95790
95705
  if (result && this.predicate(key, result)) {
95791
- if (options == null ? void 0 : options.copy) {
95706
+ if (options?.copy) {
95792
95707
  return deepCopy$1(result);
95793
95708
  }
95794
95709
  return result;
@@ -95884,7 +95799,7 @@
95884
95799
  this.data = {};
95885
95800
  }
95886
95801
  get(key, options) {
95887
- if (options == null ? void 0 : options.copy) {
95802
+ if (options?.copy) {
95888
95803
  return deepCopy$1(this.data[key]);
95889
95804
  }
95890
95805
  return this.data[key];
@@ -95964,11 +95879,6 @@
95964
95879
  };
95965
95880
  }
95966
95881
 
95967
- /*!
95968
- * Copyright (c) 2022, Salesforce, Inc.,
95969
- * All rights reserved.
95970
- * For full license text, see the LICENSE.txt file
95971
- */
95972
95882
  class CacheControlStrategy {
95973
95883
  constructor(services, config, requestRunner) {
95974
95884
  this.services = services;
@@ -96029,11 +95939,11 @@
96029
95939
  if (value.isOk()) {
96030
95940
  this.collectCacheHitInstrumentation(
96031
95941
  startTime,
96032
- options == null ? void 0 : options.instrumentationAttributes
95942
+ options?.instrumentationAttributes
96033
95943
  );
96034
95944
  return ok$1(void 0);
96035
95945
  }
96036
- this.collectCacheMissInstrumentation(startTime, options == null ? void 0 : options.instrumentationAttributes);
95946
+ this.collectCacheMissInstrumentation(startTime, options?.instrumentationAttributes);
96037
95947
  const tempCache = this.filteredCache;
96038
95948
  return new Promise(async (resolve, reject) => {
96039
95949
  try {
@@ -96103,11 +96013,11 @@
96103
96013
  if (result.isOk()) {
96104
96014
  this.collectCacheHitInstrumentation(
96105
96015
  startTime,
96106
- options == null ? void 0 : options.instrumentationAttributes
96016
+ options?.instrumentationAttributes
96107
96017
  );
96108
96018
  return ok$1(void 0);
96109
96019
  }
96110
- this.collectCacheMissInstrumentation(startTime, options == null ? void 0 : options.instrumentationAttributes);
96020
+ this.collectCacheMissInstrumentation(startTime, options?.instrumentationAttributes);
96111
96021
  const error = new UserVisibleError(
96112
96022
  new FetchResponse(HttpStatusCode.GatewayTimeout, {
96113
96023
  error: "Cache miss for only-if-cached request"
@@ -96191,11 +96101,6 @@
96191
96101
  };
96192
96102
  }
96193
96103
 
96194
- /*!
96195
- * Copyright (c) 2022, Salesforce, Inc.,
96196
- * All rights reserved.
96197
- * For full license text, see the LICENSE.txt file
96198
- */
96199
96104
  function buildInstrumentCommand(services) {
96200
96105
  const meter = services.instrumentation.metrics.getMeter("onestore");
96201
96106
  return function instrumentCommand(commandClass, commandName) {
@@ -96215,7 +96120,7 @@
96215
96120
  try {
96216
96121
  result = super.execute(...args);
96217
96122
  } catch (e) {
96218
- if ((e == null ? void 0 : e.name) === "AbortError") {
96123
+ if (e?.name === "AbortError") {
96219
96124
  abortCounter.add(1);
96220
96125
  } else {
96221
96126
  errorCounter.add(1);
@@ -96242,16 +96147,6 @@
96242
96147
  };
96243
96148
  }
96244
96149
 
96245
- /*!
96246
- * Copyright (c) 2022, Salesforce, Inc.,
96247
- * All rights reserved.
96248
- * For full license text, see the LICENSE.txt file
96249
- */
96250
- /*!
96251
- * Copyright (c) 2022, Salesforce, Inc.,
96252
- * All rights reserved.
96253
- * For full license text, see the LICENSE.txt file
96254
- */
96255
96150
  class O11yOTelTraceAPI {
96256
96151
  constructor(services) {
96257
96152
  this.services = services;
@@ -96267,9 +96162,9 @@
96267
96162
  this.logger = logger;
96268
96163
  }
96269
96164
  startSpan(name, _options, context) {
96270
- const traceId = context == null ? void 0 : context.getValue(Symbol.for("traceId"));
96271
- const spanId = context == null ? void 0 : context.getValue(Symbol.for("spanId"));
96272
- 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"));
96273
96168
  let spanContext = void 0;
96274
96169
  if (traceId !== void 0 && spanId !== void 0 && traceFlags !== void 0) {
96275
96170
  spanContext = {
@@ -96512,12 +96407,7 @@
96512
96407
  };
96513
96408
  }
96514
96409
 
96515
- /*!
96516
- * Copyright (c) 2022, Salesforce, Inc.,
96517
- * All rights reserved.
96518
- * For full license text, see the LICENSE.txt file
96519
- */
96520
- const EventTypeWildcard = Symbol("EventTypeWildcard");
96410
+ const EventTypeWildcard = /* @__PURE__ */ Symbol("EventTypeWildcard");
96521
96411
  class DefaultPubSubService {
96522
96412
  constructor() {
96523
96413
  this.subscriptions = /* @__PURE__ */ new Map();
@@ -96580,11 +96470,6 @@
96580
96470
  };
96581
96471
  }
96582
96472
 
96583
- /*!
96584
- * Copyright (c) 2022, Salesforce, Inc.,
96585
- * All rights reserved.
96586
- * For full license text, see the LICENSE.txt file
96587
- */
96588
96473
  class FeatureFlagsService {
96589
96474
  constructor() {
96590
96475
  this.flags = /* @__PURE__ */ new Map();
@@ -96646,7 +96531,7 @@
96646
96531
  },
96647
96532
  };
96648
96533
  }
96649
- // version: 1.436.0-581b8a5964
96534
+ // version: 1.438.0-0ec0a89235
96650
96535
 
96651
96536
  /**
96652
96537
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -96672,13 +96557,8 @@
96672
96557
  },
96673
96558
  };
96674
96559
  }
96675
- // version: 1.436.0-581b8a5964
96560
+ // version: 1.438.0-0ec0a89235
96676
96561
 
96677
- /*!
96678
- * Copyright (c) 2022, Salesforce, Inc.,
96679
- * All rights reserved.
96680
- * For full license text, see the LICENSE.txt file
96681
- */
96682
96562
  function findExecutableOperation$1(input) {
96683
96563
  const operations = input.query.definitions.filter(
96684
96564
  (def) => def.kind === Kind$1.OPERATION_DEFINITION
@@ -96690,10 +96570,7 @@
96690
96570
  return ok$1(operations[0]);
96691
96571
  }
96692
96572
  if (input.operationName) {
96693
- const specifiedOperation = operations.find((op) => {
96694
- var _a;
96695
- return ((_a = op.name) == null ? void 0 : _a.value) === input.operationName;
96696
- });
96573
+ const specifiedOperation = operations.find((op) => op.name?.value === input.operationName);
96697
96574
  if (specifiedOperation) {
96698
96575
  return ok$1(specifiedOperation);
96699
96576
  }
@@ -96709,14 +96586,13 @@
96709
96586
  const operation = operationResult.value;
96710
96587
  const selections = operation.selectionSet.selections;
96711
96588
  const variableDefinitions = operation.variableDefinitions;
96712
- const variables = (variableDefinitions == null ? void 0 : variableDefinitions.reduce((prev, def) => {
96713
- var _a;
96589
+ const variables = variableDefinitions?.reduce((prev, def) => {
96714
96590
  prev[def.variable.name.value] = {
96715
96591
  definition: def,
96716
- value: (_a = input.variables) == null ? void 0 : _a[def.variable.name.value]
96592
+ value: input.variables?.[def.variable.name.value]
96717
96593
  };
96718
96594
  return prev;
96719
- }, {})) || {};
96595
+ }, {}) || {};
96720
96596
  const fragments = input.query.definitions.filter(isFragmentDefinition$1).reduce((prev, fragment) => {
96721
96597
  prev[fragment.name.value] = fragment;
96722
96598
  return prev;
@@ -96769,11 +96645,6 @@
96769
96645
  return node.kind === Kind$1.FRAGMENT_DEFINITION;
96770
96646
  }
96771
96647
 
96772
- /*!
96773
- * Copyright (c) 2022, Salesforce, Inc.,
96774
- * All rights reserved.
96775
- * For full license text, see the LICENSE.txt file
96776
- */
96777
96648
  class AuraGraphQLNormalizedCacheControlCommand extends AuraNormalizedCacheControlCommand {
96778
96649
  constructor(config, documentRootType, services) {
96779
96650
  super(services);
@@ -96954,11 +96825,6 @@
96954
96825
  };
96955
96826
  }
96956
96827
 
96957
- /*!
96958
- * Copyright (c) 2022, Salesforce, Inc.,
96959
- * All rights reserved.
96960
- * For full license text, see the LICENSE.txt file
96961
- */
96962
96828
  class HttpGraphQLNormalizedCacheControlCommand extends HttpNormalizedCacheControlCommand {
96963
96829
  constructor(config, documentRootType, services) {
96964
96830
  super(services);
@@ -97072,11 +96938,6 @@
97072
96938
  };
97073
96939
  }
97074
96940
 
97075
- /*!
97076
- * Copyright (c) 2022, Salesforce, Inc.,
97077
- * All rights reserved.
97078
- * For full license text, see the LICENSE.txt file
97079
- */
97080
96941
  class JsonSchemaViolationError extends Error {
97081
96942
  constructor(message, validationErrors) {
97082
96943
  super(message);
@@ -97506,11 +97367,6 @@
97506
97367
  return current;
97507
97368
  }
97508
97369
 
97509
- /*!
97510
- * Copyright (c) 2022, Salesforce, Inc.,
97511
- * All rights reserved.
97512
- * For full license text, see the LICENSE.txt file
97513
- */
97514
97370
  function isUserVisibleError$2(error) {
97515
97371
  return error instanceof Error && "type" in error && error.type === "user-visible";
97516
97372
  }
@@ -97535,11 +97391,6 @@
97535
97391
  console.error("OneStore Command threw an error that we did not expect", error);
97536
97392
  }
97537
97393
 
97538
- /*!
97539
- * Copyright (c) 2022, Salesforce, Inc.,
97540
- * All rights reserved.
97541
- * For full license text, see the LICENSE.txt file
97542
- */
97543
97394
  function buildBaseImperativeInvoker(getCommand, transformResult) {
97544
97395
  return async (...params) => {
97545
97396
  const command = getCommand({ params, assertIsValid });
@@ -97644,7 +97495,7 @@
97644
97495
  const api = {
97645
97496
  data: result.value.data,
97646
97497
  subscribe: (cb) => {
97647
- result.value.subscribe((result2) => {
97498
+ return result.value.subscribe((result2) => {
97648
97499
  if (result2.isErr()) {
97649
97500
  return cb({ data: void 0, error: toError(result2.error) });
97650
97501
  }
@@ -97747,10 +97598,10 @@
97747
97598
  acceptedOperations: ["query"]
97748
97599
  };
97749
97600
  const result = resolveAndValidateGraphQLConfig(params[0], options);
97750
- if (result == null ? void 0 : result.isErr()) {
97601
+ if (result?.isErr()) {
97751
97602
  return result.error;
97752
97603
  }
97753
- if (result == null ? void 0 : result.isOk()) {
97604
+ if (result?.isOk()) {
97754
97605
  params[0] = result.value;
97755
97606
  }
97756
97607
  }
@@ -97769,7 +97620,7 @@
97769
97620
  deepFreeze(result.value);
97770
97621
  consumerEmittedData.data = result.value.data.data;
97771
97622
  consumerEmittedData.subscribe = (cb) => {
97772
- result.value.subscribe((res) => {
97623
+ return result.value.subscribe((res) => {
97773
97624
  const consumerEmittedData2 = {
97774
97625
  data: void 0,
97775
97626
  errors: void 0
@@ -97842,11 +97693,11 @@
97842
97693
  acceptedOperations: ["query"]
97843
97694
  };
97844
97695
  const result = resolveAndValidateGraphQLConfig(config, options);
97845
- if (result == null ? void 0 : result.isErr()) {
97696
+ if (result?.isErr()) {
97846
97697
  callback(result.error);
97847
97698
  return;
97848
97699
  }
97849
- if (result == null ? void 0 : result.isOk()) {
97700
+ if (result?.isOk()) {
97850
97701
  config = result.value;
97851
97702
  }
97852
97703
  }
@@ -97877,12 +97728,12 @@
97877
97728
  acceptedOperations: ["query"]
97878
97729
  };
97879
97730
  const result = resolveAndValidateGraphQLConfig(config, options);
97880
- if (result == null ? void 0 : result.isErr()) {
97731
+ if (result?.isErr()) {
97881
97732
  callback(result.error);
97882
97733
  return () => {
97883
97734
  };
97884
97735
  }
97885
- if (result == null ? void 0 : result.isOk()) {
97736
+ if (result?.isOk()) {
97886
97737
  config = result.value;
97887
97738
  }
97888
97739
  }
@@ -97944,13 +97795,13 @@
97944
97795
  acceptedOperations: ["mutation"]
97945
97796
  };
97946
97797
  const result2 = resolveAndValidateGraphQLConfig(params[0], options);
97947
- if (result2 == null ? void 0 : result2.isErr()) {
97798
+ if (result2?.isErr()) {
97948
97799
  return {
97949
97800
  data: void 0,
97950
97801
  errors: result2.error.errors
97951
97802
  };
97952
97803
  }
97953
- if (result2 == null ? void 0 : result2.isOk()) {
97804
+ if (result2?.isOk()) {
97954
97805
  params[0] = result2.value;
97955
97806
  }
97956
97807
  }
@@ -97976,11 +97827,6 @@
97976
97827
  };
97977
97828
  }
97978
97829
 
97979
- /*!
97980
- * Copyright (c) 2022, Salesforce, Inc.,
97981
- * All rights reserved.
97982
- * For full license text, see the LICENSE.txt file
97983
- */
97984
97830
  class Sanitizer {
97985
97831
  constructor(obj) {
97986
97832
  this.obj = obj;
@@ -98040,7 +97886,7 @@
98040
97886
  this.callback = callback;
98041
97887
  this.connected = false;
98042
97888
  this.exposeRefresh = false;
98043
- if (!(options == null ? void 0 : options.skipEmptyEmit)) {
97889
+ if (!options?.skipEmptyEmit) {
98044
97890
  this.emit();
98045
97891
  }
98046
97892
  }
@@ -98337,11 +98183,6 @@
98337
98183
  };
98338
98184
  }
98339
98185
 
98340
- /*!
98341
- * Copyright (c) 2022, Salesforce, Inc.,
98342
- * All rights reserved.
98343
- * For full license text, see the LICENSE.txt file
98344
- */
98345
98186
  function buildServiceDescriptor$1(interceptors = {
98346
98187
  request: [],
98347
98188
  retry: void 0,
@@ -98352,8 +98193,7 @@
98352
98193
  type: "fetch",
98353
98194
  version: "1.0",
98354
98195
  service: function(...args) {
98355
- var _a;
98356
- const context = (_a = interceptors.createContext) == null ? void 0 : _a.call(interceptors);
98196
+ const context = interceptors.createContext?.();
98357
98197
  const {
98358
98198
  request: requestInterceptors = [],
98359
98199
  retry: retryInterceptor = void 0,
@@ -98547,11 +98387,6 @@
98547
98387
  return queryParams;
98548
98388
  }
98549
98389
 
98550
- /*!
98551
- * Copyright (c) 2022, Salesforce, Inc.,
98552
- * All rights reserved.
98553
- * For full license text, see the LICENSE.txt file
98554
- */
98555
98390
  class CacheInclusionPolicyService {
98556
98391
  }
98557
98392
  function setDifference(setA, setB) {
@@ -98603,18 +98438,8 @@
98603
98438
  };
98604
98439
  }
98605
98440
  function isPromiseLike$3(x) {
98606
- return typeof (x == null ? void 0 : x.then) === "function";
98441
+ return typeof x?.then === "function";
98607
98442
  }
98608
- /*!
98609
- * Copyright (c) 2022, Salesforce, Inc.,
98610
- * All rights reserved.
98611
- * For full license text, see the LICENSE.txt file
98612
- */
98613
- /*!
98614
- * Copyright (c) 2022, Salesforce, Inc.,
98615
- * All rights reserved.
98616
- * For full license text, see the LICENSE.txt file
98617
- */
98618
98443
  const { stringify: stringify$8, parse: parse$8 } = JSON;
98619
98444
  function deepCopy(x) {
98620
98445
  const stringified = stringify$8(x);
@@ -98638,7 +98463,7 @@
98638
98463
  if (value === void 0) {
98639
98464
  this.missingKeysRead.add(key);
98640
98465
  }
98641
- if (options == null ? void 0 : options.copy) {
98466
+ if (options?.copy) {
98642
98467
  return deepCopy(value);
98643
98468
  }
98644
98469
  return value;
@@ -98682,7 +98507,7 @@
98682
98507
  get(key, options) {
98683
98508
  const result = this.baseCache.get(key);
98684
98509
  if (result && this.predicate(key, result)) {
98685
- if (options == null ? void 0 : options.copy) {
98510
+ if (options?.copy) {
98686
98511
  return deepCopy(result);
98687
98512
  }
98688
98513
  return result;
@@ -98778,7 +98603,7 @@
98778
98603
  this.data = {};
98779
98604
  }
98780
98605
  get(key, options) {
98781
- if (options == null ? void 0 : options.copy) {
98606
+ if (options?.copy) {
98782
98607
  return deepCopy(this.data[key]);
98783
98608
  }
98784
98609
  return this.data[key];
@@ -99400,17 +99225,12 @@
99400
99225
  id: '@salesforce/lds-network-adapter',
99401
99226
  instrument: instrument$2,
99402
99227
  });
99403
- // version: 1.436.0-581b8a5964
99228
+ // version: 1.438.0-0ec0a89235
99404
99229
 
99405
99230
  const { create: create$2, keys: keys$2 } = Object;
99406
99231
  const { stringify, parse } = JSON;
99407
99232
  const { isArray: isArray$3 } = Array;
99408
99233
 
99409
- /*!
99410
- * Copyright (c) 2022, Salesforce, Inc.,
99411
- * All rights reserved.
99412
- * For full license text, see the LICENSE.txt file
99413
- */
99414
99234
  function extractValue(valueNode, variableDefinitions, expectedType) {
99415
99235
  if (valueNode.kind === Kind$1.VARIABLE) {
99416
99236
  const variableResult = extractVariableValue(valueNode.name.value, variableDefinitions);
@@ -99531,10 +99351,7 @@
99531
99351
  return ok$3(operations[0]);
99532
99352
  }
99533
99353
  if (input.operationName) {
99534
- const specifiedOperation = operations.find((op) => {
99535
- var _a;
99536
- return ((_a = op.name) == null ? void 0 : _a.value) === input.operationName;
99537
- });
99354
+ const specifiedOperation = operations.find((op) => op.name?.value === input.operationName);
99538
99355
  if (specifiedOperation) {
99539
99356
  return ok$3(specifiedOperation);
99540
99357
  }
@@ -99550,14 +99367,13 @@
99550
99367
  const operation = operationResult.value;
99551
99368
  const selections = operation.selectionSet.selections;
99552
99369
  const variableDefinitions = operation.variableDefinitions;
99553
- const variables = (variableDefinitions == null ? void 0 : variableDefinitions.reduce((prev, def) => {
99554
- var _a;
99370
+ const variables = variableDefinitions?.reduce((prev, def) => {
99555
99371
  prev[def.variable.name.value] = {
99556
99372
  definition: def,
99557
- value: (_a = input.variables) == null ? void 0 : _a[def.variable.name.value]
99373
+ value: input.variables?.[def.variable.name.value]
99558
99374
  };
99559
99375
  return prev;
99560
- }, {})) || {};
99376
+ }, {}) || {};
99561
99377
  const fragments = input.query.definitions.filter(isFragmentDefinition).reduce((prev, fragment) => {
99562
99378
  prev[fragment.name.value] = fragment;
99563
99379
  return prev;
@@ -99569,11 +99385,10 @@
99569
99385
  });
99570
99386
  }
99571
99387
  function buildAugmentedFieldSelection(newSelection, selections, fragments) {
99572
- var _a;
99573
99388
  if (selectionExists(newSelection, selections)) {
99574
99389
  return void 0;
99575
99390
  }
99576
- const baseAlias = ((_a = newSelection.alias) == null ? void 0 : _a.value) || newSelection.name.value;
99391
+ const baseAlias = newSelection.alias?.value || newSelection.name.value;
99577
99392
  const baseInjectedAlias = `framework_augmented_${baseAlias}`;
99578
99393
  const baseAliasedSelection = {
99579
99394
  ...newSelection,
@@ -99598,20 +99413,19 @@
99598
99413
  return selections.some((s) => selectionEquals(selection, s));
99599
99414
  }
99600
99415
  function selectionEquals(a, b) {
99601
- var _a, _b, _c, _d, _e, _f;
99602
99416
  if (a.kind !== b.kind) {
99603
99417
  return false;
99604
99418
  }
99605
99419
  if (a.kind === Kind$1.FIELD) {
99606
99420
  const bField = b;
99607
- 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);
99608
99422
  }
99609
99423
  if (a.kind === Kind$1.FRAGMENT_SPREAD) {
99610
99424
  const bFragmentSpread = b;
99611
99425
  return a.name.value === bFragmentSpread.name.value && directivesEqual(a.directives, bFragmentSpread.directives);
99612
99426
  }
99613
99427
  const bInlineFragment = b;
99614
- 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);
99615
99429
  }
99616
99430
  function argumentValueEquals(a, b) {
99617
99431
  if (a.kind !== b.kind) {
@@ -99654,7 +99468,7 @@
99654
99468
  return true;
99655
99469
  }
99656
99470
  if (a === void 0 || b === void 0) {
99657
- return ((a == null ? void 0 : a.length) || 0) === ((b == null ? void 0 : b.length) || 0);
99471
+ return (a?.length || 0) === (b?.length || 0);
99658
99472
  }
99659
99473
  if (a.length !== b.length) {
99660
99474
  return false;
@@ -99669,7 +99483,7 @@
99669
99483
  return true;
99670
99484
  }
99671
99485
  if (a === void 0 || b === void 0) {
99672
- return ((a == null ? void 0 : a.length) || 0) === ((b == null ? void 0 : b.length) || 0);
99486
+ return (a?.length || 0) === (b?.length || 0);
99673
99487
  }
99674
99488
  if (a.length !== b.length) {
99675
99489
  return false;
@@ -99696,11 +99510,10 @@
99696
99510
  return `${fieldName}_${i}`;
99697
99511
  }
99698
99512
  function collectFieldNames(selections, fragments) {
99699
- var _a;
99700
99513
  const fieldNames = /* @__PURE__ */ new Set();
99701
99514
  for (const selection of selections) {
99702
99515
  if (isField(selection)) {
99703
- fieldNames.add(((_a = selection.alias) == null ? void 0 : _a.value) || selection.name.value);
99516
+ fieldNames.add(selection.alias?.value || selection.name.value);
99704
99517
  } else if (isInlineFragment(selection)) {
99705
99518
  collectFieldNames(
99706
99519
  selection.selectionSet.selections,
@@ -99756,8 +99569,7 @@
99756
99569
  return node.kind === Kind$1.FRAGMENT_DEFINITION;
99757
99570
  }
99758
99571
  function extractIfArgument(directive, variables, directiveName) {
99759
- var _a;
99760
- 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");
99761
99573
  if (!ifArg) {
99762
99574
  return err$3(new Error(`@${directiveName} directive requires an 'if' argument`));
99763
99575
  }
@@ -99870,8 +99682,7 @@
99870
99682
  const arrayNormalizationErrors = [];
99871
99683
  const normalizedArray = [];
99872
99684
  input.data.forEach((item, index) => {
99873
- var _a;
99874
- const existingItemData = (_a = input.existingNormalizedData) == null ? void 0 : _a[index];
99685
+ const existingItemData = input.existingNormalizedData?.[index];
99875
99686
  const normalizedItemResult = this.items.write(cache, {
99876
99687
  ...input,
99877
99688
  data: item,
@@ -99951,7 +99762,6 @@
99951
99762
  return this.repository.buildFieldKey(selection, variables);
99952
99763
  }
99953
99764
  write(cache, input) {
99954
- var _a;
99955
99765
  if (!input.selection.selectionSet) {
99956
99766
  return err$3([
99957
99767
  {
@@ -99981,7 +99791,7 @@
99981
99791
  const writeResult = this.repository.write(cache, {
99982
99792
  ...input,
99983
99793
  data: input.data,
99984
- existingNormalizedData: (_a = input.existingNormalizedData) == null ? void 0 : _a.data,
99794
+ existingNormalizedData: input.existingNormalizedData?.data,
99985
99795
  request: input.request,
99986
99796
  selections: input.selection.selectionSet.selections,
99987
99797
  parentFieldSelection: input.selection
@@ -99992,7 +99802,6 @@
99992
99802
  return ok$3({ type: "data", data: writeResult.value });
99993
99803
  }
99994
99804
  read(cache, input) {
99995
- var _a;
99996
99805
  if (!input.selection.selectionSet) {
99997
99806
  return err$3([
99998
99807
  {
@@ -100024,7 +99833,7 @@
100024
99833
  ...input,
100025
99834
  normalizedData: normalizedData.data,
100026
99835
  request: input.request,
100027
- selections: (_a = input.selection.selectionSet) == null ? void 0 : _a.selections,
99836
+ selections: input.selection.selectionSet?.selections,
100028
99837
  parentFieldSelection: input.selection
100029
99838
  });
100030
99839
  }
@@ -100075,13 +99884,12 @@
100075
99884
  return { selections: augmentedSelections, fragments: augmentedFragments };
100076
99885
  }
100077
99886
  augmentFieldSelection(selection, fragments) {
100078
- var _a;
100079
99887
  const field = this.getFieldDef(void 0, selection);
100080
99888
  if (field === void 0) {
100081
99889
  return { selections: [selection], fragments };
100082
99890
  }
100083
99891
  const result = field.augmentSelections({
100084
- selections: ((_a = selection.selectionSet) == null ? void 0 : _a.selections) || [],
99892
+ selections: selection.selectionSet?.selections || [],
100085
99893
  fragments
100086
99894
  });
100087
99895
  return {
@@ -100098,7 +99906,6 @@
100098
99906
  };
100099
99907
  }
100100
99908
  augmentInlineFragmentSelection(fragment, fragments) {
100101
- var _a;
100102
99909
  const satisfiedFragmentTypeConditionResult = this.satisfiesFragmentTypeCondition(
100103
99910
  void 0,
100104
99911
  fragment
@@ -100107,7 +99914,7 @@
100107
99914
  return { selections: [], fragments };
100108
99915
  }
100109
99916
  const augmentedFragmentSelections = this.augmentSelections({
100110
- selections: ((_a = fragment.selectionSet) == null ? void 0 : _a.selections) || [],
99917
+ selections: fragment.selectionSet?.selections || [],
100111
99918
  fragments
100112
99919
  });
100113
99920
  return {
@@ -100124,7 +99931,6 @@
100124
99931
  };
100125
99932
  }
100126
99933
  augmentFragmentSpreadSelection(selection, fragments) {
100127
- var _a;
100128
99934
  const fragment = fragments[selection.name.value];
100129
99935
  if (fragment === void 0) {
100130
99936
  return { selections: [selection], fragments };
@@ -100137,7 +99943,7 @@
100137
99943
  return { selections: [selection], fragments };
100138
99944
  }
100139
99945
  const augmentedFragment = this.augmentSelections({
100140
- selections: ((_a = fragment.selectionSet) == null ? void 0 : _a.selections) || [],
99946
+ selections: fragment.selectionSet?.selections || [],
100141
99947
  fragments
100142
99948
  });
100143
99949
  return {
@@ -100186,9 +99992,8 @@
100186
99992
  return buildReadWriteResult(normalized, errors);
100187
99993
  }
100188
99994
  normalizeFieldSelection(cache, input, selection, errorCollector) {
100189
- var _a;
100190
99995
  const canonicalFieldName = selection.name.value;
100191
- const dataInstanceFieldName = ((_a = selection.alias) == null ? void 0 : _a.value) ?? selection.name.value;
99996
+ const dataInstanceFieldName = selection.alias?.value ?? selection.name.value;
100192
99997
  const value = input.data[dataInstanceFieldName];
100193
99998
  const fieldDef = this.getFieldDef(input, selection);
100194
99999
  if (!fieldDef) {
@@ -100298,7 +100103,6 @@
100298
100103
  return buildReadWriteResult(denormalized, errors);
100299
100104
  }
100300
100105
  getNormalizedFieldData(selection, input) {
100301
- var _a;
100302
100106
  const fieldDef = this.getFieldDef(input, selection);
100303
100107
  if (!fieldDef) {
100304
100108
  return err$3(
@@ -100315,10 +100119,9 @@
100315
100119
  return err$3(cacheFieldKeyResult.error);
100316
100120
  }
100317
100121
  const cacheFieldKey = cacheFieldKeyResult.value;
100318
- return ok$3((_a = input.existingNormalizedData || input.normalizedData) == null ? void 0 : _a[cacheFieldKey]);
100122
+ return ok$3((input.existingNormalizedData || input.normalizedData)?.[cacheFieldKey]);
100319
100123
  }
100320
100124
  denormalizeFieldSelection(cache, input, selection, errorCollector) {
100321
- var _a;
100322
100125
  const canonicalFieldName = selection.name.value;
100323
100126
  const fieldDef = this.getFieldDef(input, selection);
100324
100127
  if (!fieldDef) {
@@ -100330,7 +100133,7 @@
100330
100133
  });
100331
100134
  return {};
100332
100135
  }
100333
- const dataInstanceFieldName = ((_a = selection.alias) == null ? void 0 : _a.value) ?? selection.name.value;
100136
+ const dataInstanceFieldName = selection.alias?.value ?? selection.name.value;
100334
100137
  const normalizedFieldDataResult = this.getNormalizedFieldData(selection, input);
100335
100138
  if (normalizedFieldDataResult.isErr()) {
100336
100139
  errorCollector.push({
@@ -100398,19 +100201,18 @@
100398
100201
  return {};
100399
100202
  }
100400
100203
  getFieldDef(input, selection) {
100401
- var _a, _b, _c;
100402
100204
  const canonicalFieldName = selection.name.value;
100403
100205
  const fieldDef = this.fields[canonicalFieldName];
100404
100206
  if (fieldDef) {
100405
100207
  return fieldDef;
100406
100208
  }
100407
- const dataInstanceFieldName = ((_a = selection.alias) == null ? void 0 : _a.value) ?? selection.name.value;
100209
+ const dataInstanceFieldName = selection.alias?.value ?? selection.name.value;
100408
100210
  if (input === void 0) {
100409
100211
  return void 0;
100410
100212
  }
100411
100213
  if ("data" in input && input.data[dataInstanceFieldName] === void 0) {
100412
100214
  return missingFieldDef;
100413
- } 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") {
100414
100216
  return missingFieldDef;
100415
100217
  }
100416
100218
  return void 0;
@@ -100498,7 +100300,7 @@
100498
100300
  return err$3(normalized.error);
100499
100301
  }
100500
100302
  const existing = cache.get(key);
100501
- if (!deepEquals$2(existing == null ? void 0 : existing.value, normalized.value)) {
100303
+ if (!deepEquals$2(existing?.value, normalized.value)) {
100502
100304
  cache.set(key, {
100503
100305
  value: normalized.value,
100504
100306
  metadata: this.cacheMetadata
@@ -100514,7 +100316,7 @@
100514
100316
  const existingNormalizedData = cache.get(key, { copy: true });
100515
100317
  const normalizeDataResult = this.graphqlRepository.normalizeSelections(cache, {
100516
100318
  ...input,
100517
- existingNormalizedData: existingNormalizedData == null ? void 0 : existingNormalizedData.value
100319
+ existingNormalizedData: existingNormalizedData?.value
100518
100320
  });
100519
100321
  if (normalizeDataResult.isErr()) {
100520
100322
  return normalizeDataResult;
@@ -100522,7 +100324,7 @@
100522
100324
  return ok$3(
100523
100325
  deepMerge$2(
100524
100326
  {},
100525
- (existingNormalizedData == null ? void 0 : existingNormalizedData.value) || {},
100327
+ existingNormalizedData?.value || {},
100526
100328
  normalizeDataResult.value
100527
100329
  )
100528
100330
  );
@@ -100537,14 +100339,13 @@
100537
100339
  return this.graphqlRepository.buildFieldKey(selection, variables);
100538
100340
  }
100539
100341
  buildKeyParams(input) {
100540
- var _a;
100541
100342
  const idField = input.selections.find(
100542
100343
  (selection) => selection.kind === Kind$1.FIELD && selection.name.value === this.idField
100543
100344
  );
100544
100345
  if (!idField) {
100545
100346
  throw new Error(`Id field ${this.idField} not found in selections`);
100546
100347
  }
100547
- const idFieldDataProperty = ((_a = idField.alias) == null ? void 0 : _a.value) || idField.name.value;
100348
+ const idFieldDataProperty = idField.alias?.value || idField.name.value;
100548
100349
  return {
100549
100350
  [this.idField]: input.data[idFieldDataProperty]
100550
100351
  };
@@ -100594,7 +100395,6 @@
100594
100395
  });
100595
100396
  }
100596
100397
  buildAugmentedQuery(input) {
100597
- var _a;
100598
100398
  const operationResult = findExecutableOperation(input);
100599
100399
  if (operationResult.isErr()) {
100600
100400
  return err$3(operationResult.error);
@@ -100611,7 +100411,7 @@
100611
100411
  {}
100612
100412
  );
100613
100413
  const result = this.augmentSelections({
100614
- selections: ((_a = operationResult.value.selectionSet) == null ? void 0 : _a.selections) || [],
100414
+ selections: operationResult.value.selectionSet?.selections || [],
100615
100415
  fragments
100616
100416
  });
100617
100417
  const augmentedOperationSelections = result.selections;
@@ -100732,12 +100532,11 @@
100732
100532
  const augmentedSelections = [];
100733
100533
  let augmentedFragments = { ...input.fragments };
100734
100534
  input.selections.forEach((selection) => {
100735
- var _a;
100736
100535
  if (selection.kind === Kind$1.FIELD) {
100737
100536
  if (Object.keys(this.fields).includes(selection.name.value)) {
100738
100537
  const field = this.fields[selection.name.value];
100739
100538
  const result2 = field.augmentSelections({
100740
- selections: ((_a = selection.selectionSet) == null ? void 0 : _a.selections) || [],
100539
+ selections: selection.selectionSet?.selections || [],
100741
100540
  fragments: input.fragments
100742
100541
  });
100743
100542
  augmentedSelections.push({
@@ -100770,12 +100569,11 @@
100770
100569
  return { selections: augmentedSelections, fragments: augmentedFragments };
100771
100570
  }
100772
100571
  getTypeDiscriminator(data, selections) {
100773
- var _a;
100774
100572
  const typenameSelection = selections.find(
100775
100573
  (selection) => selection.kind === Kind$1.FIELD && selection.name.value === "__typename"
100776
100574
  );
100777
100575
  if (typenameSelection) {
100778
- return data[((_a = typenameSelection.alias) == null ? void 0 : _a.value) || typenameSelection.name.value];
100576
+ return data[typenameSelection.alias?.value || typenameSelection.name.value];
100779
100577
  } else {
100780
100578
  return data.__typename;
100781
100579
  }
@@ -100917,12 +100715,11 @@
100917
100715
  return { selections: augmentedSelections, fragments: augmentedFragments };
100918
100716
  }
100919
100717
  getTypeDiscriminator(data, selections) {
100920
- var _a;
100921
100718
  const typenameSelection = selections.find(
100922
100719
  (selection) => selection.kind === Kind$1.FIELD && selection.name.value === "__typename"
100923
100720
  );
100924
100721
  if (typenameSelection) {
100925
- return data[((_a = typenameSelection.alias) == null ? void 0 : _a.value) || typenameSelection.name.value];
100722
+ return data[typenameSelection.alias?.value || typenameSelection.name.value];
100926
100723
  } else {
100927
100724
  return data.__typename;
100928
100725
  }
@@ -101417,11 +101214,6 @@
101417
101214
  */
101418
101215
 
101419
101216
 
101420
- /*!
101421
- * Copyright (c) 2022, Salesforce, Inc.,
101422
- * All rights reserved.
101423
- * For full license text, see the LICENSE.txt file
101424
- */
101425
101217
  const { hasOwnProperty: hasOwnProperty$1 } = Object.prototype;
101426
101218
  class Ok {
101427
101219
  constructor(value) {
@@ -101482,7 +101274,7 @@
101482
101274
  };
101483
101275
  }
101484
101276
  function isPromiseLike(x) {
101485
- return typeof (x == null ? void 0 : x.then) === "function";
101277
+ return typeof x?.then === "function";
101486
101278
  }
101487
101279
  class InternalError extends Error {
101488
101280
  constructor(data) {
@@ -101501,11 +101293,10 @@
101501
101293
  class Analytics__AnalyticsBrowseRepository extends UnidentifiableGraphQLTypeRepository {
101502
101294
  constructor(services, typeRegistry) {
101503
101295
  super(services);
101504
- this.services = services;
101505
- this.typeRegistry = typeRegistry;
101506
101296
  this.namespace = "oas";
101507
101297
  this.typeName = "Analytics__AnalyticsBrowse";
101508
101298
  this.implementedInterfaces = [];
101299
+ this.typeRegistry = typeRegistry;
101509
101300
  }
101510
101301
  get fields() {
101511
101302
  return {
@@ -101521,11 +101312,10 @@
101521
101312
  class Analytics__AnalyticsEdgeRepository extends UnidentifiableGraphQLTypeRepository {
101522
101313
  constructor(services, typeRegistry) {
101523
101314
  super(services);
101524
- this.services = services;
101525
- this.typeRegistry = typeRegistry;
101526
101315
  this.namespace = "oas";
101527
101316
  this.typeName = "Analytics__AnalyticsEdge";
101528
101317
  this.implementedInterfaces = [];
101318
+ this.typeRegistry = typeRegistry;
101529
101319
  }
101530
101320
  get fields() {
101531
101321
  return {
@@ -101539,11 +101329,10 @@
101539
101329
  class Analytics__AnalyticsRepository extends UnidentifiableGraphQLTypeRepository {
101540
101330
  constructor(services, typeRegistry) {
101541
101331
  super(services);
101542
- this.services = services;
101543
- this.typeRegistry = typeRegistry;
101544
101332
  this.namespace = "oas";
101545
101333
  this.typeName = "Analytics__Analytics";
101546
101334
  this.implementedInterfaces = [];
101335
+ this.typeRegistry = typeRegistry;
101547
101336
  }
101548
101337
  get fields() {
101549
101338
  return {
@@ -101556,11 +101345,10 @@
101556
101345
  class Analytics__AnalyticsRepresentationInterfaceRepository extends BaseInterfaceRepository {
101557
101346
  constructor(services, typeRegistry) {
101558
101347
  super(services);
101559
- this.services = services;
101560
- this.typeRegistry = typeRegistry;
101561
101348
  this.namespace = "oas";
101562
101349
  this.typeName = "Analytics__AnalyticsRepresentationInterface";
101563
101350
  this.implementedInterfaces = [];
101351
+ this.typeRegistry = typeRegistry;
101564
101352
  }
101565
101353
  get fields() {
101566
101354
  return {
@@ -101596,12 +101384,11 @@
101596
101384
  class Analytics__AnalyticsRepresentationRepository extends IdentifiableGraphQLTypeRepository {
101597
101385
  constructor(services, typeRegistry) {
101598
101386
  super(services);
101599
- this.services = services;
101600
- this.typeRegistry = typeRegistry;
101601
101387
  this.namespace = "oas";
101602
101388
  this.typeName = "Analytics__AnalyticsRepresentation";
101603
101389
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101604
101390
  this.idField = "Id";
101391
+ this.typeRegistry = typeRegistry;
101605
101392
  }
101606
101393
  get fields() {
101607
101394
  return {
@@ -101631,11 +101418,10 @@
101631
101418
  class Analytics__AnalyticsWorkspaceAssetConnectionRepository extends UnidentifiableGraphQLTypeRepository {
101632
101419
  constructor(services, typeRegistry) {
101633
101420
  super(services);
101634
- this.services = services;
101635
- this.typeRegistry = typeRegistry;
101636
101421
  this.namespace = "oas";
101637
101422
  this.typeName = "Analytics__AnalyticsWorkspaceAssetConnection";
101638
101423
  this.implementedInterfaces = [];
101424
+ this.typeRegistry = typeRegistry;
101639
101425
  }
101640
101426
  get fields() {
101641
101427
  return {
@@ -101651,11 +101437,10 @@
101651
101437
  class Analytics__AnalyticsWorkspaceAssetEdgeRepository extends UnidentifiableGraphQLTypeRepository {
101652
101438
  constructor(services, typeRegistry) {
101653
101439
  super(services);
101654
- this.services = services;
101655
- this.typeRegistry = typeRegistry;
101656
101440
  this.namespace = "oas";
101657
101441
  this.typeName = "Analytics__AnalyticsWorkspaceAssetEdge";
101658
101442
  this.implementedInterfaces = [];
101443
+ this.typeRegistry = typeRegistry;
101659
101444
  }
101660
101445
  get fields() {
101661
101446
  return {
@@ -101669,11 +101454,10 @@
101669
101454
  class Analytics__AnalyticsWorkspaceAssetRepository extends UnidentifiableGraphQLTypeRepository {
101670
101455
  constructor(services, typeRegistry) {
101671
101456
  super(services);
101672
- this.services = services;
101673
- this.typeRegistry = typeRegistry;
101674
101457
  this.namespace = "oas";
101675
101458
  this.typeName = "Analytics__AnalyticsWorkspaceAsset";
101676
101459
  this.implementedInterfaces = [];
101460
+ this.typeRegistry = typeRegistry;
101677
101461
  }
101678
101462
  get fields() {
101679
101463
  return {
@@ -101690,12 +101474,11 @@
101690
101474
  class Analytics__AnalyticsWorkspaceRepository extends IdentifiableGraphQLTypeRepository {
101691
101475
  constructor(services, typeRegistry) {
101692
101476
  super(services);
101693
- this.services = services;
101694
- this.typeRegistry = typeRegistry;
101695
101477
  this.namespace = "oas";
101696
101478
  this.typeName = "Analytics__AnalyticsWorkspace";
101697
101479
  this.implementedInterfaces = [];
101698
101480
  this.idField = "Id";
101481
+ this.typeRegistry = typeRegistry;
101699
101482
  }
101700
101483
  get fields() {
101701
101484
  return {
@@ -101719,12 +101502,11 @@
101719
101502
  class Analytics__DataspaceRepresentationRepository extends IdentifiableGraphQLTypeRepository {
101720
101503
  constructor(services, typeRegistry) {
101721
101504
  super(services);
101722
- this.services = services;
101723
- this.typeRegistry = typeRegistry;
101724
101505
  this.namespace = "oas";
101725
101506
  this.typeName = "Analytics__DataspaceRepresentation";
101726
101507
  this.implementedInterfaces = [];
101727
101508
  this.idField = "Id";
101509
+ this.typeRegistry = typeRegistry;
101728
101510
  }
101729
101511
  get fields() {
101730
101512
  return {
@@ -101743,12 +101525,11 @@
101743
101525
  class Analytics__DominoTemplateRepository extends IdentifiableGraphQLTypeRepository {
101744
101526
  constructor(services, typeRegistry) {
101745
101527
  super(services);
101746
- this.services = services;
101747
- this.typeRegistry = typeRegistry;
101748
101528
  this.namespace = "oas";
101749
101529
  this.typeName = "Analytics__DominoTemplate";
101750
101530
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101751
101531
  this.idField = "Id";
101532
+ this.typeRegistry = typeRegistry;
101752
101533
  }
101753
101534
  get fields() {
101754
101535
  return {
@@ -101780,12 +101561,11 @@
101780
101561
  class Analytics__MktDataConnectorRepository extends IdentifiableGraphQLTypeRepository {
101781
101562
  constructor(services, typeRegistry) {
101782
101563
  super(services);
101783
- this.services = services;
101784
- this.typeRegistry = typeRegistry;
101785
101564
  this.namespace = "oas";
101786
101565
  this.typeName = "Analytics__MktDataConnector";
101787
101566
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101788
101567
  this.idField = "Id";
101568
+ this.typeRegistry = typeRegistry;
101789
101569
  }
101790
101570
  get fields() {
101791
101571
  return {
@@ -101816,12 +101596,11 @@
101816
101596
  class Analytics__SemanticDefinitionRepository extends IdentifiableGraphQLTypeRepository {
101817
101597
  constructor(services, typeRegistry) {
101818
101598
  super(services);
101819
- this.services = services;
101820
- this.typeRegistry = typeRegistry;
101821
101599
  this.namespace = "oas";
101822
101600
  this.typeName = "Analytics__SemanticDefinition";
101823
101601
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101824
101602
  this.idField = "Id";
101603
+ this.typeRegistry = typeRegistry;
101825
101604
  }
101826
101605
  get fields() {
101827
101606
  return {
@@ -101854,11 +101633,10 @@
101854
101633
  class Analytics__SemanticModelRelatedModelConnectionRepository extends UnidentifiableGraphQLTypeRepository {
101855
101634
  constructor(services, typeRegistry) {
101856
101635
  super(services);
101857
- this.services = services;
101858
- this.typeRegistry = typeRegistry;
101859
101636
  this.namespace = "oas";
101860
101637
  this.typeName = "Analytics__SemanticModelRelatedModelConnection";
101861
101638
  this.implementedInterfaces = [];
101639
+ this.typeRegistry = typeRegistry;
101862
101640
  }
101863
101641
  get fields() {
101864
101642
  return {
@@ -101874,11 +101652,10 @@
101874
101652
  class Analytics__SemanticModelRelatedModelEdgeRepository extends UnidentifiableGraphQLTypeRepository {
101875
101653
  constructor(services, typeRegistry) {
101876
101654
  super(services);
101877
- this.services = services;
101878
- this.typeRegistry = typeRegistry;
101879
101655
  this.namespace = "oas";
101880
101656
  this.typeName = "Analytics__SemanticModelRelatedModelEdge";
101881
101657
  this.implementedInterfaces = [];
101658
+ this.typeRegistry = typeRegistry;
101882
101659
  }
101883
101660
  get fields() {
101884
101661
  return {
@@ -101892,12 +101669,11 @@
101892
101669
  class Analytics__SemanticModelRelatedModelRepresentationRepository extends IdentifiableGraphQLTypeRepository {
101893
101670
  constructor(services, typeRegistry) {
101894
101671
  super(services);
101895
- this.services = services;
101896
- this.typeRegistry = typeRegistry;
101897
101672
  this.namespace = "oas";
101898
101673
  this.typeName = "Analytics__SemanticModelRelatedModelRepresentation";
101899
101674
  this.implementedInterfaces = [];
101900
101675
  this.idField = "Id";
101676
+ this.typeRegistry = typeRegistry;
101901
101677
  }
101902
101678
  get fields() {
101903
101679
  return {
@@ -101916,12 +101692,11 @@
101916
101692
  class Analytics__SemanticModelRepository extends IdentifiableGraphQLTypeRepository {
101917
101693
  constructor(services, typeRegistry) {
101918
101694
  super(services);
101919
- this.services = services;
101920
- this.typeRegistry = typeRegistry;
101921
101695
  this.namespace = "oas";
101922
101696
  this.typeName = "Analytics__SemanticModel";
101923
101697
  this.implementedInterfaces = ["Analytics__AnalyticsRepresentationInterface"];
101924
101698
  this.idField = "Id";
101699
+ this.typeRegistry = typeRegistry;
101925
101700
  }
101926
101701
  get fields() {
101927
101702
  return {
@@ -101952,11 +101727,10 @@
101952
101727
  class Analytics__SemanticSubMetricDefinitionConnectionRepository extends UnidentifiableGraphQLTypeRepository {
101953
101728
  constructor(services, typeRegistry) {
101954
101729
  super(services);
101955
- this.services = services;
101956
- this.typeRegistry = typeRegistry;
101957
101730
  this.namespace = "oas";
101958
101731
  this.typeName = "Analytics__SemanticSubMetricDefinitionConnection";
101959
101732
  this.implementedInterfaces = [];
101733
+ this.typeRegistry = typeRegistry;
101960
101734
  }
101961
101735
  get fields() {
101962
101736
  return {
@@ -101972,11 +101746,10 @@
101972
101746
  class Analytics__SemanticSubMetricDefinitionEdgeRepository extends UnidentifiableGraphQLTypeRepository {
101973
101747
  constructor(services, typeRegistry) {
101974
101748
  super(services);
101975
- this.services = services;
101976
- this.typeRegistry = typeRegistry;
101977
101749
  this.namespace = "oas";
101978
101750
  this.typeName = "Analytics__SemanticSubMetricDefinitionEdge";
101979
101751
  this.implementedInterfaces = [];
101752
+ this.typeRegistry = typeRegistry;
101980
101753
  }
101981
101754
  get fields() {
101982
101755
  return {
@@ -101990,12 +101763,11 @@
101990
101763
  class Analytics__SemanticSubMetricDefinitionRepresentationRepository extends IdentifiableGraphQLTypeRepository {
101991
101764
  constructor(services, typeRegistry) {
101992
101765
  super(services);
101993
- this.services = services;
101994
- this.typeRegistry = typeRegistry;
101995
101766
  this.namespace = "oas";
101996
101767
  this.typeName = "Analytics__SemanticSubMetricDefinitionRepresentation";
101997
101768
  this.implementedInterfaces = [];
101998
101769
  this.idField = "Id";
101770
+ this.typeRegistry = typeRegistry;
101999
101771
  }
102000
101772
  get fields() {
102001
101773
  return {
@@ -102021,11 +101793,10 @@
102021
101793
  class AnyTypeRepository extends BaseUnionRepository {
102022
101794
  constructor(services, typeRegistry) {
102023
101795
  super(services);
102024
- this.services = services;
102025
- this.typeRegistry = typeRegistry;
102026
101796
  this.namespace = "oas";
102027
101797
  this.typeName = "AnyType";
102028
101798
  this.implementedInterfaces = [];
101799
+ this.typeRegistry = typeRegistry;
102029
101800
  }
102030
101801
  get fields() {
102031
101802
  return {
@@ -102046,11 +101817,10 @@
102046
101817
  class Base64ValueRepository extends UnidentifiableGraphQLTypeRepository {
102047
101818
  constructor(services, typeRegistry) {
102048
101819
  super(services);
102049
- this.services = services;
102050
- this.typeRegistry = typeRegistry;
102051
101820
  this.namespace = "oas";
102052
101821
  this.typeName = "Base64Value";
102053
101822
  this.implementedInterfaces = ["FieldValue"];
101823
+ this.typeRegistry = typeRegistry;
102054
101824
  }
102055
101825
  get fields() {
102056
101826
  return {
@@ -102064,11 +101834,10 @@
102064
101834
  class BooleanAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102065
101835
  constructor(services, typeRegistry) {
102066
101836
  super(services);
102067
- this.services = services;
102068
- this.typeRegistry = typeRegistry;
102069
101837
  this.namespace = "oas";
102070
101838
  this.typeName = "BooleanAggregate";
102071
101839
  this.implementedInterfaces = ["FieldValue"];
101840
+ this.typeRegistry = typeRegistry;
102072
101841
  }
102073
101842
  get fields() {
102074
101843
  return {
@@ -102083,11 +101852,10 @@
102083
101852
  class BooleanValueRepository extends UnidentifiableGraphQLTypeRepository {
102084
101853
  constructor(services, typeRegistry) {
102085
101854
  super(services);
102086
- this.services = services;
102087
- this.typeRegistry = typeRegistry;
102088
101855
  this.namespace = "oas";
102089
101856
  this.typeName = "BooleanValue";
102090
101857
  this.implementedInterfaces = ["FieldValue"];
101858
+ this.typeRegistry = typeRegistry;
102091
101859
  }
102092
101860
  get fields() {
102093
101861
  return {
@@ -102101,11 +101869,10 @@
102101
101869
  class CanvasLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
102102
101870
  constructor(services, typeRegistry) {
102103
101871
  super(services);
102104
- this.services = services;
102105
- this.typeRegistry = typeRegistry;
102106
101872
  this.namespace = "oas";
102107
101873
  this.typeName = "CanvasLayoutComponent";
102108
101874
  this.implementedInterfaces = ["LayoutComponent"];
101875
+ this.typeRegistry = typeRegistry;
102109
101876
  }
102110
101877
  get fields() {
102111
101878
  return {
@@ -102124,11 +101891,10 @@
102124
101891
  class ChildRelationshipRepository extends UnidentifiableGraphQLTypeRepository {
102125
101892
  constructor(services, typeRegistry) {
102126
101893
  super(services);
102127
- this.services = services;
102128
- this.typeRegistry = typeRegistry;
102129
101894
  this.namespace = "oas";
102130
101895
  this.typeName = "ChildRelationship";
102131
101896
  this.implementedInterfaces = [];
101897
+ this.typeRegistry = typeRegistry;
102132
101898
  }
102133
101899
  get fields() {
102134
101900
  return {
@@ -102146,11 +101912,10 @@
102146
101912
  let CompoundFieldRepository$1 = class CompoundFieldRepository extends UnidentifiableGraphQLTypeRepository {
102147
101913
  constructor(services, typeRegistry) {
102148
101914
  super(services);
102149
- this.services = services;
102150
- this.typeRegistry = typeRegistry;
102151
101915
  this.namespace = "oas";
102152
101916
  this.typeName = "CompoundField";
102153
101917
  this.implementedInterfaces = [];
101918
+ this.typeRegistry = typeRegistry;
102154
101919
  }
102155
101920
  get fields() {
102156
101921
  return {
@@ -102186,11 +101951,10 @@
102186
101951
  class ControllerValuesRepository extends UnidentifiableGraphQLTypeRepository {
102187
101952
  constructor(services, typeRegistry) {
102188
101953
  super(services);
102189
- this.services = services;
102190
- this.typeRegistry = typeRegistry;
102191
101954
  this.namespace = "oas";
102192
101955
  this.typeName = "ControllerValues";
102193
101956
  this.implementedInterfaces = [];
101957
+ this.typeRegistry = typeRegistry;
102194
101958
  }
102195
101959
  get fields() {
102196
101960
  return {
@@ -102204,11 +101968,10 @@
102204
101968
  class CurrencyAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102205
101969
  constructor(services, typeRegistry) {
102206
101970
  super(services);
102207
- this.services = services;
102208
- this.typeRegistry = typeRegistry;
102209
101971
  this.namespace = "oas";
102210
101972
  this.typeName = "CurrencyAggregate";
102211
101973
  this.implementedInterfaces = ["FieldValue"];
101974
+ this.typeRegistry = typeRegistry;
102212
101975
  }
102213
101976
  get fields() {
102214
101977
  return {
@@ -102229,11 +101992,10 @@
102229
101992
  class CurrencyValueRepository extends UnidentifiableGraphQLTypeRepository {
102230
101993
  constructor(services, typeRegistry) {
102231
101994
  super(services);
102232
- this.services = services;
102233
- this.typeRegistry = typeRegistry;
102234
101995
  this.namespace = "oas";
102235
101996
  this.typeName = "CurrencyValue";
102236
101997
  this.implementedInterfaces = ["FieldValue"];
101998
+ this.typeRegistry = typeRegistry;
102237
101999
  }
102238
102000
  get fields() {
102239
102001
  return {
@@ -102249,11 +102011,10 @@
102249
102011
  class CustomLinkLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
102250
102012
  constructor(services, typeRegistry) {
102251
102013
  super(services);
102252
- this.services = services;
102253
- this.typeRegistry = typeRegistry;
102254
102014
  this.namespace = "oas";
102255
102015
  this.typeName = "CustomLinkLayoutComponent";
102256
102016
  this.implementedInterfaces = ["LayoutComponent"];
102017
+ this.typeRegistry = typeRegistry;
102257
102018
  }
102258
102019
  get fields() {
102259
102020
  return {
@@ -102270,11 +102031,10 @@
102270
102031
  class DateAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102271
102032
  constructor(services, typeRegistry) {
102272
102033
  super(services);
102273
- this.services = services;
102274
- this.typeRegistry = typeRegistry;
102275
102034
  this.namespace = "oas";
102276
102035
  this.typeName = "DateAggregate";
102277
102036
  this.implementedInterfaces = ["FieldValue"];
102037
+ this.typeRegistry = typeRegistry;
102278
102038
  }
102279
102039
  get fields() {
102280
102040
  return {
@@ -102305,11 +102065,10 @@
102305
102065
  class DateFunctionAggregationRepository extends UnidentifiableGraphQLTypeRepository {
102306
102066
  constructor(services, typeRegistry) {
102307
102067
  super(services);
102308
- this.services = services;
102309
- this.typeRegistry = typeRegistry;
102310
102068
  this.namespace = "oas";
102311
102069
  this.typeName = "DateFunctionAggregation";
102312
102070
  this.implementedInterfaces = [];
102071
+ this.typeRegistry = typeRegistry;
102313
102072
  }
102314
102073
  get fields() {
102315
102074
  return {
@@ -102323,11 +102082,10 @@
102323
102082
  class DateTimeValueRepository extends UnidentifiableGraphQLTypeRepository {
102324
102083
  constructor(services, typeRegistry) {
102325
102084
  super(services);
102326
- this.services = services;
102327
- this.typeRegistry = typeRegistry;
102328
102085
  this.namespace = "oas";
102329
102086
  this.typeName = "DateTimeValue";
102330
102087
  this.implementedInterfaces = ["FieldValue"];
102088
+ this.typeRegistry = typeRegistry;
102331
102089
  }
102332
102090
  get fields() {
102333
102091
  return {
@@ -102342,11 +102100,10 @@
102342
102100
  class DateValueRepository extends UnidentifiableGraphQLTypeRepository {
102343
102101
  constructor(services, typeRegistry) {
102344
102102
  super(services);
102345
- this.services = services;
102346
- this.typeRegistry = typeRegistry;
102347
102103
  this.namespace = "oas";
102348
102104
  this.typeName = "DateValue";
102349
102105
  this.implementedInterfaces = ["FieldValue"];
102106
+ this.typeRegistry = typeRegistry;
102350
102107
  }
102351
102108
  get fields() {
102352
102109
  return {
@@ -102361,11 +102118,10 @@
102361
102118
  class DependentFieldRepository extends UnidentifiableGraphQLTypeRepository {
102362
102119
  constructor(services, typeRegistry) {
102363
102120
  super(services);
102364
- this.services = services;
102365
- this.typeRegistry = typeRegistry;
102366
102121
  this.namespace = "oas";
102367
102122
  this.typeName = "DependentField";
102368
102123
  this.implementedInterfaces = [];
102124
+ this.typeRegistry = typeRegistry;
102369
102125
  }
102370
102126
  get fields() {
102371
102127
  return {
@@ -102379,11 +102135,10 @@
102379
102135
  class DoubleAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102380
102136
  constructor(services, typeRegistry) {
102381
102137
  super(services);
102382
- this.services = services;
102383
- this.typeRegistry = typeRegistry;
102384
102138
  this.namespace = "oas";
102385
102139
  this.typeName = "DoubleAggregate";
102386
102140
  this.implementedInterfaces = ["FieldValue"];
102141
+ this.typeRegistry = typeRegistry;
102387
102142
  }
102388
102143
  get fields() {
102389
102144
  return {
@@ -102404,11 +102159,10 @@
102404
102159
  class DoubleValueRepository extends UnidentifiableGraphQLTypeRepository {
102405
102160
  constructor(services, typeRegistry) {
102406
102161
  super(services);
102407
- this.services = services;
102408
- this.typeRegistry = typeRegistry;
102409
102162
  this.namespace = "oas";
102410
102163
  this.typeName = "DoubleValue";
102411
102164
  this.implementedInterfaces = ["FieldValue"];
102165
+ this.typeRegistry = typeRegistry;
102412
102166
  }
102413
102167
  get fields() {
102414
102168
  return {
@@ -102423,11 +102177,10 @@
102423
102177
  class EmailAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102424
102178
  constructor(services, typeRegistry) {
102425
102179
  super(services);
102426
- this.services = services;
102427
- this.typeRegistry = typeRegistry;
102428
102180
  this.namespace = "oas";
102429
102181
  this.typeName = "EmailAggregate";
102430
102182
  this.implementedInterfaces = ["FieldValue"];
102183
+ this.typeRegistry = typeRegistry;
102431
102184
  }
102432
102185
  get fields() {
102433
102186
  return {
@@ -102446,11 +102199,10 @@
102446
102199
  class EmailValueRepository extends UnidentifiableGraphQLTypeRepository {
102447
102200
  constructor(services, typeRegistry) {
102448
102201
  super(services);
102449
- this.services = services;
102450
- this.typeRegistry = typeRegistry;
102451
102202
  this.namespace = "oas";
102452
102203
  this.typeName = "EmailValue";
102453
102204
  this.implementedInterfaces = ["FieldValue"];
102205
+ this.typeRegistry = typeRegistry;
102454
102206
  }
102455
102207
  get fields() {
102456
102208
  return {
@@ -102464,11 +102216,10 @@
102464
102216
  class EmptySpaceLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
102465
102217
  constructor(services, typeRegistry) {
102466
102218
  super(services);
102467
- this.services = services;
102468
- this.typeRegistry = typeRegistry;
102469
102219
  this.namespace = "oas";
102470
102220
  this.typeName = "EmptySpaceLayoutComponent";
102471
102221
  this.implementedInterfaces = ["LayoutComponent"];
102222
+ this.typeRegistry = typeRegistry;
102472
102223
  }
102473
102224
  get fields() {
102474
102225
  return {
@@ -102482,11 +102233,10 @@
102482
102233
  class EncryptedStringValueRepository extends UnidentifiableGraphQLTypeRepository {
102483
102234
  constructor(services, typeRegistry) {
102484
102235
  super(services);
102485
- this.services = services;
102486
- this.typeRegistry = typeRegistry;
102487
102236
  this.namespace = "oas";
102488
102237
  this.typeName = "EncryptedStringValue";
102489
102238
  this.implementedInterfaces = ["FieldValue"];
102239
+ this.typeRegistry = typeRegistry;
102490
102240
  }
102491
102241
  get fields() {
102492
102242
  return {
@@ -102500,11 +102250,10 @@
102500
102250
  class FieldLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
102501
102251
  constructor(services, typeRegistry) {
102502
102252
  super(services);
102503
- this.services = services;
102504
- this.typeRegistry = typeRegistry;
102505
102253
  this.namespace = "oas";
102506
102254
  this.typeName = "FieldLayoutComponent";
102507
102255
  this.implementedInterfaces = ["LayoutComponent"];
102256
+ this.typeRegistry = typeRegistry;
102508
102257
  }
102509
102258
  get fields() {
102510
102259
  return {
@@ -102519,11 +102268,10 @@
102519
102268
  class FieldRepository extends BaseInterfaceRepository {
102520
102269
  constructor(services, typeRegistry) {
102521
102270
  super(services);
102522
- this.services = services;
102523
- this.typeRegistry = typeRegistry;
102524
102271
  this.namespace = "oas";
102525
102272
  this.typeName = "Field";
102526
102273
  this.implementedInterfaces = [];
102274
+ this.typeRegistry = typeRegistry;
102527
102275
  }
102528
102276
  get fields() {
102529
102277
  return {
@@ -102570,11 +102318,10 @@
102570
102318
  class FilteredLookupInfoRepository extends UnidentifiableGraphQLTypeRepository {
102571
102319
  constructor(services, typeRegistry) {
102572
102320
  super(services);
102573
- this.services = services;
102574
- this.typeRegistry = typeRegistry;
102575
102321
  this.namespace = "oas";
102576
102322
  this.typeName = "FilteredLookupInfo";
102577
102323
  this.implementedInterfaces = [];
102324
+ this.typeRegistry = typeRegistry;
102578
102325
  }
102579
102326
  get fields() {
102580
102327
  return {
@@ -102589,11 +102336,10 @@
102589
102336
  class IDAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102590
102337
  constructor(services, typeRegistry) {
102591
102338
  super(services);
102592
- this.services = services;
102593
- this.typeRegistry = typeRegistry;
102594
102339
  this.namespace = "oas";
102595
102340
  this.typeName = "IDAggregate";
102596
102341
  this.implementedInterfaces = ["FieldValue"];
102342
+ this.typeRegistry = typeRegistry;
102597
102343
  }
102598
102344
  get fields() {
102599
102345
  return {
@@ -102612,11 +102358,10 @@
102612
102358
  class IDValueRepository extends UnidentifiableGraphQLTypeRepository {
102613
102359
  constructor(services, typeRegistry) {
102614
102360
  super(services);
102615
- this.services = services;
102616
- this.typeRegistry = typeRegistry;
102617
102361
  this.namespace = "oas";
102618
102362
  this.typeName = "IDValue";
102619
102363
  this.implementedInterfaces = ["FieldValue"];
102364
+ this.typeRegistry = typeRegistry;
102620
102365
  }
102621
102366
  get fields() {
102622
102367
  return {
@@ -102630,11 +102375,10 @@
102630
102375
  class IntAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102631
102376
  constructor(services, typeRegistry) {
102632
102377
  super(services);
102633
- this.services = services;
102634
- this.typeRegistry = typeRegistry;
102635
102378
  this.namespace = "oas";
102636
102379
  this.typeName = "IntAggregate";
102637
102380
  this.implementedInterfaces = ["FieldValue"];
102381
+ this.typeRegistry = typeRegistry;
102638
102382
  }
102639
102383
  get fields() {
102640
102384
  return {
@@ -102656,11 +102400,10 @@
102656
102400
  class IntValueRepository extends UnidentifiableGraphQLTypeRepository {
102657
102401
  constructor(services, typeRegistry) {
102658
102402
  super(services);
102659
- this.services = services;
102660
- this.typeRegistry = typeRegistry;
102661
102403
  this.namespace = "oas";
102662
102404
  this.typeName = "IntValue";
102663
102405
  this.implementedInterfaces = ["FieldValue"];
102406
+ this.typeRegistry = typeRegistry;
102664
102407
  }
102665
102408
  get fields() {
102666
102409
  return {
@@ -102675,11 +102418,10 @@
102675
102418
  class JSONValueRepository extends UnidentifiableGraphQLTypeRepository {
102676
102419
  constructor(services, typeRegistry) {
102677
102420
  super(services);
102678
- this.services = services;
102679
- this.typeRegistry = typeRegistry;
102680
102421
  this.namespace = "oas";
102681
102422
  this.typeName = "JSONValue";
102682
102423
  this.implementedInterfaces = ["FieldValue"];
102424
+ this.typeRegistry = typeRegistry;
102683
102425
  }
102684
102426
  get fields() {
102685
102427
  return {
@@ -102693,11 +102435,10 @@
102693
102435
  class LatitudeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102694
102436
  constructor(services, typeRegistry) {
102695
102437
  super(services);
102696
- this.services = services;
102697
- this.typeRegistry = typeRegistry;
102698
102438
  this.namespace = "oas";
102699
102439
  this.typeName = "LatitudeAggregate";
102700
102440
  this.implementedInterfaces = ["FieldValue"];
102441
+ this.typeRegistry = typeRegistry;
102701
102442
  }
102702
102443
  get fields() {
102703
102444
  return {
@@ -102717,11 +102458,10 @@
102717
102458
  class LatitudeValueRepository extends UnidentifiableGraphQLTypeRepository {
102718
102459
  constructor(services, typeRegistry) {
102719
102460
  super(services);
102720
- this.services = services;
102721
- this.typeRegistry = typeRegistry;
102722
102461
  this.namespace = "oas";
102723
102462
  this.typeName = "LatitudeValue";
102724
102463
  this.implementedInterfaces = ["FieldValue"];
102464
+ this.typeRegistry = typeRegistry;
102725
102465
  }
102726
102466
  get fields() {
102727
102467
  return {
@@ -102735,11 +102475,10 @@
102735
102475
  class LayoutComponentRepository extends BaseInterfaceRepository {
102736
102476
  constructor(services, typeRegistry) {
102737
102477
  super(services);
102738
- this.services = services;
102739
- this.typeRegistry = typeRegistry;
102740
102478
  this.namespace = "oas";
102741
102479
  this.typeName = "LayoutComponent";
102742
102480
  this.implementedInterfaces = [];
102481
+ this.typeRegistry = typeRegistry;
102743
102482
  }
102744
102483
  get fields() {
102745
102484
  return {
@@ -102763,11 +102502,10 @@
102763
102502
  class LayoutConnectionRepository extends UnidentifiableGraphQLTypeRepository {
102764
102503
  constructor(services, typeRegistry) {
102765
102504
  super(services);
102766
- this.services = services;
102767
- this.typeRegistry = typeRegistry;
102768
102505
  this.namespace = "oas";
102769
102506
  this.typeName = "LayoutConnection";
102770
102507
  this.implementedInterfaces = [];
102508
+ this.typeRegistry = typeRegistry;
102771
102509
  }
102772
102510
  get fields() {
102773
102511
  return {
@@ -102782,11 +102520,10 @@
102782
102520
  class LayoutEdgeRepository extends UnidentifiableGraphQLTypeRepository {
102783
102521
  constructor(services, typeRegistry) {
102784
102522
  super(services);
102785
- this.services = services;
102786
- this.typeRegistry = typeRegistry;
102787
102523
  this.namespace = "oas";
102788
102524
  this.typeName = "LayoutEdge";
102789
102525
  this.implementedInterfaces = [];
102526
+ this.typeRegistry = typeRegistry;
102790
102527
  }
102791
102528
  get fields() {
102792
102529
  return {
@@ -102800,11 +102537,10 @@
102800
102537
  class LayoutItemRepository extends UnidentifiableGraphQLTypeRepository {
102801
102538
  constructor(services, typeRegistry) {
102802
102539
  super(services);
102803
- this.services = services;
102804
- this.typeRegistry = typeRegistry;
102805
102540
  this.namespace = "oas";
102806
102541
  this.typeName = "LayoutItem";
102807
102542
  this.implementedInterfaces = [];
102543
+ this.typeRegistry = typeRegistry;
102808
102544
  }
102809
102545
  get fields() {
102810
102546
  return {
@@ -102824,12 +102560,11 @@
102824
102560
  class LayoutRepository extends IdentifiableGraphQLTypeRepository {
102825
102561
  constructor(services, typeRegistry) {
102826
102562
  super(services);
102827
- this.services = services;
102828
- this.typeRegistry = typeRegistry;
102829
102563
  this.namespace = "oas";
102830
102564
  this.typeName = "Layout";
102831
102565
  this.implementedInterfaces = [];
102832
102566
  this.idField = "id";
102567
+ this.typeRegistry = typeRegistry;
102833
102568
  }
102834
102569
  get fields() {
102835
102570
  return {
@@ -102851,11 +102586,10 @@
102851
102586
  class LayoutRowRepository extends UnidentifiableGraphQLTypeRepository {
102852
102587
  constructor(services, typeRegistry) {
102853
102588
  super(services);
102854
- this.services = services;
102855
- this.typeRegistry = typeRegistry;
102856
102589
  this.namespace = "oas";
102857
102590
  this.typeName = "LayoutRow";
102858
102591
  this.implementedInterfaces = [];
102592
+ this.typeRegistry = typeRegistry;
102859
102593
  }
102860
102594
  get fields() {
102861
102595
  return {
@@ -102868,11 +102602,10 @@
102868
102602
  class LayoutSaveOptionRepository extends UnidentifiableGraphQLTypeRepository {
102869
102603
  constructor(services, typeRegistry) {
102870
102604
  super(services);
102871
- this.services = services;
102872
- this.typeRegistry = typeRegistry;
102873
102605
  this.namespace = "oas";
102874
102606
  this.typeName = "LayoutSaveOption";
102875
102607
  this.implementedInterfaces = [];
102608
+ this.typeRegistry = typeRegistry;
102876
102609
  }
102877
102610
  get fields() {
102878
102611
  return {
@@ -102890,12 +102623,11 @@
102890
102623
  class LayoutSectionRepository extends IdentifiableGraphQLTypeRepository {
102891
102624
  constructor(services, typeRegistry) {
102892
102625
  super(services);
102893
- this.services = services;
102894
- this.typeRegistry = typeRegistry;
102895
102626
  this.namespace = "oas";
102896
102627
  this.typeName = "LayoutSection";
102897
102628
  this.implementedInterfaces = [];
102898
102629
  this.idField = "id";
102630
+ this.typeRegistry = typeRegistry;
102899
102631
  }
102900
102632
  get fields() {
102901
102633
  return {
@@ -102918,11 +102650,10 @@
102918
102650
  class ListColumnRepository extends UnidentifiableGraphQLTypeRepository {
102919
102651
  constructor(services, typeRegistry) {
102920
102652
  super(services);
102921
- this.services = services;
102922
- this.typeRegistry = typeRegistry;
102923
102653
  this.namespace = "oas";
102924
102654
  this.typeName = "ListColumn";
102925
102655
  this.implementedInterfaces = [];
102656
+ this.typeRegistry = typeRegistry;
102926
102657
  }
102927
102658
  get fields() {
102928
102659
  return {
@@ -102938,11 +102669,10 @@
102938
102669
  class ListOrderRepository extends UnidentifiableGraphQLTypeRepository {
102939
102670
  constructor(services, typeRegistry) {
102940
102671
  super(services);
102941
- this.services = services;
102942
- this.typeRegistry = typeRegistry;
102943
102672
  this.namespace = "oas";
102944
102673
  this.typeName = "ListOrder";
102945
102674
  this.implementedInterfaces = [];
102675
+ this.typeRegistry = typeRegistry;
102946
102676
  }
102947
102677
  get fields() {
102948
102678
  return {
@@ -102956,11 +102686,10 @@
102956
102686
  class LongAggregateRepository extends UnidentifiableGraphQLTypeRepository {
102957
102687
  constructor(services, typeRegistry) {
102958
102688
  super(services);
102959
- this.services = services;
102960
- this.typeRegistry = typeRegistry;
102961
102689
  this.namespace = "oas";
102962
102690
  this.typeName = "LongAggregate";
102963
102691
  this.implementedInterfaces = ["FieldValue"];
102692
+ this.typeRegistry = typeRegistry;
102964
102693
  }
102965
102694
  get fields() {
102966
102695
  return {
@@ -102982,11 +102711,10 @@
102982
102711
  class LongTextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
102983
102712
  constructor(services, typeRegistry) {
102984
102713
  super(services);
102985
- this.services = services;
102986
- this.typeRegistry = typeRegistry;
102987
102714
  this.namespace = "oas";
102988
102715
  this.typeName = "LongTextAreaValue";
102989
102716
  this.implementedInterfaces = ["FieldValue"];
102717
+ this.typeRegistry = typeRegistry;
102990
102718
  }
102991
102719
  get fields() {
102992
102720
  return {
@@ -103001,11 +102729,10 @@
103001
102729
  class LongValueRepository extends UnidentifiableGraphQLTypeRepository {
103002
102730
  constructor(services, typeRegistry) {
103003
102731
  super(services);
103004
- this.services = services;
103005
- this.typeRegistry = typeRegistry;
103006
102732
  this.namespace = "oas";
103007
102733
  this.typeName = "LongValue";
103008
102734
  this.implementedInterfaces = ["FieldValue"];
102735
+ this.typeRegistry = typeRegistry;
103009
102736
  }
103010
102737
  get fields() {
103011
102738
  return {
@@ -103020,11 +102747,10 @@
103020
102747
  class LongitudeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103021
102748
  constructor(services, typeRegistry) {
103022
102749
  super(services);
103023
- this.services = services;
103024
- this.typeRegistry = typeRegistry;
103025
102750
  this.namespace = "oas";
103026
102751
  this.typeName = "LongitudeAggregate";
103027
102752
  this.implementedInterfaces = ["FieldValue"];
102753
+ this.typeRegistry = typeRegistry;
103028
102754
  }
103029
102755
  get fields() {
103030
102756
  return {
@@ -103044,11 +102770,10 @@
103044
102770
  class LongitudeValueRepository extends UnidentifiableGraphQLTypeRepository {
103045
102771
  constructor(services, typeRegistry) {
103046
102772
  super(services);
103047
- this.services = services;
103048
- this.typeRegistry = typeRegistry;
103049
102773
  this.namespace = "oas";
103050
102774
  this.typeName = "LongitudeValue";
103051
102775
  this.implementedInterfaces = ["FieldValue"];
102776
+ this.typeRegistry = typeRegistry;
103052
102777
  }
103053
102778
  get fields() {
103054
102779
  return {
@@ -103062,11 +102787,10 @@
103062
102787
  class MultiPicklistValueRepository extends UnidentifiableGraphQLTypeRepository {
103063
102788
  constructor(services, typeRegistry) {
103064
102789
  super(services);
103065
- this.services = services;
103066
- this.typeRegistry = typeRegistry;
103067
102790
  this.namespace = "oas";
103068
102791
  this.typeName = "MultiPicklistValue";
103069
102792
  this.implementedInterfaces = ["FieldValue"];
102793
+ this.typeRegistry = typeRegistry;
103070
102794
  }
103071
102795
  get fields() {
103072
102796
  return {
@@ -103081,11 +102805,10 @@
103081
102805
  class MutationRepository extends GraphQLDocumentRootTypeRepository {
103082
102806
  constructor(services, typeRegistry) {
103083
102807
  super(services);
103084
- this.services = services;
103085
- this.typeRegistry = typeRegistry;
103086
102808
  this.namespace = "oas";
103087
102809
  this.typeName = "Mutation";
103088
102810
  this.implementedInterfaces = [];
102811
+ this.typeRegistry = typeRegistry;
103089
102812
  }
103090
102813
  get fields() {
103091
102814
  return {
@@ -103101,11 +102824,10 @@
103101
102824
  class ObjectInfoRepository extends UnidentifiableGraphQLTypeRepository {
103102
102825
  constructor(services, typeRegistry) {
103103
102826
  super(services);
103104
- this.services = services;
103105
- this.typeRegistry = typeRegistry;
103106
102827
  this.namespace = "oas";
103107
102828
  this.typeName = "ObjectInfo";
103108
102829
  this.implementedInterfaces = [];
102830
+ this.typeRegistry = typeRegistry;
103109
102831
  }
103110
102832
  get fields() {
103111
102833
  return {
@@ -103138,11 +102860,10 @@
103138
102860
  class PageInfoRepository extends UnidentifiableGraphQLTypeRepository {
103139
102861
  constructor(services, typeRegistry) {
103140
102862
  super(services);
103141
- this.services = services;
103142
- this.typeRegistry = typeRegistry;
103143
102863
  this.namespace = "oas";
103144
102864
  this.typeName = "PageInfo";
103145
102865
  this.implementedInterfaces = [];
102866
+ this.typeRegistry = typeRegistry;
103146
102867
  }
103147
102868
  get fields() {
103148
102869
  return {
@@ -103158,11 +102879,10 @@
103158
102879
  class PercentAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103159
102880
  constructor(services, typeRegistry) {
103160
102881
  super(services);
103161
- this.services = services;
103162
- this.typeRegistry = typeRegistry;
103163
102882
  this.namespace = "oas";
103164
102883
  this.typeName = "PercentAggregate";
103165
102884
  this.implementedInterfaces = ["FieldValue"];
102885
+ this.typeRegistry = typeRegistry;
103166
102886
  }
103167
102887
  get fields() {
103168
102888
  return {
@@ -103183,11 +102903,10 @@
103183
102903
  class PercentValueRepository extends UnidentifiableGraphQLTypeRepository {
103184
102904
  constructor(services, typeRegistry) {
103185
102905
  super(services);
103186
- this.services = services;
103187
- this.typeRegistry = typeRegistry;
103188
102906
  this.namespace = "oas";
103189
102907
  this.typeName = "PercentValue";
103190
102908
  this.implementedInterfaces = ["FieldValue"];
102909
+ this.typeRegistry = typeRegistry;
103191
102910
  }
103192
102911
  get fields() {
103193
102912
  return {
@@ -103202,11 +102921,10 @@
103202
102921
  class PhoneNumberAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103203
102922
  constructor(services, typeRegistry) {
103204
102923
  super(services);
103205
- this.services = services;
103206
- this.typeRegistry = typeRegistry;
103207
102924
  this.namespace = "oas";
103208
102925
  this.typeName = "PhoneNumberAggregate";
103209
102926
  this.implementedInterfaces = ["FieldValue"];
102927
+ this.typeRegistry = typeRegistry;
103210
102928
  }
103211
102929
  get fields() {
103212
102930
  return {
@@ -103225,11 +102943,10 @@
103225
102943
  class PhoneNumberValueRepository extends UnidentifiableGraphQLTypeRepository {
103226
102944
  constructor(services, typeRegistry) {
103227
102945
  super(services);
103228
- this.services = services;
103229
- this.typeRegistry = typeRegistry;
103230
102946
  this.namespace = "oas";
103231
102947
  this.typeName = "PhoneNumberValue";
103232
102948
  this.implementedInterfaces = ["FieldValue"];
102949
+ this.typeRegistry = typeRegistry;
103233
102950
  }
103234
102951
  get fields() {
103235
102952
  return {
@@ -103243,11 +102960,10 @@
103243
102960
  class PicklistAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103244
102961
  constructor(services, typeRegistry) {
103245
102962
  super(services);
103246
- this.services = services;
103247
- this.typeRegistry = typeRegistry;
103248
102963
  this.namespace = "oas";
103249
102964
  this.typeName = "PicklistAggregate";
103250
102965
  this.implementedInterfaces = ["FieldValue"];
102966
+ this.typeRegistry = typeRegistry;
103251
102967
  }
103252
102968
  get fields() {
103253
102969
  return {
@@ -103267,11 +102983,10 @@
103267
102983
  class PicklistAttributesRepository extends UnidentifiableGraphQLTypeRepository {
103268
102984
  constructor(services, typeRegistry) {
103269
102985
  super(services);
103270
- this.services = services;
103271
- this.typeRegistry = typeRegistry;
103272
102986
  this.namespace = "oas";
103273
102987
  this.typeName = "PicklistAttributes";
103274
102988
  this.implementedInterfaces = [];
102989
+ this.typeRegistry = typeRegistry;
103275
102990
  }
103276
102991
  get fields() {
103277
102992
  return {
@@ -103285,11 +103000,10 @@
103285
103000
  class PicklistFieldRepository extends UnidentifiableGraphQLTypeRepository {
103286
103001
  constructor(services, typeRegistry) {
103287
103002
  super(services);
103288
- this.services = services;
103289
- this.typeRegistry = typeRegistry;
103290
103003
  this.namespace = "oas";
103291
103004
  this.typeName = "PicklistField";
103292
103005
  this.implementedInterfaces = ["Field"];
103006
+ this.typeRegistry = typeRegistry;
103293
103007
  }
103294
103008
  get fields() {
103295
103009
  return {
@@ -103331,11 +103045,10 @@
103331
103045
  class PicklistValueByRecordTypeIDsRepository extends UnidentifiableGraphQLTypeRepository {
103332
103046
  constructor(services, typeRegistry) {
103333
103047
  super(services);
103334
- this.services = services;
103335
- this.typeRegistry = typeRegistry;
103336
103048
  this.namespace = "oas";
103337
103049
  this.typeName = "PicklistValueByRecordTypeIDs";
103338
103050
  this.implementedInterfaces = [];
103051
+ this.typeRegistry = typeRegistry;
103339
103052
  }
103340
103053
  get fields() {
103341
103054
  return {
@@ -103351,11 +103064,10 @@
103351
103064
  class PicklistValueRepository extends UnidentifiableGraphQLTypeRepository {
103352
103065
  constructor(services, typeRegistry) {
103353
103066
  super(services);
103354
- this.services = services;
103355
- this.typeRegistry = typeRegistry;
103356
103067
  this.namespace = "oas";
103357
103068
  this.typeName = "PicklistValue";
103358
103069
  this.implementedInterfaces = ["FieldValue"];
103070
+ this.typeRegistry = typeRegistry;
103359
103071
  }
103360
103072
  get fields() {
103361
103073
  return {
@@ -103370,11 +103082,10 @@
103370
103082
  class PicklistValuesRepository extends UnidentifiableGraphQLTypeRepository {
103371
103083
  constructor(services, typeRegistry) {
103372
103084
  super(services);
103373
- this.services = services;
103374
- this.typeRegistry = typeRegistry;
103375
103085
  this.namespace = "oas";
103376
103086
  this.typeName = "PicklistValues";
103377
103087
  this.implementedInterfaces = [];
103088
+ this.typeRegistry = typeRegistry;
103378
103089
  }
103379
103090
  get fields() {
103380
103091
  return {
@@ -103390,11 +103101,10 @@
103390
103101
  let PolymorphicAggregateParentRelationshipRepository$1 = class PolymorphicAggregateParentRelationshipRepository extends BaseUnionRepository {
103391
103102
  constructor(services, typeRegistry) {
103392
103103
  super(services);
103393
- this.services = services;
103394
- this.typeRegistry = typeRegistry;
103395
103104
  this.namespace = "oas";
103396
103105
  this.typeName = "PolymorphicAggregateParentRelationship";
103397
103106
  this.implementedInterfaces = [];
103107
+ this.typeRegistry = typeRegistry;
103398
103108
  }
103399
103109
  get fields() {
103400
103110
  return {
@@ -103411,11 +103121,10 @@
103411
103121
  let PolymorphicParentRelationshipRepository$1 = class PolymorphicParentRelationshipRepository extends BaseUnionRepository {
103412
103122
  constructor(services, typeRegistry) {
103413
103123
  super(services);
103414
- this.services = services;
103415
- this.typeRegistry = typeRegistry;
103416
103124
  this.namespace = "oas";
103417
103125
  this.typeName = "PolymorphicParentRelationship";
103418
103126
  this.implementedInterfaces = [];
103127
+ this.typeRegistry = typeRegistry;
103419
103128
  }
103420
103129
  get fields() {
103421
103130
  return {
@@ -103432,11 +103141,10 @@
103432
103141
  class QueryRepository extends GraphQLDocumentRootTypeRepository {
103433
103142
  constructor(services, typeRegistry) {
103434
103143
  super(services);
103435
- this.services = services;
103436
- this.typeRegistry = typeRegistry;
103437
103144
  this.namespace = "oas";
103438
103145
  this.typeName = "Query";
103439
103146
  this.implementedInterfaces = [];
103147
+ this.typeRegistry = typeRegistry;
103440
103148
  }
103441
103149
  get fields() {
103442
103150
  return {
@@ -103454,11 +103162,10 @@
103454
103162
  let RecordAggregateConnectionRepository$1 = class RecordAggregateConnectionRepository extends UnidentifiableGraphQLTypeRepository {
103455
103163
  constructor(services, typeRegistry) {
103456
103164
  super(services);
103457
- this.services = services;
103458
- this.typeRegistry = typeRegistry;
103459
103165
  this.namespace = "oas";
103460
103166
  this.typeName = "RecordAggregateConnection";
103461
103167
  this.implementedInterfaces = [];
103168
+ this.typeRegistry = typeRegistry;
103462
103169
  }
103463
103170
  get fields() {
103464
103171
  return {
@@ -103473,11 +103180,10 @@
103473
103180
  let RecordAggregateEdgeRepository$1 = class RecordAggregateEdgeRepository extends UnidentifiableGraphQLTypeRepository {
103474
103181
  constructor(services, typeRegistry) {
103475
103182
  super(services);
103476
- this.services = services;
103477
- this.typeRegistry = typeRegistry;
103478
103183
  this.namespace = "oas";
103479
103184
  this.typeName = "RecordAggregateEdge";
103480
103185
  this.implementedInterfaces = [];
103186
+ this.typeRegistry = typeRegistry;
103481
103187
  }
103482
103188
  get fields() {
103483
103189
  return {
@@ -103491,11 +103197,10 @@
103491
103197
  let RecordAggregateRepository$1 = class RecordAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103492
103198
  constructor(services, typeRegistry) {
103493
103199
  super(services);
103494
- this.services = services;
103495
- this.typeRegistry = typeRegistry;
103496
103200
  this.namespace = "oas";
103497
103201
  this.typeName = "RecordAggregate";
103498
103202
  this.implementedInterfaces = [];
103203
+ this.typeRegistry = typeRegistry;
103499
103204
  }
103500
103205
  get fields() {
103501
103206
  return {
@@ -103527,11 +103232,10 @@
103527
103232
  let RecordConnectionRepository$1 = class RecordConnectionRepository extends UnidentifiableGraphQLTypeRepository {
103528
103233
  constructor(services, typeRegistry) {
103529
103234
  super(services);
103530
- this.services = services;
103531
- this.typeRegistry = typeRegistry;
103532
103235
  this.namespace = "oas";
103533
103236
  this.typeName = "RecordConnection";
103534
103237
  this.implementedInterfaces = [];
103238
+ this.typeRegistry = typeRegistry;
103535
103239
  }
103536
103240
  get fields() {
103537
103241
  return {
@@ -103547,11 +103251,10 @@
103547
103251
  let RecordCreatePayloadRepository$1 = class RecordCreatePayloadRepository extends UnidentifiableGraphQLTypeRepository {
103548
103252
  constructor(services, typeRegistry) {
103549
103253
  super(services);
103550
- this.services = services;
103551
- this.typeRegistry = typeRegistry;
103552
103254
  this.namespace = "oas";
103553
103255
  this.typeName = "RecordCreatePayload";
103554
103256
  this.implementedInterfaces = [];
103257
+ this.typeRegistry = typeRegistry;
103555
103258
  }
103556
103259
  get fields() {
103557
103260
  return {
@@ -103564,12 +103267,11 @@
103564
103267
  let RecordDeletePayloadRepository$1 = class RecordDeletePayloadRepository extends IdentifiableGraphQLTypeRepository {
103565
103268
  constructor(services, typeRegistry) {
103566
103269
  super(services);
103567
- this.services = services;
103568
- this.typeRegistry = typeRegistry;
103569
103270
  this.namespace = "oas";
103570
103271
  this.typeName = "RecordDeletePayload";
103571
103272
  this.implementedInterfaces = [];
103572
103273
  this.idField = "Id";
103274
+ this.typeRegistry = typeRegistry;
103573
103275
  }
103574
103276
  get fields() {
103575
103277
  return {
@@ -103585,11 +103287,10 @@
103585
103287
  let RecordEdgeRepository$1 = class RecordEdgeRepository extends UnidentifiableGraphQLTypeRepository {
103586
103288
  constructor(services, typeRegistry) {
103587
103289
  super(services);
103588
- this.services = services;
103589
- this.typeRegistry = typeRegistry;
103590
103290
  this.namespace = "oas";
103591
103291
  this.typeName = "RecordEdge";
103592
103292
  this.implementedInterfaces = [];
103293
+ this.typeRegistry = typeRegistry;
103593
103294
  }
103594
103295
  get fields() {
103595
103296
  return {
@@ -103603,11 +103304,10 @@
103603
103304
  let RecordQueryAggregateRepository$1 = class RecordQueryAggregateRepository extends UnidentifiableGraphQLTypeRepository {
103604
103305
  constructor(services, typeRegistry) {
103605
103306
  super(services);
103606
- this.services = services;
103607
- this.typeRegistry = typeRegistry;
103608
103307
  this.namespace = "oas";
103609
103308
  this.typeName = "RecordQueryAggregate";
103610
103309
  this.implementedInterfaces = [];
103310
+ this.typeRegistry = typeRegistry;
103611
103311
  }
103612
103312
  get fields() {
103613
103313
  return {
@@ -103620,11 +103320,10 @@
103620
103320
  let RecordQueryRepository$1 = class RecordQueryRepository extends UnidentifiableGraphQLTypeRepository {
103621
103321
  constructor(services, typeRegistry) {
103622
103322
  super(services);
103623
- this.services = services;
103624
- this.typeRegistry = typeRegistry;
103625
103323
  this.namespace = "oas";
103626
103324
  this.typeName = "RecordQuery";
103627
103325
  this.implementedInterfaces = [];
103326
+ this.typeRegistry = typeRegistry;
103628
103327
  }
103629
103328
  get fields() {
103630
103329
  return {
@@ -103637,12 +103336,11 @@
103637
103336
  let RecordRepresentationRepository$1 = class RecordRepresentationRepository extends IdentifiableGraphQLTypeRepository {
103638
103337
  constructor(services, typeRegistry) {
103639
103338
  super(services);
103640
- this.services = services;
103641
- this.typeRegistry = typeRegistry;
103642
103339
  this.namespace = "oas";
103643
103340
  this.typeName = "RecordRepresentation";
103644
103341
  this.implementedInterfaces = ["Record"];
103645
103342
  this.idField = "Id";
103343
+ this.typeRegistry = typeRegistry;
103646
103344
  }
103647
103345
  get fields() {
103648
103346
  return {
@@ -103695,11 +103393,10 @@
103695
103393
  let RecordResultRepository$1 = class RecordResultRepository extends UnidentifiableGraphQLTypeRepository {
103696
103394
  constructor(services, typeRegistry) {
103697
103395
  super(services);
103698
- this.services = services;
103699
- this.typeRegistry = typeRegistry;
103700
103396
  this.namespace = "oas";
103701
103397
  this.typeName = "RecordResult";
103702
103398
  this.implementedInterfaces = [];
103399
+ this.typeRegistry = typeRegistry;
103703
103400
  }
103704
103401
  get fields() {
103705
103402
  return {
@@ -103712,11 +103409,10 @@
103712
103409
  class RecordTypeInfoRepository extends UnidentifiableGraphQLTypeRepository {
103713
103410
  constructor(services, typeRegistry) {
103714
103411
  super(services);
103715
- this.services = services;
103716
- this.typeRegistry = typeRegistry;
103717
103412
  this.namespace = "oas";
103718
103413
  this.typeName = "RecordTypeInfo";
103719
103414
  this.implementedInterfaces = [];
103415
+ this.typeRegistry = typeRegistry;
103720
103416
  }
103721
103417
  get fields() {
103722
103418
  return {
@@ -103733,11 +103429,10 @@
103733
103429
  let RecordUpdatePayloadRepository$1 = class RecordUpdatePayloadRepository extends UnidentifiableGraphQLTypeRepository {
103734
103430
  constructor(services, typeRegistry) {
103735
103431
  super(services);
103736
- this.services = services;
103737
- this.typeRegistry = typeRegistry;
103738
103432
  this.namespace = "oas";
103739
103433
  this.typeName = "RecordUpdatePayload";
103740
103434
  this.implementedInterfaces = [];
103435
+ this.typeRegistry = typeRegistry;
103741
103436
  }
103742
103437
  get fields() {
103743
103438
  return {
@@ -103751,11 +103446,10 @@
103751
103446
  class ReferenceToInfoRepository extends UnidentifiableGraphQLTypeRepository {
103752
103447
  constructor(services, typeRegistry) {
103753
103448
  super(services);
103754
- this.services = services;
103755
- this.typeRegistry = typeRegistry;
103756
103449
  this.namespace = "oas";
103757
103450
  this.typeName = "ReferenceToInfo";
103758
103451
  this.implementedInterfaces = [];
103452
+ this.typeRegistry = typeRegistry;
103759
103453
  }
103760
103454
  get fields() {
103761
103455
  return {
@@ -103770,11 +103464,10 @@
103770
103464
  class RelatedListInfoRepository extends UnidentifiableGraphQLTypeRepository {
103771
103465
  constructor(services, typeRegistry) {
103772
103466
  super(services);
103773
- this.services = services;
103774
- this.typeRegistry = typeRegistry;
103775
103467
  this.namespace = "oas";
103776
103468
  this.typeName = "RelatedListInfo";
103777
103469
  this.implementedInterfaces = [];
103470
+ this.typeRegistry = typeRegistry;
103778
103471
  }
103779
103472
  get fields() {
103780
103473
  return {
@@ -103793,11 +103486,10 @@
103793
103486
  class ReportLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
103794
103487
  constructor(services, typeRegistry) {
103795
103488
  super(services);
103796
- this.services = services;
103797
- this.typeRegistry = typeRegistry;
103798
103489
  this.namespace = "oas";
103799
103490
  this.typeName = "ReportLayoutComponent";
103800
103491
  this.implementedInterfaces = ["LayoutComponent"];
103492
+ this.typeRegistry = typeRegistry;
103801
103493
  }
103802
103494
  get fields() {
103803
103495
  return {
@@ -103819,11 +103511,10 @@
103819
103511
  class RichTextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
103820
103512
  constructor(services, typeRegistry) {
103821
103513
  super(services);
103822
- this.services = services;
103823
- this.typeRegistry = typeRegistry;
103824
103514
  this.namespace = "oas";
103825
103515
  this.typeName = "RichTextAreaValue";
103826
103516
  this.implementedInterfaces = ["FieldValue"];
103517
+ this.typeRegistry = typeRegistry;
103827
103518
  }
103828
103519
  get fields() {
103829
103520
  return {
@@ -103838,11 +103529,10 @@
103838
103529
  class SObject__FieldRepository extends UnidentifiableGraphQLTypeRepository {
103839
103530
  constructor(services, typeRegistry) {
103840
103531
  super(services);
103841
- this.services = services;
103842
- this.typeRegistry = typeRegistry;
103843
103532
  this.namespace = "oas";
103844
103533
  this.typeName = "SObject__Field";
103845
103534
  this.implementedInterfaces = [];
103535
+ this.typeRegistry = typeRegistry;
103846
103536
  }
103847
103537
  get fields() {
103848
103538
  return {
@@ -103856,12 +103546,11 @@
103856
103546
  class Setup__EntityRepresentationRepository extends IdentifiableGraphQLTypeRepository {
103857
103547
  constructor(services, typeRegistry) {
103858
103548
  super(services);
103859
- this.services = services;
103860
- this.typeRegistry = typeRegistry;
103861
103549
  this.namespace = "oas";
103862
103550
  this.typeName = "Setup__EntityRepresentation";
103863
103551
  this.implementedInterfaces = [];
103864
103552
  this.idField = "Id";
103553
+ this.typeRegistry = typeRegistry;
103865
103554
  }
103866
103555
  get fields() {
103867
103556
  return {
@@ -103908,11 +103597,10 @@
103908
103597
  class Setup__ListColumnRepository extends UnidentifiableGraphQLTypeRepository {
103909
103598
  constructor(services, typeRegistry) {
103910
103599
  super(services);
103911
- this.services = services;
103912
- this.typeRegistry = typeRegistry;
103913
103600
  this.namespace = "oas";
103914
103601
  this.typeName = "Setup__ListColumn";
103915
103602
  this.implementedInterfaces = [];
103603
+ this.typeRegistry = typeRegistry;
103916
103604
  }
103917
103605
  get fields() {
103918
103606
  return {
@@ -103934,11 +103622,10 @@
103934
103622
  class Setup__ListFilterRepository extends UnidentifiableGraphQLTypeRepository {
103935
103623
  constructor(services, typeRegistry) {
103936
103624
  super(services);
103937
- this.services = services;
103938
- this.typeRegistry = typeRegistry;
103939
103625
  this.namespace = "oas";
103940
103626
  this.typeName = "Setup__ListFilter";
103941
103627
  this.implementedInterfaces = [];
103628
+ this.typeRegistry = typeRegistry;
103942
103629
  }
103943
103630
  get fields() {
103944
103631
  return {
@@ -103954,11 +103641,10 @@
103954
103641
  class Setup__ListInlineEditAttributeDetailsRepository extends UnidentifiableGraphQLTypeRepository {
103955
103642
  constructor(services, typeRegistry) {
103956
103643
  super(services);
103957
- this.services = services;
103958
- this.typeRegistry = typeRegistry;
103959
103644
  this.namespace = "oas";
103960
103645
  this.typeName = "Setup__ListInlineEditAttributeDetails";
103961
103646
  this.implementedInterfaces = [];
103647
+ this.typeRegistry = typeRegistry;
103962
103648
  }
103963
103649
  get fields() {
103964
103650
  return {
@@ -103973,11 +103659,10 @@
103973
103659
  class Setup__ListInlineEditAttributesRepository extends UnidentifiableGraphQLTypeRepository {
103974
103660
  constructor(services, typeRegistry) {
103975
103661
  super(services);
103976
- this.services = services;
103977
- this.typeRegistry = typeRegistry;
103978
103662
  this.namespace = "oas";
103979
103663
  this.typeName = "Setup__ListInlineEditAttributes";
103980
103664
  this.implementedInterfaces = [];
103665
+ this.typeRegistry = typeRegistry;
103981
103666
  }
103982
103667
  get fields() {
103983
103668
  return {
@@ -103992,11 +103677,10 @@
103992
103677
  class Setup__ListOrderRepository extends UnidentifiableGraphQLTypeRepository {
103993
103678
  constructor(services, typeRegistry) {
103994
103679
  super(services);
103995
- this.services = services;
103996
- this.typeRegistry = typeRegistry;
103997
103680
  this.namespace = "oas";
103998
103681
  this.typeName = "Setup__ListOrder";
103999
103682
  this.implementedInterfaces = [];
103683
+ this.typeRegistry = typeRegistry;
104000
103684
  }
104001
103685
  get fields() {
104002
103686
  return {
@@ -104011,11 +103695,10 @@
104011
103695
  class Setup__ListScalarFieldRepository extends UnidentifiableGraphQLTypeRepository {
104012
103696
  constructor(services, typeRegistry) {
104013
103697
  super(services);
104014
- this.services = services;
104015
- this.typeRegistry = typeRegistry;
104016
103698
  this.namespace = "oas";
104017
103699
  this.typeName = "Setup__ListScalarField";
104018
103700
  this.implementedInterfaces = [];
103701
+ this.typeRegistry = typeRegistry;
104019
103702
  }
104020
103703
  get fields() {
104021
103704
  return {
@@ -104035,11 +103718,10 @@
104035
103718
  class Setup__ListViewObjectInfoRepository extends UnidentifiableGraphQLTypeRepository {
104036
103719
  constructor(services, typeRegistry) {
104037
103720
  super(services);
104038
- this.services = services;
104039
- this.typeRegistry = typeRegistry;
104040
103721
  this.namespace = "oas";
104041
103722
  this.typeName = "Setup__ListViewObjectInfo";
104042
103723
  this.implementedInterfaces = [];
103724
+ this.typeRegistry = typeRegistry;
104043
103725
  }
104044
103726
  get fields() {
104045
103727
  return {
@@ -104052,11 +103734,10 @@
104052
103734
  class Setup__ListViewRepository extends UnidentifiableGraphQLTypeRepository {
104053
103735
  constructor(services, typeRegistry) {
104054
103736
  super(services);
104055
- this.services = services;
104056
- this.typeRegistry = typeRegistry;
104057
103737
  this.namespace = "oas";
104058
103738
  this.typeName = "Setup__ListView";
104059
103739
  this.implementedInterfaces = [];
103740
+ this.typeRegistry = typeRegistry;
104060
103741
  }
104061
103742
  get fields() {
104062
103743
  return {
@@ -104077,11 +103758,10 @@
104077
103758
  class Setup__ListViewRowConnectionRepository extends UnidentifiableGraphQLTypeRepository {
104078
103759
  constructor(services, typeRegistry) {
104079
103760
  super(services);
104080
- this.services = services;
104081
- this.typeRegistry = typeRegistry;
104082
103761
  this.namespace = "oas";
104083
103762
  this.typeName = "Setup__ListViewRowConnection";
104084
103763
  this.implementedInterfaces = [];
103764
+ this.typeRegistry = typeRegistry;
104085
103765
  }
104086
103766
  get fields() {
104087
103767
  return {
@@ -104096,11 +103776,10 @@
104096
103776
  class Setup__ListViewRowEdgeRepository extends UnidentifiableGraphQLTypeRepository {
104097
103777
  constructor(services, typeRegistry) {
104098
103778
  super(services);
104099
- this.services = services;
104100
- this.typeRegistry = typeRegistry;
104101
103779
  this.namespace = "oas";
104102
103780
  this.typeName = "Setup__ListViewRowEdge";
104103
103781
  this.implementedInterfaces = [];
103782
+ this.typeRegistry = typeRegistry;
104104
103783
  }
104105
103784
  get fields() {
104106
103785
  return {
@@ -104114,11 +103793,10 @@
104114
103793
  class Setup__ListViewRowRepository extends UnidentifiableGraphQLTypeRepository {
104115
103794
  constructor(services, typeRegistry) {
104116
103795
  super(services);
104117
- this.services = services;
104118
- this.typeRegistry = typeRegistry;
104119
103796
  this.namespace = "oas";
104120
103797
  this.typeName = "Setup__ListViewRow";
104121
103798
  this.implementedInterfaces = [];
103799
+ this.typeRegistry = typeRegistry;
104122
103800
  }
104123
103801
  get fields() {
104124
103802
  return {
@@ -104132,11 +103810,10 @@
104132
103810
  class Setup__SetupAggregateConnectionRepository extends UnidentifiableGraphQLTypeRepository {
104133
103811
  constructor(services, typeRegistry) {
104134
103812
  super(services);
104135
- this.services = services;
104136
- this.typeRegistry = typeRegistry;
104137
103813
  this.namespace = "oas";
104138
103814
  this.typeName = "Setup__SetupAggregateConnection";
104139
103815
  this.implementedInterfaces = [];
103816
+ this.typeRegistry = typeRegistry;
104140
103817
  }
104141
103818
  get fields() {
104142
103819
  return {
@@ -104151,11 +103828,10 @@
104151
103828
  class Setup__SetupAggregateEdgeRepository extends UnidentifiableGraphQLTypeRepository {
104152
103829
  constructor(services, typeRegistry) {
104153
103830
  super(services);
104154
- this.services = services;
104155
- this.typeRegistry = typeRegistry;
104156
103831
  this.namespace = "oas";
104157
103832
  this.typeName = "Setup__SetupAggregateEdge";
104158
103833
  this.implementedInterfaces = [];
103834
+ this.typeRegistry = typeRegistry;
104159
103835
  }
104160
103836
  get fields() {
104161
103837
  return {
@@ -104169,11 +103845,10 @@
104169
103845
  class Setup__SetupConnectionRepository extends UnidentifiableGraphQLTypeRepository {
104170
103846
  constructor(services, typeRegistry) {
104171
103847
  super(services);
104172
- this.services = services;
104173
- this.typeRegistry = typeRegistry;
104174
103848
  this.namespace = "oas";
104175
103849
  this.typeName = "Setup__SetupConnection";
104176
103850
  this.implementedInterfaces = [];
103851
+ this.typeRegistry = typeRegistry;
104177
103852
  }
104178
103853
  get fields() {
104179
103854
  return {
@@ -104189,11 +103864,10 @@
104189
103864
  class Setup__SetupEdgeRepository extends UnidentifiableGraphQLTypeRepository {
104190
103865
  constructor(services, typeRegistry) {
104191
103866
  super(services);
104192
- this.services = services;
104193
- this.typeRegistry = typeRegistry;
104194
103867
  this.namespace = "oas";
104195
103868
  this.typeName = "Setup__SetupEdge";
104196
103869
  this.implementedInterfaces = [];
103870
+ this.typeRegistry = typeRegistry;
104197
103871
  }
104198
103872
  get fields() {
104199
103873
  return {
@@ -104207,11 +103881,10 @@
104207
103881
  class Setup__SetupPolymorphicAggregateParentRelationshipRepository extends BaseUnionRepository {
104208
103882
  constructor(services, typeRegistry) {
104209
103883
  super(services);
104210
- this.services = services;
104211
- this.typeRegistry = typeRegistry;
104212
103884
  this.namespace = "oas";
104213
103885
  this.typeName = "Setup__SetupPolymorphicAggregateParentRelationship";
104214
103886
  this.implementedInterfaces = [];
103887
+ this.typeRegistry = typeRegistry;
104215
103888
  }
104216
103889
  get fields() {
104217
103890
  return {
@@ -104228,11 +103901,10 @@
104228
103901
  class Setup__SetupPolymorphicParentRelationshipRepository extends BaseUnionRepository {
104229
103902
  constructor(services, typeRegistry) {
104230
103903
  super(services);
104231
- this.services = services;
104232
- this.typeRegistry = typeRegistry;
104233
103904
  this.namespace = "oas";
104234
103905
  this.typeName = "Setup__SetupPolymorphicParentRelationship";
104235
103906
  this.implementedInterfaces = [];
103907
+ this.typeRegistry = typeRegistry;
104236
103908
  }
104237
103909
  get fields() {
104238
103910
  return {
@@ -104249,11 +103921,10 @@
104249
103921
  class Setup__SetupQueryAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104250
103922
  constructor(services, typeRegistry) {
104251
103923
  super(services);
104252
- this.services = services;
104253
- this.typeRegistry = typeRegistry;
104254
103924
  this.namespace = "oas";
104255
103925
  this.typeName = "Setup__SetupQueryAggregate";
104256
103926
  this.implementedInterfaces = [];
103927
+ this.typeRegistry = typeRegistry;
104257
103928
  }
104258
103929
  get fields() {
104259
103930
  return {
@@ -104266,11 +103937,10 @@
104266
103937
  class Setup__SetupQueryRepository extends UnidentifiableGraphQLTypeRepository {
104267
103938
  constructor(services, typeRegistry) {
104268
103939
  super(services);
104269
- this.services = services;
104270
- this.typeRegistry = typeRegistry;
104271
103940
  this.namespace = "oas";
104272
103941
  this.typeName = "Setup__SetupQuery";
104273
103942
  this.implementedInterfaces = [];
103943
+ this.typeRegistry = typeRegistry;
104274
103944
  }
104275
103945
  get fields() {
104276
103946
  return {
@@ -104283,11 +103953,10 @@
104283
103953
  class Setup__SetupRecordAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104284
103954
  constructor(services, typeRegistry) {
104285
103955
  super(services);
104286
- this.services = services;
104287
- this.typeRegistry = typeRegistry;
104288
103956
  this.namespace = "oas";
104289
103957
  this.typeName = "Setup__SetupRecordAggregate";
104290
103958
  this.implementedInterfaces = [];
103959
+ this.typeRegistry = typeRegistry;
104291
103960
  }
104292
103961
  get fields() {
104293
103962
  return {
@@ -104319,11 +103988,10 @@
104319
103988
  class Setup__SetupRecordResultRepository extends UnidentifiableGraphQLTypeRepository {
104320
103989
  constructor(services, typeRegistry) {
104321
103990
  super(services);
104322
- this.services = services;
104323
- this.typeRegistry = typeRegistry;
104324
103991
  this.namespace = "oas";
104325
103992
  this.typeName = "Setup__SetupRecordResult";
104326
103993
  this.implementedInterfaces = [];
103994
+ this.typeRegistry = typeRegistry;
104327
103995
  }
104328
103996
  get fields() {
104329
103997
  return {
@@ -104336,11 +104004,10 @@
104336
104004
  class Setup__SetupRepository extends UnidentifiableGraphQLTypeRepository {
104337
104005
  constructor(services, typeRegistry) {
104338
104006
  super(services);
104339
- this.services = services;
104340
- this.typeRegistry = typeRegistry;
104341
104007
  this.namespace = "oas";
104342
104008
  this.typeName = "Setup__Setup";
104343
104009
  this.implementedInterfaces = [];
104010
+ this.typeRegistry = typeRegistry;
104344
104011
  }
104345
104012
  get fields() {
104346
104013
  return {
@@ -104357,11 +104024,10 @@
104357
104024
  class StandardFieldRepository extends UnidentifiableGraphQLTypeRepository {
104358
104025
  constructor(services, typeRegistry) {
104359
104026
  super(services);
104360
- this.services = services;
104361
- this.typeRegistry = typeRegistry;
104362
104027
  this.namespace = "oas";
104363
104028
  this.typeName = "StandardField";
104364
104029
  this.implementedInterfaces = ["Field"];
104030
+ this.typeRegistry = typeRegistry;
104365
104031
  }
104366
104032
  get fields() {
104367
104033
  return {
@@ -104402,11 +104068,10 @@
104402
104068
  class StringAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104403
104069
  constructor(services, typeRegistry) {
104404
104070
  super(services);
104405
- this.services = services;
104406
- this.typeRegistry = typeRegistry;
104407
104071
  this.namespace = "oas";
104408
104072
  this.typeName = "StringAggregate";
104409
104073
  this.implementedInterfaces = ["FieldValue"];
104074
+ this.typeRegistry = typeRegistry;
104410
104075
  }
104411
104076
  get fields() {
104412
104077
  return {
@@ -104426,11 +104091,10 @@
104426
104091
  class StringValueRepository extends UnidentifiableGraphQLTypeRepository {
104427
104092
  constructor(services, typeRegistry) {
104428
104093
  super(services);
104429
- this.services = services;
104430
- this.typeRegistry = typeRegistry;
104431
104094
  this.namespace = "oas";
104432
104095
  this.typeName = "StringValue";
104433
104096
  this.implementedInterfaces = ["FieldValue"];
104097
+ this.typeRegistry = typeRegistry;
104434
104098
  }
104435
104099
  get fields() {
104436
104100
  return {
@@ -104445,11 +104109,10 @@
104445
104109
  class TextAreaAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104446
104110
  constructor(services, typeRegistry) {
104447
104111
  super(services);
104448
- this.services = services;
104449
- this.typeRegistry = typeRegistry;
104450
104112
  this.namespace = "oas";
104451
104113
  this.typeName = "TextAreaAggregate";
104452
104114
  this.implementedInterfaces = ["FieldValue"];
104115
+ this.typeRegistry = typeRegistry;
104453
104116
  }
104454
104117
  get fields() {
104455
104118
  return {
@@ -104469,11 +104132,10 @@
104469
104132
  class TextAreaValueRepository extends UnidentifiableGraphQLTypeRepository {
104470
104133
  constructor(services, typeRegistry) {
104471
104134
  super(services);
104472
- this.services = services;
104473
- this.typeRegistry = typeRegistry;
104474
104135
  this.namespace = "oas";
104475
104136
  this.typeName = "TextAreaValue";
104476
104137
  this.implementedInterfaces = ["FieldValue"];
104138
+ this.typeRegistry = typeRegistry;
104477
104139
  }
104478
104140
  get fields() {
104479
104141
  return {
@@ -104488,11 +104150,10 @@
104488
104150
  class ThemeInfoRepository extends UnidentifiableGraphQLTypeRepository {
104489
104151
  constructor(services, typeRegistry) {
104490
104152
  super(services);
104491
- this.services = services;
104492
- this.typeRegistry = typeRegistry;
104493
104153
  this.namespace = "oas";
104494
104154
  this.typeName = "ThemeInfo";
104495
104155
  this.implementedInterfaces = [];
104156
+ this.typeRegistry = typeRegistry;
104496
104157
  }
104497
104158
  get fields() {
104498
104159
  return {
@@ -104506,11 +104167,10 @@
104506
104167
  class TimeAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104507
104168
  constructor(services, typeRegistry) {
104508
104169
  super(services);
104509
- this.services = services;
104510
- this.typeRegistry = typeRegistry;
104511
104170
  this.namespace = "oas";
104512
104171
  this.typeName = "TimeAggregate";
104513
104172
  this.implementedInterfaces = ["FieldValue"];
104173
+ this.typeRegistry = typeRegistry;
104514
104174
  }
104515
104175
  get fields() {
104516
104176
  return {
@@ -104526,11 +104186,10 @@
104526
104186
  class TimeValueRepository extends UnidentifiableGraphQLTypeRepository {
104527
104187
  constructor(services, typeRegistry) {
104528
104188
  super(services);
104529
- this.services = services;
104530
- this.typeRegistry = typeRegistry;
104531
104189
  this.namespace = "oas";
104532
104190
  this.typeName = "TimeValue";
104533
104191
  this.implementedInterfaces = ["FieldValue"];
104192
+ this.typeRegistry = typeRegistry;
104534
104193
  }
104535
104194
  get fields() {
104536
104195
  return {
@@ -104545,11 +104204,10 @@
104545
104204
  let UIAPIMutationsRepository$1 = class UIAPIMutationsRepository extends UnidentifiableGraphQLTypeRepository {
104546
104205
  constructor(services, typeRegistry) {
104547
104206
  super(services);
104548
- this.services = services;
104549
- this.typeRegistry = typeRegistry;
104550
104207
  this.namespace = "oas";
104551
104208
  this.typeName = "UIAPIMutations";
104552
104209
  this.implementedInterfaces = [];
104210
+ this.typeRegistry = typeRegistry;
104553
104211
  }
104554
104212
  get fields() {
104555
104213
  return {
@@ -104564,11 +104222,10 @@
104564
104222
  class UIAPIRepository extends UnidentifiableGraphQLTypeRepository {
104565
104223
  constructor(services, typeRegistry) {
104566
104224
  super(services);
104567
- this.services = services;
104568
- this.typeRegistry = typeRegistry;
104569
104225
  this.namespace = "oas";
104570
104226
  this.typeName = "UIAPI";
104571
104227
  this.implementedInterfaces = [];
104228
+ this.typeRegistry = typeRegistry;
104572
104229
  }
104573
104230
  get fields() {
104574
104231
  return {
@@ -104586,11 +104243,10 @@
104586
104243
  class UrlAggregateRepository extends UnidentifiableGraphQLTypeRepository {
104587
104244
  constructor(services, typeRegistry) {
104588
104245
  super(services);
104589
- this.services = services;
104590
- this.typeRegistry = typeRegistry;
104591
104246
  this.namespace = "oas";
104592
104247
  this.typeName = "UrlAggregate";
104593
104248
  this.implementedInterfaces = ["FieldValue"];
104249
+ this.typeRegistry = typeRegistry;
104594
104250
  }
104595
104251
  get fields() {
104596
104252
  return {
@@ -104609,11 +104265,10 @@
104609
104265
  class UrlValueRepository extends UnidentifiableGraphQLTypeRepository {
104610
104266
  constructor(services, typeRegistry) {
104611
104267
  super(services);
104612
- this.services = services;
104613
- this.typeRegistry = typeRegistry;
104614
104268
  this.namespace = "oas";
104615
104269
  this.typeName = "UrlValue";
104616
104270
  this.implementedInterfaces = ["FieldValue"];
104271
+ this.typeRegistry = typeRegistry;
104617
104272
  }
104618
104273
  get fields() {
104619
104274
  return {
@@ -104627,11 +104282,10 @@
104627
104282
  class VisualforceLayoutComponentRepository extends UnidentifiableGraphQLTypeRepository {
104628
104283
  constructor(services, typeRegistry) {
104629
104284
  super(services);
104630
- this.services = services;
104631
- this.typeRegistry = typeRegistry;
104632
104285
  this.namespace = "oas";
104633
104286
  this.typeName = "VisualforceLayoutComponent";
104634
104287
  this.implementedInterfaces = ["LayoutComponent"];
104288
+ this.typeRegistry = typeRegistry;
104635
104289
  }
104636
104290
  get fields() {
104637
104291
  return {
@@ -107054,7 +106708,7 @@
107054
106708
  cb(graphql_v1_import, graphql_imperative$1, graphql_imperative_legacy_v1_import, graphql_state_manager, useOneStoreGraphQL);
107055
106709
  }
107056
106710
  }
107057
- // version: 1.436.0-7cd4295391
106711
+ // version: 1.438.0-242a4ab027
107058
106712
 
107059
106713
  function createFragmentMap(documentNode) {
107060
106714
  const fragments = {};
@@ -136261,7 +135915,7 @@
136261
135915
  configuration: { ...configurationForGraphQLAdapters$1 },
136262
135916
  instrument: instrument$1,
136263
135917
  });
136264
- // version: 1.436.0-7cd4295391
135918
+ // version: 1.438.0-242a4ab027
136265
135919
 
136266
135920
  // On core the unstable adapters are re-exported with different names,
136267
135921
  // we want to match them here.
@@ -136413,7 +136067,7 @@
136413
136067
  unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
136414
136068
  graphQLImperative = ldsAdapter;
136415
136069
  });
136416
- // version: 1.436.0-7cd4295391
136070
+ // version: 1.438.0-242a4ab027
136417
136071
 
136418
136072
  var gqlApi = /*#__PURE__*/Object.freeze({
136419
136073
  __proto__: null,
@@ -137212,7 +136866,7 @@
137212
136866
  function register(r) {
137213
136867
  callbacks$1.forEach((callback) => callback(r));
137214
136868
  }
137215
- // version: 1.436.0-581b8a5964
136869
+ // version: 1.438.0-0ec0a89235
137216
136870
 
137217
136871
  /**
137218
136872
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -138522,4 +138176,4 @@
138522
138176
  exports.subscribeToAdapter = subscribeToAdapter;
138523
138177
 
138524
138178
  }));
138525
- // version: 1.436.0-581b8a5964
138179
+ // version: 1.438.0-0ec0a89235