lancer-shared 1.2.280 → 1.2.282

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.
@@ -718,6 +718,7 @@ export declare const campaignStatusActivitySchema: z.ZodObject<z.objectUtil.exte
718
718
  bidderId: string | null;
719
719
  }>>;
720
720
  coverLetterTemplateId: z.ZodNullable<z.ZodString>;
721
+ coverLetterTemplatesIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
721
722
  priority: z.ZodNullable<z.ZodNumber>;
722
723
  coverLetterTemplate: z.ZodNullable<z.ZodObject<{
723
724
  id: z.ZodString;
@@ -1372,6 +1373,7 @@ export declare const leadAnalysisActivitySchema: z.ZodObject<z.objectUtil.extend
1372
1373
  bidderId: string | null;
1373
1374
  }>>;
1374
1375
  coverLetterTemplateId: z.ZodNullable<z.ZodString>;
1376
+ coverLetterTemplatesIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
1375
1377
  priority: z.ZodNullable<z.ZodNumber>;
1376
1378
  coverLetterTemplate: z.ZodNullable<z.ZodObject<{
1377
1379
  id: z.ZodString;
@@ -2457,6 +2459,7 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
2457
2459
  bidderId: string | null;
2458
2460
  }>>;
2459
2461
  coverLetterTemplateId: z.ZodNullable<z.ZodString>;
2462
+ coverLetterTemplatesIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
2460
2463
  priority: z.ZodNullable<z.ZodNumber>;
2461
2464
  coverLetterTemplate: z.ZodNullable<z.ZodObject<{
2462
2465
  id: z.ZodString;
@@ -3542,6 +3545,7 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
3542
3545
  bidderId: string | null;
3543
3546
  }>>;
3544
3547
  coverLetterTemplateId: z.ZodNullable<z.ZodString>;
3548
+ coverLetterTemplatesIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
3545
3549
  priority: z.ZodNullable<z.ZodNumber>;
3546
3550
  coverLetterTemplate: z.ZodNullable<z.ZodObject<{
3547
3551
  id: z.ZodString;
@@ -4624,6 +4628,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
4624
4628
  bidderId: string | null;
4625
4629
  }>>;
4626
4630
  coverLetterTemplateId: z.ZodNullable<z.ZodString>;
4631
+ coverLetterTemplatesIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
4627
4632
  priority: z.ZodNullable<z.ZodNumber>;
4628
4633
  coverLetterTemplate: z.ZodNullable<z.ZodObject<{
4629
4634
  id: z.ZodString;
@@ -5277,6 +5282,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
5277
5282
  bidderId: string | null;
5278
5283
  }>>;
5279
5284
  coverLetterTemplateId: z.ZodNullable<z.ZodString>;
5285
+ coverLetterTemplatesIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
5280
5286
  priority: z.ZodNullable<z.ZodNumber>;
5281
5287
  coverLetterTemplate: z.ZodNullable<z.ZodObject<{
5282
5288
  id: z.ZodString;
@@ -6361,6 +6367,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
6361
6367
  bidderId: string | null;
6362
6368
  }>>;
6363
6369
  coverLetterTemplateId: z.ZodNullable<z.ZodString>;
6370
+ coverLetterTemplatesIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
6364
6371
  priority: z.ZodNullable<z.ZodNumber>;
6365
6372
  coverLetterTemplate: z.ZodNullable<z.ZodObject<{
6366
6373
  id: z.ZodString;
@@ -7445,6 +7452,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
7445
7452
  bidderId: string | null;
7446
7453
  }>>;
7447
7454
  coverLetterTemplateId: z.ZodNullable<z.ZodString>;
7455
+ coverLetterTemplatesIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
7448
7456
  priority: z.ZodNullable<z.ZodNumber>;
