@salesforce/lds-worker-api 1.147.0 → 1.147.2

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.
@@ -694,10 +694,12 @@ const API_NAMESPACE = 'UiApi';
694
694
  const RECORD_REPRESENTATION_NAME = 'RecordRepresentation';
695
695
 
696
696
  let luvio = undefined;
697
+ let internalLuvio = undefined;
697
698
  let uiApiRecordTTL;
698
699
  let metadataTTL;
699
700
  withDefaultLuvio((_luvio) => {
700
701
  luvio = _luvio;
702
+ internalLuvio = getRuntime().internalLuvio;
701
703
  if (uiApiRecordTTL !== undefined) {
702
704
  // Note: This should rarely get hit and the durable store implementation
703
705
  // should have read write synchronization to protect against race conditions
@@ -716,14 +718,24 @@ function setUiApiRecordTTL(ttl) {
716
718
  if (luvio === undefined) {
717
719
  return Promise.resolve();
718
720
  }
719
- return luvio.storeSetTTLOverride(API_NAMESPACE, RECORD_REPRESENTATION_NAME, ttl);
721
+ return luvio.storeSetTTLOverride(API_NAMESPACE, RECORD_REPRESENTATION_NAME, ttl).then(() => {
722
+ if (internalLuvio === undefined) {
723
+ return Promise.resolve();
724
+ }
725
+ internalLuvio.storeSetTTLOverride(API_NAMESPACE, RECORD_REPRESENTATION_NAME, ttl);
726
+ });
720
727
  }
721
728
  function setMetadataTTL(ttl) {
722
729
  metadataTTL = ttl;
723
730
  if (luvio === undefined) {
724
731
  return Promise.resolve();
725
732
  }
726
- return luvio.storeSetDefaultTTLOverride(ttl);
733
+ return luvio.storeSetDefaultTTLOverride(ttl).then(() => {
734
+ if (internalLuvio === undefined) {
735
+ return Promise.resolve();
736
+ }
737
+ internalLuvio.storeSetDefaultTTLOverride(ttl);
738
+ });
727
739
  }
728
740
 
729
741
  function createPrimingSession(config) {
@@ -758,4 +770,4 @@ if (process.env.NODE_ENV !== 'production') {
758
770
  }
759
771
 
760
772
  export { createPrimingSession, draftManager, draftQueue, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, setMetadataTTL, setUiApiRecordTTL, subscribeToAdapter };
761
- // version: 1.147.0-f9a768a91
773
+ // version: 1.147.2-2b0ae2d38
@@ -3801,7 +3801,7 @@ function withDefaultLuvio(callback) {
3801
3801
  }
3802
3802
  callbacks.push(callback);
3803
3803
  }
3804
- // version: 1.147.0-f9a768a91
3804
+ // version: 1.147.2-2b0ae2d38
3805
3805
 
3806
3806
  // TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
3807
3807
  function instrumentAdapter$1(createFunction, _metadata) {
@@ -15225,7 +15225,7 @@ function parseAndVisit(source) {
15225
15225
  updateReferenceMapWithKnownKey(ast, luvioDocumentNode);
15226
15226
  return luvioDocumentNode;
15227
15227
  }
15228
- // version: 1.147.0-f9a768a91
15228
+ // version: 1.147.2-2b0ae2d38
15229
15229
 
15230
15230
  function unwrap(data) {
15231
15231
  // The lwc-luvio bindings import a function from lwc called "unwrap".
@@ -16138,7 +16138,7 @@ function createGraphQLWireAdapterConstructor(luvio, adapter, metadata, astResolv
16138
16138
  const { apiFamily, name } = metadata;
16139
16139
  return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
16140
16140
  }
16141
- // version: 1.147.0-f9a768a91
16141
+ // version: 1.147.2-2b0ae2d38
16142
16142
 
16143
16143
  /**
16144
16144
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -16788,7 +16788,7 @@ const select$1F = function ListScopeRelatedEntityRepresentationSelect() {
16788
16788
  };
16789
16789
  };
16790
16790
 
16791
- const VERSION$1a$1 = "fce88f94b1244707458c795247592939";
16791
+ const VERSION$1a$1 = "a51de242c746e5500a833e84dfaa2170";
16792
16792
  const select$1E = function ListScopeRepresentationSelect() {
16793
16793
  const { selections: ListScopeEntityRepresentation__selections, opaque: ListScopeEntityRepresentation__opaque, } = select$1G();
16794
16794
  const { selections: ListScopeRelatedEntityRepresentation__selections, opaque: ListScopeRelatedEntityRepresentation__opaque, } = select$1F();
@@ -16804,6 +16804,7 @@ const select$1E = function ListScopeRepresentationSelect() {
16804
16804
  {
16805
16805
  name: 'entity',
16806
16806
  kind: 'Object',
16807
+ nullable: true,
16807
16808
  selections: ListScopeEntityRepresentation__selections
16808
16809
  },
16809
16810
  {
@@ -16813,6 +16814,7 @@ const select$1E = function ListScopeRepresentationSelect() {
16813
16814
  {
16814
16815
  name: 'relatedEntity',
16815
16816
  kind: 'Object',
16817
+ nullable: true,
16816
16818
  selections: ListScopeRelatedEntityRepresentation__selections
16817
16819
  }
16818
16820
  ]
@@ -22598,7 +22600,6 @@ function createResourceRequest$V(config) {
22598
22600
  };
22599
22601
  }
22600
22602
 
22601
- const adapterName$J = 'getListViewSummaryCollection';
22602
22603
  const getListViewSummaryCollection_ConfigPropertyNames = {
22603
22604
  displayName: 'getListViewSummaryCollection',
22604
22605
  parameters: {
@@ -42762,7 +42763,7 @@ function createResourceRequest$3(config) {
42762
42763
  };
42763
42764
  }
42764
42765
 
42765
- const adapterName$K = 'deleteRecord';
42766
+ const adapterName$J = 'deleteRecord';
42766
42767
  const deleteRecord_ConfigPropertyNames = {
42767
42768
  displayName: 'deleteRecord',
42768
42769
  parameters: {
@@ -42824,7 +42825,7 @@ const deleteRecordAdapterFactory = (luvio) => {
42824
42825
  const config = validateAdapterConfig$3(untrustedConfig, deleteRecord_ConfigPropertyNames);
42825
42826
  // Invalid or incomplete config
42826
42827
  if (config === null) {
42827
- throw new Error(`Invalid config for "${adapterName$K}"`);
42828
+ throw new Error(`Invalid config for "${adapterName$J}"`);
42828
42829
  }
42829
42830
  return buildNetworkSnapshot$3(luvio, config);
42830
42831
  };
@@ -43557,7 +43558,6 @@ let getListInfoByName;
43557
43558
  let getListInfosByName;
43558
43559
  let getListRecordsByName;
43559
43560
  let getListUi;
43560
- let getListViewSummaryCollection;
43561
43561
  let getLookupActions;
43562
43562
  let getLookupMetadata;
43563
43563
  let getLookupRecords;
@@ -43611,7 +43611,6 @@ let unstable_getListInfoByName_imperative;
43611
43611
  let getListInfosByName_imperative;
43612
43612
  let unstable_getListRecordsByName_imperative;
43613
43613
  let unstable_getListUi_imperative;
43614
- let getListViewSummaryCollection_imperative;
43615
43614
  let unstable_getLookupActions_imperative;
43616
43615
  let getLookupMetadata_imperative;
43617
43616
  let unstable_getLookupRecords_imperative;
@@ -43661,7 +43660,6 @@ const getListInfoByNameMetadata = { apiFamily: keyPrefix$1, name: adapterName$q,
43661
43660
  const getListInfosByNameMetadata = { apiFamily: keyPrefix$1, name: adapterName$r };
43662
43661
  const getListRecordsByNameMetadata = { apiFamily: keyPrefix$1, name: 'getListRecordsByName', ttl: 30000 };
43663
43662
  const getListUiMetadata = { apiFamily: keyPrefix$1, name: 'getListUi', ttl: 900000 };
43664
- const getListViewSummaryCollectionMetadata = { apiFamily: keyPrefix$1, name: adapterName$J };
43665
43663
  const getLookupActionsMetadata = { apiFamily: keyPrefix$1, name: adapterName$F, ttl: 300000 };
43666
43664
  const getLookupMetadataMetadata = { apiFamily: keyPrefix$1, name: adapterName$7, ttl: 30000 };
43667
43665
  const getLookupRecordsMetadata = { apiFamily: keyPrefix$1, name: 'getLookupRecords' };
@@ -43712,7 +43710,6 @@ function bindExportsTo$1(luvio) {
43712
43710
  const getListInfosByName_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getListInfosByName', getListInfosByNameAdapterFactory), getListInfosByNameMetadata);
43713
43711
  const getListRecordsByName_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getListRecordsByName', factory$a), getListRecordsByNameMetadata);
43714
43712
  const getListUi_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getListUi', factory$g), getListUiMetadata);
43715
- const getListViewSummaryCollection_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getListViewSummaryCollection', getListViewSummaryCollectionAdapterFactory), getListViewSummaryCollectionMetadata);
43716
43713
  const getLookupActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getLookupActions', getLookupActionsAdapterFactory), getLookupActionsMetadata);
43717
43714
  const getLookupMetadata_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getLookupMetadata', getLookupMetadataAdapterFactory), getLookupMetadataMetadata);
43718
43715
  const getLookupRecords_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getLookupRecords', factory$9), getLookupRecordsMetadata);
@@ -43771,7 +43768,6 @@ function bindExportsTo$1(luvio) {
43771
43768
  getListInfosByName: createWireAdapterConstructor(luvio, getListInfosByName_ldsAdapter, getListInfosByNameMetadata),
43772
43769
  getListRecordsByName: createWireAdapterConstructor(luvio, getListRecordsByName_ldsAdapter, getListRecordsByNameMetadata),
43773
43770
  getListUi: createWireAdapterConstructor(luvio, getListUi_ldsAdapter, getListUiMetadata),
43774
- getListViewSummaryCollection: createWireAdapterConstructor(luvio, getListViewSummaryCollection_ldsAdapter, getListViewSummaryCollectionMetadata),
43775
43771
  getLookupActions: createWireAdapterConstructor(luvio, getLookupActions_ldsAdapter, getLookupActionsMetadata),
43776
43772
  getLookupMetadata: createWireAdapterConstructor(luvio, getLookupMetadata_ldsAdapter, getLookupMetadataMetadata),
43777
43773
  getLookupRecords: createWireAdapterConstructor(luvio, getLookupRecords_ldsAdapter, getLookupRecordsMetadata),
@@ -43825,7 +43821,6 @@ function bindExportsTo$1(luvio) {
43825
43821
  getListInfosByName_imperative: createImperativeAdapter(luvio, getListInfosByName_ldsAdapter, getListInfosByNameMetadata),
43826
43822
  unstable_getListRecordsByName_imperative: createImperativeAdapter(luvio, getListRecordsByName_ldsAdapter, getListRecordsByNameMetadata),
43827
43823
  unstable_getListUi_imperative: createImperativeAdapter(luvio, getListUi_ldsAdapter, getListUiMetadata),
43828
- getListViewSummaryCollection_imperative: createImperativeAdapter(luvio, getListViewSummaryCollection_ldsAdapter, getListViewSummaryCollectionMetadata),
43829
43824
  unstable_getLookupActions_imperative: createImperativeAdapter(luvio, getLookupActions_ldsAdapter, getLookupActionsMetadata),
43830
43825
  getLookupMetadata_imperative: createImperativeAdapter(luvio, getLookupMetadata_ldsAdapter, getLookupMetadataMetadata),
43831
43826
  unstable_getLookupRecords_imperative: createImperativeAdapter(luvio, getLookupRecords_ldsAdapter, getLookupRecordsMetadata),
@@ -43882,7 +43877,6 @@ withDefaultLuvio((luvio) => {
43882
43877
  getListInfosByName,
43883
43878
  getListRecordsByName,
43884
43879
  getListUi,
43885
- getListViewSummaryCollection,
43886
43880
  getLookupActions,
43887
43881
  getLookupMetadata,
43888
43882
  getLookupRecords,
@@ -43935,7 +43929,6 @@ withDefaultLuvio((luvio) => {
43935
43929
  getListInfosByName_imperative,
43936
43930
  unstable_getListRecordsByName_imperative,
43937
43931
  unstable_getListUi_imperative,
43938
- getListViewSummaryCollection_imperative,
43939
43932
  unstable_getLookupActions_imperative,
43940
43933
  getLookupMetadata_imperative,
43941
43934
  unstable_getLookupRecords_imperative,
@@ -44008,7 +44001,7 @@ withDefaultLuvio((luvio) => {
44008
44001
  dropFunction: instrumentation$2.notifyRecordUpdateAvailableDropped,
44009
44002
  });
44010
44003
  });
44011
- // version: 1.147.0-10ad1ac43
44004
+ // version: 1.147.2-be9827ebc
44012
44005
 
44013
44006
  var caseSensitiveUserId = '005B0000000GR4OIAW';
44014
44007
 
@@ -52682,367 +52675,16 @@ function isRecordType(type) {
52682
52675
  return Boolean(interfaces.find((iface) => iface.name === 'Record'));
52683
52676
  }
52684
52677
 
52685
- const baseTypeDefinitions = /* GraphQL */ `
52686
- schema {
52687
- query: Query
52688
- }
52689
-
52690
- type Query {
52691
- uiapi: UIAPI!
52692
- }
52693
-
52694
- type UIAPI {
52695
- query: RecordQuery!
52696
- relatedListByName(parentApiName: String!, relatedListName: String!): RelatedListInfo
52697
- objectInfos(apiNames: [String]): [ObjectInfo]
52698
- }
52699
-
52700
- type RecordQuery {
52701
- # Types cannot be declared empty so this is a no-op query as a placeholder;
52702
- # The RecordQuery will be extended by ObjectInfos at run-time as needed
52703
- _: Boolean
52704
- }
52705
-
52706
- interface Record {
52707
- Id: ID!
52708
- ApiName: String!
52709
- WeakEtag: Long!
52710
- DisplayValue: String
52711
- LastModifiedById: IDValue
52712
- LastModifiedDate: DateTimeValue
52713
- SystemModstamp: DateTimeValue
52714
- RecordTypeId: IDValue
52715
- _drafts: JSON
52716
- }
52717
-
52718
- type RecordRepresentation implements Record {
52719
- Id: ID!
52720
- ApiName: String!
52721
- DisplayValue: String
52722
- LastModifiedById: IDValue
52723
- LastModifiedDate: DateTimeValue
52724
- RecordTypeId: IDValue
52725
- SystemModstamp: DateTimeValue
52726
- WeakEtag: Long!
52727
- _drafts: JSON
52728
- }
52729
-
52730
- type RelatedListInfo {
52731
- childApiName: String!
52732
- relatedListName: String!
52733
- label: String!
52734
- displayColumns: [ListColumn!]!
52735
- orderedByInfo: [ListOrder!]!
52736
- parentApiName: String!
52737
- fieldApiName: String!
52738
- }
52739
- type ListColumn {
52740
- fieldApiName: String!
52741
- label: String!
52742
- lookupId: String
52743
- sortable: Boolean
52744
- }
52745
-
52746
- type ListOrder {
52747
- fieldApiName: String!
52748
- sortDirection: ResultOrder
52749
- }
52750
-
52751
- enum ResultOrder {
52752
- ASC
52753
- DESC
52754
- }
52755
-
52756
- interface FieldValue {
52757
- displayValue: String
52758
- }
52759
- directive @category(name: String) on FIELD
52760
-
52761
- scalar Base64
52762
- scalar Boolean
52763
- scalar Currency
52764
- scalar Date
52765
- scalar DateTime
52766
- scalar Double
52767
- scalar Email
52768
- scalar EncryptedString
52769
- scalar Float
52770
- scalar ID
52771
- scalar Int
52772
- scalar JSON
52773
- scalar Latitude
52774
- scalar Long
52775
- scalar Longitude
52776
- scalar LongTextArea
52777
- scalar MultiPicklist
52778
- scalar Percent
52779
- scalar PhoneNumber
52780
- scalar Picklist
52781
- scalar RichTextArea
52782
- scalar String
52783
- scalar TextArea
52784
- scalar Time
52785
- scalar Url
52786
-
52787
- type PageInfo {
52788
- hasNextPage: Boolean!
52789
- hasPreviousPage: Boolean!
52790
- startCursor: String
52791
- endCursor: String
52792
- }
52793
- type IDValue implements FieldValue {
52794
- value: ID
52795
- displayValue: String
52796
- }
52797
- type StringValue implements FieldValue {
52798
- value: String
52799
- displayValue: String
52800
- label: String
52801
- }
52802
- type TextAreaValue implements FieldValue {
52803
- value: TextArea
52804
- displayValue: String
52805
- }
52806
- type TimeValue implements FieldValue {
52807
- value: Time
52808
- displayValue: String
52809
- format: String
52810
- }
52811
- type UrlValue implements FieldValue {
52812
- value: Url
52813
- displayValue: String
52814
- }
52815
- type Base64Value implements FieldValue {
52816
- value: Base64
52817
- displayValue: String
52818
- }
52819
- type BooleanValue implements FieldValue {
52820
- value: Boolean
52821
- displayValue: String
52822
- }
52823
- type CurrencyValue implements FieldValue {
52824
- value: Currency
52825
- displayValue: String
52826
- format: String
52827
- }
52828
- type DateValue implements FieldValue {
52829
- value: Date
52830
- displayValue: String
52831
- format: String
52832
- }
52833
- type DoubleValue implements FieldValue {
52834
- value: Double
52835
- displayValue: String
52836
- format: String
52837
- }
52838
- type IntValue implements FieldValue {
52839
- value: Int
52840
- displayValue: String
52841
- format: String
52842
- }
52843
- type DateTimeValue implements FieldValue {
52844
- value: DateTime
52845
- displayValue: String
52846
- format: String
52847
- }
52848
- type EmailValue implements FieldValue {
52849
- value: Email
52850
- displayValue: String
52851
- }
52852
- type PicklistValue implements FieldValue {
52853
- value: Picklist
52854
- displayValue: String
52855
- label: String
52856
- }
52857
- type MultiPicklistValue implements FieldValue {
52858
- value: MultiPicklist
52859
- displayValue: String
52860
- label: String
52861
- }
52862
- type PercentValue implements FieldValue {
52863
- value: Percent
52864
- displayValue: String
52865
- format: String
52866
- }
52678
+ var uiapiSchemaString = "scalar String\nscalar DateTime\nscalar Currency\nscalar ID\nscalar Boolean\nscalar Longitude\nscalar Float\nscalar MultiPicklist\nscalar Base64\nscalar Url\nscalar PhoneNumber\nscalar Email\nscalar TextArea\nscalar Latitude\nscalar Picklist\nscalar RichTextArea\nscalar EncryptedString\nscalar Double\nscalar Long\nscalar JSON\nscalar Time\nscalar Int\nscalar Percent\nscalar LongTextArea\nscalar Date\ntype PercentAggregate implements FieldValue {\n value: Percent\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n format: String\n max: PercentValue\n min: PercentValue\n sum: PercentValue\n}\n\ntype StringAggregate implements FieldValue {\n value: String\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n label: String\n max: StringValue\n min: StringValue\n}\n\ntype Query {\n uiapi: UIAPI!\n rateLimit: RateLimit\n}\n\ninput EmailOperators {\n eq: Email\n ne: Email\n like: Email\n lt: Email\n gt: Email\n lte: Email\n gte: Email\n in: [Email]\n nin: [Email]\n}\n\ninput PolymorphicParentRelationshipRecordOrderBy @generic {\n RecordOrderBy: RecordOrderBy @fieldCategory\n}\n\ninput DoubleOperators {\n eq: Double\n ne: Double\n lt: Double\n gt: Double\n lte: Double\n gte: Double\n in: [Double]\n nin: [Double]\n}\n\ntype DateOnlyAggregation {\n value: Date\n format: String\n}\n\ntype DateAggregate implements FieldValue {\n value: Date\n displayValue: String\n calendarMonth: DateFunctionAggregation\n calendarQuarter: DateFunctionAggregation\n calendarYear: DateFunctionAggregation\n count: LongValue\n countDistinct: LongValue\n dayInMonth: DateFunctionAggregation\n dayInWeek: DateFunctionAggregation\n dayInYear: DateFunctionAggregation\n fiscalMonth: DateFunctionAggregation\n fiscalQuarter: DateFunctionAggregation\n fiscalYear: DateFunctionAggregation\n format: String\n grouping: IntValue\n max: DateValue\n min: DateValue\n weekInMonth: DateFunctionAggregation\n weekInYear: DateFunctionAggregation\n}\n\ninput PolymorphicParentRelationshipGroupBy @generic {\n RecordGroupBy: RecordGroupBy @fieldCategory\n}\n\nenum GroupByFunction {\n DAY_IN_WEEK\n DAY_IN_MONTH\n DAY_IN_YEAR\n WEEK_IN_MONTH\n WEEK_IN_YEAR\n CALENDAR_MONTH\n CALENDAR_QUARTER\n CALENDAR_YEAR\n FISCAL_MONTH\n FISCAL_QUARTER\n FISCAL_YEAR\n DAY_ONLY\n HOUR_IN_DAY\n}\n\ntype RecordTypeInfo {\n available: Boolean!\n defaultRecordTypeMapping: Boolean!\n master: Boolean!\n name: String\n recordTypeId: ID\n}\n\ntype BooleanValue implements FieldValue {\n value: Boolean\n displayValue: String\n}\n\ntype ReferenceToInfo {\n ApiName: String!\n nameFields: [String]!\n objectInfo: ObjectInfo\n}\n\ninterface FieldValue {\n displayValue: String\n}\n\ntype LongitudeValue implements FieldValue {\n value: Longitude\n displayValue: String\n}\n\ntype StringValue implements FieldValue {\n value: String\n displayValue: String\n label: String\n}\n\ntype IntValue implements FieldValue {\n value: Int\n displayValue: String\n format: String\n}\n\ntype UrlValue implements FieldValue {\n value: Url\n displayValue: String\n}\n\ninput IdOperators {\n eq: ID\n ne: ID\n lt: ID\n gt: ID\n lte: ID\n gte: ID\n in: [ID]\n nin: [ID]\n inq: JoinInput\n ninq: JoinInput\n}\n\ntype LongAggregate implements FieldValue {\n value: Long\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n format: String\n grouping: IntValue\n max: LongValue\n min: LongValue\n sum: LongValue\n}\n\ntype PhoneNumberAggregate implements FieldValue {\n value: PhoneNumber\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n max: PhoneNumberValue\n min: PhoneNumberValue\n}\n\ninput TimeOperators {\n eq: Time\n ne: Time\n lt: Time\n gt: Time\n lte: Time\n gte: Time\n in: [Time]\n nin: [Time]\n}\n\ntype PicklistValue implements FieldValue {\n value: Picklist\n displayValue: String\n label: String\n}\n\ntype CurrencyAggregate implements FieldValue {\n value: Currency\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n format: String\n max: CurrencyValue\n min: CurrencyValue\n sum: CurrencyValue\n}\n\ntype RelatedListInfo {\n childApiName: String!\n relatedListName: String!\n label: String!\n displayColumns: [ListColumn!]!\n orderedByInfo: [ListOrder!]!\n parentApiName: String!\n fieldApiName: String!\n}\n\ninput StringOperators {\n eq: String\n ne: String\n like: String\n lt: String\n gt: String\n lte: String\n gte: String\n in: [String]\n nin: [String]\n}\n\ntype UIAPI {\n query: RecordQuery!\n aggregate: RecordQueryAggregate!\n objectInfos(apiNames: [String]): [ObjectInfo]\n relatedListByName(parentApiName: String!, relatedListName: String!): RelatedListInfo\n}\n\ninput MultiPicklistOperators {\n eq: MultiPicklist\n ne: MultiPicklist\n includes: [MultiPicklist]\n excludes: [MultiPicklist]\n}\n\ntype DateTimeAggregate implements FieldValue {\n value: DateTime\n displayValue: String\n calendarMonth: DateFunctionAggregation\n calendarQuarter: DateFunctionAggregation\n calendarYear: DateFunctionAggregation\n count: LongValue\n countDistinct: LongValue\n dayInMonth: DateFunctionAggregation\n dayInWeek: DateFunctionAggregation\n dayInYear: DateFunctionAggregation\n dayOnly: DateOnlyAggregation\n fiscalMonth: DateFunctionAggregation\n fiscalQuarter: DateFunctionAggregation\n fiscalYear: DateFunctionAggregation\n format: String\n hourInDay: DateFunctionAggregation\n max: DateTimeValue\n min: DateTimeValue\n weekInMonth: DateFunctionAggregation\n weekInYear: DateFunctionAggregation\n}\n\ninput BooleanOperators {\n eq: Boolean\n ne: Boolean\n}\n\ntype EmailAggregate implements FieldValue {\n value: Email\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n max: EmailValue\n min: EmailValue\n}\n\ninput GroupByDateFunction {\n function: GroupByFunction\n}\n\ntype RichTextAreaValue implements FieldValue {\n value: RichTextArea\n displayValue: String\n}\n\ntype MultiPicklistValue implements FieldValue {\n value: MultiPicklist\n displayValue: String\n label: String\n}\n\ntype TimeAggregate implements FieldValue {\n value: Time\n displayValue: String\n format: String\n hourInDay: DateFunctionAggregation\n}\n\ntype __Type {\n kind: __TypeKind!\n name: String\n description: String\n fields(includeDeprecated: Boolean = false): [__Field!]\n interfaces: [__Type!]\n possibleTypes: [__Type!]\n enumValues(includeDeprecated: Boolean = false): [__EnumValue!]\n inputFields: [__InputValue!]\n ofType: __Type\n}\n\ntype ListColumn {\n fieldApiName: String!\n label: String!\n lookupId: String\n sortable: Boolean\n}\n\ntype LatitudeAggregate implements FieldValue {\n value: Latitude\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n max: LatitudeValue\n min: LatitudeValue\n sum: DoubleValue\n}\n\ninput CurrencyOperators {\n eq: Currency\n ne: Currency\n lt: Currency\n gt: Currency\n lte: Currency\n gte: Currency\n in: [Currency]\n nin: [Currency]\n}\n\ninput DistanceInput {\n latitude: Latitude!\n longitude: Longitude!\n}\n\nunion PolymorphicParentRelationship @generic = RecordRepresentation\n\ntype LongTextAreaValue implements FieldValue {\n value: LongTextArea\n displayValue: String\n}\n\ntype LatitudeValue implements FieldValue {\n value: Latitude\n displayValue: String\n}\n\ninput OrderByClause {\n order: ResultOrder\n nulls: NullOrder\n}\n\ninput GroupByClause {\n group: Boolean\n}\n\ntype RecordAggregateConnection @generic {\n edges: [RecordAggregateEdge]\n pageInfo: PageInfo!\n totalCount: Int!\n}\n\ntype LongitudeAggregate implements FieldValue {\n value: Longitude\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n max: LongitudeValue\n min: LongitudeValue\n sum: DoubleValue\n}\n\ntype RecordEdge @generic {\n node: RecordRepresentation\n cursor: String!\n}\n\ntype DateValue implements FieldValue {\n value: Date\n displayValue: String\n format: String\n}\n\ninput URLOperators {\n eq: Url\n ne: Url\n like: Url\n lt: Url\n gt: Url\n lte: Url\n gte: Url\n in: [Url]\n nin: [Url]\n}\n\ninput LongOperators {\n eq: Long\n ne: Long\n lt: Long\n gt: Long\n lte: Long\n gte: Long\n in: [Long]\n nin: [Long]\n}\n\nenum DataType {\n STRING\n TEXTAREA\n PHONE\n EMAIL\n URL\n ENCRYPTEDSTRING\n BOOLEAN\n CURRENCY\n INT\n LONG\n DOUBLE\n PERCENT\n DATETIME\n TIME\n DATE\n REFERENCE\n PICKLIST\n MULTIPICKLIST\n ADDRESS\n LOCATION\n BASE64\n COMPLEXVALUE\n COMBOBOX\n JSON\n JUNCTIONIDLIST\n ANYTYPE\n}\n\nenum NullOrder {\n LAST\n FIRST\n}\n\ntype PhoneNumberValue implements FieldValue {\n value: PhoneNumber\n displayValue: String\n}\n\n# Cannot have empty enum\n# enum RecordScope @generic {\n# }\n\ntype DoubleAggregate implements FieldValue {\n value: Double\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n format: String\n max: DoubleValue\n min: DoubleValue\n sum: DoubleValue\n}\n\ntype __Field {\n name: String!\n description: String\n args: [__InputValue!]!\n type: __Type!\n isDeprecated: Boolean!\n deprecationReason: String\n}\n\ninput DateOperators {\n eq: DateInput\n ne: DateInput\n lt: DateInput\n gt: DateInput\n lte: DateInput\n gte: DateInput\n in: [DateInput]\n nin: [DateInput]\n DAY_IN_WEEK: DateFunctionInput\n DAY_IN_MONTH: DateFunctionInput\n DAY_IN_YEAR: DateFunctionInput\n WEEK_IN_MONTH: DateFunctionInput\n WEEK_IN_YEAR: DateFunctionInput\n CALENDAR_MONTH: DateFunctionInput\n CALENDAR_QUARTER: DateFunctionInput\n CALENDAR_YEAR: DateFunctionInput\n FISCAL_MONTH: DateFunctionInput\n FISCAL_QUARTER: DateFunctionInput\n FISCAL_YEAR: DateFunctionInput\n}\n\ninput GeolocationInput {\n latitude: Latitude!\n longitude: Longitude!\n radius: Float!\n unit: Unit!\n}\n\ninput JoinInput {\n Record: RecordFilter @fieldCategory\n ApiName: String\n}\n\ninput TextAreaOperators {\n eq: TextArea\n ne: TextArea\n like: TextArea\n lt: TextArea\n gt: TextArea\n lte: TextArea\n gte: TextArea\n in: [TextArea]\n nin: [TextArea]\n}\n\ntype TextAreaValue implements FieldValue {\n value: TextArea\n displayValue: String\n}\n\ninput PercentOperators {\n eq: Percent\n ne: Percent\n lt: Percent\n gt: Percent\n lte: Percent\n gte: Percent\n in: [Percent]\n nin: [Percent]\n}\n\ntype DoubleValue implements FieldValue {\n value: Double\n displayValue: String\n format: String\n}\n\ntype IDAggregate implements FieldValue {\n value: ID\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n max: IDValue\n min: IDValue\n}\n\ntype __InputValue {\n name: String!\n description: String\n type: __Type!\n defaultValue: String\n}\n\ntype RecordAggregateEdge @generic {\n node: RecordResult\n cursor: String!\n}\n\ntype __Directive {\n name: String\n description: String\n locations: [__DirectiveLocation!]\n args: [__InputValue!]!\n}\n\ntype ThemeInfo {\n color: String\n iconUrl: String\n}\n\ntype UrlAggregate implements FieldValue {\n value: Url\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n max: UrlValue\n min: UrlValue\n}\n\nenum DateLiteral {\n THIS_WEEK\n THIS_FISCAL_QUARTER\n NEXT_YEAR\n TODAY\n LAST_WEEK\n LAST_YEAR\n YESTERDAY\n NEXT_MONTH\n NEXT_FISCAL_YEAR\n NEXT_WEEK\n NEXT_90_DAYS\n LAST_FISCAL_QUARTER\n LAST_FISCAL_YEAR\n THIS_YEAR\n THIS_MONTH\n THIS_QUARTER\n LAST_90_DAYS\n NEXT_FISCAL_QUARTER\n THIS_FISCAL_YEAR\n TOMORROW\n NEXT_QUARTER\n LAST_MONTH\n LAST_QUARTER\n}\n\ntype __EnumValue {\n name: String!\n description: String\n isDeprecated: Boolean!\n deprecationReason: String\n}\n\ntype RecordRepresentation implements Record @generic{\n Id: ID!\n ApiName: String!\n WeakEtag: Long!\n DisplayValue: String\n LastModifiedById: IDValue\n LastModifiedDate: DateTimeValue\n SystemModstamp: DateTimeValue\n RecordTypeId(fallback: Boolean): IDValue\n IntValue: IntValue @fieldCategory\n StringValue: StringValue @fieldCategory\n BooleanValue: BooleanValue @fieldCategory\n IDValue: IDValue @fieldCategory\n DateTimeValue: DateTimeValue @fieldCategory\n TimeValue: TimeValue @fieldCategory\n DateValue: DateValue @fieldCategory\n TextAreaValue: TextAreaValue @fieldCategory\n LongTextAreaValue: LongTextAreaValue @fieldCategory\n RichTextAreaValue: RichTextAreaValue @fieldCategory\n PhoneNumberValue: PhoneNumberValue @fieldCategory\n EmailValue: EmailValue @fieldCategory\n UrlValue: UrlValue @fieldCategory\n EncryptedStringValue: EncryptedStringValue @fieldCategory\n CurrencyValue: CurrencyValue @fieldCategory\n LongitudeValue: LongitudeValue @fieldCategory\n LatitudeValue: LatitudeValue @fieldCategory\n PicklistValue: PicklistValue @fieldCategory\n MultiPicklistValue: MultiPicklistValue @fieldCategory\n LongValue: LongValue @fieldCategory\n DoubleValue: DoubleValue @fieldCategory\n PercentValue: PercentValue @fieldCategory\n Base64Value: Base64Value @fieldCategory\n JSONValue: JSONValue @fieldCategory\n parentRelationship: RecordRepresentation @fieldCategory\n polymorphicParentRelationship: PolymorphicParentRelationship @fieldCategory\n childRelationship(first: Int, after: String, where: RecordFilter, orderBy: RecordOrderBy): RecordConnection @fieldCategory\n}\n\ntype IDValue implements FieldValue {\n value: ID\n displayValue: String\n}\n\nenum Unit {\n MI\n KM\n}\n\ninput OrderByGeolocationClause {\n distance: DistanceInput\n order: ResultOrder\n nulls: NullOrder\n}\n\ntype TextAreaAggregate implements FieldValue {\n value: TextArea\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n max: TextAreaValue\n min: TextAreaValue\n}\n\nenum GroupByType {\n GROUP_BY\n ROLLUP\n CUBE\n}\n\nenum ResultOrder {\n DESC\n ASC\n}\n\ninput RecordOrderBy @generic {\n orderableField: OrderByClause @fieldCategory\n orderableGeolocationField: OrderByGeolocationClause @fieldCategory\n orderableParentRelationship: RecordOrderBy @fieldCategory\n orderablePolymorphicParentRelationship: PolymorphicParentRelationshipRecordOrderBy @fieldCategory\n}\n\ninput PicklistOperators {\n eq: Picklist\n ne: Picklist\n in: [Picklist]\n nin: [Picklist]\n}\n\ninput RecordFilter @generic {\n and: [RecordFilter]\n or: [RecordFilter]\n not: RecordFilter\n parentRelationshipRecordFilter: RecordFilter @fieldCategory\n polymorphicParentRelationshipRecordFilter: PolymorphicParentRelationshipRecordFilter @fieldCategory\n IntegerOperator: IntegerOperators @fieldCategory\n LongOperator: LongOperators @fieldCategory\n StringOperator: StringOperators @fieldCategory\n DoubleOperator: DoubleOperators @fieldCategory\n PercentOperator: PercentOperators @fieldCategory\n LongitudeOperator: LongitudeOperators @fieldCategory\n LatitudeOperator: LatitudeOperators @fieldCategory\n EmailOperator: EmailOperators @fieldCategory\n TextAreaOperator: TextAreaOperators @fieldCategory\n LongTextAreaOperator: LongTextAreaOperators @fieldCategory\n URLOperator: URLOperators @fieldCategory\n PhoneNumberOperator: PhoneNumberOperators @fieldCategory\n BooleanOperator: BooleanOperators @fieldCategory\n IdOperator: IdOperators @fieldCategory\n CurrencyOperator: CurrencyOperators @fieldCategory\n TimeOperator: TimeOperators @fieldCategory\n DateOperator: DateOperators @fieldCategory\n DateTimeOperator: DateTimeOperators @fieldCategory\n PicklistOperator: PicklistOperators @fieldCategory\n MultiPicklistOperator: MultiPicklistOperators @fieldCategory\n GeolocationOperator: GeolocationOperators @fieldCategory\n}\n\ntype TimeValue implements FieldValue {\n value: Time\n displayValue: String\n format: String\n}\n\ninput GeolocationOperators {\n lt: GeolocationInput\n gt: GeolocationInput\n}\n\ntype PicklistAggregate implements FieldValue {\n value: Picklist\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n label: String\n max: PicklistValue\n min: PicklistValue\n}\n\ninput LatitudeOperators {\n eq: Latitude\n ne: Latitude\n lt: Latitude\n gt: Latitude\n lte: Latitude\n gte: Latitude\n in: [Latitude]\n nin: [Latitude]\n}\n\ntype DateTimeValue implements FieldValue {\n value: DateTime\n displayValue: String\n format: String\n}\n\nenum __DirectiveLocation {\n QUERY\n MUTATION\n FIELD\n FRAGMENT_DEFINITION\n FRAGMENT_SPREAD\n INLINE_FRAGMENT\n SCHEMA\n SCALAR\n OBJECT\n FIELD_DEFINITION\n ARGUMENT_DEFINITION\n INTERFACE\n UNION\n ENUM\n ENUM_VALUE\n INPUT_OBJECT\n INPUT_FIELD_DEFINITION\n}\n\ntype IntAggregate implements FieldValue {\n value: Int\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n format: String\n grouping: IntValue\n max: IntValue\n min: IntValue\n sum: LongValue\n}\n\ntype ListOrder {\n fieldApiName: String!\n sortDirection: ResultOrder\n}\n\ntype RecordAggregate @generic {\n ApiName: String!\n BooleanAggregate: BooleanAggregate @fieldCategory\n CurrencyAggregate: CurrencyAggregate @fieldCategory\n DateAggregate: DateAggregate @fieldCategory\n DoubleAggregate: DoubleAggregate @fieldCategory\n EmailAggregate: EmailAggregate @fieldCategory\n IDAggregate: IDAggregate @fieldCategory\n IntAggregate: IntAggregate @fieldCategory\n LatitudeAggregate: LatitudeAggregate @fieldCategory\n LongitudeAggregate: LongitudeAggregate @fieldCategory\n LongAggregate: LongAggregate @fieldCategory\n PercentAggregate: PercentAggregate @fieldCategory\n PhoneNumberAggregate: PhoneNumberAggregate @fieldCategory\n PicklistAggregate: PicklistAggregate @fieldCategory\n StringAggregate: StringAggregate @fieldCategory\n TextAreaAggregate: TextAreaAggregate @fieldCategory\n TimeAggregate: TimeAggregate @fieldCategory\n UrlAggregate: UrlAggregate @fieldCategory\n}\n\ntype JSONValue implements FieldValue {\n value: JSON\n displayValue: String\n}\n\ntype EmailValue implements FieldValue {\n value: Email\n displayValue: String\n}\n\ntype LongValue implements FieldValue {\n value: Long\n displayValue: String\n format: String\n}\n\ninput DateFunctionInput {\n value: LongOperators\n convertTimezoneValue: LongOperators\n}\n\ntype DependentField {\n controllingField: String!\n dependentFields: [String]!\n}\n\ninput LongTextAreaOperators {\n eq: LongTextArea\n ne: LongTextArea\n like: LongTextArea\n lt: LongTextArea\n gt: LongTextArea\n lte: LongTextArea\n gte: LongTextArea\n in: [LongTextArea]\n nin: [LongTextArea]\n}\n\nenum __TypeKind {\n SCALAR\n OBJECT\n INTERFACE\n UNION\n ENUM\n INPUT_OBJECT\n LIST\n NON_NULL\n}\n\ntype PercentValue implements FieldValue {\n value: Percent\n displayValue: String\n format: String\n}\n\ninput DateTimeOperators {\n eq: DateTimeInput\n ne: DateTimeInput\n lt: DateTimeInput\n gt: DateTimeInput\n lte: DateTimeInput\n gte: DateTimeInput\n in: [DateTimeInput]\n nin: [DateTimeInput]\n DAY_IN_WEEK: DateFunctionInput\n DAY_IN_MONTH: DateFunctionInput\n DAY_IN_YEAR: DateFunctionInput\n WEEK_IN_MONTH: DateFunctionInput\n WEEK_IN_YEAR: DateFunctionInput\n CALENDAR_MONTH: DateFunctionInput\n CALENDAR_QUARTER: DateFunctionInput\n CALENDAR_YEAR: DateFunctionInput\n FISCAL_MONTH: DateFunctionInput\n FISCAL_QUARTER: DateFunctionInput\n FISCAL_YEAR: DateFunctionInput\n DAY_ONLY: DateTimeFunctionInput\n HOUR_IN_DAY: DateFunctionInput\n}\n\ntype BooleanAggregate implements FieldValue {\n value: Boolean\n displayValue: String\n grouping: IntValue\n}\n\ntype RecordQueryAggregate {\n recordQueryAggregate(first: Int, after: String, where: RecordFilter, orderBy: RecordOrderBy, scope: String, groupBy: RecordGroupBy): RecordAggregateConnection @fieldCategory\n}\n\ntype RecordConnection @generic {\n edges: [RecordEdge]\n pageInfo: PageInfo!\n totalCount: Int!\n}\n\ntype FilteredLookupInfo {\n controllingFields: [String]!\n dependent: Boolean!\n optionalFilter: Boolean!\n}\n\ninput PhoneNumberOperators {\n eq: PhoneNumber\n ne: PhoneNumber\n like: PhoneNumber\n lt: PhoneNumber\n gt: PhoneNumber\n lte: PhoneNumber\n gte: PhoneNumber\n in: [PhoneNumber]\n nin: [PhoneNumber]\n}\n\ntype ObjectInfo {\n ApiName: String!\n childRelationships: [ChildRelationship]!\n createable: Boolean!\n custom: Boolean!\n defaultRecordTypeId: ID\n deletable: Boolean!\n dependentFields: [DependentField]!\n feedEnabled: Boolean!\n fields: [Field]!\n keyPrefix: String\n label: String\n labelPlural: String\n layoutable: Boolean!\n mruEnabled: Boolean!\n nameFields: [String]!\n queryable: Boolean!\n recordTypeInfos: [RecordTypeInfo]!\n searchable: Boolean!\n themeInfo: ThemeInfo\n updateable: Boolean!\n}\n\ninput LongitudeOperators {\n eq: Longitude\n ne: Longitude\n lt: Longitude\n gt: Longitude\n lte: Longitude\n gte: Longitude\n in: [Longitude]\n nin: [Longitude]\n}\n\ntype Field {\n ApiName: String!\n calculated: Boolean!\n compound: Boolean!\n compoundComponentName: String\n compoundFieldName: String\n controllerName: String\n controllingFields: [String]!\n createable: Boolean!\n custom: Boolean!\n dataType: DataType\n extraTypeInfo: FieldExtraTypeInfo\n filterable: Boolean!\n filteredLookupInfo: FilteredLookupInfo\n highScaleNumber: Boolean!\n htmlFormatted: Boolean!\n inlineHelpText: String\n label: String\n nameField: Boolean!\n polymorphicForeignKey: Boolean!\n precision: Int\n reference: Boolean!\n referenceTargetField: String\n referenceToInfos: [ReferenceToInfo]!\n relationshipName: String\n required: Boolean!\n scale: Int\n searchPrefilterable: Boolean\n sortable: Boolean!\n updateable: Boolean!\n}\n\nenum FieldExtraTypeInfo {\n IMAGE_URL\n EXTERNAL_LOOKUP\n INDIRECT_LOOKUP\n PERSONNAME\n SWITCHABLE_PERSONNAME\n PLAINTEXTAREA\n RICHTEXTAREA\n}\n\ntype RateLimit {\n cost: Long\n limit: Long\n remaining: Long\n resetAt: DateTime\n}\n\ninput DateRange {\n last_n_days: Int\n next_n_days: Int\n last_n_weeks: Int\n next_n_weeks: Int\n last_n_months: Int\n next_n_months: Int\n last_n_quarters: Int\n next_n_quarters: Int\n last_n_fiscal_quarters: Int\n next_n_fiscal_quarters: Int\n last_n_years: Int\n next_n_years: Int\n last_n_fiscal_years: Int\n next_n_fiscal_years: Int\n n_days_ago: Int\n n_weeks_ago: Int\n n_months_ago: Int\n n_quarters_ago: Int\n n_years_ago: Int\n n_fiscal_quarters_ago: Int\n n_fiscal_years_ago: Int\n}\n\ninput DateTimeFunctionInput {\n value: DateTimePrimitiveOperators\n convertTimezoneValue: DateTimePrimitiveOperators\n}\n\ntype Base64Value implements FieldValue {\n value: Base64\n displayValue: String\n}\n\ninput IntegerOperators {\n eq: Int\n ne: Int\n lt: Int\n gt: Int\n lte: Int\n gte: Int\n in: [Int]\n nin: [Int]\n}\n\ntype EncryptedStringValue implements FieldValue {\n value: EncryptedString\n displayValue: String\n}\n\ninterface Record {\n Id: ID!\n ApiName: String!\n WeakEtag: Long!\n DisplayValue: String\n LastModifiedById: IDValue\n LastModifiedDate: DateTimeValue\n SystemModstamp: DateTimeValue\n RecordTypeId(fallback: Boolean): IDValue\n}\n\ninput PolymorphicParentRelationshipRecordFilter @generic {\n RecordFilter: RecordFilter @fieldCategory\n}\n\ntype __Schema {\n types: [__Type!]!\n queryType: __Type!\n mutationType: __Type\n directives: [__Directive!]!\n subscriptionType: __Type\n}\n\ninput DateTimeInput {\n value: DateTime\n literal: DateLiteral\n range: DateRange\n}\n\ninput DateTimePrimitiveOperators {\n eq: DateTime\n ne: DateTime\n lt: DateTime\n gt: DateTime\n lte: DateTime\n gte: DateTime\n in: [DateTime]\n nin: [DateTime]\n}\n\ntype ChildRelationship {\n childObjectApiName: String!\n fieldName: String\n junctionIdListNames: [String]!\n junctionReferenceTo: [String]!\n relationshipName: String\n objectInfo: ObjectInfo\n}\n\ntype RecordResult @generic {\n aggregate: RecordAggregate\n}\n\ntype PageInfo {\n hasNextPage: Boolean!\n hasPreviousPage: Boolean!\n startCursor: String\n endCursor: String\n}\n\ntype CurrencyValue implements FieldValue {\n value: Currency\n displayValue: String\n format: String\n}\n\ninput DateInput {\n value: Date\n literal: DateLiteral\n range: DateRange\n}\n\ninput RecordGroupBy @generic {\n groupableField: GroupByClause @fieldCategory\n groupableDateField: GroupByDateFunction @fieldCategory\n groupableParentRelationship: RecordGroupBy @fieldCategory\n groupablePolymorphicParentRelationship: PolymorphicParentRelationshipGroupBy @fieldCategory\n type: GroupByType = GROUP_BY\n}\n\ntype DateFunctionAggregation {\n value: Long\n format: String\n}\n\ntype RecordQuery {\n # scope should be type RecordScope but it cannot currently be used\n recordQuery(first: Int, after: String, where: RecordFilter, orderBy: RecordOrderBy, scope: String): RecordConnection @fieldCategory\n}\n\ndirective @generic on OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT\ndirective @fieldCategory on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION | ENUM_VALUE\ndirective @category on FIELD\n\n\n\n\n\n\n\n";
52867
52679
 
52680
+ // Define additional schema that is missing from uiapi that we use in local evaluation
52681
+ const additionalSchemaDefinitions = /* GraphQL */ `
52868
52682
  enum SupportedScopes {
52869
52683
  ASSIGNEDTOME
52870
52684
  MINE
52871
52685
  }
52872
-
52873
- type ObjectInfo {
52874
- ApiName: String!
52875
- childRelationships: [ChildRelationship]!
52876
- createable: Boolean!
52877
- custom: Boolean!
52878
- defaultRecordTypeId: ID
52879
- deletable: Boolean!
52880
- dependentFields: [DependentField]!
52881
- feedEnabled: Boolean!
52882
- fields: [Field]!
52883
- keyPrefix: String
52884
- label: String
52885
- labelPlural: String
52886
- layoutable: Boolean!
52887
- mergeable: Boolean!
52888
- mruEnabled: Boolean!
52889
- nameFields: [String]!
52890
- queryable: Boolean!
52891
- recordTypeInfos: [RecordTypeInfo]!
52892
- searchable: Boolean!
52893
- themeInfo: ThemeInfo
52894
- updateable: Boolean!
52895
- }
52896
-
52897
- type Field {
52898
- ApiName: String!
52899
- calculated: Boolean!
52900
- compound: Boolean!
52901
- compoundComponentName: String
52902
- compoundFieldName: String
52903
- controllerName: String
52904
- controllingFields: [String]!
52905
- createable: Boolean!
52906
- custom: Boolean!
52907
- dataType: DataType
52908
- extraTypeInfo: FieldExtraTypeInfo
52909
- filterable: Boolean!
52910
- filteredLookupInfo: FilteredLookupInfo
52911
- highScaleNumber: Boolean!
52912
- htmlFormatted: Boolean!
52913
- inlineHelpText: String
52914
- label: String
52915
- nameField: Boolean!
52916
- polymorphicForeignKey: Boolean!
52917
- precision: Int
52918
- reference: Boolean!
52919
- referenceTargetField: String
52920
- referenceToInfos: [ReferenceToInfo]!
52921
- relationshipName: String
52922
- required: Boolean!
52923
- scale: Int
52924
- sortable: Boolean!
52925
- updateable: Boolean!
52926
- picklistValues: PicklistValues
52927
- }
52928
-
52929
- type ChildRelationship {
52930
- childObjectApiName: String!
52931
- fieldName: String
52932
- junctionIdListNames: [String]!
52933
- junctionReferenceTo: [String]!
52934
- relationshipName: String
52935
- objectInfo: ObjectInfo
52936
- }
52937
-
52938
- type DependentField {
52939
- controllingField: String!
52940
- dependentFields: [String]!
52941
- }
52942
-
52943
- type RecordTypeInfo {
52944
- available: Boolean!
52945
- defaultRecordTypeMapping: Boolean!
52946
- master: Boolean!
52947
- name: String
52948
- recordTypeId: ID
52949
- }
52950
-
52951
- type ThemeInfo {
52952
- color: String
52953
- iconUrl: String
52954
- }
52955
-
52956
- enum DataType {
52957
- ADDRESS
52958
- BOOLEAN
52959
- COMBOBOX
52960
- COMPLEXVALUE
52961
- CURRENCY
52962
- DATE
52963
- DATETIME
52964
- DOUBLE
52965
- EMAIL
52966
- ENCRYPTEDSTRING
52967
- PICKLIST
52968
- BASE64
52969
- INT
52970
- JSON
52971
- LONG
52972
- LOCATION
52973
- MULTIPICKLIST
52974
- PERCENT
52975
- PHONE
52976
- REFERENCE
52977
- STRING
52978
- TEXTAREA
52979
- TIME
52980
- URL
52981
- ANYTYPE
52982
- JUNCTIONIDLIST
52983
- }
52984
-
52985
- enum FieldExtraTypeInfo {
52986
- EXTERNAL_LOOKUP
52987
- IMAGE_URL
52988
- INDIRECT_LOOKUP
52989
- PERSON_NAME
52990
- PLAIN_TEXT_AREA
52991
- RICH_TEXT_AREA
52992
- SWITCHABLE_PERSON_NAME
52993
- }
52994
-
52995
- type FilteredLookupInfo {
52996
- controllingFields: [String]!
52997
- dependent: Boolean!
52998
- optionalFilter: Boolean!
52999
- }
53000
-
53001
- type ReferenceToInfo {
53002
- ApiName: String!
53003
- nameFields: [String]!
53004
- objectInfo: ObjectInfo
53005
- }
53006
-
53007
- type PicklistValues {
53008
- controllerValues: [ControllerValue]!
53009
- defaultValue: ObjectInfoPicklistValue
53010
- values: [ObjectInfoPicklistValue]!
53011
- }
53012
-
53013
- type ControllerValue {
53014
- value: String
53015
- index: Int
53016
- }
53017
-
53018
- type ObjectInfoPicklistValue {
53019
- attributes: PicklistValueAttributes
53020
- label: String
53021
- validFor: [Int]!
53022
- value: String
53023
- }
53024
-
53025
- union PicklistValueAttributes =
53026
- CaseStatusPicklistValueAttributes
53027
- | LeadStatusPicklistValueAttributes
53028
- | OpportunityStagePicklistValueAttributes
53029
-
53030
- type CaseStatusPicklistValueAttributes {
53031
- closed: Boolean!
53032
- }
53033
-
53034
- type LeadStatusPicklistValueAttributes {
53035
- converted: Boolean!
53036
- picklistAttributesValueType: String
53037
- }
53038
-
53039
- type OpportunityStagePicklistValueAttributes {
53040
- closed: Boolean!
53041
- defaultProbability: Float
53042
- forecastCategoryName: String
53043
- won: Boolean!
53044
- }
53045
52686
  `;
52687
+ const baseTypeDefinitions = uiapiSchemaString + additionalSchemaDefinitions;
53046
52688
  /**
53047
52689
  *
53048
52690
  * @param objectInfos
@@ -53126,7 +52768,7 @@ function generateRecordQueries(objectInfos) {
53126
52768
  DisplayValue: String
53127
52769
  LastModifiedById: IDValue
53128
52770
  LastModifiedDate: DateTimeValue
53129
- RecordTypeId: IDValue
52771
+ RecordTypeId(fallback: Boolean): IDValue
53130
52772
  SystemModstamp: DateTimeValue
53131
52773
  WeakEtag: Long!
53132
52774
  _drafts: JSON
@@ -59786,6 +59428,7 @@ function primingSessionFactory(config) {
59786
59428
  let lazyDraftQueue;
59787
59429
  let lazyDraftManager;
59788
59430
  let lazyLuvio;
59431
+ let lazyInternalLuvio;
59789
59432
  let lazyEnvironment;
59790
59433
  let lazyBaseDurableStore;
59791
59434
  let lazyNetworkAdapter;
@@ -59818,7 +59461,8 @@ function getRuntime() {
59818
59461
  : {}, () => getIngestMetadataForInternalAdapters !== undefined
59819
59462
  ? getIngestMetadataForInternalAdapters()
59820
59463
  : {});
59821
- const { adapters: { getObjectInfo, getObjectInfos, getRecord }, durableEnvironment: internalAdapterDurableEnvironment, } = buildInternalAdapters(internalAdapterStore, lazyNetworkAdapter, internalAdapterDurableStore, (apiName, objectInfo) => lazyObjectInfoService.ensureObjectInfoCached(apiName, objectInfo));
59464
+ const { adapters: { getObjectInfo, getObjectInfos, getRecord }, durableEnvironment: internalAdapterDurableEnvironment, luvio: internalLuvio, } = buildInternalAdapters(internalAdapterStore, lazyNetworkAdapter, internalAdapterDurableStore, (apiName, objectInfo) => lazyObjectInfoService.ensureObjectInfoCached(apiName, objectInfo));
59465
+ lazyInternalLuvio = internalLuvio;
59822
59466
  getIngestRecordsForInternalAdapters =
59823
59467
  internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
59824
59468
  getIngestMetadataForInternalAdapters =
@@ -59901,6 +59545,7 @@ function getRuntime() {
59901
59545
  }
59902
59546
  return {
59903
59547
  luvio: lazyLuvio,
59548
+ internalLuvio: lazyInternalLuvio,
59904
59549
  environment: lazyEnvironment,
59905
59550
  draftManager: lazyDraftManager,
59906
59551
  draftQueue: lazyDraftQueue,
@@ -59927,7 +59572,7 @@ register({
59927
59572
  id: '@salesforce/lds-network-adapter',
59928
59573
  instrument: instrument$1,
59929
59574
  });
59930
- // version: 1.147.0-f9a768a91
59575
+ // version: 1.147.2-2b0ae2d38
59931
59576
 
59932
59577
  const { create: create$2, keys: keys$2 } = Object;
59933
59578
  const { stringify: stringify$1, parse: parse$1 } = JSON;
@@ -80772,7 +80417,7 @@ register({
80772
80417
  configuration: { ...configurationForGraphQLAdapters },
80773
80418
  instrument,
80774
80419
  });
80775
- // version: 1.147.0-10ad1ac43
80420
+ // version: 1.147.2-be9827ebc
80776
80421
 
80777
80422
  // On core the unstable adapters are re-exported with different names,
80778
80423
 
@@ -83010,7 +82655,7 @@ withDefaultLuvio((luvio) => {
83010
82655
  unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
83011
82656
  graphQLImperative = ldsAdapter;
83012
82657
  });
83013
- // version: 1.147.0-10ad1ac43
82658
+ // version: 1.147.2-be9827ebc
83014
82659
 
83015
82660
  var gqlApi = /*#__PURE__*/Object.freeze({
83016
82661
  __proto__: null,
@@ -83699,4 +83344,4 @@ const { luvio } = getRuntime();
83699
83344
  setDefaultLuvio({ luvio });
83700
83345
 
83701
83346
  export { createPrimingSession, draftManager, draftQueue, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, registerReportObserver, setMetadataTTL, setUiApiRecordTTL, subscribeToAdapter };
83702
- // version: 1.147.0-f9a768a91
83347
+ // version: 1.147.2-2b0ae2d38
@@ -3809,7 +3809,7 @@
3809
3809
  }
3810
3810
  callbacks.push(callback);
3811
3811
  }
3812
- // version: 1.147.0-f9a768a91
3812
+ // version: 1.147.2-2b0ae2d38
3813
3813
 
3814
3814
  // TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
3815
3815
  function instrumentAdapter$1(createFunction, _metadata) {
@@ -15233,7 +15233,7 @@
15233
15233
  updateReferenceMapWithKnownKey(ast, luvioDocumentNode);
15234
15234
  return luvioDocumentNode;
15235
15235
  }
15236
- // version: 1.147.0-f9a768a91
15236
+ // version: 1.147.2-2b0ae2d38
15237
15237
 
15238
15238
  function unwrap(data) {
15239
15239
  // The lwc-luvio bindings import a function from lwc called "unwrap".
@@ -16146,7 +16146,7 @@
16146
16146
  const { apiFamily, name } = metadata;
16147
16147
  return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
16148
16148
  }
16149
- // version: 1.147.0-f9a768a91
16149
+ // version: 1.147.2-2b0ae2d38
16150
16150
 
16151
16151
  /**
16152
16152
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -16796,7 +16796,7 @@
16796
16796
  };
16797
16797
  };
16798
16798
 
16799
- const VERSION$1a$1 = "fce88f94b1244707458c795247592939";
16799
+ const VERSION$1a$1 = "a51de242c746e5500a833e84dfaa2170";
16800
16800
  const select$1E = function ListScopeRepresentationSelect() {
16801
16801
  const { selections: ListScopeEntityRepresentation__selections, opaque: ListScopeEntityRepresentation__opaque, } = select$1G();
16802
16802
  const { selections: ListScopeRelatedEntityRepresentation__selections, opaque: ListScopeRelatedEntityRepresentation__opaque, } = select$1F();
@@ -16812,6 +16812,7 @@
16812
16812
  {
16813
16813
  name: 'entity',
16814
16814
  kind: 'Object',
16815
+ nullable: true,
16815
16816
  selections: ListScopeEntityRepresentation__selections
16816
16817
  },
16817
16818
  {
@@ -16821,6 +16822,7 @@
16821
16822
  {
16822
16823
  name: 'relatedEntity',
16823
16824
  kind: 'Object',
16825
+ nullable: true,
16824
16826
  selections: ListScopeRelatedEntityRepresentation__selections
16825
16827
  }
16826
16828
  ]
@@ -22606,7 +22608,6 @@
22606
22608
  };
22607
22609
  }
22608
22610
 
22609
- const adapterName$J = 'getListViewSummaryCollection';
22610
22611
  const getListViewSummaryCollection_ConfigPropertyNames = {
22611
22612
  displayName: 'getListViewSummaryCollection',
22612
22613
  parameters: {
@@ -42770,7 +42771,7 @@
42770
42771
  };
42771
42772
  }
42772
42773
 
42773
- const adapterName$K = 'deleteRecord';
42774
+ const adapterName$J = 'deleteRecord';
42774
42775
  const deleteRecord_ConfigPropertyNames = {
42775
42776
  displayName: 'deleteRecord',
42776
42777
  parameters: {
@@ -42832,7 +42833,7 @@
42832
42833
  const config = validateAdapterConfig$3(untrustedConfig, deleteRecord_ConfigPropertyNames);
42833
42834
  // Invalid or incomplete config
42834
42835
  if (config === null) {
42835
- throw new Error(`Invalid config for "${adapterName$K}"`);
42836
+ throw new Error(`Invalid config for "${adapterName$J}"`);
42836
42837
  }
42837
42838
  return buildNetworkSnapshot$3(luvio, config);
42838
42839
  };
@@ -43565,7 +43566,6 @@
43565
43566
  let getListInfosByName;
43566
43567
  let getListRecordsByName;
43567
43568
  let getListUi;
43568
- let getListViewSummaryCollection;
43569
43569
  let getLookupActions;
43570
43570
  let getLookupMetadata;
43571
43571
  let getLookupRecords;
@@ -43619,7 +43619,6 @@
43619
43619
  let getListInfosByName_imperative;
43620
43620
  let unstable_getListRecordsByName_imperative;
43621
43621
  let unstable_getListUi_imperative;
43622
- let getListViewSummaryCollection_imperative;
43623
43622
  let unstable_getLookupActions_imperative;
43624
43623
  let getLookupMetadata_imperative;
43625
43624
  let unstable_getLookupRecords_imperative;
@@ -43669,7 +43668,6 @@
43669
43668
  const getListInfosByNameMetadata = { apiFamily: keyPrefix$1, name: adapterName$r };
43670
43669
  const getListRecordsByNameMetadata = { apiFamily: keyPrefix$1, name: 'getListRecordsByName', ttl: 30000 };
43671
43670
  const getListUiMetadata = { apiFamily: keyPrefix$1, name: 'getListUi', ttl: 900000 };
43672
- const getListViewSummaryCollectionMetadata = { apiFamily: keyPrefix$1, name: adapterName$J };
43673
43671
  const getLookupActionsMetadata = { apiFamily: keyPrefix$1, name: adapterName$F, ttl: 300000 };
43674
43672
  const getLookupMetadataMetadata = { apiFamily: keyPrefix$1, name: adapterName$7, ttl: 30000 };
43675
43673
  const getLookupRecordsMetadata = { apiFamily: keyPrefix$1, name: 'getLookupRecords' };
@@ -43720,7 +43718,6 @@
43720
43718
  const getListInfosByName_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getListInfosByName', getListInfosByNameAdapterFactory), getListInfosByNameMetadata);
43721
43719
  const getListRecordsByName_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getListRecordsByName', factory$a), getListRecordsByNameMetadata);
43722
43720
  const getListUi_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getListUi', factory$g), getListUiMetadata);
43723
- const getListViewSummaryCollection_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getListViewSummaryCollection', getListViewSummaryCollectionAdapterFactory), getListViewSummaryCollectionMetadata);
43724
43721
  const getLookupActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getLookupActions', getLookupActionsAdapterFactory), getLookupActionsMetadata);
43725
43722
  const getLookupMetadata_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getLookupMetadata', getLookupMetadataAdapterFactory), getLookupMetadataMetadata);
43726
43723
  const getLookupRecords_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getLookupRecords', factory$9), getLookupRecordsMetadata);
@@ -43779,7 +43776,6 @@
43779
43776
  getListInfosByName: createWireAdapterConstructor(luvio, getListInfosByName_ldsAdapter, getListInfosByNameMetadata),
43780
43777
  getListRecordsByName: createWireAdapterConstructor(luvio, getListRecordsByName_ldsAdapter, getListRecordsByNameMetadata),
43781
43778
  getListUi: createWireAdapterConstructor(luvio, getListUi_ldsAdapter, getListUiMetadata),
43782
- getListViewSummaryCollection: createWireAdapterConstructor(luvio, getListViewSummaryCollection_ldsAdapter, getListViewSummaryCollectionMetadata),
43783
43779
  getLookupActions: createWireAdapterConstructor(luvio, getLookupActions_ldsAdapter, getLookupActionsMetadata),
43784
43780
  getLookupMetadata: createWireAdapterConstructor(luvio, getLookupMetadata_ldsAdapter, getLookupMetadataMetadata),
43785
43781
  getLookupRecords: createWireAdapterConstructor(luvio, getLookupRecords_ldsAdapter, getLookupRecordsMetadata),
@@ -43833,7 +43829,6 @@
43833
43829
  getListInfosByName_imperative: createImperativeAdapter(luvio, getListInfosByName_ldsAdapter, getListInfosByNameMetadata),
43834
43830
  unstable_getListRecordsByName_imperative: createImperativeAdapter(luvio, getListRecordsByName_ldsAdapter, getListRecordsByNameMetadata),
43835
43831
  unstable_getListUi_imperative: createImperativeAdapter(luvio, getListUi_ldsAdapter, getListUiMetadata),
43836
- getListViewSummaryCollection_imperative: createImperativeAdapter(luvio, getListViewSummaryCollection_ldsAdapter, getListViewSummaryCollectionMetadata),
43837
43832
  unstable_getLookupActions_imperative: createImperativeAdapter(luvio, getLookupActions_ldsAdapter, getLookupActionsMetadata),
43838
43833
  getLookupMetadata_imperative: createImperativeAdapter(luvio, getLookupMetadata_ldsAdapter, getLookupMetadataMetadata),
43839
43834
  unstable_getLookupRecords_imperative: createImperativeAdapter(luvio, getLookupRecords_ldsAdapter, getLookupRecordsMetadata),
@@ -43890,7 +43885,6 @@
43890
43885
  getListInfosByName,
43891
43886
  getListRecordsByName,
43892
43887
  getListUi,
43893
- getListViewSummaryCollection,
43894
43888
  getLookupActions,
43895
43889
  getLookupMetadata,
43896
43890
  getLookupRecords,
@@ -43943,7 +43937,6 @@
43943
43937
  getListInfosByName_imperative,
43944
43938
  unstable_getListRecordsByName_imperative,
43945
43939
  unstable_getListUi_imperative,
43946
- getListViewSummaryCollection_imperative,
43947
43940
  unstable_getLookupActions_imperative,
43948
43941
  getLookupMetadata_imperative,
43949
43942
  unstable_getLookupRecords_imperative,
@@ -44016,7 +44009,7 @@
44016
44009
  dropFunction: instrumentation$2.notifyRecordUpdateAvailableDropped,
44017
44010
  });
44018
44011
  });
44019
- // version: 1.147.0-10ad1ac43
44012
+ // version: 1.147.2-be9827ebc
44020
44013
 
44021
44014
  var caseSensitiveUserId = '005B0000000GR4OIAW';
44022
44015
 
@@ -52690,367 +52683,16 @@
52690
52683
  return Boolean(interfaces.find((iface) => iface.name === 'Record'));
52691
52684
  }
52692
52685
 
52693
- const baseTypeDefinitions = /* GraphQL */ `
52694
- schema {
52695
- query: Query
52696
- }
52697
-
52698
- type Query {
52699
- uiapi: UIAPI!
52700
- }
52701
-
52702
- type UIAPI {
52703
- query: RecordQuery!
52704
- relatedListByName(parentApiName: String!, relatedListName: String!): RelatedListInfo
52705
- objectInfos(apiNames: [String]): [ObjectInfo]
52706
- }
52707
-
52708
- type RecordQuery {
52709
- # Types cannot be declared empty so this is a no-op query as a placeholder;
52710
- # The RecordQuery will be extended by ObjectInfos at run-time as needed
52711
- _: Boolean
52712
- }
52713
-
52714
- interface Record {
52715
- Id: ID!
52716
- ApiName: String!
52717
- WeakEtag: Long!
52718
- DisplayValue: String
52719
- LastModifiedById: IDValue
52720
- LastModifiedDate: DateTimeValue
52721
- SystemModstamp: DateTimeValue
52722
- RecordTypeId: IDValue
52723
- _drafts: JSON
52724
- }
52725
-
52726
- type RecordRepresentation implements Record {
52727
- Id: ID!
52728
- ApiName: String!
52729
- DisplayValue: String
52730
- LastModifiedById: IDValue
52731
- LastModifiedDate: DateTimeValue
52732
- RecordTypeId: IDValue
52733
- SystemModstamp: DateTimeValue
52734
- WeakEtag: Long!
52735
- _drafts: JSON
52736
- }
52737
-
52738
- type RelatedListInfo {
52739
- childApiName: String!
52740
- relatedListName: String!
52741
- label: String!
52742
- displayColumns: [ListColumn!]!
52743
- orderedByInfo: [ListOrder!]!
52744
- parentApiName: String!
52745
- fieldApiName: String!
52746
- }
52747
- type ListColumn {
52748
- fieldApiName: String!
52749
- label: String!
52750
- lookupId: String
52751
- sortable: Boolean
52752
- }
52753
-
52754
- type ListOrder {
52755
- fieldApiName: String!
52756
- sortDirection: ResultOrder
52757
- }
52758
-
52759
- enum ResultOrder {
52760
- ASC
52761
- DESC
52762
- }
52763
-
52764
- interface FieldValue {
52765
- displayValue: String
52766
- }
52767
- directive @category(name: String) on FIELD
52768
-
52769
- scalar Base64
52770
- scalar Boolean
52771
- scalar Currency
52772
- scalar Date
52773
- scalar DateTime
52774
- scalar Double
52775
- scalar Email
52776
- scalar EncryptedString
52777
- scalar Float
52778
- scalar ID
52779
- scalar Int
52780
- scalar JSON
52781
- scalar Latitude
52782
- scalar Long
52783
- scalar Longitude
52784
- scalar LongTextArea
52785
- scalar MultiPicklist
52786
- scalar Percent
52787
- scalar PhoneNumber
52788
- scalar Picklist
52789
- scalar RichTextArea
52790
- scalar String
52791
- scalar TextArea
52792
- scalar Time
52793
- scalar Url
52794
-
52795
- type PageInfo {
52796
- hasNextPage: Boolean!
52797
- hasPreviousPage: Boolean!
52798
- startCursor: String
52799
- endCursor: String
52800
- }
52801
- type IDValue implements FieldValue {
52802
- value: ID
52803
- displayValue: String
52804
- }
52805
- type StringValue implements FieldValue {
52806
- value: String
52807
- displayValue: String
52808
- label: String
52809
- }
52810
- type TextAreaValue implements FieldValue {
52811
- value: TextArea
52812
- displayValue: String
52813
- }
52814
- type TimeValue implements FieldValue {
52815
- value: Time
52816
- displayValue: String
52817
- format: String
52818
- }
52819
- type UrlValue implements FieldValue {
52820
- value: Url
52821
- displayValue: String
52822
- }
52823
- type Base64Value implements FieldValue {
52824
- value: Base64
52825
- displayValue: String
52826
- }
52827
- type BooleanValue implements FieldValue {
52828
- value: Boolean
52829
- displayValue: String
52830
- }
52831
- type CurrencyValue implements FieldValue {
52832
- value: Currency
52833
- displayValue: String
52834
- format: String
52835
- }
52836
- type DateValue implements FieldValue {
52837
- value: Date
52838
- displayValue: String
52839
- format: String
52840
- }
52841
- type DoubleValue implements FieldValue {
52842
- value: Double
52843
- displayValue: String
52844
- format: String
52845
- }
52846
- type IntValue implements FieldValue {
52847
- value: Int
52848
- displayValue: String
52849
- format: String
52850
- }
52851
- type DateTimeValue implements FieldValue {
52852
- value: DateTime
52853
- displayValue: String
52854
- format: String
52855
- }
52856
- type EmailValue implements FieldValue {
52857
- value: Email
52858
- displayValue: String
52859
- }
52860
- type PicklistValue implements FieldValue {
52861
- value: Picklist
52862
- displayValue: String
52863
- label: String
52864
- }
52865
- type MultiPicklistValue implements FieldValue {
52866
- value: MultiPicklist
52867
- displayValue: String
52868
- label: String
52869
- }
52870
- type PercentValue implements FieldValue {
52871
- value: Percent
52872
- displayValue: String
52873
- format: String
52874
- }
52686
+ var uiapiSchemaString = "scalar String\nscalar DateTime\nscalar Currency\nscalar ID\nscalar Boolean\nscalar Longitude\nscalar Float\nscalar MultiPicklist\nscalar Base64\nscalar Url\nscalar PhoneNumber\nscalar Email\nscalar TextArea\nscalar Latitude\nscalar Picklist\nscalar RichTextArea\nscalar EncryptedString\nscalar Double\nscalar Long\nscalar JSON\nscalar Time\nscalar Int\nscalar Percent\nscalar LongTextArea\nscalar Date\ntype PercentAggregate implements FieldValue {\n value: Percent\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n format: String\n max: PercentValue\n min: PercentValue\n sum: PercentValue\n}\n\ntype StringAggregate implements FieldValue {\n value: String\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n label: String\n max: StringValue\n min: StringValue\n}\n\ntype Query {\n uiapi: UIAPI!\n rateLimit: RateLimit\n}\n\ninput EmailOperators {\n eq: Email\n ne: Email\n like: Email\n lt: Email\n gt: Email\n lte: Email\n gte: Email\n in: [Email]\n nin: [Email]\n}\n\ninput PolymorphicParentRelationshipRecordOrderBy @generic {\n RecordOrderBy: RecordOrderBy @fieldCategory\n}\n\ninput DoubleOperators {\n eq: Double\n ne: Double\n lt: Double\n gt: Double\n lte: Double\n gte: Double\n in: [Double]\n nin: [Double]\n}\n\ntype DateOnlyAggregation {\n value: Date\n format: String\n}\n\ntype DateAggregate implements FieldValue {\n value: Date\n displayValue: String\n calendarMonth: DateFunctionAggregation\n calendarQuarter: DateFunctionAggregation\n calendarYear: DateFunctionAggregation\n count: LongValue\n countDistinct: LongValue\n dayInMonth: DateFunctionAggregation\n dayInWeek: DateFunctionAggregation\n dayInYear: DateFunctionAggregation\n fiscalMonth: DateFunctionAggregation\n fiscalQuarter: DateFunctionAggregation\n fiscalYear: DateFunctionAggregation\n format: String\n grouping: IntValue\n max: DateValue\n min: DateValue\n weekInMonth: DateFunctionAggregation\n weekInYear: DateFunctionAggregation\n}\n\ninput PolymorphicParentRelationshipGroupBy @generic {\n RecordGroupBy: RecordGroupBy @fieldCategory\n}\n\nenum GroupByFunction {\n DAY_IN_WEEK\n DAY_IN_MONTH\n DAY_IN_YEAR\n WEEK_IN_MONTH\n WEEK_IN_YEAR\n CALENDAR_MONTH\n CALENDAR_QUARTER\n CALENDAR_YEAR\n FISCAL_MONTH\n FISCAL_QUARTER\n FISCAL_YEAR\n DAY_ONLY\n HOUR_IN_DAY\n}\n\ntype RecordTypeInfo {\n available: Boolean!\n defaultRecordTypeMapping: Boolean!\n master: Boolean!\n name: String\n recordTypeId: ID\n}\n\ntype BooleanValue implements FieldValue {\n value: Boolean\n displayValue: String\n}\n\ntype ReferenceToInfo {\n ApiName: String!\n nameFields: [String]!\n objectInfo: ObjectInfo\n}\n\ninterface FieldValue {\n displayValue: String\n}\n\ntype LongitudeValue implements FieldValue {\n value: Longitude\n displayValue: String\n}\n\ntype StringValue implements FieldValue {\n value: String\n displayValue: String\n label: String\n}\n\ntype IntValue implements FieldValue {\n value: Int\n displayValue: String\n format: String\n}\n\ntype UrlValue implements FieldValue {\n value: Url\n displayValue: String\n}\n\ninput IdOperators {\n eq: ID\n ne: ID\n lt: ID\n gt: ID\n lte: ID\n gte: ID\n in: [ID]\n nin: [ID]\n inq: JoinInput\n ninq: JoinInput\n}\n\ntype LongAggregate implements FieldValue {\n value: Long\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n format: String\n grouping: IntValue\n max: LongValue\n min: LongValue\n sum: LongValue\n}\n\ntype PhoneNumberAggregate implements FieldValue {\n value: PhoneNumber\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n max: PhoneNumberValue\n min: PhoneNumberValue\n}\n\ninput TimeOperators {\n eq: Time\n ne: Time\n lt: Time\n gt: Time\n lte: Time\n gte: Time\n in: [Time]\n nin: [Time]\n}\n\ntype PicklistValue implements FieldValue {\n value: Picklist\n displayValue: String\n label: String\n}\n\ntype CurrencyAggregate implements FieldValue {\n value: Currency\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n format: String\n max: CurrencyValue\n min: CurrencyValue\n sum: CurrencyValue\n}\n\ntype RelatedListInfo {\n childApiName: String!\n relatedListName: String!\n label: String!\n displayColumns: [ListColumn!]!\n orderedByInfo: [ListOrder!]!\n parentApiName: String!\n fieldApiName: String!\n}\n\ninput StringOperators {\n eq: String\n ne: String\n like: String\n lt: String\n gt: String\n lte: String\n gte: String\n in: [String]\n nin: [String]\n}\n\ntype UIAPI {\n query: RecordQuery!\n aggregate: RecordQueryAggregate!\n objectInfos(apiNames: [String]): [ObjectInfo]\n relatedListByName(parentApiName: String!, relatedListName: String!): RelatedListInfo\n}\n\ninput MultiPicklistOperators {\n eq: MultiPicklist\n ne: MultiPicklist\n includes: [MultiPicklist]\n excludes: [MultiPicklist]\n}\n\ntype DateTimeAggregate implements FieldValue {\n value: DateTime\n displayValue: String\n calendarMonth: DateFunctionAggregation\n calendarQuarter: DateFunctionAggregation\n calendarYear: DateFunctionAggregation\n count: LongValue\n countDistinct: LongValue\n dayInMonth: DateFunctionAggregation\n dayInWeek: DateFunctionAggregation\n dayInYear: DateFunctionAggregation\n dayOnly: DateOnlyAggregation\n fiscalMonth: DateFunctionAggregation\n fiscalQuarter: DateFunctionAggregation\n fiscalYear: DateFunctionAggregation\n format: String\n hourInDay: DateFunctionAggregation\n max: DateTimeValue\n min: DateTimeValue\n weekInMonth: DateFunctionAggregation\n weekInYear: DateFunctionAggregation\n}\n\ninput BooleanOperators {\n eq: Boolean\n ne: Boolean\n}\n\ntype EmailAggregate implements FieldValue {\n value: Email\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n max: EmailValue\n min: EmailValue\n}\n\ninput GroupByDateFunction {\n function: GroupByFunction\n}\n\ntype RichTextAreaValue implements FieldValue {\n value: RichTextArea\n displayValue: String\n}\n\ntype MultiPicklistValue implements FieldValue {\n value: MultiPicklist\n displayValue: String\n label: String\n}\n\ntype TimeAggregate implements FieldValue {\n value: Time\n displayValue: String\n format: String\n hourInDay: DateFunctionAggregation\n}\n\ntype __Type {\n kind: __TypeKind!\n name: String\n description: String\n fields(includeDeprecated: Boolean = false): [__Field!]\n interfaces: [__Type!]\n possibleTypes: [__Type!]\n enumValues(includeDeprecated: Boolean = false): [__EnumValue!]\n inputFields: [__InputValue!]\n ofType: __Type\n}\n\ntype ListColumn {\n fieldApiName: String!\n label: String!\n lookupId: String\n sortable: Boolean\n}\n\ntype LatitudeAggregate implements FieldValue {\n value: Latitude\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n max: LatitudeValue\n min: LatitudeValue\n sum: DoubleValue\n}\n\ninput CurrencyOperators {\n eq: Currency\n ne: Currency\n lt: Currency\n gt: Currency\n lte: Currency\n gte: Currency\n in: [Currency]\n nin: [Currency]\n}\n\ninput DistanceInput {\n latitude: Latitude!\n longitude: Longitude!\n}\n\nunion PolymorphicParentRelationship @generic = RecordRepresentation\n\ntype LongTextAreaValue implements FieldValue {\n value: LongTextArea\n displayValue: String\n}\n\ntype LatitudeValue implements FieldValue {\n value: Latitude\n displayValue: String\n}\n\ninput OrderByClause {\n order: ResultOrder\n nulls: NullOrder\n}\n\ninput GroupByClause {\n group: Boolean\n}\n\ntype RecordAggregateConnection @generic {\n edges: [RecordAggregateEdge]\n pageInfo: PageInfo!\n totalCount: Int!\n}\n\ntype LongitudeAggregate implements FieldValue {\n value: Longitude\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n max: LongitudeValue\n min: LongitudeValue\n sum: DoubleValue\n}\n\ntype RecordEdge @generic {\n node: RecordRepresentation\n cursor: String!\n}\n\ntype DateValue implements FieldValue {\n value: Date\n displayValue: String\n format: String\n}\n\ninput URLOperators {\n eq: Url\n ne: Url\n like: Url\n lt: Url\n gt: Url\n lte: Url\n gte: Url\n in: [Url]\n nin: [Url]\n}\n\ninput LongOperators {\n eq: Long\n ne: Long\n lt: Long\n gt: Long\n lte: Long\n gte: Long\n in: [Long]\n nin: [Long]\n}\n\nenum DataType {\n STRING\n TEXTAREA\n PHONE\n EMAIL\n URL\n ENCRYPTEDSTRING\n BOOLEAN\n CURRENCY\n INT\n LONG\n DOUBLE\n PERCENT\n DATETIME\n TIME\n DATE\n REFERENCE\n PICKLIST\n MULTIPICKLIST\n ADDRESS\n LOCATION\n BASE64\n COMPLEXVALUE\n COMBOBOX\n JSON\n JUNCTIONIDLIST\n ANYTYPE\n}\n\nenum NullOrder {\n LAST\n FIRST\n}\n\ntype PhoneNumberValue implements FieldValue {\n value: PhoneNumber\n displayValue: String\n}\n\n# Cannot have empty enum\n# enum RecordScope @generic {\n# }\n\ntype DoubleAggregate implements FieldValue {\n value: Double\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n format: String\n max: DoubleValue\n min: DoubleValue\n sum: DoubleValue\n}\n\ntype __Field {\n name: String!\n description: String\n args: [__InputValue!]!\n type: __Type!\n isDeprecated: Boolean!\n deprecationReason: String\n}\n\ninput DateOperators {\n eq: DateInput\n ne: DateInput\n lt: DateInput\n gt: DateInput\n lte: DateInput\n gte: DateInput\n in: [DateInput]\n nin: [DateInput]\n DAY_IN_WEEK: DateFunctionInput\n DAY_IN_MONTH: DateFunctionInput\n DAY_IN_YEAR: DateFunctionInput\n WEEK_IN_MONTH: DateFunctionInput\n WEEK_IN_YEAR: DateFunctionInput\n CALENDAR_MONTH: DateFunctionInput\n CALENDAR_QUARTER: DateFunctionInput\n CALENDAR_YEAR: DateFunctionInput\n FISCAL_MONTH: DateFunctionInput\n FISCAL_QUARTER: DateFunctionInput\n FISCAL_YEAR: DateFunctionInput\n}\n\ninput GeolocationInput {\n latitude: Latitude!\n longitude: Longitude!\n radius: Float!\n unit: Unit!\n}\n\ninput JoinInput {\n Record: RecordFilter @fieldCategory\n ApiName: String\n}\n\ninput TextAreaOperators {\n eq: TextArea\n ne: TextArea\n like: TextArea\n lt: TextArea\n gt: TextArea\n lte: TextArea\n gte: TextArea\n in: [TextArea]\n nin: [TextArea]\n}\n\ntype TextAreaValue implements FieldValue {\n value: TextArea\n displayValue: String\n}\n\ninput PercentOperators {\n eq: Percent\n ne: Percent\n lt: Percent\n gt: Percent\n lte: Percent\n gte: Percent\n in: [Percent]\n nin: [Percent]\n}\n\ntype DoubleValue implements FieldValue {\n value: Double\n displayValue: String\n format: String\n}\n\ntype IDAggregate implements FieldValue {\n value: ID\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n max: IDValue\n min: IDValue\n}\n\ntype __InputValue {\n name: String!\n description: String\n type: __Type!\n defaultValue: String\n}\n\ntype RecordAggregateEdge @generic {\n node: RecordResult\n cursor: String!\n}\n\ntype __Directive {\n name: String\n description: String\n locations: [__DirectiveLocation!]\n args: [__InputValue!]!\n}\n\ntype ThemeInfo {\n color: String\n iconUrl: String\n}\n\ntype UrlAggregate implements FieldValue {\n value: Url\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n max: UrlValue\n min: UrlValue\n}\n\nenum DateLiteral {\n THIS_WEEK\n THIS_FISCAL_QUARTER\n NEXT_YEAR\n TODAY\n LAST_WEEK\n LAST_YEAR\n YESTERDAY\n NEXT_MONTH\n NEXT_FISCAL_YEAR\n NEXT_WEEK\n NEXT_90_DAYS\n LAST_FISCAL_QUARTER\n LAST_FISCAL_YEAR\n THIS_YEAR\n THIS_MONTH\n THIS_QUARTER\n LAST_90_DAYS\n NEXT_FISCAL_QUARTER\n THIS_FISCAL_YEAR\n TOMORROW\n NEXT_QUARTER\n LAST_MONTH\n LAST_QUARTER\n}\n\ntype __EnumValue {\n name: String!\n description: String\n isDeprecated: Boolean!\n deprecationReason: String\n}\n\ntype RecordRepresentation implements Record @generic{\n Id: ID!\n ApiName: String!\n WeakEtag: Long!\n DisplayValue: String\n LastModifiedById: IDValue\n LastModifiedDate: DateTimeValue\n SystemModstamp: DateTimeValue\n RecordTypeId(fallback: Boolean): IDValue\n IntValue: IntValue @fieldCategory\n StringValue: StringValue @fieldCategory\n BooleanValue: BooleanValue @fieldCategory\n IDValue: IDValue @fieldCategory\n DateTimeValue: DateTimeValue @fieldCategory\n TimeValue: TimeValue @fieldCategory\n DateValue: DateValue @fieldCategory\n TextAreaValue: TextAreaValue @fieldCategory\n LongTextAreaValue: LongTextAreaValue @fieldCategory\n RichTextAreaValue: RichTextAreaValue @fieldCategory\n PhoneNumberValue: PhoneNumberValue @fieldCategory\n EmailValue: EmailValue @fieldCategory\n UrlValue: UrlValue @fieldCategory\n EncryptedStringValue: EncryptedStringValue @fieldCategory\n CurrencyValue: CurrencyValue @fieldCategory\n LongitudeValue: LongitudeValue @fieldCategory\n LatitudeValue: LatitudeValue @fieldCategory\n PicklistValue: PicklistValue @fieldCategory\n MultiPicklistValue: MultiPicklistValue @fieldCategory\n LongValue: LongValue @fieldCategory\n DoubleValue: DoubleValue @fieldCategory\n PercentValue: PercentValue @fieldCategory\n Base64Value: Base64Value @fieldCategory\n JSONValue: JSONValue @fieldCategory\n parentRelationship: RecordRepresentation @fieldCategory\n polymorphicParentRelationship: PolymorphicParentRelationship @fieldCategory\n childRelationship(first: Int, after: String, where: RecordFilter, orderBy: RecordOrderBy): RecordConnection @fieldCategory\n}\n\ntype IDValue implements FieldValue {\n value: ID\n displayValue: String\n}\n\nenum Unit {\n MI\n KM\n}\n\ninput OrderByGeolocationClause {\n distance: DistanceInput\n order: ResultOrder\n nulls: NullOrder\n}\n\ntype TextAreaAggregate implements FieldValue {\n value: TextArea\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n max: TextAreaValue\n min: TextAreaValue\n}\n\nenum GroupByType {\n GROUP_BY\n ROLLUP\n CUBE\n}\n\nenum ResultOrder {\n DESC\n ASC\n}\n\ninput RecordOrderBy @generic {\n orderableField: OrderByClause @fieldCategory\n orderableGeolocationField: OrderByGeolocationClause @fieldCategory\n orderableParentRelationship: RecordOrderBy @fieldCategory\n orderablePolymorphicParentRelationship: PolymorphicParentRelationshipRecordOrderBy @fieldCategory\n}\n\ninput PicklistOperators {\n eq: Picklist\n ne: Picklist\n in: [Picklist]\n nin: [Picklist]\n}\n\ninput RecordFilter @generic {\n and: [RecordFilter]\n or: [RecordFilter]\n not: RecordFilter\n parentRelationshipRecordFilter: RecordFilter @fieldCategory\n polymorphicParentRelationshipRecordFilter: PolymorphicParentRelationshipRecordFilter @fieldCategory\n IntegerOperator: IntegerOperators @fieldCategory\n LongOperator: LongOperators @fieldCategory\n StringOperator: StringOperators @fieldCategory\n DoubleOperator: DoubleOperators @fieldCategory\n PercentOperator: PercentOperators @fieldCategory\n LongitudeOperator: LongitudeOperators @fieldCategory\n LatitudeOperator: LatitudeOperators @fieldCategory\n EmailOperator: EmailOperators @fieldCategory\n TextAreaOperator: TextAreaOperators @fieldCategory\n LongTextAreaOperator: LongTextAreaOperators @fieldCategory\n URLOperator: URLOperators @fieldCategory\n PhoneNumberOperator: PhoneNumberOperators @fieldCategory\n BooleanOperator: BooleanOperators @fieldCategory\n IdOperator: IdOperators @fieldCategory\n CurrencyOperator: CurrencyOperators @fieldCategory\n TimeOperator: TimeOperators @fieldCategory\n DateOperator: DateOperators @fieldCategory\n DateTimeOperator: DateTimeOperators @fieldCategory\n PicklistOperator: PicklistOperators @fieldCategory\n MultiPicklistOperator: MultiPicklistOperators @fieldCategory\n GeolocationOperator: GeolocationOperators @fieldCategory\n}\n\ntype TimeValue implements FieldValue {\n value: Time\n displayValue: String\n format: String\n}\n\ninput GeolocationOperators {\n lt: GeolocationInput\n gt: GeolocationInput\n}\n\ntype PicklistAggregate implements FieldValue {\n value: Picklist\n displayValue: String\n count: LongValue\n countDistinct: LongValue\n grouping: IntValue\n label: String\n max: PicklistValue\n min: PicklistValue\n}\n\ninput LatitudeOperators {\n eq: Latitude\n ne: Latitude\n lt: Latitude\n gt: Latitude\n lte: Latitude\n gte: Latitude\n in: [Latitude]\n nin: [Latitude]\n}\n\ntype DateTimeValue implements FieldValue {\n value: DateTime\n displayValue: String\n format: String\n}\n\nenum __DirectiveLocation {\n QUERY\n MUTATION\n FIELD\n FRAGMENT_DEFINITION\n FRAGMENT_SPREAD\n INLINE_FRAGMENT\n SCHEMA\n SCALAR\n OBJECT\n FIELD_DEFINITION\n ARGUMENT_DEFINITION\n INTERFACE\n UNION\n ENUM\n ENUM_VALUE\n INPUT_OBJECT\n INPUT_FIELD_DEFINITION\n}\n\ntype IntAggregate implements FieldValue {\n value: Int\n displayValue: String\n avg: DoubleValue\n count: LongValue\n countDistinct: LongValue\n format: String\n grouping: IntValue\n max: IntValue\n min: IntValue\n sum: LongValue\n}\n\ntype ListOrder {\n fieldApiName: String!\n sortDirection: ResultOrder\n}\n\ntype RecordAggregate @generic {\n ApiName: String!\n BooleanAggregate: BooleanAggregate @fieldCategory\n CurrencyAggregate: CurrencyAggregate @fieldCategory\n DateAggregate: DateAggregate @fieldCategory\n DoubleAggregate: DoubleAggregate @fieldCategory\n EmailAggregate: EmailAggregate @fieldCategory\n IDAggregate: IDAggregate @fieldCategory\n IntAggregate: IntAggregate @fieldCategory\n LatitudeAggregate: LatitudeAggregate @fieldCategory\n LongitudeAggregate: LongitudeAggregate @fieldCategory\n LongAggregate: LongAggregate @fieldCategory\n PercentAggregate: PercentAggregate @fieldCategory\n PhoneNumberAggregate: PhoneNumberAggregate @fieldCategory\n PicklistAggregate: PicklistAggregate @fieldCategory\n StringAggregate: StringAggregate @fieldCategory\n TextAreaAggregate: TextAreaAggregate @fieldCategory\n TimeAggregate: TimeAggregate @fieldCategory\n UrlAggregate: UrlAggregate @fieldCategory\n}\n\ntype JSONValue implements FieldValue {\n value: JSON\n displayValue: String\n}\n\ntype EmailValue implements FieldValue {\n value: Email\n displayValue: String\n}\n\ntype LongValue implements FieldValue {\n value: Long\n displayValue: String\n format: String\n}\n\ninput DateFunctionInput {\n value: LongOperators\n convertTimezoneValue: LongOperators\n}\n\ntype DependentField {\n controllingField: String!\n dependentFields: [String]!\n}\n\ninput LongTextAreaOperators {\n eq: LongTextArea\n ne: LongTextArea\n like: LongTextArea\n lt: LongTextArea\n gt: LongTextArea\n lte: LongTextArea\n gte: LongTextArea\n in: [LongTextArea]\n nin: [LongTextArea]\n}\n\nenum __TypeKind {\n SCALAR\n OBJECT\n INTERFACE\n UNION\n ENUM\n INPUT_OBJECT\n LIST\n NON_NULL\n}\n\ntype PercentValue implements FieldValue {\n value: Percent\n displayValue: String\n format: String\n}\n\ninput DateTimeOperators {\n eq: DateTimeInput\n ne: DateTimeInput\n lt: DateTimeInput\n gt: DateTimeInput\n lte: DateTimeInput\n gte: DateTimeInput\n in: [DateTimeInput]\n nin: [DateTimeInput]\n DAY_IN_WEEK: DateFunctionInput\n DAY_IN_MONTH: DateFunctionInput\n DAY_IN_YEAR: DateFunctionInput\n WEEK_IN_MONTH: DateFunctionInput\n WEEK_IN_YEAR: DateFunctionInput\n CALENDAR_MONTH: DateFunctionInput\n CALENDAR_QUARTER: DateFunctionInput\n CALENDAR_YEAR: DateFunctionInput\n FISCAL_MONTH: DateFunctionInput\n FISCAL_QUARTER: DateFunctionInput\n FISCAL_YEAR: DateFunctionInput\n DAY_ONLY: DateTimeFunctionInput\n HOUR_IN_DAY: DateFunctionInput\n}\n\ntype BooleanAggregate implements FieldValue {\n value: Boolean\n displayValue: String\n grouping: IntValue\n}\n\ntype RecordQueryAggregate {\n recordQueryAggregate(first: Int, after: String, where: RecordFilter, orderBy: RecordOrderBy, scope: String, groupBy: RecordGroupBy): RecordAggregateConnection @fieldCategory\n}\n\ntype RecordConnection @generic {\n edges: [RecordEdge]\n pageInfo: PageInfo!\n totalCount: Int!\n}\n\ntype FilteredLookupInfo {\n controllingFields: [String]!\n dependent: Boolean!\n optionalFilter: Boolean!\n}\n\ninput PhoneNumberOperators {\n eq: PhoneNumber\n ne: PhoneNumber\n like: PhoneNumber\n lt: PhoneNumber\n gt: PhoneNumber\n lte: PhoneNumber\n gte: PhoneNumber\n in: [PhoneNumber]\n nin: [PhoneNumber]\n}\n\ntype ObjectInfo {\n ApiName: String!\n childRelationships: [ChildRelationship]!\n createable: Boolean!\n custom: Boolean!\n defaultRecordTypeId: ID\n deletable: Boolean!\n dependentFields: [DependentField]!\n feedEnabled: Boolean!\n fields: [Field]!\n keyPrefix: String\n label: String\n labelPlural: String\n layoutable: Boolean!\n mruEnabled: Boolean!\n nameFields: [String]!\n queryable: Boolean!\n recordTypeInfos: [RecordTypeInfo]!\n searchable: Boolean!\n themeInfo: ThemeInfo\n updateable: Boolean!\n}\n\ninput LongitudeOperators {\n eq: Longitude\n ne: Longitude\n lt: Longitude\n gt: Longitude\n lte: Longitude\n gte: Longitude\n in: [Longitude]\n nin: [Longitude]\n}\n\ntype Field {\n ApiName: String!\n calculated: Boolean!\n compound: Boolean!\n compoundComponentName: String\n compoundFieldName: String\n controllerName: String\n controllingFields: [String]!\n createable: Boolean!\n custom: Boolean!\n dataType: DataType\n extraTypeInfo: FieldExtraTypeInfo\n filterable: Boolean!\n filteredLookupInfo: FilteredLookupInfo\n highScaleNumber: Boolean!\n htmlFormatted: Boolean!\n inlineHelpText: String\n label: String\n nameField: Boolean!\n polymorphicForeignKey: Boolean!\n precision: Int\n reference: Boolean!\n referenceTargetField: String\n referenceToInfos: [ReferenceToInfo]!\n relationshipName: String\n required: Boolean!\n scale: Int\n searchPrefilterable: Boolean\n sortable: Boolean!\n updateable: Boolean!\n}\n\nenum FieldExtraTypeInfo {\n IMAGE_URL\n EXTERNAL_LOOKUP\n INDIRECT_LOOKUP\n PERSONNAME\n SWITCHABLE_PERSONNAME\n PLAINTEXTAREA\n RICHTEXTAREA\n}\n\ntype RateLimit {\n cost: Long\n limit: Long\n remaining: Long\n resetAt: DateTime\n}\n\ninput DateRange {\n last_n_days: Int\n next_n_days: Int\n last_n_weeks: Int\n next_n_weeks: Int\n last_n_months: Int\n next_n_months: Int\n last_n_quarters: Int\n next_n_quarters: Int\n last_n_fiscal_quarters: Int\n next_n_fiscal_quarters: Int\n last_n_years: Int\n next_n_years: Int\n last_n_fiscal_years: Int\n next_n_fiscal_years: Int\n n_days_ago: Int\n n_weeks_ago: Int\n n_months_ago: Int\n n_quarters_ago: Int\n n_years_ago: Int\n n_fiscal_quarters_ago: Int\n n_fiscal_years_ago: Int\n}\n\ninput DateTimeFunctionInput {\n value: DateTimePrimitiveOperators\n convertTimezoneValue: DateTimePrimitiveOperators\n}\n\ntype Base64Value implements FieldValue {\n value: Base64\n displayValue: String\n}\n\ninput IntegerOperators {\n eq: Int\n ne: Int\n lt: Int\n gt: Int\n lte: Int\n gte: Int\n in: [Int]\n nin: [Int]\n}\n\ntype EncryptedStringValue implements FieldValue {\n value: EncryptedString\n displayValue: String\n}\n\ninterface Record {\n Id: ID!\n ApiName: String!\n WeakEtag: Long!\n DisplayValue: String\n LastModifiedById: IDValue\n LastModifiedDate: DateTimeValue\n SystemModstamp: DateTimeValue\n RecordTypeId(fallback: Boolean): IDValue\n}\n\ninput PolymorphicParentRelationshipRecordFilter @generic {\n RecordFilter: RecordFilter @fieldCategory\n}\n\ntype __Schema {\n types: [__Type!]!\n queryType: __Type!\n mutationType: __Type\n directives: [__Directive!]!\n subscriptionType: __Type\n}\n\ninput DateTimeInput {\n value: DateTime\n literal: DateLiteral\n range: DateRange\n}\n\ninput DateTimePrimitiveOperators {\n eq: DateTime\n ne: DateTime\n lt: DateTime\n gt: DateTime\n lte: DateTime\n gte: DateTime\n in: [DateTime]\n nin: [DateTime]\n}\n\ntype ChildRelationship {\n childObjectApiName: String!\n fieldName: String\n junctionIdListNames: [String]!\n junctionReferenceTo: [String]!\n relationshipName: String\n objectInfo: ObjectInfo\n}\n\ntype RecordResult @generic {\n aggregate: RecordAggregate\n}\n\ntype PageInfo {\n hasNextPage: Boolean!\n hasPreviousPage: Boolean!\n startCursor: String\n endCursor: String\n}\n\ntype CurrencyValue implements FieldValue {\n value: Currency\n displayValue: String\n format: String\n}\n\ninput DateInput {\n value: Date\n literal: DateLiteral\n range: DateRange\n}\n\ninput RecordGroupBy @generic {\n groupableField: GroupByClause @fieldCategory\n groupableDateField: GroupByDateFunction @fieldCategory\n groupableParentRelationship: RecordGroupBy @fieldCategory\n groupablePolymorphicParentRelationship: PolymorphicParentRelationshipGroupBy @fieldCategory\n type: GroupByType = GROUP_BY\n}\n\ntype DateFunctionAggregation {\n value: Long\n format: String\n}\n\ntype RecordQuery {\n # scope should be type RecordScope but it cannot currently be used\n recordQuery(first: Int, after: String, where: RecordFilter, orderBy: RecordOrderBy, scope: String): RecordConnection @fieldCategory\n}\n\ndirective @generic on OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT\ndirective @fieldCategory on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION | ENUM_VALUE\ndirective @category on FIELD\n\n\n\n\n\n\n\n";
52875
52687
 
52688
+ // Define additional schema that is missing from uiapi that we use in local evaluation
52689
+ const additionalSchemaDefinitions = /* GraphQL */ `
52876
52690
  enum SupportedScopes {
52877
52691
  ASSIGNEDTOME
52878
52692
  MINE
52879
52693
  }
52880
-
52881
- type ObjectInfo {
52882
- ApiName: String!
52883
- childRelationships: [ChildRelationship]!
52884
- createable: Boolean!
52885
- custom: Boolean!
52886
- defaultRecordTypeId: ID
52887
- deletable: Boolean!
52888
- dependentFields: [DependentField]!
52889
- feedEnabled: Boolean!
52890
- fields: [Field]!
52891
- keyPrefix: String
52892
- label: String
52893
- labelPlural: String
52894
- layoutable: Boolean!
52895
- mergeable: Boolean!
52896
- mruEnabled: Boolean!
52897
- nameFields: [String]!
52898
- queryable: Boolean!
52899
- recordTypeInfos: [RecordTypeInfo]!
52900
- searchable: Boolean!
52901
- themeInfo: ThemeInfo
52902
- updateable: Boolean!
52903
- }
52904
-
52905
- type Field {
52906
- ApiName: String!
52907
- calculated: Boolean!
52908
- compound: Boolean!
52909
- compoundComponentName: String
52910
- compoundFieldName: String
52911
- controllerName: String
52912
- controllingFields: [String]!
52913
- createable: Boolean!
52914
- custom: Boolean!
52915
- dataType: DataType
52916
- extraTypeInfo: FieldExtraTypeInfo
52917
- filterable: Boolean!
52918
- filteredLookupInfo: FilteredLookupInfo
52919
- highScaleNumber: Boolean!
52920
- htmlFormatted: Boolean!
52921
- inlineHelpText: String
52922
- label: String
52923
- nameField: Boolean!
52924
- polymorphicForeignKey: Boolean!
52925
- precision: Int
52926
- reference: Boolean!
52927
- referenceTargetField: String
52928
- referenceToInfos: [ReferenceToInfo]!
52929
- relationshipName: String
52930
- required: Boolean!
52931
- scale: Int
52932
- sortable: Boolean!
52933
- updateable: Boolean!
52934
- picklistValues: PicklistValues
52935
- }
52936
-
52937
- type ChildRelationship {
52938
- childObjectApiName: String!
52939
- fieldName: String
52940
- junctionIdListNames: [String]!
52941
- junctionReferenceTo: [String]!
52942
- relationshipName: String
52943
- objectInfo: ObjectInfo
52944
- }
52945
-
52946
- type DependentField {
52947
- controllingField: String!
52948
- dependentFields: [String]!
52949
- }
52950
-
52951
- type RecordTypeInfo {
52952
- available: Boolean!
52953
- defaultRecordTypeMapping: Boolean!
52954
- master: Boolean!
52955
- name: String
52956
- recordTypeId: ID
52957
- }
52958
-
52959
- type ThemeInfo {
52960
- color: String
52961
- iconUrl: String
52962
- }
52963
-
52964
- enum DataType {
52965
- ADDRESS
52966
- BOOLEAN
52967
- COMBOBOX
52968
- COMPLEXVALUE
52969
- CURRENCY
52970
- DATE
52971
- DATETIME
52972
- DOUBLE
52973
- EMAIL
52974
- ENCRYPTEDSTRING
52975
- PICKLIST
52976
- BASE64
52977
- INT
52978
- JSON
52979
- LONG
52980
- LOCATION
52981
- MULTIPICKLIST
52982
- PERCENT
52983
- PHONE
52984
- REFERENCE
52985
- STRING
52986
- TEXTAREA
52987
- TIME
52988
- URL
52989
- ANYTYPE
52990
- JUNCTIONIDLIST
52991
- }
52992
-
52993
- enum FieldExtraTypeInfo {
52994
- EXTERNAL_LOOKUP
52995
- IMAGE_URL
52996
- INDIRECT_LOOKUP
52997
- PERSON_NAME
52998
- PLAIN_TEXT_AREA
52999
- RICH_TEXT_AREA
53000
- SWITCHABLE_PERSON_NAME
53001
- }
53002
-
53003
- type FilteredLookupInfo {
53004
- controllingFields: [String]!
53005
- dependent: Boolean!
53006
- optionalFilter: Boolean!
53007
- }
53008
-
53009
- type ReferenceToInfo {
53010
- ApiName: String!
53011
- nameFields: [String]!
53012
- objectInfo: ObjectInfo
53013
- }
53014
-
53015
- type PicklistValues {
53016
- controllerValues: [ControllerValue]!
53017
- defaultValue: ObjectInfoPicklistValue
53018
- values: [ObjectInfoPicklistValue]!
53019
- }
53020
-
53021
- type ControllerValue {
53022
- value: String
53023
- index: Int
53024
- }
53025
-
53026
- type ObjectInfoPicklistValue {
53027
- attributes: PicklistValueAttributes
53028
- label: String
53029
- validFor: [Int]!
53030
- value: String
53031
- }
53032
-
53033
- union PicklistValueAttributes =
53034
- CaseStatusPicklistValueAttributes
53035
- | LeadStatusPicklistValueAttributes
53036
- | OpportunityStagePicklistValueAttributes
53037
-
53038
- type CaseStatusPicklistValueAttributes {
53039
- closed: Boolean!
53040
- }
53041
-
53042
- type LeadStatusPicklistValueAttributes {
53043
- converted: Boolean!
53044
- picklistAttributesValueType: String
53045
- }
53046
-
53047
- type OpportunityStagePicklistValueAttributes {
53048
- closed: Boolean!
53049
- defaultProbability: Float
53050
- forecastCategoryName: String
53051
- won: Boolean!
53052
- }
53053
52694
  `;
52695
+ const baseTypeDefinitions = uiapiSchemaString + additionalSchemaDefinitions;
53054
52696
  /**
53055
52697
  *
53056
52698
  * @param objectInfos
@@ -53134,7 +52776,7 @@
53134
52776
  DisplayValue: String
53135
52777
  LastModifiedById: IDValue
53136
52778
  LastModifiedDate: DateTimeValue
53137
- RecordTypeId: IDValue
52779
+ RecordTypeId(fallback: Boolean): IDValue
53138
52780
  SystemModstamp: DateTimeValue
53139
52781
  WeakEtag: Long!
53140
52782
  _drafts: JSON
@@ -59794,6 +59436,7 @@
59794
59436
  let lazyDraftQueue;
59795
59437
  let lazyDraftManager;
59796
59438
  let lazyLuvio;
59439
+ let lazyInternalLuvio;
59797
59440
  let lazyEnvironment;
59798
59441
  let lazyBaseDurableStore;
59799
59442
  let lazyNetworkAdapter;
@@ -59826,7 +59469,8 @@
59826
59469
  : {}, () => getIngestMetadataForInternalAdapters !== undefined
59827
59470
  ? getIngestMetadataForInternalAdapters()
59828
59471
  : {});
59829
- const { adapters: { getObjectInfo, getObjectInfos, getRecord }, durableEnvironment: internalAdapterDurableEnvironment, } = buildInternalAdapters(internalAdapterStore, lazyNetworkAdapter, internalAdapterDurableStore, (apiName, objectInfo) => lazyObjectInfoService.ensureObjectInfoCached(apiName, objectInfo));
59472
+ const { adapters: { getObjectInfo, getObjectInfos, getRecord }, durableEnvironment: internalAdapterDurableEnvironment, luvio: internalLuvio, } = buildInternalAdapters(internalAdapterStore, lazyNetworkAdapter, internalAdapterDurableStore, (apiName, objectInfo) => lazyObjectInfoService.ensureObjectInfoCached(apiName, objectInfo));
59473
+ lazyInternalLuvio = internalLuvio;
59830
59474
  getIngestRecordsForInternalAdapters =
59831
59475
  internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
59832
59476
  getIngestMetadataForInternalAdapters =
@@ -59909,6 +59553,7 @@
59909
59553
  }
59910
59554
  return {
59911
59555
  luvio: lazyLuvio,
59556
+ internalLuvio: lazyInternalLuvio,
59912
59557
  environment: lazyEnvironment,
59913
59558
  draftManager: lazyDraftManager,
59914
59559
  draftQueue: lazyDraftQueue,
@@ -59935,7 +59580,7 @@
59935
59580
  id: '@salesforce/lds-network-adapter',
59936
59581
  instrument: instrument$1,
59937
59582
  });
59938
- // version: 1.147.0-f9a768a91
59583
+ // version: 1.147.2-2b0ae2d38
59939
59584
 
59940
59585
  const { create: create$2, keys: keys$2 } = Object;
59941
59586
  const { stringify: stringify$1, parse: parse$1 } = JSON;
@@ -80780,7 +80425,7 @@
80780
80425
  configuration: { ...configurationForGraphQLAdapters },
80781
80426
  instrument,
80782
80427
  });
80783
- // version: 1.147.0-10ad1ac43
80428
+ // version: 1.147.2-be9827ebc
80784
80429
 
80785
80430
  // On core the unstable adapters are re-exported with different names,
80786
80431
 
@@ -83018,7 +82663,7 @@
83018
82663
  unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
83019
82664
  graphQLImperative = ldsAdapter;
83020
82665
  });
83021
- // version: 1.147.0-10ad1ac43
82666
+ // version: 1.147.2-be9827ebc
83022
82667
 
83023
82668
  var gqlApi = /*#__PURE__*/Object.freeze({
83024
82669
  __proto__: null,
@@ -83724,4 +83369,4 @@
83724
83369
  Object.defineProperty(exports, '__esModule', { value: true });
83725
83370
 
83726
83371
  }));
83727
- // version: 1.147.0-f9a768a91
83372
+ // version: 1.147.2-2b0ae2d38
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-worker-api",
3
- "version": "1.147.0",
3
+ "version": "1.147.2",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "",
6
6
  "main": "dist/standalone/es/lds-worker-api.js",