lancer-shared 1.2.268 → 1.2.270

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.
@@ -134,6 +134,8 @@ export declare const ROUTES: {
134
134
  readonly BASE: (id: string) => string;
135
135
  readonly BY_ID: (id: string, memberId: string) => string;
136
136
  };
137
+ readonly CHECK_PROMO_CODE: (id: string) => string;
138
+ readonly STRIPE_PORTAL: (id: string) => string;
137
139
  readonly UPDATE_LEADS_STATUS: (id: string) => string;
138
140
  readonly SETTINGS: (id: string) => string;
139
141
  readonly CHARGES: (id: string) => string;
@@ -510,6 +510,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
510
510
  specialisedProfile: string | null;
511
511
  };
512
512
  }>>;
513
+ statusSynced: z.ZodNullable<z.ZodBoolean>;
513
514
  }>, "processed">, "strip", z.ZodTypeAny, {
514
515
  id: string | null;
515
516
  title: string | null;
@@ -652,6 +653,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
652
653
  specialisedProfile: string | null;
653
654
  };
654
655
  } | null;
656
+ statusSynced: boolean | null;
655
657
  activity?: Partial<Record<"4h" | "24h", {
656
658
  updatedAt: number | null;
657
659
  unansweredInvites: number | null;
@@ -816,6 +818,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
816
818
  specialisedProfile: string | null;
817
819
  };
818
820
  } | null;
821
+ statusSynced: boolean | null;
819
822
  activity?: Partial<Record<"4h" | "24h", {
820
823
  updatedAt: number | null;
821
824
  unansweredInvites: number | null;
@@ -996,6 +999,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
996
999
  specialisedProfile: string | null;
997
1000
  };
998
1001
  } | null;
1002
+ statusSynced: boolean | null;
999
1003
  activity?: Partial<Record<"4h" | "24h", {
1000
1004
  updatedAt: number | null;
1001
1005
  unansweredInvites: number | null;
@@ -1170,6 +1174,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
1170
1174
  specialisedProfile: string | null;
1171
1175
  };
1172
1176
  } | null;
1177
+ statusSynced: boolean | null;
1173
1178
  activity?: Partial<Record<"4h" | "24h", {
1174
1179
  updatedAt: number | null;
1175
1180
  unansweredInvites: number | null;
@@ -409,6 +409,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
409
409
  specialisedProfile: string | null;
410
410
  };
411
411
  }>>;
412
+ statusSynced: z.ZodNullable<z.ZodBoolean>;
412
413
  }>, "processed">, "strip", z.ZodTypeAny, {
413
414
  id: string | null;
414
415
  title: string | null;
@@ -551,6 +552,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
551
552
  specialisedProfile: string | null;
552
553
  };
553
554
  } | null;
555
+ statusSynced: boolean | null;
554
556
  activity?: Partial<Record<"4h" | "24h", {
555
557
  updatedAt: number | null;
556
558
  unansweredInvites: number | null;
@@ -715,6 +717,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
715
717
  specialisedProfile: string | null;
716
718
  };
717
719
  } | null;
720
+ statusSynced: boolean | null;
718
721
  activity?: Partial<Record<"4h" | "24h", {
719
722
  updatedAt: number | null;
720
723
  unansweredInvites: number | null;
@@ -924,6 +927,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
924
927
  specialisedProfile: string | null;
925
928
  };
926
929
  } | null;
930
+ statusSynced: boolean | null;
927
931
  activity?: Partial<Record<"4h" | "24h", {
928
932
  updatedAt: number | null;
929
933
  unansweredInvites: number | null;
@@ -1112,6 +1116,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
1112
1116
  specialisedProfile: string | null;
1113
1117
  };
1114
1118
  } | null;
1119
+ statusSynced: boolean | null;
1115
1120
  activity?: Partial<Record<"4h" | "24h", {
1116
1121
  updatedAt: number | null;
1117
1122
  unansweredInvites: number | null;
@@ -1550,6 +1555,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
1550
1555
  specialisedProfile: string | null;
1551
1556
  };
