@new-project-media/client-frontends-shared-types 2.0.10 → 2.0.11

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.
@@ -7252,10 +7252,329 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
7252
7252
  }>]>;
7253
7253
  export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
7254
7254
  $organizations: z.ZodOptional<z.ZodString>;
7255
- applicationStatus: z.ZodOptional<z.ZodString>;
7256
- localTown: z.ZodOptional<z.ZodString>;
7257
- mwNet: z.ZodOptional<z.ZodNumber>;
7258
- refId: z.ZodOptional<z.ZodString>;
7255
+ applicationType: z.ZodOptional<z.ZodString>;
7256
+ cost: z.ZodOptional<z.ZodObject<{
7257
+ costCompany: z.ZodString;
7258
+ costYear: z.ZodNumber;
7259
+ networkCostKW: z.ZodNumber;
7260
+ poiCostKW: z.ZodNumber;
7261
+ totalCostKW: z.ZodNumber;
7262
+ }, "strip", z.ZodTypeAny, {
7263
+ costCompany?: string;
7264
+ costYear?: number;
7265
+ networkCostKW?: number;
7266
+ poiCostKW?: number;
7267
+ totalCostKW?: number;
7268
+ }, {
7269
+ costCompany?: string;
7270
+ costYear?: number;
7271
+ networkCostKW?: number;
7272
+ poiCostKW?: number;
7273
+ totalCostKW?: number;
7274
+ }>>;
7275
+ dateCreated: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7276
+ documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
7277
+ date: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7278
+ document_id: z.ZodOptional<z.ZodString>;
7279
+ filing_id: z.ZodOptional<z.ZodString>;
7280
+ isSignal: z.ZodBoolean;
7281
+ key: z.ZodOptional<z.ZodString>;
7282
+ type: z.ZodArray<z.ZodString, "many">;
7283
+ url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7284
+ }, "strip", z.ZodTypeAny, {
7285
+ type?: string[];
7286
+ key?: string;
7287
+ date?: string;
7288
+ document_id?: string;
7289
+ url?: string;
7290
+ filing_id?: string;
7291
+ isSignal?: boolean;
7292
+ }, {
7293
+ type?: string[];
7294
+ key?: string;
7295
+ date?: string;
7296
+ document_id?: string;
7297
+ url?: string;
7298
+ filing_id?: string;
7299
+ isSignal?: boolean;
7300
+ }>, "many">>;
7301
+ events: z.ZodOptional<z.ZodArray<z.ZodObject<{
7302
+ applicationId: z.ZodString;
7303
+ daysInQueue: z.ZodOptional<z.ZodNumber>;
7304
+ eventHash: z.ZodOptional<z.ZodString>;
7305
+ eventType: z.ZodEnum<["add", "update"]>;
7306
+ id: z.ZodString;
7307
+ propKey: z.ZodString;
7308
+ propType: z.ZodEnum<["applicationTags", "tracked"]>;
7309
+ propVal: z.ZodString;
7310
+ queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7311
+ queueKey: z.ZodString;
7312
+ reportDate: z.ZodString;
7313
+ set: z.ZodNumber;
7314
+ transition: z.ZodOptional<z.ZodObject<{
7315
+ delta: z.ZodOptional<z.ZodNumber>;
7316
+ durationInDays: z.ZodNumber;
7317
+ from: z.ZodObject<{
7318
+ assigned: z.ZodString;
7319
+ value: z.ZodString;
7320
+ }, "strip", z.ZodTypeAny, {
7321
+ value?: string;
7322
+ assigned?: string;
7323
+ }, {
7324
+ value?: string;
7325
+ assigned?: string;
7326
+ }>;
7327
+ to: z.ZodObject<{
7328
+ assigned: z.ZodString;
7329
+ value: z.ZodString;
7330
+ }, "strip", z.ZodTypeAny, {
7331
+ value?: string;
7332
+ assigned?: string;
7333
+ }, {
7334
+ value?: string;
7335
+ assigned?: string;
7336
+ }>;
7337
+ }, "strip", z.ZodTypeAny, {
7338
+ delta?: number;
7339
+ durationInDays?: number;
7340
+ from?: {
7341
+ value?: string;
7342
+ assigned?: string;
7343
+ };
7344
+ to?: {
7345
+ value?: string;
7346
+ assigned?: string;
7347
+ };
7348
+ }, {
7349
+ delta?: number;
7350
+ durationInDays?: number;
7351
+ from?: {
7352
+ value?: string;
7353
+ assigned?: string;
7354
+ };
7355
+ to?: {
7356
+ value?: string;
7357
+ assigned?: string;
7358
+ };
7359
+ }>>;
7360
+ }, "strip", z.ZodTypeAny, {
7361
+ id?: string;
7362
+ queueKey?: string;
7363
+ applicationId?: string;
7364
+ set?: number;
7365
+ daysInQueue?: number;
7366
+ eventHash?: string;
7367
+ reportDate?: string;
7368
+ eventType?: "add" | "update";
7369
+ propKey?: string;
7370
+ propType?: "applicationTags" | "tracked";
7371
+ propVal?: string;
7372
+ queueDate?: string;
7373
+ transition?: {
7374
+ delta?: number;
7375
+ durationInDays?: number;
7376
+ from?: {
7377
+ value?: string;
7378
+ assigned?: string;
7379
+ };
7380
+ to?: {
7381
+ value?: string;
7382
+ assigned?: string;
7383
+ };
7384
+ };
7385
+ }, {
7386
+ id?: string;
7387
+ queueKey?: string;
7388
+ applicationId?: string;
7389
+ set?: number;
7390
+ daysInQueue?: number;
7391
+ eventHash?: string;
7392
+ reportDate?: string;
7393
+ eventType?: "add" | "update";
7394
+ propKey?: string;
7395
+ propType?: "applicationTags" | "tracked";
7396
+ propVal?: string;
7397
+ queueDate?: string;
7398
+ transition?: {
7399
+ delta?: number;
7400
+ durationInDays?: number;
7401
+ from?: {
7402
+ value?: string;
7403
+ assigned?: string;
7404
+ };
7405
+ to?: {
7406
+ value?: string;
7407
+ assigned?: string;
7408
+ };
7409
+ };
7410
+ }>, "many">>;
7411
+ isoRtoConnection: z.ZodOptional<z.ZodArray<z.ZodObject<{
7412
+ identifier: z.ZodString;
7413
+ id: z.ZodString;
7414
+ }, "strip", z.ZodTypeAny, {
7415
+ id?: string;
7416
+ identifier?: string;
7417
+ }, {
7418
+ id?: string;
7419
+ identifier?: string;
7420
+ }>, "many">>;
7421
+ keyPeople: z.ZodArray<z.ZodObject<{
7422
+ created: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7423
+ email: z.ZodOptional<z.ZodString>;
7424
+ fullName: z.ZodOptional<z.ZodString>;
7425
+ id: z.ZodOptional<z.ZodString>;
7426
+ linkedinUrl: z.ZodOptional<z.ZodString>;
7427
+ phone: z.ZodOptional<z.ZodString>;
7428
+ roles: z.ZodArray<z.ZodOptional<z.ZodString>, "many">;
7429
+ source: z.ZodOptional<z.ZodString>;
7430
+ }, "strip", z.ZodTypeAny, {
7431
+ id?: string;
7432
+ linkedinUrl?: string;
7433
+ fullName?: string;
7434
+ email?: string;
7435
+ phone?: string;
7436
+ source?: string;
7437
+ created?: string;
7438
+ roles?: string[];
7439
+ }, {
7440
+ id?: string;
7441
+ linkedinUrl?: string;
7442
+ fullName?: string;
7443
+ email?: string;
7444
+ phone?: string;
7445
+ source?: string;
7446
+ created?: string;
7447
+ roles?: string[];
7448
+ }>, "many">;
7449
+ milestones: z.ZodOptional<z.ZodArray<z.ZodObject<{
7450
+ compositeKey: z.ZodString;
7451
+ daysInQueue: z.ZodOptional<z.ZodNumber>;
7452
+ delta: z.ZodOptional<z.ZodNumber>;
7453
+ durationInDays: z.ZodOptional<z.ZodNumber>;
7454
+ entries: z.ZodArray<z.ZodObject<{
7455
+ daysInQueue: z.ZodOptional<z.ZodNumber>;
7456
+ delta: z.ZodOptional<z.ZodNumber>;
7457
+ durationInDays: z.ZodOptional<z.ZodNumber>;
7458
+ eventHash: z.ZodString;
7459
+ fromValue: z.ZodOptional<z.ZodString>;
7460
+ label: z.ZodString;
7461
+ reportDate: z.ZodString;
7462
+ stage: z.ZodString;
7463
+ toValue: z.ZodString;
7464
+ }, "strip", z.ZodTypeAny, {
7465
+ daysInQueue?: number;
7466
+ delta?: number;
7467
+ durationInDays?: number;
7468
+ eventHash?: string;
7469
+ fromValue?: string;
7470
+ label?: string;
7471
+ reportDate?: string;
7472
+ stage?: string;
7473
+ toValue?: string;
7474
+ }, {
7475
+ daysInQueue?: number;
7476
+ delta?: number;
7477
+ durationInDays?: number;
7478
+ eventHash?: string;
7479
+ fromValue?: string;
7480
+ label?: string;
7481
+ reportDate?: string;
7482
+ stage?: string;
7483
+ toValue?: string;
7484
+ }>, "many">;
7485
+ eventCount: z.ZodNumber;
7486
+ eventHash: z.ZodString;
7487
+ fromValue: z.ZodOptional<z.ZodString>;
7488
+ key: z.ZodString;
7489
+ label: z.ZodString;
7490
+ reportDate: z.ZodString;
7491
+ searchKey: z.ZodString;
7492
+ set: z.ZodNumber;
7493
+ stage: z.ZodString;
7494
+ state: z.ZodString;
7495
+ topic: z.ZodString;
7496
+ toValue: z.ZodString;
7497
+ type: z.ZodString;
7498
+ }, "strip", z.ZodTypeAny, {
7499
+ type?: string;
7500
+ state?: string;
7501
+ key?: string;
7502
+ entries?: {
7503
+ daysInQueue?: number;
7504
+ delta?: number;
7505
+ durationInDays?: number;
7506
+ eventHash?: string;
7507
+ fromValue?: string;
7508
+ label?: string;
7509
+ reportDate?: string;
7510
+ stage?: string;
7511
+ toValue?: string;
7512
+ }[];
7513
+ set?: number;
7514
+ daysInQueue?: number;
7515
+ delta?: number;
7516
+ durationInDays?: number;
7517
+ eventHash?: string;
7518
+ fromValue?: string;
7519
+ label?: string;
7520
+ reportDate?: string;
7521
+ stage?: string;
7522
+ toValue?: string;
7523
+ compositeKey?: string;
7524
+ eventCount?: number;
7525
+ searchKey?: string;
7526
+ topic?: string;
7527
+ }, {
7528
+ type?: string;
7529
+ state?: string;
7530
+ key?: string;
7531
+ entries?: {
7532
+ daysInQueue?: number;
7533
+ delta?: number;
7534
+ durationInDays?: number;
7535
+ eventHash?: string;
7536
+ fromValue?: string;
7537
+ label?: string;
7538
+ reportDate?: string;
7539
+ stage?: string;
7540
+ toValue?: string;
7541
+ }[];
7542
+ set?: number;
7543
+ daysInQueue?: number;
7544
+ delta?: number;
7545
+ durationInDays?: number;
7546
+ eventHash?: string;
7547
+ fromValue?: string;
7548
+ label?: string;
7549
+ reportDate?: string;
7550
+ stage?: string;
7551
+ toValue?: string;
7552
+ compositeKey?: string;
7553
+ eventCount?: number;
7554
+ searchKey?: string;
7555
+ topic?: string;
7556
+ }>, "many">>;
7557
+ poi: z.ZodOptional<z.ZodObject<{
7558
+ id: z.ZodString;
7559
+ identifier: z.ZodString;
7560
+ kV: z.ZodOptional<z.ZodString>;
7561
+ meta: z.ZodOptional<z.ZodString>;
7562
+ poiGroup: z.ZodString;
7563
+ }, "strip", z.ZodTypeAny, {
7564
+ id?: string;
7565
+ identifier?: string;
7566
+ kV?: string;
7567
+ meta?: string;
7568
+ poiGroup?: string;
7569
+ }, {
7570
+ id?: string;
7571
+ identifier?: string;
7572
+ kV?: string;
7573
+ meta?: string;
7574
+ poiGroup?: string;
7575
+ }>>;
7576
+ reportCount: z.ZodOptional<z.ZodNumber>;
7577
+ reportDate: z.ZodOptional<z.ZodString>;
7259
7578
  sectors: z.ZodArray<z.ZodObject<{
7260
7579
  identifier: z.ZodString;
7261
7580
  id: z.ZodString;
@@ -7266,15 +7585,54 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7266
7585
  id?: string;
7267
7586
  identifier?: string;
7268
7587
  }>, "many">;
