@new-project-media/client-frontends-shared-types 1.3.3 → 1.3.5

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.3.3",
3
+ "version": "1.3.5",
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/",
@@ -34,6 +34,7 @@ export declare const euQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
34
34
  plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
35
35
  projectName: z.ZodOptional<z.ZodString>;
36
36
  queueDataset: z.ZodOptional<z.ZodString>;
37
+ queueDatasetType: z.ZodOptional<z.ZodString>;
37
38
  reportDate: z.ZodEffects<z.ZodString, string, string>;
38
39
  sectors: z.ZodDefault<z.ZodArray<z.ZodObject<{
39
40
  identifier: z.ZodString;
@@ -125,6 +126,7 @@ export declare const euQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
125
126
  lastModified?: string;
126
127
  plannedOperationalDate?: string;
127
128
  projectName?: string;
129
+ queueDatasetType?: string;
128
130
  reportDate?: string;
129
131
  withdrawnDate?: string;
130
132
  address?: string;
@@ -180,6 +182,7 @@ export declare const euQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
180
182
  lastModified?: string;
181
183
  plannedOperationalDate?: string;
182
184
  projectName?: string;
185
+ queueDatasetType?: string;
183
186
  reportDate?: string;
184
187
  withdrawnDate?: string;
185
188
  address?: string;
@@ -239,6 +242,7 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
239
242
  plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
240
243
  projectName: z.ZodOptional<z.ZodString>;
241
244
  queueDataset: z.ZodOptional<z.ZodString>;
245
+ queueDatasetType: z.ZodOptional<z.ZodString>;
242
246
  reportDate: z.ZodEffects<z.ZodString, string, string>;
243
247
  sectors: z.ZodDefault<z.ZodArray<z.ZodObject<{
244
248
  identifier: z.ZodString;
@@ -382,6 +386,16 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
382
386
  roles?: string[];
383
387
  }>, "many">>;
384
388
  kV: z.ZodOptional<z.ZodNumber>;
389
+ localState: z.ZodArray<z.ZodObject<{
390
+ identifier: z.ZodString;
391
+ id: z.ZodString;
392
+ }, "strip", z.ZodTypeAny, {
393
+ id?: string;
394
+ identifier?: string;
395
+ }, {
396
+ id?: string;
397
+ identifier?: string;
398
+ }>, "many">;
385
399
  meta: z.ZodObject<{
386
400
  created: z.ZodEffects<z.ZodString, string, string>;
387
401
  computedList: z.ZodArray<z.ZodString, "many">;
@@ -446,7 +460,6 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
446
460
  newToQ?: string;
447
461
  npmOrganizationProfile?: string;
448
462
  }>>;
449
- queueDatasetType: z.ZodString;
450
463
  queueKey: z.ZodString;
451
464
  sourceUpdate: z.ZodString;
452
465
  reportCount: z.ZodOptional<z.ZodNumber>;
@@ -552,8 +565,13 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
552
565
  lastModified?: string;
553
566
  plannedOperationalDate?: string;
554
567
  projectName?: string;
568
+ queueDatasetType?: string;
555
569
  reportDate?: string;
556
570
  withdrawnDate?: string;
571
+ localState?: {
572
+ id?: string;
573
+ identifier?: string;
574
+ }[];
557
575
  sourceUpdate?: string;
558
576
  totalMw?: number;
559
577
  '#developers'?: string[];
@@ -591,7 +609,6 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
591
609
  newToQ?: string;
592
610
  npmOrganizationProfile?: string;
593
611
  };
594
- queueDatasetType?: string;
595
612
  reportCount?: number;
596
613
  tags?: {
597
614
  identifier?: string;
@@ -671,8 +688,13 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
671
688
  lastModified?: string;
672
689
  plannedOperationalDate?: string;
673
690
  projectName?: string;
691
+ queueDatasetType?: string;
674
692
  reportDate?: string;
675
693
  withdrawnDate?: string;
694
+ localState?: {
695
+ id?: string;
696
+ identifier?: string;
697
+ }[];
676
698
  sourceUpdate?: string;
677
699
  totalMw?: number;
678
700
  '#developers'?: string[];
@@ -710,7 +732,6 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
710
732
  newToQ?: string;
711
733
  npmOrganizationProfile?: string;
712
734
  };
