@vrplatform/kysely 1.2.18 → 1.2.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/.data.tar +0 -0
- package/build/main/index.d.ts +4 -1
- package/build/main/index.js +24 -7
- package/build/main/index.js.map +1 -1
- package/build/main/local.js +1 -2
- package/build/main/local.js.map +1 -1
- package/build/main/tsconfig.main.tsbuildinfo +1 -1
- package/build/main/v0.generated.d.ts +73 -2
- package/build/main/v0.generated.js.map +1 -1
- package/build/main/v1.generated.d.ts +162 -162
- package/build/main/v1.generated.js.map +1 -1
- package/build/module/index.d.ts +4 -1
- package/build/module/index.js +22 -6
- package/build/module/index.js.map +1 -1
- package/build/module/local.js +1 -2
- package/build/module/local.js.map +1 -1
- package/build/module/tsconfig.esm.tsbuildinfo +1 -1
- package/build/module/v0.generated.d.ts +73 -2
- package/build/module/v0.generated.js.map +1 -1
- package/build/module/v1.generated.d.ts +162 -162
- package/build/module/v1.generated.js.map +1 -1
- package/package.json +3 -3
- package/src/index.ts +31 -13
- package/src/local.ts +1 -3
- package/src/v0.generated.ts +78 -2
- package/src/v1.generated.ts +167 -163
- package/build/main/db.generated.d.ts +0 -1923
- package/build/main/db.generated.js +0 -7
- package/build/main/db.generated.js.map +0 -1
- package/build/module/db.generated.d.ts +0 -1923
- package/build/module/db.generated.js +0 -6
- package/build/module/db.generated.js.map +0 -1
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* This file was generated by kysely-codegen.
|
|
3
3
|
* Please do not edit it manually.
|
|
4
4
|
*/
|
|
5
|
-
import type { ColumnType } from
|
|
6
|
-
export type CoreAuditOperation =
|
|
5
|
+
import type { ColumnType } from 'kysely';
|
|
6
|
+
export type CoreAuditOperation = 'DELETE' | 'INSERT' | 'UPDATE';
|
|
7
7
|
export type Generated<T> = T extends ColumnType<infer S, infer I, infer U> ? ColumnType<S, I | undefined, U> : ColumnType<T, T | undefined, T>;
|
|
8
8
|
export type Int8 = ColumnType<string, bigint | number | string, bigint | number | string>;
|
|
9
9
|
export type Json = JsonValue;
|
|
@@ -340,7 +340,7 @@ export interface CoreChange {
|
|
|
340
340
|
id: Generated<string>;
|
|
341
341
|
isLatestVersion: Generated<boolean | null>;
|
|
342
342
|
message: string | null;
|
|
343
|
-
seq:
|
|
343
|
+
seq: Int8 | null;
|
|
344
344
|
status: string | null;
|
|
345
345
|
syncId: string | null;
|
|
346
346
|
syncSubtaskId: string | null;
|
|
@@ -1716,163 +1716,163 @@ export interface TrackingMonitorConnectionState {
|
|
|
1716
1716
|
name: string;
|
|
1717
1717
|
}
|
|
1718
1718
|
export interface DB {
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1719
|
+
'accounting.account': AccountingAccount;
|
|
1720
|
+
'accounting.accountAssignment': AccountingAccountAssignment;
|
|
1721
|
+
'accounting.accountAssignmentLineType': AccountingAccountAssignmentLineType;
|
|
1722
|
+
'accounting.accountAssignmentType': AccountingAccountAssignmentType;
|
|
1723
|
+
'accounting.accountCategory': AccountingAccountCategory;
|
|
1724
|
+
'accounting.accountClassification': AccountingAccountClassification;
|
|
1725
|
+
'accounting.accountReservationLineType': AccountingAccountReservationLineType;
|
|
1726
|
+
'accounting.accountReservationRevRec': AccountingAccountReservationRevRec;
|
|
1727
|
+
'accounting.accountType': AccountingAccountType;
|
|
1728
|
+
'accounting.bankAccount': AccountingBankAccount;
|
|
1729
|
+
'accounting.bankAccountCategory': AccountingBankAccountCategory;
|
|
1730
|
+
'accounting.bankAccountType': AccountingBankAccountType;
|
|
1731
|
+
'accounting.bankRecord': AccountingBankRecord;
|
|
1732
|
+
'accounting.bankRecordTransactionPayment': AccountingBankRecordTransactionPayment;
|
|
1733
|
+
'accounting.contact': AccountingContact;
|
|
1734
|
+
'accounting.contactCompanyType': AccountingContactCompanyType;
|
|
1735
|
+
'accounting.contactType': AccountingContactType;
|
|
1736
|
+
'accounting.journalEntry': AccountingJournalEntry;
|
|
1737
|
+
'accounting.journalEntryEntityType': AccountingJournalEntryEntityType;
|
|
1738
|
+
'accounting.journalEntryTriggerType': AccountingJournalEntryTriggerType;
|
|
1739
|
+
'accounting.journalEntryType': AccountingJournalEntryType;
|
|
1740
|
+
'accounting.paidStatus': AccountingPaidStatus;
|
|
1741
|
+
'accounting.party': AccountingParty;
|
|
1742
|
+
'accounting.rate': AccountingRate;
|
|
1743
|
+
'accounting.rateType': AccountingRateType;
|
|
1744
|
+
'accounting.taxBehavior': AccountingTaxBehavior;
|
|
1745
|
+
'accounting.transaction': AccountingTransaction;
|
|
1746
|
+
'accounting.transactionLine': AccountingTransactionLine;
|
|
1747
|
+
'accounting.transactionType': AccountingTransactionType;
|
|
1748
|
+
'core.action': CoreAction;
|
|
1749
|
+
'core.activeStatus': CoreActiveStatus;
|
|
1750
|
+
'core.auditTrail': CoreAuditTrail;
|
|
1751
|
+
'core.change': CoreChange;
|
|
1752
|
+
'core.changeEntityType': CoreChangeEntityType;
|
|
1753
|
+
'core.changeLink': CoreChangeLink;
|
|
1754
|
+
'core.changeSourceLink': CoreChangeSourceLink;
|
|
1755
|
+
'core.changeStatus': CoreChangeStatus;
|
|
1756
|
+
'core.changeSyncType': CoreChangeSyncType;
|
|
1757
|
+
'core.changeType': CoreChangeType;
|
|
1758
|
+
'core.issue': CoreIssue;
|
|
1759
|
+
'core.issueKind': CoreIssueKind;
|
|
1760
|
+
'core.issueMessageOverwrite': CoreIssueMessageOverwrite;
|
|
1761
|
+
'core.issueStatus': CoreIssueStatus;
|
|
1762
|
+
'core.issueType': CoreIssueType;
|
|
1763
|
+
'core.job': CoreJob;
|
|
1764
|
+
'core.jobPage': CoreJobPage;
|
|
1765
|
+
'core.jobPlan': CoreJobPlan;
|
|
1766
|
+
'core.schema': CoreSchema;
|
|
1767
|
+
'core.schemaKind': CoreSchemaKind;
|
|
1768
|
+
'core.sourceAction': CoreSourceAction;
|
|
1769
|
+
'core.sourceOp': CoreSourceOp;
|
|
1770
|
+
'core.sync': CoreSync;
|
|
1771
|
+
'core.syncStatus': CoreSyncStatus;
|
|
1772
|
+
'core.syncSubtask': CoreSyncSubtask;
|
|
1773
|
+
'core.syncType': CoreSyncType;
|
|
1774
|
+
'hdbCatalog.eventInvocationLogs': HdbCatalogEventInvocationLogs;
|
|
1775
|
+
'hdbCatalog.eventLog': HdbCatalogEventLog;
|
|
1776
|
+
'hdbCatalog.hdbActionLog': HdbCatalogHdbActionLog;
|
|
1777
|
+
'hdbCatalog.hdbCronEventInvocationLogs': HdbCatalogHdbCronEventInvocationLogs;
|
|
1778
|
+
'hdbCatalog.hdbCronEvents': HdbCatalogHdbCronEvents;
|
|
1779
|
+
'hdbCatalog.hdbEventLogCleanups': HdbCatalogHdbEventLogCleanups;
|
|
1780
|
+
'hdbCatalog.hdbMetadata': HdbCatalogHdbMetadata;
|
|
1781
|
+
'hdbCatalog.hdbScheduledEventInvocationLogs': HdbCatalogHdbScheduledEventInvocationLogs;
|
|
1782
|
+
'hdbCatalog.hdbScheduledEvents': HdbCatalogHdbScheduledEvents;
|
|
1783
|
+
'hdbCatalog.hdbSchemaNotifications': HdbCatalogHdbSchemaNotifications;
|
|
1784
|
+
'hdbCatalog.hdbSourceCatalogVersion': HdbCatalogHdbSourceCatalogVersion;
|
|
1785
|
+
'hdbCatalog.hdbVersion': HdbCatalogHdbVersion;
|
|
1786
|
+
'public.accountCollection': PublicAccountCollection;
|
|
1787
|
+
'public.accountCollectionType': PublicAccountCollectionType;
|
|
1788
|
+
'public.action': PublicAction;
|
|
1789
|
+
'public.actionStatus': PublicActionStatus;
|
|
1790
|
+
'public.address': PublicAddress;
|
|
1791
|
+
'public.app': PublicApp;
|
|
1792
|
+
'public.auditLog': PublicAuditLog;
|
|
1793
|
+
'public.automation': PublicAutomation;
|
|
1794
|
+
'public.automationStatus': PublicAutomationStatus;
|
|
1795
|
+
'public.automationTemplate': PublicAutomationTemplate;
|
|
1796
|
+
'public.billingPaymentMethodType': PublicBillingPaymentMethodType;
|
|
1797
|
+
'public.bookingChannel': PublicBookingChannel;
|
|
1798
|
+
'public.connection': PublicConnection;
|
|
1799
|
+
'public.connectionStatusTemporary': PublicConnectionStatusTemporary;
|
|
1800
|
+
'public.csvLine': PublicCsvLine;
|
|
1801
|
+
'public.currency': PublicCurrency;
|
|
1802
|
+
'public.duplicateEmails': PublicDuplicateEmails;
|
|
1803
|
+
'public.emailTemplate': PublicEmailTemplate;
|
|
1804
|
+
'public.emailTemplateType': PublicEmailTemplateType;
|
|
1805
|
+
'public.feature': PublicFeature;
|
|
1806
|
+
'public.featureApproval': PublicFeatureApproval;
|
|
1807
|
+
'public.featureApprovalStatus': PublicFeatureApprovalStatus;
|
|
1808
|
+
'public.featureEnabledTeam': PublicFeatureEnabledTeam;
|
|
1809
|
+
'public.featureStatus': PublicFeatureStatus;
|
|
1810
|
+
'public.fileStorage': PublicFileStorage;
|
|
1811
|
+
'public.fileStorageSourceLink': PublicFileStorageSourceLink;
|
|
1812
|
+
'public.fileStorageTag': PublicFileStorageTag;
|
|
1813
|
+
'public.latestDuplicateEmails': PublicLatestDuplicateEmails;
|
|
1814
|
+
'public.listing': PublicListing;
|
|
1815
|
+
'public.listingCollection': PublicListingCollection;
|
|
1816
|
+
'public.listingConnection': PublicListingConnection;
|
|
1817
|
+
'public.listingOwner': PublicListingOwner;
|
|
1818
|
+
'public.listingOwnerRole': PublicListingOwnerRole;
|
|
1819
|
+
'public.listingOwnershipPeriod': PublicListingOwnershipPeriod;
|
|
1820
|
+
'public.listingOwnershipPeriodMember': PublicListingOwnershipPeriodMember;
|
|
1821
|
+
'public.listingPmsStatus': PublicListingPmsStatus;
|
|
1822
|
+
'public.listingStatus': PublicListingStatus;
|
|
1823
|
+
'public.metric': PublicMetric;
|
|
1824
|
+
'public.owner': PublicOwner;
|
|
1825
|
+
'public.ownerPmsStatus': PublicOwnerPmsStatus;
|
|
1826
|
+
'public.ownerStatement': PublicOwnerStatement;
|
|
1827
|
+
'public.ownerStatementIssue': PublicOwnerStatementIssue;
|
|
1828
|
+
'public.ownerStatementLayout': PublicOwnerStatementLayout;
|
|
1829
|
+
'public.ownerStatementLayoutAccount': PublicOwnerStatementLayoutAccount;
|
|
1830
|
+
'public.ownerStatementLayoutListing': PublicOwnerStatementLayoutListing;
|
|
1831
|
+
'public.ownerStatementLine': PublicOwnerStatementLine;
|
|
1832
|
+
'public.ownerStatementOwner': PublicOwnerStatementOwner;
|
|
1833
|
+
'public.ownerStatementStatus': PublicOwnerStatementStatus;
|
|
1834
|
+
'public.ownerStatementTemplate': PublicOwnerStatementTemplate;
|
|
1835
|
+
'public.ownerStatus': PublicOwnerStatus;
|
|
1836
|
+
'public.ownerType': PublicOwnerType;
|
|
1837
|
+
'public.ownerUserAccess': PublicOwnerUserAccess;
|
|
1838
|
+
'public.ownerUserAccessRole': PublicOwnerUserAccessRole;
|
|
1839
|
+
'public.payment': PublicPayment;
|
|
1840
|
+
'public.paymentLine': PublicPaymentLine;
|
|
1841
|
+
'public.paymentLineClassification': PublicPaymentLineClassification;
|
|
1842
|
+
'public.paymentStatus': PublicPaymentStatus;
|
|
1843
|
+
'public.paymentType': PublicPaymentType;
|
|
1844
|
+
'public.recurringFee': PublicRecurringFee;
|
|
1845
|
+
'public.recurringFeeAccount': PublicRecurringFeeAccount;
|
|
1846
|
+
'public.recurringFeeListingSubscription': PublicRecurringFeeListingSubscription;
|
|
1847
|
+
'public.recurringFeeListingSubscriptionRateType': PublicRecurringFeeListingSubscriptionRateType;
|
|
1848
|
+
'public.recurringFeeType': PublicRecurringFeeType;
|
|
1849
|
+
'public.reservation': PublicReservation;
|
|
1850
|
+
'public.reservationStatus': PublicReservationStatus;
|
|
1851
|
+
'public.reservationWithOccupancyStatus': PublicReservationWithOccupancyStatus;
|
|
1852
|
+
'public.scheduledEvent': PublicScheduledEvent;
|
|
1853
|
+
'public.scheduledEventStatus': PublicScheduledEventStatus;
|
|
1854
|
+
'public.setting': PublicSetting;
|
|
1855
|
+
'public.source': PublicSource;
|
|
1856
|
+
'public.task': PublicTask;
|
|
1857
|
+
'public.taxStatement': PublicTaxStatement;
|
|
1858
|
+
'public.taxStatementStatus': PublicTaxStatementStatus;
|
|
1859
|
+
'public.tenant': PublicTenant;
|
|
1860
|
+
'public.tenantUser': PublicTenantUser;
|
|
1861
|
+
'public.token': PublicToken;
|
|
1862
|
+
'public.user': PublicUser;
|
|
1863
|
+
'public.userCompanyType': PublicUserCompanyType;
|
|
1864
|
+
'public.userCompanyUser': PublicUserCompanyUser;
|
|
1865
|
+
'public.view': PublicView;
|
|
1866
|
+
'public.viewNotificationEvents': PublicViewNotificationEvents;
|
|
1867
|
+
'public.viewNotificationEventsGroupedByDate': PublicViewNotificationEventsGroupedByDate;
|
|
1868
|
+
'public.viewWebhookEvents': PublicViewWebhookEvents;
|
|
1869
|
+
'public.viewWebhookEventsGroupedByDate': PublicViewWebhookEventsGroupedByDate;
|
|
1870
|
+
'public.webhook': PublicWebhook;
|
|
1871
|
+
'tracking.event': TrackingEvent;
|
|
1872
|
+
'tracking.intercomConversation': TrackingIntercomConversation;
|
|
1873
|
+
'tracking.intercomConversationUser': TrackingIntercomConversationUser;
|
|
1874
|
+
'tracking.intercomReport': TrackingIntercomReport;
|
|
1875
|
+
'tracking.intercomReportConversation': TrackingIntercomReportConversation;
|
|
1876
|
+
'tracking.monitorConnection': TrackingMonitorConnection;
|
|
1877
|
+
'tracking.monitorConnectionState': TrackingMonitorConnectionState;
|
|
1878
1878
|
}
|