@new-project-media/client-frontends-shared-types 1.1.20 → 1.1.22

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@new-project-media/client-frontends-shared-types",
3
- "version": "1.1.20",
3
+ "version": "1.1.22",
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/",
@@ -103,4 +103,12 @@ export type ClientApiListResponse<T> = {
103
103
  data: T[];
104
104
  aggregations?: Record<string, AggregationItem | FilteredAggregation>;
105
105
  };
106
+ export type ClientApiLocationRequestQueryParams = {
107
+ geo: {
108
+ lat: number;
109
+ lon: number;
110
+ distance: number;
111
+ };
112
+ source?: string[];
113
+ };
106
114
  export {};
@@ -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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"}
@@ -100,9 +100,9 @@ declare const queue: z.ZodObject<{
100
100
  lon?: number;
101
101
  };
102
102
  };
103
+ allSectors?: string;
103
104
  actualOperationalDate?: string;
104
105
  address?: string;
105
- allSectors?: string;
106
106
  constructionDate?: string;
107
107
  developmentStatus?: string;
108
108
  indexed_at?: string;
@@ -149,9 +149,9 @@ declare const queue: z.ZodObject<{
149
149
  lon?: number;
150
150
  };
151
151
  };
152
+ allSectors?: string;
152
153
  actualOperationalDate?: string;
153
154
  address?: string;
154
- allSectors?: string;
155
155
  constructionDate?: string;
156
156
  developmentStatus?: string;
157
157
  indexed_at?: string;
@@ -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;
@@ -459,6 +465,7 @@ declare const signal: z.ZodObject<{
459
465
  puc?: number;
460
466
  developer?: number;
461
467
  }>>;