7449
7457
  coverLetterTemplate: z.ZodNullable<z.ZodObject<{
7450
7458
  id: z.ZodString;
@@ -378,6 +378,7 @@ export declare const campaignSchema: z.ZodObject<{
378
378
  bidderId: string | null;
379
379
  }>>;
380
380
  coverLetterTemplateId: z.ZodNullable<z.ZodString>;
381
+ coverLetterTemplatesIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
381
382
  priority: z.ZodNullable<z.ZodNumber>;
382
383
  coverLetterTemplate: z.ZodNullable<z.ZodObject<{
383
384
  id: z.ZodString;
@@ -540,6 +541,7 @@ export declare const campaignSchema: z.ZodObject<{
540
541
  boostingAmount: number;
541
542
  };
542
543
  notificationsEnabled: boolean | null;
544
+ coverLetterTemplatesIds: string[] | null;
543
545
  coverLetterTemplate: {
544
546
  id: string;
545
547
  name: string;
@@ -655,6 +657,7 @@ export declare const campaignSchema: z.ZodObject<{
655
657
  boostingAmount?: number | undefined;
656
658
  };
657
659
  notificationsEnabled: boolean | null;
660
+ coverLetterTemplatesIds: string[] | null;
658
661
  coverLetterTemplate: {
659
662
  id: string;
660
663
  name: string;
@@ -1020,6 +1023,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
1020
1023
  bidderId: string | null;
1021
1024
  }>>;
1022
1025
  coverLetterTemplateId: z.ZodNullable<z.ZodString>;
1026
+ coverLetterTemplatesIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
1023
1027
  priority: z.ZodNullable<z.ZodNumber>;
1024
1028
  coverLetterTemplate: z.ZodNullable<z.ZodObject<{
1025
1029
  id: z.ZodString;
@@ -1173,6 +1177,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
1173
1177
  boostingAmount: number;
1174
1178
  };
1175
1179
  notificationsEnabled: boolean | null;
1180
+ coverLetterTemplatesIds: string[] | null;
1176
1181
  coverLetterTemplate: {
1177
1182
  id: string;
1178
1183
  name: string;
@@ -1279,6 +1284,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
1279
1284
  boostingAmount?: number | undefined;
1280
1285
  };
1281
1286
  notificationsEnabled: boolean | null;
1287
+ coverLetterTemplatesIds: string[] | null;
1282
1288
  coverLetterTemplate: {
1283
1289
  id: string;
1284
1290
  name: string;
@@ -1624,6 +1630,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
1624
1630
  boostingAmount?: number | undefined;
1625
1631
  }>>;
1626
1632
  notificationsEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1633
+ coverLetterTemplatesIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1627
1634
  coverLetterTemplate: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1628
1635
  id: z.ZodString;
1629
1636
  name: z.ZodString;
@@ -1784,6 +1791,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
1784
1791
  boostingAmount: number;
1785
1792
  } | undefined;
1786
1793
  notificationsEnabled?: boolean | null | undefined;
1794
+ coverLetterTemplatesIds?: string[] | null | undefined;
1787
1795
  coverLetterTemplate?: {
1788
1796
  id: string;
1789
1797
  name: string;
@@ -1902,6 +1910,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
1902
1910
  boostingAmount?: number | undefined;
1903
1911
  } | undefined;
1904
1912
  notificationsEnabled?: boolean | null | undefined;
1913
+ coverLetterTemplatesIds?: string[] | null | undefined;
1905
1914
  coverLetterTemplate?: {
1906
1915
  id: string;
1907
1916
  name: string;
@@ -733,6 +733,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
733
733
  bidderId: string | null;
734
734
  }>>;
735
735
  coverLetterTemplateId: z.ZodNullable<z.ZodString>;
736
+ coverLetterTemplatesIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
736
737
  priority: z.ZodNullable<z.ZodNumber>;
737
738
  coverLetterTemplate: z.ZodNullable<z.ZodObject<{
738
739
  id: z.ZodString;
@@ -895,6 +896,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
895
896
  boostingAmount: number;
896
897
  };
897
898
  notificationsEnabled: boolean | null;
899
+ coverLetterTemplatesIds: string[] | null;
898
900
  coverLetterTemplate: {
899
901
  id: string;
900
902
  name: string;
@@ -1010,6 +1012,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
1010
1012
  boostingAmount?: number | undefined;
1011
1013
  };
1012
1014
  notificationsEnabled: boolean | null;
1015
+ coverLetterTemplatesIds: string[] | null;
1013
1016
  coverLetterTemplate: {
1014
1017
  id: string;
1015
1018
  name: string;
@@ -2575,6 +2578,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
2575
2578
  boostingAmount: number;
2576
2579
  };
2577
2580
  notificationsEnabled: boolean | null;
2581
+ coverLetterTemplatesIds: string[] | null;
2578
2582
  coverLetterTemplate: {
2579
2583
  id: string;
2580
2584
  name: string;
@@ -2956,6 +2960,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
2956
2960
  boostingAmount?: number | undefined;
2957
2961
  };
2958
2962
  notificationsEnabled: boolean | null;
2963
+ coverLetterTemplatesIds: string[] | null;
2959
2964
  coverLetterTemplate: {
2960
2965
  id: string;
2961
2966
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.280",
3
+ "version": "1.2.282",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",