7269
- storageCapacity: z.ZodOptional<z.ZodNumber>;
7270
- technology: z.ZodOptional<z.ZodString>;
7271
- windFarmName: z.ZodOptional<z.ZodString>;
7588
+ sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7589
+ signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
7590
+ filingDate: z.ZodString;
7591
+ headline: z.ZodString;
7592
+ id: z.ZodString;
7593
+ publishedDate: z.ZodString;
7594
+ subType: z.ZodString;
7595
+ type: z.ZodString;
7596
+ }, "strip", z.ZodTypeAny, {
7597
+ type?: string;
7598
+ subType?: string;
7599
+ id?: string;
7600
+ headline?: string;
7601
+ filingDate?: string;
7602
+ publishedDate?: string;
7603
+ }, {
7604
+ type?: string;
7605
+ subType?: string;
7606
+ id?: string;
7607
+ headline?: string;
7608
+ filingDate?: string;
7609
+ publishedDate?: string;
7610
+ }>, "many">>;
7611
+ withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7612
+ } & {
7272
7613
  id: z.ZodString;
7273
- schema: z.ZodLiteral<"eu_queue">;
7614
+ schema: z.ZodLiteral<"us_queue">;
7274
7615
  actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7275
7616
  allSectors: z.ZodOptional<z.ZodString>;
7276
7617
  applicationId: z.ZodOptional<z.ZodString>;
7277
- country: z.ZodOptional<z.ZodString>;
7618
+ applicationStatus: z.ZodOptional<z.ZodString>;
7619
+ applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
7620
+ identifier: z.ZodString;
7621
+ }, "strip", z.ZodTypeAny, {
7622
+ identifier?: string;
7623
+ }, {
7624
+ identifier?: string;
7625
+ }>, "many">>;
7626
+ country: z.ZodOptional<z.ZodArray<z.ZodObject<{
7627
+ identifier: z.ZodString;
7628
+ id: z.ZodString;
7629
+ }, "strip", z.ZodTypeAny, {
7630
+ id?: string;
7631
+ identifier?: string;
7632
+ }, {
7633
+ id?: string;
7634
+ identifier?: string;
7635
+ }>, "many">>;
7278
7636
  geo: z.ZodOptional<z.ZodObject<{
7279
7637
  defaultValue: z.ZodOptional<z.ZodString>;
7280
7638
  default: z.ZodOptional<z.ZodObject<{
@@ -7303,206 +7661,21 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7303
7661
  }, "strip", z.ZodTypeAny, {
7304
7662
  lat?: number;
7305
7663
  lon?: number;
7306
- }, {
7307
- lat?: number;
7308
- lon?: number;
7309
- }>>;
7310
- facility: z.ZodOptional<z.ZodObject<{
7311
- lon: z.ZodNumber;
7312
- lat: z.ZodNumber;
7313
- }, "strip", z.ZodTypeAny, {
7314
- lat?: number;
7315
- lon?: number;
7316
- }, {
7317
- lat?: number;
7318
- lon?: number;
7319
- }>>;
7320
- }, "strip", z.ZodTypeAny, {
7321
- county?: {
7322
- lat?: number;
7323
- lon?: number;
7324
- };
7325
- defaultValue?: string;
7326
- default?: {
7327
- lat?: number;
7328
- lon?: number;
7329
- };
7330
- project?: {
7331
- lat?: number;
7332
- lon?: number;
7333
- };
7334
- facility?: {
7335
- lat?: number;
7336
- lon?: number;
7337
- };
7338
- }, {
7339
- county?: {
7340
- lat?: number;
7341
- lon?: number;
7342
- };
7343
- defaultValue?: string;
7344
- default?: {
7345
- lat?: number;
7346
- lon?: number;
7347
- };
7348
- project?: {
7349
- lat?: number;
7350
- lon?: number;
7351
- };
7352
- facility?: {
7353
- lat?: number;
7354
- lon?: number;
7355
- };
7356
- }>>;
7357
- lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7358
- localCounty: z.ZodOptional<z.ZodString>;
7359
- localState: z.ZodOptional<z.ZodString>;
7360
- organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
7361
- identifier: z.ZodString;
7362
- id: z.ZodString;
7363
- } & {
7364
- role: z.ZodString;
7365
- ref: z.ZodOptional<z.ZodString>;
7366
- }, "strip", z.ZodTypeAny, {
7367
- id?: string;
7368
- identifier?: string;
7369
- role?: string;
7370
- ref?: string;
7371
- }, {
7372
- id?: string;
7373
- identifier?: string;
7374
- role?: string;
7375
- ref?: string;
7376
- }>, "many">>;
7377
- plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7378
- projectName: z.ZodOptional<z.ZodString>;
7379
- queueDataset: z.ZodOptional<z.ZodString>;
7380
- queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7381
- status: z.ZodOptional<z.ZodString>;
7382
- totalMw: z.ZodOptional<z.ZodNumber>;
7383
- } & {
7384
- applicationType: z.ZodString;
7385
- audiences: z.ZodArray<z.ZodObject<{
7386
- identifier: z.ZodString;
7387
- }, "strip", z.ZodTypeAny, {
7388
- identifier?: string;
7389
- }, {
7390
- identifier?: string;
7391
- }>, "many">;
7392
- constructionDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7393
- developmentStatus: z.ZodString;
7394
- localRegion: z.ZodOptional<z.ZodString>;
7395
- mwGross: z.ZodOptional<z.ZodNumber>;
7396
- planningGranted: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7397
- queueDataSetType: z.ZodString;
7398
- regions: z.ZodArray<z.ZodObject<{
7399
- identifier: z.ZodString;
7400
- id: z.ZodString;
7401
- }, "strip", z.ZodTypeAny, {
7402
- id?: string;
7403
- identifier?: string;
7404
- }, {
7405
- id?: string;
7406
- identifier?: string;
7407
- }>, "many">;
7408
- reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7409
- sectorDetail: z.ZodString;
7410
- sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7411
- stateAbbr: z.ZodOptional<z.ZodString>;
7412
- storageType: z.ZodOptional<z.ZodString>;
7413
- totals: z.ZodRecord<z.ZodString, z.ZodNumber>;
7414
- withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7415
- }, "strip", z.ZodTypeAny, {
7416
- sectors?: {
7417
- id?: string;
7418
- identifier?: string;
7419
- }[];
7420
- id?: string;
7421
- status?: string;
7422
- applicationId?: string;
7423
- queueDataset?: string;
7424
- country?: string;
7425
- organizations?: {
7426
- id?: string;
7427
- identifier?: string;
7428
- role?: string;
7429
- ref?: string;
7430
- }[];
7431
- geo?: {
7432
- county?: {
7433
- lat?: number;
7434
- lon?: number;
7435
- };
7436
- defaultValue?: string;
7437
- default?: {
7438
- lat?: number;
7439
- lon?: number;
7440
- };
7441
- project?: {
7442
- lat?: number;
7443
- lon?: number;
7444
- };
7445
- facility?: {
7446
- lat?: number;
7447
- lon?: number;
7448
- };
7449
- };
7450
- audiences?: {
7451
- identifier?: string;
7452
- }[];
7453
- totals?: Record<string, number>;
7454
- allSectors?: string;
7455
- $organizations?: string;
7456
- reportDate?: string;
7457
- queueDate?: string;
7458
- schema?: "eu_queue";
7459
- actualOperationalDate?: string;
7460
- lastModified?: string;
7461
- localCounty?: string;
7462
- localState?: string;
7463
- plannedOperationalDate?: string;
7464
- projectName?: string;
7465
- totalMw?: number;
7466
- applicationStatus?: string;
7467
- localTown?: string;
7468
- mwNet?: number;
7469
- refId?: string;
7470
- sourceUpdate?: string;
7471
- storageCapacity?: number;
7472
- technology?: string;
7473
- windFarmName?: string;
7474
- applicationType?: string;
7475
- withdrawnDate?: string;
7476
- constructionDate?: string;
7477
- developmentStatus?: string;
7478
- localRegion?: string;
7479
- mwGross?: number;
7480
- planningGranted?: string;
7481
- queueDataSetType?: string;
7482
- regions?: {
7483
- id?: string;
7484
- identifier?: string;
7485
- }[];
7486
- sectorDetail?: string;
7487
- stateAbbr?: string;
7488
- storageType?: string;
7489
- }, {
7490
- sectors?: {
7491
- id?: string;
7492
- identifier?: string;
7493
- }[];
7494
- id?: string;
7495
- status?: string;
7496
- applicationId?: string;
7497
- queueDataset?: string;
7498
- country?: string;
7499
- organizations?: {
7500
- id?: string;
7501
- identifier?: string;
7502
- role?: string;
7503
- ref?: string;
7504
- }[];
7505
- geo?: {
7664
+ }, {
7665
+ lat?: number;
7666
+ lon?: number;
7667
+ }>>;
7668
+ facility: z.ZodOptional<z.ZodObject<{
7669
+ lon: z.ZodNumber;
7670
+ lat: z.ZodNumber;
7671
+ }, "strip", z.ZodTypeAny, {
7672
+ lat?: number;
7673
+ lon?: number;
7674
+ }, {
7675
+ lat?: number;
7676
+ lon?: number;
7677
+ }>>;
7678
+ }, "strip", z.ZodTypeAny, {
7506
7679
  county?: {
7507
7680
  lat?: number;
7508
7681
  lon?: number;
@@ -7520,154 +7693,190 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7520
7693
  lat?: number;
7521
7694
  lon?: number;
7522
7695
  };
7523
- };
7524
- audiences?: {
7696
+ }, {
7697
+ county?: {
7698
+ lat?: number;
7699
+ lon?: number;
7700
+ };
7701
+ defaultValue?: string;
7702
+ default?: {
7703
+ lat?: number;
7704
+ lon?: number;
7705
+ };
7706
+ project?: {
7707
+ lat?: number;
7708
+ lon?: number;
7709
+ };
7710
+ facility?: {
7711
+ lat?: number;
7712
+ lon?: number;
7713
+ };
7714
+ }>>;
7715
+ interconnectingEntity: z.ZodOptional<z.ZodString>;
7716
+ lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7717
+ localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
7718
+ identifier: z.ZodString;
7719
+ id: z.ZodString;
7720
+ }, "strip", z.ZodTypeAny, {
7721
+ id?: string;
7525
7722
  identifier?: string;
7526
- }[];
7527
- totals?: Record<string, number>;
7528
- allSectors?: string;
7529
- $organizations?: string;
7530
- reportDate?: string;
7531
- queueDate?: string;
7532
- schema?: "eu_queue";
7533
- actualOperationalDate?: string;
7534
- lastModified?: string;
7535
- localCounty?: string;
7536
- localState?: string;
7537
- plannedOperationalDate?: string;
7538
- projectName?: string;
7539
- totalMw?: number;
7540
- applicationStatus?: string;
7541
- localTown?: string;
7542
- mwNet?: number;
7543
- refId?: string;
7544
- sourceUpdate?: string;
7545
- storageCapacity?: number;
7546
- technology?: string;
7547
- windFarmName?: string;
7548
- applicationType?: string;
7549
- withdrawnDate?: string;
7550
- constructionDate?: string;
7551
- developmentStatus?: string;
7552
- localRegion?: string;
7553
- mwGross?: number;
7554
- planningGranted?: string;
7555
- queueDataSetType?: string;
7556
- regions?: {
7723
+ }, {
7557
7724
  id?: string;
7558
7725
  identifier?: string;
7559
- }[];
7560
- sectorDetail?: string;
7561
- stateAbbr?: string;
7562
- storageType?: string;
7563
- }>, z.ZodObject<{
7564
- $organizations: z.ZodOptional<z.ZodString>;
7565
- applicationType: z.ZodOptional<z.ZodString>;
7566
- cost: z.ZodOptional<z.ZodObject<{
7567
- costCompany: z.ZodString;
7568
- costYear: z.ZodNumber;
7569
- networkCostKW: z.ZodNumber;
7570
- poiCostKW: z.ZodNumber;
7571
- totalCostKW: z.ZodNumber;
7726
+ }>, "many">>;
7727
+ localState: z.ZodOptional<z.ZodArray<z.ZodObject<{
7728
+ identifier: z.ZodString;
7729
+ id: z.ZodString;
7572
7730
  }, "strip", z.ZodTypeAny, {
7573
- costCompany?: string;
7574
- costYear?: number;
7575
- networkCostKW?: number;
7576
- poiCostKW?: number;
7577
- totalCostKW?: number;
7731
+ id?: string;
7732
+ identifier?: string;
7578
7733
  }, {
7579
- costCompany?: string;
7580
- costYear?: number;
7581
- networkCostKW?: number;
7582
- poiCostKW?: number;
7583
- totalCostKW?: number;
7584
- }>>;
7585
- dateCreated: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7586
- documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
7587
- date: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7588
- document_id: z.ZodOptional<z.ZodString>;
7589
- filing_id: z.ZodOptional<z.ZodString>;
7590
- isSignal: z.ZodBoolean;
7591
- key: z.ZodOptional<z.ZodString>;
7592
- type: z.ZodArray<z.ZodString, "many">;
7593
- url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7734
+ id?: string;
7735
+ identifier?: string;
7736
+ }>, "many">>;
7737
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
7738
+ identifier: z.ZodString;
7739
+ id: z.ZodString;
7740
+ } & {
7741
+ role: z.ZodString;
7742
+ ref: z.ZodOptional<z.ZodString>;
7594
7743
  }, "strip", z.ZodTypeAny, {
7595
- type?: string[];
7596
- key?: string;
7597
- date?: string;
7598
- document_id?: string;
7599
- url?: string;
7600
- filing_id?: string;
7601
- isSignal?: boolean;
7744
+ id?: string;
7745
+ identifier?: string;
7746
+ role?: string;
7747
+ ref?: string;
7602
7748
  }, {
7603
- type?: string[];
7604
- key?: string;
7605
- date?: string;
7606
- document_id?: string;
7607
- url?: string;
7608
- filing_id?: string;
7609
- isSignal?: boolean;
7749
+ id?: string;
7750
+ identifier?: string;
7751
+ role?: string;
7752
+ ref?: string;
7610
7753
  }>, "many">>;