468
+ allSectors: z.ZodOptional<z.ZodString>;
462
469
  }, "strip", z.ZodTypeAny, {
463
470
  type?: {
464
471
  id?: string;
@@ -508,12 +515,14 @@ declare const signal: z.ZodObject<{
508
515
  created?: string;
509
516
  document_id?: string;
510
517
  mimeType?: string;
518
+ scanResultStatus?: string;
511
519
  userName?: string;
512
520
  }[] | {
513
521
  type?: string[];
514
522
  id?: string;
515
523
  source?: string;
516
524
  created?: string;
525
+ scanResultStatus?: string;
517
526
  file?: string;
518
527
  url?: string;
519
528
  documentDate?: string;
@@ -620,6 +629,7 @@ declare const signal: z.ZodObject<{
620
629
  puc?: number;
621
630
  developer?: number;
622
631
  };
632
+ allSectors?: string;
623
633
  }, {
624
634
  type?: {
625
635
  id?: string;
@@ -669,12 +679,14 @@ declare const signal: z.ZodObject<{
669
679
  created?: string;
670
680
  document_id?: string;
671
681
  mimeType?: string;
682
+ scanResultStatus?: string;
672
683
  userName?: string;
673
684
  }[] | {
674
685
  type?: string[];
675
686
  id?: string;
676
687
  source?: string;
677
688
  created?: string;
689
+ scanResultStatus?: string;
678
690
  file?: string;
679
691
  url?: string;
680
692
  documentDate?: string;
@@ -781,9 +793,11 @@ declare const signal: z.ZodObject<{
781
793
  puc?: number;
782
794
  developer?: number;
783
795
  };
796
+ allSectors?: string;
784
797
  }>;
785
798
  export type Signal = z.infer<typeof signal>;
786
799
  export type OrganizationItem = z.infer<typeof OrganizationItemSchema>;
800
+ export type DocumentRecord = z.infer<typeof DocumentRecordSchema>;
787
801
  export type LinkedPersonItem = z.infer<typeof LinkedPeopleSchema>[number];
788
802
  export type QueueJoinItem = z.infer<typeof QueueJoinSchema>[number];
789
803
  export type ProjectItem = z.infer<typeof EntityItemArrayOptionalSchema>[number];
@@ -57,5 +57,6 @@ const signal = zod_1.z.object({
57
57
  countyBoard: entity_1.EntityItemArrayOptionalSchema,
58
58
  schoolDistrict: entity_1.EntityItemArrayOptionalSchema,
59
59
  totals: entity_1.TotalsSchema,
60
+ allSectors: entity_1.OptionalStringSchema,
60
61
  });
61
62
  //# sourceMappingURL=signals.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"signals.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/signals.ts"],"names":[],"mappings":";;;AAAA,6BAAuB;AACvB,qCAmBiB;AAEjB,IAAY,aAOX;AAPD,WAAY,aAAa;IACvB,6CAA4B,CAAA;IAC5B,kCAAiB,CAAA;IACjB,wCAAuB,CAAA;IACvB,0DAAyC,CAAA;IACzC,gCAAe,CAAA;IACf,8BAAa,CAAA;AACf,CAAC,EAPW,aAAa,6BAAb,aAAa,QAOxB;AAED,MAAM,MAAM,GAAG,OAAC,CAAC,MAAM,CAAC;IACtB,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,KAAK,EAAE,8BAAqB;IAC5B,OAAO,EAAE,sCAA6B;IACtC,MAAM,EAAE,sCAA6B;IACrC,OAAO,EAAE,8BAAqB;IAC9B,iBAAiB,EAAE,gCAAuB;IAC1C,eAAe,EAAE,sCAA6B;IAC9C,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC3B,IAAI,EAAE,6BAAoB;IAC1B,UAAU,EAAE,oCAA2B;IACvC,aAAa,EAAE,oCAA2B;IAC1C,uBAAuB,EAAE,oCAA2B;IACpD,YAAY,EAAE,6BAAoB;IAClC,eAAe,EAAE,8BAAqB;IACtC,QAAQ,EAAE,gCAAuB;IACjC,GAAG,EAAE,OAAC,CAAC,MAAM,CAAC;QACZ,OAAO,EAAE,iCAAwB;QACjC,YAAY,EAAE,6BAAoB;QAClC,QAAQ,EAAE,iCAAwB;QAClC,QAAQ,EAAE,iCAAwB;QAClC,MAAM,EAAE,iCAAwB;KACjC,CAAC;IACF,aAAa,EAAE,2BAAkB;IACjC,SAAS,EAAE,mCAA0B;IACrC,SAAS,EAAE,6BAAoB;IAC/B,EAAE,EAAE,6BAAoB;IACxB,UAAU,EAAE,sCAA6B;IACzC,WAAW,EAAE,6BAAoB;IACjC,YAAY,EAAE,6BAAoB;IAClC,SAAS,EAAE,8BAAqB;IAChC,OAAO,EAAE,4BAAmB;IAC5B,MAAM,EAAE,OAAC,CAAC,UAAU,CAAC,aAAa,CAAC;IACnC,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IAC1C,sBAAsB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACnD,IAAI,EAAE,yBAAgB,CAAC,QAAQ,EAAE;IACjC,OAAO,EAAE,sCAA6B;IACtC,SAAS,EAAE,8BAAqB;IAChC,aAAa,EAAE,8BAAqB;IACpC,KAAK,EAAE,6BAAoB;IAC3B,UAAU,EAAE,sCAA6B;IACzC,QAAQ,EAAE,sCAA6B;IACvC,WAAW,EAAE,sCAA6B;IAC1C,cAAc,EAAE,sCAA6B;IAC7C,MAAM,EAAE,qBAAY;CACrB,CAAC,CAAA"}
1
+ {"version":3,"file":"signals.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/signals.ts"],"names":[],"mappings":";;;AAAA,6BAAuB;AACvB,qCAmBiB;AAEjB,IAAY,aAOX;AAPD,WAAY,aAAa;IACvB,6CAA4B,CAAA;IAC5B,kCAAiB,CAAA;IACjB,wCAAuB,CAAA;IACvB,0DAAyC,CAAA;IACzC,gCAAe,CAAA;IACf,8BAAa,CAAA;AACf,CAAC,EAPW,aAAa,6BAAb,aAAa,QAOxB;AAED,MAAM,MAAM,GAAG,OAAC,CAAC,MAAM,CAAC;IACtB,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,KAAK,EAAE,8BAAqB;IAC5B,OAAO,EAAE,sCAA6B;IACtC,MAAM,EAAE,sCAA6B;IACrC,OAAO,EAAE,8BAAqB;IAC9B,iBAAiB,EAAE,gCAAuB;IAC1C,eAAe,EAAE,sCAA6B;IAC9C,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC3B,IAAI,EAAE,6BAAoB;IAC1B,UAAU,EAAE,oCAA2B;IACvC,aAAa,EAAE,oCAA2B;IAC1C,uBAAuB,EAAE,oCAA2B;IACpD,YAAY,EAAE,6BAAoB;IAClC,eAAe,EAAE,8BAAqB;IACtC,QAAQ,EAAE,gCAAuB;IACjC,GAAG,EAAE,OAAC,CAAC,MAAM,CAAC;QACZ,OAAO,EAAE,iCAAwB;QACjC,YAAY,EAAE,6BAAoB;QAClC,QAAQ,EAAE,iCAAwB;QAClC,QAAQ,EAAE,iCAAwB;QAClC,MAAM,EAAE,iCAAwB;KACjC,CAAC;IACF,aAAa,EAAE,2BAAkB;IACjC,SAAS,EAAE,mCAA0B;IACrC,SAAS,EAAE,6BAAoB;IAC/B,EAAE,EAAE,6BAAoB;IACxB,UAAU,EAAE,sCAA6B;IACzC,WAAW,EAAE,6BAAoB;IACjC,YAAY,EAAE,6BAAoB;IAClC,SAAS,EAAE,8BAAqB;IAChC,OAAO,EAAE,4BAAmB;IAC5B,MAAM,EAAE,OAAC,CAAC,UAAU,CAAC,aAAa,CAAC;IACnC,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IAC1C,sBAAsB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACnD,IAAI,EAAE,yBAAgB,CAAC,QAAQ,EAAE;IACjC,OAAO,EAAE,sCAA6B;IACtC,SAAS,EAAE,8BAAqB;IAChC,aAAa,EAAE,8BAAqB;IACpC,KAAK,EAAE,6BAAoB;IAC3B,UAAU,EAAE,sCAA6B;IACzC,QAAQ,EAAE,sCAA6B;IACvC,WAAW,EAAE,sCAA6B;IAC1C,cAAc,EAAE,sCAA6B;IAC7C,MAAM,EAAE,qBAAY;IACpB,UAAU,EAAE,6BAAoB;CACjC,CAAC,CAAA"}