@vrplatform/kysely 1.3.45-stage.4337 → 1.3.45

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