@vrplatform/kysely 1.2.22 → 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.
- package/build/.data.tar +0 -0
- package/build/main/index.d.ts +1 -0
- package/build/main/index.js +8 -1
- package/build/main/index.js.map +1 -1
- package/build/main/v1.generated.d.ts +291 -173
- package/build/main/v1.generated.js.map +1 -1
- package/build/module/index.d.ts +1 -0
- package/build/module/index.js +7 -1
- package/build/module/index.js.map +1 -1
- package/build/module/v1.generated.d.ts +291 -173
- package/build/module/v1.generated.js.map +1 -1
- package/package.json +8 -5
- package/src/index.ts +8 -1
- package/src/v1.generated.ts +300 -180
|
@@ -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
|
|
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:
|
|
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
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
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
|
}
|