@vrplatform/kysely 1.3.45-5991 → 1.3.45-6
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/control-plane/index.d.ts +177 -0
- package/build/main/control-plane/index.js.map +1 -1
- package/build/main/index.d.ts +2 -2
- package/build/main/index.js +111 -22
- package/build/main/index.js.map +1 -1
- package/build/main/local/generate.js +1 -0
- package/build/main/local/generate.js.map +1 -1
- package/build/main/local/index.js +1 -0
- package/build/main/local/index.js.map +1 -1
- package/build/main/query/listing/status.js +2 -6
- package/build/main/query/listing/status.js.map +1 -1
- package/build/main/query/tenant/status.d.ts +5 -8
- package/build/main/query/tenant/status.js +16 -20
- package/build/main/query/tenant/status.js.map +1 -1
- package/build/main/test/index.d.ts +0 -3
- package/build/main/test/index.js +0 -9
- package/build/main/test/index.js.map +1 -1
- package/build/main/v1.generated.d.ts +254 -1
- package/build/main/v1.generated.js.map +1 -1
- package/build/migrations-v2/0000000000012-trial-free-analytics-billing-status.ts +72 -0
- package/build/migrations-v2/0000000000013-ui-permission-bundles.ts +45 -0
- package/build/migrations-v2/0000000000014-ui-permission-bundle-top-up.ts +32 -0
- package/build/migrations-v2/0000000000016-managed-team-access.ts +34 -0
- package/build/migrations-v2/0000000000017-drop-trial-until.ts +42 -0
- package/build/migrations-v2/0000000000018-accounting-integrity-monitoring.ts +276 -0
- package/build/migrations-v2/0000000000019-accounting-integrity-run-shards.ts +26 -0
- package/build/migrations-v2/0000000000020-accounting-integrity-case-classification.ts +52 -0
- package/build/migrations-v2/0000000000021-payment-line-classification-monitor-indexes.ts +31 -0
- package/build/migrations-v2/0000000000022-accounting-integrity-controlled-repairs.ts +281 -0
- package/build/migrations-v2/0000000000023-line-classification-usage.ts +325 -0
- package/build/migrations-v2/0000000000024-tenant-region-migration.ts +108 -0
- package/build/migrations-v2/0000000000025-partner-ach-denial-default.ts +30 -0
- package/build/migrations-v2/0000000000026-line-classification-usage-capture.ts +399 -0
- package/build/migrations-v2/0000000000027-payout-replacement-chain.ts +27 -0
- package/build/migrations-v2/0000000000028-accounting-integrity-operator-workflow.ts +108 -0
- package/build/migrations-v2/0000000000029-accounting-integrity-definition-artifacts.ts +40 -0
- package/build/migrations-v2/0000000000030-accounting-integrity-review-metadata-compatibility.ts +49 -0
- package/build/module/control-plane/index.d.ts +177 -0
- package/build/module/control-plane/index.js.map +1 -1
- package/build/module/index.d.ts +2 -2
- package/build/module/index.js +113 -23
- package/build/module/index.js.map +1 -1
- package/build/module/local/generate.js +1 -0
- package/build/module/local/generate.js.map +1 -1
- package/build/module/local/index.js +1 -0
- package/build/module/local/index.js.map +1 -1
- package/build/module/query/listing/status.js +2 -6
- package/build/module/query/listing/status.js.map +1 -1
- package/build/module/query/tenant/status.d.ts +5 -8
- package/build/module/query/tenant/status.js +16 -20
- package/build/module/query/tenant/status.js.map +1 -1
- package/build/module/test/index.d.ts +0 -3
- package/build/module/test/index.js +0 -9
- package/build/module/test/index.js.map +1 -1
- package/build/module/v1.generated.d.ts +254 -1
- package/build/module/v1.generated.js.map +1 -1
- package/package.json +1 -1
|
@@ -16,6 +16,22 @@ export type AuditPublicEventAccountingStatus = "blocked" | "changed" | "failed"
|
|
|
16
16
|
export type AuditPublicEventOperation = "archive" | "create" | "delete" | "execute" | "recalculate" | "restore" | "update";
|
|
17
17
|
export type AuditSourceType = "api" | "automation" | "integration" | "portal" | "sync" | "system";
|
|
18
18
|
export type Generated<T> = T extends ColumnType<infer S, infer I, infer U> ? ColumnType<S, I | undefined, U> : ColumnType<T, T | undefined, T>;
|
|
19
|
+
export type HealthAccountingIntegrityActionability = "automatically_repairable" | "blocked" | "code_fix_required" | "manual_repair" | "unknown";
|
|
20
|
+
export type HealthAccountingIntegrityCaseStatus = "open" | "resolved";
|
|
21
|
+
export type HealthAccountingIntegrityConfidence = "probable" | "proven" | "unknown";
|
|
22
|
+
export type HealthAccountingIntegrityDeliveryChannel = "sentry" | "slack";
|
|
23
|
+
export type HealthAccountingIntegrityDeliveryStatus = "dead_letter" | "delivered" | "failed" | "pending" | "processing" | "suppressed";
|
|
24
|
+
export type HealthAccountingIntegrityRepairPlanStatus = "active" | "canceled" | "completed" | "draft" | "failed" | "paused";
|
|
25
|
+
export type HealthAccountingIntegrityRepairScopeType = "case" | "tenant";
|
|
26
|
+
export type HealthAccountingIntegrityRepairStageStatus = "applying" | "approved" | "canceled" | "dry_run_passed" | "failed" | "paused" | "planned" | "verified" | "verifying";
|
|
27
|
+
export type HealthAccountingIntegrityRepairTargetStatus = "applied" | "applying" | "canceled" | "failed" | "paused" | "pending" | "verified" | "verifying";
|
|
28
|
+
export type HealthAccountingIntegrityRepairTransitionType = "approval_granted" | "approval_invalidated" | "canceled" | "completed" | "dry_run_passed" | "failed" | "paused" | "plan_activated" | "plan_created" | "stage_applying" | "stage_verified" | "target_applied" | "target_applying" | "target_verified" | "target_verifying";
|
|
29
|
+
export type HealthAccountingIntegrityResolutionClassification = "code_fix" | "configuration" | "data_repair" | "expected" | "false_positive" | "monitor_fix" | "unknown";
|
|
30
|
+
export type HealthAccountingIntegrityReviewStatus = "confirmed_issue" | "expected" | "false_positive" | "unreviewed";
|
|
31
|
+
export type HealthAccountingIntegrityRunStatus = "completed" | "failed" | "running" | "skipped";
|
|
32
|
+
export type HealthAccountingIntegritySeverity = "critical" | "error" | "info" | "warning";
|
|
33
|
+
export type HealthAccountingIntegrityTransitionType = "changed" | "opened" | "reopened" | "resolved" | "reviewed";
|
|
34
|
+
export type HealthAccountingIntegrityUrgency = "backlog" | "immediate" | "next_triage" | "none";
|
|
19
35
|
export type HealthTenantIssueCategory = "criticalToSystem" | "criticalToUser";
|
|
20
36
|
export type HealthTenantIssueCode = "brokenConnections" | "cancelledReservationPaidWithoutAdjustment" | "closedPeriodUnattachedJournalEntries" | "duplicatedPayments" | "endedOwnershipNonZeroBalance" | "listingOwnershipPeriodNotFoundOnActiveJournals" | "missingOwnershipOrDeactivation" | "operatingBankAccountsWithoutOpex" | "outdatedConnections" | "partnerBillingInactive" | "partnerInactive" | "pmsMissingAccountingStart" | "publishedStatementUnpaid" | "reservationCurrencyMismatch" | "reservationGuestTotalsMismatch" | "reservationPaymentProjectionMismatch" | "teamInactive" | "unbalancedJournalEntries" | "unbalancedTransactionJournalEntries" | "unpaidReservations";
|
|
21
37
|
export type HealthTenantIssueSeverity = "error" | "warning";
|
|
@@ -396,6 +412,7 @@ export interface AccountingTransaction {
|
|
|
396
412
|
paidStatus: Generated<string | null>;
|
|
397
413
|
recurringFeeId: string | null;
|
|
398
414
|
recurringPattern: Json | null;
|
|
415
|
+
recreatedFromTransactionId: string | null;
|
|
399
416
|
recurringTemplateId: string | null;
|
|
400
417
|
/**
|
|
401
418
|
* Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type).
|
|
@@ -876,6 +893,195 @@ export interface HdbCatalogHdbVersion {
|
|
|
876
893
|
upgradedOn: Timestamp;
|
|
877
894
|
version: string;
|
|
878
895
|
}
|
|
896
|
+
export interface HealthAccountingIntegrityCase {
|
|
897
|
+
actionability: HealthAccountingIntegrityActionability;
|
|
898
|
+
actual: Json;
|
|
899
|
+
assignedAt: Timestamp | null;
|
|
900
|
+
assignedTo: string | null;
|
|
901
|
+
caseKey: string;
|
|
902
|
+
code: string;
|
|
903
|
+
confidence: HealthAccountingIntegrityConfidence;
|
|
904
|
+
contentHash: string;
|
|
905
|
+
createdAt: Generated<Timestamp>;
|
|
906
|
+
dataRegion: string;
|
|
907
|
+
definitionVersion: number;
|
|
908
|
+
evidence: Json;
|
|
909
|
+
evidenceComplete: boolean;
|
|
910
|
+
expected: Json;
|
|
911
|
+
firstSeenAt: Timestamp;
|
|
912
|
+
gitRevision: string;
|
|
913
|
+
historicalIssueRefs: Json;
|
|
914
|
+
id: Generated<string>;
|
|
915
|
+
impact: Json;
|
|
916
|
+
lastChangedAt: Timestamp;
|
|
917
|
+
lastSeenAt: Timestamp;
|
|
918
|
+
lockAssessment: Json;
|
|
919
|
+
portalUrls: Json;
|
|
920
|
+
repair: Json;
|
|
921
|
+
resolutionClassification: HealthAccountingIntegrityResolutionClassification;
|
|
922
|
+
resolvedAt: Timestamp | null;
|
|
923
|
+
reviewStatus: Generated<HealthAccountingIntegrityReviewStatus>;
|
|
924
|
+
reviewRationale: string | null;
|
|
925
|
+
reviewedAt: Timestamp | null;
|
|
926
|
+
reviewedBy: string | null;
|
|
927
|
+
rootCause: string;
|
|
928
|
+
runId: string;
|
|
929
|
+
severity: HealthAccountingIntegritySeverity;
|
|
930
|
+
status: HealthAccountingIntegrityCaseStatus;
|
|
931
|
+
tenantId: string;
|
|
932
|
+
title: string;
|
|
933
|
+
updatedAt: Generated<Timestamp>;
|
|
934
|
+
urgency: HealthAccountingIntegrityUrgency;
|
|
935
|
+
verification: Json;
|
|
936
|
+
version: Generated<Int8>;
|
|
937
|
+
}
|
|
938
|
+
export interface HealthAccountingIntegrityOperatorEvent {
|
|
939
|
+
actorId: string;
|
|
940
|
+
caseId: string | null;
|
|
941
|
+
caseVersion: Int8 | null;
|
|
942
|
+
client: string;
|
|
943
|
+
createdAt: Generated<Timestamp>;
|
|
944
|
+
id: Generated<string>;
|
|
945
|
+
idempotencyKey: string;
|
|
946
|
+
payload: Json;
|
|
947
|
+
planId: string | null;
|
|
948
|
+
rationale: string | null;
|
|
949
|
+
requestId: string;
|
|
950
|
+
stageId: string | null;
|
|
951
|
+
targetId: string | null;
|
|
952
|
+
type: string;
|
|
953
|
+
}
|
|
954
|
+
export interface HealthAccountingIntegrityDelivery {
|
|
955
|
+
attempts: Generated<number>;
|
|
956
|
+
caseId: string | null;
|
|
957
|
+
channel: HealthAccountingIntegrityDeliveryChannel;
|
|
958
|
+
claimedAt: Timestamp | null;
|
|
959
|
+
claimId: string | null;
|
|
960
|
+
createdAt: Generated<Timestamp>;
|
|
961
|
+
dedupeKey: string;
|
|
962
|
+
deliveredAt: Timestamp | null;
|
|
963
|
+
eventType: string;
|
|
964
|
+
id: Generated<string>;
|
|
965
|
+
lastError: Json | null;
|
|
966
|
+
nextAttemptAt: Generated<Timestamp>;
|
|
967
|
+
payload: Json;
|
|
968
|
+
result: Json | null;
|
|
969
|
+
runId: string;
|
|
970
|
+
status: Generated<HealthAccountingIntegrityDeliveryStatus>;
|
|
971
|
+
updatedAt: Generated<Timestamp>;
|
|
972
|
+
}
|
|
973
|
+
export interface HealthAccountingIntegrityRepairPlan {
|
|
974
|
+
canceledAt: Timestamp | null;
|
|
975
|
+
code: string;
|
|
976
|
+
completedAt: Timestamp | null;
|
|
977
|
+
createdAt: Generated<Timestamp>;
|
|
978
|
+
createdBy: string;
|
|
979
|
+
dataRegion: string;
|
|
980
|
+
environment: string;
|
|
981
|
+
gitRevision: string;
|
|
982
|
+
id: Generated<string>;
|
|
983
|
+
linearRef: string | null;
|
|
984
|
+
recipeVersion: number;
|
|
985
|
+
status: Generated<HealthAccountingIntegrityRepairPlanStatus>;
|
|
986
|
+
title: string;
|
|
987
|
+
updatedAt: Generated<Timestamp>;
|
|
988
|
+
}
|
|
989
|
+
export interface HealthAccountingIntegrityRepairStage {
|
|
990
|
+
applyResult: Json | null;
|
|
991
|
+
approvalRef: string | null;
|
|
992
|
+
approvedAt: Timestamp | null;
|
|
993
|
+
approvedBy: string | null;
|
|
994
|
+
completedAt: Timestamp | null;
|
|
995
|
+
createdAt: Generated<Timestamp>;
|
|
996
|
+
dryRunResult: Json | null;
|
|
997
|
+
id: Generated<string>;
|
|
998
|
+
limits: Json;
|
|
999
|
+
manifest: Json;
|
|
1000
|
+
manifestHash: string;
|
|
1001
|
+
ordinal: number;
|
|
1002
|
+
planId: string;
|
|
1003
|
+
scopeType: HealthAccountingIntegrityRepairScopeType;
|
|
1004
|
+
startedAt: Timestamp | null;
|
|
1005
|
+
status: Generated<HealthAccountingIntegrityRepairStageStatus>;
|
|
1006
|
+
tenantId: string;
|
|
1007
|
+
updatedAt: Generated<Timestamp>;
|
|
1008
|
+
verificationResult: Json | null;
|
|
1009
|
+
}
|
|
1010
|
+
export interface HealthAccountingIntegrityRepairTarget {
|
|
1011
|
+
action: Json;
|
|
1012
|
+
applyResult: Json | null;
|
|
1013
|
+
auditActionId: string | null;
|
|
1014
|
+
beforeHash: string;
|
|
1015
|
+
beforeState: Json;
|
|
1016
|
+
caseContentHash: string;
|
|
1017
|
+
caseId: string;
|
|
1018
|
+
caseVersion: Int8;
|
|
1019
|
+
completedAt: Timestamp | null;
|
|
1020
|
+
createdAt: Generated<Timestamp>;
|
|
1021
|
+
effectPlan: Json;
|
|
1022
|
+
expectedResult: Json;
|
|
1023
|
+
id: Generated<string>;
|
|
1024
|
+
idempotencyKey: string;
|
|
1025
|
+
lockAssessment: Json;
|
|
1026
|
+
ordinal: number;
|
|
1027
|
+
stageId: string;
|
|
1028
|
+
startedAt: Timestamp | null;
|
|
1029
|
+
status: Generated<HealthAccountingIntegrityRepairTargetStatus>;
|
|
1030
|
+
targetKey: string;
|
|
1031
|
+
tenantId: string;
|
|
1032
|
+
updatedAt: Generated<Timestamp>;
|
|
1033
|
+
verificationResult: Json | null;
|
|
1034
|
+
}
|
|
1035
|
+
export interface HealthAccountingIntegrityRepairTransition {
|
|
1036
|
+
actor: string;
|
|
1037
|
+
createdAt: Generated<Timestamp>;
|
|
1038
|
+
id: Generated<string>;
|
|
1039
|
+
payload: Json;
|
|
1040
|
+
planId: string;
|
|
1041
|
+
stageId: string | null;
|
|
1042
|
+
targetId: string | null;
|
|
1043
|
+
type: HealthAccountingIntegrityRepairTransitionType;
|
|
1044
|
+
}
|
|
1045
|
+
export interface HealthAccountingIntegrityRun {
|
|
1046
|
+
caseCount: Generated<Int8>;
|
|
1047
|
+
changedCaseCount: Generated<Int8>;
|
|
1048
|
+
code: string;
|
|
1049
|
+
completedAt: Timestamp | null;
|
|
1050
|
+
createdAt: Generated<Timestamp>;
|
|
1051
|
+
dataRegion: string;
|
|
1052
|
+
definitionVersion: number;
|
|
1053
|
+
definitionVersionId: string | null;
|
|
1054
|
+
definitionArtifactHash: string | null;
|
|
1055
|
+
definitionTemplateId: string | null;
|
|
1056
|
+
definitionTemplateVersion: number | null;
|
|
1057
|
+
environment: string;
|
|
1058
|
+
error: Json | null;
|
|
1059
|
+
evaluationId: string;
|
|
1060
|
+
findingRowCount: Generated<Int8>;
|
|
1061
|
+
gitRevision: string;
|
|
1062
|
+
id: Generated<string>;
|
|
1063
|
+
openedCaseCount: Generated<Int8>;
|
|
1064
|
+
operatorDefinitionVersion: number | null;
|
|
1065
|
+
reopenedCaseCount: Generated<Int8>;
|
|
1066
|
+
resolvedCaseCount: Generated<Int8>;
|
|
1067
|
+
resolvesCases: Generated<boolean>;
|
|
1068
|
+
rowsScanned: Generated<Int8>;
|
|
1069
|
+
scopeTenantIds: string[] | null;
|
|
1070
|
+
shardKey: Generated<string>;
|
|
1071
|
+
startedAt: Timestamp;
|
|
1072
|
+
status: HealthAccountingIntegrityRunStatus;
|
|
1073
|
+
unchangedCaseCount: Generated<Int8>;
|
|
1074
|
+
updatedAt: Generated<Timestamp>;
|
|
1075
|
+
}
|
|
1076
|
+
export interface HealthAccountingIntegrityTransition {
|
|
1077
|
+
caseId: string;
|
|
1078
|
+
caseVersion: Int8;
|
|
1079
|
+
createdAt: Generated<Timestamp>;
|
|
1080
|
+
id: Generated<string>;
|
|
1081
|
+
payload: Json;
|
|
1082
|
+
runId: string;
|
|
1083
|
+
type: HealthAccountingIntegrityTransitionType;
|
|
1084
|
+
}
|
|
879
1085
|
export interface HealthReservationIssueSnapshot {
|
|
880
1086
|
computedAt: Timestamp | null;
|
|
881
1087
|
computedVersion: Generated<Int8>;
|
|
@@ -1220,6 +1426,36 @@ export interface PublicLatestDuplicateEmails {
|
|
|
1220
1426
|
name: string | null;
|
|
1221
1427
|
status: string | null;
|
|
1222
1428
|
}
|
|
1429
|
+
export interface PublicLineClassificationUsageCapture {
|
|
1430
|
+
createdAt: Generated<Timestamp>;
|
|
1431
|
+
firstSeenAt: Timestamp | null;
|
|
1432
|
+
id: Generated<string>;
|
|
1433
|
+
kind: string;
|
|
1434
|
+
lastSeenAt: Timestamp | null;
|
|
1435
|
+
name: string;
|
|
1436
|
+
tenantId: string;
|
|
1437
|
+
}
|
|
1438
|
+
export interface PublicLineClassificationUsage {
|
|
1439
|
+
appId: string | null;
|
|
1440
|
+
createdAt: Generated<Timestamp>;
|
|
1441
|
+
firstSeenAt: Generated<Timestamp>;
|
|
1442
|
+
kind: string;
|
|
1443
|
+
lastError: string | null;
|
|
1444
|
+
lastSeenAt: Generated<Timestamp>;
|
|
1445
|
+
mappingStatus: string | null;
|
|
1446
|
+
name: string;
|
|
1447
|
+
reportAttempts: Generated<number>;
|
|
1448
|
+
reportedRevision: Generated<number>;
|
|
1449
|
+
revision: Generated<number>;
|
|
1450
|
+
tenantId: string;
|
|
1451
|
+
updatedAt: Generated<Timestamp>;
|
|
1452
|
+
}
|
|
1453
|
+
export interface PublicLineClassificationUsageBackfill {
|
|
1454
|
+
completedAt: Timestamp | null;
|
|
1455
|
+
cursorId: string | null;
|
|
1456
|
+
source: string;
|
|
1457
|
+
updatedAt: Generated<Timestamp>;
|
|
1458
|
+
}
|
|
1223
1459
|
export interface PublicListing {
|
|
1224
1460
|
address: string | null;
|
|
1225
1461
|
addressCity: string | null;
|
|
@@ -1850,9 +2086,13 @@ export interface PublicTenant {
|
|
|
1850
2086
|
isTest: Generated<boolean | null>;
|
|
1851
2087
|
logo: string | null;
|
|
1852
2088
|
longTermStayNights: number | null;
|
|
2089
|
+
migratedAt: Timestamp | null;
|
|
1853
2090
|
migratedFromTenantId: string | null;
|
|
2091
|
+
migratedToRegion: string | null;
|
|
2092
|
+
migrationStatus: Generated<string>;
|
|
1854
2093
|
name: string;
|
|
1855
2094
|
ownerPortalShowDraftStatements: boolean | null;
|
|
2095
|
+
partnerDeniedPermissions: Generated<string[]>;
|
|
1856
2096
|
partnerId: Generated<string | null>;
|
|
1857
2097
|
/**
|
|
1858
2098
|
* JSON column to hold team settings like "owner_portal_show_reservation_totals" or "owner_portal_show_draft_statements
|
|
@@ -1871,7 +2111,6 @@ export interface PublicTenant {
|
|
|
1871
2111
|
supportEmail: string | null;
|
|
1872
2112
|
supportPhone: string | null;
|
|
1873
2113
|
svixEndpoints: boolean | null;
|
|
1874
|
-
trialUntil: Timestamp | null;
|
|
1875
2114
|
type: Generated<string | null>;
|
|
1876
2115
|
uniqueRef: string | null;
|
|
1877
2116
|
updatedAt: Generated<Timestamp | null>;
|
|
@@ -1881,7 +2120,9 @@ export interface PublicTenantUser {
|
|
|
1881
2120
|
createdAt: Generated<Timestamp | null>;
|
|
1882
2121
|
id: Generated<string>;
|
|
1883
2122
|
lastInvitedAt: Timestamp | null;
|
|
2123
|
+
managedTeamAccess: Generated<"all" | "assigned">;
|
|
1884
2124
|
notificationPreferences: Generated<Json | null>;
|
|
2125
|
+
permissionBundles: Generated<string[]>;
|
|
1885
2126
|
role: Generated<string | null>;
|
|
1886
2127
|
status: Generated<string | null>;
|
|
1887
2128
|
tenantId: string;
|
|
@@ -2206,6 +2447,15 @@ export interface DB {
|
|
|
2206
2447
|
"hdbCatalog.hdbSchemaNotifications": HdbCatalogHdbSchemaNotifications;
|
|
2207
2448
|
"hdbCatalog.hdbSourceCatalogVersion": HdbCatalogHdbSourceCatalogVersion;
|
|
2208
2449
|
"hdbCatalog.hdbVersion": HdbCatalogHdbVersion;
|
|
2450
|
+
"health.accountingIntegrityCase": HealthAccountingIntegrityCase;
|
|
2451
|
+
"health.accountingIntegrityOperatorEvent": HealthAccountingIntegrityOperatorEvent;
|
|
2452
|
+
"health.accountingIntegrityDelivery": HealthAccountingIntegrityDelivery;
|
|
2453
|
+
"health.accountingIntegrityRepairPlan": HealthAccountingIntegrityRepairPlan;
|
|
2454
|
+
"health.accountingIntegrityRepairStage": HealthAccountingIntegrityRepairStage;
|
|
2455
|
+
"health.accountingIntegrityRepairTarget": HealthAccountingIntegrityRepairTarget;
|
|
2456
|
+
"health.accountingIntegrityRepairTransition": HealthAccountingIntegrityRepairTransition;
|
|
2457
|
+
"health.accountingIntegrityRun": HealthAccountingIntegrityRun;
|
|
2458
|
+
"health.accountingIntegrityTransition": HealthAccountingIntegrityTransition;
|
|
2209
2459
|
"health.reservationIssueSnapshot": HealthReservationIssueSnapshot;
|
|
2210
2460
|
"health.tenantIssue": HealthTenantIssue;
|
|
2211
2461
|
"health.tenantIssueRuleState": HealthTenantIssueRuleState;
|
|
@@ -2237,6 +2487,9 @@ export interface DB {
|
|
|
2237
2487
|
"public.fileStorageSourceLink": PublicFileStorageSourceLink;
|
|
2238
2488
|
"public.fileStorageTag": PublicFileStorageTag;
|
|
2239
2489
|
"public.latestDuplicateEmails": PublicLatestDuplicateEmails;
|
|
2490
|
+
"public.lineClassificationUsage": PublicLineClassificationUsage;
|
|
2491
|
+
"public.lineClassificationUsageBackfill": PublicLineClassificationUsageBackfill;
|
|
2492
|
+
"public.lineClassificationUsageCapture": PublicLineClassificationUsageCapture;
|
|
2240
2493
|
"public.listing": PublicListing;
|
|
2241
2494
|
"public.listingCollection": PublicListingCollection;
|
|
2242
2495
|
"public.listingConnection": PublicListingConnection;
|