7611
- events: z.ZodOptional<z.ZodArray<z.ZodObject<{
7612
- applicationId: z.ZodString;
7613
- daysInQueue: z.ZodOptional<z.ZodNumber>;
7614
- eventHash: z.ZodOptional<z.ZodString>;
7615
- eventType: z.ZodEnum<["add", "update"]>;
7754
+ plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7755
+ poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
7756
+ projectName: z.ZodOptional<z.ZodString>;
7757
+ queueDataset: z.ZodOptional<z.ZodString>;
7758
+ queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7759
+ totalMw: z.ZodOptional<z.ZodNumber>;
7760
+ } & {
7761
+ audiences: z.ZodArray<z.ZodObject<{
7762
+ identifier: z.ZodString;
7763
+ }, "strip", z.ZodTypeAny, {
7764
+ identifier?: string;
7765
+ }, {
7766
+ identifier?: string;
7767
+ }>, "many">;
7768
+ isoRtoUniqueId: z.ZodString;
7769
+ queueDataSetType: z.ZodString;
7770
+ queueKey: z.ZodString;
7771
+ regions: z.ZodArray<z.ZodObject<{
7772
+ identifier: z.ZodString;
7616
7773
  id: z.ZodString;
7617
- propKey: z.ZodString;
7618
- propType: z.ZodEnum<["applicationTags", "tracked"]>;
7619
- propVal: z.ZodString;
7620
- queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7621
- queueKey: z.ZodString;
7622
- reportDate: z.ZodString;
7623
- set: z.ZodNumber;
7624
- transition: z.ZodOptional<z.ZodObject<{
7625
- delta: z.ZodOptional<z.ZodNumber>;
7626
- durationInDays: z.ZodNumber;
7627
- from: z.ZodObject<{
7628
- assigned: z.ZodString;
7629
- value: z.ZodString;
7630
- }, "strip", z.ZodTypeAny, {
7631
- value?: string;
7632
- assigned?: string;
7633
- }, {
7634
- value?: string;
7635
- assigned?: string;
7636
- }>;
7637
- to: z.ZodObject<{
7638
- assigned: z.ZodString;
7639
- value: z.ZodString;
7640
- }, "strip", z.ZodTypeAny, {
7641
- value?: string;
7642
- assigned?: string;
7643
- }, {
7644
- value?: string;
7645
- assigned?: string;
7646
- }>;
7647
- }, "strip", z.ZodTypeAny, {
7648
- delta?: number;
7649
- durationInDays?: number;
7650
- from?: {
7651
- value?: string;
7652
- assigned?: string;
7653
- };
7654
- to?: {
7655
- value?: string;
7656
- assigned?: string;
7657
- };
7658
- }, {
7659
- delta?: number;
7660
- durationInDays?: number;
7661
- from?: {
7662
- value?: string;
7663
- assigned?: string;
7664
- };
7665
- to?: {
7666
- value?: string;
7667
- assigned?: string;
7668
- };
7669
- }>>;
7670
7774
  }, "strip", z.ZodTypeAny, {
7775
+ id?: string;
7776
+ identifier?: string;
7777
+ }, {
7778
+ id?: string;
7779
+ identifier?: string;
7780
+ }>, "many">;
7781
+ stateAbbr: z.ZodOptional<z.ZodString>;
7782
+ stateName: z.ZodOptional<z.ZodString>;
7783
+ totals: z.ZodRecord<z.ZodString, z.ZodNumber>;
7784
+ }, "strip", z.ZodTypeAny, {
7785
+ sectors?: {
7786
+ id?: string;
7787
+ identifier?: string;
7788
+ }[];
7789
+ keyPeople?: {
7790
+ id?: string;
7791
+ linkedinUrl?: string;
7792
+ fullName?: string;
7793
+ email?: string;
7794
+ phone?: string;
7795
+ source?: string;
7796
+ created?: string;
7797
+ roles?: string[];
7798
+ }[];
7799
+ id?: string;
7800
+ queueKey?: string;
7801
+ applicationId?: string;
7802
+ queueDataset?: string;
7803
+ country?: {
7804
+ id?: string;
7805
+ identifier?: string;
7806
+ }[];
7807
+ documents?: {
7808
+ type?: string[];
7809
+ key?: string;
7810
+ date?: string;
7811
+ document_id?: string;
7812
+ url?: string;
7813
+ filing_id?: string;
7814
+ isSignal?: boolean;
7815
+ }[];
7816
+ organizations?: {
7817
+ id?: string;
7818
+ identifier?: string;
7819
+ role?: string;
7820
+ ref?: string;
7821
+ }[];
7822
+ geo?: {
7823
+ county?: {
7824
+ lat?: number;
7825
+ lon?: number;
7826
+ };
7827
+ defaultValue?: string;
7828
+ default?: {
7829
+ lat?: number;
7830
+ lon?: number;
7831
+ };
7832
+ project?: {
7833
+ lat?: number;
7834
+ lon?: number;
7835
+ };
7836
+ facility?: {
7837
+ lat?: number;
7838
+ lon?: number;
7839
+ };
7840
+ };
7841
+ audiences?: {
7842
+ identifier?: string;
7843
+ }[];
7844
+ totals?: Record<string, number>;
7845
+ allSectors?: string;
7846
+ $organizations?: string;
7847
+ reportDate?: string;
7848
+ applicationTags?: {
7849
+ identifier?: string;
7850
+ }[];
7851
+ queueDate?: string;
7852
+ schema?: "us_queue";
7853
+ actualOperationalDate?: string;
7854
+ lastModified?: string;
7855
+ localCounty?: {
7856
+ id?: string;
7857
+ identifier?: string;
7858
+ }[];
7859
+ localState?: {
7860
+ id?: string;
7861
+ identifier?: string;
7862
+ }[];
7863
+ plannedOperationalDate?: string;
7864
+ projectName?: string;
7865
+ totalMw?: number;
7866
+ applicationStatus?: string;
7867
+ interconnectingEntity?: string;
7868
+ poiLocation?: string | number;
7869
+ sourceUpdate?: string;
7870
+ applicationType?: string;
7871
+ cost?: {
7872
+ costCompany?: string;
7873
+ costYear?: number;
7874
+ networkCostKW?: number;
7875
+ poiCostKW?: number;
7876
+ totalCostKW?: number;
7877
+ };
7878
+ dateCreated?: string;
7879
+ events?: {
7671
7880
  id?: string;
7672
7881
  queueKey?: string;
7673
7882
  applicationId?: string;
@@ -7692,61 +7901,72 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7692
7901
  assigned?: string;
7693
7902
  };
7694
7903
  };
