@chatman-media/storage 1.4.1 → 1.6.0
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/dist/index.js +236 -70
- package/dist/schema.d.ts +417 -4
- package/dist/schema.d.ts.map +1 -1
- package/package.json +4 -4
package/dist/schema.d.ts
CHANGED
|
@@ -1165,7 +1165,9 @@ export declare const kbChunks: import("drizzle-orm/pg-core").PgTableWithColumns<
|
|
|
1165
1165
|
baseColumn: never;
|
|
1166
1166
|
identity: undefined;
|
|
1167
1167
|
generated: undefined;
|
|
1168
|
-
}, {}, {
|
|
1168
|
+
}, {}, {
|
|
1169
|
+
pgColumnBuilderBrand: "PgCustomColumnBuilderBrand";
|
|
1170
|
+
}>;
|
|
1169
1171
|
fts: import("drizzle-orm/pg-core").PgColumn<{
|
|
1170
1172
|
name: "fts";
|
|
1171
1173
|
tableName: "kb_chunks";
|
|
@@ -1182,7 +1184,9 @@ export declare const kbChunks: import("drizzle-orm/pg-core").PgTableWithColumns<
|
|
|
1182
1184
|
baseColumn: never;
|
|
1183
1185
|
identity: undefined;
|
|
1184
1186
|
generated: undefined;
|
|
1185
|
-
}, {}, {
|
|
1187
|
+
}, {}, {
|
|
1188
|
+
pgColumnBuilderBrand: "PgCustomColumnBuilderBrand";
|
|
1189
|
+
}>;
|
|
1186
1190
|
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
1187
1191
|
name: "created_at";
|
|
1188
1192
|
tableName: "kb_chunks";
|
|
@@ -1275,6 +1279,23 @@ export declare const admins: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
|
1275
1279
|
identity: undefined;
|
|
1276
1280
|
generated: undefined;
|
|
1277
1281
|
}, {}, {}>;
|
|
1282
|
+
name: import("drizzle-orm/pg-core").PgColumn<{
|
|
1283
|
+
name: "name";
|
|
1284
|
+
tableName: "admins";
|
|
1285
|
+
dataType: "string";
|
|
1286
|
+
columnType: "PgText";
|
|
1287
|
+
data: string;
|
|
1288
|
+
driverParam: string;
|
|
1289
|
+
notNull: false;
|
|
1290
|
+
hasDefault: false;
|
|
1291
|
+
isPrimaryKey: false;
|
|
1292
|
+
isAutoincrement: false;
|
|
1293
|
+
hasRuntimeDefault: false;
|
|
1294
|
+
enumValues: [string, ...string[]];
|
|
1295
|
+
baseColumn: never;
|
|
1296
|
+
identity: undefined;
|
|
1297
|
+
generated: undefined;
|
|
1298
|
+
}, {}, {}>;
|
|
1278
1299
|
role: import("drizzle-orm/pg-core").PgColumn<{
|
|
1279
1300
|
name: "role";
|
|
1280
1301
|
tableName: "admins";
|
|
@@ -1995,6 +2016,7 @@ export declare const vacancies: import("drizzle-orm/pg-core").PgTableWithColumns
|
|
|
1995
2016
|
}>;
|
|
1996
2017
|
export declare const STAGE_TYPES: readonly ["form_fill", "document_upload", "document_signature", "rate_confirmation", "external_approval", "payment", "waiting", "awaiting_operator", "interaction", "assessment", "milestone"];
|
|
1997
2018
|
export declare const STAGE_KINDS: readonly ["intake", "active", "terminal_won", "terminal_lost"];
|
|
2019
|
+
export declare const STAGE_PHASES: readonly ["qualify", "offer", "clear", "fulfill"];
|
|
1998
2020
|
export declare const FIELD_TYPES: readonly ["text", "textarea", "number", "date", "select", "multiselect", "boolean", "phone", "email", "file", "photo", "video"];
|
|
1999
2021
|
export declare const stageDefinitions: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
2000
2022
|
name: "stage_definitions";
|
|
@@ -2153,6 +2175,23 @@ export declare const stageDefinitions: import("drizzle-orm/pg-core").PgTableWith
|
|
|
2153
2175
|
identity: undefined;
|
|
2154
2176
|
generated: undefined;
|
|
2155
2177
|
}, {}, {}>;
|
|
2178
|
+
phase: import("drizzle-orm/pg-core").PgColumn<{
|
|
2179
|
+
name: "phase";
|
|
2180
|
+
tableName: "stage_definitions";
|
|
2181
|
+
dataType: "string";
|
|
2182
|
+
columnType: "PgText";
|
|
2183
|
+
data: string;
|
|
2184
|
+
driverParam: string;
|
|
2185
|
+
notNull: false;
|
|
2186
|
+
hasDefault: false;
|
|
2187
|
+
isPrimaryKey: false;
|
|
2188
|
+
isAutoincrement: false;
|
|
2189
|
+
hasRuntimeDefault: false;
|
|
2190
|
+
enumValues: [string, ...string[]];
|
|
2191
|
+
baseColumn: never;
|
|
2192
|
+
identity: undefined;
|
|
2193
|
+
generated: undefined;
|
|
2194
|
+
}, {}, {}>;
|
|
2156
2195
|
configJson: import("drizzle-orm/pg-core").PgColumn<{
|
|
2157
2196
|
name: "config_json";
|
|
2158
2197
|
tableName: "stage_definitions";
|
|
@@ -2199,10 +2238,20 @@ export declare const stageDefinitions: import("drizzle-orm/pg-core").PgTableWith
|
|
|
2199
2238
|
baseColumn: never;
|
|
2200
2239
|
identity: undefined;
|
|
2201
2240
|
generated: undefined;
|
|
2202
|
-
},
|
|
2241
|
+
}, {}, {}>;
|
|
2203
2242
|
identity: undefined;
|
|
2204
2243
|
generated: undefined;
|
|
2205
|
-
}, {}, {
|
|
2244
|
+
}, {}, {
|
|
2245
|
+
baseBuilder: import("drizzle-orm/pg-core").PgColumnBuilder<{
|
|
2246
|
+
name: "next_stages";
|
|
2247
|
+
dataType: "string";
|
|
2248
|
+
columnType: "PgText";
|
|
2249
|
+
data: string;
|
|
2250
|
+
enumValues: [string, ...string[]];
|
|
2251
|
+
driverParam: string;
|
|
2252
|
+
}, {}, {}, import("drizzle-orm").ColumnBuilderExtraConfig>;
|
|
2253
|
+
size: undefined;
|
|
2254
|
+
}>;
|
|
2206
2255
|
autoAdvanceCondition: import("drizzle-orm/pg-core").PgColumn<{
|
|
2207
2256
|
name: "auto_advance_condition";
|
|
2208
2257
|
tableName: "stage_definitions";
|
|
@@ -8283,6 +8332,125 @@ export declare const operatorSettings: import("drizzle-orm/pg-core").PgTableWith
|
|
|
8283
8332
|
identity: undefined;
|
|
8284
8333
|
generated: undefined;
|
|
8285
8334
|
}, {}, {}>;
|
|
8335
|
+
informerLevel: import("drizzle-orm/pg-core").PgColumn<{
|
|
8336
|
+
name: "informer_level";
|
|
8337
|
+
tableName: "operator_settings";
|
|
8338
|
+
dataType: "string";
|
|
8339
|
+
columnType: "PgText";
|
|
8340
|
+
data: string;
|
|
8341
|
+
driverParam: string;
|
|
8342
|
+
notNull: true;
|
|
8343
|
+
hasDefault: true;
|
|
8344
|
+
isPrimaryKey: false;
|
|
8345
|
+
isAutoincrement: false;
|
|
8346
|
+
hasRuntimeDefault: false;
|
|
8347
|
+
enumValues: [string, ...string[]];
|
|
8348
|
+
baseColumn: never;
|
|
8349
|
+
identity: undefined;
|
|
8350
|
+
generated: undefined;
|
|
8351
|
+
}, {}, {}>;
|
|
8352
|
+
informerTopics: import("drizzle-orm/pg-core").PgColumn<{
|
|
8353
|
+
name: "informer_topics";
|
|
8354
|
+
tableName: "operator_settings";
|
|
8355
|
+
dataType: "string";
|
|
8356
|
+
columnType: "PgText";
|
|
8357
|
+
data: string;
|
|
8358
|
+
driverParam: string;
|
|
8359
|
+
notNull: false;
|
|
8360
|
+
hasDefault: false;
|
|
8361
|
+
isPrimaryKey: false;
|
|
8362
|
+
isAutoincrement: false;
|
|
8363
|
+
hasRuntimeDefault: false;
|
|
8364
|
+
enumValues: [string, ...string[]];
|
|
8365
|
+
baseColumn: never;
|
|
8366
|
+
identity: undefined;
|
|
8367
|
+
generated: undefined;
|
|
8368
|
+
}, {}, {}>;
|
|
8369
|
+
informerDigest: import("drizzle-orm/pg-core").PgColumn<{
|
|
8370
|
+
name: "informer_digest";
|
|
8371
|
+
tableName: "operator_settings";
|
|
8372
|
+
dataType: "string";
|
|
8373
|
+
columnType: "PgText";
|
|
8374
|
+
data: string;
|
|
8375
|
+
driverParam: string;
|
|
8376
|
+
notNull: true;
|
|
8377
|
+
hasDefault: true;
|
|
8378
|
+
isPrimaryKey: false;
|
|
8379
|
+
isAutoincrement: false;
|
|
8380
|
+
hasRuntimeDefault: false;
|
|
8381
|
+
enumValues: [string, ...string[]];
|
|
8382
|
+
baseColumn: never;
|
|
8383
|
+
identity: undefined;
|
|
8384
|
+
generated: undefined;
|
|
8385
|
+
}, {}, {}>;
|
|
8386
|
+
informerDigestHour: import("drizzle-orm/pg-core").PgColumn<{
|
|
8387
|
+
name: "informer_digest_hour";
|
|
8388
|
+
tableName: "operator_settings";
|
|
8389
|
+
dataType: "number";
|
|
8390
|
+
columnType: "PgInteger";
|
|
8391
|
+
data: number;
|
|
8392
|
+
driverParam: string | number;
|
|
8393
|
+
notNull: true;
|
|
8394
|
+
hasDefault: true;
|
|
8395
|
+
isPrimaryKey: false;
|
|
8396
|
+
isAutoincrement: false;
|
|
8397
|
+
hasRuntimeDefault: false;
|
|
8398
|
+
enumValues: undefined;
|
|
8399
|
+
baseColumn: never;
|
|
8400
|
+
identity: undefined;
|
|
8401
|
+
generated: undefined;
|
|
8402
|
+
}, {}, {}>;
|
|
8403
|
+
informerTz: import("drizzle-orm/pg-core").PgColumn<{
|
|
8404
|
+
name: "informer_tz";
|
|
8405
|
+
tableName: "operator_settings";
|
|
8406
|
+
dataType: "string";
|
|
8407
|
+
columnType: "PgText";
|
|
8408
|
+
data: string;
|
|
8409
|
+
driverParam: string;
|
|
8410
|
+
notNull: true;
|
|
8411
|
+
hasDefault: true;
|
|
8412
|
+
isPrimaryKey: false;
|
|
8413
|
+
isAutoincrement: false;
|
|
8414
|
+
hasRuntimeDefault: false;
|
|
8415
|
+
enumValues: [string, ...string[]];
|
|
8416
|
+
baseColumn: never;
|
|
8417
|
+
identity: undefined;
|
|
8418
|
+
generated: undefined;
|
|
8419
|
+
}, {}, {}>;
|
|
8420
|
+
informerMutedUntil: import("drizzle-orm/pg-core").PgColumn<{
|
|
8421
|
+
name: "informer_muted_until";
|
|
8422
|
+
tableName: "operator_settings";
|
|
8423
|
+
dataType: "number";
|
|
8424
|
+
columnType: "PgInteger";
|
|
8425
|
+
data: number;
|
|
8426
|
+
driverParam: string | number;
|
|
8427
|
+
notNull: false;
|
|
8428
|
+
hasDefault: false;
|
|
8429
|
+
isPrimaryKey: false;
|
|
8430
|
+
isAutoincrement: false;
|
|
8431
|
+
hasRuntimeDefault: false;
|
|
8432
|
+
enumValues: undefined;
|
|
8433
|
+
baseColumn: never;
|
|
8434
|
+
identity: undefined;
|
|
8435
|
+
generated: undefined;
|
|
8436
|
+
}, {}, {}>;
|
|
8437
|
+
informerLastDigestAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
8438
|
+
name: "informer_last_digest_at";
|
|
8439
|
+
tableName: "operator_settings";
|
|
8440
|
+
dataType: "number";
|
|
8441
|
+
columnType: "PgInteger";
|
|
8442
|
+
data: number;
|
|
8443
|
+
driverParam: string | number;
|
|
8444
|
+
notNull: false;
|
|
8445
|
+
hasDefault: false;
|
|
8446
|
+
isPrimaryKey: false;
|
|
8447
|
+
isAutoincrement: false;
|
|
8448
|
+
hasRuntimeDefault: false;
|
|
8449
|
+
enumValues: undefined;
|
|
8450
|
+
baseColumn: never;
|
|
8451
|
+
identity: undefined;
|
|
8452
|
+
generated: undefined;
|
|
8453
|
+
}, {}, {}>;
|
|
8286
8454
|
updatedAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
8287
8455
|
name: "updated_at";
|
|
8288
8456
|
tableName: "operator_settings";
|
|
@@ -8303,6 +8471,251 @@ export declare const operatorSettings: import("drizzle-orm/pg-core").PgTableWith
|
|
|
8303
8471
|
};
|
|
8304
8472
|
dialect: "pg";
|
|
8305
8473
|
}>;
|
|
8474
|
+
export declare const adminNotifications: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
8475
|
+
name: "admin_notifications";
|
|
8476
|
+
schema: undefined;
|
|
8477
|
+
columns: {
|
|
8478
|
+
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
8479
|
+
name: "id";
|
|
8480
|
+
tableName: "admin_notifications";
|
|
8481
|
+
dataType: "number";
|
|
8482
|
+
columnType: "PgSerial";
|
|
8483
|
+
data: number;
|
|
8484
|
+
driverParam: number;
|
|
8485
|
+
notNull: true;
|
|
8486
|
+
hasDefault: true;
|
|
8487
|
+
isPrimaryKey: true;
|
|
8488
|
+
isAutoincrement: false;
|
|
8489
|
+
hasRuntimeDefault: false;
|
|
8490
|
+
enumValues: undefined;
|
|
8491
|
+
baseColumn: never;
|
|
8492
|
+
identity: undefined;
|
|
8493
|
+
generated: undefined;
|
|
8494
|
+
}, {}, {}>;
|
|
8495
|
+
tenantId: import("drizzle-orm/pg-core").PgColumn<{
|
|
8496
|
+
name: "tenant_id";
|
|
8497
|
+
tableName: "admin_notifications";
|
|
8498
|
+
dataType: "number";
|
|
8499
|
+
columnType: "PgInteger";
|
|
8500
|
+
data: number;
|
|
8501
|
+
driverParam: string | number;
|
|
8502
|
+
notNull: true;
|
|
8503
|
+
hasDefault: false;
|
|
8504
|
+
isPrimaryKey: false;
|
|
8505
|
+
isAutoincrement: false;
|
|
8506
|
+
hasRuntimeDefault: false;
|
|
8507
|
+
enumValues: undefined;
|
|
8508
|
+
baseColumn: never;
|
|
8509
|
+
identity: undefined;
|
|
8510
|
+
generated: undefined;
|
|
8511
|
+
}, {}, {}>;
|
|
8512
|
+
adminId: import("drizzle-orm/pg-core").PgColumn<{
|
|
8513
|
+
name: "admin_id";
|
|
8514
|
+
tableName: "admin_notifications";
|
|
8515
|
+
dataType: "number";
|
|
8516
|
+
columnType: "PgInteger";
|
|
8517
|
+
data: number;
|
|
8518
|
+
driverParam: string | number;
|
|
8519
|
+
notNull: false;
|
|
8520
|
+
hasDefault: false;
|
|
8521
|
+
isPrimaryKey: false;
|
|
8522
|
+
isAutoincrement: false;
|
|
8523
|
+
hasRuntimeDefault: false;
|
|
8524
|
+
enumValues: undefined;
|
|
8525
|
+
baseColumn: never;
|
|
8526
|
+
identity: undefined;
|
|
8527
|
+
generated: undefined;
|
|
8528
|
+
}, {}, {}>;
|
|
8529
|
+
topic: import("drizzle-orm/pg-core").PgColumn<{
|
|
8530
|
+
name: "topic";
|
|
8531
|
+
tableName: "admin_notifications";
|
|
8532
|
+
dataType: "string";
|
|
8533
|
+
columnType: "PgText";
|
|
8534
|
+
data: string;
|
|
8535
|
+
driverParam: string;
|
|
8536
|
+
notNull: true;
|
|
8537
|
+
hasDefault: false;
|
|
8538
|
+
isPrimaryKey: false;
|
|
8539
|
+
isAutoincrement: false;
|
|
8540
|
+
hasRuntimeDefault: false;
|
|
8541
|
+
enumValues: [string, ...string[]];
|
|
8542
|
+
baseColumn: never;
|
|
8543
|
+
identity: undefined;
|
|
8544
|
+
generated: undefined;
|
|
8545
|
+
}, {}, {}>;
|
|
8546
|
+
severity: import("drizzle-orm/pg-core").PgColumn<{
|
|
8547
|
+
name: "severity";
|
|
8548
|
+
tableName: "admin_notifications";
|
|
8549
|
+
dataType: "string";
|
|
8550
|
+
columnType: "PgText";
|
|
8551
|
+
data: string;
|
|
8552
|
+
driverParam: string;
|
|
8553
|
+
notNull: true;
|
|
8554
|
+
hasDefault: false;
|
|
8555
|
+
isPrimaryKey: false;
|
|
8556
|
+
isAutoincrement: false;
|
|
8557
|
+
hasRuntimeDefault: false;
|
|
8558
|
+
enumValues: [string, ...string[]];
|
|
8559
|
+
baseColumn: never;
|
|
8560
|
+
identity: undefined;
|
|
8561
|
+
generated: undefined;
|
|
8562
|
+
}, {}, {}>;
|
|
8563
|
+
kind: import("drizzle-orm/pg-core").PgColumn<{
|
|
8564
|
+
name: "kind";
|
|
8565
|
+
tableName: "admin_notifications";
|
|
8566
|
+
dataType: "string";
|
|
8567
|
+
columnType: "PgText";
|
|
8568
|
+
data: string;
|
|
8569
|
+
driverParam: string;
|
|
8570
|
+
notNull: true;
|
|
8571
|
+
hasDefault: false;
|
|
8572
|
+
isPrimaryKey: false;
|
|
8573
|
+
isAutoincrement: false;
|
|
8574
|
+
hasRuntimeDefault: false;
|
|
8575
|
+
enumValues: [string, ...string[]];
|
|
8576
|
+
baseColumn: never;
|
|
8577
|
+
identity: undefined;
|
|
8578
|
+
generated: undefined;
|
|
8579
|
+
}, {}, {}>;
|
|
8580
|
+
title: import("drizzle-orm/pg-core").PgColumn<{
|
|
8581
|
+
name: "title";
|
|
8582
|
+
tableName: "admin_notifications";
|
|
8583
|
+
dataType: "string";
|
|
8584
|
+
columnType: "PgText";
|
|
8585
|
+
data: string;
|
|
8586
|
+
driverParam: string;
|
|
8587
|
+
notNull: true;
|
|
8588
|
+
hasDefault: false;
|
|
8589
|
+
isPrimaryKey: false;
|
|
8590
|
+
isAutoincrement: false;
|
|
8591
|
+
hasRuntimeDefault: false;
|
|
8592
|
+
enumValues: [string, ...string[]];
|
|
8593
|
+
baseColumn: never;
|
|
8594
|
+
identity: undefined;
|
|
8595
|
+
generated: undefined;
|
|
8596
|
+
}, {}, {}>;
|
|
8597
|
+
body: import("drizzle-orm/pg-core").PgColumn<{
|
|
8598
|
+
name: "body";
|
|
8599
|
+
tableName: "admin_notifications";
|
|
8600
|
+
dataType: "string";
|
|
8601
|
+
columnType: "PgText";
|
|
8602
|
+
data: string;
|
|
8603
|
+
driverParam: string;
|
|
8604
|
+
notNull: true;
|
|
8605
|
+
hasDefault: true;
|
|
8606
|
+
isPrimaryKey: false;
|
|
8607
|
+
isAutoincrement: false;
|
|
8608
|
+
hasRuntimeDefault: false;
|
|
8609
|
+
enumValues: [string, ...string[]];
|
|
8610
|
+
baseColumn: never;
|
|
8611
|
+
identity: undefined;
|
|
8612
|
+
generated: undefined;
|
|
8613
|
+
}, {}, {}>;
|
|
8614
|
+
dedupKey: import("drizzle-orm/pg-core").PgColumn<{
|
|
8615
|
+
name: "dedup_key";
|
|
8616
|
+
tableName: "admin_notifications";
|
|
8617
|
+
dataType: "string";
|
|
8618
|
+
columnType: "PgText";
|
|
8619
|
+
data: string;
|
|
8620
|
+
driverParam: string;
|
|
8621
|
+
notNull: true;
|
|
8622
|
+
hasDefault: false;
|
|
8623
|
+
isPrimaryKey: false;
|
|
8624
|
+
isAutoincrement: false;
|
|
8625
|
+
hasRuntimeDefault: false;
|
|
8626
|
+
enumValues: [string, ...string[]];
|
|
8627
|
+
baseColumn: never;
|
|
8628
|
+
identity: undefined;
|
|
8629
|
+
generated: undefined;
|
|
8630
|
+
}, {}, {}>;
|
|
8631
|
+
targetChatId: import("drizzle-orm/pg-core").PgColumn<{
|
|
8632
|
+
name: "target_chat_id";
|
|
8633
|
+
tableName: "admin_notifications";
|
|
8634
|
+
dataType: "string";
|
|
8635
|
+
columnType: "PgText";
|
|
8636
|
+
data: string;
|
|
8637
|
+
driverParam: string;
|
|
8638
|
+
notNull: false;
|
|
8639
|
+
hasDefault: false;
|
|
8640
|
+
isPrimaryKey: false;
|
|
8641
|
+
isAutoincrement: false;
|
|
8642
|
+
hasRuntimeDefault: false;
|
|
8643
|
+
enumValues: [string, ...string[]];
|
|
8644
|
+
baseColumn: never;
|
|
8645
|
+
identity: undefined;
|
|
8646
|
+
generated: undefined;
|
|
8647
|
+
}, {}, {}>;
|
|
8648
|
+
deliveredAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
8649
|
+
name: "delivered_at";
|
|
8650
|
+
tableName: "admin_notifications";
|
|
8651
|
+
dataType: "number";
|
|
8652
|
+
columnType: "PgInteger";
|
|
8653
|
+
data: number;
|
|
8654
|
+
driverParam: string | number;
|
|
8655
|
+
notNull: false;
|
|
8656
|
+
hasDefault: false;
|
|
8657
|
+
isPrimaryKey: false;
|
|
8658
|
+
isAutoincrement: false;
|
|
8659
|
+
hasRuntimeDefault: false;
|
|
8660
|
+
enumValues: undefined;
|
|
8661
|
+
baseColumn: never;
|
|
8662
|
+
identity: undefined;
|
|
8663
|
+
generated: undefined;
|
|
8664
|
+
}, {}, {}>;
|
|
8665
|
+
digestBatchId: import("drizzle-orm/pg-core").PgColumn<{
|
|
8666
|
+
name: "digest_batch_id";
|
|
8667
|
+
tableName: "admin_notifications";
|
|
8668
|
+
dataType: "number";
|
|
8669
|
+
columnType: "PgInteger";
|
|
8670
|
+
data: number;
|
|
8671
|
+
driverParam: string | number;
|
|
8672
|
+
notNull: false;
|
|
8673
|
+
hasDefault: false;
|
|
8674
|
+
isPrimaryKey: false;
|
|
8675
|
+
isAutoincrement: false;
|
|
8676
|
+
hasRuntimeDefault: false;
|
|
8677
|
+
enumValues: undefined;
|
|
8678
|
+
baseColumn: never;
|
|
8679
|
+
identity: undefined;
|
|
8680
|
+
generated: undefined;
|
|
8681
|
+
}, {}, {}>;
|
|
8682
|
+
readAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
8683
|
+
name: "read_at";
|
|
8684
|
+
tableName: "admin_notifications";
|
|
8685
|
+
dataType: "number";
|
|
8686
|
+
columnType: "PgInteger";
|
|
8687
|
+
data: number;
|
|
8688
|
+
driverParam: string | number;
|
|
8689
|
+
notNull: false;
|
|
8690
|
+
hasDefault: false;
|
|
8691
|
+
isPrimaryKey: false;
|
|
8692
|
+
isAutoincrement: false;
|
|
8693
|
+
hasRuntimeDefault: false;
|
|
8694
|
+
enumValues: undefined;
|
|
8695
|
+
baseColumn: never;
|
|
8696
|
+
identity: undefined;
|
|
8697
|
+
generated: undefined;
|
|
8698
|
+
}, {}, {}>;
|
|
8699
|
+
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
8700
|
+
name: "created_at";
|
|
8701
|
+
tableName: "admin_notifications";
|
|
8702
|
+
dataType: "number";
|
|
8703
|
+
columnType: "PgInteger";
|
|
8704
|
+
data: number;
|
|
8705
|
+
driverParam: string | number;
|
|
8706
|
+
notNull: true;
|
|
8707
|
+
hasDefault: true;
|
|
8708
|
+
isPrimaryKey: false;
|
|
8709
|
+
isAutoincrement: false;
|
|
8710
|
+
hasRuntimeDefault: false;
|
|
8711
|
+
enumValues: undefined;
|
|
8712
|
+
baseColumn: never;
|
|
8713
|
+
identity: undefined;
|
|
8714
|
+
generated: undefined;
|
|
8715
|
+
}, {}, {}>;
|
|
8716
|
+
};
|
|
8717
|
+
dialect: "pg";
|
|
8718
|
+
}>;
|
|
8306
8719
|
export declare const exchangeRates: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
8307
8720
|
name: "exchange_rates";
|
|
8308
8721
|
schema: undefined;
|
package/dist/schema.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsB5B,CAAC;AAIH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6CzB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chatman-media/storage",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "PostgreSQL storage adapters for @chatman-media/sales — Drizzle ORM implementations of all engine interfaces.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
"postgres": ">=3.0.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@biomejs/biome": "^2.4.
|
|
54
|
+
"@biomejs/biome": "^2.4.16",
|
|
55
55
|
"@chatman-media/sales": "^0.1.0",
|
|
56
56
|
"@types/bun": "1.3.14",
|
|
57
|
-
"drizzle-kit": "^0.
|
|
58
|
-
"drizzle-orm": "^0.
|
|
57
|
+
"drizzle-kit": "^0.31.10",
|
|
58
|
+
"drizzle-orm": "^0.45.2",
|
|
59
59
|
"postgres": "^3.4.5",
|
|
60
60
|
"typescript": "^6.0.3"
|
|
61
61
|
},
|