1552
1557
  }>>;
1558
+ statusSynced: z.ZodNullable<z.ZodBoolean>;
1553
1559
  }>, "processed">, "strip", z.ZodTypeAny, {
1554
1560
  id: string | null;
1555
1561
  title: string | null;
@@ -1692,6 +1698,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
1692
1698
  specialisedProfile: string | null;
1693
1699
  };
1694
1700
  } | null;
1701
+ statusSynced: boolean | null;
1695
1702
  activity?: Partial<Record<"4h" | "24h", {
1696
1703
  updatedAt: number | null;
1697
1704
  unansweredInvites: number | null;
@@ -1856,6 +1863,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
1856
1863
  specialisedProfile: string | null;
1857
1864
  };
1858
1865
  } | null;
1866
+ statusSynced: boolean | null;
1859
1867
  activity?: Partial<Record<"4h" | "24h", {
1860
1868
  updatedAt: number | null;
1861
1869
  unansweredInvites: number | null;
@@ -2065,6 +2073,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
2065
2073
  specialisedProfile: string | null;
2066
2074
  };
2067
2075
  } | null;
2076
+ statusSynced: boolean | null;
2068
2077
  activity?: Partial<Record<"4h" | "24h", {
2069
2078
  updatedAt: number | null;
2070
2079
  unansweredInvites: number | null;
@@ -2253,6 +2262,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
2253
2262
  specialisedProfile: string | null;
2254
2263
  };
2255
2264
  } | null;
2265
+ statusSynced: boolean | null;
2256
2266
  activity?: Partial<Record<"4h" | "24h", {
2257
2267
  updatedAt: number | null;
2258
2268
  unansweredInvites: number | null;
@@ -2691,6 +2701,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
2691
2701
  specialisedProfile: string | null;
2692
2702
  };
2693
2703
  }>>;
2704
+ statusSynced: z.ZodNullable<z.ZodBoolean>;
2694
2705
  }>, "processed">, "strip", z.ZodTypeAny, {
2695
2706
  id: string | null;
2696
2707
  title: string | null;
@@ -2833,6 +2844,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
2833
2844
  specialisedProfile: string | null;
2834
2845
  };
2835
2846
  } | null;
2847
+ statusSynced: boolean | null;
2836
2848
  activity?: Partial<Record<"4h" | "24h", {
2837
2849
  updatedAt: number | null;
2838
2850
  unansweredInvites: number | null;
@@ -2997,6 +3009,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
2997
3009
  specialisedProfile: string | null;
2998
3010
  };
2999
3011
  } | null;
3012
+ statusSynced: boolean | null;
3000
3013
  activity?: Partial<Record<"4h" | "24h", {
3001
3014
  updatedAt: number | null;
3002
3015
  unansweredInvites: number | null;
@@ -3212,6 +3225,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
3212
3225
  specialisedProfile: string | null;
3213
3226
  };
3214
3227
  } | null;
3228
+ statusSynced: boolean | null;
3215
3229
  activity?: Partial<Record<"4h" | "24h", {
3216
3230
  updatedAt: number | null;
3217
3231
  unansweredInvites: number | null;
@@ -3403,6 +3417,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
3403
3417
  specialisedProfile: string | null;
3404
3418
  };
3405
3419
  } | null;
3420
+ statusSynced: boolean | null;
3406
3421
  activity?: Partial<Record<"4h" | "24h", {
3407
3422
  updatedAt: number | null;
3408
3423
  unansweredInvites: number | null;
@@ -3842,6 +3857,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
3842
3857
  specialisedProfile: string | null;
3843
3858
  };
3844
3859
  }>>;
3860
+ statusSynced: z.ZodNullable<z.ZodBoolean>;
3845
3861
  }>, "processed">, "strip", z.ZodTypeAny, {
3846
3862
  id: string | null;
3847
3863
  title: string | null;
@@ -3984,6 +4000,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
3984
4000
  specialisedProfile: string | null;
3985
4001
  };