7695
- }, {
7904
+ }[];
7905
+ isoRtoConnection?: {
7696
7906
  id?: string;
7697
- queueKey?: string;
7698
- applicationId?: string;
7907
+ identifier?: string;
7908
+ }[];
7909
+ milestones?: {
7910
+ type?: string;
7911
+ state?: string;
7912
+ key?: string;
7913
+ entries?: {
7914
+ daysInQueue?: number;
7915
+ delta?: number;
7916
+ durationInDays?: number;
7917
+ eventHash?: string;
7918
+ fromValue?: string;
7919
+ label?: string;
7920
+ reportDate?: string;
7921
+ stage?: string;
7922
+ toValue?: string;
7923
+ }[];
7699
7924
  set?: number;
7700
7925
  daysInQueue?: number;
7926
+ delta?: number;
7927
+ durationInDays?: number;
7701
7928
  eventHash?: string;
7929
+ fromValue?: string;
7930
+ label?: string;
7702
7931
  reportDate?: string;
7703
- eventType?: "add" | "update";
7704
- propKey?: string;
7705
- propType?: "applicationTags" | "tracked";
7706
- propVal?: string;
7707
- queueDate?: string;
7708
- transition?: {
7709
- delta?: number;
7710
- durationInDays?: number;
7711
- from?: {
7712
- value?: string;
7713
- assigned?: string;
7714
- };
7715
- to?: {
7716
- value?: string;
7717
- assigned?: string;
7718
- };
7719
- };
7720
- }>, "many">>;
7721
- isoRtoConnection: z.ZodOptional<z.ZodArray<z.ZodObject<{
7722
- identifier: z.ZodString;
7723
- id: z.ZodString;
7724
- }, "strip", z.ZodTypeAny, {
7932
+ stage?: string;
7933
+ toValue?: string;
7934
+ compositeKey?: string;
7935
+ eventCount?: number;
7936
+ searchKey?: string;
7937
+ topic?: string;
7938
+ }[];
7939
+ poi?: {
7725
7940
  id?: string;
7726
7941
  identifier?: string;
7727
- }, {
7942
+ kV?: string;
7943
+ meta?: string;
7944
+ poiGroup?: string;
7945
+ };
7946
+ reportCount?: number;
7947
+ signals?: {
7948
+ type?: string;
7949
+ subType?: string;
7950
+ id?: string;
7951
+ headline?: string;
7952
+ filingDate?: string;
7953
+ publishedDate?: string;
7954
+ }[];
7955
+ withdrawnDate?: string;
7956
+ queueDataSetType?: string;
7957
+ regions?: {
7728
7958
  id?: string;
7729
7959
  identifier?: string;
7730
- }>, "many">>;
7731
- keyPeople: z.ZodArray<z.ZodObject<{
7732
- created: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7733
- email: z.ZodOptional<z.ZodString>;
7734
- fullName: z.ZodOptional<z.ZodString>;
7735
- id: z.ZodOptional<z.ZodString>;
7736
- linkedinUrl: z.ZodOptional<z.ZodString>;
7737
- phone: z.ZodOptional<z.ZodString>;
7738
- roles: z.ZodArray<z.ZodOptional<z.ZodString>, "many">;
7739
- source: z.ZodOptional<z.ZodString>;
7740
- }, "strip", z.ZodTypeAny, {
7960
+ }[];
7961
+ stateAbbr?: string;
7962
+ isoRtoUniqueId?: string;
7963
+ stateName?: string;
7964
+ }, {
7965
+ sectors?: {
7741
7966
  id?: string;
7742
- linkedinUrl?: string;
7743
- fullName?: string;
7744
- email?: string;
7745
- phone?: string;
7746
- source?: string;
7747
- created?: string;
7748
- roles?: string[];
7749
- }, {
7967
+ identifier?: string;
7968
+ }[];
7969
+ keyPeople?: {
7750
7970
  id?: string;
7751
7971
  linkedinUrl?: string;
7752
7972
  fullName?: string;
@@ -7755,86 +7975,118 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7755
7975
  source?: string;
7756
7976
  created?: string;
7757
7977
  roles?: string[];
7758
- }>, "many">;
7759
- milestones: z.ZodOptional<z.ZodArray<z.ZodObject<{
7760
- compositeKey: z.ZodString;
7761
- daysInQueue: z.ZodOptional<z.ZodNumber>;
7762
- delta: z.ZodOptional<z.ZodNumber>;
7763
- durationInDays: z.ZodOptional<z.ZodNumber>;
7764
- entries: z.ZodArray<z.ZodObject<{
7765
- daysInQueue: z.ZodOptional<z.ZodNumber>;
7766
- delta: z.ZodOptional<z.ZodNumber>;
7767
- durationInDays: z.ZodOptional<z.ZodNumber>;
7768
- eventHash: z.ZodString;
7769
- fromValue: z.ZodOptional<z.ZodString>;
7770
- label: z.ZodString;
7771
- reportDate: z.ZodString;
7772
- stage: z.ZodString;
7773
- toValue: z.ZodString;
7774
- }, "strip", z.ZodTypeAny, {
7775
- daysInQueue?: number;
7776
- delta?: number;
7777
- durationInDays?: number;
7778
- eventHash?: string;
7779
- fromValue?: string;
7780
- label?: string;
7781
- reportDate?: string;
7782
- stage?: string;
7783
- toValue?: string;
7784
- }, {
7785
- daysInQueue?: number;
7786
- delta?: number;
7787
- durationInDays?: number;
7788
- eventHash?: string;
7789
- fromValue?: string;
7790
- label?: string;
7791
- reportDate?: string;
7792
- stage?: string;
7793
- toValue?: string;
7794
- }>, "many">;
7795
- eventCount: z.ZodNumber;
7796
- eventHash: z.ZodString;
7797
- fromValue: z.ZodOptional<z.ZodString>;
7798
- key: z.ZodString;
7799
- label: z.ZodString;
7800
- reportDate: z.ZodString;
7801
- searchKey: z.ZodString;
7802
- set: z.ZodNumber;
7803
- stage: z.ZodString;
7804
- state: z.ZodString;
7805
- topic: z.ZodString;
7806
- toValue: z.ZodString;
7807
- type: z.ZodString;
7808
- }, "strip", z.ZodTypeAny, {
7809
- type?: string;
7810
- state?: string;
7978
+ }[];
7979
+ id?: string;
7980
+ queueKey?: string;
7981
+ applicationId?: string;
7982
+ queueDataset?: string;
7983
+ country?: {
7984
+ id?: string;
7985
+ identifier?: string;
7986
+ }[];
7987
+ documents?: {
7988
+ type?: string[];
7811
7989
  key?: string;
7812
- entries?: {
7813
- daysInQueue?: number;
7814
- delta?: number;
7815
- durationInDays?: number;
7816
- eventHash?: string;
7817
- fromValue?: string;
7818
- label?: string;
7819
- reportDate?: string;
7820
- stage?: string;
7821
- toValue?: string;
7822
- }[];
7990
+ date?: string;
7991
+ document_id?: string;
7992
+ url?: string;
7993
+ filing_id?: string;
7994
+ isSignal?: boolean;
7995
+ }[];
7996
+ organizations?: {
7997
+ id?: string;
7998
+ identifier?: string;
7999
+ role?: string;
8000
+ ref?: string;
8001
+ }[];
8002
+ geo?: {
8003
+ county?: {
8004
+ lat?: number;
8005
+ lon?: number;
8006
+ };
8007
+ defaultValue?: string;
8008
+ default?: {
8009
+ lat?: number;
8010
+ lon?: number;
8011
+ };
8012
+ project?: {
8013
+ lat?: number;
8014
+ lon?: number;
8015
+ };
8016
+ facility?: {
8017
+ lat?: number;
8018
+ lon?: number;
8019
+ };
8020
+ };
8021
+ audiences?: {
8022
+ identifier?: string;
8023
+ }[];
8024
+ totals?: Record<string, number>;
8025
+ allSectors?: string;
8026
+ $organizations?: string;
8027
+ reportDate?: string;
8028
+ applicationTags?: {
8029
+ identifier?: string;
8030
+ }[];
8031
+ queueDate?: string;
8032
+ schema?: "us_queue";
8033
+ actualOperationalDate?: string;
8034
+ lastModified?: string;
8035
+ localCounty?: {
8036
+ id?: string;
8037
+ identifier?: string;
8038
+ }[];
8039
+ localState?: {
8040
+ id?: string;
8041
+ identifier?: string;
8042
+ }[];
8043
+ plannedOperationalDate?: string;
8044
+ projectName?: string;
8045
+ totalMw?: number;
8046
+ applicationStatus?: string;
8047
+ interconnectingEntity?: string;
8048
+ poiLocation?: string | number;
8049
+ sourceUpdate?: string;
8050
+ applicationType?: string;
8051
+ cost?: {
8052
+ costCompany?: string;
8053
+ costYear?: number;
8054
+ networkCostKW?: number;
8055
+ poiCostKW?: number;
8056
+ totalCostKW?: number;
8057
+ };
8058
+ dateCreated?: string;
8059
+ events?: {
8060
+ id?: string;
8061
+ queueKey?: string;
8062
+ applicationId?: string;
7823
8063
  set?: number;
7824
8064
  daysInQueue?: number;
7825
- delta?: number;
7826
- durationInDays?: number;
7827
8065
  eventHash?: string;
7828
- fromValue?: string;
7829
- label?: string;
7830
8066
  reportDate?: string;
7831
- stage?: string;
7832
- toValue?: string;
7833
- compositeKey?: string;
7834
- eventCount?: number;
7835
- searchKey?: string;
7836
- topic?: string;
7837
- }, {
8067
+ eventType?: "add" | "update";
8068
+ propKey?: string;
8069
+ propType?: "applicationTags" | "tracked";
8070
+ propVal?: string;
8071
+ queueDate?: string;
8072
+ transition?: {
8073
+ delta?: number;
8074
+ durationInDays?: number;
8075
+ from?: {
8076
+ value?: string;
8077
+ assigned?: string;
8078
+ };
8079
+ to?: {
8080
+ value?: string;
8081
+ assigned?: string;
8082
+ };
8083
+ };
8084
+ }[];
8085
+ isoRtoConnection?: {
8086
+ id?: string;
8087
+ identifier?: string;
8088
+ }[];
8089
+ milestones?: {
7838
8090
  type?: string;
7839
8091
  state?: string;
7840
8092
  key?: string;
@@ -7863,77 +8115,39 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7863
8115
  eventCount?: number;
7864
8116
  searchKey?: string;
7865
8117
  topic?: string;
7866
- }>, "many">>;
7867
- poi: z.ZodOptional<z.ZodObject<{
7868
- id: z.ZodString;
7869
- identifier: z.ZodString;
7870
- kV: z.ZodOptional<z.ZodString>;
7871
- meta: z.ZodOptional<z.ZodString>;
7872
- poiGroup: z.ZodString;
7873
- }, "strip", z.ZodTypeAny, {
7874
- id?: string;
7875
- identifier?: string;
7876
- kV?: string;
7877
- meta?: string;
7878
- poiGroup?: string;
7879
- }, {
8118
+ }[];
8119
+ poi?: {
7880
8120
  id?: string;
7881
8121
  identifier?: string;
7882
8122
  kV?: string;
7883
8123
  meta?: string;
7884
8124
  poiGroup?: string;
7885
- }>>;
7886
- reportCount: z.ZodOptional<z.ZodNumber>;
7887
- reportDate: z.ZodOptional<z.ZodString>;
7888
- sectors: z.ZodArray<z.ZodObject<{
7889
- identifier: z.ZodString;
7890
- id: z.ZodString;
7891
- }, "strip", z.ZodTypeAny, {
7892
- id?: string;
7893
- identifier?: string;
7894
- }, {
7895
- id?: string;
7896
- identifier?: string;
7897
- }>, "many">;
7898
- sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7899
- signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
7900
- filingDate: z.ZodString;
7901
- headline: z.ZodString;
7902
- id: z.ZodString;
7903
- publishedDate: z.ZodString;
7904
- subType: z.ZodString;
7905
- type: z.ZodString;
7906
- }, "strip", z.ZodTypeAny, {
8125
+ };
8126
+ reportCount?: number;
8127
+ signals?: {
7907
8128
  type?: string;
7908
8129
  subType?: string;
7909
8130
  id?: string;
7910
8131
  headline?: string;
7911
8132
  filingDate?: string;
7912
8133
  publishedDate?: string;
7913
- }, {
7914
- type?: string;
7915
- subType?: string;
8134
+ }[];
8135
+ withdrawnDate?: string;
8136
+ queueDataSetType?: string;
8137
+ regions?: {
7916
8138
  id?: string;
7917
- headline?: string;
7918
- filingDate?: string;
7919
- publishedDate?: string;
7920
- }>, "many">>;
7921
- withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7922
- } & {
7923
- id: z.ZodString;
7924
- schema: z.ZodLiteral<"us_queue">;
7925
- actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7926
- allSectors: z.ZodOptional<z.ZodString>;
7927
- applicationId: z.ZodOptional<z.ZodString>;
7928
- applicationStatus: z.ZodOptional<z.ZodString>;
7929
- applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
7930
- identifier: z.ZodString;
7931
- }, "strip", z.ZodTypeAny, {
7932
- identifier?: string;
7933
- }, {
7934
8139
  identifier?: string;
7935
- }>, "many">>;
7936
- country: z.ZodOptional<z.ZodArray<z.ZodObject<{
8140
+ }[];
8141
+ stateAbbr?: string;
8142
+ isoRtoUniqueId?: string;
8143
+ stateName?: string;
8144
+ }>, z.ZodObject<{
8145
+ $organizations: z.ZodOptional<z.ZodString>;
8146
+ applicationStatus: z.ZodOptional<z.ZodString>;
8147
+ localTown: z.ZodOptional<z.ZodString>;
8148
+ mwNet: z.ZodOptional<z.ZodNumber>;
8149
+ refId: z.ZodOptional<z.ZodString>;
8150
+ sectors: z.ZodArray<z.ZodObject<{
7937
8151
  identifier: z.ZodString;
7938
8152
  id: z.ZodString;
7939
8153
  }, "strip", z.ZodTypeAny, {
@@ -7942,7 +8156,16 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7942
8156
  }, {
7943
8157
  id?: string;
7944
8158
  identifier?: string;
7945
- }>, "many">>;
8159
+ }>, "many">;
8160
+ storageCapacity: z.ZodOptional<z.ZodNumber>;
8161
+ technology: z.ZodOptional<z.ZodString>;
8162
+ windFarmName: z.ZodOptional<z.ZodString>;
8163
+ id: z.ZodString;
8164
+ schema: z.ZodLiteral<"eu_queue">;
8165
+ actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8166
+ allSectors: z.ZodOptional<z.ZodString>;
8167
+ applicationId: z.ZodOptional<z.ZodString>;
8168
+ country: z.ZodOptional<z.ZodString>;
7946
8169
  geo: z.ZodOptional<z.ZodObject<{
7947
8170
  defaultValue: z.ZodOptional<z.ZodString>;
7948
8171
  default: z.ZodOptional<z.ZodObject<{
@@ -8022,28 +8245,9 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8022
8245
  lon?: number;
8023
8246
  };
8024
8247
  }>>;
