@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.
@@ -3,19 +3,13 @@
3
3
  * Please do not edit it manually.
4
4
  */
5
5
 
6
- import type { ColumnType } from 'kysely';
7
-
8
- export type CoreAuditOperation = 'DELETE' | 'INSERT' | 'UPDATE';
6
+ import type { ColumnType } from "kysely";
9
7
 
10
8
  export type Generated<T> = T extends ColumnType<infer S, infer I, infer U>
11
9
  ? ColumnType<S, I | undefined, U>
12
10
  : ColumnType<T, T | undefined, T>;
13
11
 
14
- export type Int8 = ColumnType<
15
- string,
16
- bigint | number | string,
17
- bigint | number | string
18
- >;
12
+ export type Int8 = ColumnType<string, bigint | number | string, bigint | number | string>;
19
13
 
20
14
  export type Json = JsonValue;
21
15
 
@@ -31,6 +25,8 @@ export type JsonValue = JsonArray | JsonObject | JsonPrimitive;
31
25
 
32
26
  export type Numeric = ColumnType<string, number | string, number | string>;
33
27
 
28
+ export type StoreEffectStatus = "claimed" | "completed" | "dead_letter" | "failed" | "pending" | "running";
29
+
34
30
  export type Timestamp = ColumnType<Date, Date | string, Date | string>;
35
31
 
