@prisma/orm-extension-supabase 8.0.0-rc.1-dev.46 → 8.0.0-rc.10-dev.1
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/README.md +1 -7
- package/dist/{contract-3eC5gW9j-7yfFA_i-.mjs → contract-hNJNgzki-BWsNDy8c.mjs} +197 -171
- package/dist/contract-hNJNgzki-BWsNDy8c.mjs.map +1 -0
- package/dist/contract.d.mts +9 -9
- package/dist/contract.mjs +2 -2
- package/dist/contract.mjs.map +1 -1
- package/dist/pack.mjs +1 -1
- package/dist/pack.mjs.map +1 -1
- package/dist/{roles-CuXa3u9g-bhk28dKK.d.mts → roles-ClnD0bbo-BDs2kWQ0.d.mts} +3 -3
- package/dist/roles-ClnD0bbo-BDs2kWQ0.d.mts.map +1 -0
- package/dist/{roles-D5vC3rNp-tYQlvifU.mjs → roles-DMWDdQce-DpCzZwuD.mjs} +3 -3
- package/dist/roles-DMWDdQce-DpCzZwuD.mjs.map +1 -0
- package/dist/runtime.d.mts +581 -524
- package/dist/runtime.d.mts.map +1 -1
- package/dist/runtime.mjs +16 -13
- package/dist/runtime.mjs.map +1 -1
- package/package.json +13 -12
- package/dist/contract-3eC5gW9j-7yfFA_i-.mjs.map +0 -1
- package/dist/roles-CuXa3u9g-bhk28dKK.d.mts.map +0 -1
- package/dist/roles-D5vC3rNp-tYQlvifU.mjs.map +0 -1
package/dist/runtime.d.mts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { t as SupabaseRole } from "./roles-
|
|
1
|
+
import { t as SupabaseRole } from "./roles-ClnD0bbo-BDs2kWQ0.mjs";
|
|
2
2
|
import { NamespacedNativeEnums, PostgresRuntime, PostgresRuntimeImpl } from "@prisma/orm-postgres/runtime";
|
|
3
3
|
import { orm } from "@prisma/orm-family-sql/orm-client";
|
|
4
|
-
import { RawSqlTag } from "@prisma/orm-family-sql/relational-core/expression";
|
|
5
4
|
import { ExecutionContext, RuntimeConnection, SqlExecutionStackWithDriver, SqlMiddleware, SqlRuntimeExtensionDescriptor, TransactionContext, VerifyMarkerOption } from "@prisma/orm-family-sql/runtime";
|
|
6
5
|
import { Client, Pool } from "pg";
|
|
7
6
|
import { AsyncIterableResult, RuntimeExecuteOptions } from "@prisma/orm-framework/components/runtime";
|
|
@@ -9,7 +8,7 @@ import { QueryOperationTypes } from "@prisma/orm-target-postgres/adapter/operati
|
|
|
9
8
|
import { CodecTypes, Varchar } from "@prisma/orm-target-postgres/target/codec-types";
|
|
10
9
|
import { ContractWithTypeMaps, SqlStorage, TypeMaps } from "@prisma/orm-family-sql/contract/types";
|
|
11
10
|
import { Contract, NamespaceId, ProfileHashBase, StorageHashBase } from "@prisma/orm-framework/contract/types";
|
|
12
|
-
import { Db } from "@prisma/orm-family-sql/builder/types";
|
|
11
|
+
import { Db, RawLane } from "@prisma/orm-family-sql/builder/types";
|
|
13
12
|
import { SqlStatementStats } from "@prisma/orm-family-sql/relational-core/ast";
|
|
14
13
|
import { SqlExecutionPlan, SqlQueryPlan } from "@prisma/orm-family-sql/relational-core/plan";
|
|
15
14
|
//#region ../../../3-extensions/supabase/dist/runtime.d.mts
|
|
@@ -26,7 +25,7 @@ import { SqlExecutionPlan, SqlQueryPlan } from "@prisma/orm-family-sql/relationa
|
|
|
26
25
|
declare const supabaseRuntimeDescriptor: SqlRuntimeExtensionDescriptor<'postgres'>;
|
|
27
26
|
//#endregion
|
|
28
27
|
//#region src/contract/contract.d.ts
|
|
29
|
-
type StorageHash = StorageHashBase<'
|
|
28
|
+
type StorageHash = StorageHashBase<'409d9a5191d9d7d8e45a795cb55695a79edce9d8f42ff1e456bce6e79f98dff1'>;
|
|
30
29
|
type ProfileHash = ProfileHashBase<'3916f444a8a17ad749191acf9e08dad97d1a327b88c2f1d45d12f240296aa8b2'>;
|
|
31
30
|
type CodecTypes$1 = CodecTypes;
|
|
32
31
|
type QueryOperationTypes$1 = QueryOperationTypes<CodecTypes$1>;
|
|
@@ -73,7 +72,11 @@ type AggregateTypes = {
|
|
|
73
72
|
readonly output: 'pg/numeric@1';
|
|
74
73
|
readonly nullable: true;
|
|
75
74
|
};
|
|
76
|
-
readonly 'pg/time@1': {
|
|
75
|
+
readonly 'pg/time-string@1': {
|
|
76
|
+
readonly output: 'pg/interval@1';
|
|
77
|
+
readonly nullable: true;
|
|
78
|
+
};
|
|
79
|
+
readonly 'pg/time-temporal@1': {
|
|
77
80
|
readonly output: 'pg/interval@1';
|
|
78
81
|
readonly nullable: true;
|
|
79
82
|
};
|
|
@@ -155,8 +158,12 @@ type AggregateTypes = {
|
|
|
155
158
|
readonly output: 'pg/char@1';
|
|
156
159
|
readonly nullable: true;
|
|
157
160
|
};
|
|
158
|
-
readonly 'pg/date@1': {
|
|
159
|
-
readonly output: 'pg/date@1';
|
|
161
|
+
readonly 'pg/date-string@1': {
|
|
162
|
+
readonly output: 'pg/date-string@1';
|
|
163
|
+
readonly nullable: true;
|
|
164
|
+
};
|
|
165
|
+
readonly 'pg/date-temporal@1': {
|
|
166
|
+
readonly output: 'pg/date-temporal@1';
|
|
160
167
|
readonly nullable: true;
|
|
161
168
|
};
|
|
162
169
|
readonly 'pg/enum@1': {
|
|
@@ -215,16 +222,28 @@ type AggregateTypes = {
|
|
|
215
222
|
readonly output: 'pg/text@1';
|
|
216
223
|
readonly nullable: true;
|
|
217
224
|
};
|
|
218
|
-
readonly 'pg/time@1': {
|
|
219
|
-
readonly output: 'pg/time@1';
|
|
225
|
+
readonly 'pg/time-string@1': {
|
|
226
|
+
readonly output: 'pg/time-string@1';
|
|
227
|
+
readonly nullable: true;
|
|
228
|
+
};
|
|
229
|
+
readonly 'pg/time-temporal@1': {
|
|
230
|
+
readonly output: 'pg/time-temporal@1';
|
|
220
231
|
readonly nullable: true;
|
|
221
232
|
};
|
|
222
|
-
readonly 'pg/timestamp@1': {
|
|
223
|
-
readonly output: 'pg/timestamp@1';
|
|
233
|
+
readonly 'pg/timestamp-string@1': {
|
|
234
|
+
readonly output: 'pg/timestamp-string@1';
|
|
224
235
|
readonly nullable: true;
|
|
225
236
|
};
|
|
226
|
-
readonly 'pg/
|
|
227
|
-
readonly output: 'pg/
|
|
237
|
+
readonly 'pg/timestamp-temporal@1': {
|
|
238
|
+
readonly output: 'pg/timestamp-temporal@1';
|
|
239
|
+
readonly nullable: true;
|
|
240
|
+
};
|
|
241
|
+
readonly 'pg/timestamptz-string@1': {
|
|
242
|
+
readonly output: 'pg/timestamptz-string@1';
|
|
243
|
+
readonly nullable: true;
|
|
244
|
+
};
|
|
245
|
+
readonly 'pg/timestamptz-temporal@1': {
|
|
246
|
+
readonly output: 'pg/timestamptz-temporal@1';
|
|
228
247
|
readonly nullable: true;
|
|
229
248
|
};
|
|
230
249
|
readonly 'pg/timetz@1': {
|
|
@@ -255,10 +274,6 @@ type AggregateTypes = {
|
|
|
255
274
|
readonly output: 'sql/text@1';
|
|
256
275
|
readonly nullable: true;
|
|
257
276
|
};
|
|
258
|
-
readonly 'sql/timestamp@1': {
|
|
259
|
-
readonly output: 'sql/timestamp@1';
|
|
260
|
-
readonly nullable: true;
|
|
261
|
-
};
|
|
262
277
|
readonly 'sql/varchar@1': {
|
|
263
278
|
readonly output: 'pg/text@1';
|
|
264
279
|
readonly nullable: true;
|
|
@@ -271,8 +286,12 @@ type AggregateTypes = {
|
|
|
271
286
|
readonly output: 'pg/char@1';
|
|
272
287
|
readonly nullable: true;
|
|
273
288
|
};
|
|
274
|
-
readonly 'pg/date@1': {
|
|
275
|
-
readonly output: 'pg/date@1';
|
|
289
|
+
readonly 'pg/date-string@1': {
|
|
290
|
+
readonly output: 'pg/date-string@1';
|
|
291
|
+
readonly nullable: true;
|
|
292
|
+
};
|
|
293
|
+
readonly 'pg/date-temporal@1': {
|
|
294
|
+
readonly output: 'pg/date-temporal@1';
|
|
276
295
|
readonly nullable: true;
|
|
277
296
|
};
|
|
278
297
|
readonly 'pg/enum@1': {
|
|
@@ -331,16 +350,28 @@ type AggregateTypes = {
|
|
|
331
350
|
readonly output: 'pg/text@1';
|
|
332
351
|
readonly nullable: true;
|
|
333
352
|
};
|
|
334
|
-
readonly 'pg/time@1': {
|
|
335
|
-
readonly output: 'pg/time@1';
|
|
353
|
+
readonly 'pg/time-string@1': {
|
|
354
|
+
readonly output: 'pg/time-string@1';
|
|
355
|
+
readonly nullable: true;
|
|
356
|
+
};
|
|
357
|
+
readonly 'pg/time-temporal@1': {
|
|
358
|
+
readonly output: 'pg/time-temporal@1';
|
|
336
359
|
readonly nullable: true;
|
|
337
360
|
};
|
|
338
|
-
readonly 'pg/timestamp@1': {
|
|
339
|
-
readonly output: 'pg/timestamp@1';
|
|
361
|
+
readonly 'pg/timestamp-string@1': {
|
|
362
|
+
readonly output: 'pg/timestamp-string@1';
|
|
340
363
|
readonly nullable: true;
|
|
341
364
|
};
|
|
342
|
-
readonly 'pg/
|
|
343
|
-
readonly output: 'pg/
|
|
365
|
+
readonly 'pg/timestamp-temporal@1': {
|
|
366
|
+
readonly output: 'pg/timestamp-temporal@1';
|
|
367
|
+
readonly nullable: true;
|
|
368
|
+
};
|
|
369
|
+
readonly 'pg/timestamptz-string@1': {
|
|
370
|
+
readonly output: 'pg/timestamptz-string@1';
|
|
371
|
+
readonly nullable: true;
|
|
372
|
+
};
|
|
373
|
+
readonly 'pg/timestamptz-temporal@1': {
|
|
374
|
+
readonly output: 'pg/timestamptz-temporal@1';
|
|
344
375
|
readonly nullable: true;
|
|
345
376
|
};
|
|
346
377
|
readonly 'pg/timetz@1': {
|
|
@@ -371,10 +402,6 @@ type AggregateTypes = {
|
|
|
371
402
|
readonly output: 'sql/text@1';
|
|
372
403
|
readonly nullable: true;
|
|
373
404
|
};
|
|
374
|
-
readonly 'sql/timestamp@1': {
|
|
375
|
-
readonly output: 'sql/timestamp@1';
|
|
376
|
-
readonly nullable: true;
|
|
377
|
-
};
|
|
378
405
|
readonly 'sql/varchar@1': {
|
|
379
406
|
readonly output: 'pg/text@1';
|
|
380
407
|
readonly nullable: true;
|
|
@@ -423,7 +450,11 @@ type AggregateTypes = {
|
|
|
423
450
|
readonly output: 'pg/numeric@1';
|
|
424
451
|
readonly nullable: true;
|
|
425
452
|
};
|
|
426
|
-
readonly 'pg/time@1': {
|
|
453
|
+
readonly 'pg/time-string@1': {
|
|
454
|
+
readonly output: 'pg/interval@1';
|
|
455
|
+
readonly nullable: true;
|
|
456
|
+
};
|
|
457
|
+
readonly 'pg/time-temporal@1': {
|
|
427
458
|
readonly output: 'pg/interval@1';
|
|
428
459
|
readonly nullable: true;
|
|
429
460
|
};
|
|
@@ -481,7 +512,7 @@ type FieldOutputTypes = {
|
|
|
481
512
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
482
513
|
readonly instanceId: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
483
514
|
readonly payload: CodecTypes$1['pg/json@1']['output'] | null;
|
|
484
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
515
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
485
516
|
readonly ipAddress: Varchar<64>;
|
|
486
517
|
};
|
|
487
518
|
readonly AuthIdentity: {
|
|
@@ -490,20 +521,20 @@ type FieldOutputTypes = {
|
|
|
490
521
|
readonly userId: CodecTypes$1['pg/uuid@1']['output'];
|
|
491
522
|
readonly identityData: CodecTypes$1['pg/jsonb@1']['output'];
|
|
492
523
|
readonly provider: CodecTypes$1['pg/text@1']['output'];
|
|
493
|
-
readonly lastSignInAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
494
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
495
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
524
|
+
readonly lastSignInAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
525
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
526
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
496
527
|
readonly email: CodecTypes$1['pg/text@1']['output'] | null;
|
|
497
528
|
};
|
|
498
529
|
readonly AuthSession: {
|
|
499
530
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
500
531
|
readonly userId: CodecTypes$1['pg/uuid@1']['output'];
|
|
501
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
502
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
532
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
533
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
503
534
|
readonly factorId: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
504
535
|
readonly aal: 'aal1' | 'aal2' | 'aal3' | null;
|
|
505
|
-
readonly notAfter: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
506
|
-
readonly refreshedAt: CodecTypes$1['pg/timestamp@1']['output'] | null;
|
|
536
|
+
readonly notAfter: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
537
|
+
readonly refreshedAt: CodecTypes$1['pg/timestamp-temporal@1']['output'] | null;
|
|
507
538
|
readonly userAgent: CodecTypes$1['pg/text@1']['output'] | null;
|
|
508
539
|
readonly ip: CodecTypes$1['pg/inet@1']['output'] | null;
|
|
509
540
|
readonly tag: CodecTypes$1['pg/text@1']['output'] | null;
|
|
@@ -519,34 +550,34 @@ type FieldOutputTypes = {
|
|
|
519
550
|
readonly role: Varchar<255> | null;
|
|
520
551
|
readonly email: Varchar<255> | null;
|
|
521
552
|
readonly encryptedPassword: Varchar<255> | null;
|
|
522
|
-
readonly emailConfirmedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
523
|
-
readonly invitedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
553
|
+
readonly emailConfirmedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
554
|
+
readonly invitedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
524
555
|
readonly confirmationToken: Varchar<255> | null;
|
|
525
|
-
readonly confirmationSentAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
556
|
+
readonly confirmationSentAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
526
557
|
readonly recoveryToken: Varchar<255> | null;
|
|
527
|
-
readonly recoverySentAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
558
|
+
readonly recoverySentAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
528
559
|
readonly emailChangeTokenNew: Varchar<255> | null;
|
|
529
560
|
readonly emailChange: Varchar<255> | null;
|
|
530
|
-
readonly emailChangeSentAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
531
|
-
readonly lastSignInAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
561
|
+
readonly emailChangeSentAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
562
|
+
readonly lastSignInAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
532
563
|
readonly rawAppMetaData: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
533
564
|
readonly rawUserMetaData: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
534
565
|
readonly isSuperAdmin: CodecTypes$1['pg/bool@1']['output'] | null;
|
|
535
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
536
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
566
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
567
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
537
568
|
readonly phone: CodecTypes$1['pg/text@1']['output'] | null;
|
|
538
|
-
readonly phoneConfirmedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
569
|
+
readonly phoneConfirmedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
539
570
|
readonly phoneChange: CodecTypes$1['pg/text@1']['output'] | null;
|
|
540
571
|
readonly phoneChangeToken: Varchar<255> | null;
|
|
541
|
-
readonly phoneChangeSentAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
542
|
-
readonly confirmedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
572
|
+
readonly phoneChangeSentAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
573
|
+
readonly confirmedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
543
574
|
readonly emailChangeTokenCurrent: Varchar<255> | null;
|
|
544
575
|
readonly emailChangeConfirmStatus: CodecTypes$1['pg/int2@1']['output'] | null;
|
|
545
|
-
readonly bannedUntil: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
576
|
+
readonly bannedUntil: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
546
577
|
readonly reauthenticationToken: Varchar<255> | null;
|
|
547
|
-
readonly reauthenticationSentAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
578
|
+
readonly reauthenticationSentAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
548
579
|
readonly isSsoUser: CodecTypes$1['pg/bool@1']['output'];
|
|
549
|
-
readonly deletedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
580
|
+
readonly deletedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
550
581
|
readonly isAnonymous: CodecTypes$1['pg/bool@1']['output'];
|
|
551
582
|
};
|
|
552
583
|
readonly CustomOauthProviders: {
|
|
@@ -567,13 +598,13 @@ type FieldOutputTypes = {
|
|
|
567
598
|
readonly discoveryUrl: CodecTypes$1['pg/text@1']['output'] | null;
|
|
568
599
|
readonly skipNonceCheck: CodecTypes$1['pg/bool@1']['output'];
|
|
569
600
|
readonly cachedDiscovery: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
570
|
-
readonly discoveryCachedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
601
|
+
readonly discoveryCachedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
571
602
|
readonly authorizationUrl: CodecTypes$1['pg/text@1']['output'] | null;
|
|
572
603
|
readonly tokenUrl: CodecTypes$1['pg/text@1']['output'] | null;
|
|
573
604
|
readonly userinfoUrl: CodecTypes$1['pg/text@1']['output'] | null;
|
|
574
605
|
readonly jwksUri: CodecTypes$1['pg/text@1']['output'] | null;
|
|
575
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
576
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
606
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
607
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
577
608
|
};
|
|
578
609
|
readonly FlowState: {
|
|
579
610
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
@@ -584,10 +615,10 @@ type FieldOutputTypes = {
|
|
|
584
615
|
readonly providerType: CodecTypes$1['pg/text@1']['output'];
|
|
585
616
|
readonly providerAccessToken: CodecTypes$1['pg/text@1']['output'] | null;
|
|
586
617
|
readonly providerRefreshToken: CodecTypes$1['pg/text@1']['output'] | null;
|
|
587
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
588
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
618
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
619
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
589
620
|
readonly authenticationMethod: CodecTypes$1['pg/text@1']['output'];
|
|
590
|
-
readonly authCodeIssuedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
621
|
+
readonly authCodeIssuedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
591
622
|
readonly inviteToken: CodecTypes$1['pg/text@1']['output'] | null;
|
|
592
623
|
readonly referrer: CodecTypes$1['pg/text@1']['output'] | null;
|
|
593
624
|
readonly oauthClientStateId: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
@@ -598,21 +629,21 @@ type FieldOutputTypes = {
|
|
|
598
629
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
599
630
|
readonly uuid: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
600
631
|
readonly rawBaseConfig: CodecTypes$1['pg/text@1']['output'] | null;
|
|
601
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
602
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
632
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
633
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
603
634
|
};
|
|
604
635
|
readonly MfaAmrClaims: {
|
|
605
636
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
606
637
|
readonly sessionId: CodecTypes$1['pg/uuid@1']['output'];
|
|
607
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
608
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
638
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
639
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
609
640
|
readonly authenticationMethod: CodecTypes$1['pg/text@1']['output'];
|
|
610
641
|
};
|
|
611
642
|
readonly MfaChallenges: {
|
|
612
643
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
613
644
|
readonly factorId: CodecTypes$1['pg/uuid@1']['output'];
|
|
614
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
615
|
-
readonly verifiedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
645
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
646
|
+
readonly verifiedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
616
647
|
readonly ipAddress: CodecTypes$1['pg/inet@1']['output'];
|
|
617
648
|
readonly otpCode: CodecTypes$1['pg/text@1']['output'] | null;
|
|
618
649
|
readonly webAuthnSessionData: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
@@ -623,11 +654,11 @@ type FieldOutputTypes = {
|
|
|
623
654
|
readonly friendlyName: CodecTypes$1['pg/text@1']['output'] | null;
|
|
624
655
|
readonly factorType: 'totp' | 'webauthn' | 'phone';
|
|
625
656
|
readonly status: 'unverified' | 'verified';
|
|
626
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
627
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
657
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
658
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
628
659
|
readonly secret: CodecTypes$1['pg/text@1']['output'] | null;
|
|
629
660
|
readonly phone: CodecTypes$1['pg/text@1']['output'] | null;
|
|
630
|
-
readonly lastChallengedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
661
|
+
readonly lastChallengedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
631
662
|
readonly webAuthnCredential: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
632
663
|
readonly webAuthnAaguid: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
633
664
|
readonly lastWebauthnChallengeData: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
@@ -646,9 +677,9 @@ type FieldOutputTypes = {
|
|
|
646
677
|
readonly responseType: 'code';
|
|
647
678
|
readonly status: 'pending' | 'approved' | 'denied' | 'expired';
|
|
648
679
|
readonly authorizationCode: CodecTypes$1['pg/text@1']['output'] | null;
|
|
649
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
650
|
-
readonly expiresAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
651
|
-
readonly approvedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
680
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
681
|
+
readonly expiresAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
682
|
+
readonly approvedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
652
683
|
readonly nonce: CodecTypes$1['pg/text@1']['output'] | null;
|
|
653
684
|
};
|
|
654
685
|
readonly OauthClients: {
|
|
@@ -660,9 +691,9 @@ type FieldOutputTypes = {
|
|
|
660
691
|
readonly clientName: CodecTypes$1['pg/text@1']['output'] | null;
|
|
661
692
|
readonly clientUri: CodecTypes$1['pg/text@1']['output'] | null;
|
|
662
693
|
readonly logoUri: CodecTypes$1['pg/text@1']['output'] | null;
|
|
663
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
664
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
665
|
-
readonly deletedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
694
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
695
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
696
|
+
readonly deletedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
666
697
|
readonly clientType: 'public' | 'confidential';
|
|
667
698
|
readonly tokenEndpointAuthMethod: CodecTypes$1['pg/text@1']['output'];
|
|
668
699
|
};
|
|
@@ -670,15 +701,15 @@ type FieldOutputTypes = {
|
|
|
670
701
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
671
702
|
readonly providerType: CodecTypes$1['pg/text@1']['output'];
|
|
672
703
|
readonly codeVerifier: CodecTypes$1['pg/text@1']['output'] | null;
|
|
673
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
704
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
674
705
|
};
|
|
675
706
|
readonly OauthConsents: {
|
|
676
707
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
677
708
|
readonly userId: CodecTypes$1['pg/uuid@1']['output'];
|
|
678
709
|
readonly clientId: CodecTypes$1['pg/uuid@1']['output'];
|
|
679
710
|
readonly scopes: CodecTypes$1['pg/text@1']['output'];
|
|
680
|
-
readonly grantedAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
681
|
-
readonly revokedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
711
|
+
readonly grantedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
712
|
+
readonly revokedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
682
713
|
};
|
|
683
714
|
readonly OneTimeTokens: {
|
|
684
715
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
@@ -686,8 +717,8 @@ type FieldOutputTypes = {
|
|
|
686
717
|
readonly tokenType: 'confirmation_token' | 'reauthentication_token' | 'recovery_token' | 'email_change_token_new' | 'email_change_token_current' | 'phone_change_token';
|
|
687
718
|
readonly tokenHash: CodecTypes$1['pg/text@1']['output'];
|
|
688
719
|
readonly relatesTo: CodecTypes$1['pg/text@1']['output'];
|
|
689
|
-
readonly createdAt: CodecTypes$1['pg/timestamp@1']['output'];
|
|
690
|
-
readonly updatedAt: CodecTypes$1['pg/timestamp@1']['output'];
|
|
720
|
+
readonly createdAt: CodecTypes$1['pg/timestamp-temporal@1']['output'];
|
|
721
|
+
readonly updatedAt: CodecTypes$1['pg/timestamp-temporal@1']['output'];
|
|
691
722
|
};
|
|
692
723
|
readonly RefreshTokens: {
|
|
693
724
|
readonly id: CodecTypes$1['pg/int8@1']['output'];
|
|
@@ -695,8 +726,8 @@ type FieldOutputTypes = {
|
|
|
695
726
|
readonly token: Varchar<255> | null;
|
|
696
727
|
readonly userId: Varchar<255> | null;
|
|
697
728
|
readonly revoked: CodecTypes$1['pg/bool@1']['output'] | null;
|
|
698
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
699
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
729
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
730
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
700
731
|
readonly parent: Varchar<255> | null;
|
|
701
732
|
readonly sessionId: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
702
733
|
};
|
|
@@ -707,8 +738,8 @@ type FieldOutputTypes = {
|
|
|
707
738
|
readonly metadataXml: CodecTypes$1['pg/text@1']['output'];
|
|
708
739
|
readonly metadataUrl: CodecTypes$1['pg/text@1']['output'] | null;
|
|
709
740
|
readonly attributeMapping: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
710
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
711
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
741
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
742
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
712
743
|
readonly nameIdFormat: CodecTypes$1['pg/text@1']['output'] | null;
|
|
713
744
|
};
|
|
714
745
|
readonly SamlRelayStates: {
|
|
@@ -717,8 +748,8 @@ type FieldOutputTypes = {
|
|
|
717
748
|
readonly requestId: CodecTypes$1['pg/text@1']['output'];
|
|
718
749
|
readonly forEmail: CodecTypes$1['pg/text@1']['output'] | null;
|
|
719
750
|
readonly redirectTo: CodecTypes$1['pg/text@1']['output'] | null;
|
|
720
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
721
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
751
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
752
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
722
753
|
readonly flowStateId: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
723
754
|
};
|
|
724
755
|
readonly SchemaMigrations: {
|
|
@@ -728,14 +759,14 @@ type FieldOutputTypes = {
|
|
|
728
759
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
729
760
|
readonly ssoProviderId: CodecTypes$1['pg/uuid@1']['output'];
|
|
730
761
|
readonly domain: CodecTypes$1['pg/text@1']['output'];
|
|
731
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
732
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
762
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
763
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
733
764
|
};
|
|
734
765
|
readonly SsoProviders: {
|
|
735
766
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
736
767
|
readonly resourceId: CodecTypes$1['pg/text@1']['output'] | null;
|
|
737
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
738
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
768
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
769
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
739
770
|
readonly disabled: CodecTypes$1['pg/bool@1']['output'] | null;
|
|
740
771
|
};
|
|
741
772
|
readonly WebauthnChallenges: {
|
|
@@ -743,8 +774,8 @@ type FieldOutputTypes = {
|
|
|
743
774
|
readonly userId: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
744
775
|
readonly challengeType: CodecTypes$1['pg/text@1']['output'];
|
|
745
776
|
readonly sessionData: CodecTypes$1['pg/jsonb@1']['output'];
|
|
746
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
747
|
-
readonly expiresAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
777
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
778
|
+
readonly expiresAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
748
779
|
};
|
|
749
780
|
readonly WebauthnCredentials: {
|
|
750
781
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
@@ -758,9 +789,9 @@ type FieldOutputTypes = {
|
|
|
758
789
|
readonly backupEligible: CodecTypes$1['pg/bool@1']['output'];
|
|
759
790
|
readonly backedUp: CodecTypes$1['pg/bool@1']['output'];
|
|
760
791
|
readonly friendlyName: CodecTypes$1['pg/text@1']['output'];
|
|
761
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
762
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
763
|
-
readonly lastUsedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
792
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
793
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
794
|
+
readonly lastUsedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
764
795
|
};
|
|
765
796
|
};
|
|
766
797
|
readonly storage: {
|
|
@@ -769,22 +800,22 @@ type FieldOutputTypes = {
|
|
|
769
800
|
readonly name: CodecTypes$1['pg/text@1']['output'];
|
|
770
801
|
readonly _type: 'STANDARD' | 'ANALYTICS' | 'VECTOR';
|
|
771
802
|
readonly format: CodecTypes$1['pg/text@1']['output'];
|
|
772
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
773
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
774
|
-
readonly deletedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
803
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
804
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
805
|
+
readonly deletedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
775
806
|
};
|
|
776
807
|
readonly BucketsVectors: {
|
|
777
808
|
readonly id: CodecTypes$1['pg/text@1']['output'];
|
|
778
809
|
readonly _type: 'STANDARD' | 'ANALYTICS' | 'VECTOR';
|
|
779
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
780
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
810
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
811
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
781
812
|
};
|
|
782
813
|
readonly IcebergNamespaces: {
|
|
783
814
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
784
815
|
readonly bucketName: CodecTypes$1['pg/text@1']['output'];
|
|
785
816
|
readonly name: CodecTypes$1['pg/text@1']['output'];
|
|
786
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
787
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
817
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
818
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
788
819
|
readonly metadata: CodecTypes$1['pg/jsonb@1']['output'];
|
|
789
820
|
readonly catalogId: CodecTypes$1['pg/uuid@1']['output'];
|
|
790
821
|
};
|
|
@@ -794,8 +825,8 @@ type FieldOutputTypes = {
|
|
|
794
825
|
readonly bucketName: CodecTypes$1['pg/text@1']['output'];
|
|
795
826
|
readonly name: CodecTypes$1['pg/text@1']['output'];
|
|
796
827
|
readonly location: CodecTypes$1['pg/text@1']['output'];
|
|
797
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
798
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
828
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
829
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
799
830
|
readonly remoteTableId: CodecTypes$1['pg/text@1']['output'] | null;
|
|
800
831
|
readonly shardKey: CodecTypes$1['pg/text@1']['output'] | null;
|
|
801
832
|
readonly shardId: CodecTypes$1['pg/text@1']['output'] | null;
|
|
@@ -805,7 +836,7 @@ type FieldOutputTypes = {
|
|
|
805
836
|
readonly id: CodecTypes$1['pg/int4@1']['output'];
|
|
806
837
|
readonly name: Varchar<100>;
|
|
807
838
|
readonly hash: Varchar<40>;
|
|
808
|
-
readonly executedAt: CodecTypes$1['pg/timestamp@1']['output'] | null;
|
|
839
|
+
readonly executedAt: CodecTypes$1['pg/timestamp-temporal@1']['output'] | null;
|
|
809
840
|
};
|
|
810
841
|
readonly S3MultipartUploads: {
|
|
811
842
|
readonly id: CodecTypes$1['pg/text@1']['output'];
|
|
@@ -815,7 +846,7 @@ type FieldOutputTypes = {
|
|
|
815
846
|
readonly key: CodecTypes$1['pg/text@1']['output'];
|
|
816
847
|
readonly version: CodecTypes$1['pg/text@1']['output'];
|
|
817
848
|
readonly ownerId: CodecTypes$1['pg/text@1']['output'] | null;
|
|
818
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
849
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
819
850
|
readonly userMetadata: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
820
851
|
readonly metadata: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
821
852
|
};
|
|
@@ -829,14 +860,14 @@ type FieldOutputTypes = {
|
|
|
829
860
|
readonly etag: CodecTypes$1['pg/text@1']['output'];
|
|
830
861
|
readonly ownerId: CodecTypes$1['pg/text@1']['output'] | null;
|
|
831
862
|
readonly version: CodecTypes$1['pg/text@1']['output'];
|
|
832
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
863
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
833
864
|
};
|
|
834
865
|
readonly StorageBucket: {
|
|
835
866
|
readonly id: CodecTypes$1['pg/text@1']['output'];
|
|
836
867
|
readonly name: CodecTypes$1['pg/text@1']['output'];
|
|
837
868
|
readonly owner: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
838
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
839
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
869
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
870
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
840
871
|
readonly public: CodecTypes$1['pg/bool@1']['output'] | null;
|
|
841
872
|
readonly avifAutodetection: CodecTypes$1['pg/bool@1']['output'] | null;
|
|
842
873
|
readonly fileSizeLimit: CodecTypes$1['pg/int8@1']['output'] | null;
|
|
@@ -848,9 +879,9 @@ type FieldOutputTypes = {
|
|
|
848
879
|
readonly bucketId: CodecTypes$1['pg/text@1']['output'] | null;
|
|
849
880
|
readonly name: CodecTypes$1['pg/text@1']['output'] | null;
|
|
850
881
|
readonly owner: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
851
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
852
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
853
|
-
readonly lastAccessedAt: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
882
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
883
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
884
|
+
readonly lastAccessedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
854
885
|
readonly metadata: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
855
886
|
readonly version: CodecTypes$1['pg/text@1']['output'] | null;
|
|
856
887
|
readonly ownerId: CodecTypes$1['pg/text@1']['output'] | null;
|
|
@@ -864,8 +895,8 @@ type FieldOutputTypes = {
|
|
|
864
895
|
readonly dimension: CodecTypes$1['pg/int4@1']['output'];
|
|
865
896
|
readonly distanceMetric: CodecTypes$1['pg/text@1']['output'];
|
|
866
897
|
readonly metadataConfiguration: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
867
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
868
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
898
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
899
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
869
900
|
};
|
|
870
901
|
};
|
|
871
902
|
};
|
|
@@ -875,7 +906,7 @@ type FieldInputTypes = {
|
|
|
875
906
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
876
907
|
readonly instanceId: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
877
908
|
readonly payload: CodecTypes$1['pg/json@1']['input'] | null;
|
|
878
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
909
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
879
910
|
readonly ipAddress: CodecTypes$1['sql/varchar@1']['input'];
|
|
880
911
|
};
|
|
881
912
|
readonly AuthIdentity: {
|
|
@@ -884,20 +915,20 @@ type FieldInputTypes = {
|
|
|
884
915
|
readonly userId: CodecTypes$1['pg/uuid@1']['input'];
|
|
885
916
|
readonly identityData: CodecTypes$1['pg/jsonb@1']['input'];
|
|
886
917
|
readonly provider: CodecTypes$1['pg/text@1']['input'];
|
|
887
|
-
readonly lastSignInAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
888
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
889
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
918
|
+
readonly lastSignInAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
919
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
920
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
890
921
|
readonly email: CodecTypes$1['pg/text@1']['input'] | null;
|
|
891
922
|
};
|
|
892
923
|
readonly AuthSession: {
|
|
893
924
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
894
925
|
readonly userId: CodecTypes$1['pg/uuid@1']['input'];
|
|
895
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
896
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
926
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
927
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
897
928
|
readonly factorId: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
898
929
|
readonly aal: 'aal1' | 'aal2' | 'aal3' | null;
|
|
899
|
-
readonly notAfter: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
900
|
-
readonly refreshedAt: CodecTypes$1['pg/timestamp@1']['input'] | null;
|
|
930
|
+
readonly notAfter: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
931
|
+
readonly refreshedAt: CodecTypes$1['pg/timestamp-temporal@1']['input'] | null;
|
|
901
932
|
readonly userAgent: CodecTypes$1['pg/text@1']['input'] | null;
|
|
902
933
|
readonly ip: CodecTypes$1['pg/inet@1']['input'] | null;
|
|
903
934
|
readonly tag: CodecTypes$1['pg/text@1']['input'] | null;
|
|
@@ -913,34 +944,34 @@ type FieldInputTypes = {
|
|
|
913
944
|
readonly role: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
914
945
|
readonly email: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
915
946
|
readonly encryptedPassword: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
916
|
-
readonly emailConfirmedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
917
|
-
readonly invitedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
947
|
+
readonly emailConfirmedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
948
|
+
readonly invitedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
918
949
|
readonly confirmationToken: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
919
|
-
readonly confirmationSentAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
950
|
+
readonly confirmationSentAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
920
951
|
readonly recoveryToken: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
921
|
-
readonly recoverySentAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
952
|
+
readonly recoverySentAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
922
953
|
readonly emailChangeTokenNew: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
923
954
|
readonly emailChange: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
924
|
-
readonly emailChangeSentAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
925
|
-
readonly lastSignInAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
955
|
+
readonly emailChangeSentAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
956
|
+
readonly lastSignInAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
926
957
|
readonly rawAppMetaData: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
927
958
|
readonly rawUserMetaData: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
928
959
|
readonly isSuperAdmin: CodecTypes$1['pg/bool@1']['input'] | null;
|
|
929
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
930
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
960
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
961
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
931
962
|
readonly phone: CodecTypes$1['pg/text@1']['input'] | null;
|
|
932
|
-
readonly phoneConfirmedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
963
|
+
readonly phoneConfirmedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
933
964
|
readonly phoneChange: CodecTypes$1['pg/text@1']['input'] | null;
|
|
934
965
|
readonly phoneChangeToken: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
935
|
-
readonly phoneChangeSentAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
936
|
-
readonly confirmedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
966
|
+
readonly phoneChangeSentAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
967
|
+
readonly confirmedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
937
968
|
readonly emailChangeTokenCurrent: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
938
969
|
readonly emailChangeConfirmStatus: CodecTypes$1['pg/int2@1']['input'] | null;
|
|
939
|
-
readonly bannedUntil: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
970
|
+
readonly bannedUntil: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
940
971
|
readonly reauthenticationToken: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
941
|
-
readonly reauthenticationSentAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
972
|
+
readonly reauthenticationSentAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
942
973
|
readonly isSsoUser: CodecTypes$1['pg/bool@1']['input'];
|
|
943
|
-
readonly deletedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
974
|
+
readonly deletedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
944
975
|
readonly isAnonymous: CodecTypes$1['pg/bool@1']['input'];
|
|
945
976
|
};
|
|
946
977
|
readonly CustomOauthProviders: {
|
|
@@ -961,13 +992,13 @@ type FieldInputTypes = {
|
|
|
961
992
|
readonly discoveryUrl: CodecTypes$1['pg/text@1']['input'] | null;
|
|
962
993
|
readonly skipNonceCheck: CodecTypes$1['pg/bool@1']['input'];
|
|
963
994
|
readonly cachedDiscovery: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
964
|
-
readonly discoveryCachedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
995
|
+
readonly discoveryCachedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
965
996
|
readonly authorizationUrl: CodecTypes$1['pg/text@1']['input'] | null;
|
|
966
997
|
readonly tokenUrl: CodecTypes$1['pg/text@1']['input'] | null;
|
|
967
998
|
readonly userinfoUrl: CodecTypes$1['pg/text@1']['input'] | null;
|
|
968
999
|
readonly jwksUri: CodecTypes$1['pg/text@1']['input'] | null;
|
|
969
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
970
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1000
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1001
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
971
1002
|
};
|
|
972
1003
|
readonly FlowState: {
|
|
973
1004
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
@@ -978,10 +1009,10 @@ type FieldInputTypes = {
|
|
|
978
1009
|
readonly providerType: CodecTypes$1['pg/text@1']['input'];
|
|
979
1010
|
readonly providerAccessToken: CodecTypes$1['pg/text@1']['input'] | null;
|
|
980
1011
|
readonly providerRefreshToken: CodecTypes$1['pg/text@1']['input'] | null;
|
|
981
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
982
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1012
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1013
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
983
1014
|
readonly authenticationMethod: CodecTypes$1['pg/text@1']['input'];
|
|
984
|
-
readonly authCodeIssuedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1015
|
+
readonly authCodeIssuedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
985
1016
|
readonly inviteToken: CodecTypes$1['pg/text@1']['input'] | null;
|
|
986
1017
|
readonly referrer: CodecTypes$1['pg/text@1']['input'] | null;
|
|
987
1018
|
readonly oauthClientStateId: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
@@ -992,21 +1023,21 @@ type FieldInputTypes = {
|
|
|
992
1023
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
993
1024
|
readonly uuid: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
994
1025
|
readonly rawBaseConfig: CodecTypes$1['pg/text@1']['input'] | null;
|
|
995
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
996
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1026
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1027
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
997
1028
|
};
|
|
998
1029
|
readonly MfaAmrClaims: {
|
|
999
1030
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1000
1031
|
readonly sessionId: CodecTypes$1['pg/uuid@1']['input'];
|
|
1001
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1002
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1032
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1033
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1003
1034
|
readonly authenticationMethod: CodecTypes$1['pg/text@1']['input'];
|
|
1004
1035
|
};
|
|
1005
1036
|
readonly MfaChallenges: {
|
|
1006
1037
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1007
1038
|
readonly factorId: CodecTypes$1['pg/uuid@1']['input'];
|
|
1008
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1009
|
-
readonly verifiedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1039
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1040
|
+
readonly verifiedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1010
1041
|
readonly ipAddress: CodecTypes$1['pg/inet@1']['input'];
|
|
1011
1042
|
readonly otpCode: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1012
1043
|
readonly webAuthnSessionData: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
@@ -1017,11 +1048,11 @@ type FieldInputTypes = {
|
|
|
1017
1048
|
readonly friendlyName: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1018
1049
|
readonly factorType: 'totp' | 'webauthn' | 'phone';
|
|
1019
1050
|
readonly status: 'unverified' | 'verified';
|
|
1020
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1021
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1051
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1052
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1022
1053
|
readonly secret: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1023
1054
|
readonly phone: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1024
|
-
readonly lastChallengedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1055
|
+
readonly lastChallengedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1025
1056
|
readonly webAuthnCredential: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
1026
1057
|
readonly webAuthnAaguid: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1027
1058
|
readonly lastWebauthnChallengeData: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
@@ -1040,9 +1071,9 @@ type FieldInputTypes = {
|
|
|
1040
1071
|
readonly responseType: 'code';
|
|
1041
1072
|
readonly status: 'pending' | 'approved' | 'denied' | 'expired';
|
|
1042
1073
|
readonly authorizationCode: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1043
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1044
|
-
readonly expiresAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1045
|
-
readonly approvedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1074
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1075
|
+
readonly expiresAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1076
|
+
readonly approvedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1046
1077
|
readonly nonce: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1047
1078
|
};
|
|
1048
1079
|
readonly OauthClients: {
|
|
@@ -1054,9 +1085,9 @@ type FieldInputTypes = {
|
|
|
1054
1085
|
readonly clientName: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1055
1086
|
readonly clientUri: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1056
1087
|
readonly logoUri: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1057
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1058
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1059
|
-
readonly deletedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1088
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1089
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1090
|
+
readonly deletedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1060
1091
|
readonly clientType: 'public' | 'confidential';
|
|
1061
1092
|
readonly tokenEndpointAuthMethod: CodecTypes$1['pg/text@1']['input'];
|
|
1062
1093
|
};
|
|
@@ -1064,15 +1095,15 @@ type FieldInputTypes = {
|
|
|
1064
1095
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1065
1096
|
readonly providerType: CodecTypes$1['pg/text@1']['input'];
|
|
1066
1097
|
readonly codeVerifier: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1067
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1098
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1068
1099
|
};
|
|
1069
1100
|
readonly OauthConsents: {
|
|
1070
1101
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1071
1102
|
readonly userId: CodecTypes$1['pg/uuid@1']['input'];
|
|
1072
1103
|
readonly clientId: CodecTypes$1['pg/uuid@1']['input'];
|
|
1073
1104
|
readonly scopes: CodecTypes$1['pg/text@1']['input'];
|
|
1074
|
-
readonly grantedAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1075
|
-
readonly revokedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1105
|
+
readonly grantedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1106
|
+
readonly revokedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1076
1107
|
};
|
|
1077
1108
|
readonly OneTimeTokens: {
|
|
1078
1109
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
@@ -1080,8 +1111,8 @@ type FieldInputTypes = {
|
|
|
1080
1111
|
readonly tokenType: 'confirmation_token' | 'reauthentication_token' | 'recovery_token' | 'email_change_token_new' | 'email_change_token_current' | 'phone_change_token';
|
|
1081
1112
|
readonly tokenHash: CodecTypes$1['pg/text@1']['input'];
|
|
1082
1113
|
readonly relatesTo: CodecTypes$1['pg/text@1']['input'];
|
|
1083
|
-
readonly createdAt: CodecTypes$1['pg/timestamp@1']['input'];
|
|
1084
|
-
readonly updatedAt: CodecTypes$1['pg/timestamp@1']['input'];
|
|
1114
|
+
readonly createdAt: CodecTypes$1['pg/timestamp-temporal@1']['input'];
|
|
1115
|
+
readonly updatedAt: CodecTypes$1['pg/timestamp-temporal@1']['input'];
|
|
1085
1116
|
};
|
|
1086
1117
|
readonly RefreshTokens: {
|
|
1087
1118
|
readonly id: CodecTypes$1['pg/int8@1']['input'];
|
|
@@ -1089,8 +1120,8 @@ type FieldInputTypes = {
|
|
|
1089
1120
|
readonly token: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1090
1121
|
readonly userId: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1091
1122
|
readonly revoked: CodecTypes$1['pg/bool@1']['input'] | null;
|
|
1092
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1093
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1123
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1124
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1094
1125
|
readonly parent: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1095
1126
|
readonly sessionId: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1096
1127
|
};
|
|
@@ -1101,8 +1132,8 @@ type FieldInputTypes = {
|
|
|
1101
1132
|
readonly metadataXml: CodecTypes$1['pg/text@1']['input'];
|
|
1102
1133
|
readonly metadataUrl: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1103
1134
|
readonly attributeMapping: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
1104
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1105
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1135
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1136
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1106
1137
|
readonly nameIdFormat: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1107
1138
|
};
|
|
1108
1139
|
readonly SamlRelayStates: {
|
|
@@ -1111,8 +1142,8 @@ type FieldInputTypes = {
|
|
|
1111
1142
|
readonly requestId: CodecTypes$1['pg/text@1']['input'];
|
|
1112
1143
|
readonly forEmail: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1113
1144
|
readonly redirectTo: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1114
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1115
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1145
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1146
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1116
1147
|
readonly flowStateId: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1117
1148
|
};
|
|
1118
1149
|
readonly SchemaMigrations: {
|
|
@@ -1122,14 +1153,14 @@ type FieldInputTypes = {
|
|
|
1122
1153
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1123
1154
|
readonly ssoProviderId: CodecTypes$1['pg/uuid@1']['input'];
|
|
1124
1155
|
readonly domain: CodecTypes$1['pg/text@1']['input'];
|
|
1125
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1126
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1156
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1157
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1127
1158
|
};
|
|
1128
1159
|
readonly SsoProviders: {
|
|
1129
1160
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1130
1161
|
readonly resourceId: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1131
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1132
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1162
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1163
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1133
1164
|
readonly disabled: CodecTypes$1['pg/bool@1']['input'] | null;
|
|
1134
1165
|
};
|
|
1135
1166
|
readonly WebauthnChallenges: {
|
|
@@ -1137,8 +1168,8 @@ type FieldInputTypes = {
|
|
|
1137
1168
|
readonly userId: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1138
1169
|
readonly challengeType: CodecTypes$1['pg/text@1']['input'];
|
|
1139
1170
|
readonly sessionData: CodecTypes$1['pg/jsonb@1']['input'];
|
|
1140
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1141
|
-
readonly expiresAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1171
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1172
|
+
readonly expiresAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1142
1173
|
};
|
|
1143
1174
|
readonly WebauthnCredentials: {
|
|
1144
1175
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
@@ -1152,9 +1183,9 @@ type FieldInputTypes = {
|
|
|
1152
1183
|
readonly backupEligible: CodecTypes$1['pg/bool@1']['input'];
|
|
1153
1184
|
readonly backedUp: CodecTypes$1['pg/bool@1']['input'];
|
|
1154
1185
|
readonly friendlyName: CodecTypes$1['pg/text@1']['input'];
|
|
1155
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1156
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1157
|
-
readonly lastUsedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1186
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1187
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1188
|
+
readonly lastUsedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1158
1189
|
};
|
|
1159
1190
|
};
|
|
1160
1191
|
readonly storage: {
|
|
@@ -1163,22 +1194,22 @@ type FieldInputTypes = {
|
|
|
1163
1194
|
readonly name: CodecTypes$1['pg/text@1']['input'];
|
|
1164
1195
|
readonly _type: 'STANDARD' | 'ANALYTICS' | 'VECTOR';
|
|
1165
1196
|
readonly format: CodecTypes$1['pg/text@1']['input'];
|
|
1166
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1167
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1168
|
-
readonly deletedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1197
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1198
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1199
|
+
readonly deletedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1169
1200
|
};
|
|
1170
1201
|
readonly BucketsVectors: {
|
|
1171
1202
|
readonly id: CodecTypes$1['pg/text@1']['input'];
|
|
1172
1203
|
readonly _type: 'STANDARD' | 'ANALYTICS' | 'VECTOR';
|
|
1173
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1174
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1204
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1205
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1175
1206
|
};
|
|
1176
1207
|
readonly IcebergNamespaces: {
|
|
1177
1208
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1178
1209
|
readonly bucketName: CodecTypes$1['pg/text@1']['input'];
|
|
1179
1210
|
readonly name: CodecTypes$1['pg/text@1']['input'];
|
|
1180
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1181
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1211
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1212
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1182
1213
|
readonly metadata: CodecTypes$1['pg/jsonb@1']['input'];
|
|
1183
1214
|
readonly catalogId: CodecTypes$1['pg/uuid@1']['input'];
|
|
1184
1215
|
};
|
|
@@ -1188,8 +1219,8 @@ type FieldInputTypes = {
|
|
|
1188
1219
|
readonly bucketName: CodecTypes$1['pg/text@1']['input'];
|
|
1189
1220
|
readonly name: CodecTypes$1['pg/text@1']['input'];
|
|
1190
1221
|
readonly location: CodecTypes$1['pg/text@1']['input'];
|
|
1191
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1192
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1222
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1223
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1193
1224
|
readonly remoteTableId: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1194
1225
|
readonly shardKey: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1195
1226
|
readonly shardId: CodecTypes$1['pg/text@1']['input'] | null;
|
|
@@ -1199,7 +1230,7 @@ type FieldInputTypes = {
|
|
|
1199
1230
|
readonly id: CodecTypes$1['pg/int4@1']['input'];
|
|
1200
1231
|
readonly name: CodecTypes$1['sql/varchar@1']['input'];
|
|
1201
1232
|
readonly hash: CodecTypes$1['sql/varchar@1']['input'];
|
|
1202
|
-
readonly executedAt: CodecTypes$1['pg/timestamp@1']['input'] | null;
|
|
1233
|
+
readonly executedAt: CodecTypes$1['pg/timestamp-temporal@1']['input'] | null;
|
|
1203
1234
|
};
|
|
1204
1235
|
readonly S3MultipartUploads: {
|
|
1205
1236
|
readonly id: CodecTypes$1['pg/text@1']['input'];
|
|
@@ -1209,7 +1240,7 @@ type FieldInputTypes = {
|
|
|
1209
1240
|
readonly key: CodecTypes$1['pg/text@1']['input'];
|
|
1210
1241
|
readonly version: CodecTypes$1['pg/text@1']['input'];
|
|
1211
1242
|
readonly ownerId: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1212
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1243
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1213
1244
|
readonly userMetadata: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
1214
1245
|
readonly metadata: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
1215
1246
|
};
|
|
@@ -1223,14 +1254,14 @@ type FieldInputTypes = {
|
|
|
1223
1254
|
readonly etag: CodecTypes$1['pg/text@1']['input'];
|
|
1224
1255
|
readonly ownerId: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1225
1256
|
readonly version: CodecTypes$1['pg/text@1']['input'];
|
|
1226
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1257
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1227
1258
|
};
|
|
1228
1259
|
readonly StorageBucket: {
|
|
1229
1260
|
readonly id: CodecTypes$1['pg/text@1']['input'];
|
|
1230
1261
|
readonly name: CodecTypes$1['pg/text@1']['input'];
|
|
1231
1262
|
readonly owner: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1232
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1233
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1263
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1264
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1234
1265
|
readonly public: CodecTypes$1['pg/bool@1']['input'] | null;
|
|
1235
1266
|
readonly avifAutodetection: CodecTypes$1['pg/bool@1']['input'] | null;
|
|
1236
1267
|
readonly fileSizeLimit: CodecTypes$1['pg/int8@1']['input'] | null;
|
|
@@ -1242,9 +1273,9 @@ type FieldInputTypes = {
|
|
|
1242
1273
|
readonly bucketId: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1243
1274
|
readonly name: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1244
1275
|
readonly owner: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1245
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1246
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1247
|
-
readonly lastAccessedAt: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1276
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1277
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1278
|
+
readonly lastAccessedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1248
1279
|
readonly metadata: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
1249
1280
|
readonly version: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1250
1281
|
readonly ownerId: CodecTypes$1['pg/text@1']['input'] | null;
|
|
@@ -1258,8 +1289,8 @@ type FieldInputTypes = {
|
|
|
1258
1289
|
readonly dimension: CodecTypes$1['pg/int4@1']['input'];
|
|
1259
1290
|
readonly distanceMetric: CodecTypes$1['pg/text@1']['input'];
|
|
1260
1291
|
readonly metadataConfiguration: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
1261
|
-
readonly createdAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1262
|
-
readonly updatedAt: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1292
|
+
readonly createdAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1293
|
+
readonly updatedAt: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1263
1294
|
};
|
|
1264
1295
|
};
|
|
1265
1296
|
};
|
|
@@ -1267,7 +1298,7 @@ type StorageColumnTypes = {
|
|
|
1267
1298
|
readonly __unbound__: {};
|
|
1268
1299
|
readonly auth: {
|
|
1269
1300
|
readonly audit_log_entries: {
|
|
1270
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1301
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1271
1302
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1272
1303
|
readonly instance_id: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
1273
1304
|
readonly ip_address: Varchar<64>;
|
|
@@ -1281,8 +1312,8 @@ type StorageColumnTypes = {
|
|
|
1281
1312
|
readonly cached_discovery: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
1282
1313
|
readonly client_id: CodecTypes$1['pg/text@1']['output'];
|
|
1283
1314
|
readonly client_secret: CodecTypes$1['pg/text@1']['output'];
|
|
1284
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1285
|
-
readonly discovery_cached_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1315
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1316
|
+
readonly discovery_cached_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1286
1317
|
readonly discovery_url: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1287
1318
|
readonly email_optional: CodecTypes$1['pg/bool@1']['output'];
|
|
1288
1319
|
readonly enabled: CodecTypes$1['pg/bool@1']['output'];
|
|
@@ -1296,16 +1327,16 @@ type StorageColumnTypes = {
|
|
|
1296
1327
|
readonly scopes: ReadonlyArray<CodecTypes$1['pg/text@1']['output']>;
|
|
1297
1328
|
readonly skip_nonce_check: CodecTypes$1['pg/bool@1']['output'];
|
|
1298
1329
|
readonly token_url: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1299
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1330
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1300
1331
|
readonly userinfo_url: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1301
1332
|
};
|
|
1302
1333
|
readonly flow_state: {
|
|
1303
1334
|
readonly auth_code: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1304
|
-
readonly auth_code_issued_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1335
|
+
readonly auth_code_issued_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1305
1336
|
readonly authentication_method: CodecTypes$1['pg/text@1']['output'];
|
|
1306
1337
|
readonly code_challenge: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1307
1338
|
readonly code_challenge_method: 's256' | 'plain' | null;
|
|
1308
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1339
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1309
1340
|
readonly email_optional: CodecTypes$1['pg/bool@1']['output'];
|
|
1310
1341
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1311
1342
|
readonly invite_token: CodecTypes$1['pg/text@1']['output'] | null;
|
|
@@ -1315,67 +1346,67 @@ type StorageColumnTypes = {
|
|
|
1315
1346
|
readonly provider_refresh_token: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1316
1347
|
readonly provider_type: CodecTypes$1['pg/text@1']['output'];
|
|
1317
1348
|
readonly referrer: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1318
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1349
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1319
1350
|
readonly user_id: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
1320
1351
|
};
|
|
1321
1352
|
readonly identities: {
|
|
1322
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1353
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1323
1354
|
readonly email: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1324
1355
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1325
1356
|
readonly identity_data: CodecTypes$1['pg/jsonb@1']['output'];
|
|
1326
|
-
readonly last_sign_in_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1357
|
+
readonly last_sign_in_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1327
1358
|
readonly provider: CodecTypes$1['pg/text@1']['output'];
|
|
1328
1359
|
readonly provider_id: CodecTypes$1['pg/text@1']['output'];
|
|
1329
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1360
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1330
1361
|
readonly user_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1331
1362
|
};
|
|
1332
1363
|
readonly instances: {
|
|
1333
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1364
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1334
1365
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1335
1366
|
readonly raw_base_config: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1336
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1367
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1337
1368
|
readonly uuid: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
1338
1369
|
};
|
|
1339
1370
|
readonly mfa_amr_claims: {
|
|
1340
1371
|
readonly authentication_method: CodecTypes$1['pg/text@1']['output'];
|
|
1341
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1372
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1342
1373
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1343
1374
|
readonly session_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1344
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1375
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1345
1376
|
};
|
|
1346
1377
|
readonly mfa_challenges: {
|
|
1347
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1378
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1348
1379
|
readonly factor_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1349
1380
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1350
1381
|
readonly ip_address: CodecTypes$1['pg/inet@1']['output'];
|
|
1351
1382
|
readonly otp_code: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1352
|
-
readonly verified_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1383
|
+
readonly verified_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1353
1384
|
readonly web_authn_session_data: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
1354
1385
|
};
|
|
1355
1386
|
readonly mfa_factors: {
|
|
1356
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1387
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1357
1388
|
readonly factor_type: 'totp' | 'webauthn' | 'phone';
|
|
1358
1389
|
readonly friendly_name: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1359
1390
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1360
|
-
readonly last_challenged_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1391
|
+
readonly last_challenged_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1361
1392
|
readonly last_webauthn_challenge_data: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
1362
1393
|
readonly phone: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1363
1394
|
readonly secret: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1364
1395
|
readonly status: 'unverified' | 'verified';
|
|
1365
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1396
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1366
1397
|
readonly user_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1367
1398
|
readonly web_authn_aaguid: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
1368
1399
|
readonly web_authn_credential: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
1369
1400
|
};
|
|
1370
1401
|
readonly oauth_authorizations: {
|
|
1371
|
-
readonly approved_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1402
|
+
readonly approved_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1372
1403
|
readonly authorization_code: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1373
1404
|
readonly authorization_id: CodecTypes$1['pg/text@1']['output'];
|
|
1374
1405
|
readonly client_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1375
1406
|
readonly code_challenge: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1376
1407
|
readonly code_challenge_method: 's256' | 'plain' | null;
|
|
1377
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1378
|
-
readonly expires_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1408
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1409
|
+
readonly expires_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1379
1410
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1380
1411
|
readonly nonce: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1381
1412
|
readonly redirect_uri: CodecTypes$1['pg/text@1']['output'];
|
|
@@ -1388,7 +1419,7 @@ type StorageColumnTypes = {
|
|
|
1388
1419
|
};
|
|
1389
1420
|
readonly oauth_client_states: {
|
|
1390
1421
|
readonly code_verifier: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1391
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1422
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1392
1423
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1393
1424
|
readonly provider_type: CodecTypes$1['pg/text@1']['output'];
|
|
1394
1425
|
};
|
|
@@ -1397,140 +1428,140 @@ type StorageColumnTypes = {
|
|
|
1397
1428
|
readonly client_secret_hash: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1398
1429
|
readonly client_type: 'public' | 'confidential';
|
|
1399
1430
|
readonly client_uri: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1400
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1401
|
-
readonly deleted_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1431
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1432
|
+
readonly deleted_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1402
1433
|
readonly grant_types: CodecTypes$1['pg/text@1']['output'];
|
|
1403
1434
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1404
1435
|
readonly logo_uri: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1405
1436
|
readonly redirect_uris: CodecTypes$1['pg/text@1']['output'];
|
|
1406
1437
|
readonly registration_type: 'dynamic' | 'manual';
|
|
1407
1438
|
readonly token_endpoint_auth_method: CodecTypes$1['pg/text@1']['output'];
|
|
1408
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1439
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1409
1440
|
};
|
|
1410
1441
|
readonly oauth_consents: {
|
|
1411
1442
|
readonly client_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1412
|
-
readonly granted_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1443
|
+
readonly granted_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1413
1444
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1414
|
-
readonly revoked_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1445
|
+
readonly revoked_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1415
1446
|
readonly scopes: CodecTypes$1['pg/text@1']['output'];
|
|
1416
1447
|
readonly user_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1417
1448
|
};
|
|
1418
1449
|
readonly one_time_tokens: {
|
|
1419
|
-
readonly created_at: CodecTypes$1['pg/timestamp@1']['output'];
|
|
1450
|
+
readonly created_at: CodecTypes$1['pg/timestamp-temporal@1']['output'];
|
|
1420
1451
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1421
1452
|
readonly relates_to: CodecTypes$1['pg/text@1']['output'];
|
|
1422
1453
|
readonly token_hash: CodecTypes$1['pg/text@1']['output'];
|
|
1423
1454
|
readonly token_type: 'confirmation_token' | 'reauthentication_token' | 'recovery_token' | 'email_change_token_new' | 'email_change_token_current' | 'phone_change_token';
|
|
1424
|
-
readonly updated_at: CodecTypes$1['pg/timestamp@1']['output'];
|
|
1455
|
+
readonly updated_at: CodecTypes$1['pg/timestamp-temporal@1']['output'];
|
|
1425
1456
|
readonly user_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1426
1457
|
};
|
|
1427
1458
|
readonly refresh_tokens: {
|
|
1428
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1459
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1429
1460
|
readonly id: CodecTypes$1['pg/int8@1']['output'];
|
|
1430
1461
|
readonly instance_id: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
1431
1462
|
readonly parent: Varchar<255> | null;
|
|
1432
1463
|
readonly revoked: CodecTypes$1['pg/bool@1']['output'] | null;
|
|
1433
1464
|
readonly session_id: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
1434
1465
|
readonly token: Varchar<255> | null;
|
|
1435
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1466
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1436
1467
|
readonly user_id: Varchar<255> | null;
|
|
1437
1468
|
};
|
|
1438
1469
|
readonly saml_providers: {
|
|
1439
1470
|
readonly attribute_mapping: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
1440
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1471
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1441
1472
|
readonly entity_id: CodecTypes$1['pg/text@1']['output'];
|
|
1442
1473
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1443
1474
|
readonly metadata_url: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1444
1475
|
readonly metadata_xml: CodecTypes$1['pg/text@1']['output'];
|
|
1445
1476
|
readonly name_id_format: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1446
1477
|
readonly sso_provider_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1447
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1478
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1448
1479
|
};
|
|
1449
1480
|
readonly saml_relay_states: {
|
|
1450
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1481
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1451
1482
|
readonly flow_state_id: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
1452
1483
|
readonly for_email: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1453
1484
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1454
1485
|
readonly redirect_to: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1455
1486
|
readonly request_id: CodecTypes$1['pg/text@1']['output'];
|
|
1456
1487
|
readonly sso_provider_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1457
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1488
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1458
1489
|
};
|
|
1459
1490
|
readonly schema_migrations: {
|
|
1460
1491
|
readonly version: Varchar<255>;
|
|
1461
1492
|
};
|
|
1462
1493
|
readonly sessions: {
|
|
1463
1494
|
readonly aal: 'aal1' | 'aal2' | 'aal3' | null;
|
|
1464
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1495
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1465
1496
|
readonly factor_id: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
1466
1497
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1467
1498
|
readonly ip: CodecTypes$1['pg/inet@1']['output'] | null;
|
|
1468
|
-
readonly not_after: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1499
|
+
readonly not_after: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1469
1500
|
readonly oauth_client_id: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
1470
1501
|
readonly refresh_token_counter: CodecTypes$1['pg/int8@1']['output'] | null;
|
|
1471
1502
|
readonly refresh_token_hmac_key: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1472
|
-
readonly refreshed_at: CodecTypes$1['pg/timestamp@1']['output'] | null;
|
|
1503
|
+
readonly refreshed_at: CodecTypes$1['pg/timestamp-temporal@1']['output'] | null;
|
|
1473
1504
|
readonly scopes: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1474
1505
|
readonly tag: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1475
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1506
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1476
1507
|
readonly user_agent: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1477
1508
|
readonly user_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1478
1509
|
};
|
|
1479
1510
|
readonly sso_domains: {
|
|
1480
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1511
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1481
1512
|
readonly domain: CodecTypes$1['pg/text@1']['output'];
|
|
1482
1513
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1483
1514
|
readonly sso_provider_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1484
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1515
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1485
1516
|
};
|
|
1486
1517
|
readonly sso_providers: {
|
|
1487
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1518
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1488
1519
|
readonly disabled: CodecTypes$1['pg/bool@1']['output'] | null;
|
|
1489
1520
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1490
1521
|
readonly resource_id: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1491
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1522
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1492
1523
|
};
|
|
1493
1524
|
readonly users: {
|
|
1494
1525
|
readonly aud: Varchar<255> | null;
|
|
1495
|
-
readonly banned_until: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1496
|
-
readonly confirmation_sent_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1526
|
+
readonly banned_until: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1527
|
+
readonly confirmation_sent_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1497
1528
|
readonly confirmation_token: Varchar<255> | null;
|
|
1498
|
-
readonly confirmed_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1499
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1500
|
-
readonly deleted_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1529
|
+
readonly confirmed_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1530
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1531
|
+
readonly deleted_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1501
1532
|
readonly email: Varchar<255> | null;
|
|
1502
1533
|
readonly email_change: Varchar<255> | null;
|
|
1503
1534
|
readonly email_change_confirm_status: CodecTypes$1['pg/int2@1']['output'] | null;
|
|
1504
|
-
readonly email_change_sent_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1535
|
+
readonly email_change_sent_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1505
1536
|
readonly email_change_token_current: Varchar<255> | null;
|
|
1506
1537
|
readonly email_change_token_new: Varchar<255> | null;
|
|
1507
|
-
readonly email_confirmed_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1538
|
+
readonly email_confirmed_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1508
1539
|
readonly encrypted_password: Varchar<255> | null;
|
|
1509
1540
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1510
1541
|
readonly instance_id: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
1511
|
-
readonly invited_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1542
|
+
readonly invited_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1512
1543
|
readonly is_anonymous: CodecTypes$1['pg/bool@1']['output'];
|
|
1513
1544
|
readonly is_sso_user: CodecTypes$1['pg/bool@1']['output'];
|
|
1514
1545
|
readonly is_super_admin: CodecTypes$1['pg/bool@1']['output'] | null;
|
|
1515
|
-
readonly last_sign_in_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1546
|
+
readonly last_sign_in_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1516
1547
|
readonly phone: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1517
1548
|
readonly phone_change: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1518
|
-
readonly phone_change_sent_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1549
|
+
readonly phone_change_sent_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1519
1550
|
readonly phone_change_token: Varchar<255> | null;
|
|
1520
|
-
readonly phone_confirmed_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1551
|
+
readonly phone_confirmed_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1521
1552
|
readonly raw_app_meta_data: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
1522
1553
|
readonly raw_user_meta_data: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
1523
|
-
readonly reauthentication_sent_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1554
|
+
readonly reauthentication_sent_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1524
1555
|
readonly reauthentication_token: Varchar<255> | null;
|
|
1525
|
-
readonly recovery_sent_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1556
|
+
readonly recovery_sent_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1526
1557
|
readonly recovery_token: Varchar<255> | null;
|
|
1527
1558
|
readonly role: Varchar<255> | null;
|
|
1528
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1559
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1529
1560
|
};
|
|
1530
1561
|
readonly webauthn_challenges: {
|
|
1531
1562
|
readonly challenge_type: CodecTypes$1['pg/text@1']['output'];
|
|
1532
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1533
|
-
readonly expires_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1563
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1564
|
+
readonly expires_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1534
1565
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1535
1566
|
readonly session_data: CodecTypes$1['pg/jsonb@1']['output'];
|
|
1536
1567
|
readonly user_id: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
@@ -1540,15 +1571,15 @@ type StorageColumnTypes = {
|
|
|
1540
1571
|
readonly attestation_type: CodecTypes$1['pg/text@1']['output'];
|
|
1541
1572
|
readonly backed_up: CodecTypes$1['pg/bool@1']['output'];
|
|
1542
1573
|
readonly backup_eligible: CodecTypes$1['pg/bool@1']['output'];
|
|
1543
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1574
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1544
1575
|
readonly credential_id: CodecTypes$1['pg/bytea@1']['output'];
|
|
1545
1576
|
readonly friendly_name: CodecTypes$1['pg/text@1']['output'];
|
|
1546
1577
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1547
|
-
readonly last_used_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1578
|
+
readonly last_used_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1548
1579
|
readonly public_key: CodecTypes$1['pg/bytea@1']['output'];
|
|
1549
1580
|
readonly sign_count: CodecTypes$1['pg/int8@1']['output'];
|
|
1550
1581
|
readonly transports: CodecTypes$1['pg/jsonb@1']['output'];
|
|
1551
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1582
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1552
1583
|
readonly user_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1553
1584
|
};
|
|
1554
1585
|
};
|
|
@@ -1556,7 +1587,7 @@ type StorageColumnTypes = {
|
|
|
1556
1587
|
readonly storage: {
|
|
1557
1588
|
readonly buckets: {
|
|
1558
1589
|
readonly avif_autodetection: CodecTypes$1['pg/bool@1']['output'] | null;
|
|
1559
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1590
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1560
1591
|
readonly file_size_limit: CodecTypes$1['pg/int8@1']['output'] | null;
|
|
1561
1592
|
readonly id: CodecTypes$1['pg/text@1']['output'];
|
|
1562
1593
|
readonly name: CodecTypes$1['pg/text@1']['output'];
|
|
@@ -1564,36 +1595,36 @@ type StorageColumnTypes = {
|
|
|
1564
1595
|
readonly owner_id: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1565
1596
|
readonly public: CodecTypes$1['pg/bool@1']['output'] | null;
|
|
1566
1597
|
readonly type: 'STANDARD' | 'ANALYTICS' | 'VECTOR';
|
|
1567
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1598
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1568
1599
|
};
|
|
1569
1600
|
readonly buckets_analytics: {
|
|
1570
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1571
|
-
readonly deleted_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1601
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1602
|
+
readonly deleted_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1572
1603
|
readonly format: CodecTypes$1['pg/text@1']['output'];
|
|
1573
1604
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1574
1605
|
readonly name: CodecTypes$1['pg/text@1']['output'];
|
|
1575
1606
|
readonly type: 'STANDARD' | 'ANALYTICS' | 'VECTOR';
|
|
1576
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1607
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1577
1608
|
};
|
|
1578
1609
|
readonly buckets_vectors: {
|
|
1579
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1610
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1580
1611
|
readonly id: CodecTypes$1['pg/text@1']['output'];
|
|
1581
1612
|
readonly type: 'STANDARD' | 'ANALYTICS' | 'VECTOR';
|
|
1582
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1613
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1583
1614
|
};
|
|
1584
1615
|
readonly iceberg_namespaces: {
|
|
1585
1616
|
readonly bucket_name: CodecTypes$1['pg/text@1']['output'];
|
|
1586
1617
|
readonly catalog_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1587
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1618
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1588
1619
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1589
1620
|
readonly metadata: CodecTypes$1['pg/jsonb@1']['output'];
|
|
1590
1621
|
readonly name: CodecTypes$1['pg/text@1']['output'];
|
|
1591
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1622
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1592
1623
|
};
|
|
1593
1624
|
readonly iceberg_tables: {
|
|
1594
1625
|
readonly bucket_name: CodecTypes$1['pg/text@1']['output'];
|
|
1595
1626
|
readonly catalog_id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1596
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1627
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1597
1628
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1598
1629
|
readonly location: CodecTypes$1['pg/text@1']['output'];
|
|
1599
1630
|
readonly name: CodecTypes$1['pg/text@1']['output'];
|
|
@@ -1601,30 +1632,30 @@ type StorageColumnTypes = {
|
|
|
1601
1632
|
readonly remote_table_id: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1602
1633
|
readonly shard_id: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1603
1634
|
readonly shard_key: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1604
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1635
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1605
1636
|
};
|
|
1606
1637
|
readonly migrations: {
|
|
1607
|
-
readonly executed_at: CodecTypes$1['pg/timestamp@1']['output'] | null;
|
|
1638
|
+
readonly executed_at: CodecTypes$1['pg/timestamp-temporal@1']['output'] | null;
|
|
1608
1639
|
readonly hash: Varchar<40>;
|
|
1609
1640
|
readonly id: CodecTypes$1['pg/int4@1']['output'];
|
|
1610
1641
|
readonly name: Varchar<100>;
|
|
1611
1642
|
};
|
|
1612
1643
|
readonly objects: {
|
|
1613
1644
|
readonly bucket_id: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1614
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1645
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1615
1646
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1616
|
-
readonly last_accessed_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1647
|
+
readonly last_accessed_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1617
1648
|
readonly metadata: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
1618
1649
|
readonly name: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1619
1650
|
readonly owner: CodecTypes$1['pg/uuid@1']['output'] | null;
|
|
1620
1651
|
readonly owner_id: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1621
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'] | null;
|
|
1652
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'] | null;
|
|
1622
1653
|
readonly user_metadata: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
1623
1654
|
readonly version: CodecTypes$1['pg/text@1']['output'] | null;
|
|
1624
1655
|
};
|
|
1625
1656
|
readonly s3_multipart_uploads: {
|
|
1626
1657
|
readonly bucket_id: CodecTypes$1['pg/text@1']['output'];
|
|
1627
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1658
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1628
1659
|
readonly id: CodecTypes$1['pg/text@1']['output'];
|
|
1629
1660
|
readonly in_progress_size: CodecTypes$1['pg/int8@1']['output'];
|
|
1630
1661
|
readonly key: CodecTypes$1['pg/text@1']['output'];
|
|
@@ -1636,7 +1667,7 @@ type StorageColumnTypes = {
|
|
|
1636
1667
|
};
|
|
1637
1668
|
readonly s3_multipart_uploads_parts: {
|
|
1638
1669
|
readonly bucket_id: CodecTypes$1['pg/text@1']['output'];
|
|
1639
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1670
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1640
1671
|
readonly etag: CodecTypes$1['pg/text@1']['output'];
|
|
1641
1672
|
readonly id: CodecTypes$1['pg/uuid@1']['output'];
|
|
1642
1673
|
readonly key: CodecTypes$1['pg/text@1']['output'];
|
|
@@ -1648,14 +1679,14 @@ type StorageColumnTypes = {
|
|
|
1648
1679
|
};
|
|
1649
1680
|
readonly vector_indexes: {
|
|
1650
1681
|
readonly bucket_id: CodecTypes$1['pg/text@1']['output'];
|
|
1651
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1682
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1652
1683
|
readonly data_type: CodecTypes$1['pg/text@1']['output'];
|
|
1653
1684
|
readonly dimension: CodecTypes$1['pg/int4@1']['output'];
|
|
1654
1685
|
readonly distance_metric: CodecTypes$1['pg/text@1']['output'];
|
|
1655
1686
|
readonly id: CodecTypes$1['pg/text@1']['output'];
|
|
1656
1687
|
readonly metadata_configuration: CodecTypes$1['pg/jsonb@1']['output'] | null;
|
|
1657
1688
|
readonly name: CodecTypes$1['pg/text@1']['output'];
|
|
1658
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['output'];
|
|
1689
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['output'];
|
|
1659
1690
|
};
|
|
1660
1691
|
};
|
|
1661
1692
|
};
|
|
@@ -1663,7 +1694,7 @@ type StorageColumnInputTypes = {
|
|
|
1663
1694
|
readonly __unbound__: {};
|
|
1664
1695
|
readonly auth: {
|
|
1665
1696
|
readonly audit_log_entries: {
|
|
1666
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1697
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1667
1698
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1668
1699
|
readonly instance_id: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1669
1700
|
readonly ip_address: CodecTypes$1['sql/varchar@1']['input'];
|
|
@@ -1677,8 +1708,8 @@ type StorageColumnInputTypes = {
|
|
|
1677
1708
|
readonly cached_discovery: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
1678
1709
|
readonly client_id: CodecTypes$1['pg/text@1']['input'];
|
|
1679
1710
|
readonly client_secret: CodecTypes$1['pg/text@1']['input'];
|
|
1680
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1681
|
-
readonly discovery_cached_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1711
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1712
|
+
readonly discovery_cached_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1682
1713
|
readonly discovery_url: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1683
1714
|
readonly email_optional: CodecTypes$1['pg/bool@1']['input'];
|
|
1684
1715
|
readonly enabled: CodecTypes$1['pg/bool@1']['input'];
|
|
@@ -1692,16 +1723,16 @@ type StorageColumnInputTypes = {
|
|
|
1692
1723
|
readonly scopes: ReadonlyArray<CodecTypes$1['pg/text@1']['input']>;
|
|
1693
1724
|
readonly skip_nonce_check: CodecTypes$1['pg/bool@1']['input'];
|
|
1694
1725
|
readonly token_url: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1695
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1726
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1696
1727
|
readonly userinfo_url: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1697
1728
|
};
|
|
1698
1729
|
readonly flow_state: {
|
|
1699
1730
|
readonly auth_code: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1700
|
-
readonly auth_code_issued_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1731
|
+
readonly auth_code_issued_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1701
1732
|
readonly authentication_method: CodecTypes$1['pg/text@1']['input'];
|
|
1702
1733
|
readonly code_challenge: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1703
1734
|
readonly code_challenge_method: 's256' | 'plain' | null;
|
|
1704
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1735
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1705
1736
|
readonly email_optional: CodecTypes$1['pg/bool@1']['input'];
|
|
1706
1737
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1707
1738
|
readonly invite_token: CodecTypes$1['pg/text@1']['input'] | null;
|
|
@@ -1711,67 +1742,67 @@ type StorageColumnInputTypes = {
|
|
|
1711
1742
|
readonly provider_refresh_token: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1712
1743
|
readonly provider_type: CodecTypes$1['pg/text@1']['input'];
|
|
1713
1744
|
readonly referrer: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1714
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1745
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1715
1746
|
readonly user_id: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1716
1747
|
};
|
|
1717
1748
|
readonly identities: {
|
|
1718
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1749
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1719
1750
|
readonly email: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1720
1751
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1721
1752
|
readonly identity_data: CodecTypes$1['pg/jsonb@1']['input'];
|
|
1722
|
-
readonly last_sign_in_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1753
|
+
readonly last_sign_in_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1723
1754
|
readonly provider: CodecTypes$1['pg/text@1']['input'];
|
|
1724
1755
|
readonly provider_id: CodecTypes$1['pg/text@1']['input'];
|
|
1725
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1756
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1726
1757
|
readonly user_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1727
1758
|
};
|
|
1728
1759
|
readonly instances: {
|
|
1729
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1760
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1730
1761
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1731
1762
|
readonly raw_base_config: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1732
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1763
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1733
1764
|
readonly uuid: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1734
1765
|
};
|
|
1735
1766
|
readonly mfa_amr_claims: {
|
|
1736
1767
|
readonly authentication_method: CodecTypes$1['pg/text@1']['input'];
|
|
1737
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1768
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1738
1769
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1739
1770
|
readonly session_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1740
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1771
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1741
1772
|
};
|
|
1742
1773
|
readonly mfa_challenges: {
|
|
1743
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1774
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1744
1775
|
readonly factor_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1745
1776
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1746
1777
|
readonly ip_address: CodecTypes$1['pg/inet@1']['input'];
|
|
1747
1778
|
readonly otp_code: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1748
|
-
readonly verified_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1779
|
+
readonly verified_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1749
1780
|
readonly web_authn_session_data: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
1750
1781
|
};
|
|
1751
1782
|
readonly mfa_factors: {
|
|
1752
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1783
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1753
1784
|
readonly factor_type: 'totp' | 'webauthn' | 'phone';
|
|
1754
1785
|
readonly friendly_name: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1755
1786
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1756
|
-
readonly last_challenged_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1787
|
+
readonly last_challenged_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1757
1788
|
readonly last_webauthn_challenge_data: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
1758
1789
|
readonly phone: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1759
1790
|
readonly secret: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1760
1791
|
readonly status: 'unverified' | 'verified';
|
|
1761
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1792
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1762
1793
|
readonly user_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1763
1794
|
readonly web_authn_aaguid: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1764
1795
|
readonly web_authn_credential: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
1765
1796
|
};
|
|
1766
1797
|
readonly oauth_authorizations: {
|
|
1767
|
-
readonly approved_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1798
|
+
readonly approved_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1768
1799
|
readonly authorization_code: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1769
1800
|
readonly authorization_id: CodecTypes$1['pg/text@1']['input'];
|
|
1770
1801
|
readonly client_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1771
1802
|
readonly code_challenge: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1772
1803
|
readonly code_challenge_method: 's256' | 'plain' | null;
|
|
1773
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1774
|
-
readonly expires_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1804
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1805
|
+
readonly expires_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1775
1806
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1776
1807
|
readonly nonce: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1777
1808
|
readonly redirect_uri: CodecTypes$1['pg/text@1']['input'];
|
|
@@ -1784,7 +1815,7 @@ type StorageColumnInputTypes = {
|
|
|
1784
1815
|
};
|
|
1785
1816
|
readonly oauth_client_states: {
|
|
1786
1817
|
readonly code_verifier: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1787
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1818
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1788
1819
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1789
1820
|
readonly provider_type: CodecTypes$1['pg/text@1']['input'];
|
|
1790
1821
|
};
|
|
@@ -1793,140 +1824,140 @@ type StorageColumnInputTypes = {
|
|
|
1793
1824
|
readonly client_secret_hash: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1794
1825
|
readonly client_type: 'public' | 'confidential';
|
|
1795
1826
|
readonly client_uri: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1796
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1797
|
-
readonly deleted_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1827
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1828
|
+
readonly deleted_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1798
1829
|
readonly grant_types: CodecTypes$1['pg/text@1']['input'];
|
|
1799
1830
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1800
1831
|
readonly logo_uri: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1801
1832
|
readonly redirect_uris: CodecTypes$1['pg/text@1']['input'];
|
|
1802
1833
|
readonly registration_type: 'dynamic' | 'manual';
|
|
1803
1834
|
readonly token_endpoint_auth_method: CodecTypes$1['pg/text@1']['input'];
|
|
1804
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1835
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1805
1836
|
};
|
|
1806
1837
|
readonly oauth_consents: {
|
|
1807
1838
|
readonly client_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1808
|
-
readonly granted_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1839
|
+
readonly granted_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1809
1840
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1810
|
-
readonly revoked_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1841
|
+
readonly revoked_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1811
1842
|
readonly scopes: CodecTypes$1['pg/text@1']['input'];
|
|
1812
1843
|
readonly user_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1813
1844
|
};
|
|
1814
1845
|
readonly one_time_tokens: {
|
|
1815
|
-
readonly created_at: CodecTypes$1['pg/timestamp@1']['input'];
|
|
1846
|
+
readonly created_at: CodecTypes$1['pg/timestamp-temporal@1']['input'];
|
|
1816
1847
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1817
1848
|
readonly relates_to: CodecTypes$1['pg/text@1']['input'];
|
|
1818
1849
|
readonly token_hash: CodecTypes$1['pg/text@1']['input'];
|
|
1819
1850
|
readonly token_type: 'confirmation_token' | 'reauthentication_token' | 'recovery_token' | 'email_change_token_new' | 'email_change_token_current' | 'phone_change_token';
|
|
1820
|
-
readonly updated_at: CodecTypes$1['pg/timestamp@1']['input'];
|
|
1851
|
+
readonly updated_at: CodecTypes$1['pg/timestamp-temporal@1']['input'];
|
|
1821
1852
|
readonly user_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1822
1853
|
};
|
|
1823
1854
|
readonly refresh_tokens: {
|
|
1824
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1855
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1825
1856
|
readonly id: CodecTypes$1['pg/int8@1']['input'];
|
|
1826
1857
|
readonly instance_id: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1827
1858
|
readonly parent: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1828
1859
|
readonly revoked: CodecTypes$1['pg/bool@1']['input'] | null;
|
|
1829
1860
|
readonly session_id: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1830
1861
|
readonly token: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1831
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1862
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1832
1863
|
readonly user_id: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1833
1864
|
};
|
|
1834
1865
|
readonly saml_providers: {
|
|
1835
1866
|
readonly attribute_mapping: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
1836
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1867
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1837
1868
|
readonly entity_id: CodecTypes$1['pg/text@1']['input'];
|
|
1838
1869
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1839
1870
|
readonly metadata_url: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1840
1871
|
readonly metadata_xml: CodecTypes$1['pg/text@1']['input'];
|
|
1841
1872
|
readonly name_id_format: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1842
1873
|
readonly sso_provider_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1843
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1874
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1844
1875
|
};
|
|
1845
1876
|
readonly saml_relay_states: {
|
|
1846
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1877
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1847
1878
|
readonly flow_state_id: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1848
1879
|
readonly for_email: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1849
1880
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1850
1881
|
readonly redirect_to: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1851
1882
|
readonly request_id: CodecTypes$1['pg/text@1']['input'];
|
|
1852
1883
|
readonly sso_provider_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1853
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1884
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1854
1885
|
};
|
|
1855
1886
|
readonly schema_migrations: {
|
|
1856
1887
|
readonly version: CodecTypes$1['sql/varchar@1']['input'];
|
|
1857
1888
|
};
|
|
1858
1889
|
readonly sessions: {
|
|
1859
1890
|
readonly aal: 'aal1' | 'aal2' | 'aal3' | null;
|
|
1860
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1891
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1861
1892
|
readonly factor_id: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1862
1893
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1863
1894
|
readonly ip: CodecTypes$1['pg/inet@1']['input'] | null;
|
|
1864
|
-
readonly not_after: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1895
|
+
readonly not_after: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1865
1896
|
readonly oauth_client_id: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1866
1897
|
readonly refresh_token_counter: CodecTypes$1['pg/int8@1']['input'] | null;
|
|
1867
1898
|
readonly refresh_token_hmac_key: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1868
|
-
readonly refreshed_at: CodecTypes$1['pg/timestamp@1']['input'] | null;
|
|
1899
|
+
readonly refreshed_at: CodecTypes$1['pg/timestamp-temporal@1']['input'] | null;
|
|
1869
1900
|
readonly scopes: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1870
1901
|
readonly tag: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1871
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1902
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1872
1903
|
readonly user_agent: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1873
1904
|
readonly user_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1874
1905
|
};
|
|
1875
1906
|
readonly sso_domains: {
|
|
1876
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1907
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1877
1908
|
readonly domain: CodecTypes$1['pg/text@1']['input'];
|
|
1878
1909
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1879
1910
|
readonly sso_provider_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1880
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1911
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1881
1912
|
};
|
|
1882
1913
|
readonly sso_providers: {
|
|
1883
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1914
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1884
1915
|
readonly disabled: CodecTypes$1['pg/bool@1']['input'] | null;
|
|
1885
1916
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1886
1917
|
readonly resource_id: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1887
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1918
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1888
1919
|
};
|
|
1889
1920
|
readonly users: {
|
|
1890
1921
|
readonly aud: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1891
|
-
readonly banned_until: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1892
|
-
readonly confirmation_sent_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1922
|
+
readonly banned_until: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1923
|
+
readonly confirmation_sent_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1893
1924
|
readonly confirmation_token: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1894
|
-
readonly confirmed_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1895
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1896
|
-
readonly deleted_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1925
|
+
readonly confirmed_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1926
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1927
|
+
readonly deleted_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1897
1928
|
readonly email: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1898
1929
|
readonly email_change: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1899
1930
|
readonly email_change_confirm_status: CodecTypes$1['pg/int2@1']['input'] | null;
|
|
1900
|
-
readonly email_change_sent_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1931
|
+
readonly email_change_sent_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1901
1932
|
readonly email_change_token_current: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1902
1933
|
readonly email_change_token_new: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1903
|
-
readonly email_confirmed_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1934
|
+
readonly email_confirmed_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1904
1935
|
readonly encrypted_password: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1905
1936
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1906
1937
|
readonly instance_id: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
1907
|
-
readonly invited_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1938
|
+
readonly invited_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1908
1939
|
readonly is_anonymous: CodecTypes$1['pg/bool@1']['input'];
|
|
1909
1940
|
readonly is_sso_user: CodecTypes$1['pg/bool@1']['input'];
|
|
1910
1941
|
readonly is_super_admin: CodecTypes$1['pg/bool@1']['input'] | null;
|
|
1911
|
-
readonly last_sign_in_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1942
|
+
readonly last_sign_in_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1912
1943
|
readonly phone: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1913
1944
|
readonly phone_change: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1914
|
-
readonly phone_change_sent_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1945
|
+
readonly phone_change_sent_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1915
1946
|
readonly phone_change_token: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1916
|
-
readonly phone_confirmed_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1947
|
+
readonly phone_confirmed_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1917
1948
|
readonly raw_app_meta_data: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
1918
1949
|
readonly raw_user_meta_data: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
1919
|
-
readonly reauthentication_sent_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1950
|
+
readonly reauthentication_sent_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1920
1951
|
readonly reauthentication_token: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1921
|
-
readonly recovery_sent_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1952
|
+
readonly recovery_sent_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1922
1953
|
readonly recovery_token: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1923
1954
|
readonly role: CodecTypes$1['sql/varchar@1']['input'] | null;
|
|
1924
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1955
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1925
1956
|
};
|
|
1926
1957
|
readonly webauthn_challenges: {
|
|
1927
1958
|
readonly challenge_type: CodecTypes$1['pg/text@1']['input'];
|
|
1928
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1929
|
-
readonly expires_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1959
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1960
|
+
readonly expires_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1930
1961
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1931
1962
|
readonly session_data: CodecTypes$1['pg/jsonb@1']['input'];
|
|
1932
1963
|
readonly user_id: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
@@ -1936,15 +1967,15 @@ type StorageColumnInputTypes = {
|
|
|
1936
1967
|
readonly attestation_type: CodecTypes$1['pg/text@1']['input'];
|
|
1937
1968
|
readonly backed_up: CodecTypes$1['pg/bool@1']['input'];
|
|
1938
1969
|
readonly backup_eligible: CodecTypes$1['pg/bool@1']['input'];
|
|
1939
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1970
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1940
1971
|
readonly credential_id: CodecTypes$1['pg/bytea@1']['input'];
|
|
1941
1972
|
readonly friendly_name: CodecTypes$1['pg/text@1']['input'];
|
|
1942
1973
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1943
|
-
readonly last_used_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1974
|
+
readonly last_used_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1944
1975
|
readonly public_key: CodecTypes$1['pg/bytea@1']['input'];
|
|
1945
1976
|
readonly sign_count: CodecTypes$1['pg/int8@1']['input'];
|
|
1946
1977
|
readonly transports: CodecTypes$1['pg/jsonb@1']['input'];
|
|
1947
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1978
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1948
1979
|
readonly user_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1949
1980
|
};
|
|
1950
1981
|
};
|
|
@@ -1952,7 +1983,7 @@ type StorageColumnInputTypes = {
|
|
|
1952
1983
|
readonly storage: {
|
|
1953
1984
|
readonly buckets: {
|
|
1954
1985
|
readonly avif_autodetection: CodecTypes$1['pg/bool@1']['input'] | null;
|
|
1955
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1986
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1956
1987
|
readonly file_size_limit: CodecTypes$1['pg/int8@1']['input'] | null;
|
|
1957
1988
|
readonly id: CodecTypes$1['pg/text@1']['input'];
|
|
1958
1989
|
readonly name: CodecTypes$1['pg/text@1']['input'];
|
|
@@ -1960,36 +1991,36 @@ type StorageColumnInputTypes = {
|
|
|
1960
1991
|
readonly owner_id: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1961
1992
|
readonly public: CodecTypes$1['pg/bool@1']['input'] | null;
|
|
1962
1993
|
readonly type: 'STANDARD' | 'ANALYTICS' | 'VECTOR';
|
|
1963
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1994
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1964
1995
|
};
|
|
1965
1996
|
readonly buckets_analytics: {
|
|
1966
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
1967
|
-
readonly deleted_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
1997
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1998
|
+
readonly deleted_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
1968
1999
|
readonly format: CodecTypes$1['pg/text@1']['input'];
|
|
1969
2000
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1970
2001
|
readonly name: CodecTypes$1['pg/text@1']['input'];
|
|
1971
2002
|
readonly type: 'STANDARD' | 'ANALYTICS' | 'VECTOR';
|
|
1972
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
2003
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1973
2004
|
};
|
|
1974
2005
|
readonly buckets_vectors: {
|
|
1975
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
2006
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1976
2007
|
readonly id: CodecTypes$1['pg/text@1']['input'];
|
|
1977
2008
|
readonly type: 'STANDARD' | 'ANALYTICS' | 'VECTOR';
|
|
1978
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
2009
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1979
2010
|
};
|
|
1980
2011
|
readonly iceberg_namespaces: {
|
|
1981
2012
|
readonly bucket_name: CodecTypes$1['pg/text@1']['input'];
|
|
1982
2013
|
readonly catalog_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1983
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
2014
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1984
2015
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1985
2016
|
readonly metadata: CodecTypes$1['pg/jsonb@1']['input'];
|
|
1986
2017
|
readonly name: CodecTypes$1['pg/text@1']['input'];
|
|
1987
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
2018
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1988
2019
|
};
|
|
1989
2020
|
readonly iceberg_tables: {
|
|
1990
2021
|
readonly bucket_name: CodecTypes$1['pg/text@1']['input'];
|
|
1991
2022
|
readonly catalog_id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1992
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
2023
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
1993
2024
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
1994
2025
|
readonly location: CodecTypes$1['pg/text@1']['input'];
|
|
1995
2026
|
readonly name: CodecTypes$1['pg/text@1']['input'];
|
|
@@ -1997,30 +2028,30 @@ type StorageColumnInputTypes = {
|
|
|
1997
2028
|
readonly remote_table_id: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1998
2029
|
readonly shard_id: CodecTypes$1['pg/text@1']['input'] | null;
|
|
1999
2030
|
readonly shard_key: CodecTypes$1['pg/text@1']['input'] | null;
|
|
2000
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
2031
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
2001
2032
|
};
|
|
2002
2033
|
readonly migrations: {
|
|
2003
|
-
readonly executed_at: CodecTypes$1['pg/timestamp@1']['input'] | null;
|
|
2034
|
+
readonly executed_at: CodecTypes$1['pg/timestamp-temporal@1']['input'] | null;
|
|
2004
2035
|
readonly hash: CodecTypes$1['sql/varchar@1']['input'];
|
|
2005
2036
|
readonly id: CodecTypes$1['pg/int4@1']['input'];
|
|
2006
2037
|
readonly name: CodecTypes$1['sql/varchar@1']['input'];
|
|
2007
2038
|
};
|
|
2008
2039
|
readonly objects: {
|
|
2009
2040
|
readonly bucket_id: CodecTypes$1['pg/text@1']['input'] | null;
|
|
2010
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
2041
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
2011
2042
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
2012
|
-
readonly last_accessed_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
2043
|
+
readonly last_accessed_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
2013
2044
|
readonly metadata: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
2014
2045
|
readonly name: CodecTypes$1['pg/text@1']['input'] | null;
|
|
2015
2046
|
readonly owner: CodecTypes$1['pg/uuid@1']['input'] | null;
|
|
2016
2047
|
readonly owner_id: CodecTypes$1['pg/text@1']['input'] | null;
|
|
2017
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'] | null;
|
|
2048
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'] | null;
|
|
2018
2049
|
readonly user_metadata: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
2019
2050
|
readonly version: CodecTypes$1['pg/text@1']['input'] | null;
|
|
2020
2051
|
};
|
|
2021
2052
|
readonly s3_multipart_uploads: {
|
|
2022
2053
|
readonly bucket_id: CodecTypes$1['pg/text@1']['input'];
|
|
2023
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
2054
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
2024
2055
|
readonly id: CodecTypes$1['pg/text@1']['input'];
|
|
2025
2056
|
readonly in_progress_size: CodecTypes$1['pg/int8@1']['input'];
|
|
2026
2057
|
readonly key: CodecTypes$1['pg/text@1']['input'];
|
|
@@ -2032,7 +2063,7 @@ type StorageColumnInputTypes = {
|
|
|
2032
2063
|
};
|
|
2033
2064
|
readonly s3_multipart_uploads_parts: {
|
|
2034
2065
|
readonly bucket_id: CodecTypes$1['pg/text@1']['input'];
|
|
2035
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
2066
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
2036
2067
|
readonly etag: CodecTypes$1['pg/text@1']['input'];
|
|
2037
2068
|
readonly id: CodecTypes$1['pg/uuid@1']['input'];
|
|
2038
2069
|
readonly key: CodecTypes$1['pg/text@1']['input'];
|
|
@@ -2044,14 +2075,14 @@ type StorageColumnInputTypes = {
|
|
|
2044
2075
|
};
|
|
2045
2076
|
readonly vector_indexes: {
|
|
2046
2077
|
readonly bucket_id: CodecTypes$1['pg/text@1']['input'];
|
|
2047
|
-
readonly created_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
2078
|
+
readonly created_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
2048
2079
|
readonly data_type: CodecTypes$1['pg/text@1']['input'];
|
|
2049
2080
|
readonly dimension: CodecTypes$1['pg/int4@1']['input'];
|
|
2050
2081
|
readonly distance_metric: CodecTypes$1['pg/text@1']['input'];
|
|
2051
2082
|
readonly id: CodecTypes$1['pg/text@1']['input'];
|
|
2052
2083
|
readonly metadata_configuration: CodecTypes$1['pg/jsonb@1']['input'] | null;
|
|
2053
2084
|
readonly name: CodecTypes$1['pg/text@1']['input'];
|
|
2054
|
-
readonly updated_at: CodecTypes$1['pg/timestamptz@1']['input'];
|
|
2085
|
+
readonly updated_at: CodecTypes$1['pg/timestamptz-temporal@1']['input'];
|
|
2055
2086
|
};
|
|
2056
2087
|
};
|
|
2057
2088
|
};
|
|
@@ -2092,7 +2123,7 @@ type ContractBase = Omit<Contract<{
|
|
|
2092
2123
|
};
|
|
2093
2124
|
readonly created_at: {
|
|
2094
2125
|
readonly nativeType: 'timestamptz';
|
|
2095
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2126
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2096
2127
|
readonly nullable: true;
|
|
2097
2128
|
};
|
|
2098
2129
|
readonly ip_address: {
|
|
@@ -2244,7 +2275,7 @@ type ContractBase = Omit<Contract<{
|
|
|
2244
2275
|
};
|
|
2245
2276
|
readonly discovery_cached_at: {
|
|
2246
2277
|
readonly nativeType: 'timestamptz';
|
|
2247
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2278
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2248
2279
|
readonly nullable: true;
|
|
2249
2280
|
};
|
|
2250
2281
|
readonly authorization_url: {
|
|
@@ -2269,7 +2300,7 @@ type ContractBase = Omit<Contract<{
|
|
|
2269
2300
|
};
|
|
2270
2301
|
readonly created_at: {
|
|
2271
2302
|
readonly nativeType: 'timestamptz';
|
|
2272
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2303
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2273
2304
|
readonly nullable: false;
|
|
2274
2305
|
readonly default: {
|
|
2275
2306
|
readonly kind: 'function';
|
|
@@ -2278,7 +2309,7 @@ type ContractBase = Omit<Contract<{
|
|
|
2278
2309
|
};
|
|
2279
2310
|
readonly updated_at: {
|
|
2280
2311
|
readonly nativeType: 'timestamptz';
|
|
2281
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2312
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2282
2313
|
readonly nullable: false;
|
|
2283
2314
|
readonly default: {
|
|
2284
2315
|
readonly kind: 'function';
|
|
@@ -2362,12 +2393,12 @@ type ContractBase = Omit<Contract<{
|
|
|
2362
2393
|
};
|
|
2363
2394
|
readonly created_at: {
|
|
2364
2395
|
readonly nativeType: 'timestamptz';
|
|
2365
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2396
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2366
2397
|
readonly nullable: true;
|
|
2367
2398
|
};
|
|
2368
2399
|
readonly updated_at: {
|
|
2369
2400
|
readonly nativeType: 'timestamptz';
|
|
2370
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2401
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2371
2402
|
readonly nullable: true;
|
|
2372
2403
|
};
|
|
2373
2404
|
readonly authentication_method: {
|
|
@@ -2377,7 +2408,7 @@ type ContractBase = Omit<Contract<{
|
|
|
2377
2408
|
};
|
|
2378
2409
|
readonly auth_code_issued_at: {
|
|
2379
2410
|
readonly nativeType: 'timestamptz';
|
|
2380
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2411
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2381
2412
|
readonly nullable: true;
|
|
2382
2413
|
};
|
|
2383
2414
|
readonly invite_token: {
|
|
@@ -2467,17 +2498,17 @@ type ContractBase = Omit<Contract<{
|
|
|
2467
2498
|
};
|
|
2468
2499
|
readonly last_sign_in_at: {
|
|
2469
2500
|
readonly nativeType: 'timestamptz';
|
|
2470
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2501
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2471
2502
|
readonly nullable: true;
|
|
2472
2503
|
};
|
|
2473
2504
|
readonly created_at: {
|
|
2474
2505
|
readonly nativeType: 'timestamptz';
|
|
2475
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2506
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2476
2507
|
readonly nullable: true;
|
|
2477
2508
|
};
|
|
2478
2509
|
readonly updated_at: {
|
|
2479
2510
|
readonly nativeType: 'timestamptz';
|
|
2480
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2511
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2481
2512
|
readonly nullable: true;
|
|
2482
2513
|
};
|
|
2483
2514
|
readonly email: {
|
|
@@ -2538,12 +2569,12 @@ type ContractBase = Omit<Contract<{
|
|
|
2538
2569
|
};
|
|
2539
2570
|
readonly created_at: {
|
|
2540
2571
|
readonly nativeType: 'timestamptz';
|
|
2541
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2572
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2542
2573
|
readonly nullable: true;
|
|
2543
2574
|
};
|
|
2544
2575
|
readonly updated_at: {
|
|
2545
2576
|
readonly nativeType: 'timestamptz';
|
|
2546
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2577
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2547
2578
|
readonly nullable: true;
|
|
2548
2579
|
};
|
|
2549
2580
|
};
|
|
@@ -2571,12 +2602,12 @@ type ContractBase = Omit<Contract<{
|
|
|
2571
2602
|
};
|
|
2572
2603
|
readonly created_at: {
|
|
2573
2604
|
readonly nativeType: 'timestamptz';
|
|
2574
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2605
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2575
2606
|
readonly nullable: false;
|
|
2576
2607
|
};
|
|
2577
2608
|
readonly updated_at: {
|
|
2578
2609
|
readonly nativeType: 'timestamptz';
|
|
2579
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2610
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2580
2611
|
readonly nullable: false;
|
|
2581
2612
|
};
|
|
2582
2613
|
readonly authentication_method: {
|
|
@@ -2624,12 +2655,12 @@ type ContractBase = Omit<Contract<{
|
|
|
2624
2655
|
};
|
|
2625
2656
|
readonly created_at: {
|
|
2626
2657
|
readonly nativeType: 'timestamptz';
|
|
2627
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2658
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2628
2659
|
readonly nullable: false;
|
|
2629
2660
|
};
|
|
2630
2661
|
readonly verified_at: {
|
|
2631
2662
|
readonly nativeType: 'timestamptz';
|
|
2632
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2663
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2633
2664
|
readonly nullable: true;
|
|
2634
2665
|
};
|
|
2635
2666
|
readonly ip_address: {
|
|
@@ -2710,12 +2741,12 @@ type ContractBase = Omit<Contract<{
|
|
|
2710
2741
|
};
|
|
2711
2742
|
readonly created_at: {
|
|
2712
2743
|
readonly nativeType: 'timestamptz';
|
|
2713
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2744
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2714
2745
|
readonly nullable: false;
|
|
2715
2746
|
};
|
|
2716
2747
|
readonly updated_at: {
|
|
2717
2748
|
readonly nativeType: 'timestamptz';
|
|
2718
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2749
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2719
2750
|
readonly nullable: false;
|
|
2720
2751
|
};
|
|
2721
2752
|
readonly secret: {
|
|
@@ -2730,7 +2761,7 @@ type ContractBase = Omit<Contract<{
|
|
|
2730
2761
|
};
|
|
2731
2762
|
readonly last_challenged_at: {
|
|
2732
2763
|
readonly nativeType: 'timestamptz';
|
|
2733
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2764
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2734
2765
|
readonly nullable: true;
|
|
2735
2766
|
};
|
|
2736
2767
|
readonly web_authn_credential: {
|
|
@@ -2879,7 +2910,7 @@ type ContractBase = Omit<Contract<{
|
|
|
2879
2910
|
};
|
|
2880
2911
|
readonly created_at: {
|
|
2881
2912
|
readonly nativeType: 'timestamptz';
|
|
2882
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2913
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2883
2914
|
readonly nullable: false;
|
|
2884
2915
|
readonly default: {
|
|
2885
2916
|
readonly kind: 'function';
|
|
@@ -2888,7 +2919,7 @@ type ContractBase = Omit<Contract<{
|
|
|
2888
2919
|
};
|
|
2889
2920
|
readonly expires_at: {
|
|
2890
2921
|
readonly nativeType: 'timestamptz';
|
|
2891
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2922
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2892
2923
|
readonly nullable: false;
|
|
2893
2924
|
readonly default: {
|
|
2894
2925
|
readonly kind: 'function';
|
|
@@ -2897,7 +2928,7 @@ type ContractBase = Omit<Contract<{
|
|
|
2897
2928
|
};
|
|
2898
2929
|
readonly approved_at: {
|
|
2899
2930
|
readonly nativeType: 'timestamptz';
|
|
2900
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
2931
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2901
2932
|
readonly nullable: true;
|
|
2902
2933
|
};
|
|
2903
2934
|
readonly nonce: {
|
|
@@ -2969,7 +3000,7 @@ type ContractBase = Omit<Contract<{
|
|
|
2969
3000
|
};
|
|
2970
3001
|
readonly created_at: {
|
|
2971
3002
|
readonly nativeType: 'timestamptz';
|
|
2972
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3003
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
2973
3004
|
readonly nullable: false;
|
|
2974
3005
|
};
|
|
2975
3006
|
};
|
|
@@ -3033,7 +3064,7 @@ type ContractBase = Omit<Contract<{
|
|
|
3033
3064
|
};
|
|
3034
3065
|
readonly created_at: {
|
|
3035
3066
|
readonly nativeType: 'timestamptz';
|
|
3036
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3067
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3037
3068
|
readonly nullable: false;
|
|
3038
3069
|
readonly default: {
|
|
3039
3070
|
readonly kind: 'function';
|
|
@@ -3042,7 +3073,7 @@ type ContractBase = Omit<Contract<{
|
|
|
3042
3073
|
};
|
|
3043
3074
|
readonly updated_at: {
|
|
3044
3075
|
readonly nativeType: 'timestamptz';
|
|
3045
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3076
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3046
3077
|
readonly nullable: false;
|
|
3047
3078
|
readonly default: {
|
|
3048
3079
|
readonly kind: 'function';
|
|
@@ -3051,7 +3082,7 @@ type ContractBase = Omit<Contract<{
|
|
|
3051
3082
|
};
|
|
3052
3083
|
readonly deleted_at: {
|
|
3053
3084
|
readonly nativeType: 'timestamptz';
|
|
3054
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3085
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3055
3086
|
readonly nullable: true;
|
|
3056
3087
|
};
|
|
3057
3088
|
readonly client_type: {
|
|
@@ -3111,7 +3142,7 @@ type ContractBase = Omit<Contract<{
|
|
|
3111
3142
|
};
|
|
3112
3143
|
readonly granted_at: {
|
|
3113
3144
|
readonly nativeType: 'timestamptz';
|
|
3114
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3145
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3115
3146
|
readonly nullable: false;
|
|
3116
3147
|
readonly default: {
|
|
3117
3148
|
readonly kind: 'function';
|
|
@@ -3120,7 +3151,7 @@ type ContractBase = Omit<Contract<{
|
|
|
3120
3151
|
};
|
|
3121
3152
|
readonly revoked_at: {
|
|
3122
3153
|
readonly nativeType: 'timestamptz';
|
|
3123
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3154
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3124
3155
|
readonly nullable: true;
|
|
3125
3156
|
};
|
|
3126
3157
|
};
|
|
@@ -3207,7 +3238,7 @@ type ContractBase = Omit<Contract<{
|
|
|
3207
3238
|
};
|
|
3208
3239
|
readonly created_at: {
|
|
3209
3240
|
readonly nativeType: 'timestamp';
|
|
3210
|
-
readonly codecId: 'pg/timestamp@1';
|
|
3241
|
+
readonly codecId: 'pg/timestamp-temporal@1';
|
|
3211
3242
|
readonly nullable: false;
|
|
3212
3243
|
readonly default: {
|
|
3213
3244
|
readonly kind: 'function';
|
|
@@ -3217,7 +3248,7 @@ type ContractBase = Omit<Contract<{
|
|
|
3217
3248
|
};
|
|
3218
3249
|
readonly updated_at: {
|
|
3219
3250
|
readonly nativeType: 'timestamp';
|
|
3220
|
-
readonly codecId: 'pg/timestamp@1';
|
|
3251
|
+
readonly codecId: 'pg/timestamp-temporal@1';
|
|
3221
3252
|
readonly nullable: false;
|
|
3222
3253
|
readonly default: {
|
|
3223
3254
|
readonly kind: 'function';
|
|
@@ -3296,12 +3327,12 @@ type ContractBase = Omit<Contract<{
|
|
|
3296
3327
|
};
|
|
3297
3328
|
readonly created_at: {
|
|
3298
3329
|
readonly nativeType: 'timestamptz';
|
|
3299
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3330
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3300
3331
|
readonly nullable: true;
|
|
3301
3332
|
};
|
|
3302
3333
|
readonly updated_at: {
|
|
3303
3334
|
readonly nativeType: 'timestamptz';
|
|
3304
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3335
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3305
3336
|
readonly nullable: true;
|
|
3306
3337
|
};
|
|
3307
3338
|
readonly parent: {
|
|
@@ -3396,12 +3427,12 @@ type ContractBase = Omit<Contract<{
|
|
|
3396
3427
|
};
|
|
3397
3428
|
readonly created_at: {
|
|
3398
3429
|
readonly nativeType: 'timestamptz';
|
|
3399
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3430
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3400
3431
|
readonly nullable: true;
|
|
3401
3432
|
};
|
|
3402
3433
|
readonly updated_at: {
|
|
3403
3434
|
readonly nativeType: 'timestamptz';
|
|
3404
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3435
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3405
3436
|
readonly nullable: true;
|
|
3406
3437
|
};
|
|
3407
3438
|
readonly name_id_format: {
|
|
@@ -3468,12 +3499,12 @@ type ContractBase = Omit<Contract<{
|
|
|
3468
3499
|
};
|
|
3469
3500
|
readonly created_at: {
|
|
3470
3501
|
readonly nativeType: 'timestamptz';
|
|
3471
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3502
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3472
3503
|
readonly nullable: true;
|
|
3473
3504
|
};
|
|
3474
3505
|
readonly updated_at: {
|
|
3475
3506
|
readonly nativeType: 'timestamptz';
|
|
3476
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3507
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3477
3508
|
readonly nullable: true;
|
|
3478
3509
|
};
|
|
3479
3510
|
readonly flow_state_id: {
|
|
@@ -3560,12 +3591,12 @@ type ContractBase = Omit<Contract<{
|
|
|
3560
3591
|
};
|
|
3561
3592
|
readonly created_at: {
|
|
3562
3593
|
readonly nativeType: 'timestamptz';
|
|
3563
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3594
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3564
3595
|
readonly nullable: true;
|
|
3565
3596
|
};
|
|
3566
3597
|
readonly updated_at: {
|
|
3567
3598
|
readonly nativeType: 'timestamptz';
|
|
3568
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3599
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3569
3600
|
readonly nullable: true;
|
|
3570
3601
|
};
|
|
3571
3602
|
readonly factor_id: {
|
|
@@ -3584,12 +3615,12 @@ type ContractBase = Omit<Contract<{
|
|
|
3584
3615
|
};
|
|
3585
3616
|
readonly not_after: {
|
|
3586
3617
|
readonly nativeType: 'timestamptz';
|
|
3587
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3618
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3588
3619
|
readonly nullable: true;
|
|
3589
3620
|
};
|
|
3590
3621
|
readonly refreshed_at: {
|
|
3591
3622
|
readonly nativeType: 'timestamp';
|
|
3592
|
-
readonly codecId: 'pg/timestamp@1';
|
|
3623
|
+
readonly codecId: 'pg/timestamp-temporal@1';
|
|
3593
3624
|
readonly nullable: true;
|
|
3594
3625
|
readonly typeRef: 'CreatedAt';
|
|
3595
3626
|
};
|
|
@@ -3700,12 +3731,12 @@ type ContractBase = Omit<Contract<{
|
|
|
3700
3731
|
};
|
|
3701
3732
|
readonly created_at: {
|
|
3702
3733
|
readonly nativeType: 'timestamptz';
|
|
3703
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3734
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3704
3735
|
readonly nullable: true;
|
|
3705
3736
|
};
|
|
3706
3737
|
readonly updated_at: {
|
|
3707
3738
|
readonly nativeType: 'timestamptz';
|
|
3708
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3739
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3709
3740
|
readonly nullable: true;
|
|
3710
3741
|
};
|
|
3711
3742
|
};
|
|
@@ -3752,12 +3783,12 @@ type ContractBase = Omit<Contract<{
|
|
|
3752
3783
|
};
|
|
3753
3784
|
readonly created_at: {
|
|
3754
3785
|
readonly nativeType: 'timestamptz';
|
|
3755
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3786
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3756
3787
|
readonly nullable: true;
|
|
3757
3788
|
};
|
|
3758
3789
|
readonly updated_at: {
|
|
3759
3790
|
readonly nativeType: 'timestamptz';
|
|
3760
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3791
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3761
3792
|
readonly nullable: true;
|
|
3762
3793
|
};
|
|
3763
3794
|
readonly disabled: {
|
|
@@ -3822,12 +3853,12 @@ type ContractBase = Omit<Contract<{
|
|
|
3822
3853
|
};
|
|
3823
3854
|
readonly email_confirmed_at: {
|
|
3824
3855
|
readonly nativeType: 'timestamptz';
|
|
3825
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3856
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3826
3857
|
readonly nullable: true;
|
|
3827
3858
|
};
|
|
3828
3859
|
readonly invited_at: {
|
|
3829
3860
|
readonly nativeType: 'timestamptz';
|
|
3830
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3861
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3831
3862
|
readonly nullable: true;
|
|
3832
3863
|
};
|
|
3833
3864
|
readonly confirmation_token: {
|
|
@@ -3838,7 +3869,7 @@ type ContractBase = Omit<Contract<{
|
|
|
3838
3869
|
};
|
|
3839
3870
|
readonly confirmation_sent_at: {
|
|
3840
3871
|
readonly nativeType: 'timestamptz';
|
|
3841
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3872
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3842
3873
|
readonly nullable: true;
|
|
3843
3874
|
};
|
|
3844
3875
|
readonly recovery_token: {
|
|
@@ -3849,7 +3880,7 @@ type ContractBase = Omit<Contract<{
|
|
|
3849
3880
|
};
|
|
3850
3881
|
readonly recovery_sent_at: {
|
|
3851
3882
|
readonly nativeType: 'timestamptz';
|
|
3852
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3883
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3853
3884
|
readonly nullable: true;
|
|
3854
3885
|
};
|
|
3855
3886
|
readonly email_change_token_new: {
|
|
@@ -3866,12 +3897,12 @@ type ContractBase = Omit<Contract<{
|
|
|
3866
3897
|
};
|
|
3867
3898
|
readonly email_change_sent_at: {
|
|
3868
3899
|
readonly nativeType: 'timestamptz';
|
|
3869
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3900
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3870
3901
|
readonly nullable: true;
|
|
3871
3902
|
};
|
|
3872
3903
|
readonly last_sign_in_at: {
|
|
3873
3904
|
readonly nativeType: 'timestamptz';
|
|
3874
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3905
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3875
3906
|
readonly nullable: true;
|
|
3876
3907
|
};
|
|
3877
3908
|
readonly raw_app_meta_data: {
|
|
@@ -3891,12 +3922,12 @@ type ContractBase = Omit<Contract<{
|
|
|
3891
3922
|
};
|
|
3892
3923
|
readonly created_at: {
|
|
3893
3924
|
readonly nativeType: 'timestamptz';
|
|
3894
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3925
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3895
3926
|
readonly nullable: true;
|
|
3896
3927
|
};
|
|
3897
3928
|
readonly updated_at: {
|
|
3898
3929
|
readonly nativeType: 'timestamptz';
|
|
3899
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3930
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3900
3931
|
readonly nullable: true;
|
|
3901
3932
|
};
|
|
3902
3933
|
readonly phone: {
|
|
@@ -3906,7 +3937,7 @@ type ContractBase = Omit<Contract<{
|
|
|
3906
3937
|
};
|
|
3907
3938
|
readonly phone_confirmed_at: {
|
|
3908
3939
|
readonly nativeType: 'timestamptz';
|
|
3909
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3940
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3910
3941
|
readonly nullable: true;
|
|
3911
3942
|
};
|
|
3912
3943
|
readonly phone_change: {
|
|
@@ -3930,12 +3961,12 @@ type ContractBase = Omit<Contract<{
|
|
|
3930
3961
|
};
|
|
3931
3962
|
readonly phone_change_sent_at: {
|
|
3932
3963
|
readonly nativeType: 'timestamptz';
|
|
3933
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3964
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3934
3965
|
readonly nullable: true;
|
|
3935
3966
|
};
|
|
3936
3967
|
readonly confirmed_at: {
|
|
3937
3968
|
readonly nativeType: 'timestamptz';
|
|
3938
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3969
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3939
3970
|
readonly nullable: true;
|
|
3940
3971
|
};
|
|
3941
3972
|
readonly email_change_token_current: {
|
|
@@ -3960,7 +3991,7 @@ type ContractBase = Omit<Contract<{
|
|
|
3960
3991
|
};
|
|
3961
3992
|
readonly banned_until: {
|
|
3962
3993
|
readonly nativeType: 'timestamptz';
|
|
3963
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
3994
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3964
3995
|
readonly nullable: true;
|
|
3965
3996
|
};
|
|
3966
3997
|
readonly reauthentication_token: {
|
|
@@ -3975,7 +4006,7 @@ type ContractBase = Omit<Contract<{
|
|
|
3975
4006
|
};
|
|
3976
4007
|
readonly reauthentication_sent_at: {
|
|
3977
4008
|
readonly nativeType: 'timestamptz';
|
|
3978
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4009
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3979
4010
|
readonly nullable: true;
|
|
3980
4011
|
};
|
|
3981
4012
|
readonly is_sso_user: {
|
|
@@ -3989,7 +4020,7 @@ type ContractBase = Omit<Contract<{
|
|
|
3989
4020
|
};
|
|
3990
4021
|
readonly deleted_at: {
|
|
3991
4022
|
readonly nativeType: 'timestamptz';
|
|
3992
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4023
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
3993
4024
|
readonly nullable: true;
|
|
3994
4025
|
};
|
|
3995
4026
|
readonly is_anonymous: {
|
|
@@ -4085,7 +4116,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4085
4116
|
};
|
|
4086
4117
|
readonly created_at: {
|
|
4087
4118
|
readonly nativeType: 'timestamptz';
|
|
4088
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4119
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4089
4120
|
readonly nullable: false;
|
|
4090
4121
|
readonly default: {
|
|
4091
4122
|
readonly kind: 'function';
|
|
@@ -4094,7 +4125,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4094
4125
|
};
|
|
4095
4126
|
readonly expires_at: {
|
|
4096
4127
|
readonly nativeType: 'timestamptz';
|
|
4097
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4128
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4098
4129
|
readonly nullable: false;
|
|
4099
4130
|
};
|
|
4100
4131
|
};
|
|
@@ -4216,7 +4247,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4216
4247
|
};
|
|
4217
4248
|
readonly created_at: {
|
|
4218
4249
|
readonly nativeType: 'timestamptz';
|
|
4219
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4250
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4220
4251
|
readonly nullable: false;
|
|
4221
4252
|
readonly default: {
|
|
4222
4253
|
readonly kind: 'function';
|
|
@@ -4225,7 +4256,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4225
4256
|
};
|
|
4226
4257
|
readonly updated_at: {
|
|
4227
4258
|
readonly nativeType: 'timestamptz';
|
|
4228
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4259
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4229
4260
|
readonly nullable: false;
|
|
4230
4261
|
readonly default: {
|
|
4231
4262
|
readonly kind: 'function';
|
|
@@ -4234,7 +4265,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4234
4265
|
};
|
|
4235
4266
|
readonly last_used_at: {
|
|
4236
4267
|
readonly nativeType: 'timestamptz';
|
|
4237
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4268
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4238
4269
|
readonly nullable: true;
|
|
4239
4270
|
};
|
|
4240
4271
|
};
|
|
@@ -4339,7 +4370,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4339
4370
|
};
|
|
4340
4371
|
readonly created_at: {
|
|
4341
4372
|
readonly nativeType: 'timestamptz';
|
|
4342
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4373
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4343
4374
|
readonly nullable: true;
|
|
4344
4375
|
readonly default: {
|
|
4345
4376
|
readonly kind: 'function';
|
|
@@ -4348,7 +4379,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4348
4379
|
};
|
|
4349
4380
|
readonly updated_at: {
|
|
4350
4381
|
readonly nativeType: 'timestamptz';
|
|
4351
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4382
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4352
4383
|
readonly nullable: true;
|
|
4353
4384
|
readonly default: {
|
|
4354
4385
|
readonly kind: 'function';
|
|
@@ -4448,7 +4479,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4448
4479
|
};
|
|
4449
4480
|
readonly created_at: {
|
|
4450
4481
|
readonly nativeType: 'timestamptz';
|
|
4451
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4482
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4452
4483
|
readonly nullable: false;
|
|
4453
4484
|
readonly default: {
|
|
4454
4485
|
readonly kind: 'function';
|
|
@@ -4457,7 +4488,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4457
4488
|
};
|
|
4458
4489
|
readonly updated_at: {
|
|
4459
4490
|
readonly nativeType: 'timestamptz';
|
|
4460
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4491
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4461
4492
|
readonly nullable: false;
|
|
4462
4493
|
readonly default: {
|
|
4463
4494
|
readonly kind: 'function';
|
|
@@ -4466,7 +4497,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4466
4497
|
};
|
|
4467
4498
|
readonly deleted_at: {
|
|
4468
4499
|
readonly nativeType: 'timestamptz';
|
|
4469
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4500
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4470
4501
|
readonly nullable: true;
|
|
4471
4502
|
};
|
|
4472
4503
|
};
|
|
@@ -4504,7 +4535,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4504
4535
|
};
|
|
4505
4536
|
readonly created_at: {
|
|
4506
4537
|
readonly nativeType: 'timestamptz';
|
|
4507
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4538
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4508
4539
|
readonly nullable: false;
|
|
4509
4540
|
readonly default: {
|
|
4510
4541
|
readonly kind: 'function';
|
|
@@ -4513,7 +4544,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4513
4544
|
};
|
|
4514
4545
|
readonly updated_at: {
|
|
4515
4546
|
readonly nativeType: 'timestamptz';
|
|
4516
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4547
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4517
4548
|
readonly nullable: false;
|
|
4518
4549
|
readonly default: {
|
|
4519
4550
|
readonly kind: 'function';
|
|
@@ -4553,7 +4584,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4553
4584
|
};
|
|
4554
4585
|
readonly created_at: {
|
|
4555
4586
|
readonly nativeType: 'timestamptz';
|
|
4556
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4587
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4557
4588
|
readonly nullable: false;
|
|
4558
4589
|
readonly default: {
|
|
4559
4590
|
readonly kind: 'function';
|
|
@@ -4562,7 +4593,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4562
4593
|
};
|
|
4563
4594
|
readonly updated_at: {
|
|
4564
4595
|
readonly nativeType: 'timestamptz';
|
|
4565
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4596
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4566
4597
|
readonly nullable: false;
|
|
4567
4598
|
readonly default: {
|
|
4568
4599
|
readonly kind: 'function';
|
|
@@ -4644,7 +4675,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4644
4675
|
};
|
|
4645
4676
|
readonly created_at: {
|
|
4646
4677
|
readonly nativeType: 'timestamptz';
|
|
4647
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4678
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4648
4679
|
readonly nullable: false;
|
|
4649
4680
|
readonly default: {
|
|
4650
4681
|
readonly kind: 'function';
|
|
@@ -4653,7 +4684,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4653
4684
|
};
|
|
4654
4685
|
readonly updated_at: {
|
|
4655
4686
|
readonly nativeType: 'timestamptz';
|
|
4656
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4687
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4657
4688
|
readonly nullable: false;
|
|
4658
4689
|
readonly default: {
|
|
4659
4690
|
readonly kind: 'function';
|
|
@@ -4743,7 +4774,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4743
4774
|
};
|
|
4744
4775
|
readonly executed_at: {
|
|
4745
4776
|
readonly nativeType: 'timestamp';
|
|
4746
|
-
readonly codecId: 'pg/timestamp@1';
|
|
4777
|
+
readonly codecId: 'pg/timestamp-temporal@1';
|
|
4747
4778
|
readonly nullable: true;
|
|
4748
4779
|
readonly default: {
|
|
4749
4780
|
readonly kind: 'function';
|
|
@@ -4793,7 +4824,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4793
4824
|
};
|
|
4794
4825
|
readonly created_at: {
|
|
4795
4826
|
readonly nativeType: 'timestamptz';
|
|
4796
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4827
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4797
4828
|
readonly nullable: true;
|
|
4798
4829
|
readonly default: {
|
|
4799
4830
|
readonly kind: 'function';
|
|
@@ -4802,7 +4833,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4802
4833
|
};
|
|
4803
4834
|
readonly updated_at: {
|
|
4804
4835
|
readonly nativeType: 'timestamptz';
|
|
4805
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4836
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4806
4837
|
readonly nullable: true;
|
|
4807
4838
|
readonly default: {
|
|
4808
4839
|
readonly kind: 'function';
|
|
@@ -4811,7 +4842,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4811
4842
|
};
|
|
4812
4843
|
readonly last_accessed_at: {
|
|
4813
4844
|
readonly nativeType: 'timestamptz';
|
|
4814
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4845
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4815
4846
|
readonly nullable: true;
|
|
4816
4847
|
readonly default: {
|
|
4817
4848
|
readonly kind: 'function';
|
|
@@ -4918,7 +4949,7 @@ type ContractBase = Omit<Contract<{
|
|
|
4918
4949
|
};
|
|
4919
4950
|
readonly created_at: {
|
|
4920
4951
|
readonly nativeType: 'timestamptz';
|
|
4921
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
4952
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
4922
4953
|
readonly nullable: false;
|
|
4923
4954
|
readonly default: {
|
|
4924
4955
|
readonly kind: 'function';
|
|
@@ -5018,7 +5049,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5018
5049
|
};
|
|
5019
5050
|
readonly created_at: {
|
|
5020
5051
|
readonly nativeType: 'timestamptz';
|
|
5021
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5052
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5022
5053
|
readonly nullable: false;
|
|
5023
5054
|
readonly default: {
|
|
5024
5055
|
readonly kind: 'function';
|
|
@@ -5101,7 +5132,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5101
5132
|
};
|
|
5102
5133
|
readonly created_at: {
|
|
5103
5134
|
readonly nativeType: 'timestamptz';
|
|
5104
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5135
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5105
5136
|
readonly nullable: false;
|
|
5106
5137
|
readonly default: {
|
|
5107
5138
|
readonly kind: 'function';
|
|
@@ -5110,7 +5141,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5110
5141
|
};
|
|
5111
5142
|
readonly updated_at: {
|
|
5112
5143
|
readonly nativeType: 'timestamptz';
|
|
5113
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5144
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5114
5145
|
readonly nullable: false;
|
|
5115
5146
|
readonly default: {
|
|
5116
5147
|
readonly kind: 'function';
|
|
@@ -5155,7 +5186,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5155
5186
|
readonly types: {
|
|
5156
5187
|
readonly CreatedAt: {
|
|
5157
5188
|
readonly kind: 'codec-instance';
|
|
5158
|
-
readonly codecId: 'pg/timestamp@1';
|
|
5189
|
+
readonly codecId: 'pg/timestamp-temporal@1';
|
|
5159
5190
|
readonly nativeType: 'timestamp';
|
|
5160
5191
|
readonly typeParams: Record<string, never>;
|
|
5161
5192
|
};
|
|
@@ -5385,7 +5416,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5385
5416
|
readonly nullable: true;
|
|
5386
5417
|
readonly type: {
|
|
5387
5418
|
readonly kind: 'scalar';
|
|
5388
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5419
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5389
5420
|
};
|
|
5390
5421
|
};
|
|
5391
5422
|
readonly ipAddress: {
|
|
@@ -5460,21 +5491,21 @@ type ContractBase = Omit<Contract<{
|
|
|
5460
5491
|
readonly nullable: true;
|
|
5461
5492
|
readonly type: {
|
|
5462
5493
|
readonly kind: 'scalar';
|
|
5463
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5494
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5464
5495
|
};
|
|
5465
5496
|
};
|
|
5466
5497
|
readonly createdAt: {
|
|
5467
5498
|
readonly nullable: true;
|
|
5468
5499
|
readonly type: {
|
|
5469
5500
|
readonly kind: 'scalar';
|
|
5470
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5501
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5471
5502
|
};
|
|
5472
5503
|
};
|
|
5473
5504
|
readonly updatedAt: {
|
|
5474
5505
|
readonly nullable: true;
|
|
5475
5506
|
readonly type: {
|
|
5476
5507
|
readonly kind: 'scalar';
|
|
5477
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5508
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5478
5509
|
};
|
|
5479
5510
|
};
|
|
5480
5511
|
readonly email: {
|
|
@@ -5492,6 +5523,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5492
5523
|
readonly model: 'AuthUser';
|
|
5493
5524
|
};
|
|
5494
5525
|
readonly cardinality: 'N:1';
|
|
5526
|
+
readonly nullable: false;
|
|
5495
5527
|
readonly on: {
|
|
5496
5528
|
readonly localFields: readonly ['userId'];
|
|
5497
5529
|
readonly targetFields: readonly ['id'];
|
|
@@ -5552,14 +5584,14 @@ type ContractBase = Omit<Contract<{
|
|
|
5552
5584
|
readonly nullable: true;
|
|
5553
5585
|
readonly type: {
|
|
5554
5586
|
readonly kind: 'scalar';
|
|
5555
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5587
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5556
5588
|
};
|
|
5557
5589
|
};
|
|
5558
5590
|
readonly updatedAt: {
|
|
5559
5591
|
readonly nullable: true;
|
|
5560
5592
|
readonly type: {
|
|
5561
5593
|
readonly kind: 'scalar';
|
|
5562
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5594
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5563
5595
|
};
|
|
5564
5596
|
};
|
|
5565
5597
|
readonly factorId: {
|
|
@@ -5583,14 +5615,14 @@ type ContractBase = Omit<Contract<{
|
|
|
5583
5615
|
readonly nullable: true;
|
|
5584
5616
|
readonly type: {
|
|
5585
5617
|
readonly kind: 'scalar';
|
|
5586
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5618
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5587
5619
|
};
|
|
5588
5620
|
};
|
|
5589
5621
|
readonly refreshedAt: {
|
|
5590
5622
|
readonly nullable: true;
|
|
5591
5623
|
readonly type: {
|
|
5592
5624
|
readonly kind: 'scalar';
|
|
5593
|
-
readonly codecId: 'pg/timestamp@1';
|
|
5625
|
+
readonly codecId: 'pg/timestamp-temporal@1';
|
|
5594
5626
|
};
|
|
5595
5627
|
};
|
|
5596
5628
|
readonly userAgent: {
|
|
@@ -5661,6 +5693,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5661
5693
|
readonly model: 'OauthClients';
|
|
5662
5694
|
};
|
|
5663
5695
|
readonly cardinality: 'N:1';
|
|
5696
|
+
readonly nullable: true;
|
|
5664
5697
|
readonly on: {
|
|
5665
5698
|
readonly localFields: readonly ['oauthClientId'];
|
|
5666
5699
|
readonly targetFields: readonly ['id'];
|
|
@@ -5683,6 +5716,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5683
5716
|
readonly model: 'AuthUser';
|
|
5684
5717
|
};
|
|
5685
5718
|
readonly cardinality: 'N:1';
|
|
5719
|
+
readonly nullable: false;
|
|
5686
5720
|
readonly on: {
|
|
5687
5721
|
readonly localFields: readonly ['userId'];
|
|
5688
5722
|
readonly targetFields: readonly ['id'];
|
|
@@ -5789,14 +5823,14 @@ type ContractBase = Omit<Contract<{
|
|
|
5789
5823
|
readonly nullable: true;
|
|
5790
5824
|
readonly type: {
|
|
5791
5825
|
readonly kind: 'scalar';
|
|
5792
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5826
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5793
5827
|
};
|
|
5794
5828
|
};
|
|
5795
5829
|
readonly invitedAt: {
|
|
5796
5830
|
readonly nullable: true;
|
|
5797
5831
|
readonly type: {
|
|
5798
5832
|
readonly kind: 'scalar';
|
|
5799
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5833
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5800
5834
|
};
|
|
5801
5835
|
};
|
|
5802
5836
|
readonly confirmationToken: {
|
|
@@ -5810,7 +5844,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5810
5844
|
readonly nullable: true;
|
|
5811
5845
|
readonly type: {
|
|
5812
5846
|
readonly kind: 'scalar';
|
|
5813
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5847
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5814
5848
|
};
|
|
5815
5849
|
};
|
|
5816
5850
|
readonly recoveryToken: {
|
|
@@ -5824,7 +5858,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5824
5858
|
readonly nullable: true;
|
|
5825
5859
|
readonly type: {
|
|
5826
5860
|
readonly kind: 'scalar';
|
|
5827
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5861
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5828
5862
|
};
|
|
5829
5863
|
};
|
|
5830
5864
|
readonly emailChangeTokenNew: {
|
|
@@ -5845,14 +5879,14 @@ type ContractBase = Omit<Contract<{
|
|
|
5845
5879
|
readonly nullable: true;
|
|
5846
5880
|
readonly type: {
|
|
5847
5881
|
readonly kind: 'scalar';
|
|
5848
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5882
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5849
5883
|
};
|
|
5850
5884
|
};
|
|
5851
5885
|
readonly lastSignInAt: {
|
|
5852
5886
|
readonly nullable: true;
|
|
5853
5887
|
readonly type: {
|
|
5854
5888
|
readonly kind: 'scalar';
|
|
5855
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5889
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5856
5890
|
};
|
|
5857
5891
|
};
|
|
5858
5892
|
readonly rawAppMetaData: {
|
|
@@ -5880,14 +5914,14 @@ type ContractBase = Omit<Contract<{
|
|
|
5880
5914
|
readonly nullable: true;
|
|
5881
5915
|
readonly type: {
|
|
5882
5916
|
readonly kind: 'scalar';
|
|
5883
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5917
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5884
5918
|
};
|
|
5885
5919
|
};
|
|
5886
5920
|
readonly updatedAt: {
|
|
5887
5921
|
readonly nullable: true;
|
|
5888
5922
|
readonly type: {
|
|
5889
5923
|
readonly kind: 'scalar';
|
|
5890
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5924
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5891
5925
|
};
|
|
5892
5926
|
};
|
|
5893
5927
|
readonly phone: {
|
|
@@ -5901,7 +5935,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5901
5935
|
readonly nullable: true;
|
|
5902
5936
|
readonly type: {
|
|
5903
5937
|
readonly kind: 'scalar';
|
|
5904
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5938
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5905
5939
|
};
|
|
5906
5940
|
};
|
|
5907
5941
|
readonly phoneChange: {
|
|
@@ -5922,14 +5956,14 @@ type ContractBase = Omit<Contract<{
|
|
|
5922
5956
|
readonly nullable: true;
|
|
5923
5957
|
readonly type: {
|
|
5924
5958
|
readonly kind: 'scalar';
|
|
5925
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5959
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5926
5960
|
};
|
|
5927
5961
|
};
|
|
5928
5962
|
readonly confirmedAt: {
|
|
5929
5963
|
readonly nullable: true;
|
|
5930
5964
|
readonly type: {
|
|
5931
5965
|
readonly kind: 'scalar';
|
|
5932
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5966
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5933
5967
|
};
|
|
5934
5968
|
};
|
|
5935
5969
|
readonly emailChangeTokenCurrent: {
|
|
@@ -5950,7 +5984,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5950
5984
|
readonly nullable: true;
|
|
5951
5985
|
readonly type: {
|
|
5952
5986
|
readonly kind: 'scalar';
|
|
5953
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
5987
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5954
5988
|
};
|
|
5955
5989
|
};
|
|
5956
5990
|
readonly reauthenticationToken: {
|
|
@@ -5964,7 +5998,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5964
5998
|
readonly nullable: true;
|
|
5965
5999
|
readonly type: {
|
|
5966
6000
|
readonly kind: 'scalar';
|
|
5967
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6001
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5968
6002
|
};
|
|
5969
6003
|
};
|
|
5970
6004
|
readonly isSsoUser: {
|
|
@@ -5978,7 +6012,7 @@ type ContractBase = Omit<Contract<{
|
|
|
5978
6012
|
readonly nullable: true;
|
|
5979
6013
|
readonly type: {
|
|
5980
6014
|
readonly kind: 'scalar';
|
|
5981
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6015
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
5982
6016
|
};
|
|
5983
6017
|
};
|
|
5984
6018
|
readonly isAnonymous: {
|
|
@@ -6318,7 +6352,7 @@ type ContractBase = Omit<Contract<{
|
|
|
6318
6352
|
readonly nullable: true;
|
|
6319
6353
|
readonly type: {
|
|
6320
6354
|
readonly kind: 'scalar';
|
|
6321
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6355
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6322
6356
|
};
|
|
6323
6357
|
};
|
|
6324
6358
|
readonly authorizationUrl: {
|
|
@@ -6353,14 +6387,14 @@ type ContractBase = Omit<Contract<{
|
|
|
6353
6387
|
readonly nullable: false;
|
|
6354
6388
|
readonly type: {
|
|
6355
6389
|
readonly kind: 'scalar';
|
|
6356
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6390
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6357
6391
|
};
|
|
6358
6392
|
};
|
|
6359
6393
|
readonly updatedAt: {
|
|
6360
6394
|
readonly nullable: false;
|
|
6361
6395
|
readonly type: {
|
|
6362
6396
|
readonly kind: 'scalar';
|
|
6363
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6397
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6364
6398
|
};
|
|
6365
6399
|
};
|
|
6366
6400
|
};
|
|
@@ -6509,14 +6543,14 @@ type ContractBase = Omit<Contract<{
|
|
|
6509
6543
|
readonly nullable: true;
|
|
6510
6544
|
readonly type: {
|
|
6511
6545
|
readonly kind: 'scalar';
|
|
6512
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6546
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6513
6547
|
};
|
|
6514
6548
|
};
|
|
6515
6549
|
readonly updatedAt: {
|
|
6516
6550
|
readonly nullable: true;
|
|
6517
6551
|
readonly type: {
|
|
6518
6552
|
readonly kind: 'scalar';
|
|
6519
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6553
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6520
6554
|
};
|
|
6521
6555
|
};
|
|
6522
6556
|
readonly authenticationMethod: {
|
|
@@ -6530,7 +6564,7 @@ type ContractBase = Omit<Contract<{
|
|
|
6530
6564
|
readonly nullable: true;
|
|
6531
6565
|
readonly type: {
|
|
6532
6566
|
readonly kind: 'scalar';
|
|
6533
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6567
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6534
6568
|
};
|
|
6535
6569
|
};
|
|
6536
6570
|
readonly inviteToken: {
|
|
@@ -6667,14 +6701,14 @@ type ContractBase = Omit<Contract<{
|
|
|
6667
6701
|
readonly nullable: true;
|
|
6668
6702
|
readonly type: {
|
|
6669
6703
|
readonly kind: 'scalar';
|
|
6670
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6704
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6671
6705
|
};
|
|
6672
6706
|
};
|
|
6673
6707
|
readonly updatedAt: {
|
|
6674
6708
|
readonly nullable: true;
|
|
6675
6709
|
readonly type: {
|
|
6676
6710
|
readonly kind: 'scalar';
|
|
6677
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6711
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6678
6712
|
};
|
|
6679
6713
|
};
|
|
6680
6714
|
};
|
|
@@ -6721,14 +6755,14 @@ type ContractBase = Omit<Contract<{
|
|
|
6721
6755
|
readonly nullable: false;
|
|
6722
6756
|
readonly type: {
|
|
6723
6757
|
readonly kind: 'scalar';
|
|
6724
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6758
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6725
6759
|
};
|
|
6726
6760
|
};
|
|
6727
6761
|
readonly updatedAt: {
|
|
6728
6762
|
readonly nullable: false;
|
|
6729
6763
|
readonly type: {
|
|
6730
6764
|
readonly kind: 'scalar';
|
|
6731
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6765
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6732
6766
|
};
|
|
6733
6767
|
};
|
|
6734
6768
|
readonly authenticationMethod: {
|
|
@@ -6746,6 +6780,7 @@ type ContractBase = Omit<Contract<{
|
|
|
6746
6780
|
readonly model: 'AuthSession';
|
|
6747
6781
|
};
|
|
6748
6782
|
readonly cardinality: 'N:1';
|
|
6783
|
+
readonly nullable: false;
|
|
6749
6784
|
readonly on: {
|
|
6750
6785
|
readonly localFields: readonly ['sessionId'];
|
|
6751
6786
|
readonly targetFields: readonly ['id'];
|
|
@@ -6794,14 +6829,14 @@ type ContractBase = Omit<Contract<{
|
|
|
6794
6829
|
readonly nullable: false;
|
|
6795
6830
|
readonly type: {
|
|
6796
6831
|
readonly kind: 'scalar';
|
|
6797
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6832
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6798
6833
|
};
|
|
6799
6834
|
};
|
|
6800
6835
|
readonly verifiedAt: {
|
|
6801
6836
|
readonly nullable: true;
|
|
6802
6837
|
readonly type: {
|
|
6803
6838
|
readonly kind: 'scalar';
|
|
6804
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6839
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6805
6840
|
};
|
|
6806
6841
|
};
|
|
6807
6842
|
readonly ipAddress: {
|
|
@@ -6833,6 +6868,7 @@ type ContractBase = Omit<Contract<{
|
|
|
6833
6868
|
readonly model: 'MfaFactors';
|
|
6834
6869
|
};
|
|
6835
6870
|
readonly cardinality: 'N:1';
|
|
6871
|
+
readonly nullable: false;
|
|
6836
6872
|
readonly on: {
|
|
6837
6873
|
readonly localFields: readonly ['factorId'];
|
|
6838
6874
|
readonly targetFields: readonly ['id'];
|
|
@@ -6914,14 +6950,14 @@ type ContractBase = Omit<Contract<{
|
|
|
6914
6950
|
readonly nullable: false;
|
|
6915
6951
|
readonly type: {
|
|
6916
6952
|
readonly kind: 'scalar';
|
|
6917
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6953
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6918
6954
|
};
|
|
6919
6955
|
};
|
|
6920
6956
|
readonly updatedAt: {
|
|
6921
6957
|
readonly nullable: false;
|
|
6922
6958
|
readonly type: {
|
|
6923
6959
|
readonly kind: 'scalar';
|
|
6924
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6960
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6925
6961
|
};
|
|
6926
6962
|
};
|
|
6927
6963
|
readonly secret: {
|
|
@@ -6942,7 +6978,7 @@ type ContractBase = Omit<Contract<{
|
|
|
6942
6978
|
readonly nullable: true;
|
|
6943
6979
|
readonly type: {
|
|
6944
6980
|
readonly kind: 'scalar';
|
|
6945
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
6981
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
6946
6982
|
};
|
|
6947
6983
|
};
|
|
6948
6984
|
readonly webAuthnCredential: {
|
|
@@ -6985,6 +7021,7 @@ type ContractBase = Omit<Contract<{
|
|
|
6985
7021
|
readonly model: 'AuthUser';
|
|
6986
7022
|
};
|
|
6987
7023
|
readonly cardinality: 'N:1';
|
|
7024
|
+
readonly nullable: false;
|
|
6988
7025
|
readonly on: {
|
|
6989
7026
|
readonly localFields: readonly ['userId'];
|
|
6990
7027
|
readonly targetFields: readonly ['id'];
|
|
@@ -7143,21 +7180,21 @@ type ContractBase = Omit<Contract<{
|
|
|
7143
7180
|
readonly nullable: false;
|
|
7144
7181
|
readonly type: {
|
|
7145
7182
|
readonly kind: 'scalar';
|
|
7146
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7183
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7147
7184
|
};
|
|
7148
7185
|
};
|
|
7149
7186
|
readonly expiresAt: {
|
|
7150
7187
|
readonly nullable: false;
|
|
7151
7188
|
readonly type: {
|
|
7152
7189
|
readonly kind: 'scalar';
|
|
7153
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7190
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7154
7191
|
};
|
|
7155
7192
|
};
|
|
7156
7193
|
readonly approvedAt: {
|
|
7157
7194
|
readonly nullable: true;
|
|
7158
7195
|
readonly type: {
|
|
7159
7196
|
readonly kind: 'scalar';
|
|
7160
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7197
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7161
7198
|
};
|
|
7162
7199
|
};
|
|
7163
7200
|
readonly nonce: {
|
|
@@ -7175,6 +7212,7 @@ type ContractBase = Omit<Contract<{
|
|
|
7175
7212
|
readonly model: 'OauthClients';
|
|
7176
7213
|
};
|
|
7177
7214
|
readonly cardinality: 'N:1';
|
|
7215
|
+
readonly nullable: false;
|
|
7178
7216
|
readonly on: {
|
|
7179
7217
|
readonly localFields: readonly ['clientId'];
|
|
7180
7218
|
readonly targetFields: readonly ['id'];
|
|
@@ -7186,6 +7224,7 @@ type ContractBase = Omit<Contract<{
|
|
|
7186
7224
|
readonly model: 'AuthUser';
|
|
7187
7225
|
};
|
|
7188
7226
|
readonly cardinality: 'N:1';
|
|
7227
|
+
readonly nullable: true;
|
|
7189
7228
|
readonly on: {
|
|
7190
7229
|
readonly localFields: readonly ['userId'];
|
|
7191
7230
|
readonly targetFields: readonly ['id'];
|
|
@@ -7315,21 +7354,21 @@ type ContractBase = Omit<Contract<{
|
|
|
7315
7354
|
readonly nullable: false;
|
|
7316
7355
|
readonly type: {
|
|
7317
7356
|
readonly kind: 'scalar';
|
|
7318
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7357
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7319
7358
|
};
|
|
7320
7359
|
};
|
|
7321
7360
|
readonly updatedAt: {
|
|
7322
7361
|
readonly nullable: false;
|
|
7323
7362
|
readonly type: {
|
|
7324
7363
|
readonly kind: 'scalar';
|
|
7325
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7364
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7326
7365
|
};
|
|
7327
7366
|
};
|
|
7328
7367
|
readonly deletedAt: {
|
|
7329
7368
|
readonly nullable: true;
|
|
7330
7369
|
readonly type: {
|
|
7331
7370
|
readonly kind: 'scalar';
|
|
7332
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7371
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7333
7372
|
};
|
|
7334
7373
|
};
|
|
7335
7374
|
readonly clientType: {
|
|
@@ -7458,7 +7497,7 @@ type ContractBase = Omit<Contract<{
|
|
|
7458
7497
|
readonly nullable: false;
|
|
7459
7498
|
readonly type: {
|
|
7460
7499
|
readonly kind: 'scalar';
|
|
7461
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7500
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7462
7501
|
};
|
|
7463
7502
|
};
|
|
7464
7503
|
};
|
|
@@ -7516,14 +7555,14 @@ type ContractBase = Omit<Contract<{
|
|
|
7516
7555
|
readonly nullable: false;
|
|
7517
7556
|
readonly type: {
|
|
7518
7557
|
readonly kind: 'scalar';
|
|
7519
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7558
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7520
7559
|
};
|
|
7521
7560
|
};
|
|
7522
7561
|
readonly revokedAt: {
|
|
7523
7562
|
readonly nullable: true;
|
|
7524
7563
|
readonly type: {
|
|
7525
7564
|
readonly kind: 'scalar';
|
|
7526
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7565
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7527
7566
|
};
|
|
7528
7567
|
};
|
|
7529
7568
|
};
|
|
@@ -7534,6 +7573,7 @@ type ContractBase = Omit<Contract<{
|
|
|
7534
7573
|
readonly model: 'OauthClients';
|
|
7535
7574
|
};
|
|
7536
7575
|
readonly cardinality: 'N:1';
|
|
7576
|
+
readonly nullable: false;
|
|
7537
7577
|
readonly on: {
|
|
7538
7578
|
readonly localFields: readonly ['clientId'];
|
|
7539
7579
|
readonly targetFields: readonly ['id'];
|
|
@@ -7545,6 +7585,7 @@ type ContractBase = Omit<Contract<{
|
|
|
7545
7585
|
readonly model: 'AuthUser';
|
|
7546
7586
|
};
|
|
7547
7587
|
readonly cardinality: 'N:1';
|
|
7588
|
+
readonly nullable: false;
|
|
7548
7589
|
readonly on: {
|
|
7549
7590
|
readonly localFields: readonly ['userId'];
|
|
7550
7591
|
readonly targetFields: readonly ['id'];
|
|
@@ -7620,14 +7661,14 @@ type ContractBase = Omit<Contract<{
|
|
|
7620
7661
|
readonly nullable: false;
|
|
7621
7662
|
readonly type: {
|
|
7622
7663
|
readonly kind: 'scalar';
|
|
7623
|
-
readonly codecId: 'pg/timestamp@1';
|
|
7664
|
+
readonly codecId: 'pg/timestamp-temporal@1';
|
|
7624
7665
|
};
|
|
7625
7666
|
};
|
|
7626
7667
|
readonly updatedAt: {
|
|
7627
7668
|
readonly nullable: false;
|
|
7628
7669
|
readonly type: {
|
|
7629
7670
|
readonly kind: 'scalar';
|
|
7630
|
-
readonly codecId: 'pg/timestamp@1';
|
|
7671
|
+
readonly codecId: 'pg/timestamp-temporal@1';
|
|
7631
7672
|
};
|
|
7632
7673
|
};
|
|
7633
7674
|
};
|
|
@@ -7638,6 +7679,7 @@ type ContractBase = Omit<Contract<{
|
|
|
7638
7679
|
readonly model: 'AuthUser';
|
|
7639
7680
|
};
|
|
7640
7681
|
readonly cardinality: 'N:1';
|
|
7682
|
+
readonly nullable: false;
|
|
7641
7683
|
readonly on: {
|
|
7642
7684
|
readonly localFields: readonly ['userId'];
|
|
7643
7685
|
readonly targetFields: readonly ['id'];
|
|
@@ -7713,14 +7755,14 @@ type ContractBase = Omit<Contract<{
|
|
|
7713
7755
|
readonly nullable: true;
|
|
7714
7756
|
readonly type: {
|
|
7715
7757
|
readonly kind: 'scalar';
|
|
7716
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7758
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7717
7759
|
};
|
|
7718
7760
|
};
|
|
7719
7761
|
readonly updatedAt: {
|
|
7720
7762
|
readonly nullable: true;
|
|
7721
7763
|
readonly type: {
|
|
7722
7764
|
readonly kind: 'scalar';
|
|
7723
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7765
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7724
7766
|
};
|
|
7725
7767
|
};
|
|
7726
7768
|
readonly parent: {
|
|
@@ -7745,6 +7787,7 @@ type ContractBase = Omit<Contract<{
|
|
|
7745
7787
|
readonly model: 'AuthSession';
|
|
7746
7788
|
};
|
|
7747
7789
|
readonly cardinality: 'N:1';
|
|
7790
|
+
readonly nullable: true;
|
|
7748
7791
|
readonly on: {
|
|
7749
7792
|
readonly localFields: readonly ['sessionId'];
|
|
7750
7793
|
readonly targetFields: readonly ['id'];
|
|
@@ -7833,14 +7876,14 @@ type ContractBase = Omit<Contract<{
|
|
|
7833
7876
|
readonly nullable: true;
|
|
7834
7877
|
readonly type: {
|
|
7835
7878
|
readonly kind: 'scalar';
|
|
7836
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7879
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7837
7880
|
};
|
|
7838
7881
|
};
|
|
7839
7882
|
readonly updatedAt: {
|
|
7840
7883
|
readonly nullable: true;
|
|
7841
7884
|
readonly type: {
|
|
7842
7885
|
readonly kind: 'scalar';
|
|
7843
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7886
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7844
7887
|
};
|
|
7845
7888
|
};
|
|
7846
7889
|
readonly nameIdFormat: {
|
|
@@ -7858,6 +7901,7 @@ type ContractBase = Omit<Contract<{
|
|
|
7858
7901
|
readonly model: 'SsoProviders';
|
|
7859
7902
|
};
|
|
7860
7903
|
readonly cardinality: 'N:1';
|
|
7904
|
+
readonly nullable: false;
|
|
7861
7905
|
readonly on: {
|
|
7862
7906
|
readonly localFields: readonly ['ssoProviderId'];
|
|
7863
7907
|
readonly targetFields: readonly ['id'];
|
|
@@ -7939,14 +7983,14 @@ type ContractBase = Omit<Contract<{
|
|
|
7939
7983
|
readonly nullable: true;
|
|
7940
7984
|
readonly type: {
|
|
7941
7985
|
readonly kind: 'scalar';
|
|
7942
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7986
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7943
7987
|
};
|
|
7944
7988
|
};
|
|
7945
7989
|
readonly updatedAt: {
|
|
7946
7990
|
readonly nullable: true;
|
|
7947
7991
|
readonly type: {
|
|
7948
7992
|
readonly kind: 'scalar';
|
|
7949
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
7993
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
7950
7994
|
};
|
|
7951
7995
|
};
|
|
7952
7996
|
readonly flowStateId: {
|
|
@@ -7964,6 +8008,7 @@ type ContractBase = Omit<Contract<{
|
|
|
7964
8008
|
readonly model: 'FlowState';
|
|
7965
8009
|
};
|
|
7966
8010
|
readonly cardinality: 'N:1';
|
|
8011
|
+
readonly nullable: true;
|
|
7967
8012
|
readonly on: {
|
|
7968
8013
|
readonly localFields: readonly ['flowStateId'];
|
|
7969
8014
|
readonly targetFields: readonly ['id'];
|
|
@@ -7975,6 +8020,7 @@ type ContractBase = Omit<Contract<{
|
|
|
7975
8020
|
readonly model: 'SsoProviders';
|
|
7976
8021
|
};
|
|
7977
8022
|
readonly cardinality: 'N:1';
|
|
8023
|
+
readonly nullable: false;
|
|
7978
8024
|
readonly on: {
|
|
7979
8025
|
readonly localFields: readonly ['ssoProviderId'];
|
|
7980
8026
|
readonly targetFields: readonly ['id'];
|
|
@@ -8060,14 +8106,14 @@ type ContractBase = Omit<Contract<{
|
|
|
8060
8106
|
readonly nullable: true;
|
|
8061
8107
|
readonly type: {
|
|
8062
8108
|
readonly kind: 'scalar';
|
|
8063
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8109
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8064
8110
|
};
|
|
8065
8111
|
};
|
|
8066
8112
|
readonly updatedAt: {
|
|
8067
8113
|
readonly nullable: true;
|
|
8068
8114
|
readonly type: {
|
|
8069
8115
|
readonly kind: 'scalar';
|
|
8070
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8116
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8071
8117
|
};
|
|
8072
8118
|
};
|
|
8073
8119
|
};
|
|
@@ -8078,6 +8124,7 @@ type ContractBase = Omit<Contract<{
|
|
|
8078
8124
|
readonly model: 'SsoProviders';
|
|
8079
8125
|
};
|
|
8080
8126
|
readonly cardinality: 'N:1';
|
|
8127
|
+
readonly nullable: false;
|
|
8081
8128
|
readonly on: {
|
|
8082
8129
|
readonly localFields: readonly ['ssoProviderId'];
|
|
8083
8130
|
readonly targetFields: readonly ['id'];
|
|
@@ -8126,14 +8173,14 @@ type ContractBase = Omit<Contract<{
|
|
|
8126
8173
|
readonly nullable: true;
|
|
8127
8174
|
readonly type: {
|
|
8128
8175
|
readonly kind: 'scalar';
|
|
8129
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8176
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8130
8177
|
};
|
|
8131
8178
|
};
|
|
8132
8179
|
readonly updatedAt: {
|
|
8133
8180
|
readonly nullable: true;
|
|
8134
8181
|
readonly type: {
|
|
8135
8182
|
readonly kind: 'scalar';
|
|
8136
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8183
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8137
8184
|
};
|
|
8138
8185
|
};
|
|
8139
8186
|
readonly disabled: {
|
|
@@ -8235,14 +8282,14 @@ type ContractBase = Omit<Contract<{
|
|
|
8235
8282
|
readonly nullable: false;
|
|
8236
8283
|
readonly type: {
|
|
8237
8284
|
readonly kind: 'scalar';
|
|
8238
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8285
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8239
8286
|
};
|
|
8240
8287
|
};
|
|
8241
8288
|
readonly expiresAt: {
|
|
8242
8289
|
readonly nullable: false;
|
|
8243
8290
|
readonly type: {
|
|
8244
8291
|
readonly kind: 'scalar';
|
|
8245
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8292
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8246
8293
|
};
|
|
8247
8294
|
};
|
|
8248
8295
|
};
|
|
@@ -8253,6 +8300,7 @@ type ContractBase = Omit<Contract<{
|
|
|
8253
8300
|
readonly model: 'AuthUser';
|
|
8254
8301
|
};
|
|
8255
8302
|
readonly cardinality: 'N:1';
|
|
8303
|
+
readonly nullable: true;
|
|
8256
8304
|
readonly on: {
|
|
8257
8305
|
readonly localFields: readonly ['userId'];
|
|
8258
8306
|
readonly targetFields: readonly ['id'];
|
|
@@ -8367,21 +8415,21 @@ type ContractBase = Omit<Contract<{
|
|
|
8367
8415
|
readonly nullable: false;
|
|
8368
8416
|
readonly type: {
|
|
8369
8417
|
readonly kind: 'scalar';
|
|
8370
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8418
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8371
8419
|
};
|
|
8372
8420
|
};
|
|
8373
8421
|
readonly updatedAt: {
|
|
8374
8422
|
readonly nullable: false;
|
|
8375
8423
|
readonly type: {
|
|
8376
8424
|
readonly kind: 'scalar';
|
|
8377
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8425
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8378
8426
|
};
|
|
8379
8427
|
};
|
|
8380
8428
|
readonly lastUsedAt: {
|
|
8381
8429
|
readonly nullable: true;
|
|
8382
8430
|
readonly type: {
|
|
8383
8431
|
readonly kind: 'scalar';
|
|
8384
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8432
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8385
8433
|
};
|
|
8386
8434
|
};
|
|
8387
8435
|
};
|
|
@@ -8392,6 +8440,7 @@ type ContractBase = Omit<Contract<{
|
|
|
8392
8440
|
readonly model: 'AuthUser';
|
|
8393
8441
|
};
|
|
8394
8442
|
readonly cardinality: 'N:1';
|
|
8443
|
+
readonly nullable: false;
|
|
8395
8444
|
readonly on: {
|
|
8396
8445
|
readonly localFields: readonly ['userId'];
|
|
8397
8446
|
readonly targetFields: readonly ['id'];
|
|
@@ -8488,21 +8537,21 @@ type ContractBase = Omit<Contract<{
|
|
|
8488
8537
|
readonly nullable: false;
|
|
8489
8538
|
readonly type: {
|
|
8490
8539
|
readonly kind: 'scalar';
|
|
8491
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8540
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8492
8541
|
};
|
|
8493
8542
|
};
|
|
8494
8543
|
readonly updatedAt: {
|
|
8495
8544
|
readonly nullable: false;
|
|
8496
8545
|
readonly type: {
|
|
8497
8546
|
readonly kind: 'scalar';
|
|
8498
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8547
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8499
8548
|
};
|
|
8500
8549
|
};
|
|
8501
8550
|
readonly deletedAt: {
|
|
8502
8551
|
readonly nullable: true;
|
|
8503
8552
|
readonly type: {
|
|
8504
8553
|
readonly kind: 'scalar';
|
|
8505
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8554
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8506
8555
|
};
|
|
8507
8556
|
};
|
|
8508
8557
|
};
|
|
@@ -8581,14 +8630,14 @@ type ContractBase = Omit<Contract<{
|
|
|
8581
8630
|
readonly nullable: false;
|
|
8582
8631
|
readonly type: {
|
|
8583
8632
|
readonly kind: 'scalar';
|
|
8584
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8633
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8585
8634
|
};
|
|
8586
8635
|
};
|
|
8587
8636
|
readonly updatedAt: {
|
|
8588
8637
|
readonly nullable: false;
|
|
8589
8638
|
readonly type: {
|
|
8590
8639
|
readonly kind: 'scalar';
|
|
8591
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8640
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8592
8641
|
};
|
|
8593
8642
|
};
|
|
8594
8643
|
};
|
|
@@ -8651,14 +8700,14 @@ type ContractBase = Omit<Contract<{
|
|
|
8651
8700
|
readonly nullable: false;
|
|
8652
8701
|
readonly type: {
|
|
8653
8702
|
readonly kind: 'scalar';
|
|
8654
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8703
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8655
8704
|
};
|
|
8656
8705
|
};
|
|
8657
8706
|
readonly updatedAt: {
|
|
8658
8707
|
readonly nullable: false;
|
|
8659
8708
|
readonly type: {
|
|
8660
8709
|
readonly kind: 'scalar';
|
|
8661
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8710
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8662
8711
|
};
|
|
8663
8712
|
};
|
|
8664
8713
|
readonly metadata: {
|
|
@@ -8683,6 +8732,7 @@ type ContractBase = Omit<Contract<{
|
|
|
8683
8732
|
readonly model: 'BucketsAnalytics';
|
|
8684
8733
|
};
|
|
8685
8734
|
readonly cardinality: 'N:1';
|
|
8735
|
+
readonly nullable: false;
|
|
8686
8736
|
readonly on: {
|
|
8687
8737
|
readonly localFields: readonly ['catalogId'];
|
|
8688
8738
|
readonly targetFields: readonly ['id'];
|
|
@@ -8769,14 +8819,14 @@ type ContractBase = Omit<Contract<{
|
|
|
8769
8819
|
readonly nullable: false;
|
|
8770
8820
|
readonly type: {
|
|
8771
8821
|
readonly kind: 'scalar';
|
|
8772
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8822
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8773
8823
|
};
|
|
8774
8824
|
};
|
|
8775
8825
|
readonly updatedAt: {
|
|
8776
8826
|
readonly nullable: false;
|
|
8777
8827
|
readonly type: {
|
|
8778
8828
|
readonly kind: 'scalar';
|
|
8779
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
8829
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8780
8830
|
};
|
|
8781
8831
|
};
|
|
8782
8832
|
readonly remoteTableId: {
|
|
@@ -8815,6 +8865,7 @@ type ContractBase = Omit<Contract<{
|
|
|
8815
8865
|
readonly model: 'BucketsAnalytics';
|
|
8816
8866
|
};
|
|
8817
8867
|
readonly cardinality: 'N:1';
|
|
8868
|
+
readonly nullable: false;
|
|
8818
8869
|
readonly on: {
|
|
8819
8870
|
readonly localFields: readonly ['catalogId'];
|
|
8820
8871
|
readonly targetFields: readonly ['id'];
|
|
@@ -8826,6 +8877,7 @@ type ContractBase = Omit<Contract<{
|
|
|
8826
8877
|
readonly model: 'IcebergNamespaces';
|
|
8827
8878
|
};
|
|
8828
8879
|
readonly cardinality: 'N:1';
|
|
8880
|
+
readonly nullable: false;
|
|
8829
8881
|
readonly on: {
|
|
8830
8882
|
readonly localFields: readonly ['namespaceId'];
|
|
8831
8883
|
readonly targetFields: readonly ['id'];
|
|
@@ -8899,7 +8951,7 @@ type ContractBase = Omit<Contract<{
|
|
|
8899
8951
|
readonly nullable: true;
|
|
8900
8952
|
readonly type: {
|
|
8901
8953
|
readonly kind: 'scalar';
|
|
8902
|
-
readonly codecId: 'pg/timestamp@1';
|
|
8954
|
+
readonly codecId: 'pg/timestamp-temporal@1';
|
|
8903
8955
|
};
|
|
8904
8956
|
};
|
|
8905
8957
|
};
|
|
@@ -8978,7 +9030,7 @@ type ContractBase = Omit<Contract<{
|
|
|
8978
9030
|
readonly nullable: false;
|
|
8979
9031
|
readonly type: {
|
|
8980
9032
|
readonly kind: 'scalar';
|
|
8981
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
9033
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
8982
9034
|
};
|
|
8983
9035
|
};
|
|
8984
9036
|
readonly userMetadata: {
|
|
@@ -9003,6 +9055,7 @@ type ContractBase = Omit<Contract<{
|
|
|
9003
9055
|
readonly model: 'StorageBucket';
|
|
9004
9056
|
};
|
|
9005
9057
|
readonly cardinality: 'N:1';
|
|
9058
|
+
readonly nullable: false;
|
|
9006
9059
|
readonly on: {
|
|
9007
9060
|
readonly localFields: readonly ['bucketId'];
|
|
9008
9061
|
readonly targetFields: readonly ['id'];
|
|
@@ -9126,7 +9179,7 @@ type ContractBase = Omit<Contract<{
|
|
|
9126
9179
|
readonly nullable: false;
|
|
9127
9180
|
readonly type: {
|
|
9128
9181
|
readonly kind: 'scalar';
|
|
9129
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
9182
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
9130
9183
|
};
|
|
9131
9184
|
};
|
|
9132
9185
|
};
|
|
@@ -9137,6 +9190,7 @@ type ContractBase = Omit<Contract<{
|
|
|
9137
9190
|
readonly model: 'StorageBucket';
|
|
9138
9191
|
};
|
|
9139
9192
|
readonly cardinality: 'N:1';
|
|
9193
|
+
readonly nullable: false;
|
|
9140
9194
|
readonly on: {
|
|
9141
9195
|
readonly localFields: readonly ['bucketId'];
|
|
9142
9196
|
readonly targetFields: readonly ['id'];
|
|
@@ -9148,6 +9202,7 @@ type ContractBase = Omit<Contract<{
|
|
|
9148
9202
|
readonly model: 'S3MultipartUploads';
|
|
9149
9203
|
};
|
|
9150
9204
|
readonly cardinality: 'N:1';
|
|
9205
|
+
readonly nullable: false;
|
|
9151
9206
|
readonly on: {
|
|
9152
9207
|
readonly localFields: readonly ['uploadId'];
|
|
9153
9208
|
readonly targetFields: readonly ['id'];
|
|
@@ -9218,14 +9273,14 @@ type ContractBase = Omit<Contract<{
|
|
|
9218
9273
|
readonly nullable: true;
|
|
9219
9274
|
readonly type: {
|
|
9220
9275
|
readonly kind: 'scalar';
|
|
9221
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
9276
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
9222
9277
|
};
|
|
9223
9278
|
};
|
|
9224
9279
|
readonly updatedAt: {
|
|
9225
9280
|
readonly nullable: true;
|
|
9226
9281
|
readonly type: {
|
|
9227
9282
|
readonly kind: 'scalar';
|
|
9228
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
9283
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
9229
9284
|
};
|
|
9230
9285
|
};
|
|
9231
9286
|
readonly public: {
|
|
@@ -9373,21 +9428,21 @@ type ContractBase = Omit<Contract<{
|
|
|
9373
9428
|
readonly nullable: true;
|
|
9374
9429
|
readonly type: {
|
|
9375
9430
|
readonly kind: 'scalar';
|
|
9376
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
9431
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
9377
9432
|
};
|
|
9378
9433
|
};
|
|
9379
9434
|
readonly updatedAt: {
|
|
9380
9435
|
readonly nullable: true;
|
|
9381
9436
|
readonly type: {
|
|
9382
9437
|
readonly kind: 'scalar';
|
|
9383
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
9438
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
9384
9439
|
};
|
|
9385
9440
|
};
|
|
9386
9441
|
readonly lastAccessedAt: {
|
|
9387
9442
|
readonly nullable: true;
|
|
9388
9443
|
readonly type: {
|
|
9389
9444
|
readonly kind: 'scalar';
|
|
9390
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
9445
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
9391
9446
|
};
|
|
9392
9447
|
};
|
|
9393
9448
|
readonly metadata: {
|
|
@@ -9426,6 +9481,7 @@ type ContractBase = Omit<Contract<{
|
|
|
9426
9481
|
readonly model: 'StorageBucket';
|
|
9427
9482
|
};
|
|
9428
9483
|
readonly cardinality: 'N:1';
|
|
9484
|
+
readonly nullable: true;
|
|
9429
9485
|
readonly on: {
|
|
9430
9486
|
readonly localFields: readonly ['bucketId'];
|
|
9431
9487
|
readonly targetFields: readonly ['id'];
|
|
@@ -9527,14 +9583,14 @@ type ContractBase = Omit<Contract<{
|
|
|
9527
9583
|
readonly nullable: false;
|
|
9528
9584
|
readonly type: {
|
|
9529
9585
|
readonly kind: 'scalar';
|
|
9530
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
9586
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
9531
9587
|
};
|
|
9532
9588
|
};
|
|
9533
9589
|
readonly updatedAt: {
|
|
9534
9590
|
readonly nullable: false;
|
|
9535
9591
|
readonly type: {
|
|
9536
9592
|
readonly kind: 'scalar';
|
|
9537
|
-
readonly codecId: 'pg/timestamptz@1';
|
|
9593
|
+
readonly codecId: 'pg/timestamptz-temporal@1';
|
|
9538
9594
|
};
|
|
9539
9595
|
};
|
|
9540
9596
|
};
|
|
@@ -9545,6 +9601,7 @@ type ContractBase = Omit<Contract<{
|
|
|
9545
9601
|
readonly model: 'BucketsVectors';
|
|
9546
9602
|
};
|
|
9547
9603
|
readonly cardinality: 'N:1';
|
|
9604
|
+
readonly nullable: false;
|
|
9548
9605
|
readonly on: {
|
|
9549
9606
|
readonly localFields: readonly ['bucketId'];
|
|
9550
9607
|
readonly targetFields: readonly ['id'];
|
|
@@ -9628,7 +9685,7 @@ type OrmClient<TContract extends Contract<SqlStorage>> = ReturnType<typeof orm<T
|
|
|
9628
9685
|
interface RoleBoundDb<TContract extends Contract<SqlStorage>> {
|
|
9629
9686
|
readonly sql: Db<TContract>;
|
|
9630
9687
|
readonly orm: OrmClient<TContract>;
|
|
9631
|
-
readonly raw:
|
|
9688
|
+
readonly raw: RawLane<TContract>;
|
|
9632
9689
|
query<Row>(plan: (SqlExecutionPlan<Row> | SqlQueryPlan<Row>) & {
|
|
9633
9690
|
readonly _row?: Row;
|
|
9634
9691
|
}, options?: RuntimeExecuteOptions): AsyncIterableResult<Row>;
|