3986
4002
  } | null;
4003
+ statusSynced: boolean | null;
3987
4004
  activity?: Partial<Record<"4h" | "24h", {
3988
4005
  updatedAt: number | null;
3989
4006
  unansweredInvites: number | null;
@@ -4148,6 +4165,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
4148
4165
  specialisedProfile: string | null;
4149
4166
  };
4150
4167
  } | null;
4168
+ statusSynced: boolean | null;
4151
4169
  activity?: Partial<Record<"4h" | "24h", {
4152
4170
  updatedAt: number | null;
4153
4171
  unansweredInvites: number | null;
@@ -4322,6 +4340,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
4322
4340
  specialisedProfile: string | null;
4323
4341
  };
4324
4342
  } | null;
4343
+ statusSynced: boolean | null;
4325
4344
  activity?: Partial<Record<"4h" | "24h", {
4326
4345
  updatedAt: number | null;
4327
4346
  unansweredInvites: number | null;
@@ -4493,6 +4512,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
4493
4512
  specialisedProfile: string | null;
4494
4513
  };
4495
4514
  } | null;
4515
+ statusSynced: boolean | null;
4496
4516
  activity?: Partial<Record<"4h" | "24h", {
4497
4517
  updatedAt: number | null;
4498
4518
  unansweredInvites: number | null;
@@ -4926,6 +4946,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
4926
4946
  specialisedProfile: string | null;
4927
4947
  };
4928
4948
  }>>;
4949
+ statusSynced: z.ZodNullable<z.ZodBoolean>;
4929
4950
  }>, "processed">, "strip", z.ZodTypeAny, {
4930
4951
  id: string | null;
4931
4952
  title: string | null;
@@ -5068,6 +5089,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
5068
5089
  specialisedProfile: string | null;
5069
5090
  };
5070
5091
  } | null;
5092
+ statusSynced: boolean | null;
5071
5093
  activity?: Partial<Record<"4h" | "24h", {
5072
5094
  updatedAt: number | null;
5073
5095
  unansweredInvites: number | null;
@@ -5232,6 +5254,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
5232
5254
  specialisedProfile: string | null;
5233
5255
  };
5234
5256
  } | null;
5257
+ statusSynced: boolean | null;
5235
5258
  activity?: Partial<Record<"4h" | "24h", {
5236
5259
  updatedAt: number | null;
5237
5260
  unansweredInvites: number | null;
@@ -5668,6 +5691,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
5668
5691
  specialisedProfile: string | null;
5669
5692
  };
5670
5693
  }>>;
5694
+ statusSynced: z.ZodNullable<z.ZodBoolean>;
5671
5695
  }>, "processed">, "strip", z.ZodTypeAny, {
5672
5696
  id: string | null;
5673
5697
  title: string | null;
@@ -5810,6 +5834,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
5810
5834
  specialisedProfile: string | null;
5811
5835
  };
5812
5836
  } | null;
5837
+ statusSynced: boolean | null;
5813
5838
  activity?: Partial<Record<"4h" | "24h", {
5814
5839
  updatedAt: number | null;
5815
5840
  unansweredInvites: number | null;
@@ -5974,6 +5999,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
5974
5999
  specialisedProfile: string | null;
5975
6000
  };
5976
6001
  } | null;
6002
+ statusSynced: boolean | null;
5977
6003
  activity?: Partial<Record<"4h" | "24h", {
5978
6004
  updatedAt: number | null;
5979
6005
  unansweredInvites: number | null;
@@ -6189,6 +6215,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
6189
6215
  specialisedProfile: string | null;
6190
6216
  };
6191
6217
  } | null;
6218
+ statusSynced: boolean | null;
6192
6219
  activity?: Partial<Record<"4h" | "24h", {
6193
6220
  updatedAt: number | null;
6194
6221
  unansweredInvites: number | null;
@@ -6380,6 +6407,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
6380
6407
  specialisedProfile: string | null;
6381
6408
  };
6382
6409
  } | null;
