@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
package/src/v1.generated.ts
CHANGED
|
@@ -3,15 +3,19 @@
|
|
|
3
3
|
* Please do not edit it manually.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import type { ColumnType } from
|
|
6
|
+
import type { ColumnType } from 'kysely';
|
|
7
7
|
|
|
8
|
-
export type CoreAuditOperation =
|
|
8
|
+
export type CoreAuditOperation = 'DELETE' | 'INSERT' | 'UPDATE';
|
|
9
9
|
|
|
10
10
|
export type Generated<T> = T extends ColumnType<infer S, infer I, infer U>
|
|
11
11
|
? ColumnType<S, I | undefined, U>
|
|
12
12
|
: ColumnType<T, T | undefined, T>;
|
|
13
13
|
|
|
14
|
-
export type Int8 = ColumnType<
|
|
14
|
+
export type Int8 = ColumnType<
|
|
15
|
+
string,
|
|
16
|
+
bigint | number | string,
|
|
17
|
+
bigint | number | string
|
|
18
|
+
>;
|
|
15
19
|
|
|
16
20
|
export type Json = JsonValue;
|
|
17
21
|
|
|
@@ -386,7 +390,7 @@ export interface CoreChange {
|
|
|
386
390
|
id: Generated<string>;
|
|
387
391
|
isLatestVersion: Generated<boolean | null>;
|
|
388
392
|
message: string | null;
|
|
389
|
-
seq:
|
|
393
|
+
seq: Int8 | null;
|
|
390
394
|
status: string | null;
|
|
391
395
|
syncId: string | null;
|
|
392
396
|
syncSubtaskId: string | null;
|
|
@@ -1889,163 +1893,163 @@ export interface TrackingMonitorConnectionState {
|
|
|
1889
1893
|
}
|
|
1890
1894
|
|
|
1891
1895
|
export interface DB {
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
1896
|
+
'accounting.account': AccountingAccount;
|
|
1897
|
+
'accounting.accountAssignment': AccountingAccountAssignment;
|
|
1898
|
+
'accounting.accountAssignmentLineType': AccountingAccountAssignmentLineType;
|
|
1899
|
+
'accounting.accountAssignmentType': AccountingAccountAssignmentType;
|
|
1900
|
+
'accounting.accountCategory': AccountingAccountCategory;
|
|
1901
|
+
'accounting.accountClassification': AccountingAccountClassification;
|
|
1902
|
+
'accounting.accountReservationLineType': AccountingAccountReservationLineType;
|
|
1903
|
+
'accounting.accountReservationRevRec': AccountingAccountReservationRevRec;
|
|
1904
|
+
'accounting.accountType': AccountingAccountType;
|
|
1905
|
+
'accounting.bankAccount': AccountingBankAccount;
|
|
1906
|
+
'accounting.bankAccountCategory': AccountingBankAccountCategory;
|
|
1907
|
+
'accounting.bankAccountType': AccountingBankAccountType;
|
|
1908
|
+
'accounting.bankRecord': AccountingBankRecord;
|
|
1909
|
+
'accounting.bankRecordTransactionPayment': AccountingBankRecordTransactionPayment;
|
|
1910
|
+
'accounting.contact': AccountingContact;
|
|
1911
|
+
'accounting.contactCompanyType': AccountingContactCompanyType;
|
|
1912
|
+
'accounting.contactType': AccountingContactType;
|
|
1913
|
+
'accounting.journalEntry': AccountingJournalEntry;
|
|
1914
|
+
'accounting.journalEntryEntityType': AccountingJournalEntryEntityType;
|
|
1915
|
+
'accounting.journalEntryTriggerType': AccountingJournalEntryTriggerType;
|
|
1916
|
+
'accounting.journalEntryType': AccountingJournalEntryType;
|
|
1917
|
+
'accounting.paidStatus': AccountingPaidStatus;
|
|
1918
|
+
'accounting.party': AccountingParty;
|
|
1919
|
+
'accounting.rate': AccountingRate;
|
|
1920
|
+
'accounting.rateType': AccountingRateType;
|
|
1921
|
+
'accounting.taxBehavior': AccountingTaxBehavior;
|
|
1922
|
+
'accounting.transaction': AccountingTransaction;
|
|
1923
|
+
'accounting.transactionLine': AccountingTransactionLine;
|
|
1924
|
+
'accounting.transactionType': AccountingTransactionType;
|
|
1925
|
+
'core.action': CoreAction;
|
|
1926
|
+
'core.activeStatus': CoreActiveStatus;
|
|
1927
|
+
'core.auditTrail': CoreAuditTrail;
|
|
1928
|
+
'core.change': CoreChange;
|
|
1929
|
+
'core.changeEntityType': CoreChangeEntityType;
|
|
1930
|
+
'core.changeLink': CoreChangeLink;
|
|
1931
|
+
'core.changeSourceLink': CoreChangeSourceLink;
|
|
1932
|
+
'core.changeStatus': CoreChangeStatus;
|
|
1933
|
+
'core.changeSyncType': CoreChangeSyncType;
|
|
1934
|
+
'core.changeType': CoreChangeType;
|
|
1935
|
+
'core.issue': CoreIssue;
|
|
1936
|
+
'core.issueKind': CoreIssueKind;
|
|
1937
|
+
'core.issueMessageOverwrite': CoreIssueMessageOverwrite;
|
|
1938
|
+
'core.issueStatus': CoreIssueStatus;
|
|
1939
|
+
'core.issueType': CoreIssueType;
|
|
1940
|
+
'core.job': CoreJob;
|
|
1941
|
+
'core.jobPage': CoreJobPage;
|
|
1942
|
+
'core.jobPlan': CoreJobPlan;
|
|
1943
|
+
'core.schema': CoreSchema;
|
|
1944
|
+
'core.schemaKind': CoreSchemaKind;
|
|
1945
|
+
'core.sourceAction': CoreSourceAction;
|
|
1946
|
+
'core.sourceOp': CoreSourceOp;
|
|
1947
|
+
'core.sync': CoreSync;
|
|
1948
|
+
'core.syncStatus': CoreSyncStatus;
|
|
1949
|
+
'core.syncSubtask': CoreSyncSubtask;
|
|
1950
|
+
'core.syncType': CoreSyncType;
|
|
1951
|
+
'hdbCatalog.eventInvocationLogs': HdbCatalogEventInvocationLogs;
|
|
1952
|
+
'hdbCatalog.eventLog': HdbCatalogEventLog;
|
|
1953
|
+
'hdbCatalog.hdbActionLog': HdbCatalogHdbActionLog;
|
|
1954
|
+
'hdbCatalog.hdbCronEventInvocationLogs': HdbCatalogHdbCronEventInvocationLogs;
|
|
1955
|
+
'hdbCatalog.hdbCronEvents': HdbCatalogHdbCronEvents;
|
|
1956
|
+
'hdbCatalog.hdbEventLogCleanups': HdbCatalogHdbEventLogCleanups;
|
|
1957
|
+
'hdbCatalog.hdbMetadata': HdbCatalogHdbMetadata;
|
|
1958
|
+
'hdbCatalog.hdbScheduledEventInvocationLogs': HdbCatalogHdbScheduledEventInvocationLogs;
|
|
1959
|
+
'hdbCatalog.hdbScheduledEvents': HdbCatalogHdbScheduledEvents;
|
|
1960
|
+
'hdbCatalog.hdbSchemaNotifications': HdbCatalogHdbSchemaNotifications;
|
|
1961
|
+
'hdbCatalog.hdbSourceCatalogVersion': HdbCatalogHdbSourceCatalogVersion;
|
|
1962
|
+
'hdbCatalog.hdbVersion': HdbCatalogHdbVersion;
|
|
1963
|
+
'public.accountCollection': PublicAccountCollection;
|
|
1964
|
+
'public.accountCollectionType': PublicAccountCollectionType;
|
|
1965
|
+
'public.action': PublicAction;
|
|
1966
|
+
'public.actionStatus': PublicActionStatus;
|
|
1967
|
+
'public.address': PublicAddress;
|
|
1968
|
+
'public.app': PublicApp;
|
|
1969
|
+
'public.auditLog': PublicAuditLog;
|
|
1970
|
+
'public.automation': PublicAutomation;
|
|
1971
|
+
'public.automationStatus': PublicAutomationStatus;
|
|
1972
|
+
'public.automationTemplate': PublicAutomationTemplate;
|
|
1973
|
+
'public.billingPaymentMethodType': PublicBillingPaymentMethodType;
|
|
1974
|
+
'public.bookingChannel': PublicBookingChannel;
|
|
1975
|
+
'public.connection': PublicConnection;
|
|
1976
|
+
'public.connectionStatusTemporary': PublicConnectionStatusTemporary;
|
|
1977
|
+
'public.csvLine': PublicCsvLine;
|
|
1978
|
+
'public.currency': PublicCurrency;
|
|
1979
|
+
'public.duplicateEmails': PublicDuplicateEmails;
|
|
1980
|
+
'public.emailTemplate': PublicEmailTemplate;
|
|
1981
|
+
'public.emailTemplateType': PublicEmailTemplateType;
|
|
1982
|
+
'public.feature': PublicFeature;
|
|
1983
|
+
'public.featureApproval': PublicFeatureApproval;
|
|
1984
|
+
'public.featureApprovalStatus': PublicFeatureApprovalStatus;
|
|
1985
|
+
'public.featureEnabledTeam': PublicFeatureEnabledTeam;
|
|
1986
|
+
'public.featureStatus': PublicFeatureStatus;
|
|
1987
|
+
'public.fileStorage': PublicFileStorage;
|
|
1988
|
+
'public.fileStorageSourceLink': PublicFileStorageSourceLink;
|
|
1989
|
+
'public.fileStorageTag': PublicFileStorageTag;
|
|
1990
|
+
'public.latestDuplicateEmails': PublicLatestDuplicateEmails;
|
|
1991
|
+
'public.listing': PublicListing;
|
|
1992
|
+
'public.listingCollection': PublicListingCollection;
|
|
1993
|
+
'public.listingConnection': PublicListingConnection;
|
|
1994
|
+
'public.listingOwner': PublicListingOwner;
|
|
1995
|
+
'public.listingOwnerRole': PublicListingOwnerRole;
|
|
1996
|
+
'public.listingOwnershipPeriod': PublicListingOwnershipPeriod;
|
|
1997
|
+
'public.listingOwnershipPeriodMember': PublicListingOwnershipPeriodMember;
|
|
1998
|
+
'public.listingPmsStatus': PublicListingPmsStatus;
|
|
1999
|
+
'public.listingStatus': PublicListingStatus;
|
|
2000
|
+
'public.metric': PublicMetric;
|
|
2001
|
+
'public.owner': PublicOwner;
|
|
2002
|
+
'public.ownerPmsStatus': PublicOwnerPmsStatus;
|
|
2003
|
+
'public.ownerStatement': PublicOwnerStatement;
|
|
2004
|
+
'public.ownerStatementIssue': PublicOwnerStatementIssue;
|
|
2005
|
+
'public.ownerStatementLayout': PublicOwnerStatementLayout;
|
|
2006
|
+
'public.ownerStatementLayoutAccount': PublicOwnerStatementLayoutAccount;
|
|
2007
|
+
'public.ownerStatementLayoutListing': PublicOwnerStatementLayoutListing;
|
|
2008
|
+
'public.ownerStatementLine': PublicOwnerStatementLine;
|
|
2009
|
+
'public.ownerStatementOwner': PublicOwnerStatementOwner;
|
|
2010
|
+
'public.ownerStatementStatus': PublicOwnerStatementStatus;
|
|
2011
|
+
'public.ownerStatementTemplate': PublicOwnerStatementTemplate;
|
|
2012
|
+
'public.ownerStatus': PublicOwnerStatus;
|
|
2013
|
+
'public.ownerType': PublicOwnerType;
|
|
2014
|
+
'public.ownerUserAccess': PublicOwnerUserAccess;
|
|
2015
|
+
'public.ownerUserAccessRole': PublicOwnerUserAccessRole;
|
|
2016
|
+
'public.payment': PublicPayment;
|
|
2017
|
+
'public.paymentLine': PublicPaymentLine;
|
|
2018
|
+
'public.paymentLineClassification': PublicPaymentLineClassification;
|
|
2019
|
+
'public.paymentStatus': PublicPaymentStatus;
|
|
2020
|
+
'public.paymentType': PublicPaymentType;
|
|
2021
|
+
'public.recurringFee': PublicRecurringFee;
|
|
2022
|
+
'public.recurringFeeAccount': PublicRecurringFeeAccount;
|
|
2023
|
+
'public.recurringFeeListingSubscription': PublicRecurringFeeListingSubscription;
|
|
2024
|
+
'public.recurringFeeListingSubscriptionRateType': PublicRecurringFeeListingSubscriptionRateType;
|
|
2025
|
+
'public.recurringFeeType': PublicRecurringFeeType;
|
|
2026
|
+
'public.reservation': PublicReservation;
|
|
2027
|
+
'public.reservationStatus': PublicReservationStatus;
|
|
2028
|
+
'public.reservationWithOccupancyStatus': PublicReservationWithOccupancyStatus;
|
|
2029
|
+
'public.scheduledEvent': PublicScheduledEvent;
|
|
2030
|
+
'public.scheduledEventStatus': PublicScheduledEventStatus;
|
|
2031
|
+
'public.setting': PublicSetting;
|
|
2032
|
+
'public.source': PublicSource;
|
|
2033
|
+
'public.task': PublicTask;
|
|
2034
|
+
'public.taxStatement': PublicTaxStatement;
|
|
2035
|
+
'public.taxStatementStatus': PublicTaxStatementStatus;
|
|
2036
|
+
'public.tenant': PublicTenant;
|
|
2037
|
+
'public.tenantUser': PublicTenantUser;
|
|
2038
|
+
'public.token': PublicToken;
|
|
2039
|
+
'public.user': PublicUser;
|
|
2040
|
+
'public.userCompanyType': PublicUserCompanyType;
|
|
2041
|
+
'public.userCompanyUser': PublicUserCompanyUser;
|
|
2042
|
+
'public.view': PublicView;
|
|
2043
|
+
'public.viewNotificationEvents': PublicViewNotificationEvents;
|
|
2044
|
+
'public.viewNotificationEventsGroupedByDate': PublicViewNotificationEventsGroupedByDate;
|
|
2045
|
+
'public.viewWebhookEvents': PublicViewWebhookEvents;
|
|
2046
|
+
'public.viewWebhookEventsGroupedByDate': PublicViewWebhookEventsGroupedByDate;
|
|
2047
|
+
'public.webhook': PublicWebhook;
|
|
2048
|
+
'tracking.event': TrackingEvent;
|
|
2049
|
+
'tracking.intercomConversation': TrackingIntercomConversation;
|
|
2050
|
+
'tracking.intercomConversationUser': TrackingIntercomConversationUser;
|
|
2051
|
+
'tracking.intercomReport': TrackingIntercomReport;
|
|
2052
|
+
'tracking.intercomReportConversation': TrackingIntercomReportConversation;
|
|
2053
|
+
'tracking.monitorConnection': TrackingMonitorConnection;
|
|
2054
|
+
'tracking.monitorConnectionState': TrackingMonitorConnectionState;
|
|
2051
2055
|
}
|