@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.
- package/build/.data.tar +0 -0
- package/build/main/index.d.ts +1 -0
- package/build/main/index.js +10 -2
- package/build/main/index.js.map +1 -1
- package/build/main/v0.generated.d.ts +4 -2
- package/build/main/v0.generated.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 +9 -2
- package/build/module/index.js.map +1 -1
- package/build/module/v0.generated.d.ts +4 -2
- package/build/module/v0.generated.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 +10 -7
- package/src/index.ts +10 -2
- package/src/v0.generated.ts +4 -2
- package/src/v1.generated.ts +300 -180
package/src/v1.generated.ts
CHANGED
|
@@ -3,19 +3,13 @@
|
|
|
3
3
|
* Please do not edit it manually.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import type { ColumnType } from
|
|
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:
|
|
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
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
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
|
}
|