6410
+ statusSynced: boolean | null;
6383
6411
  activity?: Partial<Record<"4h" | "24h", {
6384
6412
  updatedAt: number | null;
6385
6413
  unansweredInvites: number | null;
@@ -6558,6 +6586,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
6558
6586
  specialisedProfile: string | null;
6559
6587
  };
6560
6588
  } | null;
6589
+ statusSynced: boolean | null;
6561
6590
  activity?: Partial<Record<"4h" | "24h", {
6562
6591
  updatedAt: number | null;
6563
6592
  unansweredInvites: number | null;
@@ -6743,6 +6772,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
6743
6772
  specialisedProfile: string | null;
6744
6773
  };
6745
6774
  } | null;
6775
+ statusSynced: boolean | null;
6746
6776
  activity?: Partial<Record<"4h" | "24h", {
6747
6777
  updatedAt: number | null;
6748
6778
  unansweredInvites: number | null;
@@ -6921,6 +6951,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
6921
6951
  specialisedProfile: string | null;
6922
6952
  };
6923
6953
  } | null;
6954
+ statusSynced: boolean | null;
6924
6955
  activity?: Partial<Record<"4h" | "24h", {
6925
6956
  updatedAt: number | null;
6926
6957
  unansweredInvites: number | null;
@@ -7106,6 +7137,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
7106
7137
  specialisedProfile: string | null;
7107
7138
  };
7108
7139
  } | null;
7140
+ statusSynced: boolean | null;
7109
7141
  activity?: Partial<Record<"4h" | "24h", {
7110
7142
  updatedAt: number | null;
7111
7143
  unansweredInvites: number | null;
@@ -7546,6 +7578,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
7546
7578
  specialisedProfile: string | null;
7547
7579
  };
7548
7580
  }>>;
7581
+ statusSynced: z.ZodNullable<z.ZodBoolean>;
7549
7582
  }>, "processed">, "strip", z.ZodTypeAny, {
7550
7583
  id: string | null;
7551
7584
  title: string | null;
@@ -7688,6 +7721,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
7688
7721
  specialisedProfile: string | null;
7689
7722
  };
7690
7723
  } | null;
7724
+ statusSynced: boolean | null;
7691
7725
  activity?: Partial<Record<"4h" | "24h", {
7692
7726
  updatedAt: number | null;
7693
7727
  unansweredInvites: number | null;
@@ -7852,6 +7886,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
7852
7886
  specialisedProfile: string | null;
7853
7887
  };
7854
7888
  } | null;
7889
+ statusSynced: boolean | null;
7855
7890
  activity?: Partial<Record<"4h" | "24h", {
7856
7891
  updatedAt: number | null;
7857
7892
  unansweredInvites: number | null;
@@ -8288,6 +8323,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
8288
8323
  specialisedProfile: string | null;
8289
8324
  };
8290
8325
  }>>;
8326
+ statusSynced: z.ZodNullable<z.ZodBoolean>;
8291
8327
  }>, "processed">, "strip", z.ZodTypeAny, {
8292
8328
  id: string | null;
8293
8329
  title: string | null;
@@ -8430,6 +8466,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
8430
8466
  specialisedProfile: string | null;
8431
8467
  };
8432
8468
  } | null;
8469
+ statusSynced: boolean | null;
8433
8470
  activity?: Partial<Record<"4h" | "24h", {
8434
8471
  updatedAt: number | null;
8435
8472
  unansweredInvites: number | null;
@@ -8594,6 +8631,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
8594
8631
  specialisedProfile: string | null;
8595
8632
  };
8596
8633
  } | null;
8634
+ statusSynced: boolean | null;
8597
8635
  activity?: Partial<Record<"4h" | "24h", {
8598
8636
  updatedAt: number | null;
8599
8637
  unansweredInvites: number | null;
@@ -8803,6 +8841,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
8803
8841
  specialisedProfile: string | null;
8804
8842
  };
8805
8843
  } | null;