713
- queueDatasetType?: string;
714
735
  reportCount?: number;
715
736
  tags?: {
716
737
  identifier?: string;
@@ -752,6 +773,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
752
773
  plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
753
774
  projectName: z.ZodOptional<z.ZodString>;
754
775
  queueDataset: z.ZodOptional<z.ZodString>;
776
+ queueDatasetType: z.ZodOptional<z.ZodString>;
755
777
  reportDate: z.ZodEffects<z.ZodString, string, string>;
756
778
  sectors: z.ZodDefault<z.ZodArray<z.ZodObject<{
757
779
  identifier: z.ZodString;
@@ -895,6 +917,16 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
895
917
  roles?: string[];
896
918
  }>, "many">>;
897
919
  kV: z.ZodOptional<z.ZodNumber>;
920
+ localState: z.ZodArray<z.ZodObject<{
921
+ identifier: z.ZodString;
922
+ id: z.ZodString;
923
+ }, "strip", z.ZodTypeAny, {
924
+ id?: string;
925
+ identifier?: string;
926
+ }, {
927
+ id?: string;
928
+ identifier?: string;
929
+ }>, "many">;
898
930
  meta: z.ZodObject<{
899
931
  created: z.ZodEffects<z.ZodString, string, string>;
900
932
  computedList: z.ZodArray<z.ZodString, "many">;
@@ -959,7 +991,6 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
959
991
  newToQ?: string;
960
992
  npmOrganizationProfile?: string;
961
993
  }>>;
962
- queueDatasetType: z.ZodString;
963
994
  queueKey: z.ZodString;
964
995
  sourceUpdate: z.ZodString;
965
996
  reportCount: z.ZodOptional<z.ZodNumber>;
@@ -1065,8 +1096,13 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
1065
1096
  lastModified?: string;
1066
1097
  plannedOperationalDate?: string;
1067
1098
  projectName?: string;
1099
+ queueDatasetType?: string;
1068
1100
  reportDate?: string;
1069
1101
  withdrawnDate?: string;
1102
+ localState?: {
1103
+ id?: string;
1104
+ identifier?: string;
1105
+ }[];
1070
1106
  sourceUpdate?: string;
1071
1107
  totalMw?: number;
1072
1108
  '#developers'?: string[];
@@ -1104,7 +1140,6 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
1104
1140
  newToQ?: string;
1105
1141
  npmOrganizationProfile?: string;
1106
1142
  };
1107
- queueDatasetType?: string;
1108
1143
  reportCount?: number;
1109
1144
  tags?: {
1110
1145
  identifier?: string;
@@ -1184,8 +1219,13 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
1184
1219
  lastModified?: string;
1185
1220
  plannedOperationalDate?: string;
1186
1221
  projectName?: string;
1222
+ queueDatasetType?: string;
1187
1223
  reportDate?: string;
1188
1224
  withdrawnDate?: string;
1225
+ localState?: {
1226
+ id?: string;
1227
+ identifier?: string;
1228
+ }[];
1189
1229
  sourceUpdate?: string;
1190
1230
  totalMw?: number;
1191
1231
  '#developers'?: string[];
@@ -1223,7 +1263,6 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
1223
1263
  newToQ?: string;
1224
1264
  npmOrganizationProfile?: string;
1225
1265
  };
1226
- queueDatasetType?: string;
1227
1266
  reportCount?: number;
