@vrplatform/kysely 1.2.21 → 1.2.23

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.
@@ -2,8 +2,7 @@
2
2
  * This file was generated by kysely-codegen.
3
3
  * Please do not edit it manually.
4
4
  */
5
- import type { ColumnType } from 'kysely';
6
- export type CoreAuditOperation = 'DELETE' | 'INSERT' | 'UPDATE';
5
+ import type { ColumnType } from "kysely";
7
6
  export type Generated<T> = T extends ColumnType<infer S, infer I, infer U> ? ColumnType<S, I | undefined, U> : ColumnType<T, T | undefined, T>;
8
7
  export type Int8 = ColumnType<string, bigint | number | string, bigint | number | string>;
9
8
  export type Json = JsonValue;
@@ -14,6 +13,7 @@ export type JsonObject = {
14
13
  export type JsonPrimitive = boolean | number | string | null;
15
14
  export type JsonValue = JsonArray | JsonObject | JsonPrimitive;
16
15
  export type Numeric = ColumnType<string, number | string, number | string>;
16
+ export type StoreEffectStatus = "claimed" | "completed" | "dead_letter" | "failed" | "pending" | "running";
17
17
  export type Timestamp = ColumnType<Date, Date | string, Date | string>;
18
18
  export interface AccountingAccount {
19
19
  bankingCategory: string | null;
@@ -179,6 +179,7 @@ export interface AccountingJournalEntry {
179
179
  entityType: string | null;
180
180
  id: Generated<string>;
181
181
  lineId: string | null;
182
+ lineUniqueRef: string | null;
182
183
  listingId: string | null;
183
184
  listingOwnershipPeriodId: string | null;
184
185
  party: string | null;
@@ -219,6 +220,7 @@ export interface AccountingRate {
219
220
  countryCode: string | null;
220
221
  createdAt: Generated<Timestamp>;
221
222
  currency: string | null;
223
+ debitAccountId: string | null;
222
224
  description: string | null;
223
225
  id: Generated<string>;
224
226
  name: string | null;
@@ -315,17 +317,6 @@ export interface CoreAction {
315
317
  export interface CoreActiveStatus {
316
318
  name: string;
317
319
  }
318
- export interface CoreAuditTrail {
319
- createdAt: Generated<Timestamp>;
320
- deltaJson: Json | null;
321
- entityId: string | null;
322
- entityType: string;
323
- id: Generated<string>;
324
- op: CoreAuditOperation;
325
- tenantId: string;
326
- updatedAt: Generated<Timestamp>;
327
- userId: string | null;
328
- }
329
320
  export interface CoreChange {
330
321
  automationId: string | null;
331
322
  changeData: Json | null;
@@ -508,6 +499,7 @@ export interface CoreSync {
508
499
  automationId: string | null;
509
500
  connectionId: string | null;
510
501
  createdAt: Generated<Timestamp>;
502
+ environment: string | null;
511
503
  id: Generated<string>;
512
504
  isCurrentOnAutomation: Generated<boolean | null>;
513
505
  isCurrentOnConnection: Generated<boolean>;
@@ -892,6 +884,7 @@ export interface PublicFeatureStatus {
892
884
  }
893
885
  export interface PublicFileStorage {
894
886
  connectionId: string | null;
887
+ contactId: string | null;
895
888
  createdAt: Generated<Timestamp>;
896
889
  endDate: Timestamp | null;
897
890
  extension: string | null;
@@ -943,6 +936,7 @@ export interface PublicListing {
943
936
  beds: number | null;
944
937
  calculatedStatus: Generated<string | null>;
945
938
  calculatedTitle: Generated<string | null>;
939
+ calculatedTitleNew: Generated<string | null>;
946
940
  centExpenseReserve: number | null;
947
941
  /**
948
942
  * Starting balance for tax statements
@@ -1006,14 +1000,19 @@ export interface PublicListingOwnerRole {
1006
1000
  name: string;
1007
1001
  }
1008
1002
  export interface PublicListingOwnershipPeriod {
1003
+ businessModel: Generated<string | null>;
1009
1004
  createdAt: Generated<Timestamp>;
1010
1005
  endAt: Timestamp | null;
1011
1006
  id: Generated<string>;
1012
1007
  listingId: string;
1008
+ setListingInactive: Generated<boolean | null>;
1013
1009
  startAt: Generated<Timestamp | null>;
1014
1010
  tenantId: string;
1015
1011
  updatedAt: Generated<Timestamp>;
1016
1012
  }
1013
+ export interface PublicListingOwnershipPeriodBusinessModel {
1014
+ name: string;
1015
+ }
1017
1016
  export interface PublicListingOwnershipPeriodMember {
1018
1017
  contactId: string | null;
1019
1018
  createdAt: Generated<Timestamp | null>;
@@ -1260,6 +1259,67 @@ export interface PublicPaymentStatus {
1260
1259
  export interface PublicPaymentType {
1261
1260
  name: string;
1262
1261
  }
1262
+ export interface PublicPgpodmanStatus {
1263
+ containerId: string;
1264
+ runCmd: string | null;
1265
+ started: Timestamp | null;
1266
+ status: string | null;
1267
+ }
1268
+ export interface PublicPgStatStatements {
1269
+ calls: Int8 | null;
1270
+ dbid: number | null;
1271
+ jitDeformCount: Int8 | null;
1272
+ jitDeformTime: number | null;
1273
+ jitEmissionCount: Int8 | null;
1274
+ jitEmissionTime: number | null;
1275
+ jitFunctions: Int8 | null;
1276
+ jitGenerationTime: number | null;
1277
+ jitInliningCount: Int8 | null;
1278
+ jitInliningTime: number | null;
1279
+ jitOptimizationCount: Int8 | null;
1280
+ jitOptimizationTime: number | null;
1281
+ localBlkReadTime: number | null;
1282
+ localBlksDirtied: Int8 | null;
1283
+ localBlksHit: Int8 | null;
1284
+ localBlksRead: Int8 | null;
1285
+ localBlksWritten: Int8 | null;
1286
+ localBlkWriteTime: number | null;
1287
+ maxExecTime: number | null;
1288
+ maxPlanTime: number | null;
1289
+ meanExecTime: number | null;
1290
+ meanPlanTime: number | null;
1291
+ minExecTime: number | null;
1292
+ minmaxStatsSince: Timestamp | null;
1293
+ minPlanTime: number | null;
1294
+ plans: Int8 | null;
1295
+ query: string | null;
1296
+ queryid: Int8 | null;
1297
+ rows: Int8 | null;
1298
+ sharedBlkReadTime: number | null;
1299
+ sharedBlksDirtied: Int8 | null;
1300
+ sharedBlksHit: Int8 | null;
1301
+ sharedBlksRead: Int8 | null;
1302
+ sharedBlksWritten: Int8 | null;
1303
+ sharedBlkWriteTime: number | null;
1304
+ statsSince: Timestamp | null;
1305
+ stddevExecTime: number | null;
1306
+ stddevPlanTime: number | null;
1307
+ tempBlkReadTime: number | null;
1308
+ tempBlksRead: Int8 | null;
1309
+ tempBlksWritten: Int8 | null;
1310
+ tempBlkWriteTime: number | null;
1311
+ toplevel: boolean | null;
1312
+ totalExecTime: number | null;
1313
+ totalPlanTime: number | null;
1314
+ userid: number | null;
1315
+ walBytes: Numeric | null;
1316
+ walFpi: Int8 | null;
1317
+ walRecords: Int8 | null;
1318
+ }
1319
+ export interface PublicPgStatStatementsInfo {
1320
+ dealloc: Int8 | null;
1321
+ statsReset: Timestamp | null;
1322
+ }
1263
1323
  export interface PublicRecurringFee {
1264
1324
  bookingChannelsFilter: string[] | null;
1265
1325
  createdAt: Generated<Timestamp>;
@@ -1312,6 +1372,7 @@ export interface PublicReservation {
1312
1372
  bookedAt: Generated<Timestamp | null>;
1313
1373
  bookerName: string | null;
1314
1374
  bookingPlatform: string | null;
1375
+ calculatedDeduplicationRef: Generated<string | null>;
1315
1376
  cancelledAt: Timestamp | null;
1316
1377
  centAccommodation: number | null;
1317
1378
  centAdjustment: number | null;
@@ -1330,6 +1391,7 @@ export interface PublicReservation {
1330
1391
  connectionId: string | null;
1331
1392
  createdAt: Generated<Timestamp | null>;
1332
1393
  currency: string | null;
1394
+ generalLedgerPostingAt: Timestamp | null;
1333
1395
  guestName: string | null;
1334
1396
  guests: number | null;
1335
1397
  id: Generated<string>;
@@ -1438,6 +1500,9 @@ export interface PublicSetting {
1438
1500
  value: string | null;
1439
1501
  }
1440
1502
  export interface PublicSource {
1503
+ /**
1504
+ * deprecated
1505
+ */
1441
1506
  appId: string | null;
1442
1507
  code: string | null;
1443
1508
  connectionId: string | null;
@@ -1449,7 +1514,13 @@ export interface PublicSource {
1449
1514
  indexedJson: Json | null;
1450
1515
  isArchived: Generated<boolean | null>;
1451
1516
  json: Json | null;
1517
+ /**
1518
+ * deprecated
1519
+ */
1452
1520
  listingConnectionId: string | null;
1521
+ /**
1522
+ * deprecated
1523
+ */
1453
1524
  listingId: string | null;
1454
1525
  modifiedAt: Timestamp | null;
1455
1526
  parentId: string | null;
@@ -1658,6 +1729,47 @@ export interface PublicWebhook {
1658
1729
  types2: string[] | null;
1659
1730
  url: string;
1660
1731
  }
1732
+ export interface StoreDispatchedAction {
1733
+ actionType: string;
1734
+ apiEndpoint: string | null;
1735
+ createdAt: Generated<Timestamp>;
1736
+ id: Generated<string>;
1737
+ message: string | null;
1738
+ payload: Json | null;
1739
+ requestR2Link: string | null;
1740
+ sequence: Generated<number>;
1741
+ tenantId: string;
1742
+ userId: string | null;
1743
+ }
1744
+ export interface StoreEffectQueue {
1745
+ claimedAt: Timestamp | null;
1746
+ claimedBy: string | null;
1747
+ completedAt: Timestamp | null;
1748
+ createdAt: Generated<Timestamp>;
1749
+ dispatchedActionId: string;
1750
+ effectType: string;
1751
+ id: Generated<string>;
1752
+ lastAttemptAt: Timestamp | null;
1753
+ lastError: string | null;
1754
+ maxRetries: Generated<number>;
1755
+ payload: Json;
1756
+ priority: Generated<number>;
1757
+ retryCount: Generated<number>;
1758
+ sequence: Generated<number>;
1759
+ status: Generated<StoreEffectStatus>;
1760
+ tenantId: string;
1761
+ }
1762
+ export interface StoreMutationLog {
1763
+ changeRecord: Json;
1764
+ createdAt: Generated<Timestamp>;
1765
+ dispatchedActionId: string;
1766
+ effectId: string | null;
1767
+ id: Generated<string>;
1768
+ mutatedEntityId: string;
1769
+ mutatedEntityType: string;
1770
+ mutationOp: string;
1771
+ tenantId: string;
1772
+ }
1661
1773
  export interface TrackingEvent {
1662
1774
  createdAt: Generated<Timestamp>;
1663
1775
  id: Generated<string>;
@@ -1671,7 +1783,7 @@ export interface TrackingEvent {
1671
1783
  }
1672
1784
  export interface TrackingIntercomConversation {
1673
1785
  answer: string;
1674
- conversationId: number;
1786
+ conversationId: Int8;
1675
1787
  createdAt: Generated<Timestamp>;
1676
1788
  id: Generated<string>;
1677
1789
  isRelevant: boolean;
@@ -1716,163 +1828,169 @@ export interface TrackingMonitorConnectionState {
1716
1828
  name: string;
1717
1829
  }
1718
1830
  export interface DB {
1719
- 'accounting.account': AccountingAccount;
1720
- 'accounting.accountAssignment': AccountingAccountAssignment;
1721
- 'accounting.accountAssignmentLineType': AccountingAccountAssignmentLineType;
1722
- 'accounting.accountAssignmentType': AccountingAccountAssignmentType;
1723
- 'accounting.accountCategory': AccountingAccountCategory;
1724
- 'accounting.accountClassification': AccountingAccountClassification;
1725
- 'accounting.accountReservationLineType': AccountingAccountReservationLineType;
1726
- 'accounting.accountReservationRevRec': AccountingAccountReservationRevRec;
1727
- 'accounting.accountType': AccountingAccountType;
1728
- 'accounting.bankAccount': AccountingBankAccount;
1729
- 'accounting.bankAccountCategory': AccountingBankAccountCategory;
1730
- 'accounting.bankAccountType': AccountingBankAccountType;
1731
- 'accounting.bankRecord': AccountingBankRecord;
1732
- 'accounting.bankRecordTransactionPayment': AccountingBankRecordTransactionPayment;
1733
- 'accounting.contact': AccountingContact;
1734
- 'accounting.contactCompanyType': AccountingContactCompanyType;
1735
- 'accounting.contactType': AccountingContactType;
1736
- 'accounting.journalEntry': AccountingJournalEntry;
1737
- 'accounting.journalEntryEntityType': AccountingJournalEntryEntityType;
1738
- 'accounting.journalEntryTriggerType': AccountingJournalEntryTriggerType;
1739
- 'accounting.journalEntryType': AccountingJournalEntryType;
1740
- 'accounting.paidStatus': AccountingPaidStatus;
1741
- 'accounting.party': AccountingParty;
1742
- 'accounting.rate': AccountingRate;
1743
- 'accounting.rateType': AccountingRateType;
1744
- 'accounting.taxBehavior': AccountingTaxBehavior;
1745
- 'accounting.transaction': AccountingTransaction;
1746
- 'accounting.transactionLine': AccountingTransactionLine;
1747
- 'accounting.transactionType': AccountingTransactionType;
1748
- 'core.action': CoreAction;
1749
- 'core.activeStatus': CoreActiveStatus;
1750
- 'core.auditTrail': CoreAuditTrail;
1751
- 'core.change': CoreChange;
1752
- 'core.changeEntityType': CoreChangeEntityType;
1753
- 'core.changeLink': CoreChangeLink;
1754
- 'core.changeSourceLink': CoreChangeSourceLink;
1755
- 'core.changeStatus': CoreChangeStatus;
1756
- 'core.changeSyncType': CoreChangeSyncType;
1757
- 'core.changeType': CoreChangeType;
1758
- 'core.issue': CoreIssue;
1759
- 'core.issueKind': CoreIssueKind;
1760
- 'core.issueMessageOverwrite': CoreIssueMessageOverwrite;
1761
- 'core.issueStatus': CoreIssueStatus;
1762
- 'core.issueType': CoreIssueType;
1763
- 'core.job': CoreJob;
1764
- 'core.jobPage': CoreJobPage;
1765
- 'core.jobPlan': CoreJobPlan;
1766
- 'core.schema': CoreSchema;
1767
- 'core.schemaKind': CoreSchemaKind;
1768
- 'core.sourceAction': CoreSourceAction;
1769
- 'core.sourceOp': CoreSourceOp;
1770
- 'core.sync': CoreSync;
1771
- 'core.syncStatus': CoreSyncStatus;
1772
- 'core.syncSubtask': CoreSyncSubtask;
1773
- 'core.syncType': CoreSyncType;
1774
- 'hdbCatalog.eventInvocationLogs': HdbCatalogEventInvocationLogs;
1775
- 'hdbCatalog.eventLog': HdbCatalogEventLog;
1776
- 'hdbCatalog.hdbActionLog': HdbCatalogHdbActionLog;
1777
- 'hdbCatalog.hdbCronEventInvocationLogs': HdbCatalogHdbCronEventInvocationLogs;
1778
- 'hdbCatalog.hdbCronEvents': HdbCatalogHdbCronEvents;
1779
- 'hdbCatalog.hdbEventLogCleanups': HdbCatalogHdbEventLogCleanups;
1780
- 'hdbCatalog.hdbMetadata': HdbCatalogHdbMetadata;
1781
- 'hdbCatalog.hdbScheduledEventInvocationLogs': HdbCatalogHdbScheduledEventInvocationLogs;
1782
- 'hdbCatalog.hdbScheduledEvents': HdbCatalogHdbScheduledEvents;
1783
- 'hdbCatalog.hdbSchemaNotifications': HdbCatalogHdbSchemaNotifications;
1784
- 'hdbCatalog.hdbSourceCatalogVersion': HdbCatalogHdbSourceCatalogVersion;
1785
- 'hdbCatalog.hdbVersion': HdbCatalogHdbVersion;
1786
- 'public.accountCollection': PublicAccountCollection;
1787
- 'public.accountCollectionType': PublicAccountCollectionType;
1788
- 'public.action': PublicAction;
1789
- 'public.actionStatus': PublicActionStatus;
1790
- 'public.address': PublicAddress;
1791
- 'public.app': PublicApp;
1792
- 'public.auditLog': PublicAuditLog;
1793
- 'public.automation': PublicAutomation;
1794
- 'public.automationStatus': PublicAutomationStatus;
1795
- 'public.automationTemplate': PublicAutomationTemplate;
1796
- 'public.billingPaymentMethodType': PublicBillingPaymentMethodType;
1797
- 'public.bookingChannel': PublicBookingChannel;
1798
- 'public.connection': PublicConnection;
1799
- 'public.connectionStatusTemporary': PublicConnectionStatusTemporary;
1800
- 'public.csvLine': PublicCsvLine;
1801
- 'public.currency': PublicCurrency;
1802
- 'public.duplicateEmails': PublicDuplicateEmails;
1803
- 'public.emailTemplate': PublicEmailTemplate;
1804
- 'public.emailTemplateType': PublicEmailTemplateType;
1805
- 'public.feature': PublicFeature;
1806
- 'public.featureApproval': PublicFeatureApproval;
1807
- 'public.featureApprovalStatus': PublicFeatureApprovalStatus;
1808
- 'public.featureEnabledTeam': PublicFeatureEnabledTeam;
1809
- 'public.featureStatus': PublicFeatureStatus;
1810
- 'public.fileStorage': PublicFileStorage;
1811
- 'public.fileStorageSourceLink': PublicFileStorageSourceLink;
1812
- 'public.fileStorageTag': PublicFileStorageTag;
1813
- 'public.latestDuplicateEmails': PublicLatestDuplicateEmails;
1814
- 'public.listing': PublicListing;
1815
- 'public.listingCollection': PublicListingCollection;
1816
- 'public.listingConnection': PublicListingConnection;
1817
- 'public.listingOwner': PublicListingOwner;
1818
- 'public.listingOwnerRole': PublicListingOwnerRole;
1819
- 'public.listingOwnershipPeriod': PublicListingOwnershipPeriod;
1820
- 'public.listingOwnershipPeriodMember': PublicListingOwnershipPeriodMember;
1821
- 'public.listingPmsStatus': PublicListingPmsStatus;
1822
- 'public.listingStatus': PublicListingStatus;
1823
- 'public.metric': PublicMetric;
1824
- 'public.owner': PublicOwner;
1825
- 'public.ownerPmsStatus': PublicOwnerPmsStatus;
1826
- 'public.ownerStatement': PublicOwnerStatement;
1827
- 'public.ownerStatementIssue': PublicOwnerStatementIssue;
1828
- 'public.ownerStatementLayout': PublicOwnerStatementLayout;
1829
- 'public.ownerStatementLayoutAccount': PublicOwnerStatementLayoutAccount;
1830
- 'public.ownerStatementLayoutListing': PublicOwnerStatementLayoutListing;
1831
- 'public.ownerStatementLine': PublicOwnerStatementLine;
1832
- 'public.ownerStatementOwner': PublicOwnerStatementOwner;
1833
- 'public.ownerStatementStatus': PublicOwnerStatementStatus;
1834
- 'public.ownerStatementTemplate': PublicOwnerStatementTemplate;
1835
- 'public.ownerStatus': PublicOwnerStatus;
1836
- 'public.ownerType': PublicOwnerType;
1837
- 'public.ownerUserAccess': PublicOwnerUserAccess;
1838
- 'public.ownerUserAccessRole': PublicOwnerUserAccessRole;
1839
- 'public.payment': PublicPayment;
1840
- 'public.paymentLine': PublicPaymentLine;
1841
- 'public.paymentLineClassification': PublicPaymentLineClassification;
1842
- 'public.paymentStatus': PublicPaymentStatus;
1843
- 'public.paymentType': PublicPaymentType;
1844
- 'public.recurringFee': PublicRecurringFee;
1845
- 'public.recurringFeeAccount': PublicRecurringFeeAccount;
1846
- 'public.recurringFeeListingSubscription': PublicRecurringFeeListingSubscription;
1847
- 'public.recurringFeeListingSubscriptionRateType': PublicRecurringFeeListingSubscriptionRateType;
1848
- 'public.recurringFeeType': PublicRecurringFeeType;
1849
- 'public.reservation': PublicReservation;
1850
- 'public.reservationStatus': PublicReservationStatus;
1851
- 'public.reservationWithOccupancyStatus': PublicReservationWithOccupancyStatus;
1852
- 'public.scheduledEvent': PublicScheduledEvent;
1853
- 'public.scheduledEventStatus': PublicScheduledEventStatus;
1854
- 'public.setting': PublicSetting;
1855
- 'public.source': PublicSource;
1856
- 'public.task': PublicTask;
1857
- 'public.taxStatement': PublicTaxStatement;
1858
- 'public.taxStatementStatus': PublicTaxStatementStatus;
1859
- 'public.tenant': PublicTenant;
1860
- 'public.tenantUser': PublicTenantUser;
1861
- 'public.token': PublicToken;
1862
- 'public.user': PublicUser;
1863
- 'public.userCompanyType': PublicUserCompanyType;
1864
- 'public.userCompanyUser': PublicUserCompanyUser;
1865
- 'public.view': PublicView;
1866
- 'public.viewNotificationEvents': PublicViewNotificationEvents;
1867
- 'public.viewNotificationEventsGroupedByDate': PublicViewNotificationEventsGroupedByDate;
1868
- 'public.viewWebhookEvents': PublicViewWebhookEvents;
1869
- 'public.viewWebhookEventsGroupedByDate': PublicViewWebhookEventsGroupedByDate;
1870
- 'public.webhook': PublicWebhook;
1871
- 'tracking.event': TrackingEvent;
1872
- 'tracking.intercomConversation': TrackingIntercomConversation;
1873
- 'tracking.intercomConversationUser': TrackingIntercomConversationUser;
1874
- 'tracking.intercomReport': TrackingIntercomReport;
1875
- 'tracking.intercomReportConversation': TrackingIntercomReportConversation;
1876
- 'tracking.monitorConnection': TrackingMonitorConnection;
1877
- 'tracking.monitorConnectionState': TrackingMonitorConnectionState;
1831
+ "accounting.account": AccountingAccount;
1832
+ "accounting.accountAssignment": AccountingAccountAssignment;
1833
+ "accounting.accountAssignmentLineType": AccountingAccountAssignmentLineType;
1834
+ "accounting.accountAssignmentType": AccountingAccountAssignmentType;
1835
+ "accounting.accountCategory": AccountingAccountCategory;
1836
+ "accounting.accountClassification": AccountingAccountClassification;
1837
+ "accounting.accountReservationLineType": AccountingAccountReservationLineType;
1838
+ "accounting.accountReservationRevRec": AccountingAccountReservationRevRec;
1839
+ "accounting.accountType": AccountingAccountType;
1840
+ "accounting.bankAccount": AccountingBankAccount;
1841
+ "accounting.bankAccountCategory": AccountingBankAccountCategory;
1842
+ "accounting.bankAccountType": AccountingBankAccountType;
1843
+ "accounting.bankRecord": AccountingBankRecord;
1844
+ "accounting.bankRecordTransactionPayment": AccountingBankRecordTransactionPayment;
1845
+ "accounting.contact": AccountingContact;
1846
+ "accounting.contactCompanyType": AccountingContactCompanyType;
1847
+ "accounting.contactType": AccountingContactType;
1848
+ "accounting.journalEntry": AccountingJournalEntry;
1849
+ "accounting.journalEntryEntityType": AccountingJournalEntryEntityType;
1850
+ "accounting.journalEntryTriggerType": AccountingJournalEntryTriggerType;
1851
+ "accounting.journalEntryType": AccountingJournalEntryType;
1852
+ "accounting.paidStatus": AccountingPaidStatus;
1853
+ "accounting.party": AccountingParty;
1854
+ "accounting.rate": AccountingRate;
1855
+ "accounting.rateType": AccountingRateType;
1856
+ "accounting.taxBehavior": AccountingTaxBehavior;
1857
+ "accounting.transaction": AccountingTransaction;
1858
+ "accounting.transactionLine": AccountingTransactionLine;
1859
+ "accounting.transactionType": AccountingTransactionType;
1860
+ "core.action": CoreAction;
1861
+ "core.activeStatus": CoreActiveStatus;
1862
+ "core.change": CoreChange;
1863
+ "core.changeEntityType": CoreChangeEntityType;
1864
+ "core.changeLink": CoreChangeLink;
1865
+ "core.changeSourceLink": CoreChangeSourceLink;
1866
+ "core.changeStatus": CoreChangeStatus;
1867
+ "core.changeSyncType": CoreChangeSyncType;
1868
+ "core.changeType": CoreChangeType;
1869
+ "core.issue": CoreIssue;
1870
+ "core.issueKind": CoreIssueKind;
1871
+ "core.issueMessageOverwrite": CoreIssueMessageOverwrite;
1872
+ "core.issueStatus": CoreIssueStatus;
1873
+ "core.issueType": CoreIssueType;
1874
+ "core.job": CoreJob;
1875
+ "core.jobPage": CoreJobPage;
1876
+ "core.jobPlan": CoreJobPlan;
1877
+ "core.schema": CoreSchema;
1878
+ "core.schemaKind": CoreSchemaKind;
1879
+ "core.sourceAction": CoreSourceAction;
1880
+ "core.sourceOp": CoreSourceOp;
1881
+ "core.sync": CoreSync;
1882
+ "core.syncStatus": CoreSyncStatus;
1883
+ "core.syncSubtask": CoreSyncSubtask;
1884
+ "core.syncType": CoreSyncType;
1885
+ "hdbCatalog.eventInvocationLogs": HdbCatalogEventInvocationLogs;
1886
+ "hdbCatalog.eventLog": HdbCatalogEventLog;
1887
+ "hdbCatalog.hdbActionLog": HdbCatalogHdbActionLog;
1888
+ "hdbCatalog.hdbCronEventInvocationLogs": HdbCatalogHdbCronEventInvocationLogs;
1889
+ "hdbCatalog.hdbCronEvents": HdbCatalogHdbCronEvents;
1890
+ "hdbCatalog.hdbEventLogCleanups": HdbCatalogHdbEventLogCleanups;
1891
+ "hdbCatalog.hdbMetadata": HdbCatalogHdbMetadata;
1892
+ "hdbCatalog.hdbScheduledEventInvocationLogs": HdbCatalogHdbScheduledEventInvocationLogs;
1893
+ "hdbCatalog.hdbScheduledEvents": HdbCatalogHdbScheduledEvents;
1894
+ "hdbCatalog.hdbSchemaNotifications": HdbCatalogHdbSchemaNotifications;
1895
+ "hdbCatalog.hdbSourceCatalogVersion": HdbCatalogHdbSourceCatalogVersion;
1896
+ "hdbCatalog.hdbVersion": HdbCatalogHdbVersion;
1897
+ "public.accountCollection": PublicAccountCollection;
1898
+ "public.accountCollectionType": PublicAccountCollectionType;
1899
+ "public.action": PublicAction;
1900
+ "public.actionStatus": PublicActionStatus;
1901
+ "public.address": PublicAddress;
1902
+ "public.app": PublicApp;
1903
+ "public.auditLog": PublicAuditLog;
1904
+ "public.automation": PublicAutomation;
1905
+ "public.automationStatus": PublicAutomationStatus;
1906
+ "public.automationTemplate": PublicAutomationTemplate;
1907
+ "public.billingPaymentMethodType": PublicBillingPaymentMethodType;
1908
+ "public.bookingChannel": PublicBookingChannel;
1909
+ "public.connection": PublicConnection;
1910
+ "public.connectionStatusTemporary": PublicConnectionStatusTemporary;
1911
+ "public.csvLine": PublicCsvLine;
1912
+ "public.currency": PublicCurrency;
1913
+ "public.duplicateEmails": PublicDuplicateEmails;
1914
+ "public.emailTemplate": PublicEmailTemplate;
1915
+ "public.emailTemplateType": PublicEmailTemplateType;
1916
+ "public.feature": PublicFeature;
1917
+ "public.featureApproval": PublicFeatureApproval;
1918
+ "public.featureApprovalStatus": PublicFeatureApprovalStatus;
1919
+ "public.featureEnabledTeam": PublicFeatureEnabledTeam;
1920
+ "public.featureStatus": PublicFeatureStatus;
1921
+ "public.fileStorage": PublicFileStorage;
1922
+ "public.fileStorageSourceLink": PublicFileStorageSourceLink;
1923
+ "public.fileStorageTag": PublicFileStorageTag;
1924
+ "public.latestDuplicateEmails": PublicLatestDuplicateEmails;
1925
+ "public.listing": PublicListing;
1926
+ "public.listingCollection": PublicListingCollection;
1927
+ "public.listingConnection": PublicListingConnection;
1928
+ "public.listingOwner": PublicListingOwner;
1929
+ "public.listingOwnerRole": PublicListingOwnerRole;
1930
+ "public.listingOwnershipPeriod": PublicListingOwnershipPeriod;
1931
+ "public.listingOwnershipPeriodBusinessModel": PublicListingOwnershipPeriodBusinessModel;
1932
+ "public.listingOwnershipPeriodMember": PublicListingOwnershipPeriodMember;
1933
+ "public.listingPmsStatus": PublicListingPmsStatus;
1934
+ "public.listingStatus": PublicListingStatus;
1935
+ "public.metric": PublicMetric;
1936
+ "public.owner": PublicOwner;
1937
+ "public.ownerPmsStatus": PublicOwnerPmsStatus;
1938
+ "public.ownerStatement": PublicOwnerStatement;
1939
+ "public.ownerStatementIssue": PublicOwnerStatementIssue;
1940
+ "public.ownerStatementLayout": PublicOwnerStatementLayout;
1941
+ "public.ownerStatementLayoutAccount": PublicOwnerStatementLayoutAccount;
1942
+ "public.ownerStatementLayoutListing": PublicOwnerStatementLayoutListing;
1943
+ "public.ownerStatementLine": PublicOwnerStatementLine;
1944
+ "public.ownerStatementOwner": PublicOwnerStatementOwner;
1945
+ "public.ownerStatementStatus": PublicOwnerStatementStatus;
1946
+ "public.ownerStatementTemplate": PublicOwnerStatementTemplate;
1947
+ "public.ownerStatus": PublicOwnerStatus;
1948
+ "public.ownerType": PublicOwnerType;
1949
+ "public.ownerUserAccess": PublicOwnerUserAccess;
1950
+ "public.ownerUserAccessRole": PublicOwnerUserAccessRole;
1951
+ "public.payment": PublicPayment;
1952
+ "public.paymentLine": PublicPaymentLine;
1953
+ "public.paymentLineClassification": PublicPaymentLineClassification;
1954
+ "public.paymentStatus": PublicPaymentStatus;
1955
+ "public.paymentType": PublicPaymentType;
1956
+ "public.pgpodmanStatus": PublicPgpodmanStatus;
1957
+ "public.pgStatStatements": PublicPgStatStatements;
1958
+ "public.pgStatStatementsInfo": PublicPgStatStatementsInfo;
1959
+ "public.recurringFee": PublicRecurringFee;
1960
+ "public.recurringFeeAccount": PublicRecurringFeeAccount;
1961
+ "public.recurringFeeListingSubscription": PublicRecurringFeeListingSubscription;
1962
+ "public.recurringFeeListingSubscriptionRateType": PublicRecurringFeeListingSubscriptionRateType;
1963
+ "public.recurringFeeType": PublicRecurringFeeType;
1964
+ "public.reservation": PublicReservation;
1965
+ "public.reservationStatus": PublicReservationStatus;
1966
+ "public.reservationWithOccupancyStatus": PublicReservationWithOccupancyStatus;
1967
+ "public.scheduledEvent": PublicScheduledEvent;
1968
+ "public.scheduledEventStatus": PublicScheduledEventStatus;
1969
+ "public.setting": PublicSetting;
1970
+ "public.source": PublicSource;
1971
+ "public.task": PublicTask;
1972
+ "public.taxStatement": PublicTaxStatement;
1973
+ "public.taxStatementStatus": PublicTaxStatementStatus;
1974
+ "public.tenant": PublicTenant;
1975
+ "public.tenantUser": PublicTenantUser;
1976
+ "public.token": PublicToken;
1977
+ "public.user": PublicUser;
1978
+ "public.userCompanyType": PublicUserCompanyType;
1979
+ "public.userCompanyUser": PublicUserCompanyUser;
1980
+ "public.view": PublicView;
1981
+ "public.viewNotificationEvents": PublicViewNotificationEvents;
1982
+ "public.viewNotificationEventsGroupedByDate": PublicViewNotificationEventsGroupedByDate;
1983
+ "public.viewWebhookEvents": PublicViewWebhookEvents;
1984
+ "public.viewWebhookEventsGroupedByDate": PublicViewWebhookEventsGroupedByDate;
1985
+ "public.webhook": PublicWebhook;
1986
+ "store.dispatchedAction": StoreDispatchedAction;
1987
+ "store.effectQueue": StoreEffectQueue;
1988
+ "store.mutationLog": StoreMutationLog;
1989
+ "tracking.event": TrackingEvent;
1990
+ "tracking.intercomConversation": TrackingIntercomConversation;
1991
+ "tracking.intercomConversationUser": TrackingIntercomConversationUser;
1992
+ "tracking.intercomReport": TrackingIntercomReport;
1993
+ "tracking.intercomReportConversation": TrackingIntercomReportConversation;
1994
+ "tracking.monitorConnection": TrackingMonitorConnection;
1995
+ "tracking.monitorConnectionState": TrackingMonitorConnectionState;
1878
1996
  }