@vrplatform/kysely 1.2.18

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.
Files changed (46) hide show
  1. package/LICENSE +3 -0
  2. package/build/.data.tar +0 -0
  3. package/build/main/db.generated.d.ts +1923 -0
  4. package/build/main/db.generated.js +7 -0
  5. package/build/main/db.generated.js.map +1 -0
  6. package/build/main/index.d.ts +11 -0
  7. package/build/main/index.js +66 -0
  8. package/build/main/index.js.map +1 -0
  9. package/build/main/local.d.ts +3 -0
  10. package/build/main/local.js +138 -0
  11. package/build/main/local.js.map +1 -0
  12. package/build/main/test.d.ts +1 -0
  13. package/build/main/test.js +13 -0
  14. package/build/main/test.js.map +1 -0
  15. package/build/main/tsconfig.main.tsbuildinfo +1 -0
  16. package/build/main/v0.generated.d.ts +1923 -0
  17. package/build/main/v0.generated.js +7 -0
  18. package/build/main/v0.generated.js.map +1 -0
  19. package/build/main/v1.generated.d.ts +1878 -0
  20. package/build/main/v1.generated.js +7 -0
  21. package/build/main/v1.generated.js.map +1 -0
  22. package/build/module/db.generated.d.ts +1923 -0
  23. package/build/module/db.generated.js +6 -0
  24. package/build/module/db.generated.js.map +1 -0
  25. package/build/module/index.d.ts +11 -0
  26. package/build/module/index.js +42 -0
  27. package/build/module/index.js.map +1 -0
  28. package/build/module/local.d.ts +3 -0
  29. package/build/module/local.js +99 -0
  30. package/build/module/local.js.map +1 -0
  31. package/build/module/test.d.ts +1 -0
  32. package/build/module/test.js +10 -0
  33. package/build/module/test.js.map +1 -0
  34. package/build/module/tsconfig.esm.tsbuildinfo +1 -0
  35. package/build/module/v0.generated.d.ts +1923 -0
  36. package/build/module/v0.generated.js +6 -0
  37. package/build/module/v0.generated.js.map +1 -0
  38. package/build/module/v1.generated.d.ts +1878 -0
  39. package/build/module/v1.generated.js +6 -0
  40. package/build/module/v1.generated.js.map +1 -0
  41. package/package.json +54 -0
  42. package/src/index.ts +66 -0
  43. package/src/local.ts +117 -0
  44. package/src/test.ts +11 -0
  45. package/src/v0.generated.ts +2097 -0
  46. package/src/v1.generated.ts +2051 -0