36
32
  export interface AccountingAccount {
@@ -214,6 +210,7 @@ export interface AccountingJournalEntry {
214
210
  entityType: string | null;
215
211
  id: Generated<string>;
216
212
  lineId: string | null;
213
+ lineUniqueRef: string | null;
217
214
  listingId: string | null;
218
215
  listingOwnershipPeriodId: string | null;
219
216
  party: string | null;
@@ -260,6 +257,7 @@ export interface AccountingRate {
260
257
  countryCode: string | null;
261
258
  createdAt: Generated<Timestamp>;
262
259
  currency: string | null;
260
+ debitAccountId: string | null;
263
261
  description: string | null;
264
262
  id: Generated<string>;
265
263
  name: string | null;
@@ -364,18 +362,6 @@ export interface CoreActiveStatus {
364
362
  name: string;
365
363
  }
366
364
 
367
- export interface CoreAuditTrail {
368
- createdAt: Generated<Timestamp>;
369
- deltaJson: Json | null;
370
- entityId: string | null;
371
- entityType: string;
372
- id: Generated<string>;
373
- op: CoreAuditOperation;
374
- tenantId: string;
375
- updatedAt: Generated<Timestamp>;
376
- userId: string | null;
377
- }
378
-
379
365
  export interface CoreChange {
380
366
  automationId: string | null;
381
367
  changeData: Json | null;
@@ -577,6 +563,7 @@ export interface CoreSync {
577
563
  automationId: string | null;
578
564
  connectionId: string | null;
579
565
  createdAt: Generated<Timestamp>;
566
+ environment: string | null;
580
567
  id: Generated<string>;
581
568
  isCurrentOnAutomation: Generated<boolean | null>;
582
569
  isCurrentOnConnection: Generated<boolean>;
@@ -1001,6 +988,7 @@ export interface PublicFeatureStatus {
1001
988
 
1002
989
  export interface PublicFileStorage {
1003
990
  connectionId: string | null;
991
+ contactId: string | null;
1004
992
  createdAt: Generated<Timestamp>;
1005
993
  endDate: Timestamp | null;
1006
994
  extension: string | null;
@@ -1056,6 +1044,7 @@ export interface PublicListing {
1056
1044
  beds: number | null;
1057
1045
  calculatedStatus: Generated<string | null>;
1058
1046
  calculatedTitle: Generated<string | null>;
1047
+ calculatedTitleNew: Generated<string | null>;
1059
1048
  centExpenseReserve: number | null;
1060
1049
  /**
1061
1050
  * Starting balance for tax statements
@@ -1124,15 +1113,21 @@ export interface PublicListingOwnerRole {
1124
1113
  }
1125
1114
 
1126
1115
  export interface PublicListingOwnershipPeriod {
1116
+ businessModel: Generated<string | null>;
1127
1117
  createdAt: Generated<Timestamp>;
1128
1118
  endAt: Timestamp | null;
1129
1119
  id: Generated<string>;
1130
1120
  listingId: string;
1121
+ setListingInactive: Generated<boolean | null>;
1131
1122
  startAt: Generated<Timestamp | null>;
1132
1123
  tenantId: string;
1133
1124
  updatedAt: Generated<Timestamp>;
1134
1125
  }
1135
1126
 
1127
+ export interface PublicListingOwnershipPeriodBusinessModel {
1128
+ name: string;
1129
+ }
1130
+
1136
1131
  export interface PublicListingOwnershipPeriodMember {
1137
1132
  contactId: string | null;
1138
1133
  createdAt: Generated<Timestamp | null>;
@@ -1403,6 +1398,70 @@ export interface PublicPaymentType {
1403
1398
  name: string;
1404
1399
  }
1405
1400
 
1401
+ export interface PublicPgpodmanStatus {
1402
+ containerId: string;
1403
+ runCmd: string | null;
1404
+ started: Timestamp | null;
1405
+ status: string | null;
1406
+ }
1407
+
1408
+ export interface PublicPgStatStatements {
1409
+ calls: Int8 | null;
1410
+ dbid: number | null;
1411
+ jitDeformCount: Int8 | null;
1412
+ jitDeformTime: number | null;
1413
+ jitEmissionCount: Int8 | null;
1414
+ jitEmissionTime: number | null;
1415
+ jitFunctions: Int8 | null;
1416
+ jitGenerationTime: number | null;
1417
+ jitInliningCount: Int8 | null;
1418
+ jitInliningTime: number | null;
1419
+ jitOptimizationCount: Int8 | null;
1420
+ jitOptimizationTime: number | null;
1421
+ localBlkReadTime: number | null;
1422
+ localBlksDirtied: Int8 | null;
1423
+ localBlksHit: Int8 | null;
1424
+ localBlksRead: Int8 | null;
1425
+ localBlksWritten: Int8 | null;
1426
+ localBlkWriteTime: number | null;
1427
+ maxExecTime: number | null;
1428
+ maxPlanTime: number | null;
1429
+ meanExecTime: number | null;
1430
+ meanPlanTime: number | null;
1431
+ minExecTime: number | null;
1432
+ minmaxStatsSince: Timestamp | null;
1433
+ minPlanTime: number | null;
1434
+ plans: Int8 | null;
1435
+ query: string | null;
1436
+ queryid: Int8 | null;
1437
+ rows: Int8 | null;
1438
+ sharedBlkReadTime: number | null;
1439
+ sharedBlksDirtied: Int8 | null;
1440
+ sharedBlksHit: Int8 | null;
1441
+ sharedBlksRead: Int8 | null;
1442
+ sharedBlksWritten: Int8 | null;
1443
+ sharedBlkWriteTime: number | null;
1444
+ statsSince: Timestamp | null;
1445
+ stddevExecTime: number | null;
1446
+ stddevPlanTime: number | null;
1447
+ tempBlkReadTime: number | null;
1448
+ tempBlksRead: Int8 | null;
1449
+ tempBlksWritten: Int8 | null;
1450
+ tempBlkWriteTime: number | null;
1451
+ toplevel: boolean | null;
1452
+ totalExecTime: number | null;
1453
+ totalPlanTime: number | null;
1454
+ userid: number | null;
1455
+ walBytes: Numeric | null;
1456
+ walFpi: Int8 | null;
1457
+ walRecords: Int8 | null;
1458
+ }
1459
+
1460
+ export interface PublicPgStatStatementsInfo {
1461
+ dealloc: Int8 | null;
1462
+ statsReset: Timestamp | null;
1463
+ }
1464
+
1406
1465
  export interface PublicRecurringFee {
1407
1466
  bookingChannelsFilter: string[] | null;
1408
1467
  createdAt: Generated<Timestamp>;
@@ -1460,6 +1519,7 @@ export interface PublicReservation {
1460
1519
  bookedAt: Generated<Timestamp | null>;
1461
1520
  bookerName: string | null;
1462
1521
  bookingPlatform: string | null;
1522
+ calculatedDeduplicationRef: Generated<string | null>;
1463
1523
  cancelledAt: Timestamp | null;
1464
1524
  centAccommodation: number | null;
1465
1525
  centAdjustment: number | null;
@@ -1478,6 +1538,7 @@ export interface PublicReservation {
1478
1538
  connectionId: string | null;
1479
1539
  createdAt: Generated<Timestamp | null>;
1480
1540
  currency: string | null;
1541
+ generalLedgerPostingAt: Timestamp | null;
1481
1542
  guestName: string | null;
1482
1543
  guests: number | null;
1483
1544
  id: Generated<string>;
@@ -1592,6 +1653,9 @@ export interface PublicSetting {
1592
1653
  }
1593
1654
 
1594
1655
  export interface PublicSource {
1656
+ /**
1657
+ * deprecated
1658
+ */
1595
1659
  appId: string | null;
1596
1660
  code: string | null;
1597
1661
  connectionId: string | null;
@@ -1603,7 +1667,13 @@ export interface PublicSource {
1603
1667
  indexedJson: Json | null;
1604
1668
  isArchived: Generated<boolean | null>;
1605
1669
  json: Json | null;
1670
+ /**
1671
+ * deprecated
1672
+ */
1606
1673
  listingConnectionId: string | null;
1674
+ /**
1675
+ * deprecated
1676
+ */
1607
1677
  listingId: string | null;
1608
1678
  modifiedAt: Timestamp | null;
1609
1679
  parentId: string | null;
@@ -1828,6 +1898,50 @@ export interface PublicWebhook {
1828
1898
  url: string;
1829
1899
  }
1830
1900
 
1901
+ export interface StoreDispatchedAction {
1902
+ actionType: string;
1903
+ apiEndpoint: string | null;
1904
+ createdAt: Generated<Timestamp>;
1905
+ id: Generated<string>;
1906
+ message: string | null;
1907
+ payload: Json | null;
1908
+ requestR2Link: string | null;
1909
+ sequence: Generated<number>;
1910
+ tenantId: string;
1911
+ userId: string | null;
1912
+ }
1913
+
1914
+ export interface StoreEffectQueue {
1915
+ claimedAt: Timestamp | null;
1916
+ claimedBy: string | null;
1917
+ completedAt: Timestamp | null;
1918
+ createdAt: Generated<Timestamp>;
1919
+ dispatchedActionId: string;
1920
+ effectType: string;
1921
+ id: Generated<string>;
1922
+ lastAttemptAt: Timestamp | null;
1923
+ lastError: string | null;
1924
+ maxRetries: Generated<number>;
1925
+ payload: Json;
1926
+ priority: Generated<number>;
1927
+ retryCount: Generated<number>;
1928
+ sequence: Generated<number>;
1929
+ status: Generated<StoreEffectStatus>;
1930
+ tenantId: string;
1931
+ }
1932
+
1933
+ export interface StoreMutationLog {
1934
+ changeRecord: Json;
1935
+ createdAt: Generated<Timestamp>;
1936
+ dispatchedActionId: string;
1937
+ effectId: string | null;
1938
+ id: Generated<string>;
1939
+ mutatedEntityId: string;
1940
+ mutatedEntityType: string;
1941
+ mutationOp: string;
1942
+ tenantId: string;
1943
+ }
1944
+
1831
1945
  export interface TrackingEvent {
1832
1946
  createdAt: Generated<Timestamp>;
1833
1947
  id: Generated<string>;
@@ -1842,7 +1956,7 @@ export interface TrackingEvent {
1842
1956
 
1843
1957
  export interface TrackingIntercomConversation {
1844
1958
  answer: string;
1845
- conversationId: number;
1959
+ conversationId: Int8;
1846
1960
  createdAt: Generated<Timestamp>;
1847
1961
  id: Generated<string>;
1848
1962
  isRelevant: boolean;
@@ -1893,163 +2007,169 @@ export interface TrackingMonitorConnectionState {
1893
2007
  }
1894
2008
 
1895
2009
  export interface DB {
1896
- 'accounting.account': AccountingAccount;
1897
- 'accounting.accountAssignment': AccountingAccountAssignment;
1898
- 'accounting.accountAssignmentLineType': AccountingAccountAssignmentLineType;
1899
- 'accounting.accountAssignmentType': AccountingAccountAssignmentType;
1900
- 'accounting.accountCategory': AccountingAccountCategory;
1901
- 'accounting.accountClassification': AccountingAccountClassification;
1902
- 'accounting.accountReservationLineType': AccountingAccountReservationLineType;
1903
- 'accounting.accountReservationRevRec': AccountingAccountReservationRevRec;
1904
- 'accounting.accountType': AccountingAccountType;
1905
- 'accounting.bankAccount': AccountingBankAccount;
1906
- 'accounting.bankAccountCategory': AccountingBankAccountCategory;
1907
- 'accounting.bankAccountType': AccountingBankAccountType;
1908
- 'accounting.bankRecord': AccountingBankRecord;
1909
- 'accounting.bankRecordTransactionPayment': AccountingBankRecordTransactionPayment;
1910
- 'accounting.contact': AccountingContact;
1911
- 'accounting.contactCompanyType': AccountingContactCompanyType;
1912
- 'accounting.contactType': AccountingContactType;
1913
- 'accounting.journalEntry': AccountingJournalEntry;
1914
- 'accounting.journalEntryEntityType': AccountingJournalEntryEntityType;
1915
- 'accounting.journalEntryTriggerType': AccountingJournalEntryTriggerType;
1916
- 'accounting.journalEntryType': AccountingJournalEntryType;
1917
- 'accounting.paidStatus': AccountingPaidStatus;
1918
- 'accounting.party': AccountingParty;
1919
- 'accounting.rate': AccountingRate;
1920
- 'accounting.rateType': AccountingRateType;
1921
- 'accounting.taxBehavior': AccountingTaxBehavior;
1922
- 'accounting.transaction': AccountingTransaction;
1923
- 'accounting.transactionLine': AccountingTransactionLine;
1924
- 'accounting.transactionType': AccountingTransactionType;
1925
- 'core.action': CoreAction;
1926
- 'core.activeStatus': CoreActiveStatus;
1927
- 'core.auditTrail': CoreAuditTrail;
1928
- 'core.change': CoreChange;
1929
- 'core.changeEntityType': CoreChangeEntityType;
1930
- 'core.changeLink': CoreChangeLink;
1931
- 'core.changeSourceLink': CoreChangeSourceLink;
1932
- 'core.changeStatus': CoreChangeStatus;
1933
- 'core.changeSyncType': CoreChangeSyncType;
1934
- 'core.changeType': CoreChangeType;
1935
- 'core.issue': CoreIssue;
1936
- 'core.issueKind': CoreIssueKind;
1937
- 'core.issueMessageOverwrite': CoreIssueMessageOverwrite;
1938
- 'core.issueStatus': CoreIssueStatus;
1939
- 'core.issueType': CoreIssueType;
1940
- 'core.job': CoreJob;
1941
- 'core.jobPage': CoreJobPage;
1942
- 'core.jobPlan': CoreJobPlan;
1943
- 'core.schema': CoreSchema;
1944
- 'core.schemaKind': CoreSchemaKind;
1945
- 'core.sourceAction': CoreSourceAction;
1946
- 'core.sourceOp': CoreSourceOp;
1947
- 'core.sync': CoreSync;
1948
- 'core.syncStatus': CoreSyncStatus;
1949
- 'core.syncSubtask': CoreSyncSubtask;
1950
- 'core.syncType': CoreSyncType;
1951
- 'hdbCatalog.eventInvocationLogs': HdbCatalogEventInvocationLogs;
1952
- 'hdbCatalog.eventLog': HdbCatalogEventLog;
1953
- 'hdbCatalog.hdbActionLog': HdbCatalogHdbActionLog;
1954
- 'hdbCatalog.hdbCronEventInvocationLogs': HdbCatalogHdbCronEventInvocationLogs;
1955
- 'hdbCatalog.hdbCronEvents': HdbCatalogHdbCronEvents;
1956
- 'hdbCatalog.hdbEventLogCleanups': HdbCatalogHdbEventLogCleanups;
1957
- 'hdbCatalog.hdbMetadata': HdbCatalogHdbMetadata;
1958
- 'hdbCatalog.hdbScheduledEventInvocationLogs': HdbCatalogHdbScheduledEventInvocationLogs;
1959
- 'hdbCatalog.hdbScheduledEvents': HdbCatalogHdbScheduledEvents;
1960
- 'hdbCatalog.hdbSchemaNotifications': HdbCatalogHdbSchemaNotifications;
1961
- 'hdbCatalog.hdbSourceCatalogVersion': HdbCatalogHdbSourceCatalogVersion;
1962
- 'hdbCatalog.hdbVersion': HdbCatalogHdbVersion;
1963
- 'public.accountCollection': PublicAccountCollection;
1964
- 'public.accountCollectionType': PublicAccountCollectionType;
1965
- 'public.action': PublicAction;
1966
- 'public.actionStatus': PublicActionStatus;
1967
- 'public.address': PublicAddress;
1968
- 'public.app': PublicApp;
1969
- 'public.auditLog': PublicAuditLog;
1970
- 'public.automation': PublicAutomation;
1971
- 'public.automationStatus': PublicAutomationStatus;
1972
- 'public.automationTemplate': PublicAutomationTemplate;
1973
- 'public.billingPaymentMethodType': PublicBillingPaymentMethodType;
1974
- 'public.bookingChannel': PublicBookingChannel;
1975
- 'public.connection': PublicConnection;
1976
- 'public.connectionStatusTemporary': PublicConnectionStatusTemporary;
1977
- 'public.csvLine': PublicCsvLine;
1978
- 'public.currency': PublicCurrency;
1979
- 'public.duplicateEmails': PublicDuplicateEmails;
1980
- 'public.emailTemplate': PublicEmailTemplate;
1981
- 'public.emailTemplateType': PublicEmailTemplateType;
1982
- 'public.feature': PublicFeature;
1983
- 'public.featureApproval': PublicFeatureApproval;
1984
- 'public.featureApprovalStatus': PublicFeatureApprovalStatus;
1985
- 'public.featureEnabledTeam': PublicFeatureEnabledTeam;
1986
- 'public.featureStatus': PublicFeatureStatus;
1987
- 'public.fileStorage': PublicFileStorage;
1988
- 'public.fileStorageSourceLink': PublicFileStorageSourceLink;
1989
- 'public.fileStorageTag': PublicFileStorageTag;
1990
- 'public.latestDuplicateEmails': PublicLatestDuplicateEmails;
1991
- 'public.listing': PublicListing;
1992
- 'public.listingCollection': PublicListingCollection;
1993
- 'public.listingConnection': PublicListingConnection;
1994
- 'public.listingOwner': PublicListingOwner;
1995
- 'public.listingOwnerRole': PublicListingOwnerRole;
1996
- 'public.listingOwnershipPeriod': PublicListingOwnershipPeriod;
1997
- 'public.listingOwnershipPeriodMember': PublicListingOwnershipPeriodMember;
1998
- 'public.listingPmsStatus': PublicListingPmsStatus;
1999
- 'public.listingStatus': PublicListingStatus;
2000
- 'public.metric': PublicMetric;
2001
- 'public.owner': PublicOwner;
2002
- 'public.ownerPmsStatus': PublicOwnerPmsStatus;
2003
- 'public.ownerStatement': PublicOwnerStatement;
2004
- 'public.ownerStatementIssue': PublicOwnerStatementIssue;
2005
- 'public.ownerStatementLayout': PublicOwnerStatementLayout;
2006
- 'public.ownerStatementLayoutAccount': PublicOwnerStatementLayoutAccount;
2007
- 'public.ownerStatementLayoutListing': PublicOwnerStatementLayoutListing;
2008
- 'public.ownerStatementLine': PublicOwnerStatementLine;
2009
- 'public.ownerStatementOwner': PublicOwnerStatementOwner;
2010
- 'public.ownerStatementStatus': PublicOwnerStatementStatus;
2011
- 'public.ownerStatementTemplate': PublicOwnerStatementTemplate;
2012
- 'public.ownerStatus': PublicOwnerStatus;
2013
- 'public.ownerType': PublicOwnerType;
2014
- 'public.ownerUserAccess': PublicOwnerUserAccess;
2015
- 'public.ownerUserAccessRole': PublicOwnerUserAccessRole;
2016
- 'public.payment': PublicPayment;
2017
- 'public.paymentLine': PublicPaymentLine;
2018
- 'public.paymentLineClassification': PublicPaymentLineClassification;
2019
- 'public.paymentStatus': PublicPaymentStatus;
2020
- 'public.paymentType': PublicPaymentType;
2021
- 'public.recurringFee': PublicRecurringFee;
2022
- 'public.recurringFeeAccount': PublicRecurringFeeAccount;
2023
- 'public.recurringFeeListingSubscription': PublicRecurringFeeListingSubscription;
2024
- 'public.recurringFeeListingSubscriptionRateType': PublicRecurringFeeListingSubscriptionRateType;
2025
- 'public.recurringFeeType': PublicRecurringFeeType;
2026
- 'public.reservation': PublicReservation;
2027
- 'public.reservationStatus': PublicReservationStatus;
2028
- 'public.reservationWithOccupancyStatus': PublicReservationWithOccupancyStatus;
2029
- 'public.scheduledEvent': PublicScheduledEvent;
2030
- 'public.scheduledEventStatus': PublicScheduledEventStatus;
2031
- 'public.setting': PublicSetting;
2032
- 'public.source': PublicSource;
2033
- 'public.task': PublicTask;
2034
- 'public.taxStatement': PublicTaxStatement;
2035
- 'public.taxStatementStatus': PublicTaxStatementStatus;
2036
- 'public.tenant': PublicTenant;
2037
- 'public.tenantUser': PublicTenantUser;
2038
- 'public.token': PublicToken;
2039
- 'public.user': PublicUser;
2040
- 'public.userCompanyType': PublicUserCompanyType;
2041
- 'public.userCompanyUser': PublicUserCompanyUser;
2042
- 'public.view': PublicView;
2043
- 'public.viewNotificationEvents': PublicViewNotificationEvents;
2044
- 'public.viewNotificationEventsGroupedByDate': PublicViewNotificationEventsGroupedByDate;
2045
- 'public.viewWebhookEvents': PublicViewWebhookEvents;
2046
- 'public.viewWebhookEventsGroupedByDate': PublicViewWebhookEventsGroupedByDate;
2047
- 'public.webhook': PublicWebhook;
2048
- 'tracking.event': TrackingEvent;
2049
- 'tracking.intercomConversation': TrackingIntercomConversation;
2050
- 'tracking.intercomConversationUser': TrackingIntercomConversationUser;
2051
- 'tracking.intercomReport': TrackingIntercomReport;
2052
- 'tracking.intercomReportConversation': TrackingIntercomReportConversation;
2053
- 'tracking.monitorConnection': TrackingMonitorConnection;
2054
- 'tracking.monitorConnectionState': TrackingMonitorConnectionState;
2010
+ "accounting.account": AccountingAccount;
2011
+ "accounting.accountAssignment": AccountingAccountAssignment;
2012
+ "accounting.accountAssignmentLineType": AccountingAccountAssignmentLineType;
2013
+ "accounting.accountAssignmentType": AccountingAccountAssignmentType;
2014
+ "accounting.accountCategory": AccountingAccountCategory;
2015
+ "accounting.accountClassification": AccountingAccountClassification;
2016
+ "accounting.accountReservationLineType": AccountingAccountReservationLineType;
2017
+ "accounting.accountReservationRevRec": AccountingAccountReservationRevRec;
2018
+ "accounting.accountType": AccountingAccountType;
2019
+ "accounting.bankAccount": AccountingBankAccount;
2020
+ "accounting.bankAccountCategory": AccountingBankAccountCategory;
2021
+ "accounting.bankAccountType": AccountingBankAccountType;
2022
+ "accounting.bankRecord": AccountingBankRecord;
2023
+ "accounting.bankRecordTransactionPayment": AccountingBankRecordTransactionPayment;
2024
+ "accounting.contact": AccountingContact;
2025
+ "accounting.contactCompanyType": AccountingContactCompanyType;
2026
+ "accounting.contactType": AccountingContactType;
2027
+ "accounting.journalEntry": AccountingJournalEntry;
2028
+ "accounting.journalEntryEntityType": AccountingJournalEntryEntityType;
2029
+ "accounting.journalEntryTriggerType": AccountingJournalEntryTriggerType;
2030
+ "accounting.journalEntryType": AccountingJournalEntryType;
2031
+ "accounting.paidStatus": AccountingPaidStatus;
2032
+ "accounting.party": AccountingParty;
2033
+ "accounting.rate": AccountingRate;
2034
+ "accounting.rateType": AccountingRateType;
2035
+ "accounting.taxBehavior": AccountingTaxBehavior;
2036
+ "accounting.transaction": AccountingTransaction;
2037
+ "accounting.transactionLine": AccountingTransactionLine;
2038
+ "accounting.transactionType": AccountingTransactionType;
2039
+ "core.action": CoreAction;
2040
+ "core.activeStatus": CoreActiveStatus;
2041
+ "core.change": CoreChange;
2042
+ "core.changeEntityType": CoreChangeEntityType;
2043
+ "core.changeLink": CoreChangeLink;
2044
+ "core.changeSourceLink": CoreChangeSourceLink;
2045
+ "core.changeStatus": CoreChangeStatus;
2046
+ "core.changeSyncType": CoreChangeSyncType;
2047
+ "core.changeType": CoreChangeType;
2048
+ "core.issue": CoreIssue;
2049
+ "core.issueKind": CoreIssueKind;
2050
+ "core.issueMessageOverwrite": CoreIssueMessageOverwrite;
2051
+ "core.issueStatus": CoreIssueStatus;
2052
+ "core.issueType": CoreIssueType;
2053
+ "core.job": CoreJob;
2054
+ "core.jobPage": CoreJobPage;
2055
+ "core.jobPlan": CoreJobPlan;
2056
+ "core.schema": CoreSchema;
2057
+ "core.schemaKind": CoreSchemaKind;
2058
+ "core.sourceAction": CoreSourceAction;
2059
+ "core.sourceOp": CoreSourceOp;
2060
+ "core.sync": CoreSync;
2061
+ "core.syncStatus": CoreSyncStatus;
2062
+ "core.syncSubtask": CoreSyncSubtask;
2063
+ "core.syncType": CoreSyncType;
2064
+ "hdbCatalog.eventInvocationLogs": HdbCatalogEventInvocationLogs;
2065
+ "hdbCatalog.eventLog": HdbCatalogEventLog;
2066
+ "hdbCatalog.hdbActionLog": HdbCatalogHdbActionLog;
2067
+ "hdbCatalog.hdbCronEventInvocationLogs": HdbCatalogHdbCronEventInvocationLogs;
2068
+ "hdbCatalog.hdbCronEvents": HdbCatalogHdbCronEvents;
2069
+ "hdbCatalog.hdbEventLogCleanups": HdbCatalogHdbEventLogCleanups;
2070
+ "hdbCatalog.hdbMetadata": HdbCatalogHdbMetadata;
2071
+ "hdbCatalog.hdbScheduledEventInvocationLogs": HdbCatalogHdbScheduledEventInvocationLogs;
2072
+ "hdbCatalog.hdbScheduledEvents": HdbCatalogHdbScheduledEvents;
2073
+ "hdbCatalog.hdbSchemaNotifications": HdbCatalogHdbSchemaNotifications;
2074
+ "hdbCatalog.hdbSourceCatalogVersion": HdbCatalogHdbSourceCatalogVersion;
2075
+ "hdbCatalog.hdbVersion": HdbCatalogHdbVersion;
2076
+ "public.accountCollection": PublicAccountCollection;
2077
+ "public.accountCollectionType": PublicAccountCollectionType;
2078
+ "public.action": PublicAction;
2079
+ "public.actionStatus": PublicActionStatus;
2080
+ "public.address": PublicAddress;
2081
+ "public.app": PublicApp;
2082
+ "public.auditLog": PublicAuditLog;
2083
+ "public.automation": PublicAutomation;
2084
+ "public.automationStatus": PublicAutomationStatus;
2085
+ "public.automationTemplate": PublicAutomationTemplate;
2086
+ "public.billingPaymentMethodType": PublicBillingPaymentMethodType;
2087
+ "public.bookingChannel": PublicBookingChannel;
2088
+ "public.connection": PublicConnection;
2089
+ "public.connectionStatusTemporary": PublicConnectionStatusTemporary;
2090
+ "public.csvLine": PublicCsvLine;
2091
+ "public.currency": PublicCurrency;
2092
+ "public.duplicateEmails": PublicDuplicateEmails;
2093
+ "public.emailTemplate": PublicEmailTemplate;
2094
+ "public.emailTemplateType": PublicEmailTemplateType;
2095
+ "public.feature": PublicFeature;
2096
+ "public.featureApproval": PublicFeatureApproval;
2097
+ "public.featureApprovalStatus": PublicFeatureApprovalStatus;
2098
+ "public.featureEnabledTeam": PublicFeatureEnabledTeam;
2099
+ "public.featureStatus": PublicFeatureStatus;
2100
+ "public.fileStorage": PublicFileStorage;
2101
+ "public.fileStorageSourceLink": PublicFileStorageSourceLink;
2102
+ "public.fileStorageTag": PublicFileStorageTag;
2103
+ "public.latestDuplicateEmails": PublicLatestDuplicateEmails;
2104
+ "public.listing": PublicListing;
2105
+ "public.listingCollection": PublicListingCollection;
2106
+ "public.listingConnection": PublicListingConnection;
2107
+ "public.listingOwner": PublicListingOwner;
2108
+ "public.listingOwnerRole": PublicListingOwnerRole;
2109
+ "public.listingOwnershipPeriod": PublicListingOwnershipPeriod;
2110
+ "public.listingOwnershipPeriodBusinessModel": PublicListingOwnershipPeriodBusinessModel;
2111
+ "public.listingOwnershipPeriodMember": PublicListingOwnershipPeriodMember;
2112
+ "public.listingPmsStatus": PublicListingPmsStatus;
2113
+ "public.listingStatus": PublicListingStatus;
2114
+ "public.metric": PublicMetric;
2115
+ "public.owner": PublicOwner;
2116
+ "public.ownerPmsStatus": PublicOwnerPmsStatus;
2117
+ "public.ownerStatement": PublicOwnerStatement;
2118
+ "public.ownerStatementIssue": PublicOwnerStatementIssue;
2119
+ "public.ownerStatementLayout": PublicOwnerStatementLayout;
2120
+ "public.ownerStatementLayoutAccount": PublicOwnerStatementLayoutAccount;
2121
+ "public.ownerStatementLayoutListing": PublicOwnerStatementLayoutListing;
2122
+ "public.ownerStatementLine": PublicOwnerStatementLine;
2123
+ "public.ownerStatementOwner": PublicOwnerStatementOwner;
2124
+ "public.ownerStatementStatus": PublicOwnerStatementStatus;
2125
+ "public.ownerStatementTemplate": PublicOwnerStatementTemplate;
2126
+ "public.ownerStatus": PublicOwnerStatus;
2127
+ "public.ownerType": PublicOwnerType;
2128
+ "public.ownerUserAccess": PublicOwnerUserAccess;
2129
+ "public.ownerUserAccessRole": PublicOwnerUserAccessRole;
2130
+ "public.payment": PublicPayment;
2131
+ "public.paymentLine": PublicPaymentLine;
2132
+ "public.paymentLineClassification": PublicPaymentLineClassification;
2133
+ "public.paymentStatus": PublicPaymentStatus;
2134
+ "public.paymentType": PublicPaymentType;
2135
+ "public.pgpodmanStatus": PublicPgpodmanStatus;
2136
+ "public.pgStatStatements": PublicPgStatStatements;
2137
+ "public.pgStatStatementsInfo": PublicPgStatStatementsInfo;
2138
+ "public.recurringFee": PublicRecurringFee;
2139
+ "public.recurringFeeAccount": PublicRecurringFeeAccount;
2140
+ "public.recurringFeeListingSubscription": PublicRecurringFeeListingSubscription;
2141
+ "public.recurringFeeListingSubscriptionRateType": PublicRecurringFeeListingSubscriptionRateType;
2142
+ "public.recurringFeeType": PublicRecurringFeeType;
2143
+ "public.reservation": PublicReservation;
2144
+ "public.reservationStatus": PublicReservationStatus;
2145
+ "public.reservationWithOccupancyStatus": PublicReservationWithOccupancyStatus;
2146
+ "public.scheduledEvent": PublicScheduledEvent;
2147
+ "public.scheduledEventStatus": PublicScheduledEventStatus;
2148
+ "public.setting": PublicSetting;
2149
+ "public.source": PublicSource;
2150
+ "public.task": PublicTask;
2151
+ "public.taxStatement": PublicTaxStatement;
2152
+ "public.taxStatementStatus": PublicTaxStatementStatus;
2153
+ "public.tenant": PublicTenant;
2154
+ "public.tenantUser": PublicTenantUser;
2155
+ "public.token": PublicToken;
2156
+ "public.user": PublicUser;
2157
+ "public.userCompanyType": PublicUserCompanyType;
2158
+ "public.userCompanyUser": PublicUserCompanyUser;
2159
+ "public.view": PublicView;
2160
+ "public.viewNotificationEvents": PublicViewNotificationEvents;
2161
+ "public.viewNotificationEventsGroupedByDate": PublicViewNotificationEventsGroupedByDate;
2162
+ "public.viewWebhookEvents": PublicViewWebhookEvents;
2163
+ "public.viewWebhookEventsGroupedByDate": PublicViewWebhookEventsGroupedByDate;
2164
+ "public.webhook": PublicWebhook;
2165
+ "store.dispatchedAction": StoreDispatchedAction;
2166
+ "store.effectQueue": StoreEffectQueue;
2167
+ "store.mutationLog": StoreMutationLog;
2168
+ "tracking.event": TrackingEvent;
2169
+ "tracking.intercomConversation": TrackingIntercomConversation;
2170
+ "tracking.intercomConversationUser": TrackingIntercomConversationUser;
2171
+ "tracking.intercomReport": TrackingIntercomReport;
2172
+ "tracking.intercomReportConversation": TrackingIntercomReportConversation;
2173
+ "tracking.monitorConnection": TrackingMonitorConnection;
2174
+ "tracking.monitorConnectionState": TrackingMonitorConnectionState;
2055
2175
  }