@new-project-media/client-frontends-shared-types 1.1.19 → 1.1.21
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/package.json +1 -1
- package/src/lib/dataGrid/api/common.d.ts +1 -0
- package/src/lib/dataGrid/api/entity.d.ts +18 -0
- package/src/lib/dataGrid/api/entity.js +2 -0
- package/src/lib/dataGrid/api/entity.js.map +1 -1
- package/src/lib/dataGrid/api/signals.d.ts +12 -1
- package/src/lib/dataGrid/dataGrid.d.ts +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@new-project-media/client-frontends-shared-types",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.21",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "tsc -p tsconfig.json",
|
|
6
6
|
"postbuild": "mkdir -p ../../dist/packages/client-frontends-shared-types/ && cp package.json ../../dist/packages/client-frontends-shared-types/",
|
|
@@ -279,6 +279,7 @@ export declare const DocumentS3RecordSchema: z.ZodArray<z.ZodObject<{
|
|
|
279
279
|
created: z.ZodEffects<z.ZodString, string, string>;
|
|
280
280
|
document_id: z.ZodString;
|
|
281
281
|
mimeType: z.ZodString;
|
|
282
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
282
283
|
type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
283
284
|
key: z.ZodOptional<z.ZodString>;
|
|
284
285
|
userName: z.ZodOptional<z.ZodString>;
|
|
@@ -289,6 +290,7 @@ export declare const DocumentS3RecordSchema: z.ZodArray<z.ZodObject<{
|
|
|
289
290
|
created?: string;
|
|
290
291
|
document_id?: string;
|
|
291
292
|
mimeType?: string;
|
|
293
|
+
scanResultStatus?: string;
|
|
292
294
|
userName?: string;
|
|
293
295
|
}, {
|
|
294
296
|
type?: string[];
|
|
@@ -297,6 +299,7 @@ export declare const DocumentS3RecordSchema: z.ZodArray<z.ZodObject<{
|
|
|
297
299
|
created?: string;
|
|
298
300
|
document_id?: string;
|
|
299
301
|
mimeType?: string;
|
|
302
|
+
scanResultStatus?: string;
|
|
300
303
|
userName?: string;
|
|
301
304
|
}>, "many">;
|
|
302
305
|
export declare const OptionalS3DocumentSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -304,6 +307,7 @@ export declare const OptionalS3DocumentSchema: z.ZodOptional<z.ZodArray<z.ZodObj
|
|
|
304
307
|
created: z.ZodEffects<z.ZodString, string, string>;
|
|
305
308
|
document_id: z.ZodString;
|
|
306
309
|
mimeType: z.ZodString;
|
|
310
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
307
311
|
type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
308
312
|
key: z.ZodOptional<z.ZodString>;
|
|
309
313
|
userName: z.ZodOptional<z.ZodString>;
|
|
@@ -314,6 +318,7 @@ export declare const OptionalS3DocumentSchema: z.ZodOptional<z.ZodArray<z.ZodObj
|
|
|
314
318
|
created?: string;
|
|
315
319
|
document_id?: string;
|
|
316
320
|
mimeType?: string;
|
|
321
|
+
scanResultStatus?: string;
|
|
317
322
|
userName?: string;
|
|
318
323
|
}, {
|
|
319
324
|
type?: string[];
|
|
@@ -322,6 +327,7 @@ export declare const OptionalS3DocumentSchema: z.ZodOptional<z.ZodArray<z.ZodObj
|
|
|
322
327
|
created?: string;
|
|
323
328
|
document_id?: string;
|
|
324
329
|
mimeType?: string;
|
|
330
|
+
scanResultStatus?: string;
|
|
325
331
|
userName?: string;
|
|
326
332
|
}>, "many">>;
|
|
327
333
|
export type OptionalS3DocumentType = z.infer<typeof OptionalS3DocumentSchema>;
|
|
@@ -330,6 +336,7 @@ export declare const DocumentLinkSchema: z.ZodArray<z.ZodObject<{
|
|
|
330
336
|
url: z.ZodString;
|
|
331
337
|
created: z.ZodOptional<z.ZodString>;
|
|
332
338
|
type: z.ZodArray<z.ZodString, "many">;
|
|
339
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
333
340
|
documentDate: z.ZodEffects<z.ZodString, string, string>;
|
|
334
341
|
source: z.ZodOptional<z.ZodString>;
|
|
335
342
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -338,6 +345,7 @@ export declare const DocumentLinkSchema: z.ZodArray<z.ZodObject<{
|
|
|
338
345
|
id?: string;
|
|
339
346
|
source?: string;
|
|
340
347
|
created?: string;
|
|
348
|
+
scanResultStatus?: string;
|
|
341
349
|
file?: string;
|
|
342
350
|
url?: string;
|
|
343
351
|
documentDate?: string;
|
|
@@ -346,6 +354,7 @@ export declare const DocumentLinkSchema: z.ZodArray<z.ZodObject<{
|
|
|
346
354
|
id?: string;
|
|
347
355
|
source?: string;
|
|
348
356
|
created?: string;
|
|
357
|
+
scanResultStatus?: string;
|
|
349
358
|
file?: string;
|
|
350
359
|
url?: string;
|
|
351
360
|
documentDate?: string;
|
|
@@ -355,6 +364,7 @@ export declare const OptionalDocumentLinkSchema: z.ZodOptional<z.ZodArray<z.ZodO
|
|
|
355
364
|
url: z.ZodString;
|
|
356
365
|
created: z.ZodOptional<z.ZodString>;
|
|
357
366
|
type: z.ZodArray<z.ZodString, "many">;
|
|
367
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
358
368
|
documentDate: z.ZodEffects<z.ZodString, string, string>;
|
|
359
369
|
source: z.ZodOptional<z.ZodString>;
|
|
360
370
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -363,6 +373,7 @@ export declare const OptionalDocumentLinkSchema: z.ZodOptional<z.ZodArray<z.ZodO
|
|
|
363
373
|
id?: string;
|
|
364
374
|
source?: string;
|
|
365
375
|
created?: string;
|
|
376
|
+
scanResultStatus?: string;
|
|
366
377
|
file?: string;
|
|
367
378
|
url?: string;
|
|
368
379
|
documentDate?: string;
|
|
@@ -371,6 +382,7 @@ export declare const OptionalDocumentLinkSchema: z.ZodOptional<z.ZodArray<z.ZodO
|
|
|
371
382
|
id?: string;
|
|
372
383
|
source?: string;
|
|
373
384
|
created?: string;
|
|
385
|
+
scanResultStatus?: string;
|
|
374
386
|
file?: string;
|
|
375
387
|
url?: string;
|
|
376
388
|
documentDate?: string;
|
|
@@ -381,6 +393,7 @@ export declare const DocumentRecordSchema: z.ZodOptional<z.ZodUnion<[z.ZodArray<
|
|
|
381
393
|
created: z.ZodEffects<z.ZodString, string, string>;
|
|
382
394
|
document_id: z.ZodString;
|
|
383
395
|
mimeType: z.ZodString;
|
|
396
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
384
397
|
type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
385
398
|
key: z.ZodOptional<z.ZodString>;
|
|
386
399
|
userName: z.ZodOptional<z.ZodString>;
|
|
@@ -391,6 +404,7 @@ export declare const DocumentRecordSchema: z.ZodOptional<z.ZodUnion<[z.ZodArray<
|
|
|
391
404
|
created?: string;
|
|
392
405
|
document_id?: string;
|
|
393
406
|
mimeType?: string;
|
|
407
|
+
scanResultStatus?: string;
|
|
394
408
|
userName?: string;
|
|
395
409
|
}, {
|
|
396
410
|
type?: string[];
|
|
@@ -399,12 +413,14 @@ export declare const DocumentRecordSchema: z.ZodOptional<z.ZodUnion<[z.ZodArray<
|
|
|
399
413
|
created?: string;
|
|
400
414
|
document_id?: string;
|
|
401
415
|
mimeType?: string;
|
|
416
|
+
scanResultStatus?: string;
|
|
402
417
|
userName?: string;
|
|
403
418
|
}>, "many">, z.ZodArray<z.ZodObject<{
|
|
404
419
|
file: z.ZodOptional<z.ZodString>;
|
|
405
420
|
url: z.ZodString;
|
|
406
421
|
created: z.ZodOptional<z.ZodString>;
|
|
407
422
|
type: z.ZodArray<z.ZodString, "many">;
|
|
423
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
408
424
|
documentDate: z.ZodEffects<z.ZodString, string, string>;
|
|
409
425
|
source: z.ZodOptional<z.ZodString>;
|
|
410
426
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -413,6 +429,7 @@ export declare const DocumentRecordSchema: z.ZodOptional<z.ZodUnion<[z.ZodArray<
|
|
|
413
429
|
id?: string;
|
|
414
430
|
source?: string;
|
|
415
431
|
created?: string;
|
|
432
|
+
scanResultStatus?: string;
|
|
416
433
|
file?: string;
|
|
417
434
|
url?: string;
|
|
418
435
|
documentDate?: string;
|
|
@@ -421,6 +438,7 @@ export declare const DocumentRecordSchema: z.ZodOptional<z.ZodUnion<[z.ZodArray<
|
|
|
421
438
|
id?: string;
|
|
422
439
|
source?: string;
|
|
423
440
|
created?: string;
|
|
441
|
+
scanResultStatus?: string;
|
|
424
442
|
file?: string;
|
|
425
443
|
url?: string;
|
|
426
444
|
documentDate?: string;
|
|
@@ -68,6 +68,7 @@ exports.DocumentS3RecordSchema = zod_1.z
|
|
|
68
68
|
created: exports.YYYYMMDDRegexSchema,
|
|
69
69
|
document_id: zod_1.z.string(),
|
|
70
70
|
mimeType: zod_1.z.string(),
|
|
71
|
+
scanResultStatus: zod_1.z.string().optional(),
|
|
71
72
|
type: zod_1.z.string().array().optional(),
|
|
72
73
|
key: exports.OptionalStringSchema,
|
|
73
74
|
userName: exports.OptionalStringSchema,
|
|
@@ -80,6 +81,7 @@ exports.DocumentLinkSchema = zod_1.z
|
|
|
80
81
|
url: zod_1.z.string().url(),
|
|
81
82
|
created: exports.OptionalStringSchema,
|
|
82
83
|
type: zod_1.z.array(zod_1.z.string()),
|
|
84
|
+
scanResultStatus: zod_1.z.string().optional(),
|
|
83
85
|
documentDate: exports.YYYYMMDDRegexSchema,
|
|
84
86
|
source: exports.OptionalStringSchema,
|
|
85
87
|
id: exports.OptionalStringSchema,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entity.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/entity.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"entity.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/entity.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { EntityItemArrayOptionalSchema, OrganizationItemSchema, LinkedPeopleSchema, QueueJoinSchema } from './entity';
|
|
2
|
+
import { EntityItemArrayOptionalSchema, DocumentRecordSchema, OrganizationItemSchema, LinkedPeopleSchema, QueueJoinSchema } from './entity';
|
|
3
3
|
export declare enum PublishStatus {
|
|
4
4
|
NeedsReview = "Needs Review",
|
|
5
5
|
Spiked = "Spiked",
|
|
@@ -256,6 +256,7 @@ declare const signal: z.ZodObject<{
|
|
|
256
256
|
created: z.ZodEffects<z.ZodString, string, string>;
|
|
257
257
|
document_id: z.ZodString;
|
|
258
258
|
mimeType: z.ZodString;
|
|
259
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
259
260
|
type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
260
261
|
key: z.ZodOptional<z.ZodString>;
|
|
261
262
|
userName: z.ZodOptional<z.ZodString>;
|
|
@@ -266,6 +267,7 @@ declare const signal: z.ZodObject<{
|
|
|
266
267
|
created?: string;
|
|
267
268
|
document_id?: string;
|
|
268
269
|
mimeType?: string;
|
|
270
|
+
scanResultStatus?: string;
|
|
269
271
|
userName?: string;
|
|
270
272
|
}, {
|
|
271
273
|
type?: string[];
|
|
@@ -274,12 +276,14 @@ declare const signal: z.ZodObject<{
|
|
|
274
276
|
created?: string;
|
|
275
277
|
document_id?: string;
|
|
276
278
|
mimeType?: string;
|
|
279
|
+
scanResultStatus?: string;
|
|
277
280
|
userName?: string;
|
|
278
281
|
}>, "many">, z.ZodArray<z.ZodObject<{
|
|
279
282
|
file: z.ZodOptional<z.ZodString>;
|
|
280
283
|
url: z.ZodString;
|
|
281
284
|
created: z.ZodOptional<z.ZodString>;
|
|
282
285
|
type: z.ZodArray<z.ZodString, "many">;
|
|
286
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
283
287
|
documentDate: z.ZodEffects<z.ZodString, string, string>;
|
|
284
288
|
source: z.ZodOptional<z.ZodString>;
|
|
285
289
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -288,6 +292,7 @@ declare const signal: z.ZodObject<{
|
|
|
288
292
|
id?: string;
|
|
289
293
|
source?: string;
|
|
290
294
|
created?: string;
|
|
295
|
+
scanResultStatus?: string;
|
|
291
296
|
file?: string;
|
|
292
297
|
url?: string;
|
|
293
298
|
documentDate?: string;
|
|
@@ -296,6 +301,7 @@ declare const signal: z.ZodObject<{
|
|
|
296
301
|
id?: string;
|
|
297
302
|
source?: string;
|
|
298
303
|
created?: string;
|
|
304
|
+
scanResultStatus?: string;
|
|
299
305
|
file?: string;
|
|
300
306
|
url?: string;
|
|
301
307
|
documentDate?: string;
|
|
@@ -508,12 +514,14 @@ declare const signal: z.ZodObject<{
|
|
|
508
514
|
created?: string;
|
|
509
515
|
document_id?: string;
|
|
510
516
|
mimeType?: string;
|
|
517
|
+
scanResultStatus?: string;
|
|
511
518
|
userName?: string;
|
|
512
519
|
}[] | {
|
|
513
520
|
type?: string[];
|
|
514
521
|
id?: string;
|
|
515
522
|
source?: string;
|
|
516
523
|
created?: string;
|
|
524
|
+
scanResultStatus?: string;
|
|
517
525
|
file?: string;
|
|
518
526
|
url?: string;
|
|
519
527
|
documentDate?: string;
|
|
@@ -669,12 +677,14 @@ declare const signal: z.ZodObject<{
|
|
|
669
677
|
created?: string;
|
|
670
678
|
document_id?: string;
|
|
671
679
|
mimeType?: string;
|
|
680
|
+
scanResultStatus?: string;
|
|
672
681
|
userName?: string;
|
|
673
682
|
}[] | {
|
|
674
683
|
type?: string[];
|
|
675
684
|
id?: string;
|
|
676
685
|
source?: string;
|
|
677
686
|
created?: string;
|
|
687
|
+
scanResultStatus?: string;
|
|
678
688
|
file?: string;
|
|
679
689
|
url?: string;
|
|
680
690
|
documentDate?: string;
|
|
@@ -784,6 +794,7 @@ declare const signal: z.ZodObject<{
|
|
|
784
794
|
}>;
|
|
785
795
|
export type Signal = z.infer<typeof signal>;
|
|
786
796
|
export type OrganizationItem = z.infer<typeof OrganizationItemSchema>;
|
|
797
|
+
export type DocumentRecord = z.infer<typeof DocumentRecordSchema>;
|
|
787
798
|
export type LinkedPersonItem = z.infer<typeof LinkedPeopleSchema>[number];
|
|
788
799
|
export type QueueJoinItem = z.infer<typeof QueueJoinSchema>[number];
|
|
789
800
|
export type ProjectItem = z.infer<typeof EntityItemArrayOptionalSchema>[number];
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { InfiniteData, UseInfiniteQueryResult } from '@tanstack/react-query';
|
|
1
|
+
import { InfiniteData, QueryObserverResult, UseInfiniteQueryResult } from '@tanstack/react-query';
|
|
2
2
|
import { ClientApiListRequestQueryParams, ClientApiListResponse, Queue, Signal } from './api';
|
|
3
3
|
export type Entity = Signal | Queue;
|
|
4
4
|
export type InfiniteQueryHook = (queryParams: ClientApiListRequestQueryParams, isEnabled?: boolean) => UseInfiniteQueryResult<InfiniteData<ClientApiListResponse<Entity>, unknown>, Error>;
|
|
5
|
+
export type RefetchResult = Promise<QueryObserverResult<InfiniteData<ClientApiListResponse<Entity>, unknown>, Error>>;
|
|
5
6
|
export type ExtendedColumnFilter = {
|
|
6
7
|
id: string;
|
|
7
8
|
value: unknown;
|
|
@@ -29,4 +30,5 @@ export type FilterDefinition = {
|
|
|
29
30
|
sortBy?: string;
|
|
30
31
|
min?: number;
|
|
31
32
|
max?: number;
|
|
33
|
+
sum?: number;
|
|
32
34
|
};
|