8844
+ statusSynced: boolean | null;
8806
8845
  activity?: Partial<Record<"4h" | "24h", {
8807
8846
  updatedAt: number | null;
8808
8847
  unansweredInvites: number | null;
@@ -8991,6 +9030,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
8991
9030
  specialisedProfile: string | null;
8992
9031
  };
8993
9032
  } | null;
9033
+ statusSynced: boolean | null;
8994
9034
  activity?: Partial<Record<"4h" | "24h", {
8995
9035
  updatedAt: number | null;
8996
9036
  unansweredInvites: number | null;
@@ -9168,6 +9208,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
9168
9208
  specialisedProfile: string | null;
9169
9209
  };
9170
9210
  } | null;
9211
+ statusSynced: boolean | null;
9171
9212
  activity?: Partial<Record<"4h" | "24h", {
9172
9213
  updatedAt: number | null;
9173
9214
  unansweredInvites: number | null;
@@ -9351,6 +9392,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
9351
9392
  specialisedProfile: string | null;
9352
9393
  };
9353
9394
  } | null;
9395
+ statusSynced: boolean | null;
9354
9396
  activity?: Partial<Record<"4h" | "24h", {
9355
9397
  updatedAt: number | null;
9356
9398
  unansweredInvites: number | null;
@@ -9528,6 +9570,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
9528
9570
  specialisedProfile: string | null;
9529
9571
  };
9530
9572
  } | null;
9573
+ statusSynced: boolean | null;
9531
9574
  activity?: Partial<Record<"4h" | "24h", {
9532
9575
  updatedAt: number | null;
9533
9576
  unansweredInvites: number | null;
@@ -9711,6 +9754,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
9711
9754
  specialisedProfile: string | null;
9712
9755
  };
9713
9756
  } | null;
9757
+ statusSynced: boolean | null;
9714
9758
  activity?: Partial<Record<"4h" | "24h", {
9715
9759
  updatedAt: number | null;
9716
9760
  unansweredInvites: number | null;
@@ -10151,6 +10195,7 @@ export declare const bidDtoSchema: z.ZodObject<{
10151
10195
  specialisedProfile: string | null;
10152
10196
  };
10153
10197
  }>>;
10198
+ statusSynced: z.ZodNullable<z.ZodBoolean>;
10154
10199
  }>, "processed">, "strip", z.ZodTypeAny, {
10155
10200
  id: string | null;
10156
10201
  title: string | null;
@@ -10293,6 +10338,7 @@ export declare const bidDtoSchema: z.ZodObject<{
10293
10338
  specialisedProfile: string | null;
10294
10339
  };
10295
10340
  } | null;
10341
+ statusSynced: boolean | null;
10296
10342
  activity?: Partial<Record<"4h" | "24h", {
10297
10343
  updatedAt: number | null;
10298
10344
  unansweredInvites: number | null;
@@ -10457,6 +10503,7 @@ export declare const bidDtoSchema: z.ZodObject<{
10457
10503
  specialisedProfile: string | null;
10458
10504
  };
10459
10505
  } | null;
10506
+ statusSynced: boolean | null;
10460
10507
  activity?: Partial<Record<"4h" | "24h", {
10461
10508
  updatedAt: number | null;
10462
10509
  unansweredInvites: number | null;
@@ -10626,6 +10673,7 @@ export declare const bidDtoSchema: z.ZodObject<{
10626
10673
  specialisedProfile: string | null;
10627
10674
  };
10628
10675
  } | null;
10676
+ statusSynced: boolean | null;
10629
10677
  activity?: Partial<Record<"4h" | "24h", {
10630
10678
  updatedAt: number | null;
10631
10679
  unansweredInvites: number | null;
@@ -10795,6 +10843,7 @@ export declare const bidDtoSchema: z.ZodObject<{
10795
10843
  specialisedProfile: string | null;
10796
10844
  };
10797
10845
  } | null;
10846
+ statusSynced: boolean | null;
10798
10847
  activity?: Partial<Record<"4h" | "24h", {
10799
10848
  updatedAt: number | null;
10800
10849
  unansweredInvites: number | null;