8025
- interconnectingEntity: z.ZodOptional<z.ZodString>;
8026
8248
  lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8027
- localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
8028
- identifier: z.ZodString;
8029
- id: z.ZodString;
8030
- }, "strip", z.ZodTypeAny, {
8031
- id?: string;
8032
- identifier?: string;
8033
- }, {
8034
- id?: string;
8035
- identifier?: string;
8036
- }>, "many">>;
8037
- localState: z.ZodOptional<z.ZodArray<z.ZodObject<{
8038
- identifier: z.ZodString;
8039
- id: z.ZodString;
8040
- }, "strip", z.ZodTypeAny, {
8041
- id?: string;
8042
- identifier?: string;
8043
- }, {
8044
- id?: string;
8045
- identifier?: string;
8046
- }>, "many">>;
8249
+ localCounty: z.ZodOptional<z.ZodString>;
8250
+ localState: z.ZodOptional<z.ZodString>;
8047
8251
  organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
8048
8252
  identifier: z.ZodString;
8049
8253
  id: z.ZodString;
@@ -8062,12 +8266,13 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8062
8266
  ref?: string;
8063
8267
  }>, "many">>;
8064
8268
  plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8065
- poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
8066
8269
  projectName: z.ZodOptional<z.ZodString>;
8067
8270
  queueDataset: z.ZodOptional<z.ZodString>;
