lancer-shared 1.2.270 → 1.2.272
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/dist/bundle.cjs.js +13 -6
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +13 -7
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +1 -1
- package/dist/schemas/account/bidder-account.d.ts +20 -20
- package/dist/schemas/account/scraper-account.d.ts +22 -22
- package/dist/schemas/agent/index.d.ts +216 -216
- package/dist/schemas/agent/proposal.d.ts +2 -2
- package/dist/schemas/bidder/bid.d.ts +2062 -2043
- package/dist/schemas/campaign/campaign-analytics.d.ts +840 -784
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +9 -9
- package/dist/schemas/campaign/campaign.d.ts +378 -378
- package/dist/schemas/dashboard/index.d.ts +12 -12
- package/dist/schemas/golden-dataset/sample.d.ts +8 -8
- package/dist/schemas/invoice/index.d.ts +4 -4
- package/dist/schemas/job/index.d.ts +112 -112
- package/dist/schemas/job/job-api.d.ts +6 -6
- package/dist/schemas/job/job-details.d.ts +74 -74
- package/dist/schemas/job/job-filters.d.ts +47 -47
- package/dist/schemas/job/job-listing.d.ts +22 -22
- package/dist/schemas/job/nuxt.d.ts +24 -24
- package/dist/schemas/lead/index.d.ts +845 -844
- package/dist/schemas/lead/insufficient-connects-action.d.ts +3 -0
- package/dist/schemas/lead/lead-status.d.ts +10 -10
- package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +6 -6
- package/dist/schemas/logger/feed/feed-enrich.d.ts +6 -6
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +140 -140
- package/dist/schemas/logger/feed/feed-scrape.d.ts +6 -6
- package/dist/schemas/logger/log-event.d.ts +72 -72
- package/dist/schemas/logger/scraper-events.d.ts +28 -28
- package/dist/schemas/notifications/index.d.ts +4 -4
- package/dist/schemas/organization/billing.d.ts +2 -2
- package/dist/schemas/organization/index.d.ts +86 -66
- package/dist/schemas/organization/organization-leads.d.ts +4 -4
- package/dist/schemas/organization/subscription.d.ts +15 -9
- package/dist/schemas/plan/index.d.ts +22 -22
- package/dist/schemas/proxy/proxy.d.ts +2 -2
- package/dist/schemas/scraper/scrape-payload.d.ts +514 -495
- package/dist/schemas/scraper/scrape-result.d.ts +136 -136
- package/dist/schemas/talent/index.d.ts +148 -148
- package/dist/schemas/transaction/index.d.ts +2 -2
- package/dist/schemas/usage/index.d.ts +2 -2
- package/dist/schemas/usage-event/index.d.ts +8 -8
- package/package.json +1 -1
|
@@ -105,7 +105,6 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
105
105
|
type: number;
|
|
106
106
|
title: string;
|
|
107
107
|
description: string;
|
|
108
|
-
premium: boolean;
|
|
109
108
|
amount: {
|
|
110
109
|
amount: number;
|
|
111
110
|
};
|
|
@@ -133,6 +132,7 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
133
132
|
tierText: string | null;
|
|
134
133
|
isApplied: boolean;
|
|
135
134
|
proposalsTier: string | null;
|
|
135
|
+
premium: boolean;
|
|
136
136
|
attrs: {
|
|
137
137
|
uid: string;
|
|
138
138
|
prefLabel: string;
|
|
@@ -156,7 +156,6 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
156
156
|
type: number;
|
|
157
157
|
title: string;
|
|
158
158
|
description: string;
|
|
159
|
-
premium: boolean;
|
|
160
159
|
amount: {
|
|
161
160
|
amount: number;
|
|
162
161
|
};
|
|
@@ -184,6 +183,7 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
184
183
|
tierText: string | null;
|
|
185
184
|
isApplied: boolean;
|
|
186
185
|
proposalsTier: string | null;
|
|
186
|
+
premium: boolean;
|
|
187
187
|
attrs: {
|
|
188
188
|
uid: string;
|
|
189
189
|
prefLabel: string;
|
|
@@ -212,7 +212,6 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
212
212
|
type: number;
|
|
213
213
|
title: string;
|
|
214
214
|
description: string;
|
|
215
|
-
premium: boolean;
|
|
216
215
|
amount: {
|
|
217
216
|
amount: number;
|
|
218
217
|
};
|
|
@@ -240,6 +239,7 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
240
239
|
tierText: string | null;
|
|
241
240
|
isApplied: boolean;
|
|
242
241
|
proposalsTier: string | null;
|
|
242
|
+
premium: boolean;
|
|
243
243
|
attrs: {
|
|
244
244
|
uid: string;
|
|
245
245
|
prefLabel: string;
|
|
@@ -260,7 +260,7 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
260
260
|
jobUrl?: string | undefined;
|
|
261
261
|
clientRelation?: any;
|
|
262
262
|
};
|
|
263
|
-
region: "
|
|
263
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
264
264
|
accountId: string;
|
|
265
265
|
accountEmail: string;
|
|
266
266
|
}, {
|
|
@@ -268,7 +268,6 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
268
268
|
type: number;
|
|
269
269
|
title: string;
|
|
270
270
|
description: string;
|
|
271
|
-
premium: boolean;
|
|
272
271
|
amount: {
|
|
273
272
|
amount: number;
|
|
274
273
|
};
|
|
@@ -296,6 +295,7 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
296
295
|
tierText: string | null;
|
|
297
296
|
isApplied: boolean;
|
|
298
297
|
proposalsTier: string | null;
|
|
298
|
+
premium: boolean;
|
|
299
299
|
attrs: {
|
|
300
300
|
uid: string;
|
|
301
301
|
prefLabel: string;
|
|
@@ -316,7 +316,7 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
316
316
|
jobUrl?: string | undefined;
|
|
317
317
|
clientRelation?: any;
|
|
318
318
|
};
|
|
319
|
-
region: "
|
|
319
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
320
320
|
accountId: string;
|
|
321
321
|
accountEmail: string;
|
|
322
322
|
}>;
|
|
@@ -426,7 +426,6 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
426
426
|
type: number;
|
|
427
427
|
title: string;
|
|
428
428
|
description: string;
|
|
429
|
-
premium: boolean;
|
|
430
429
|
amount: {
|
|
431
430
|
amount: number;
|
|
432
431
|
};
|
|
@@ -454,6 +453,7 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
454
453
|
tierText: string | null;
|
|
455
454
|
isApplied: boolean;
|
|
456
455
|
proposalsTier: string | null;
|
|
456
|
+
premium: boolean;
|
|
457
457
|
attrs: {
|
|
458
458
|
uid: string;
|
|
459
459
|
prefLabel: string;
|
|
@@ -477,7 +477,6 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
477
477
|
type: number;
|
|
478
478
|
title: string;
|
|
479
479
|
description: string;
|
|
480
|
-
premium: boolean;
|
|
481
480
|
amount: {
|
|
482
481
|
amount: number;
|
|
483
482
|
};
|
|
@@ -505,6 +504,7 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
505
504
|
tierText: string | null;
|
|
506
505
|
isApplied: boolean;
|
|
507
506
|
proposalsTier: string | null;
|
|
507
|
+
premium: boolean;
|
|
508
508
|
attrs: {
|
|
509
509
|
uid: string;
|
|
510
510
|
prefLabel: string;
|
|
@@ -569,22 +569,22 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
569
569
|
}, "strip", z.ZodTypeAny, {
|
|
570
570
|
hours: string | null;
|
|
571
571
|
duration: string | null;
|
|
572
|
-
paymentType: string | null;
|
|
573
|
-
experienceLevel: string | null;
|
|
574
572
|
hourlyRate: {
|
|
575
573
|
max: number | null;
|
|
576
574
|
min: number | null;
|
|
577
575
|
} | null;
|
|
576
|
+
experienceLevel: string | null;
|
|
577
|
+
paymentType: string | null;
|
|
578
578
|
fixedPrice: number | null;
|
|
579
579
|
}, {
|
|
580
580
|
hours: string | null;
|
|
581
581
|
duration: string | null;
|
|
582
|
-
paymentType: string | null;
|
|
583
|
-
experienceLevel: string | null;
|
|
584
582
|
hourlyRate: {
|
|
585
583
|
max: number | null;
|
|
586
584
|
min: number | null;
|
|
587
585
|
} | null;
|
|
586
|
+
experienceLevel: string | null;
|
|
587
|
+
paymentType: string | null;
|
|
588
588
|
fixedPrice: number | null;
|
|
589
589
|
}>>;
|
|
590
590
|
clientInfo: z.ZodNullable<z.ZodObject<{
|
|
@@ -609,39 +609,39 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
609
609
|
}, "strip", z.ZodTypeAny, {
|
|
610
610
|
country: string | null;
|
|
611
611
|
region: string | null;
|
|
612
|
-
isPaymentVerified: boolean | null;
|
|
613
|
-
isPhoneVerified: boolean | null;
|
|
614
|
-
enterpriseClient: boolean | null;
|
|
615
|
-
companySize: string | null;
|
|
616
612
|
openJobs: number | null;
|
|
617
|
-
|
|
613
|
+
isPhoneVerified: boolean | null;
|
|
614
|
+
isPaymentVerified: boolean | null;
|
|
618
615
|
numberOfReviews: number | null;
|
|
619
616
|
rating: number | null;
|
|
620
617
|
jobsPosted: number | null;
|
|
618
|
+
totalSpent: number | null;
|
|
621
619
|
numberOfHires: number | null;
|
|
622
620
|
activeEngagements: number | null;
|
|
623
621
|
hireRate: number | null;
|
|
624
622
|
memberSince: string | null;
|
|
625
623
|
companyIndustry: string | null;
|
|
624
|
+
companySize: string | null;
|
|
625
|
+
enterpriseClient: boolean | null;
|
|
626
626
|
avgHourlyRatePaid: number | null;
|
|
627
627
|
companyId: string | null;
|
|
628
628
|
}, {
|
|
629
629
|
country: string | null;
|
|
630
630
|
region: string | null;
|
|
631
|
-
isPaymentVerified: boolean | null;
|
|
632
|
-
isPhoneVerified: boolean | null;
|
|
633
|
-
enterpriseClient: boolean | null;
|
|
634
|
-
companySize: string | null;
|
|
635
631
|
openJobs: number | null;
|
|
636
|
-
|
|
632
|
+
isPhoneVerified: boolean | null;
|
|
633
|
+
isPaymentVerified: boolean | null;
|
|
637
634
|
numberOfReviews: number | null;
|
|
638
635
|
rating: number | null;
|
|
639
636
|
jobsPosted: number | null;
|
|
637
|
+
totalSpent: number | null;
|
|
640
638
|
numberOfHires: number | null;
|
|
641
639
|
activeEngagements: number | null;
|
|
642
640
|
hireRate: number | null;
|
|
643
641
|
memberSince: string | null;
|
|
644
642
|
companyIndustry: string | null;
|
|
643
|
+
companySize: string | null;
|
|
644
|
+
enterpriseClient: boolean | null;
|
|
645
645
|
avgHourlyRatePaid: number | null;
|
|
646
646
|
companyId: string | null;
|
|
647
647
|
}>>;
|
|
@@ -654,18 +654,18 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
654
654
|
includeRisingTalent: z.ZodNullable<z.ZodString>;
|
|
655
655
|
}, "strip", z.ZodTypeAny, {
|
|
656
656
|
location: string | null;
|
|
657
|
-
includeRisingTalent: string | null;
|
|
658
657
|
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
659
658
|
englishLevel: string | null;
|
|
660
659
|
minimumEarnings: number | null;
|
|
661
660
|
jobSuccessScore: string | null;
|
|
661
|
+
includeRisingTalent: string | null;
|
|
662
662
|
}, {
|
|
663
663
|
location: string | null;
|
|
664
|
-
includeRisingTalent: string | null;
|
|
665
664
|
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
666
665
|
englishLevel: string | null;
|
|
667
666
|
minimumEarnings: number | null;
|
|
668
667
|
jobSuccessScore: string | null;
|
|
668
|
+
includeRisingTalent: string | null;
|
|
669
669
|
}>>;
|
|
670
670
|
processed: z.ZodNullable<z.ZodBoolean>;
|
|
671
671
|
isFeatured: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -683,29 +683,29 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
683
683
|
numHours: z.ZodNullable<z.ZodNumber>;
|
|
684
684
|
totalBilled: z.ZodNullable<z.ZodNumber>;
|
|
685
685
|
}, "strip", z.ZodTypeAny, {
|
|
686
|
-
paymentType: string | null;
|
|
687
686
|
hourlyRate: number | null;
|
|
688
687
|
jobTitle: string | null;
|
|
688
|
+
paymentType: string | null;
|
|
689
|
+
fixedPrice: number | null;
|
|
689
690
|
freelancerName: string | null;
|
|
690
691
|
freelancerRating: number | null;
|
|
691
692
|
freelancerFeedback: string | null;
|
|
692
693
|
clientFeedback: string | null;
|
|
693
694
|
clientFeedbackRating: number | null;
|
|
694
695
|
dateRange: string | null;
|
|
695
|
-
fixedPrice: number | null;
|
|
696
696
|
numHours: number | null;
|
|
697
697
|
totalBilled: number | null;
|
|
698
698
|
}, {
|
|
699
|
-
paymentType: string | null;
|
|
700
699
|
hourlyRate: number | null;
|
|
701
700
|
jobTitle: string | null;
|
|
701
|
+
paymentType: string | null;
|
|
702
|
+
fixedPrice: number | null;
|
|
702
703
|
freelancerName: string | null;
|
|
703
704
|
freelancerRating: number | null;
|
|
704
705
|
freelancerFeedback: string | null;
|
|
705
706
|
clientFeedback: string | null;
|
|
706
707
|
clientFeedbackRating: number | null;
|
|
707
708
|
dateRange: string | null;
|
|
708
|
-
fixedPrice: number | null;
|
|
709
709
|
numHours: number | null;
|
|
710
710
|
totalBilled: number | null;
|
|
711
711
|
}>, "many">>;
|
|
@@ -742,8 +742,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
742
742
|
unansweredInvites: z.ZodNullable<z.ZodNumber>;
|
|
743
743
|
updatedAt: z.ZodNullable<z.ZodNumber>;
|
|
744
744
|
}, "strip", z.ZodTypeAny, {
|
|
745
|
-
updatedAt: number | null;
|
|
746
745
|
unansweredInvites: number | null;
|
|
746
|
+
updatedAt: number | null;
|
|
747
747
|
proposals: {
|
|
748
748
|
max: number | null;
|
|
749
749
|
min: number | null;
|
|
@@ -754,8 +754,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
754
754
|
interviewing: number | null;
|
|
755
755
|
invitesSent: number | null;
|
|
756
756
|
}, {
|
|
757
|
-
updatedAt: number | null;
|
|
758
757
|
unansweredInvites: number | null;
|
|
758
|
+
updatedAt: number | null;
|
|
759
759
|
proposals: {
|
|
760
760
|
max: number | null;
|
|
761
761
|
min: number | null;
|
|
@@ -787,8 +787,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
787
787
|
unansweredInvites: z.ZodNullable<z.ZodNumber>;
|
|
788
788
|
updatedAt: z.ZodNullable<z.ZodNumber>;
|
|
789
789
|
}, "strip", z.ZodTypeAny, {
|
|
790
|
-
updatedAt: number | null;
|
|
791
790
|
unansweredInvites: number | null;
|
|
791
|
+
updatedAt: number | null;
|
|
792
792
|
proposals: {
|
|
793
793
|
max: number | null;
|
|
794
794
|
min: number | null;
|
|
@@ -799,8 +799,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
799
799
|
interviewing: number | null;
|
|
800
800
|
invitesSent: number | null;
|
|
801
801
|
}, {
|
|
802
|
-
updatedAt: number | null;
|
|
803
802
|
unansweredInvites: number | null;
|
|
803
|
+
updatedAt: number | null;
|
|
804
804
|
proposals: {
|
|
805
805
|
max: number | null;
|
|
806
806
|
min: number | null;
|
|
@@ -836,71 +836,71 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
836
836
|
metadata: {
|
|
837
837
|
hours: string | null;
|
|
838
838
|
duration: string | null;
|
|
839
|
-
paymentType: string | null;
|
|
840
|
-
experienceLevel: string | null;
|
|
841
839
|
hourlyRate: {
|
|
842
840
|
max: number | null;
|
|
843
841
|
min: number | null;
|
|
844
842
|
} | null;
|
|
843
|
+
experienceLevel: string | null;
|
|
844
|
+
paymentType: string | null;
|
|
845
845
|
fixedPrice: number | null;
|
|
846
846
|
} | null;
|
|
847
847
|
description: string | null;
|
|
848
|
-
region: "
|
|
848
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
849
849
|
datetime: number | null;
|
|
850
|
+
category: string | null;
|
|
851
|
+
uid: string | null;
|
|
852
|
+
questions: string[] | null;
|
|
853
|
+
occupation: string | null;
|
|
850
854
|
createdAt: number | null;
|
|
851
|
-
|
|
855
|
+
skills: {
|
|
856
|
+
name: string;
|
|
857
|
+
}[] | null;
|
|
858
|
+
descriptionLength: number | null;
|
|
859
|
+
connectsRequired: number | null;
|
|
860
|
+
projectType: string | null;
|
|
852
861
|
projectDuration: string | null;
|
|
853
|
-
|
|
862
|
+
jobUrl: string | null;
|
|
854
863
|
clientInfo: {
|
|
855
864
|
country: string | null;
|
|
856
865
|
region: string | null;
|
|
857
|
-
isPaymentVerified: boolean | null;
|
|
858
|
-
isPhoneVerified: boolean | null;
|
|
859
|
-
enterpriseClient: boolean | null;
|
|
860
|
-
companySize: string | null;
|
|
861
866
|
openJobs: number | null;
|
|
862
|
-
|
|
867
|
+
isPhoneVerified: boolean | null;
|
|
868
|
+
isPaymentVerified: boolean | null;
|
|
863
869
|
numberOfReviews: number | null;
|
|
864
870
|
rating: number | null;
|
|
865
871
|
jobsPosted: number | null;
|
|
872
|
+
totalSpent: number | null;
|
|
866
873
|
numberOfHires: number | null;
|
|
867
874
|
activeEngagements: number | null;
|
|
868
875
|
hireRate: number | null;
|
|
869
876
|
memberSince: string | null;
|
|
870
877
|
companyIndustry: string | null;
|
|
878
|
+
companySize: string | null;
|
|
879
|
+
enterpriseClient: boolean | null;
|
|
871
880
|
avgHourlyRatePaid: number | null;
|
|
872
881
|
companyId: string | null;
|
|
873
882
|
} | null;
|
|
874
883
|
vendorQualifications: {
|
|
875
884
|
location: string | null;
|
|
876
|
-
includeRisingTalent: string | null;
|
|
877
885
|
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
878
886
|
englishLevel: string | null;
|
|
879
887
|
minimumEarnings: number | null;
|
|
880
888
|
jobSuccessScore: string | null;
|
|
889
|
+
includeRisingTalent: string | null;
|
|
881
890
|
} | null;
|
|
882
|
-
category: string | null;
|
|
883
|
-
uid: string | null;
|
|
884
|
-
occupation: string | null;
|
|
885
|
-
jobUrl: string | null;
|
|
886
|
-
skills: {
|
|
887
|
-
name: string;
|
|
888
|
-
}[] | null;
|
|
889
|
-
descriptionLength: number | null;
|
|
890
|
-
connectsRequired: number | null;
|
|
891
|
-
projectType: string | null;
|
|
892
891
|
processed: boolean | null;
|
|
892
|
+
isFeatured: boolean | null;
|
|
893
893
|
clientReviews: {
|
|
894
|
-
paymentType: string | null;
|
|
895
894
|
hourlyRate: number | null;
|
|
896
895
|
jobTitle: string | null;
|
|
896
|
+
paymentType: string | null;
|
|
897
|
+
fixedPrice: number | null;
|
|
897
898
|
freelancerName: string | null;
|
|
898
899
|
freelancerRating: number | null;
|
|
899
900
|
freelancerFeedback: string | null;
|
|
900
901
|
clientFeedback: string | null;
|
|
901
902
|
clientFeedbackRating: number | null;
|
|
902
903
|
dateRange: string | null;
|
|
903
|
-
fixedPrice: number | null;
|
|
904
904
|
numHours: number | null;
|
|
905
905
|
totalBilled: number | null;
|
|
906
906
|
}[] | null;
|
|
@@ -910,8 +910,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
910
910
|
avg: number | null;
|
|
911
911
|
} | null;
|
|
912
912
|
jobActivity: {
|
|
913
|
-
updatedAt: number | null;
|
|
914
913
|
unansweredInvites: number | null;
|
|
914
|
+
updatedAt: number | null;
|
|
915
915
|
proposals: {
|
|
916
916
|
max: number | null;
|
|
917
917
|
min: number | null;
|
|
@@ -924,8 +924,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
924
924
|
} | null;
|
|
925
925
|
activityUpdates: 2 | 1 | 3 | null;
|
|
926
926
|
activity?: Partial<Record<"4h" | "24h", {
|
|
927
|
-
updatedAt: number | null;
|
|
928
927
|
unansweredInvites: number | null;
|
|
928
|
+
updatedAt: number | null;
|
|
929
929
|
proposals: {
|
|
930
930
|
max: number | null;
|
|
931
931
|
min: number | null;
|
|
@@ -949,71 +949,71 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
949
949
|
metadata: {
|
|
950
950
|
hours: string | null;
|
|
951
951
|
duration: string | null;
|
|
952
|
-
paymentType: string | null;
|
|
953
|
-
experienceLevel: string | null;
|
|
954
952
|
hourlyRate: {
|
|
955
953
|
max: number | null;
|
|
956
954
|
min: number | null;
|
|
957
955
|
} | null;
|
|
956
|
+
experienceLevel: string | null;
|
|
957
|
+
paymentType: string | null;
|
|
958
958
|
fixedPrice: number | null;
|
|
959
959
|
} | null;
|
|
960
960
|
description: string | null;
|
|
961
|
-
region: "
|
|
961
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
962
962
|
datetime: number | null;
|
|
963
|
+
category: string | null;
|
|
964
|
+
uid: string | null;
|
|
965
|
+
questions: string[] | null;
|
|
966
|
+
occupation: string | null;
|
|
963
967
|
createdAt: number | null;
|
|
964
|
-
|
|
968
|
+
skills: {
|
|
969
|
+
name: string;
|
|
970
|
+
}[] | null;
|
|
971
|
+
descriptionLength: number | null;
|
|
972
|
+
connectsRequired: number | null;
|
|
973
|
+
projectType: string | null;
|
|
965
974
|
projectDuration: string | null;
|
|
966
|
-
|
|
975
|
+
jobUrl: string | null;
|
|
967
976
|
clientInfo: {
|
|
968
977
|
country: string | null;
|
|
969
978
|
region: string | null;
|
|
970
|
-
isPaymentVerified: boolean | null;
|
|
971
|
-
isPhoneVerified: boolean | null;
|
|
972
|
-
enterpriseClient: boolean | null;
|
|
973
|
-
companySize: string | null;
|
|
974
979
|
openJobs: number | null;
|
|
975
|
-
|
|
980
|
+
isPhoneVerified: boolean | null;
|
|
981
|
+
isPaymentVerified: boolean | null;
|
|
976
982
|
numberOfReviews: number | null;
|
|
977
983
|
rating: number | null;
|
|
978
984
|
jobsPosted: number | null;
|
|
985
|
+
totalSpent: number | null;
|
|
979
986
|
numberOfHires: number | null;
|
|
980
987
|
activeEngagements: number | null;
|
|
981
988
|
hireRate: number | null;
|
|
982
989
|
memberSince: string | null;
|
|
983
990
|
companyIndustry: string | null;
|
|
991
|
+
companySize: string | null;
|
|
992
|
+
enterpriseClient: boolean | null;
|
|
984
993
|
avgHourlyRatePaid: number | null;
|
|
985
994
|
companyId: string | null;
|
|
986
995
|
} | null;
|
|
987
996
|
vendorQualifications: {
|
|
988
997
|
location: string | null;
|
|
989
|
-
includeRisingTalent: string | null;
|
|
990
998
|
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
991
999
|
englishLevel: string | null;
|
|
992
1000
|
minimumEarnings: number | null;
|
|
993
1001
|
jobSuccessScore: string | null;
|
|
1002
|
+
includeRisingTalent: string | null;
|
|
994
1003
|
} | null;
|
|
995
|
-
category: string | null;
|
|
996
|
-
uid: string | null;
|
|
997
|
-
occupation: string | null;
|
|
998
|
-
jobUrl: string | null;
|
|
999
|
-
skills: {
|
|
1000
|
-
name: string;
|
|
1001
|
-
}[] | null;
|
|
1002
|
-
descriptionLength: number | null;
|
|
1003
|
-
connectsRequired: number | null;
|
|
1004
|
-
projectType: string | null;
|
|
1005
1004
|
processed: boolean | null;
|
|
1005
|
+
isFeatured: boolean | null;
|
|
1006
1006
|
clientReviews: {
|
|
1007
|
-
paymentType: string | null;
|
|
1008
1007
|
hourlyRate: number | null;
|
|
1009
1008
|
jobTitle: string | null;
|
|
1009
|
+
paymentType: string | null;
|
|
1010
|
+
fixedPrice: number | null;
|
|
1010
1011
|
freelancerName: string | null;
|
|
1011
1012
|
freelancerRating: number | null;
|
|
1012
1013
|
freelancerFeedback: string | null;
|
|
1013
1014
|
clientFeedback: string | null;
|
|
1014
1015
|
clientFeedbackRating: number | null;
|
|
1015
1016
|
dateRange: string | null;
|
|
1016
|
-
fixedPrice: number | null;
|
|
1017
1017
|
numHours: number | null;
|
|
1018
1018
|
totalBilled: number | null;
|
|
1019
1019
|
}[] | null;
|
|
@@ -1023,8 +1023,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1023
1023
|
avg: number | null;
|
|
1024
1024
|
} | null;
|
|
1025
1025
|
jobActivity: {
|
|
1026
|
-
updatedAt: number | null;
|
|
1027
1026
|
unansweredInvites: number | null;
|
|
1027
|
+
updatedAt: number | null;
|
|
1028
1028
|
proposals: {
|
|
1029
1029
|
max: number | null;
|
|
1030
1030
|
min: number | null;
|
|
@@ -1037,8 +1037,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1037
1037
|
} | null;
|
|
1038
1038
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1039
1039
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1040
|
-
updatedAt: number | null;
|
|
1041
1040
|
unansweredInvites: number | null;
|
|
1041
|
+
updatedAt: number | null;
|
|
1042
1042
|
proposals: {
|
|
1043
1043
|
max: number | null;
|
|
1044
1044
|
min: number | null;
|
|
@@ -1059,7 +1059,7 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1059
1059
|
}>;
|
|
1060
1060
|
duration: z.ZodString;
|
|
1061
1061
|
}>, "strip", z.ZodTypeAny, {
|
|
1062
|
-
region: "
|
|
1062
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
1063
1063
|
duration: string;
|
|
1064
1064
|
job: {
|
|
1065
1065
|
id: string | null;
|
|
@@ -1067,71 +1067,71 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1067
1067
|
metadata: {
|
|
1068
1068
|
hours: string | null;
|
|
1069
1069
|
duration: string | null;
|
|
1070
|
-
paymentType: string | null;
|
|
1071
|
-
experienceLevel: string | null;
|
|
1072
1070
|
hourlyRate: {
|
|
1073
1071
|
max: number | null;
|
|
1074
1072
|
min: number | null;
|
|
1075
1073
|
} | null;
|
|
1074
|
+
experienceLevel: string | null;
|
|
1075
|
+
paymentType: string | null;
|
|
1076
1076
|
fixedPrice: number | null;
|
|
1077
1077
|
} | null;
|
|
1078
1078
|
description: string | null;
|
|
1079
|
-
region: "
|
|
1079
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
1080
1080
|
datetime: number | null;
|
|
1081
|
+
category: string | null;
|
|
1082
|
+
uid: string | null;
|
|
1083
|
+
questions: string[] | null;
|
|
1084
|
+
occupation: string | null;
|
|
1081
1085
|
createdAt: number | null;
|
|
1082
|
-
|
|
1086
|
+
skills: {
|
|
1087
|
+
name: string;
|
|
1088
|
+
}[] | null;
|
|
1089
|
+
descriptionLength: number | null;
|
|
1090
|
+
connectsRequired: number | null;
|
|
1091
|
+
projectType: string | null;
|
|
1083
1092
|
projectDuration: string | null;
|
|
1084
|
-
|
|
1093
|
+
jobUrl: string | null;
|
|
1085
1094
|
clientInfo: {
|
|
1086
1095
|
country: string | null;
|
|
1087
1096
|
region: string | null;
|
|
1088
|
-
isPaymentVerified: boolean | null;
|
|
1089
|
-
isPhoneVerified: boolean | null;
|
|
1090
|
-
enterpriseClient: boolean | null;
|
|
1091
|
-
companySize: string | null;
|
|
1092
1097
|
openJobs: number | null;
|
|
1093
|
-
|
|
1098
|
+
isPhoneVerified: boolean | null;
|
|
1099
|
+
isPaymentVerified: boolean | null;
|
|
1094
1100
|
numberOfReviews: number | null;
|
|
1095
1101
|
rating: number | null;
|
|
1096
1102
|
jobsPosted: number | null;
|
|
1103
|
+
totalSpent: number | null;
|
|
1097
1104
|
numberOfHires: number | null;
|
|
1098
1105
|
activeEngagements: number | null;
|
|
1099
1106
|
hireRate: number | null;
|
|
1100
1107
|
memberSince: string | null;
|
|
1101
1108
|
companyIndustry: string | null;
|
|
1109
|
+
companySize: string | null;
|
|
1110
|
+
enterpriseClient: boolean | null;
|
|
1102
1111
|
avgHourlyRatePaid: number | null;
|
|
1103
1112
|
companyId: string | null;
|
|
1104
1113
|
} | null;
|
|
1105
1114
|
vendorQualifications: {
|
|
1106
1115
|
location: string | null;
|
|
1107
|
-
includeRisingTalent: string | null;
|
|
1108
1116
|
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
1109
1117
|
englishLevel: string | null;
|
|
1110
1118
|
minimumEarnings: number | null;
|
|
1111
1119
|
jobSuccessScore: string | null;
|
|
1120
|
+
includeRisingTalent: string | null;
|
|
1112
1121
|
} | null;
|
|
1113
|
-
category: string | null;
|
|
1114
|
-
uid: string | null;
|
|
1115
|
-
occupation: string | null;
|
|
1116
|
-
jobUrl: string | null;
|
|
1117
|
-
skills: {
|
|
1118
|
-
name: string;
|
|
1119
|
-
}[] | null;
|
|
1120
|
-
descriptionLength: number | null;
|
|
1121
|
-
connectsRequired: number | null;
|
|
1122
|
-
projectType: string | null;
|
|
1123
1122
|
processed: boolean | null;
|
|
1123
|
+
isFeatured: boolean | null;
|
|
1124
1124
|
clientReviews: {
|
|
1125
|
-
paymentType: string | null;
|
|
1126
1125
|
hourlyRate: number | null;
|
|
1127
1126
|
jobTitle: string | null;
|
|
1127
|
+
paymentType: string | null;
|
|
1128
|
+
fixedPrice: number | null;
|
|
1128
1129
|
freelancerName: string | null;
|
|
1129
1130
|
freelancerRating: number | null;
|
|
1130
1131
|
freelancerFeedback: string | null;
|
|
1131
1132
|
clientFeedback: string | null;
|
|
1132
1133
|
clientFeedbackRating: number | null;
|
|
1133
1134
|
dateRange: string | null;
|
|
1134
|
-
fixedPrice: number | null;
|
|
1135
1135
|
numHours: number | null;
|
|
1136
1136
|
totalBilled: number | null;
|
|
1137
1137
|
}[] | null;
|
|
@@ -1141,8 +1141,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1141
1141
|
avg: number | null;
|
|
1142
1142
|
} | null;
|
|
1143
1143
|
jobActivity: {
|
|
1144
|
-
updatedAt: number | null;
|
|
1145
1144
|
unansweredInvites: number | null;
|
|
1145
|
+
updatedAt: number | null;
|
|
1146
1146
|
proposals: {
|
|
1147
1147
|
max: number | null;
|
|
1148
1148
|
min: number | null;
|
|
@@ -1155,8 +1155,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1155
1155
|
} | null;
|
|
1156
1156
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1157
1157
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1158
|
-
updatedAt: number | null;
|
|
1159
1158
|
unansweredInvites: number | null;
|
|
1159
|
+
updatedAt: number | null;
|
|
1160
1160
|
proposals: {
|
|
1161
1161
|
max: number | null;
|
|
1162
1162
|
min: number | null;
|
|
@@ -1178,7 +1178,7 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1178
1178
|
accountId: string;
|
|
1179
1179
|
accountEmail: string;
|
|
1180
1180
|
}, {
|
|
1181
|
-
region: "
|
|
1181
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
1182
1182
|
duration: string;
|
|
1183
1183
|
job: {
|
|
1184
1184
|
id: string | null;
|
|
@@ -1186,71 +1186,71 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1186
1186
|
metadata: {
|
|
1187
1187
|
hours: string | null;
|
|
1188
1188
|
duration: string | null;
|
|
1189
|
-
paymentType: string | null;
|
|
1190
|
-
experienceLevel: string | null;
|
|
1191
1189
|
hourlyRate: {
|
|
1192
1190
|
max: number | null;
|
|
1193
1191
|
min: number | null;
|
|
1194
1192
|
} | null;
|
|
1193
|
+
experienceLevel: string | null;
|
|
1194
|
+
paymentType: string | null;
|
|
1195
1195
|
fixedPrice: number | null;
|
|
1196
1196
|
} | null;
|
|
1197
1197
|
description: string | null;
|
|
1198
|
-
region: "
|
|
1198
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
1199
1199
|
datetime: number | null;
|
|
1200
|
+
category: string | null;
|
|
1201
|
+
uid: string | null;
|
|
1202
|
+
questions: string[] | null;
|
|
1203
|
+
occupation: string | null;
|
|
1200
1204
|
createdAt: number | null;
|
|
1201
|
-
|
|
1205
|
+
skills: {
|
|
1206
|
+
name: string;
|
|
1207
|
+
}[] | null;
|
|
1208
|
+
descriptionLength: number | null;
|
|
1209
|
+
connectsRequired: number | null;
|
|
1210
|
+
projectType: string | null;
|
|
1202
1211
|
projectDuration: string | null;
|
|
1203
|
-
|
|
1212
|
+
jobUrl: string | null;
|
|
1204
1213
|
clientInfo: {
|
|
1205
1214
|
country: string | null;
|
|
1206
1215
|
region: string | null;
|
|
1207
|
-
isPaymentVerified: boolean | null;
|
|
1208
|
-
isPhoneVerified: boolean | null;
|
|
1209
|
-
enterpriseClient: boolean | null;
|
|
1210
|
-
companySize: string | null;
|
|
1211
1216
|
openJobs: number | null;
|
|
1212
|
-
|
|
1217
|
+
isPhoneVerified: boolean | null;
|
|
1218
|
+
isPaymentVerified: boolean | null;
|
|
1213
1219
|
numberOfReviews: number | null;
|
|
1214
1220
|
rating: number | null;
|
|
1215
1221
|
jobsPosted: number | null;
|
|
1222
|
+
totalSpent: number | null;
|
|
1216
1223
|
numberOfHires: number | null;
|
|
1217
1224
|
activeEngagements: number | null;
|
|
1218
1225
|
hireRate: number | null;
|
|
1219
1226
|
memberSince: string | null;
|
|
1220
1227
|
companyIndustry: string | null;
|
|
1228
|
+
companySize: string | null;
|
|
1229
|
+
enterpriseClient: boolean | null;
|
|
1221
1230
|
avgHourlyRatePaid: number | null;
|
|
1222
1231
|
companyId: string | null;
|
|
1223
1232
|
} | null;
|
|
1224
1233
|
vendorQualifications: {
|
|
1225
1234
|
location: string | null;
|
|
1226
|
-
includeRisingTalent: string | null;
|
|
1227
1235
|
talentType: "unspecified" | "Independent" | "Agency" | null;
|
|
1228
1236
|
englishLevel: string | null;
|
|
1229
1237
|
minimumEarnings: number | null;
|
|
1230
1238
|
jobSuccessScore: string | null;
|
|
1239
|
+
includeRisingTalent: string | null;
|
|
1231
1240
|
} | null;
|
|
1232
|
-
category: string | null;
|
|
1233
|
-
uid: string | null;
|
|
1234
|
-
occupation: string | null;
|
|
1235
|
-
jobUrl: string | null;
|
|
1236
|
-
skills: {
|
|
1237
|
-
name: string;
|
|
1238
|
-
}[] | null;
|
|
1239
|
-
descriptionLength: number | null;
|
|
1240
|
-
connectsRequired: number | null;
|
|
1241
|
-
projectType: string | null;
|
|
1242
1241
|
processed: boolean | null;
|
|
1242
|
+
isFeatured: boolean | null;
|
|
1243
1243
|
clientReviews: {
|
|
1244
|
-
paymentType: string | null;
|
|
1245
1244
|
hourlyRate: number | null;
|
|
1246
1245
|
jobTitle: string | null;
|
|
1246
|
+
paymentType: string | null;
|
|
1247
|
+
fixedPrice: number | null;
|
|
1247
1248
|
freelancerName: string | null;
|
|
1248
1249
|
freelancerRating: number | null;
|
|
1249
1250
|
freelancerFeedback: string | null;
|
|
1250
1251
|
clientFeedback: string | null;
|
|
1251
1252
|
clientFeedbackRating: number | null;
|
|
1252
1253
|
dateRange: string | null;
|
|
1253
|
-
fixedPrice: number | null;
|
|
1254
1254
|
numHours: number | null;
|
|
1255
1255
|
totalBilled: number | null;
|
|
1256
1256
|
}[] | null;
|
|
@@ -1260,8 +1260,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1260
1260
|
avg: number | null;
|
|
1261
1261
|
} | null;
|
|
1262
1262
|
jobActivity: {
|
|
1263
|
-
updatedAt: number | null;
|
|
1264
1263
|
unansweredInvites: number | null;
|
|
1264
|
+
updatedAt: number | null;
|
|
1265
1265
|
proposals: {
|
|
1266
1266
|
max: number | null;
|
|
1267
1267
|
min: number | null;
|
|
@@ -1274,8 +1274,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1274
1274
|
} | null;
|
|
1275
1275
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1276
1276
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1277
|
-
updatedAt: number | null;
|
|
1278
1277
|
unansweredInvites: number | null;
|
|
1278
|
+
updatedAt: number | null;
|
|
1279
1279
|
proposals: {
|
|
1280
1280
|
max: number | null;
|
|
1281
1281
|
min: number | null;
|
|
@@ -1403,7 +1403,6 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1403
1403
|
type: number;
|
|
1404
1404
|
title: string;
|
|
1405
1405
|
description: string;
|
|
1406
|
-
premium: boolean;
|
|
1407
1406
|
amount: {
|
|
1408
1407
|
amount: number;
|
|
1409
1408
|
};
|
|
@@ -1431,6 +1430,7 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1431
1430
|
tierText: string | null;
|
|
1432
1431
|
isApplied: boolean;
|
|
1433
1432
|
proposalsTier: string | null;
|
|
1433
|
+
premium: boolean;
|
|
1434
1434
|
attrs: {
|
|
1435
1435
|
uid: string;
|
|
1436
1436
|
prefLabel: string;
|
|
@@ -1454,7 +1454,6 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1454
1454
|
type: number;
|
|
1455
1455
|
title: string;
|
|
1456
1456
|
description: string;
|
|
1457
|
-
premium: boolean;
|
|
1458
1457
|
amount: {
|
|
1459
1458
|
amount: number;
|
|
1460
1459
|
};
|
|
@@ -1482,6 +1481,7 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1482
1481
|
tierText: string | null;
|
|
1483
1482
|
isApplied: boolean;
|
|
1484
1483
|
proposalsTier: string | null;
|
|
1484
|
+
premium: boolean;
|
|
1485
1485
|
attrs: {
|
|
1486
1486
|
uid: string;
|
|
1487
1487
|
prefLabel: string;
|
|
@@ -1515,7 +1515,6 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1515
1515
|
type: number;
|
|
1516
1516
|
title: string;
|
|
1517
1517
|
description: string;
|
|
1518
|
-
premium: boolean;
|
|
1519
1518
|
amount: {
|
|
1520
1519
|
amount: number;
|
|
1521
1520
|
};
|
|
@@ -1543,6 +1542,7 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1543
1542
|
tierText: string | null;
|
|
1544
1543
|
isApplied: boolean;
|
|
1545
1544
|
proposalsTier: string | null;
|
|
1545
|
+
premium: boolean;
|
|
1546
1546
|
attrs: {
|
|
1547
1547
|
uid: string;
|
|
1548
1548
|
prefLabel: string;
|
|
@@ -1563,7 +1563,7 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1563
1563
|
jobUrl?: string | undefined;
|
|
1564
1564
|
clientRelation?: any;
|
|
1565
1565
|
};
|
|
1566
|
-
region: "
|
|
1566
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
1567
1567
|
accountId: string;
|
|
1568
1568
|
errorMessage: string;
|
|
1569
1569
|
errorStack: string;
|
|
@@ -1574,7 +1574,6 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1574
1574
|
type: number;
|
|
1575
1575
|
title: string;
|
|
1576
1576
|
description: string;
|
|
1577
|
-
premium: boolean;
|
|
1578
1577
|
amount: {
|
|
1579
1578
|
amount: number;
|
|
1580
1579
|
};
|
|
@@ -1602,6 +1601,7 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1602
1601
|
tierText: string | null;
|
|
1603
1602
|
isApplied: boolean;
|
|
1604
1603
|
proposalsTier: string | null;
|
|
1604
|
+
premium: boolean;
|
|
1605
1605
|
attrs: {
|
|
1606
1606
|
uid: string;
|
|
1607
1607
|
prefLabel: string;
|
|
@@ -1622,7 +1622,7 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1622
1622
|
jobUrl?: string | undefined;
|
|
1623
1623
|
clientRelation?: any;
|
|
1624
1624
|
};
|
|
1625
|
-
region: "
|
|
1625
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
1626
1626
|
accountId: string;
|
|
1627
1627
|
errorMessage: string;
|
|
1628
1628
|
errorStack: string;
|