1228
1267
  tags?: {
1229
1268
  identifier?: string;
@@ -1263,6 +1302,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
1263
1302
  plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
1264
1303
  projectName: z.ZodOptional<z.ZodString>;
1265
1304
  queueDataset: z.ZodOptional<z.ZodString>;
1305
+ queueDatasetType: z.ZodOptional<z.ZodString>;
1266
1306
  reportDate: z.ZodEffects<z.ZodString, string, string>;
1267
1307
  sectors: z.ZodDefault<z.ZodArray<z.ZodObject<{
1268
1308
  identifier: z.ZodString;
@@ -1354,6 +1394,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
1354
1394
  lastModified?: string;
1355
1395
  plannedOperationalDate?: string;
1356
1396
  projectName?: string;
1397
+ queueDatasetType?: string;
1357
1398
  reportDate?: string;
1358
1399
  withdrawnDate?: string;
1359
1400
  address?: string;
@@ -1409,6 +1450,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
1409
1450
  lastModified?: string;
1410
1451
  plannedOperationalDate?: string;
1411
1452
  projectName?: string;
1453
+ queueDatasetType?: string;
1412
1454
  reportDate?: string;
1413
1455
  withdrawnDate?: string;
1414
1456
  address?: string;
@@ -67,6 +67,7 @@ const sharedQueueSchema = zod_1.z.object({
67
67
  plannedOperationalDate: entity_1.ISODateTimeOptionalSchema,
68
68
  projectName: entity_1.OptionalStringSchema,
69
69
  queueDataset: entity_1.OptionalStringSchema,
70
+ queueDatasetType: entity_1.OptionalStringSchema,
70
71
  reportDate: entity_1.YYYYMMDDRegexSchema,
71
72
  sectors: entity_1.EntityItemArraySchema.default([]),
72
73
  totals: zod_1.z.record(zod_1.z.number()).optional(),
@@ -113,6 +114,7 @@ exports.usQueueSchema = sharedQueueSchema.extend({
113
114
  isoRtoConnection: entity_1.EntityItemSchema.optional(),
114
115
  keyPeople: zod_1.z.array(KeyPeopleSchema).optional(),
115
116
  kV: entity_1.OptionalNumberSchema,
117
+ localState: entity_1.EntityItemArraySchema,
116
118
  meta: MetaSchema,
117
119
  nearestTownOrCounty: entity_1.OptionalStringSchema,
118
120
  newToQ: entity_1.ISODateTimeOptionalSchema,
@@ -120,7 +122,6 @@ exports.usQueueSchema = sharedQueueSchema.extend({
120
122
  totalMw: zod_1.z.number(),
121
123
  poiLocation: entity_1.OptionalStringSchema,
122
124
  processInfo: ProcessInfoSchema.optional(),
123
- queueDatasetType: zod_1.z.string(),
124
125
  queueKey: zod_1.z.string(),
125
126
  sourceUpdate: zod_1.z.string(),
126
127
  reportCount: entity_1.OptionalNumberSchema,
@@ -1 +1 @@
1
- {"version":3,"file":"queues.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/queues.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"queues.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/queues.ts"],"names":[],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  import { InfiniteData, QueryObserverResult, UseInfiniteQueryResult } from '@tanstack/react-query';
2
- import { ClientApiListRequestQueryParams, ClientApiListResponse, EUQueueType, Signal } from './api';
3
- export type Entity = Signal | EUQueueType;
2
+ import { ClientApiListRequestQueryParams, ClientApiListResponse, EUQueueType, Signal, USQueueType } from './api';
3
+ export type Entity = Signal | EUQueueType | USQueueType;
4
4
  export type InfiniteQueryHook = (queryParams: ClientApiListRequestQueryParams, isEnabled?: boolean, customFilter?: ClientApiListRequestQueryParams['filters']) => UseInfiniteQueryResult<InfiniteData<ClientApiListResponse<Entity>, unknown>, Error>;
5
5
  export type ReportQueryClient = (queryParams: ClientApiListRequestQueryParams) => Promise<ClientApiListResponse<Entity>>;
6
6
  export type RefetchResult = Promise<QueryObserverResult<InfiniteData<ClientApiListResponse<Entity>, unknown>, Error>>;
@@ -14,6 +14,7 @@ export type FilterSelectOption = {
14
14
  value: string;
15
15
  text?: string;
16
16
  count?: number;
17
+ group?: string;
17
18
  };
18
19
  export type EntityName = 'signal' | 'queue';
19
20
  export type SearchRoleField = {