8068
8271
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8272
+ status: z.ZodOptional<z.ZodString>;
8069
8273
  totalMw: z.ZodOptional<z.ZodNumber>;
8070
8274
  } & {
8275
+ applicationType: z.ZodString;
8071
8276
  audiences: z.ZodArray<z.ZodObject<{
8072
8277
  identifier: z.ZodString;
8073
8278
  }, "strip", z.ZodTypeAny, {
@@ -8075,9 +8280,12 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8075
8280
  }, {
8076
8281
  identifier?: string;
8077
8282
  }>, "many">;
8078
- isoRtoUniqueId: z.ZodString;
8283
+ constructionDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8284
+ developmentStatus: z.ZodString;
8285
+ localRegion: z.ZodOptional<z.ZodString>;
8286
+ mwGross: z.ZodOptional<z.ZodNumber>;
8287
+ planningGranted: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8079
8288
  queueDataSetType: z.ZodString;
8080
- queueKey: z.ZodString;
8081
8289
  regions: z.ZodArray<z.ZodObject<{
8082
8290
  identifier: z.ZodString;
8083
8291
  id: z.ZodString;
@@ -8088,41 +8296,23 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8088
8296
  id?: string;
8089
8297
  identifier?: string;
8090
8298
  }>, "many">;
8299
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8300
+ sectorDetail: z.ZodString;
8301
+ sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8091
8302
  stateAbbr: z.ZodOptional<z.ZodString>;
8092
- stateName: z.ZodOptional<z.ZodString>;
8303
+ storageType: z.ZodOptional<z.ZodString>;
8093
8304
  totals: z.ZodRecord<z.ZodString, z.ZodNumber>;
8305
+ withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8094
8306
  }, "strip", z.ZodTypeAny, {
8095
8307
  sectors?: {
8096
8308
  id?: string;
8097
8309
  identifier?: string;
8098
8310
  }[];
8099
- keyPeople?: {
8100
- id?: string;
8101
- linkedinUrl?: string;
8102
- fullName?: string;
8103
- email?: string;
8104
- phone?: string;
8105
- source?: string;
8106
- created?: string;
8107
- roles?: string[];
8108
- }[];
8109
8311
  id?: string;
8110
- queueKey?: string;
8312
+ status?: string;
8111
8313
  applicationId?: string;
8112
8314
  queueDataset?: string;
8113
- country?: {
8114
- id?: string;
8115
- identifier?: string;
8116
- }[];
8117
- documents?: {
8118
- type?: string[];
8119
- key?: string;
8120
- date?: string;
8121
- document_id?: string;
8122
- url?: string;
8123
- filing_id?: string;
8124
- isSignal?: boolean;
8125
- }[];
8315
+ country?: string;
8126
8316
  organizations?: {
8127
8317
  id?: string;
8128
8318
  identifier?: string;
@@ -8154,155 +8344,49 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8154
8344
  totals?: Record<string, number>;
8155
8345
  allSectors?: string;
8156
8346
  $organizations?: string;
8157
- reportDate?: string;
8158
- applicationTags?: {
8159
- identifier?: string;
8160
- }[];
8347
+ reportDate?: string;
8161
8348
  queueDate?: string;
8162
- schema?: "us_queue";
8349
+ schema?: "eu_queue";
8163
8350
  actualOperationalDate?: string;
8164
8351
  lastModified?: string;
8165
- localCounty?: {
8166
- id?: string;
8167
- identifier?: string;
8168
- }[];
8169
- localState?: {
8170
- id?: string;
8171
- identifier?: string;
8172
- }[];
8352
+ localCounty?: string;
8353
+ localState?: string;
8173
8354
  plannedOperationalDate?: string;
8174
8355
  projectName?: string;
8175
8356
  totalMw?: number;
8176
8357
  applicationStatus?: string;
8177
- interconnectingEntity?: string;
8178
- poiLocation?: string | number;
8358
+ localTown?: string;
8359
+ mwNet?: number;
8360
+ refId?: string;
8179
8361
  sourceUpdate?: string;
8362
+ storageCapacity?: number;
8363
+ technology?: string;
8364
+ windFarmName?: string;
8180
8365
  applicationType?: string;
8181
- cost?: {
8182
- costCompany?: string;
8183
- costYear?: number;
8184
- networkCostKW?: number;
8185
- poiCostKW?: number;
8186
- totalCostKW?: number;
8187
- };
8188
- dateCreated?: string;
8189
- events?: {
8190
- id?: string;
8191
- queueKey?: string;
8192
- applicationId?: string;
8193
- set?: number;
8194
- daysInQueue?: number;
8195
- eventHash?: string;
8196
- reportDate?: string;
8197
- eventType?: "add" | "update";
8198
- propKey?: string;
8199
- propType?: "applicationTags" | "tracked";
8200
- propVal?: string;
8201
- queueDate?: string;
8202
- transition?: {
8203
- delta?: number;
8204
- durationInDays?: number;
8205
- from?: {
8206
- value?: string;
8207
- assigned?: string;
8208
- };
8209
- to?: {
8210
- value?: string;
8211
- assigned?: string;
8212
- };
8213
- };
8214
- }[];
8215
- isoRtoConnection?: {
8216
- id?: string;
8217
- identifier?: string;
8218
- }[];
8219
- milestones?: {
8220
- type?: string;
8221
- state?: string;
8222
- key?: string;
8223
- entries?: {
8224
- daysInQueue?: number;
8225
- delta?: number;
8226
- durationInDays?: number;
8227
- eventHash?: string;
8228
- fromValue?: string;
8229
- label?: string;
8230
- reportDate?: string;
8231
- stage?: string;
8232
- toValue?: string;
8233
- }[];
8234
- set?: number;
8235
- daysInQueue?: number;
8236
- delta?: number;
8237
- durationInDays?: number;
8238
- eventHash?: string;
8239
- fromValue?: string;
8240
- label?: string;
8241
- reportDate?: string;
8242
- stage?: string;
8243
- toValue?: string;
8244
- compositeKey?: string;
8245
- eventCount?: number;
8246
- searchKey?: string;
8247
- topic?: string;
8248
- }[];
8249
- poi?: {
8250
- id?: string;
8251
- identifier?: string;
8252
- kV?: string;
8253
- meta?: string;
8254
- poiGroup?: string;
8255
- };
8256
- reportCount?: number;
8257
- signals?: {
8258
- type?: string;
8259
- subType?: string;
8260
- id?: string;
8261
- headline?: string;
8262
- filingDate?: string;
8263
- publishedDate?: string;
8264
- }[];
8265
8366
  withdrawnDate?: string;
8367
+ constructionDate?: string;
8368
+ developmentStatus?: string;
8369
+ localRegion?: string;
8370
+ mwGross?: number;
8371
+ planningGranted?: string;
8266
8372
  queueDataSetType?: string;
8267
8373
  regions?: {
8268
8374
  id?: string;
8269
8375
  identifier?: string;
8270
8376
  }[];
8377
+ sectorDetail?: string;
8271
8378
  stateAbbr?: string;
8272
- isoRtoUniqueId?: string;
8273
- stateName?: string;
8379
+ storageType?: string;
8274
8380
  }, {
8275
8381
  sectors?: {
8276
8382
  id?: string;
8277
8383
  identifier?: string;
8278
8384
  }[];
8279
- keyPeople?: {
8280
- id?: string;
8281
- linkedinUrl?: string;
8282
- fullName?: string;
8283
- email?: string;
8284
- phone?: string;
8285
- source?: string;
8286
- created?: string;
8287
- roles?: string[];
8288
- }[];
8289
8385
  id?: string;
8290
- queueKey?: string;
8386
+ status?: string;
8291
8387
  applicationId?: string;
8292
8388
  queueDataset?: string;
8293
- country?: {
8294
- id?: string;
8295
- identifier?: string;
8296
- }[];
8297
- documents?: {
8298
- type?: string[];
8299
- key?: string;
8300
- date?: string;
8301
- document_id?: string;
8302
- url?: string;
8303
- filing_id?: string;
8304
- isSignal?: boolean;
8305
- }[];
8389
+ country?: string;
8306
8390
  organizations?: {
8307
8391
  id?: string;
8308
8392
  identifier?: string;
@@ -8335,122 +8419,38 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8335
8419
  allSectors?: string;
8336
8420
  $organizations?: string;
8337
8421
  reportDate?: string;
8338
- applicationTags?: {
8339
- identifier?: string;
8340
- }[];
8341
8422
  queueDate?: string;
8342
- schema?: "us_queue";
8423
+ schema?: "eu_queue";
8343
8424
  actualOperationalDate?: string;
8344
8425
  lastModified?: string;
8345
- localCounty?: {
8346
- id?: string;
8347
- identifier?: string;
8348
- }[];
8349
- localState?: {
8350
- id?: string;
8351
- identifier?: string;
8352
- }[];
8426
+ localCounty?: string;
8427
+ localState?: string;
8353
8428
  plannedOperationalDate?: string;
8354
8429
  projectName?: string;
8355
8430
  totalMw?: number;
8356
8431
  applicationStatus?: string;
8357
- interconnectingEntity?: string;
8358
- poiLocation?: string | number;
8432
+ localTown?: string;
8433
+ mwNet?: number;
8434
+ refId?: string;
8359
8435
  sourceUpdate?: string;
8436
+ storageCapacity?: number;
8437
+ technology?: string;
8438
+ windFarmName?: string;
8360
8439
  applicationType?: string;
8361
- cost?: {
8362
- costCompany?: string;
8363
- costYear?: number;
8364
- networkCostKW?: number;
8365
- poiCostKW?: number;
8366
- totalCostKW?: number;
8367
- };
8368
- dateCreated?: string;
8369
- events?: {
8370
- id?: string;
8371
- queueKey?: string;
8372
- applicationId?: string;
8373
- set?: number;
8374
- daysInQueue?: number;
8375
- eventHash?: string;
8376
- reportDate?: string;
8377
- eventType?: "add" | "update";
8378
- propKey?: string;
8379
- propType?: "applicationTags" | "tracked";
8380
- propVal?: string;
8381
- queueDate?: string;
8382
- transition?: {
8383
- delta?: number;
8384
- durationInDays?: number;
8385
- from?: {
8386
- value?: string;
8387
- assigned?: string;
8388
- };
8389
- to?: {
8390
- value?: string;
8391
- assigned?: string;
8392
- };
8393
- };
8394
- }[];
8395
- isoRtoConnection?: {
8396
- id?: string;
8397
- identifier?: string;
8398
- }[];
8399
- milestones?: {
8400
- type?: string;
8401
- state?: string;
8402
- key?: string;
8403
- entries?: {
8404
- daysInQueue?: number;
8405
- delta?: number;
8406
- durationInDays?: number;
8407
- eventHash?: string;
8408
- fromValue?: string;
8409
- label?: string;
8410
- reportDate?: string;
8411
- stage?: string;
8412
- toValue?: string;
8413
- }[];
8414
- set?: number;
8415
- daysInQueue?: number;
8416
- delta?: number;
8417
- durationInDays?: number;
8418
- eventHash?: string;
8419
- fromValue?: string;
8420
- label?: string;
8421
- reportDate?: string;
8422
- stage?: string;
8423
- toValue?: string;
8424
- compositeKey?: string;
8425
- eventCount?: number;
8426
- searchKey?: string;
8427
- topic?: string;
8428
- }[];
8429
- poi?: {
8430
- id?: string;
8431
- identifier?: string;
8432
- kV?: string;
8433
- meta?: string;
8434
- poiGroup?: string;
8435
- };
8436
- reportCount?: number;
8437
- signals?: {
8438
- type?: string;
8439
- subType?: string;
8440
- id?: string;
8441
- headline?: string;
8442
- filingDate?: string;
8443
- publishedDate?: string;
8444
- }[];
8445
8440
  withdrawnDate?: string;
8441
+ constructionDate?: string;
8442
+ developmentStatus?: string;
8443
+ localRegion?: string;
8444
+ mwGross?: number;
8445
+ planningGranted?: string;
8446
8446
  queueDataSetType?: string;
8447
8447
  regions?: {
8448
8448
  id?: string;
8449
8449
  identifier?: string;
8450
8450
  }[];
8451
+ sectorDetail?: string;
8451
8452
  stateAbbr?: string;
8452
- isoRtoUniqueId?: string;
8453
- stateName?: string;
8453
+ storageType?: string;
8454
8454
  }>]>;
8455
8455
  export type QueueAPIType = z.infer<typeof queueAPISchema>;
8456
8456
  export type QueueAPIUnionType = z.infer<typeof queueAPIUnionSchema>;