@new-project-media/client-frontends-shared-types 2.0.16 → 2.0.18

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": "2.0.16",
3
+ "version": "2.0.18",
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/",
@@ -5,6 +5,7 @@ export declare enum RegionType {
5
5
  }
6
6
  export declare const DataCenterSchema: z.ZodObject<{
7
7
  id: z.ZodString;
8
+ country: z.ZodOptional<z.ZodString>;
8
9
  audiences: z.ZodArray<z.ZodObject<{
9
10
  identifier: z.ZodString;
10
11
  id: z.ZodString;
@@ -15,6 +16,8 @@ export declare const DataCenterSchema: z.ZodObject<{
15
16
  id?: string;
16
17
  identifier?: string;
17
18
  }>, "many">;
19
+ allSectors: z.ZodOptional<z.ZodString>;
20
+ showProject: z.ZodBoolean;
18
21
  projectName: z.ZodString;
19
22
  substation: z.ZodOptional<z.ZodString>;
20
23
  internalNotes: z.ZodOptional<z.ZodString>;
@@ -255,6 +258,8 @@ export declare const DataCenterSchema: z.ZodObject<{
255
258
  unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
256
259
  }>>;
257
260
  }, "strip", z.ZodTypeAny, {
261
+ enabled?: boolean;
262
+ description?: string;
258
263
  powerCapacity?: {
259
264
  sectors?: {
260
265
  id?: string;
@@ -263,9 +268,9 @@ export declare const DataCenterSchema: z.ZodObject<{
263
268
  value?: number;
264
269
  unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
265
270
  };
271
+ }, {
266
272
  enabled?: boolean;
267
273
  description?: string;
268
- }, {
269
274
  powerCapacity?: {
270
275
  sectors?: {
271
276
  id?: string;
@@ -274,8 +279,6 @@ export declare const DataCenterSchema: z.ZodObject<{
274
279
  value?: number;
275
280
  unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
276
281
  };
277
- enabled?: boolean;
278
- description?: string;
279
282
  }>>;
280
283
  totals: z.ZodOptional<z.ZodEffects<z.ZodObject<{
281
284
  offtaker: z.ZodOptional<z.ZodNumber>;
@@ -348,6 +351,19 @@ export declare const DataCenterSchema: z.ZodObject<{
348
351
  id?: string;
349
352
  identifier?: string;
350
353
  }>, "many">;
354
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
355
+ source: z.ZodOptional<z.ZodString>;
356
+ identifier: z.ZodString;
357
+ id: z.ZodString;
358
+ }, "strip", z.ZodTypeAny, {
359
+ id?: string;
360
+ identifier?: string;
361
+ source?: string;
362
+ }, {
363
+ id?: string;
364
+ identifier?: string;
365
+ source?: string;
366
+ }>, "many">>;
351
367
  plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
352
368
  organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
353
369
  identifier: z.ZodString;
@@ -540,7 +556,18 @@ export declare const DataCenterSchema: z.ZodObject<{
540
556
  identifier?: string;
541
557
  }>, "many">;
542
558
  modified: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
559
+ '#developers': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
560
+ '#epcs': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
561
+ '#utilities': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
562
+ localCity: z.ZodOptional<z.ZodString>;
563
+ localState: z.ZodOptional<z.ZodString>;
564
+ localCounty: z.ZodOptional<z.ZodString>;
543
565
  }, "strip", z.ZodTypeAny, {
566
+ sectors?: {
567
+ id?: string;
568
+ identifier?: string;
569
+ source?: string;
570
+ }[];
544
571
  id?: string;
545
572
  location?: {
546
573
  id?: string;
@@ -574,6 +601,7 @@ export declare const DataCenterSchema: z.ZodObject<{
574
601
  id?: string;
575
602
  identifier?: string;
576
603
  }[];
604
+ country?: string;
577
605
  created?: string;
578
606
  organizations?: {
579
607
  id?: string;
@@ -588,6 +616,15 @@ export declare const DataCenterSchema: z.ZodObject<{
588
616
  applicationId?: string;
589
617
  queueDataset?: string;
590
618
  }[];
619
+ powerCapacity?: {
620
+ sectors?: {
621
+ id?: string;
622
+ identifier?: string;
623
+ }[];
624
+ value?: number;
625
+ unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
626
+ };
627
+ allSectors?: string;
591
628
  audiences?: {
592
629
  id?: string;
593
630
  identifier?: string;
@@ -624,6 +661,8 @@ export declare const DataCenterSchema: z.ZodObject<{
624
661
  developer?: number;
625
662
  intels?: number;
626
663
  };
664
+ localCounty?: string;
665
+ localState?: string;
627
666
  plannedOperationalDate?: string;
628
667
  projectName?: string;
629
668
  cost?: {
@@ -634,18 +673,11 @@ export declare const DataCenterSchema: z.ZodObject<{
634
673
  id?: string;
635
674
  identifier?: string;
636
675
  }[];
676
+ showProject?: boolean;
637
677
  substation?: string;
638
678
  internalNotes?: string;
639
679
  externalNotes?: string;
640
680
  region?: RegionType;
641
- powerCapacity?: {
642
- sectors?: {
643
- id?: string;
644
- identifier?: string;
645
- }[];
646
- value?: number;
647
- unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
648
- };
649
681
  buildingSize?: {
650
682
  value?: number;
651
683
  unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
@@ -669,6 +701,8 @@ export declare const DataCenterSchema: z.ZodObject<{
669
701
  };
670
702
  };
671
703
  onsiteGeneration?: {
704
+ enabled?: boolean;
705
+ description?: string;
672
706
  powerCapacity?: {
673
707
  sectors?: {
674
708
  id?: string;
@@ -677,8 +711,6 @@ export declare const DataCenterSchema: z.ZodObject<{
677
711
  value?: number;
678
712
  unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
679
713
  };
680
- enabled?: boolean;
681
- description?: string;
682
714
  };
683
715
  intel?: {
684
716
  id?: string;
@@ -689,7 +721,16 @@ export declare const DataCenterSchema: z.ZodObject<{
689
721
  identifier?: string;
690
722
  }[];
691
723
  modified?: string;
724
+ '#developers'?: string[];
725
+ '#epcs'?: string[];
726
+ '#utilities'?: string[];
727
+ localCity?: string;
692
728
  }, {
729
+ sectors?: {
730
+ id?: string;
731
+ identifier?: string;
732
+ source?: string;
733
+ }[];
693
734
  id?: string;
694
735
  location?: {
695
736
  id?: string;
@@ -723,6 +764,7 @@ export declare const DataCenterSchema: z.ZodObject<{
723
764
  id?: string;
724
765
  identifier?: string;
725
766
  }[];
767
+ country?: string;
726
768
  created?: string;
727
769
  organizations?: {
728
770
  id?: string;
@@ -737,6 +779,15 @@ export declare const DataCenterSchema: z.ZodObject<{
737
779
  applicationId?: string;
738
780
  queueDataset?: string;
739
781
  }[];
782
+ powerCapacity?: {
783
+ sectors?: {
784
+ id?: string;
785
+ identifier?: string;
786
+ }[];
787
+ value?: number;
788
+ unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
789
+ };
790
+ allSectors?: string;
740
791
  audiences?: {
741
792
  id?: string;
742
793
  identifier?: string;
@@ -773,6 +824,8 @@ export declare const DataCenterSchema: z.ZodObject<{
773
824
  developer?: number;
774
825
  intels?: number;
775
826
  };
827
+ localCounty?: string;
828
+ localState?: string;
776
829
  plannedOperationalDate?: string;
777
830
  projectName?: string;
778
831
  cost?: {
@@ -783,18 +836,11 @@ export declare const DataCenterSchema: z.ZodObject<{
783
836
  id?: string;
784
837
  identifier?: string;
785
838
  }[];
839
+ showProject?: boolean;
786
840
  substation?: string;
787
841
  internalNotes?: string;
788
842
  externalNotes?: string;
789
843
  region?: RegionType;
790
- powerCapacity?: {
791
- sectors?: {
792
- id?: string;
793
- identifier?: string;
794
- }[];
795
- value?: number;
796
- unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
797
- };
798
844
  buildingSize?: {
799
845
  value?: number;
800
846
  unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
@@ -818,6 +864,8 @@ export declare const DataCenterSchema: z.ZodObject<{
818
864
  };
819
865
  };
820
866
  onsiteGeneration?: {
867
+ enabled?: boolean;
868
+ description?: string;
821
869
  powerCapacity?: {
822
870
  sectors?: {
823
871
  id?: string;
@@ -826,8 +874,6 @@ export declare const DataCenterSchema: z.ZodObject<{
826
874
  value?: number;
827
875
  unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
828
876
  };
829
- enabled?: boolean;
830
- description?: string;
831
877
  };
832
878
  intel?: {
833
879
  id?: string;
@@ -838,5 +884,9 @@ export declare const DataCenterSchema: z.ZodObject<{
838
884
  identifier?: string;
839
885
  }[];
840
886
  modified?: string;
887
+ '#developers'?: string[];
888
+ '#epcs'?: string[];
889
+ '#utilities'?: string[];
890
+ localCity?: string;
841
891
  }>;
842
892
  export type DataCenter = z.infer<typeof DataCenterSchema>;
@@ -10,7 +10,10 @@ var RegionType;
10
10
  })(RegionType || (exports.RegionType = RegionType = {}));
11
11
  exports.DataCenterSchema = zod_1.z.object({
12
12
  id: zod_1.z.string(),
13
+ country: entity_1.OptionalStringSchema,
13
14
  audiences: entity_1.EntityItemArraySchema,
15
+ allSectors: entity_1.OptionalStringSchema,
16
+ showProject: zod_1.z.boolean(),
14
17
  projectName: zod_1.z.string().min(2),
15
18
  substation: entity_1.OptionalStringSchema,
16
19
  internalNotes: entity_1.OptionalStringSchema,
@@ -33,15 +36,10 @@ exports.DataCenterSchema = zod_1.z.object({
33
36
  storage: entity_1.OptionalNumberWithUnitSchema,
34
37
  })
35
38
  .optional(),
36
- onsiteGeneration: zod_1.z
37
- .object({
38
- enabled: zod_1.z.boolean().optional(),
39
- description: entity_1.OptionalStringSchema,
40
- powerCapacity: entity_1.OptionalNumberWithUnitAndSectorSchema,
41
- })
42
- .optional(),
39
+ onsiteGeneration: entity_1.OnsiteGenerationSchema.optional(),
43
40
  totals: entity_1.TotalsSchema,
44
41
  regions: entity_1.EntityItemArraySchema,
42
+ sectors: entity_1.EntityItemSourceArraySchema.optional(),
45
43
  plannedOperationalDate: entity_1.YYYYMMDDRegexOptionalSchema,
46
44
  organizations: entity_1.OrganizationSchema,
47
45
  queueApplications: entity_1.QueueJoinOptionalSchema,
@@ -51,5 +49,11 @@ exports.DataCenterSchema = zod_1.z.object({
51
49
  created: entity_1.YYYYMMDDRegexOptionalSchema,
52
50
  createdBy: entity_1.EntityItemArraySchema,
53
51
  modified: entity_1.YYYYMMDDRegexOptionalSchema,
52
+ '#developers': entity_1.OptionalStringArraySchema,
53
+ '#epcs': entity_1.OptionalStringArraySchema,
54
+ '#utilities': entity_1.OptionalStringArraySchema,
55
+ localCity: entity_1.OptionalStringSchema,
56
+ localState: entity_1.OptionalStringSchema,
57
+ localCounty: entity_1.OptionalStringSchema,
54
58
  });
55
59
  //# sourceMappingURL=dataCenters.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"dataCenters.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/dataCenters.ts"],"names":[],"mappings":";;;AAAA,6BAAuB;AACvB,qCAWiB;AAEjB,IAAY,UAGX;AAHD,WAAY,UAAU;IACpB,+BAAiB,CAAA;IACjB,uBAAS,CAAA;AACX,CAAC,EAHW,UAAU,0BAAV,UAAU,QAGrB;AAEY,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,SAAS,EAAE,8BAAqB;IAChC,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC9B,UAAU,EAAE,6BAAoB;IAChC,aAAa,EAAE,6BAAoB;IACnC,aAAa,EAAE,6BAAoB;IACnC,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,MAAM,EAAE,OAAC,CAAC,UAAU,CAAC,UAAU,CAAC;IAChC,aAAa,EAAE,8CAAqC;IACpD,YAAY,EAAE,qCAA4B;IAC1C,QAAQ,EAAE,qCAA4B;IACtC,IAAI,EAAE,qCAA4B;IAClC,gBAAgB,EAAE,OAAC;SAChB,MAAM,CAAC;QACN,aAAa,EAAE,8CAAqC;QACpD,OAAO,EAAE,qCAA4B;KACtC,CAAC;SACD,QAAQ,EAAE;IACb,gBAAgB,EAAE,OAAC;SAChB,MAAM,CAAC;QACN,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;QAC/B,WAAW,EAAE,6BAAoB;QACjC,aAAa,EAAE,8CAAqC;KACrD,CAAC;SACD,QAAQ,EAAE;IACb,MAAM,EAAE,qBAAY;IACpB,OAAO,EAAE,8BAAqB;IAC9B,sBAAsB,EAAE,oCAA2B;IACnD,aAAa,EAAE,2BAAkB;IACjC,iBAAiB,EAAE,gCAAuB;IAC1C,KAAK,EAAE,8BAAqB;IAC5B,QAAQ,EAAE,gCAAuB,CAAC,GAAG,CAAC,CAAC,CAAC;IACxC,MAAM,EAAE,8BAAqB,CAAC,GAAG,CAAC,CAAC,CAAC;IACpC,OAAO,EAAE,oCAA2B;IACpC,SAAS,EAAE,8BAAqB;IAChC,QAAQ,EAAE,oCAA2B;CACtC,CAAC,CAAA"}
1
+ {"version":3,"file":"dataCenters.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/dataCenters.ts"],"names":[],"mappings":";;;AAAA,6BAAuB;AACvB,qCAciB;AAEjB,IAAY,UAGX;AAHD,WAAY,UAAU;IACpB,+BAAiB,CAAA;IACjB,uBAAS,CAAA;AACX,CAAC,EAHW,UAAU,0BAAV,UAAU,QAGrB;AAEY,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,OAAO,EAAE,6BAAoB;IAC7B,SAAS,EAAE,8BAAqB;IAChC,UAAU,EAAE,6BAAoB;IAChC,WAAW,EAAE,OAAC,CAAC,OAAO,EAAE;IACxB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC9B,UAAU,EAAE,6BAAoB;IAChC,aAAa,EAAE,6BAAoB;IACnC,aAAa,EAAE,6BAAoB;IACnC,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,MAAM,EAAE,OAAC,CAAC,UAAU,CAAC,UAAU,CAAC;IAChC,aAAa,EAAE,8CAAqC;IACpD,YAAY,EAAE,qCAA4B;IAC1C,QAAQ,EAAE,qCAA4B;IACtC,IAAI,EAAE,qCAA4B;IAClC,gBAAgB,EAAE,OAAC;SAChB,MAAM,CAAC;QACN,aAAa,EAAE,8CAAqC;QACpD,OAAO,EAAE,qCAA4B;KACtC,CAAC;SACD,QAAQ,EAAE;IACb,gBAAgB,EAAE,+BAAsB,CAAC,QAAQ,EAAE;IACnD,MAAM,EAAE,qBAAY;IACpB,OAAO,EAAE,8BAAqB;IAC9B,OAAO,EAAE,oCAA2B,CAAC,QAAQ,EAAE;IAC/C,sBAAsB,EAAE,oCAA2B;IACnD,aAAa,EAAE,2BAAkB;IACjC,iBAAiB,EAAE,gCAAuB;IAC1C,KAAK,EAAE,8BAAqB;IAC5B,QAAQ,EAAE,gCAAuB,CAAC,GAAG,CAAC,CAAC,CAAC;IACxC,MAAM,EAAE,8BAAqB,CAAC,GAAG,CAAC,CAAC,CAAC;IACpC,OAAO,EAAE,oCAA2B;IACpC,SAAS,EAAE,8BAAqB;IAChC,QAAQ,EAAE,oCAA2B;IACrC,aAAa,EAAE,kCAAyB;IACxC,OAAO,EAAE,kCAAyB;IAClC,YAAY,EAAE,kCAAyB;IACvC,SAAS,EAAE,6BAAoB;IAC/B,UAAU,EAAE,6BAAoB;IAChC,WAAW,EAAE,6BAAoB;CAClC,CAAC,CAAA"}
@@ -33,6 +33,19 @@ export declare const OrganizationItemSchema: z.ZodObject<{
33
33
  role?: string;
34
34
  ref?: string;
35
35
  }>;
36
+ export declare const EntityItemSourceSchema: z.ZodObject<{
37
+ source: z.ZodOptional<z.ZodString>;
38
+ identifier: z.ZodString;
39
+ id: z.ZodString;
40
+ }, "strip", z.ZodTypeAny, {
41
+ id?: string;
42
+ identifier?: string;
43
+ source?: string;
44
+ }, {
45
+ id?: string;
46
+ identifier?: string;
47
+ source?: string;
48
+ }>;
36
49
  export type OrganizationItemType = z.infer<typeof OrganizationItemSchema>;
37
50
  export declare const OrganizationSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
38
51
  identifier: z.ZodString;
@@ -63,6 +76,20 @@ export declare const EntityItemArraySchema: z.ZodArray<z.ZodObject<{
63
76
  identifier?: string;
64
77
  }>, "many">;
65
78
  export type EntityItemArrayType = z.infer<typeof EntityItemArraySchema>;
79
+ export declare const EntityItemSourceArraySchema: z.ZodArray<z.ZodObject<{
80
+ source: z.ZodOptional<z.ZodString>;
81
+ identifier: z.ZodString;
82
+ id: z.ZodString;
83
+ }, "strip", z.ZodTypeAny, {
84
+ id?: string;
85
+ identifier?: string;
86
+ source?: string;
87
+ }, {
88
+ id?: string;
89
+ identifier?: string;
90
+ source?: string;
91
+ }>, "many">;
92
+ export type EntityItemSourceArrayType = z.infer<typeof EntityItemSourceArraySchema>;
66
93
  export declare const EntityItemArrayOptionalSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
67
94
  identifier: z.ZodString;
68
95
  id: z.ZodString;
@@ -76,6 +103,7 @@ export declare const EntityItemArrayOptionalSchema: z.ZodOptional<z.ZodArray<z.Z
76
103
  export type EntityItemArrayOptionalSchemaType = z.infer<typeof EntityItemArrayOptionalSchema>;
77
104
  export declare const OptionalStringSchema: z.ZodOptional<z.ZodString>;
78
105
  export declare const OptionalNumberSchema: z.ZodOptional<z.ZodNumber>;
106
+ export declare const OptionalStringArraySchema: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
79
107
  export declare const ComponentsSchema: z.ZodObject<{
80
108
  'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
81
109
  'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
@@ -444,20 +472,20 @@ export declare const LinkedPeopleSchema: z.ZodArray<z.ZodObject<{
444
472
  id?: string;
445
473
  identifier?: string;
446
474
  role?: string;
475
+ source?: string;
447
476
  linkedinUrl?: string;
448
477
  fullName?: string;
449
478
  email?: string;
450
479
  phone?: string;
451
- source?: string;
452
480
  }, {
453
481
  id?: string;
454
482
  identifier?: string;
455
483
  role?: string;
484
+ source?: string;
456
485
  linkedinUrl?: string;
457
486
  fullName?: string;
458
487
  email?: string;
459
488
  phone?: string;
460
- source?: string;
461
489
  }>, "many">;
462
490
  export declare const LinkedPeopleOptionalSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
463
491
  id: z.ZodOptional<z.ZodString>;
@@ -472,20 +500,20 @@ export declare const LinkedPeopleOptionalSchema: z.ZodOptional<z.ZodArray<z.ZodO
472
500
  id?: string;
473
501
  identifier?: string;
474
502
  role?: string;
503
+ source?: string;
475
504
  linkedinUrl?: string;
476
505
  fullName?: string;
477
506
  email?: string;
478
507
  phone?: string;
479
- source?: string;
480
508
  }, {
481
509
  id?: string;
482
510
  identifier?: string;
483
511
  role?: string;
512
+ source?: string;
484
513
  linkedinUrl?: string;
485
514
  fullName?: string;
486
515
  email?: string;
487
516
  phone?: string;
488
- source?: string;
489
517
  }>, "many">>;
490
518
  export type LinkedPeopleOptionalSchemaType = z.infer<typeof LinkedPeopleOptionalSchema>;
491
519
  export declare const AddressSchema: z.ZodObject<{
@@ -933,3 +961,57 @@ export declare const OptionalNumberWithUnitAndSectorSchema: z.ZodOptional<z.ZodO
933
961
  value?: number;
934
962
  unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
935
963
  }>>;
964
+ export declare const OnsiteGenerationSchema: z.ZodObject<{
965
+ enabled: z.ZodOptional<z.ZodBoolean>;
966
+ description: z.ZodOptional<z.ZodString>;
967
+ powerCapacity: z.ZodOptional<z.ZodObject<{
968
+ value: z.ZodOptional<z.ZodNumber>;
969
+ unit: z.ZodEnum<["kW", "MW", "GW", "kWh", "MWh", "GWh", "acre", "hectare", "square_foot", "square_metre", "usd", "eur", "gbp"]>;
970
+ sectors: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
971
+ identifier: z.ZodString;
972
+ id: z.ZodString;
973
+ }, "strip", z.ZodTypeAny, {
974
+ id?: string;
975
+ identifier?: string;
976
+ }, {
977
+ id?: string;
978
+ identifier?: string;
979
+ }>>, "many">>;
980
+ }, "strip", z.ZodTypeAny, {
981
+ sectors?: {
982
+ id?: string;
983
+ identifier?: string;
984
+ }[];
985
+ value?: number;
986
+ unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
987
+ }, {
988
+ sectors?: {
989
+ id?: string;
990
+ identifier?: string;
991
+ }[];
992
+ value?: number;
993
+ unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
994
+ }>>;
995
+ }, "strip", z.ZodTypeAny, {
996
+ enabled?: boolean;
997
+ description?: string;
998
+ powerCapacity?: {
999
+ sectors?: {
1000
+ id?: string;
1001
+ identifier?: string;
1002
+ }[];
1003
+ value?: number;
1004
+ unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
1005
+ };
1006
+ }, {
1007
+ enabled?: boolean;
1008
+ description?: string;
1009
+ powerCapacity?: {
1010
+ sectors?: {
1011
+ id?: string;
1012
+ identifier?: string;
1013
+ }[];
1014
+ value?: number;
1015
+ unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
1016
+ };
1017
+ }>;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.OptionalNumberWithUnitAndSectorSchema = exports.OptionalNumberWithUnitSchema = exports.FingerprintSchema = exports.TotalsSchema = exports.GeoSchema = exports.geoPoint = exports.defaultValue = exports.DocumentRecordSchema = exports.OptionalDocumentLinkSchema = exports.DocumentLinkSchema = exports.OptionalS3DocumentSchema = exports.DocumentS3RecordSchema = exports.OptionalCoordinateSchema = exports.CoordinateSchema = exports.OptionalAddressSchema = exports.AddressSchema = exports.LinkedPeopleOptionalSchema = exports.LinkedPeopleSchema = exports.QueueJoinOptionalSchema = exports.QueueJoinSchema = exports.ISODateTimeOptionalSchema = exports.ISODateTimeSchema = exports.FlexibleDateRegexOptionalSchema = exports.FlexibleDateRegexSchema = exports.YYYYMMDDRegexOptionalSchema = exports.YYYYMMDDRegexSchema = exports.YYYYMMDDRegex = exports.LocationItemArraySchema = exports.LocationItemSchema = exports.GeometrySchema = exports.ComponentsSchema = exports.OptionalNumberSchema = exports.OptionalStringSchema = exports.EntityItemArrayOptionalSchema = exports.EntityItemArraySchema = exports.OrganizationSchema = exports.OrganizationItemSchema = exports.IdentifierOnlyEntityItemSchema = exports.EntityItemSchema = void 0;
3
+ exports.OnsiteGenerationSchema = exports.OptionalNumberWithUnitAndSectorSchema = exports.OptionalNumberWithUnitSchema = exports.FingerprintSchema = exports.TotalsSchema = exports.GeoSchema = exports.geoPoint = exports.defaultValue = exports.DocumentRecordSchema = exports.OptionalDocumentLinkSchema = exports.DocumentLinkSchema = exports.OptionalS3DocumentSchema = exports.DocumentS3RecordSchema = exports.OptionalCoordinateSchema = exports.CoordinateSchema = exports.OptionalAddressSchema = exports.AddressSchema = exports.LinkedPeopleOptionalSchema = exports.LinkedPeopleSchema = exports.QueueJoinOptionalSchema = exports.QueueJoinSchema = exports.ISODateTimeOptionalSchema = exports.ISODateTimeSchema = exports.FlexibleDateRegexOptionalSchema = exports.FlexibleDateRegexSchema = exports.YYYYMMDDRegexOptionalSchema = exports.YYYYMMDDRegexSchema = exports.YYYYMMDDRegex = exports.LocationItemArraySchema = exports.LocationItemSchema = exports.GeometrySchema = exports.ComponentsSchema = exports.OptionalStringArraySchema = exports.OptionalNumberSchema = exports.OptionalStringSchema = exports.EntityItemArrayOptionalSchema = exports.EntityItemSourceArraySchema = exports.EntityItemArraySchema = exports.OrganizationSchema = exports.EntityItemSourceSchema = exports.OrganizationItemSchema = exports.IdentifierOnlyEntityItemSchema = exports.EntityItemSchema = void 0;
4
4
  const zod_1 = require("zod");
5
5
  exports.EntityItemSchema = zod_1.z.object({
6
6
  identifier: zod_1.z.string().min(1),
@@ -13,11 +13,14 @@ exports.OrganizationItemSchema = exports.EntityItemSchema.extend({
13
13
  role: zod_1.z.string().min(1),
14
14
  ref: zod_1.z.string().optional(),
15
15
  });
16
+ exports.EntityItemSourceSchema = zod_1.z.object(Object.assign(Object.assign({}, exports.EntityItemSchema.shape), { source: zod_1.z.string().optional() }));
16
17
  exports.OrganizationSchema = zod_1.z.array(exports.OrganizationItemSchema).optional();
17
18
  exports.EntityItemArraySchema = zod_1.z.array(exports.EntityItemSchema);
19
+ exports.EntityItemSourceArraySchema = zod_1.z.array(exports.EntityItemSourceSchema);
18
20
  exports.EntityItemArrayOptionalSchema = exports.EntityItemArraySchema.optional();
19
21
  exports.OptionalStringSchema = zod_1.z.string().optional();
20
22
  exports.OptionalNumberSchema = zod_1.z.number().optional();
23
+ exports.OptionalStringArraySchema = zod_1.z.string().array().optional();
21
24
  exports.ComponentsSchema = zod_1.z.object({
22
25
  'ISO_3166-1_alpha-2': zod_1.z.string().optional(),
23
26
  'ISO_3166-1_alpha-3': zod_1.z.string().optional(),
@@ -207,4 +210,9 @@ const NumberWithUnitAndSectorSchema = zod_1.z.object({
207
210
  .optional(),
208
211
  });
209
212
  exports.OptionalNumberWithUnitAndSectorSchema = NumberWithUnitAndSectorSchema.optional();
213
+ exports.OnsiteGenerationSchema = zod_1.z.object({
214
+ enabled: zod_1.z.boolean().optional(),
215
+ description: exports.OptionalStringSchema,
216
+ powerCapacity: exports.OptionalNumberWithUnitAndSectorSchema,
217
+ });
210
218
  //# sourceMappingURL=entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"entity.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/entity.ts"],"names":[],"mappings":";;;AAAA,6BAAiC;AAEpB,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC7B,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CACtB,CAAC,CAAA;AAEW,QAAA,8BAA8B,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CAC9B,CAAC,CAAA;AAEW,QAAA,sBAAsB,GAAG,wBAAgB,CAAC,MAAM,CAAC;IAC5D,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACvB,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC3B,CAAC,CAAA;AAIW,QAAA,kBAAkB,GAAG,OAAC,CAAC,KAAK,CAAC,8BAAsB,CAAC,CAAC,QAAQ,EAAE,CAAA;AAG/D,QAAA,qBAAqB,GAAG,OAAC,CAAC,KAAK,CAAC,wBAAgB,CAAC,CAAA;AAGjD,QAAA,6BAA6B,GAAG,6BAAqB,CAAC,QAAQ,EAAE,CAAA;AAKhE,QAAA,oBAAoB,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAA;AAC5C,QAAA,oBAAoB,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAA;AAE5C,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,oBAAoB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3C,oBAAoB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3C,YAAY,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IAC5C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACtC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAA;AAEW,QAAA,cAAc,GAAG,OAAC,CAAC,MAAM,CAAC;IACrC,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;CAChB,CAAC,CAAA;AAEW,QAAA,kBAAkB,GAAG,wBAAgB,CAAC,MAAM,CAAC;IACxD,aAAa,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACrC,UAAU,EAAE,wBAAgB,CAAC,QAAQ,EAAE;IACvC,QAAQ,EAAE,sBAAc,CAAC,QAAQ,EAAE;IACnC,QAAQ,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAA;AAEW,QAAA,uBAAuB,GAAG,OAAC,CAAC,KAAK,CAAC,0BAAkB,CAAC,CAAA;AAErD,QAAA,aAAa,GAAG,mDAAmD,CAAA;AACnE,QAAA,mBAAmB,GAAG,OAAC;KACjC,MAAM,EAAE;KACR,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,qBAAa,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;IAC5C,OAAO,EAAE,qBAAqB;CAC/B,CAAC,CAAA;AACS,QAAA,2BAA2B,GACtC,2BAAmB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAA;AAE3C,MAAM,iBAAiB,GACrB,uDAAuD,CAAA;AAE5C,QAAA,uBAAuB,GAAG,OAAC;KACrC,MAAM,EAAE;KACR,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;IAChD,OAAO,EAAE,iEAAiE;CAC3E,CAAC,CAAA;AAES,QAAA,+BAA+B,GAC1C,+BAAuB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAA;AAE/C,MAAM,yBAAyB,GAAG,OAAC;KAChC,MAAM,EAAE;KACR,KAAK,CAAC,+CAA+C,CAAC,CAAA;AAE5C,QAAA,iBAAiB,GAAG,OAAC,CAAC,KAAK,CAAC;IACvC,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrB,yBAAyB;IACzB,+BAAuB;CACxB,CAAC,CAAA;AAEW,QAAA,yBAAyB,GAAG,OAAC;KACvC,KAAK,CAAC;IACL,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrB,yBAAyB;IACzB,+BAAuB;CACxB,CAAC;KACD,QAAQ,EAAE,CAAA;AAEA,QAAA,eAAe,GAAG,OAAC;KAC7B,MAAM,CAAC;IACN,QAAQ,EAAE,4BAAoB;IAC9B,aAAa,EAAE,4BAAoB;IACnC,YAAY,EAAE,4BAAoB;IAClC,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE;CACvB,CAAC;KACD,KAAK,EAAE,CAAA;AAEG,QAAA,uBAAuB,GAAG,uBAAe,CAAC,QAAQ,EAAE,CAAA;AAKpD,QAAA,kBAAkB,GAAG,OAAC;KAChC,MAAM,CAAC;IACN,EAAE,EAAE,4BAAoB;IACxB,UAAU,EAAE,4BAAoB;IAChC,WAAW,EAAE,IAAA,cAAQ,EAAC,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC;IACvC,IAAI,EAAE,4BAAoB;IAC1B,QAAQ,EAAE,4BAAoB;IAC9B,KAAK,EAAE,4BAAoB;IAC3B,KAAK,EAAE,4BAAoB;IAC3B,MAAM,EAAE,4BAAoB;CAC7B,CAAC;KACD,KAAK,EAAE,CAAA;AAEG,QAAA,0BAA0B,GAAG,0BAAkB,CAAC,QAAQ,EAAE,CAAA;AAK1D,QAAA,aAAa,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,IAAI,EAAE,4BAAoB;IAC1B,IAAI,EAAE,4BAAoB;IAC1B,KAAK,EAAE,4BAAoB;IAC3B,MAAM,EAAE,4BAAoB;IAC5B,OAAO,EAAE,4BAAoB;IAC7B,GAAG,EAAE,4BAAoB;IACzB,OAAO,EAAE,4BAAoB;IAC7B,QAAQ,EAAE,4BAAoB;IAC9B,SAAS,EAAE,4BAAoB;CAChC,CAAC,CAAA;AAEW,QAAA,qBAAqB,GAAG,qBAAa,CAAC,QAAQ,EAAE,CAAA;AAGhD,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAA;AACjE,QAAA,wBAAwB,GAAG,wBAAgB,CAAC,QAAQ,EAAE,CAAA;AAEtD,QAAA,sBAAsB,GAAG,OAAC;KACpC,MAAM,CAAC;IACN,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;IACpB,OAAO,EAAE,2BAAmB;IAC5B,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;IACpB,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACnC,GAAG,EAAE,4BAAoB;IACzB,QAAQ,EAAE,4BAAoB;CAC/B,CAAC;KACD,KAAK,EAAE,CAAA;AAEG,QAAA,wBAAwB,GAAG,8BAAsB,CAAC,QAAQ,EAAE,CAAA;AAG5D,QAAA,kBAAkB,GAAG,OAAC;KAChC,MAAM,CAAC;IACN,IAAI,EAAE,4BAAoB;IAC1B,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACrB,OAAO,EAAE,4BAAoB;IAC7B,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;IACzB,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,YAAY,EAAE,2BAAmB;IACjC,MAAM,EAAE,4BAAoB;IAC5B,EAAE,EAAE,4BAAoB;CACzB,CAAC;KACD,KAAK,EAAE,CAAA;AAEG,QAAA,0BAA0B,GAAG,0BAAkB,CAAC,QAAQ,EAAE,CAAA;AAK1D,QAAA,oBAAoB,GAAG,OAAC;KAClC,KAAK,CAAC,CAAC,8BAAsB,EAAE,0BAAkB,CAAC,CAAC;KACnD,QAAQ,EAAE,CAAA;AAMA,QAAA,YAAY,GAAG,OAAC,CAAC,MAAM,EAAE,CAAA;AACzB,QAAA,QAAQ,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/B,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;CAChB,CAAC,CAAA;AACW,QAAA,SAAS,GAAG,OAAC;KACvB,MAAM,CAAC;IACN,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;IACxB,OAAO,EAAE,gBAAQ;IACjB,OAAO,EAAE,gBAAQ;IACjB,MAAM,EAAE,gBAAQ;IAChB,QAAQ,EAAE,gBAAQ;CACnB,CAAC;KACD,OAAO,EAAE,CAAA;AAIC,QAAA,YAAY,GAAG,OAAC;KAC1B,MAAM,CAAC;IACN,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,iBAAiB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACxC,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1B,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC;KACD,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE;IAC5C,OAAO,EAAE,+DAA+D;CACzE,CAAC;KACD,QAAQ,EAAE,CAAA;AAEb,MAAM,WAAW,GAAG,wBAAwB,CAAA;AAE/B,QAAA,iBAAiB,GAAG,OAAC;KAC/B,MAAM,EAAE;KACR,KAAK,CAAC,WAAW,EAAE,uBAAuB,CAAC;KAC3C,GAAG,CAAC,CAAC,EAAE,6BAA6B,CAAC,CAAA;AAExC,MAAM,QAAQ,GAAG,OAAC,CAAC,IAAI,CAAC;IACtB,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,KAAK;IACL,KAAK;IACL,KAAK;IACL,MAAM;IACN,SAAS;IACT,aAAa;IACb,cAAc;IACd,KAAK;IACL,KAAK;IACL,KAAK;CACN,CAAC,CAAA;AAEF,MAAM,oBAAoB,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,IAAI,EAAE,QAAQ;CACf,CAAC,CAAA;AAEW,QAAA,4BAA4B,GAAG,oBAAoB,CAAC,QAAQ,EAAE,CAAA;AAE3E,MAAM,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IAC7C,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAC;SACP,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC;SACtE,QAAQ,EAAE;CACd,CAAC,CAAA;AAEW,QAAA,qCAAqC,GAChD,6BAA6B,CAAC,QAAQ,EAAE,CAAA"}
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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"}
@@ -790,20 +790,20 @@ declare const usQueueDetailsSchema: z.ZodObject<{
790
790
  source: z.ZodOptional<z.ZodString>;
791
791
  }, "strip", z.ZodTypeAny, {
792
792
  id?: string;
793
+ source?: string;
793
794
  linkedinUrl?: string;
794
795
  fullName?: string;
795
796
  email?: string;
796
797
  phone?: string;
797
- source?: string;
798
798
  created?: string;
799
799
  roles?: string[];
800
800
  }, {
801
801
  id?: string;
802
+ source?: string;
802
803
  linkedinUrl?: string;
803
804
  fullName?: string;
804
805
  email?: string;
805
806
  phone?: string;
806
- source?: string;
807
807
  created?: string;
808
808
  roles?: string[];
809
809
  }>, "many">;
@@ -1021,11 +1021,11 @@ declare const usQueueDetailsSchema: z.ZodObject<{
1021
1021
  }[];
1022
1022
  keyPeople?: {
1023
1023
  id?: string;
1024
+ source?: string;
1024
1025
  linkedinUrl?: string;
1025
1026
  fullName?: string;
1026
1027
  email?: string;
1027
1028
  phone?: string;
1028
- source?: string;
1029
1029
  created?: string;
1030
1030
  roles?: string[];
1031
1031
  }[];
@@ -1168,11 +1168,11 @@ declare const usQueueDetailsSchema: z.ZodObject<{
1168
1168
  }[];
1169
1169
  keyPeople?: {
1170
1170
  id?: string;
1171
+ source?: string;
1171
1172
  linkedinUrl?: string;
1172
1173
  fullName?: string;
1173
1174
  email?: string;
1174
1175
  phone?: string;
1175
- source?: string;
1176
1176
  created?: string;
1177
1177
  roles?: string[];
1178
1178
  }[];
@@ -1631,20 +1631,20 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
1631
1631
  source: z.ZodOptional<z.ZodString>;
1632
1632
  }, "strip", z.ZodTypeAny, {
1633
1633
  id?: string;
1634
+ source?: string;
1634
1635
  linkedinUrl?: string;
1635
1636
  fullName?: string;
1636
1637
  email?: string;
1637
1638
  phone?: string;
1638
- source?: string;
1639
1639
  created?: string;
1640
1640
  roles?: string[];
1641
1641
  }, {
1642
1642
  id?: string;
1643
+ source?: string;
1643
1644
  linkedinUrl?: string;
1644
1645
  fullName?: string;
1645
1646
  email?: string;
1646
1647
  phone?: string;
1647
- source?: string;
1648
1648
  created?: string;
1649
1649
  roles?: string[];
1650
1650
  }>, "many">;
@@ -1862,11 +1862,11 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
1862
1862
  }[];
1863
1863
  keyPeople?: {
1864
1864
  id?: string;
1865
+ source?: string;
1865
1866
  linkedinUrl?: string;
1866
1867
  fullName?: string;
1867
1868
  email?: string;
1868
1869
  phone?: string;
1869
- source?: string;
1870
1870
  created?: string;
1871
1871
  roles?: string[];
1872
1872
  }[];
@@ -2009,11 +2009,11 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
2009
2009
  }[];
2010
2010
  keyPeople?: {
2011
2011
  id?: string;
2012
+ source?: string;
2012
2013
  linkedinUrl?: string;
2013
2014
  fullName?: string;
2014
2015
  email?: string;
2015
2016
  phone?: string;
2016
- source?: string;
2017
2017
  created?: string;
2018
2018
  roles?: string[];
2019
2019
  }[];
@@ -2472,20 +2472,20 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
2472
2472
  source: z.ZodOptional<z.ZodString>;
2473
2473
  }, "strip", z.ZodTypeAny, {
2474
2474
  id?: string;
2475
+ source?: string;
2475
2476
  linkedinUrl?: string;
2476
2477
  fullName?: string;
2477
2478
  email?: string;
2478
2479
  phone?: string;
2479
- source?: string;
2480
2480
  created?: string;
2481
2481
  roles?: string[];
2482
2482
  }, {
2483
2483
  id?: string;
2484
+ source?: string;
2484
2485
  linkedinUrl?: string;
2485
2486
  fullName?: string;
2486
2487
  email?: string;
2487
2488
  phone?: string;
2488
- source?: string;
2489
2489
  created?: string;
2490
2490
  roles?: string[];
2491
2491
  }>, "many">;
@@ -2703,11 +2703,11 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
2703
2703
  }[];
2704
2704
  keyPeople?: {
2705
2705
  id?: string;
2706
+ source?: string;
2706
2707
  linkedinUrl?: string;
2707
2708
  fullName?: string;
2708
2709
  email?: string;
2709
2710
  phone?: string;
2710
- source?: string;
2711
2711
  created?: string;
2712
2712
  roles?: string[];
2713
2713
  }[];
@@ -2850,11 +2850,11 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
2850
2850
  }[];
2851
2851
  keyPeople?: {
2852
2852
  id?: string;
2853
+ source?: string;
2853
2854
  linkedinUrl?: string;
2854
2855
  fullName?: string;
2855
2856
  email?: string;
2856
2857
  phone?: string;
2857
- source?: string;
2858
2858
  created?: string;
2859
2859
  roles?: string[];
2860
2860
  }[];
@@ -5344,20 +5344,20 @@ export declare const usQueueAPISchema: z.ZodObject<{
5344
5344
  source: z.ZodOptional<z.ZodString>;
5345
5345
  }, "strip", z.ZodTypeAny, {
5346
5346
  id?: string;
5347
+ source?: string;
5347
5348
  linkedinUrl?: string;
5348
5349
  fullName?: string;
5349
5350
  email?: string;
5350
5351
  phone?: string;
5351
- source?: string;
5352
5352
  created?: string;
5353
5353
  roles?: string[];
5354
5354
  }, {
5355
5355
  id?: string;
5356
+ source?: string;
5356
5357
  linkedinUrl?: string;
5357
5358
  fullName?: string;
5358
5359
  email?: string;
5359
5360
  phone?: string;
5360
- source?: string;
5361
5361
  created?: string;
5362
5362
  roles?: string[];
5363
5363
  }>, "many">;
@@ -5703,11 +5703,11 @@ export declare const usQueueAPISchema: z.ZodObject<{
5703
5703
  }[];
5704
5704
  keyPeople?: {
5705
5705
  id?: string;
5706
+ source?: string;
5706
5707
  linkedinUrl?: string;
5707
5708
  fullName?: string;
5708
5709
  email?: string;
5709
5710
  phone?: string;
5710
- source?: string;
5711
5711
  created?: string;
5712
5712
  roles?: string[];
5713
5713
  }[];
@@ -5883,11 +5883,11 @@ export declare const usQueueAPISchema: z.ZodObject<{
5883
5883
  }[];
5884
5884
  keyPeople?: {
5885
5885
  id?: string;
5886
+ source?: string;
5886
5887
  linkedinUrl?: string;
5887
5888
  fullName?: string;
5888
5889
  email?: string;
5889
5890
  phone?: string;
5890
- source?: string;
5891
5891
  created?: string;
5892
5892
  roles?: string[];
5893
5893
  }[];
@@ -6546,20 +6546,20 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6546
6546
  source: z.ZodOptional<z.ZodString>;
6547
6547
  }, "strip", z.ZodTypeAny, {
6548
6548
  id?: string;
6549
+ source?: string;
6549
6550
  linkedinUrl?: string;
6550
6551
  fullName?: string;
6551
6552
  email?: string;
6552
6553
  phone?: string;
6553
- source?: string;
6554
6554
  created?: string;
6555
6555
  roles?: string[];
6556
6556
  }, {
6557
6557
  id?: string;
6558
+ source?: string;
6558
6559
  linkedinUrl?: string;
6559
6560
  fullName?: string;
6560
6561
  email?: string;
6561
6562
  phone?: string;
6562
- source?: string;
6563
6563
  created?: string;
6564
6564
  roles?: string[];
6565
6565
  }>, "many">;
@@ -6905,11 +6905,11 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6905
6905
  }[];
6906
6906
  keyPeople?: {
6907
6907
  id?: string;
6908
+ source?: string;
6908
6909
  linkedinUrl?: string;
6909
6910
  fullName?: string;
6910
6911
  email?: string;
6911
6912
  phone?: string;
6912
- source?: string;
6913
6913
  created?: string;
6914
6914
  roles?: string[];
6915
6915
  }[];
@@ -7085,11 +7085,11 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
7085
7085
  }[];
7086
7086
  keyPeople?: {
7087
7087
  id?: string;
7088
+ source?: string;
7088
7089
  linkedinUrl?: string;
7089
7090
  fullName?: string;
7090
7091
  email?: string;
7091
7092
  phone?: string;
7092
- source?: string;
7093
7093
  created?: string;
7094
7094
  roles?: string[];
7095
7095
  }[];
@@ -7438,20 +7438,20 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7438
7438
  source: z.ZodOptional<z.ZodString>;
7439
7439
  }, "strip", z.ZodTypeAny, {
7440
7440
  id?: string;
7441
+ source?: string;
7441
7442
  linkedinUrl?: string;
7442
7443
  fullName?: string;
7443
7444
  email?: string;
7444
7445
  phone?: string;
7445
- source?: string;
7446
7446
  created?: string;
7447
7447
  roles?: string[];
7448
7448
  }, {
7449
7449
  id?: string;
7450
+ source?: string;
7450
7451
  linkedinUrl?: string;
7451
7452
  fullName?: string;
7452
7453
  email?: string;
7453
7454
  phone?: string;
7454
- source?: string;
7455
7455
  created?: string;
7456
7456
  roles?: string[];
7457
7457
  }>, "many">;
@@ -7797,11 +7797,11 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7797
7797
  }[];
7798
7798
  keyPeople?: {
7799
7799
  id?: string;
7800
+ source?: string;
7800
7801
  linkedinUrl?: string;
7801
7802
  fullName?: string;
7802
7803
  email?: string;
7803
7804
  phone?: string;
7804
- source?: string;
7805
7805
  created?: string;
7806
7806
  roles?: string[];
7807
7807
  }[];
@@ -7977,11 +7977,11 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7977
7977
  }[];
7978
7978
  keyPeople?: {
7979
7979
  id?: string;
7980
+ source?: string;
7980
7981
  linkedinUrl?: string;
7981
7982
  fullName?: string;
7982
7983
  email?: string;
7983
7984
  phone?: string;
7984
- source?: string;
7985
7985
  created?: string;
7986
7986
  roles?: string[];
7987
7987
  }[];
@@ -236,20 +236,20 @@ export declare const SignalSchema: z.ZodObject<{
236
236
  id?: string;
237
237
  identifier?: string;
238
238
  role?: string;
239
+ source?: string;
239
240
  linkedinUrl?: string;
240
241
  fullName?: string;
241
242
  email?: string;
242
243
  phone?: string;
243
- source?: string;
244
244
  }, {
245
245
  id?: string;
246
246
  identifier?: string;
247
247
  role?: string;
248
+ source?: string;
248
249
  linkedinUrl?: string;
249
250
  fullName?: string;
250
251
  email?: string;
251
252
  phone?: string;
252
- source?: string;
253
253
  }>, "many">>;
254
254
  location: z.ZodArray<z.ZodObject<{
255
255
  identifier: z.ZodString;
@@ -580,11 +580,11 @@ export declare const SignalSchema: z.ZodObject<{
580
580
  id?: string;
581
581
  identifier?: string;
582
582
  role?: string;
583
+ source?: string;
583
584
  linkedinUrl?: string;
584
585
  fullName?: string;
585
586
  email?: string;
586
587
  phone?: string;
587
- source?: string;
588
588
  }[];
589
589
  id?: string;
590
590
  location?: {
@@ -755,11 +755,11 @@ export declare const SignalSchema: z.ZodObject<{
755
755
  id?: string;
756
756
  identifier?: string;
757
757
  role?: string;
758
+ source?: string;
758
759
  linkedinUrl?: string;
759
760
  fullName?: string;
760
761
  email?: string;
761
762
  phone?: string;
762
- source?: string;
763
763
  }[];
764
764
  id?: string;
765
765
  location?: {
@@ -1,6 +1,6 @@
1
1
  import { InfiniteData, QueryObserverResult, UseInfiniteQueryResult, UseQueryResult } from '@tanstack/react-query';
2
- import { ClientApiListRequestQueryParams, ClientApiListResponse, QueueListUnionType, Signal } from './api';
3
- export type Entity = Signal | QueueListUnionType;
2
+ import { ClientApiListRequestQueryParams, ClientApiListResponse, DataCenter, QueueListUnionType, Signal } from './api';
3
+ export type Entity = Signal | QueueListUnionType | DataCenter;
4
4
  export type InfiniteQueryHook = (queryParams: ClientApiListRequestQueryParams, isEnabled?: boolean, customFilters?: ClientApiListRequestQueryParams['filters']) => UseInfiniteQueryResult<InfiniteData<ClientApiListResponse<Entity>, unknown>, Error>;
5
5
  export type ReportQueryClient = (queryParams: ClientApiListRequestQueryParams, customFilters?: ClientApiListRequestQueryParams['filters']) => Promise<ClientApiListResponse<Entity>>;
6
6
  export type CenterpointQueryHook = (queryParams: ClientApiListRequestQueryParams, isEnabled?: boolean, customFilters?: ClientApiListRequestQueryParams['filters']) => UseQueryResult<ClientApiListResponse<Entity>, Error>;
@@ -1 +1 @@
1
- {"version":3,"file":"dataGrid.js","sourceRoot":"","sources":["../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/dataGrid.ts"],"names":[],"mappings":";;;AAkHA,IAAY,0BAGX;AAHD,WAAY,0BAA0B;IACpC,6CAAe,CAAA;IACf,2CAAa,CAAA;AACf,CAAC,EAHW,0BAA0B,0CAA1B,0BAA0B,QAGrC"}
1
+ {"version":3,"file":"dataGrid.js","sourceRoot":"","sources":["../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/dataGrid.ts"],"names":[],"mappings":";;;AAmHA,IAAY,0BAGX;AAHD,WAAY,0BAA0B;IACpC,6CAAe,CAAA;IACf,2CAAa,CAAA;AACf,CAAC,EAHW,0BAA0B,0CAA1B,0BAA0B,QAGrC"}