@@ -0,0 +1,2051 @@
1
+ /**
2
+ * This file was generated by kysely-codegen.
3
+ * Please do not edit it manually.
4
+ */
5
+
6
+ import type { ColumnType } from "kysely";
7
+
8
+ export type CoreAuditOperation = "DELETE" | "INSERT" | "UPDATE";
9
+
10
+ export type Generated<T> = T extends ColumnType<infer S, infer I, infer U>
11
+ ? ColumnType<S, I | undefined, U>
12
+ : ColumnType<T, T | undefined, T>;
13
+
14
+ export type Int8 = ColumnType<string, bigint | number | string, bigint | number | string>;
15
+
16
+ export type Json = JsonValue;
17
+
18
+ export type JsonArray = JsonValue[];
19
+
20
+ export type JsonObject = {
21
+ [x: string]: JsonValue | undefined;
22
+ };
23
+
24
+ export type JsonPrimitive = boolean | number | string | null;
25
+
26
+ export type JsonValue = JsonArray | JsonObject | JsonPrimitive;
27
+
28
+ export type Numeric = ColumnType<string, number | string, number | string>;
29
+
30
+ export type Timestamp = ColumnType<Date, Date | string, Date | string>;
31
+
32
+ export interface AccountingAccount {
33
+ bankingCategory: string | null;
34
+ bankingCurrency: string | null;
35
+ bankingLast4: string | null;
36
+ bankingType: string | null;
37
+ categoryId: string | null;
38
+ /**
39
+ * deprecated
40
+ */
41
+ classification: string | null;
42
+ createdAt: Generated<Timestamp | null>;
43
+ id: Generated<string>;
44
+ offsetAccountId: string | null;
45
+ status: Generated<string | null>;
46
+ tenantId: string | null;
47
+ title: string | null;
48
+ type: string | null;
49
+ uniqueRef: string | null;
50
+ updatedAt: Generated<Timestamp | null>;
51
+ }
52
+
53
+ export interface AccountingAccountAssignment {
54
+ accountId: string | null;
55
+ createdAt: Generated<Timestamp>;
56
+ id: Generated<string>;
57
+ tenantId: string;
58
+ type: string;
59
+ updatedAt: Generated<Timestamp>;
60
+ }
61
+
62
+ export interface AccountingAccountAssignmentLineType {
63
+ accountAssignmentType: string;
64
+ createdAt: Generated<Timestamp>;
65
+ id: Generated<string>;
66
+ lineType: string;
67
+ updatedAt: Generated<Timestamp>;
68
+ }
69
+
70
+ export interface AccountingAccountAssignmentType {
71
+ name: string;
72
+ }
73
+
74
+ export interface AccountingAccountCategory {
75
+ classification: string | null;
76
+ id: Generated<string>;
77
+ index: number;
78
+ name: string;
79
+ }
80
+
81
+ export interface AccountingAccountClassification {
82
+ name: string;
83
+ }
84
+
85
+ export interface AccountingAccountReservationLineType {
86
+ accountId: string | null;
87
+ bookingChannel: string | null;
88
+ createdAt: Generated<Timestamp>;
89
+ id: Generated<string>;
90
+ lineType: string;
91
+ revenueRecognition: string | null;
92
+ status: Generated<string | null>;
93
+ tenantId: string;
94
+ updatedAt: Generated<Timestamp>;
95
+ }
96
+
97
+ export interface AccountingAccountReservationRevRec {
98
+ name: string;
99
+ }
100
+
101
+ export interface AccountingAccountType {
102
+ name: string;
103
+ }
104
+
105
+ export interface AccountingBankAccount {
106
+ accountId: string | null;
107
+ category: Generated<string | null>;
108
+ connectionId: string | null;
109
+ createdAt: Generated<Timestamp>;
110
+ currency: string | null;
111
+ holderName: string | null;
112
+ id: Generated<string>;
113
+ lastDigits: string | null;
114
+ name: string | null;
115
+ sourceId: string | null;
116
+ /**
117
+ * The starting bank record for reconciliation
118
+ */
119
+ startingBankRecordId: string | null;
120
+ status: Generated<string>;
121
+ tenantId: string;
122
+ type: Generated<string | null>;
123
+ uniqueRef: string | null;
124
+ updatedAt: Generated<Timestamp>;
125
+ }
126
+
127
+ export interface AccountingBankAccountCategory {
128
+ name: string;
129
+ }
130
+
131
+ export interface AccountingBankAccountType {
132
+ name: string;
133
+ }
134
+
135
+ export interface AccountingBankRecord {
136
+ accountId: string | null;
137
+ bankAccountId: string | null;
138
+ calculatedCentBalance: number | null;
139
+ calculatedCentTotalCorrection: number | null;
140
+ centBalance: number | null;
141
+ centTotal: number | null;
142
+ connectionId: string | null;
143
+ createdAt: Generated<Timestamp>;
144
+ date: Timestamp;
145
+ description: string;
146
+ id: Generated<string>;
147
+ isBalanceAdjustment: Generated<boolean | null>;
148
+ reconcileStatus: Generated<string>;
149
+ sourceId: string | null;
150
+ status: Generated<string>;
151
+ tenantId: string;
152
+ uniqueRef: string | null;
153
+ updatedAt: Generated<Timestamp>;
154
+ }
155
+
156
+ export interface AccountingBankRecordTransactionPayment {
157
+ bankRecordId: string;
158
+ createdAt: Generated<Timestamp>;
159
+ id: Generated<string>;
160
+ tenantId: string | null;
161
+ transactionId: string;
162
+ updatedAt: Generated<Timestamp>;
163
+ }
164
+
165
+ export interface AccountingContact {
166
+ addressData: Json | null;
167
+ /**
168
+ * When NULL, the type is "individual"
169
+ */
170
+ companyType: string | null;
171
+ connectionId: string | null;
172
+ createdAt: Generated<Timestamp>;
173
+ defaultAccountId: string | null;
174
+ email: string | null;
175
+ firstName: string | null;
176
+ id: Generated<string>;
177
+ is1099PostalDelivery: Generated<boolean>;
178
+ name: string;
179
+ phone: string | null;
180
+ pmsStatus: string | null;
181
+ sourceId: string | null;
182
+ status: Generated<string | null>;
183
+ taxId: string | null;
184
+ tenantId: string;
185
+ /**
186
+ * owner OR vendor
187
+ */
188
+ type: string;
189
+ uniqueRef: string | null;
190
+ updatedAt: Generated<Timestamp>;
191
+ }
192
+
193
+ export interface AccountingContactCompanyType {
194
+ name: string;
195
+ }
196
+
197
+ export interface AccountingContactType {
198
+ name: string;
199
+ }
200
+
201
+ export interface AccountingJournalEntry {
202
+ accountId: string | null;
203
+ attachedToOwnerStatementId: string | null;
204
+ centTotal: Int8;
205
+ contactId: string | null;
206
+ createdAt: Generated<Timestamp | null>;
207
+ currency: string;
208
+ description: string | null;
209
+ entitySortNum: Generated<number | null>;
210
+ entityType: string | null;
211
+ id: Generated<string>;
212
+ lineId: string | null;
213
+ listingId: string | null;
214
+ listingOwnershipPeriodId: string | null;
215
+ party: string | null;
216
+ recurringFeeId: string | null;
217
+ recurringFeeListingSubscriptionId: string | null;
218
+ reservationId: string | null;
219
+ status: Generated<string>;
220
+ tenantId: string | null;
221
+ transactionId: string | null;
222
+ transferOwnerStatementId: string | null;
223
+ triggerId: string | null;
224
+ triggerType: string | null;
225
+ txnAt: Timestamp | null;
226
+ txnNum: number | null;
227
+ type: string | null;
228
+ uniqueRef: string | null;
229
+ updatedAt: Generated<Timestamp | null>;
230
+ }
231
+
232
+ export interface AccountingJournalEntryEntityType {
233
+ name: string;
234
+ }
235
+
236
+ export interface AccountingJournalEntryTriggerType {
237
+ name: string;
238
+ }
239
+
240
+ export interface AccountingJournalEntryType {
241
+ name: string;
242
+ }
243
+
244
+ export interface AccountingPaidStatus {
245
+ name: string;
246
+ }
247
+
248
+ export interface AccountingParty {
249
+ name: string;
250
+ }
251
+
252
+ export interface AccountingRate {
253
+ accountId: string | null;
254
+ basisPoints: number;
255
+ behavior: string | null;
256
+ countryCode: string | null;
257
+ createdAt: Generated<Timestamp>;
258
+ currency: string | null;
259
+ description: string | null;
260
+ id: Generated<string>;
261
+ name: string | null;
262
+ status: Generated<string | null>;
263
+ tenantId: string;
264
+ type: string | null;
265
+ uniqueRef: string | null;
266
+ updatedAt: Generated<Timestamp>;
267
+ }
268
+
269
+ export interface AccountingRateType {
270
+ name: string;
271
+ }
272
+
273
+ export interface AccountingTaxBehavior {
274
+ name: string;
275
+ }
276
+
277
+ export interface AccountingTransaction {
278
+ accountId: string | null;
279
+ centTotal: number;
280
+ connectionId: string | null;
281
+ contactId: string | null;
282
+ createdAt: Generated<Timestamp>;
283
+ currency: string;
284
+ date: Timestamp;
285
+ description: string;
286
+ dueAt: Timestamp | null;
287
+ id: Generated<string>;
288
+ matchers: Json | null;
289
+ matchStatus: Generated<string | null>;
290
+ paidAt: Timestamp | null;
291
+ paidStatus: Generated<string | null>;
292
+ recurringFeeId: string | null;
293
+ recurringPattern: Json | null;
294
+ recurringTemplateId: string | null;
295
+ sourceId: string | null;
296
+ status: Generated<string>;
297
+ tenantId: string;
298
+ type: string;
299
+ uniqueRef: string | null;
300
+ updatedAt: Generated<Timestamp>;
301
+ }
302
+
303
+ export interface AccountingTransactionLine {
304
+ accountAssignmentType: string | null;
305
+ accountId: string | null;
306
+ centTotal: number;
307
+ contactId: string | null;
308
+ createdAt: Generated<Timestamp>;
309
+ description: string;
310
+ id: Generated<string>;
311
+ listingId: string | null;
312
+ markupCentTotal: number | null;
313
+ markupTaxBehavior: string | null;
314
+ markupTaxRateId: string | null;
315
+ matchers: Generated<Json | null>;
316
+ matchLineTypeClassification: string | null;
317
+ matchReservationConfirmationCode: string | null;
318
+ matchReservationStripeGuestRef: string | null;
319
+ matchStatus: Generated<string | null>;
320
+ ownerStatementId: string | null;
321
+ party: string | null;
322
+ reservationId: string | null;
323
+ tenantId: string;
324
+ transactionId: string;
325
+ uniqueRef: string | null;
326
+ updatedAt: Generated<Timestamp>;
327
+ }
328
+
329
+ export interface AccountingTransactionType {
330
+ name: string;
331
+ }
332
+
333
+ export interface CoreAction {
334
+ appId: string | null;
335
+ automationId: string | null;
336
+ connectionId: string | null;
337
+ createdAt: Generated<Timestamp | null>;
338
+ id: Generated<string>;
339
+ inputJson: Json | null;
340
+ isCurrent: boolean | null;
341
+ jobId: string | null;
342
+ jobIndex: number | null;
343
+ jobPageId: string | null;
344
+ jobPlanId: string | null;
345
+ objectId: string | null;
346
+ opId: string | null;
347
+ outputJson: Json | null;
348
+ refs: Json | null;
349
+ schemaId: string | null;
350
+ sourceId: string | null;
351
+ status: string | null;
352
+ tenantId: string | null;
353
+ title: string | null;
354
+ type: string | null;
355
+ uniqueRef: string | null;
356
+ updatedAt: Generated<Timestamp | null>;
357
+ }
358
+
359
+ export interface CoreActiveStatus {
360
+ name: string;
361
+ }
362
+
363
+ export interface CoreAuditTrail {
364
+ createdAt: Generated<Timestamp>;
365
+ deltaJson: Json | null;
366
+ entityId: string | null;
367
+ entityType: string;
368
+ id: Generated<string>;
369
+ op: CoreAuditOperation;
370
+ tenantId: string;
371
+ updatedAt: Generated<Timestamp>;
372
+ userId: string | null;
373
+ }
374
+
375
+ export interface CoreChange {
376
+ automationId: string | null;
377
+ changeData: Json | null;
378
+ changeFields: Generated<Json | null>;
379
+ changeType: string | null;
380
+ connectionId: string | null;
381
+ createdAt: Generated<Timestamp>;
382
+ dataSha256: string | null;
383
+ entityId: string;
384
+ entityType: string;
385
+ entityUniqueRef: string | null;
386
+ id: Generated<string>;
387
+ isLatestVersion: Generated<boolean | null>;
388
+ message: string | null;
389
+ seq: Generated<Int8 | null>;
390
+ status: string | null;
391
+ syncId: string | null;
392
+ syncSubtaskId: string | null;
393
+ syncType: string | null;
394
+ tenantId: string;
395
+ updatedAt: Generated<Timestamp>;
396
+ version: Numeric;
397
+ }
398
+
399
+ export interface CoreChangeEntityType {
400
+ name: string;
401
+ }
402
+
403
+ export interface CoreChangeLink {
404
+ createdAt: Generated<Timestamp>;
405
+ id: Generated<string>;
406
+ leftChangeId: string;
407
+ rightChangeId: string;
408
+ tenantId: string;
409
+ updatedAt: Generated<Timestamp>;
410
+ }
411
+
412
+ export interface CoreChangeSourceLink {
413
+ changeId: string;
414
+ createdAt: Generated<Timestamp>;
415
+ id: Generated<string>;
416
+ sourceId: string;
417
+ tenantId: string;
418
+ updatedAt: Generated<Timestamp>;
419
+ }
420
+
421
+ export interface CoreChangeStatus {
422
+ name: string;
423
+ }
424
+
425
+ export interface CoreChangeSyncType {
426
+ name: string;
427
+ }
428
+
429
+ export interface CoreChangeType {
430
+ name: string;
431
+ }
432
+
433
+ export interface CoreIssue {
434
+ actionId: string | null;
435
+ automationId: string | null;
436
+ code: string | null;
437
+ connectionId: string | null;
438
+ createdAt: Generated<Timestamp | null>;
439
+ extractId: string | null;
440
+ extractPageId: string | null;
441
+ id: Generated<string>;
442
+ jobId: string | null;
443
+ jobPageId: string | null;
444
+ jobPlanId: string | null;
445
+ kind: string | null;
446
+ message: string | null;
447
+ metadata: Generated<Json | null>;
448
+ refId: Generated<string | null>;
449
+ refType: string | null;
450
+ refValue: string | null;
451
+ status: string | null;
452
+ subType: string | null;
453
+ tenantId: string | null;
454
+ type: string | null;
455
+ uniqueRef: string | null;
456
+ updatedAt: Generated<Timestamp | null>;
457
+ }
458
+
459
+ export interface CoreIssueKind {
460
+ name: string;
461
+ }
462
+
463
+ export interface CoreIssueMessageOverwrite {
464
+ createdAt: Generated<Timestamp | null>;
465
+ id: Generated<string>;
466
+ message: string;
467
+ pattern: string;
468
+ updatedAt: Generated<Timestamp | null>;
469
+ }
470
+
471
+ export interface CoreIssueStatus {
472
+ name: string;
473
+ }
474
+
475
+ export interface CoreIssueType {
476
+ name: string;
477
+ }
478
+
479
+ export interface CoreJob {
480
+ automationId: string | null;
481
+ connectionId: string | null;
482
+ createdAt: Generated<Timestamp | null>;
483
+ id: Generated<string>;
484
+ kind: string | null;
485
+ metadata: Generated<Json | null>;
486
+ params: Json | null;
487
+ planId: string | null;
488
+ rangeEnd: Timestamp | null;
489
+ rangeStart: Timestamp | null;
490
+ schemaId: string | null;
491
+ status: Generated<string>;
492
+ tenantId: string | null;
493
+ title: string | null;
494
+ type: string | null;
495
+ updatedAt: Generated<Timestamp | null>;
496
+ workflowId: string | null;
497
+ }
498
+
499
+ export interface CoreJobPage {
500
+ createdAt: Generated<Timestamp | null>;
501
+ cursor: string | null;
502
+ id: Generated<string>;
503
+ jobId: string | null;
504
+ params: Json | null;
505
+ status: Generated<string>;
506
+ tenantId: string | null;
507
+ title: string | null;
508
+ updatedAt: Generated<Timestamp | null>;
509
+ }
510
+
511
+ export interface CoreJobPlan {
512
+ automationId: string | null;
513
+ connectionId: string | null;
514
+ createdAt: Generated<Timestamp>;
515
+ hypervisorRef: string | null;
516
+ id: Generated<string>;
517
+ isCurrentOnConnection: Generated<boolean | null>;
518
+ params: Json | null;
519
+ rangeEnd: Timestamp | null;
520
+ rangeStart: Timestamp | null;
521
+ status: Generated<string>;
522
+ tenantId: string;
523
+ title: string | null;
524
+ triggeredByUserId: string | null;
525
+ type: string | null;
526
+ updatedAt: Generated<Timestamp>;
527
+ workflowId: string | null;
528
+ }
529
+
530
+ export interface CoreSchema {
531
+ appId: string | null;
532
+ createdAt: Generated<Timestamp | null>;
533
+ hasExternalLinks: boolean | null;
534
+ id: Generated<string>;
535
+ indexSchema: Json | null;
536
+ jsonSchema: Json | null;
537
+ kind: string | null;
538
+ uniqueRef: string | null;
539
+ updatedAt: Generated<Timestamp | null>;
540
+ }
541
+
542
+ export interface CoreSchemaKind {
543
+ name: string;
544
+ }
545
+
546
+ export interface CoreSourceAction {
547
+ actionId: string;
548
+ createdAt: Generated<Timestamp>;
549
+ id: Generated<string>;
550
+ opId: string | null;
551
+ sourceId: string;
552
+ tenantId: string | null;
553
+ updatedAt: Generated<Timestamp>;
554
+ }
555
+
556
+ export interface CoreSourceOp {
557
+ actionId: string | null;
558
+ createdAt: Generated<Timestamp | null>;
559
+ fields: Generated<Json>;
560
+ id: Generated<string>;
561
+ jobId: string | null;
562
+ jobPageId: string | null;
563
+ jobPlanId: string | null;
564
+ json: Json | null;
565
+ kind: string;
566
+ sourceId: string;
567
+ tenantId: string;
568
+ updatedAt: Generated<Timestamp | null>;
569
+ version: Generated<number | null>;
570
+ }
571
+
572
+ export interface CoreSync {
573
+ automationId: string | null;
574
+ connectionId: string | null;
575
+ createdAt: Generated<Timestamp>;
576
+ id: Generated<string>;
577
+ isCurrentOnAutomation: Generated<boolean | null>;
578
+ isCurrentOnConnection: Generated<boolean>;
579
+ message: string | null;
580
+ params: Generated<Json>;
581
+ status: string;
582
+ syncedAt: Timestamp | null;
583
+ tenantId: string;
584
+ triggerRef: string | null;
585
+ type: string;
586
+ updatedAt: Generated<Timestamp>;
587
+ userId: string | null;
588
+ }
589
+
590
+ export interface CoreSyncStatus {
591
+ name: string;
592
+ }
593
+
594
+ export interface CoreSyncSubtask {
595
+ createdAt: Generated<Timestamp>;
596
+ id: Generated<string>;
597
+ message: string | null;
598
+ params: Generated<Json | null>;
599
+ status: Generated<string>;
600
+ syncId: string;
601
+ tenantId: string;
602
+ triggerRef: string | null;
603
+ updatedAt: Generated<Timestamp>;
604
+ }
605
+
606
+ export interface CoreSyncType {
607
+ name: string;
608
+ }
609
+
610
+ export interface HdbCatalogEventInvocationLogs {
611
+ createdAt: Generated<Timestamp | null>;
612
+ eventId: string | null;
613
+ id: Generated<string>;
614
+ request: Json | null;
615
+ response: Json | null;
616
+ status: number | null;
617
+ triggerName: string | null;
618
+ }
619
+
620
+ export interface HdbCatalogEventLog {
621
+ archived: Generated<boolean>;
622
+ createdAt: Generated<Timestamp | null>;
623
+ delivered: Generated<boolean>;
624
+ error: Generated<boolean>;
625
+ id: Generated<string>;
626
+ locked: Timestamp | null;
627
+ nextRetryAt: Timestamp | null;
628
+ payload: Json;
629
+ schemaName: string;
630
+ tableName: string;
631
+ tries: Generated<number>;
632
+ triggerName: string;
633
+ }
634
+
635
+ export interface HdbCatalogHdbActionLog {
636
+ actionName: string | null;
637
+ createdAt: Generated<Timestamp>;
638
+ errors: Json | null;
639
+ id: Generated<string>;
640
+ inputPayload: Json;
641
+ requestHeaders: Json;
642
+ responsePayload: Json | null;
643
+ responseReceivedAt: Timestamp | null;
644
+ sessionVariables: Json;
645
+ status: string;
646
+ }
647
+
648
+ export interface HdbCatalogHdbCronEventInvocationLogs {
649
+ createdAt: Generated<Timestamp | null>;
650
+ eventId: string | null;
651
+ id: Generated<string>;
652
+ request: Json | null;
653
+ response: Json | null;
654
+ status: number | null;
655
+ }
656
+
657
+ export interface HdbCatalogHdbCronEvents {
658
+ createdAt: Generated<Timestamp | null>;
659
+ id: Generated<string>;
660
+ nextRetryAt: Timestamp | null;
661
+ scheduledTime: Timestamp;
662
+ status: Generated<string>;
663
+ tries: Generated<number>;
664
+ triggerName: string;
665
+ }
666
+
667
+ export interface HdbCatalogHdbEventLogCleanups {
668
+ deletedEventInvocationLogs: number | null;
669
+ deletedEventLogs: number | null;
670
+ id: Generated<string>;
671
+ scheduledAt: Timestamp;
672
+ status: string;
673
+ triggerName: string;
674
+ }
675
+
676
+ export interface HdbCatalogHdbMetadata {
677
+ id: number;
678
+ metadata: Json;
679
+ resourceVersion: Generated<number>;
680
+ }
681
+
682
+ export interface HdbCatalogHdbScheduledEventInvocationLogs {
683
+ createdAt: Generated<Timestamp | null>;
684
+ eventId: string | null;
685
+ id: Generated<string>;
686
+ request: Json | null;
687
+ response: Json | null;
688
+ status: number | null;
689
+ }
690
+
691
+ export interface HdbCatalogHdbScheduledEvents {
692
+ comment: string | null;
693
+ createdAt: Generated<Timestamp | null>;
694
+ headerConf: Json | null;
695
+ id: Generated<string>;
696
+ nextRetryAt: Timestamp | null;
697
+ payload: Json | null;
698
+ retryConf: Json | null;
699
+ scheduledTime: Timestamp;
700
+ status: Generated<string>;
701
+ tries: Generated<number>;
702
+ webhookConf: Json;
703
+ }
704
+
705
+ export interface HdbCatalogHdbSchemaNotifications {
706
+ id: number;
707
+ instanceId: string;
708
+ notification: Json;
709
+ resourceVersion: Generated<number>;
710
+ updatedAt: Generated<Timestamp | null>;
711
+ }
712
+
713
+ export interface HdbCatalogHdbSourceCatalogVersion {
714
+ upgradedOn: Timestamp;
715
+ version: string;
716
+ }
717
+
718
+ export interface HdbCatalogHdbVersion {
719
+ cliState: Generated<Json>;
720
+ consoleState: Generated<Json>;
721
+ eeClientId: string | null;
722
+ eeClientSecret: string | null;
723
+ hasuraUuid: Generated<string>;
724
+ upgradedOn: Timestamp;
725
+ version: string;
726
+ }
727
+
728
+ export interface PublicAccountCollection {
729
+ automationId: string | null;
730
+ connectionId: string;
731
+ createdAt: Generated<Timestamp | null>;
732
+ id: Generated<string>;
733
+ name: string;
734
+ tenantId: string;
735
+ type: Generated<string | null>;
736
+ updatedAt: Generated<Timestamp | null>;
737
+ }
738
+
739
+ export interface PublicAccountCollectionType {
740
+ name: string;
741
+ }
742
+
743
+ export interface PublicAction {
744
+ automationId: string | null;
745
+ automationTaskId: string | null;
746
+ connectionId: string | null;
747
+ createdAt: Generated<Timestamp>;
748
+ id: Generated<string>;
749
+ inputFileId: string | null;
750
+ jobTaskId: string | null;
751
+ outputFileId: string | null;
752
+ processTaskId: string | null;
753
+ status: string | null;
754
+ taskId: string | null;
755
+ tenantId: string | null;
756
+ type: string | null;
757
+ uniqueRef: string | null;
758
+ updatedAt: Generated<Timestamp>;
759
+ }
760
+
761
+ export interface PublicActionStatus {
762
+ name: string;
763
+ }
764
+
765
+ export interface PublicAddress {
766
+ city: string | null;
767
+ country: string | null;
768
+ countryCode: string | null;
769
+ createdAt: Generated<Timestamp>;
770
+ full: string | null;
771
+ id: Generated<string>;
772
+ lastValidated: Timestamp | null;
773
+ line: string | null;
774
+ lineDetails: string | null;
775
+ postalCode: string | null;
776
+ state: string | null;
777
+ stateCode: string | null;
778
+ tenantId: string | null;
779
+ uniqueRef: string | null;
780
+ updatedAt: Generated<Timestamp>;
781
+ }
782
+
783
+ export interface PublicApp {
784
+ authentication: Generated<Json>;
785
+ category: string | null;
786
+ color: string | null;
787
+ config: Generated<Json>;
788
+ createdAt: Generated<Timestamp>;
789
+ defaultMachineSize: string | null;
790
+ endpoint: string | null;
791
+ flows: Generated<Json>;
792
+ flyApp: string | null;
793
+ icon: string | null;
794
+ iconRound: string | null;
795
+ id: Generated<string>;
796
+ info: Json | null;
797
+ name: string;
798
+ pluginData: Json | null;
799
+ type: string;
800
+ uid: Generated<string | null>;
801
+ version: Generated<number>;
802
+ }
803
+
804
+ export interface PublicAuditLog {
805
+ actorUserId: string | null;
806
+ automationId: string | null;
807
+ connectionId: string | null;
808
+ contactId: string | null;
809
+ createdAt: Generated<Timestamp>;
810
+ deltaJson: Json | null;
811
+ id: Generated<string>;
812
+ listingCollectionId: string | null;
813
+ listingId: string | null;
814
+ objectId: string | null;
815
+ op: string;
816
+ ownerId: string | null;
817
+ ownerStatementId: string | null;
818
+ ownerStatementLayoutId: string | null;
819
+ tableName: string;
820
+ taxStatementId: string | null;
821
+ tenantId: string | null;
822
+ userId: string | null;
823
+ }
824
+
825
+ export interface PublicAutomation {
826
+ connectionId: string | null;
827
+ createdAt: Generated<Timestamp>;
828
+ id: Generated<string>;
829
+ leftConnectionId: string | null;
830
+ rightConnectionId: string | null;
831
+ runSettings: Json | null;
832
+ scheduleStatus: Generated<string | null>;
833
+ status: Generated<string>;
834
+ template: string | null;
835
+ templateId: string | null;
836
+ tenantId: string;
837
+ title: string | null;
838
+ triggerDevTaskOverwrite: string | null;
839
+ updatedAt: Generated<Timestamp>;
840
+ viewSettings: Json | null;
841
+ }
842
+
843
+ export interface PublicAutomationStatus {
844
+ name: string;
845
+ }
846
+
847
+ export interface PublicAutomationTemplate {
848
+ /**
849
+ * determines whether this automation allows a team to configure multiple versions of this with the same leftConnection rightConnection combination
850
+ */
851
+ allowMultiple: boolean | null;
852
+ appId: string | null;
853
+ createdAt: Generated<Timestamp | null>;
854
+ description: string;
855
+ endpoint: string;
856
+ id: Generated<string>;
857
+ input: string;
858
+ label: string | null;
859
+ leftAppId: string | null;
860
+ mappings: Json | null;
861
+ name: string | null;
862
+ params: Generated<Json | null>;
863
+ preview: Json | null;
864
+ rightAppId: string | null;
865
+ settings: Json | null;
866
+ stripePriceRef: string | null;
867
+ title: string | null;
868
+ triggerDevTask: string | null;
869
+ triggers: Generated<Json | null>;
870
+ type: string | null;
871
+ uniqueRef: string | null;
872
+ updatedAt: Generated<Timestamp | null>;
873
+ version: string | null;
874
+ visibility: string | null;
875
+ }
876
+
877
+ export interface PublicBillingPaymentMethodType {
878
+ name: string;
879
+ }
880
+
881
+ export interface PublicBookingChannel {
882
+ channelRef: string | null;
883
+ createdAt: Generated<Timestamp>;
884
+ icon: string | null;
885
+ id: Generated<string>;
886
+ uniqueRef: string;
887
+ updatedAt: Generated<Timestamp>;
888
+ }
889
+
890
+ export interface PublicConnection {
891
+ appId: string;
892
+ backendVersion: number | null;
893
+ createdAt: Generated<Timestamp>;
894
+ credentials: Generated<Json | null>;
895
+ disabled: Generated<boolean | null>;
896
+ fetchNext: Generated<Timestamp | null>;
897
+ fetchStatus: Generated<string>;
898
+ icon: string | null;
899
+ id: Generated<string>;
900
+ lastFetch: Timestamp | null;
901
+ metadata: Json | null;
902
+ name: string;
903
+ persistentState: Generated<Json | null>;
904
+ status: Generated<string | null>;
905
+ tenantId: string;
906
+ type: string | null;
907
+ uniqueRef: string | null;
908
+ updatedAt: Generated<Timestamp | null>;
909
+ version: number | null;
910
+ }
911
+
912
+ export interface PublicConnectionStatusTemporary {
913
+ name: string;
914
+ }
915
+
916
+ export interface PublicCsvLine {
917
+ connectionId: string;
918
+ createdAt: Generated<Timestamp | null>;
919
+ csv: string;
920
+ date: Timestamp;
921
+ fileId: string | null;
922
+ fileUniqueRef: string | null;
923
+ headers: string | null;
924
+ id: Generated<string>;
925
+ index: number | null;
926
+ json: Json | null;
927
+ tenantId: string;
928
+ type: string;
929
+ uniqueRef: string;
930
+ updatedAt: Generated<Timestamp | null>;
931
+ }
932
+
933
+ export interface PublicCurrency {
934
+ name: string;
935
+ }
936
+
937
+ export interface PublicDuplicateEmails {
938
+ count: Int8 | null;
939
+ email: string | null;
940
+ id: string | null;
941
+ }
942
+
943
+ export interface PublicEmailTemplate {
944
+ createdAt: Generated<Timestamp>;
945
+ dataJson: Json;
946
+ id: Generated<string>;
947
+ tenantId: string;
948
+ type: string;
949
+ updatedAt: Generated<Timestamp>;
950
+ }
951
+
952
+ export interface PublicEmailTemplateType {
953
+ name: string;
954
+ }
955
+
956
+ export interface PublicFeature {
957
+ createdAt: Generated<Timestamp>;
958
+ description: string | null;
959
+ id: Generated<string>;
960
+ issueUrl: string | null;
961
+ /**
962
+ * user ids of user needed to approve this feature
963
+ */
964
+ requiredApprovals: Generated<Json | null>;
965
+ status: Generated<string | null>;
966
+ tenantId: string | null;
967
+ title: string;
968
+ updatedAt: Generated<Timestamp>;
969
+ url: string | null;
970
+ }
971
+
972
+ export interface PublicFeatureApproval {
973
+ createdAt: Generated<Timestamp>;
974
+ featureId: string;
975
+ id: Generated<string>;
976
+ status: Generated<string | null>;
977
+ updatedAt: Generated<Timestamp>;
978
+ userId: string;
979
+ }
980
+
981
+ export interface PublicFeatureApprovalStatus {
982
+ name: string;
983
+ }
984
+
985
+ export interface PublicFeatureEnabledTeam {
986
+ createdAt: Generated<Timestamp>;
987
+ featureId: string;
988
+ id: Generated<string>;
989
+ status: Generated<string | null>;
990
+ tenantId: string;
991
+ updatedAt: Generated<Timestamp>;
992
+ }
993
+
994
+ export interface PublicFeatureStatus {
995
+ name: string;
996
+ }
997
+
998
+ export interface PublicFileStorage {
999
+ connectionId: string | null;
1000
+ createdAt: Generated<Timestamp>;
1001
+ endDate: Timestamp | null;
1002
+ extension: string | null;
1003
+ filename: string;
1004
+ fileUri: string | null;
1005
+ id: Generated<string>;
1006
+ metadata: Json | null;
1007
+ newOwnerId: string | null;
1008
+ ownerUserId: string | null;
1009
+ reservationId: string | null;
1010
+ rowDateField: string | null;
1011
+ startDate: Timestamp | null;
1012
+ status: string | null;
1013
+ tenantId: string;
1014
+ type: string;
1015
+ uniqueRef: string | null;
1016
+ updatedAt: Generated<Timestamp>;
1017
+ }
1018
+
1019
+ export interface PublicFileStorageSourceLink {
1020
+ createdAt: Generated<Timestamp>;
1021
+ fileStorageId: string;
1022
+ id: Generated<string>;
1023
+ sourceId: string;
1024
+ updatedAt: Generated<Timestamp>;
1025
+ }
1026
+
1027
+ export interface PublicFileStorageTag {
1028
+ createdAt: Generated<Timestamp>;
1029
+ id: Generated<string>;
1030
+ tenantId: string;
1031
+ title: string;
1032
+ uniqueRef: string;
1033
+ updatedAt: Generated<Timestamp>;
1034
+ }
1035
+
1036
+ export interface PublicLatestDuplicateEmails {
1037
+ createdAt: Timestamp | null;
1038
+ email: string | null;
1039
+ id: string | null;
1040
+ name: string | null;
1041
+ status: string | null;
1042
+ }
1043
+
1044
+ export interface PublicListing {
1045
+ address: string | null;
1046
+ addressCity: string | null;
1047
+ addressCountry: string | null;
1048
+ addressData: Json | null;
1049
+ addressId: string | null;
1050
+ addressState: string | null;
1051
+ bedrooms: number | null;
1052
+ beds: number | null;
1053
+ calculatedStatus: Generated<string | null>;
1054
+ calculatedTitle: Generated<string | null>;
1055
+ centExpenseReserve: number | null;
1056
+ /**
1057
+ * Starting balance for tax statements
1058
+ */
1059
+ centTaxStartingBalance: number | null;
1060
+ collectionId: string | null;
1061
+ connectionId: string | null;
1062
+ createdAt: Generated<Timestamp | null>;
1063
+ customCode: string | null;
1064
+ defaultCurrency: string | null;
1065
+ id: Generated<string>;
1066
+ imageUri: string | null;
1067
+ metadata: Generated<Json | null>;
1068
+ name: string | null;
1069
+ ownerContactId: string | null;
1070
+ pmsAddressData: Json | null;
1071
+ pmsStatus: Generated<string | null>;
1072
+ sourceId: string | null;
1073
+ status: string | null;
1074
+ tenantId: string;
1075
+ title: string | null;
1076
+ uniqueRef: string | null;
1077
+ updatedAt: Generated<Timestamp | null>;
1078
+ }
1079
+
1080
+ export interface PublicListingCollection {
1081
+ createdAt: Generated<Timestamp>;
1082
+ id: Generated<string>;
1083
+ name: string;
1084
+ tenantId: string;
1085
+ updatedAt: Generated<Timestamp>;
1086
+ }
1087
+
1088
+ export interface PublicListingConnection {
1089
+ address: string | null;
1090
+ bedrooms: number | null;
1091
+ beds: number | null;
1092
+ connectionId: string;
1093
+ createdAt: Generated<Timestamp | null>;
1094
+ groupKey: string | null;
1095
+ id: Generated<string>;
1096
+ listingId: string | null;
1097
+ metadata: Json | null;
1098
+ name: string | null;
1099
+ nickname: string | null;
1100
+ sourceId: string | null;
1101
+ status: string | null;
1102
+ tenantId: string | null;
1103
+ uniqueRef: string | null;
1104
+ updatedAt: Generated<Timestamp | null>;
1105
+ }
1106
+
1107
+ export interface PublicListingOwner {
1108
+ createdAt: Generated<Timestamp | null>;
1109
+ id: Generated<string>;
1110
+ listingId: string;
1111
+ newOwnerId: string | null;
1112
+ ownerId: string | null;
1113
+ role: Generated<string>;
1114
+ split: Numeric | null;
1115
+ updatedAt: Generated<Timestamp | null>;
1116
+ }
1117
+
1118
+ export interface PublicListingOwnerRole {
1119
+ name: string;
1120
+ }
1121
+
1122
+ export interface PublicListingOwnershipPeriod {
1123
+ createdAt: Generated<Timestamp>;
1124
+ endAt: Timestamp | null;
1125
+ id: Generated<string>;
1126
+ listingId: string;
1127
+ startAt: Generated<Timestamp | null>;
1128
+ tenantId: string;
1129
+ updatedAt: Generated<Timestamp>;
1130
+ }
1131
+
1132
+ export interface PublicListingOwnershipPeriodMember {
1133
+ contactId: string | null;
1134
+ createdAt: Generated<Timestamp | null>;
1135
+ id: Generated<string>;
1136
+ ownerId: string | null;
1137
+ periodId: string;
1138
+ split: number;
1139
+ updatedAt: Generated<Timestamp | null>;
1140
+ }
1141
+
1142
+ export interface PublicListingPmsStatus {
1143
+ name: string;
1144
+ }
1145
+
1146
+ export interface PublicListingStatus {
1147
+ name: string;
1148
+ }
1149
+
1150
+ export interface PublicMetric {
1151
+ connectionId: string;
1152
+ createdAt: Generated<Timestamp>;
1153
+ date: Timestamp;
1154
+ id: Generated<string>;
1155
+ listingConnectionId: string | null;
1156
+ metadata: Generated<Json>;
1157
+ tenantId: string;
1158
+ type: string;
1159
+ uniqueRef: string | null;
1160
+ updatedAt: Generated<Timestamp>;
1161
+ value: number | null;
1162
+ }
1163
+
1164
+ export interface PublicOwner {
1165
+ addressId: string | null;
1166
+ companyType: string | null;
1167
+ connectionId: string | null;
1168
+ createdAt: Generated<Timestamp>;
1169
+ email: string | null;
1170
+ firstName: string | null;
1171
+ id: Generated<string>;
1172
+ is1099PostalDelivery: Generated<boolean>;
1173
+ /**
1174
+ * Lastname or company name
1175
+ */
1176
+ name: string;
1177
+ phone: string | null;
1178
+ pmsStatus: string | null;
1179
+ sourceId: string | null;
1180
+ status: Generated<string | null>;
1181
+ taxId: string | null;
1182
+ tenantId: string;
1183
+ type: string;
1184
+ uniqueRef: string | null;
1185
+ updatedAt: Generated<Timestamp>;
1186
+ }
1187
+
1188
+ export interface PublicOwnerPmsStatus {
1189
+ name: string;
1190
+ }
1191
+
1192
+ export interface PublicOwnerStatement {
1193
+ automationId: string | null;
1194
+ centAccountingBalanceEnd: number | null;
1195
+ centAccountingBalanceStart: number | null;
1196
+ centBalanceEnd: Int8 | null;
1197
+ centBalanceStart: Int8 | null;
1198
+ centPayedOut: number | null;
1199
+ centRentalRevenue: number | null;
1200
+ centTotal: Int8 | null;
1201
+ createdAt: Generated<Timestamp>;
1202
+ currency: string | null;
1203
+ endAt: Timestamp;
1204
+ id: Generated<string>;
1205
+ layoutId: string | null;
1206
+ listingId: string | null;
1207
+ listingOwnershipPeriodId: string | null;
1208
+ metadata: Json | null;
1209
+ ownerId: string | null;
1210
+ party: Generated<string | null>;
1211
+ previousOwnerStatementId: string | null;
1212
+ startAt: Timestamp;
1213
+ status: Generated<string>;
1214
+ templateId: string | null;
1215
+ templateJson: Json | null;
1216
+ tenantId: string;
1217
+ uniqueRef: string | null;
1218
+ updatedAt: Generated<Timestamp>;
1219
+ }
1220
+
1221
+ export interface PublicOwnerStatementIssue {
1222
+ id: Generated<string>;
1223
+ level: Generated<string>;
1224
+ lineId: string | null;
1225
+ message: string;
1226
+ statementId: string | null;
1227
+ tenantId: string;
1228
+ type: string;
1229
+ uniqueRef: string;
1230
+ }
1231
+
1232
+ export interface PublicOwnerStatementLayout {
1233
+ automationId: string | null;
1234
+ connectionId: string | null;
1235
+ createdAt: Generated<Timestamp>;
1236
+ dataJson: Json;
1237
+ id: Generated<string>;
1238
+ isDefault: Generated<boolean | null>;
1239
+ tenantId: string;
1240
+ title: string;
1241
+ updatedAt: Generated<Timestamp>;
1242
+ }
1243
+
1244
+ export interface PublicOwnerStatementLayoutAccount {
1245
+ accountId: string;
1246
+ createdAt: Generated<Timestamp>;
1247
+ id: Generated<string>;
1248
+ layoutId: string;
1249
+ updatedAt: Generated<Timestamp>;
1250
+ }
1251
+
1252
+ export interface PublicOwnerStatementLayoutListing {
1253
+ createdAt: Generated<Timestamp>;
1254
+ id: Generated<string>;
1255
+ layoutId: string;
1256
+ listingId: string;
1257
+ updatedAt: Generated<Timestamp>;
1258
+ }
1259
+
1260
+ export interface PublicOwnerStatementLine {
1261
+ centTotal: number;
1262
+ createdAt: Generated<Timestamp>;
1263
+ currency: string | null;
1264
+ customDescription: string | null;
1265
+ date: Timestamp | null;
1266
+ description: string | null;
1267
+ externalLink: string | null;
1268
+ groupId: string | null;
1269
+ id: Generated<string>;
1270
+ isOwnerPayout: Generated<boolean | null>;
1271
+ metadata: Json | null;
1272
+ ownerStatementId: string;
1273
+ reservationId: string | null;
1274
+ role: Generated<string | null>;
1275
+ sourceId: string | null;
1276
+ tenantId: string;
1277
+ uniqueRef: string;
1278
+ updatedAt: Generated<Timestamp>;
1279
+ }
1280
+
1281
+ export interface PublicOwnerStatementOwner {
1282
+ createdAt: Generated<Timestamp | null>;
1283
+ id: Generated<string>;
1284
+ newOwnerId: string | null;
1285
+ ownerId: string | null;
1286
+ role: string;
1287
+ split: Numeric | null;
1288
+ statementId: string;
1289
+ updatedAt: Generated<Timestamp | null>;
1290
+ /**
1291
+ * The source id to the listing owner vendor
1292
+ */
1293
+ vendorSourceId: string | null;
1294
+ }
1295
+
1296
+ export interface PublicOwnerStatementStatus {
1297
+ name: string;
1298
+ }
1299
+
1300
+ export interface PublicOwnerStatementTemplate {
1301
+ balanceStartAt: Timestamp | null;
1302
+ billingAccountId: string | null;
1303
+ createdAt: Generated<Timestamp>;
1304
+ data: Json;
1305
+ id: Generated<string>;
1306
+ tenantId: string;
1307
+ updatedAt: Generated<Timestamp>;
1308
+ version: Generated<number | null>;
1309
+ }
1310
+
1311
+ export interface PublicOwnerStatus {
1312
+ name: string;
1313
+ }
1314
+
1315
+ export interface PublicOwnerType {
1316
+ name: string;
1317
+ }
1318
+
1319
+ export interface PublicOwnerUserAccess {
1320
+ contactId: string | null;
1321
+ createdAt: Generated<Timestamp>;
1322
+ id: Generated<string>;
1323
+ ownerId: string | null;
1324
+ role: Generated<string>;
1325
+ updatedAt: Generated<Timestamp>;
1326
+ userId: string;
1327
+ }
1328
+
1329
+ export interface PublicOwnerUserAccessRole {
1330
+ name: string;
1331
+ }
1332
+
1333
+ export interface PublicPayment {
1334
+ bankAccountDigits: string | null;
1335
+ centTotal: Generated<Int8 | null>;
1336
+ connectionId: string | null;
1337
+ createdAt: Generated<Timestamp | null>;
1338
+ currency: string | null;
1339
+ description: string | null;
1340
+ etaAt: Timestamp | null;
1341
+ id: Generated<string>;
1342
+ isReconciled: Generated<boolean | null>;
1343
+ issues: Json | null;
1344
+ metadata: Generated<Json | null>;
1345
+ payedAt: Timestamp | null;
1346
+ paymentMethod: string | null;
1347
+ sourceId: string | null;
1348
+ status: string | null;
1349
+ tenantId: string | null;
1350
+ type: string | null;
1351
+ uniqueRef: string | null;
1352
+ uniqueRefAir: string | null;
1353
+ uniqueRefTemp: string | null;
1354
+ updatedAt: Generated<Timestamp | null>;
1355
+ userdata: Generated<Json | null>;
1356
+ }
1357
+
1358
+ export interface PublicPaymentLine {
1359
+ accountId: string | null;
1360
+ centTotal: Int8 | null;
1361
+ connectionId: string | null;
1362
+ createdAt: Generated<Timestamp>;
1363
+ description: string | null;
1364
+ id: Generated<string>;
1365
+ lineId: string | null;
1366
+ listingId: string | null;
1367
+ matchStatus: Generated<string | null>;
1368
+ metadata: Json | null;
1369
+ originCentTotal: Int8 | null;
1370
+ originCurrency: string | null;
1371
+ originExchangeRate: Numeric | null;
1372
+ party: string | null;
1373
+ paymentId: string | null;
1374
+ recurringFeeId: string | null;
1375
+ reservationId: string | null;
1376
+ skipReconcile: Generated<boolean | null>;
1377
+ tenantId: string | null;
1378
+ type: string | null;
1379
+ type2: string | null;
1380
+ uniqueRef: string | null;
1381
+ uniqueRef2: string | null;
1382
+ updatedAt: Generated<Timestamp | null>;
1383
+ }
1384
+
1385
+ export interface PublicPaymentLineClassification {
1386
+ appId: string | null;
1387
+ createdAt: Generated<Timestamp | null>;
1388
+ id: Generated<string | null>;
1389
+ name: string;
1390
+ type: string | null;
1391
+ updatedAt: Generated<Timestamp | null>;
1392
+ }
1393
+
1394
+ export interface PublicPaymentStatus {
1395
+ name: string;
1396
+ }
1397
+
1398
+ export interface PublicPaymentType {
1399
+ name: string;
1400
+ }
1401
+
1402
+ export interface PublicRecurringFee {
1403
+ bookingChannelsFilter: string[] | null;
1404
+ createdAt: Generated<Timestamp>;
1405
+ creditAccountId: string | null;
1406
+ creditParty: Generated<string>;
1407
+ debitAccountId: string | null;
1408
+ debitParty: Generated<string>;
1409
+ defaultRate: number | null;
1410
+ formula: string | null;
1411
+ icon: string | null;
1412
+ id: Generated<string>;
1413
+ rateType: Generated<string | null>;
1414
+ revenueRecognition: string | null;
1415
+ status: Generated<string>;
1416
+ statusFilter: string | null;
1417
+ taxBehavior: string | null;
1418
+ taxRateId: string | null;
1419
+ tenantId: string;
1420
+ title: string;
1421
+ type: Generated<string>;
1422
+ uniqueRef: string | null;
1423
+ updatedAt: Generated<Timestamp>;
1424
+ }
1425
+
1426
+ export interface PublicRecurringFeeAccount {
1427
+ accountId: string;
1428
+ createdAt: Generated<Timestamp>;
1429
+ id: Generated<string>;
1430
+ recurringFeeId: string;
1431
+ updatedAt: Generated<Timestamp>;
1432
+ }
1433
+
1434
+ export interface PublicRecurringFeeListingSubscription {
1435
+ createdAt: Generated<Timestamp>;
1436
+ endAt: Timestamp | null;
1437
+ id: Generated<string>;
1438
+ listingId: string;
1439
+ rate: number | null;
1440
+ rateType: Generated<string | null>;
1441
+ recurringFeeId: string;
1442
+ startAt: Generated<Timestamp | null>;
1443
+ status: Generated<string>;
1444
+ updatedAt: Generated<Timestamp>;
1445
+ }
1446
+
1447
+ export interface PublicRecurringFeeListingSubscriptionRateType {
1448
+ name: string;
1449
+ }
1450
+
1451
+ export interface PublicRecurringFeeType {
1452
+ name: string;
1453
+ }
1454
+
1455
+ export interface PublicReservation {
1456
+ bookedAt: Generated<Timestamp | null>;
1457
+ bookerName: string | null;
1458
+ bookingPlatform: string | null;
1459
+ cancelledAt: Timestamp | null;
1460
+ centAccommodation: number | null;
1461
+ centAdjustment: number | null;
1462
+ centCancellation: number | null;
1463
+ centCityTax: number | null;
1464
+ centCleaning: Int8 | null;
1465
+ centOta: number | null;
1466
+ centPaid: Int8 | null;
1467
+ centPaymentFee: number | null;
1468
+ centService: number | null;
1469
+ centTotal: Generated<Int8 | null>;
1470
+ channelId: string | null;
1471
+ checkIn: Timestamp | null;
1472
+ checkOut: Timestamp | null;
1473
+ confirmationCode: string | null;
1474
+ connectionId: string | null;
1475
+ createdAt: Generated<Timestamp | null>;
1476
+ currency: string | null;
1477
+ guestName: string | null;
1478
+ guests: number | null;
1479
+ id: Generated<string>;
1480
+ lineMap: Json | null;
1481
+ listingConnectionId: string | null;
1482
+ listingId: string | null;
1483
+ metadata: Json | null;
1484
+ nights: number | null;
1485
+ otaReservationId: string | null;
1486
+ paidStatus: string | null;
1487
+ paymentMethod: string | null;
1488
+ pmsReferenceCode: string | null;
1489
+ sourceId: string | null;
1490
+ status: Generated<string | null>;
1491
+ tenantId: string | null;
1492
+ uniqueRef: string | null;
1493
+ uniqueRef2: string | null;
1494
+ updatedAt: Generated<Timestamp | null>;
1495
+ userdata: Generated<Json | null>;
1496
+ }
1497
+
1498
+ export interface PublicReservationStatus {
1499
+ name: string;
1500
+ }
1501
+
1502
+ export interface PublicReservationWithOccupancyStatus {
1503
+ bookedAt: Timestamp | null;
1504
+ bookerName: string | null;
1505
+ bookingPlatform: string | null;
1506
+ cancelledAt: Timestamp | null;
1507
+ centAccommodation: number | null;
1508
+ centAdjustment: number | null;
1509
+ centCancellation: number | null;
1510
+ centCityTax: number | null;
1511
+ centCleaning: Int8 | null;
1512
+ centOta: number | null;
1513
+ centPaid: Int8 | null;
1514
+ centPaymentFee: number | null;
1515
+ centService: number | null;
1516
+ centTotal: Int8 | null;
1517
+ channelId: string | null;
1518
+ checkIn: Timestamp | null;
1519
+ checkOut: Timestamp | null;
1520
+ confirmationCode: string | null;
1521
+ connectionId: string | null;
1522
+ createdAt: Timestamp | null;
1523
+ currency: string | null;
1524
+ guestName: string | null;
1525
+ guests: number | null;
1526
+ id: string | null;
1527
+ lineMap: Json | null;
1528
+ listingConnectionId: string | null;
1529
+ listingId: string | null;
1530
+ metadata: Json | null;
1531
+ nights: number | null;
1532
+ occupancyStatus: string | null;
1533
+ otaReservationId: string | null;
1534
+ paidStatus: string | null;
1535
+ paymentMethod: string | null;
1536
+ pmsReferenceCode: string | null;
1537
+ sourceId: string | null;
1538
+ status: string | null;
1539
+ tenantId: string | null;
1540
+ uniqueRef: string | null;
1541
+ uniqueRef2: string | null;
1542
+ updatedAt: Timestamp | null;
1543
+ userdata: Json | null;
1544
+ }
1545
+
1546
+ export interface PublicScheduledEvent {
1547
+ createdAt: Generated<Timestamp>;
1548
+ id: Generated<string>;
1549
+ message: string | null;
1550
+ objectId: string;
1551
+ op: string;
1552
+ scheduledAt: Timestamp | null;
1553
+ status: Generated<string | null>;
1554
+ tableName: string;
1555
+ tenantId: string;
1556
+ updatedAt: Generated<Timestamp>;
1557
+ }
1558
+
1559
+ export interface PublicScheduledEventStatus {
1560
+ name: string;
1561
+ }
1562
+
1563
+ export interface PublicSetting {
1564
+ automationId: string | null;
1565
+ connectionId: string | null;
1566
+ createdAt: Generated<Timestamp>;
1567
+ group: string | null;
1568
+ id: Generated<string>;
1569
+ key: string;
1570
+ leftConnectionId: string | null;
1571
+ leftId: Generated<string | null>;
1572
+ leftType: string | null;
1573
+ lineClassification: string | null;
1574
+ listingId: string | null;
1575
+ localAutomationId: string | null;
1576
+ parentSettingId: string | null;
1577
+ partner: string | null;
1578
+ rightConnectionId: string | null;
1579
+ rightId: Generated<string | null>;
1580
+ rightType: string | null;
1581
+ sourceId: string | null;
1582
+ status: Generated<string | null>;
1583
+ target: string;
1584
+ targetUuid: Generated<string | null>;
1585
+ tenantId: string | null;
1586
+ updatedAt: Generated<Timestamp>;
1587
+ value: string | null;
1588
+ }
1589
+
1590
+ export interface PublicSource {
1591
+ appId: string | null;
1592
+ code: string | null;
1593
+ connectionId: string | null;
1594
+ createdAt: Generated<Timestamp>;
1595
+ dataHref: string | null;
1596
+ date: Timestamp | null;
1597
+ description: string | null;
1598
+ id: Generated<string>;
1599
+ indexedJson: Json | null;
1600
+ isArchived: Generated<boolean | null>;
1601
+ json: Json | null;
1602
+ listingConnectionId: string | null;
1603
+ listingId: string | null;
1604
+ modifiedAt: Timestamp | null;
1605
+ parentId: string | null;
1606
+ remoteId: string | null;
1607
+ reservationId: string | null;
1608
+ schemaId: string | null;
1609
+ status: Generated<string | null>;
1610
+ tenantId: string;
1611
+ transformJson: Json | null;
1612
+ transformType: string | null;
1613
+ type: string;
1614
+ updatedAt: Generated<Timestamp | null>;
1615
+ version: Generated<number | null>;
1616
+ }
1617
+
1618
+ export interface PublicTask {
1619
+ createdAt: Generated<Timestamp | null>;
1620
+ id: Generated<string>;
1621
+ message: string | null;
1622
+ status: string | null;
1623
+ }
1624
+
1625
+ export interface PublicTaxStatement {
1626
+ centRentalRevenue: number | null;
1627
+ createdAt: Generated<Timestamp>;
1628
+ endAt: Timestamp | null;
1629
+ error: string | null;
1630
+ id: Generated<string>;
1631
+ metadata: Json | null;
1632
+ ownerId: string | null;
1633
+ startAt: Timestamp | null;
1634
+ status: Generated<string>;
1635
+ tenantId: string;
1636
+ updatedAt: Generated<Timestamp>;
1637
+ url: string | null;
1638
+ userId: string | null;
1639
+ year: number;
1640
+ }
1641
+
1642
+ export interface PublicTaxStatementStatus {
1643
+ name: string;
1644
+ }
1645
+
1646
+ export interface PublicTenant {
1647
+ address: string | null;
1648
+ addressCity: string | null;
1649
+ addressCountry: string | null;
1650
+ addressLine1: string | null;
1651
+ addressPostcode: string | null;
1652
+ billingAddressData: Json | null;
1653
+ billingAddressId: string | null;
1654
+ billingCustomerId: string | null;
1655
+ billingPartnerId: string | null;
1656
+ billingPaymentMethodType: string | null;
1657
+ billingPlan: string | null;
1658
+ billingSubscriptionStatus: string | null;
1659
+ calculatedBillingPartnerId: Generated<string | null>;
1660
+ calculatedIsBillable: Generated<boolean | null>;
1661
+ calculatedStatus: Generated<string | null>;
1662
+ /**
1663
+ * Billing subscription is getting cancelled at date
1664
+ */
1665
+ cancelledAt: Timestamp | null;
1666
+ chartOfAccountTenantId: string | null;
1667
+ clerkId: string | null;
1668
+ colorPrimary: string | null;
1669
+ commissionPercentage: Numeric | null;
1670
+ companyName: string | null;
1671
+ companyTaxCode: string | null;
1672
+ createdAt: Generated<Timestamp>;
1673
+ defaultCurrency: string | null;
1674
+ defaultRevenueRecognition: string | null;
1675
+ email: string | null;
1676
+ featureFlags: Generated<Json | null>;
1677
+ id: Generated<string>;
1678
+ intercomId: string | null;
1679
+ isActive: Generated<boolean | null>;
1680
+ isGeneralLedger: Generated<boolean | null>;
1681
+ isOnboarding: Generated<boolean | null>;
1682
+ isTest: Generated<boolean | null>;
1683
+ logo: string | null;
1684
+ longTermStayNights: number | null;
1685
+ name: string;
1686
+ partnerId: Generated<string | null>;
1687
+ setup: Json | null;
1688
+ setupCompleted: Generated<boolean | null>;
1689
+ statementAddressData: Json | null;
1690
+ statementAddressId: string | null;
1691
+ statementStartAt: Timestamp | null;
1692
+ status: Generated<string | null>;
1693
+ stripeId: string | null;
1694
+ stripeSubscriptionItemId: string | null;
1695
+ supportEmail: string | null;
1696
+ supportPhone: string | null;
1697
+ svixEndpoints: boolean | null;
1698
+ trialUntil: Timestamp | null;
1699
+ type: Generated<string | null>;
1700
+ updatedAt: Generated<Timestamp | null>;
1701
+ website: string | null;
1702
+ }
1703
+
1704
+ export interface PublicTenantUser {
1705
+ createdAt: Generated<Timestamp | null>;
1706
+ id: Generated<string>;
1707
+ lastInvitedAt: Timestamp | null;
1708
+ notificationPreferences: Generated<Json | null>;
1709
+ role: Generated<string | null>;
1710
+ status: Generated<string | null>;
1711
+ tenantId: string;
1712
+ updatedAt: Generated<Timestamp | null>;
1713
+ userId: string;
1714
+ }
1715
+
1716
+ export interface PublicToken {
1717
+ createdAt: Generated<Timestamp>;
1718
+ expiresAt: Timestamp | null;
1719
+ id: Generated<string>;
1720
+ nanoId: Generated<string>;
1721
+ payload: Generated<Json>;
1722
+ tenantId: string | null;
1723
+ type: string | null;
1724
+ userId: string | null;
1725
+ }
1726
+
1727
+ export interface PublicUser {
1728
+ address: string | null;
1729
+ addressCity: string | null;
1730
+ addressCountry: string | null;
1731
+ addressId: string | null;
1732
+ addressLine1: string | null;
1733
+ addressPostcode: string | null;
1734
+ clerkId: string | null;
1735
+ companyName: string | null;
1736
+ companyType: string | null;
1737
+ createdAt: Generated<Timestamp | null>;
1738
+ email: string | null;
1739
+ firstName: string | null;
1740
+ id: Generated<string>;
1741
+ isAdmin: Generated<boolean>;
1742
+ lastName: string | null;
1743
+ lastSeen: Timestamp | null;
1744
+ name: string | null;
1745
+ notificationPreferences: Generated<Json | null>;
1746
+ partnerId: string | null;
1747
+ password: string | null;
1748
+ phone: string | null;
1749
+ secondaryEmails: Generated<Json | null>;
1750
+ status: Generated<string | null>;
1751
+ sub: string | null;
1752
+ taxId: string | null;
1753
+ trialExpiryAt: Timestamp | null;
1754
+ type: Generated<string | null>;
1755
+ updatedAt: Generated<Timestamp | null>;
1756
+ }
1757
+
1758
+ export interface PublicUserCompanyType {
1759
+ name: string;
1760
+ }
1761
+
1762
+ export interface PublicUserCompanyUser {
1763
+ companyUserId: string;
1764
+ createdAt: Generated<Timestamp>;
1765
+ id: Generated<string>;
1766
+ updatedAt: Generated<Timestamp>;
1767
+ userId: string;
1768
+ }
1769
+
1770
+ export interface PublicView {
1771
+ group: string | null;
1772
+ icon: string | null;
1773
+ id: Generated<string>;
1774
+ isDefault: Generated<boolean | null>;
1775
+ retoolViewId: string | null;
1776
+ sortOrder: Generated<number | null>;
1777
+ stateData: Json | null;
1778
+ tenantId: string | null;
1779
+ title: string;
1780
+ type: string | null;
1781
+ }
1782
+
1783
+ export interface PublicViewNotificationEvents {
1784
+ createdAt: Timestamp | null;
1785
+ eventId: string | null;
1786
+ id: string | null;
1787
+ request: Json | null;
1788
+ response: Json | null;
1789
+ status: number | null;
1790
+ triggerName: string | null;
1791
+ }
1792
+
1793
+ export interface PublicViewNotificationEventsGroupedByDate {
1794
+ count: Int8 | null;
1795
+ dateTrunc: Timestamp | null;
1796
+ status: number | null;
1797
+ triggerName: string | null;
1798
+ }
1799
+
1800
+ export interface PublicViewWebhookEvents {
1801
+ createdAt: Timestamp | null;
1802
+ eventId: string | null;
1803
+ id: string | null;
1804
+ request: Json | null;
1805
+ response: Json | null;
1806
+ status: number | null;
1807
+ triggerName: string | null;
1808
+ }
1809
+
1810
+ export interface PublicViewWebhookEventsGroupedByDate {
1811
+ count: Int8 | null;
1812
+ dateTrunc: Timestamp | null;
1813
+ status: number | null;
1814
+ triggerName: string | null;
1815
+ }
1816
+
1817
+ export interface PublicWebhook {
1818
+ createdAt: Generated<Timestamp>;
1819
+ headers: Json | null;
1820
+ id: Generated<string>;
1821
+ tenantId: string | null;
1822
+ types: Generated<Json>;
1823
+ types2: string[] | null;
1824
+ url: string;
1825
+ }
1826
+
1827
+ export interface TrackingEvent {
1828
+ createdAt: Generated<Timestamp>;
1829
+ id: Generated<string>;
1830
+ name: string;
1831
+ packageName: string;
1832
+ props: Json;
1833
+ tenantId: string | null;
1834
+ timestamp: Generated<Timestamp | null>;
1835
+ trackedAt: Generated<Timestamp | null>;
1836
+ userId: string | null;
1837
+ }
1838
+
1839
+ export interface TrackingIntercomConversation {
1840
+ answer: string;
1841
+ conversationId: number;
1842
+ createdAt: Generated<Timestamp>;
1843
+ id: Generated<string>;
1844
+ isRelevant: boolean;
1845
+ outcome: string;
1846
+ question: string;
1847
+ summary: string;
1848
+ tags: string;
1849
+ }
1850
+
1851
+ export interface TrackingIntercomConversationUser {
1852
+ conversationId: string;
1853
+ createdAt: Generated<Timestamp>;
1854
+ id: Generated<string>;
1855
+ userId: string;
1856
+ }
1857
+
1858
+ export interface TrackingIntercomReport {
1859
+ action: string;
1860
+ category: string;
1861
+ createdAt: Generated<Timestamp>;
1862
+ id: Generated<string>;
1863
+ summary: string;
1864
+ tags: string;
1865
+ }
1866
+
1867
+ export interface TrackingIntercomReportConversation {
1868
+ conversationId: string;
1869
+ id: Generated<string>;
1870
+ reportId: string;
1871
+ }
1872
+
1873
+ export interface TrackingMonitorConnection {
1874
+ appId: string;
1875
+ connectionId: string;
1876
+ createdAt: Generated<Timestamp>;
1877
+ id: Generated<string>;
1878
+ message: string | null;
1879
+ status: string | null;
1880
+ syncedAt: Timestamp | null;
1881
+ tenantId: string;
1882
+ triggerRef: string | null;
1883
+ updatedAt: Timestamp | null;
1884
+ version: number | null;
1885
+ }
1886
+
1887
+ export interface TrackingMonitorConnectionState {
1888
+ name: string;
1889
+ }
1890
+
1891
+ export interface DB {
1892
+ "accounting.account": AccountingAccount;
1893
+ "accounting.accountAssignment": AccountingAccountAssignment;
1894
+ "accounting.accountAssignmentLineType": AccountingAccountAssignmentLineType;
1895
+ "accounting.accountAssignmentType": AccountingAccountAssignmentType;
1896
+ "accounting.accountCategory": AccountingAccountCategory;
1897
+ "accounting.accountClassification": AccountingAccountClassification;
1898
+ "accounting.accountReservationLineType": AccountingAccountReservationLineType;
1899
+ "accounting.accountReservationRevRec": AccountingAccountReservationRevRec;
1900
+ "accounting.accountType": AccountingAccountType;
1901
+ "accounting.bankAccount": AccountingBankAccount;
1902
+ "accounting.bankAccountCategory": AccountingBankAccountCategory;
1903
+ "accounting.bankAccountType": AccountingBankAccountType;
1904
+ "accounting.bankRecord": AccountingBankRecord;
1905
+ "accounting.bankRecordTransactionPayment": AccountingBankRecordTransactionPayment;
1906
+ "accounting.contact": AccountingContact;
1907
+ "accounting.contactCompanyType": AccountingContactCompanyType;
1908
+ "accounting.contactType": AccountingContactType;
1909
+ "accounting.journalEntry": AccountingJournalEntry;
1910
+ "accounting.journalEntryEntityType": AccountingJournalEntryEntityType;
1911
+ "accounting.journalEntryTriggerType": AccountingJournalEntryTriggerType;
1912
+ "accounting.journalEntryType": AccountingJournalEntryType;
1913
+ "accounting.paidStatus": AccountingPaidStatus;
1914
+ "accounting.party": AccountingParty;
1915
+ "accounting.rate": AccountingRate;
1916
+ "accounting.rateType": AccountingRateType;
1917
+ "accounting.taxBehavior": AccountingTaxBehavior;
1918
+ "accounting.transaction": AccountingTransaction;
1919
+ "accounting.transactionLine": AccountingTransactionLine;
1920
+ "accounting.transactionType": AccountingTransactionType;
1921
+ "core.action": CoreAction;
1922
+ "core.activeStatus": CoreActiveStatus;
1923
+ "core.auditTrail": CoreAuditTrail;
1924
+ "core.change": CoreChange;
1925
+ "core.changeEntityType": CoreChangeEntityType;
1926
+ "core.changeLink": CoreChangeLink;
1927
+ "core.changeSourceLink": CoreChangeSourceLink;
1928
+ "core.changeStatus": CoreChangeStatus;
1929
+ "core.changeSyncType": CoreChangeSyncType;
1930
+ "core.changeType": CoreChangeType;
1931
+ "core.issue": CoreIssue;
1932
+ "core.issueKind": CoreIssueKind;
1933
+ "core.issueMessageOverwrite": CoreIssueMessageOverwrite;
1934
+ "core.issueStatus": CoreIssueStatus;
1935
+ "core.issueType": CoreIssueType;
1936
+ "core.job": CoreJob;
1937
+ "core.jobPage": CoreJobPage;
1938
+ "core.jobPlan": CoreJobPlan;
1939
+ "core.schema": CoreSchema;
1940
+ "core.schemaKind": CoreSchemaKind;
1941
+ "core.sourceAction": CoreSourceAction;
1942
+ "core.sourceOp": CoreSourceOp;
1943
+ "core.sync": CoreSync;
1944
+ "core.syncStatus": CoreSyncStatus;
1945
+ "core.syncSubtask": CoreSyncSubtask;
1946
+ "core.syncType": CoreSyncType;
1947
+ "hdbCatalog.eventInvocationLogs": HdbCatalogEventInvocationLogs;
1948
+ "hdbCatalog.eventLog": HdbCatalogEventLog;
1949
+ "hdbCatalog.hdbActionLog": HdbCatalogHdbActionLog;
1950
+ "hdbCatalog.hdbCronEventInvocationLogs": HdbCatalogHdbCronEventInvocationLogs;
1951
+ "hdbCatalog.hdbCronEvents": HdbCatalogHdbCronEvents;
1952
+ "hdbCatalog.hdbEventLogCleanups": HdbCatalogHdbEventLogCleanups;
1953
+ "hdbCatalog.hdbMetadata": HdbCatalogHdbMetadata;
1954
+ "hdbCatalog.hdbScheduledEventInvocationLogs": HdbCatalogHdbScheduledEventInvocationLogs;
1955
+ "hdbCatalog.hdbScheduledEvents": HdbCatalogHdbScheduledEvents;
1956
+ "hdbCatalog.hdbSchemaNotifications": HdbCatalogHdbSchemaNotifications;
1957
+ "hdbCatalog.hdbSourceCatalogVersion": HdbCatalogHdbSourceCatalogVersion;
1958
+ "hdbCatalog.hdbVersion": HdbCatalogHdbVersion;
1959
+ "public.accountCollection": PublicAccountCollection;
1960
+ "public.accountCollectionType": PublicAccountCollectionType;
1961
+ "public.action": PublicAction;
1962
+ "public.actionStatus": PublicActionStatus;
1963
+ "public.address": PublicAddress;
1964
+ "public.app": PublicApp;
1965
+ "public.auditLog": PublicAuditLog;
1966
+ "public.automation": PublicAutomation;
1967
+ "public.automationStatus": PublicAutomationStatus;
1968
+ "public.automationTemplate": PublicAutomationTemplate;
1969
+ "public.billingPaymentMethodType": PublicBillingPaymentMethodType;
1970
+ "public.bookingChannel": PublicBookingChannel;
1971
+ "public.connection": PublicConnection;
1972
+ "public.connectionStatusTemporary": PublicConnectionStatusTemporary;
1973
+ "public.csvLine": PublicCsvLine;
1974
+ "public.currency": PublicCurrency;
1975
+ "public.duplicateEmails": PublicDuplicateEmails;
1976
+ "public.emailTemplate": PublicEmailTemplate;
1977
+ "public.emailTemplateType": PublicEmailTemplateType;
1978
+ "public.feature": PublicFeature;
1979
+ "public.featureApproval": PublicFeatureApproval;
1980
+ "public.featureApprovalStatus": PublicFeatureApprovalStatus;
1981
+ "public.featureEnabledTeam": PublicFeatureEnabledTeam;
1982
+ "public.featureStatus": PublicFeatureStatus;
1983
+ "public.fileStorage": PublicFileStorage;
1984
+ "public.fileStorageSourceLink": PublicFileStorageSourceLink;
1985
+ "public.fileStorageTag": PublicFileStorageTag;
1986
+ "public.latestDuplicateEmails": PublicLatestDuplicateEmails;
1987
+ "public.listing": PublicListing;
1988
+ "public.listingCollection": PublicListingCollection;
1989
+ "public.listingConnection": PublicListingConnection;
1990
+ "public.listingOwner": PublicListingOwner;
1991
+ "public.listingOwnerRole": PublicListingOwnerRole;
1992
+ "public.listingOwnershipPeriod": PublicListingOwnershipPeriod;
1993
+ "public.listingOwnershipPeriodMember": PublicListingOwnershipPeriodMember;
1994
+ "public.listingPmsStatus": PublicListingPmsStatus;
1995
+ "public.listingStatus": PublicListingStatus;
1996
+ "public.metric": PublicMetric;
1997
+ "public.owner": PublicOwner;
1998
+ "public.ownerPmsStatus": PublicOwnerPmsStatus;
1999
+ "public.ownerStatement": PublicOwnerStatement;
2000
+ "public.ownerStatementIssue": PublicOwnerStatementIssue;
2001
+ "public.ownerStatementLayout": PublicOwnerStatementLayout;
2002
+ "public.ownerStatementLayoutAccount": PublicOwnerStatementLayoutAccount;
2003
+ "public.ownerStatementLayoutListing": PublicOwnerStatementLayoutListing;
2004
+ "public.ownerStatementLine": PublicOwnerStatementLine;
2005
+ "public.ownerStatementOwner": PublicOwnerStatementOwner;
2006
+ "public.ownerStatementStatus": PublicOwnerStatementStatus;
2007
+ "public.ownerStatementTemplate": PublicOwnerStatementTemplate;
2008
+ "public.ownerStatus": PublicOwnerStatus;
2009
+ "public.ownerType": PublicOwnerType;
2010
+ "public.ownerUserAccess": PublicOwnerUserAccess;
2011
+ "public.ownerUserAccessRole": PublicOwnerUserAccessRole;
2012
+ "public.payment": PublicPayment;
2013
+ "public.paymentLine": PublicPaymentLine;
2014
+ "public.paymentLineClassification": PublicPaymentLineClassification;
2015
+ "public.paymentStatus": PublicPaymentStatus;
2016
+ "public.paymentType": PublicPaymentType;
2017
+ "public.recurringFee": PublicRecurringFee;
2018
+ "public.recurringFeeAccount": PublicRecurringFeeAccount;
2019
+ "public.recurringFeeListingSubscription": PublicRecurringFeeListingSubscription;
2020
+ "public.recurringFeeListingSubscriptionRateType": PublicRecurringFeeListingSubscriptionRateType;
2021
+ "public.recurringFeeType": PublicRecurringFeeType;
2022
+ "public.reservation": PublicReservation;
2023
+ "public.reservationStatus": PublicReservationStatus;
2024
+ "public.reservationWithOccupancyStatus": PublicReservationWithOccupancyStatus;
2025
+ "public.scheduledEvent": PublicScheduledEvent;
2026
+ "public.scheduledEventStatus": PublicScheduledEventStatus;
2027
+ "public.setting": PublicSetting;
2028
+ "public.source": PublicSource;
2029
+ "public.task": PublicTask;
2030
+ "public.taxStatement": PublicTaxStatement;
2031
+ "public.taxStatementStatus": PublicTaxStatementStatus;
2032
+ "public.tenant": PublicTenant;
2033
+ "public.tenantUser": PublicTenantUser;
2034
+ "public.token": PublicToken;
2035
+ "public.user": PublicUser;
2036
+ "public.userCompanyType": PublicUserCompanyType;
2037
+ "public.userCompanyUser": PublicUserCompanyUser;
2038
+ "public.view": PublicView;
2039
+ "public.viewNotificationEvents": PublicViewNotificationEvents;
2040
+ "public.viewNotificationEventsGroupedByDate": PublicViewNotificationEventsGroupedByDate;
2041
+ "public.viewWebhookEvents": PublicViewWebhookEvents;
2042
+ "public.viewWebhookEventsGroupedByDate": PublicViewWebhookEventsGroupedByDate;
2043
+ "public.webhook": PublicWebhook;
2044
+ "tracking.event": TrackingEvent;
2045
+ "tracking.intercomConversation": TrackingIntercomConversation;
2046
+ "tracking.intercomConversationUser": TrackingIntercomConversationUser;
2047
+ "tracking.intercomReport": TrackingIntercomReport;
2048
+ "tracking.intercomReportConversation": TrackingIntercomReportConversation;
2049
+ "tracking.monitorConnection": TrackingMonitorConnection;
2050
+ "tracking.monitorConnectionState": TrackingMonitorConnectionState;
2051
+ }