lancer-shared 1.2.271 → 1.2.273
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 +78 -4
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +77 -5
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/grouped-countries.d.ts +1 -0
- package/dist/constants/index.d.ts +1 -0
- 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 +784 -776
- 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 +66 -62
- package/dist/schemas/organization/organization-leads.d.ts +4 -4
- package/dist/schemas/organization/subscription.d.ts +9 -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 +495 -490
- 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
|
@@ -6,12 +6,12 @@ export declare const feedScrapeStartedEventMetadata: z.ZodObject<{
|
|
|
6
6
|
accountEmail: z.ZodString;
|
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
|
8
8
|
id: string;
|
|
9
|
-
region: "
|
|
9
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
10
10
|
accountId: string;
|
|
11
11
|
accountEmail: string;
|
|
12
12
|
}, {
|
|
13
13
|
id: string;
|
|
14
|
-
region: "
|
|
14
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
15
15
|
accountId: string;
|
|
16
16
|
accountEmail: string;
|
|
17
17
|
}>;
|
|
@@ -25,14 +25,14 @@ export declare const feedScrapeCompletedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
25
25
|
duration: z.ZodString;
|
|
26
26
|
}>, "strip", z.ZodTypeAny, {
|
|
27
27
|
id: string;
|
|
28
|
-
region: "
|
|
28
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
29
29
|
duration: string;
|
|
30
30
|
accountId: string;
|
|
31
31
|
accountEmail: string;
|
|
32
32
|
feedJobCount: number;
|
|
33
33
|
}, {
|
|
34
34
|
id: string;
|
|
35
|
-
region: "
|
|
35
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
36
36
|
duration: string;
|
|
37
37
|
accountId: string;
|
|
38
38
|
accountEmail: string;
|
|
@@ -50,7 +50,7 @@ export declare const feedScrapeFailedEventMetadata: z.ZodObject<z.objectUtil.ext
|
|
|
50
50
|
}>, "strip", z.ZodTypeAny, {
|
|
51
51
|
id: string;
|
|
52
52
|
errorCode: string;
|
|
53
|
-
region: "
|
|
53
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
54
54
|
accountId: string;
|
|
55
55
|
errorMessage: string;
|
|
56
56
|
errorStack: string;
|
|
@@ -58,7 +58,7 @@ export declare const feedScrapeFailedEventMetadata: z.ZodObject<z.objectUtil.ext
|
|
|
58
58
|
}, {
|
|
59
59
|
id: string;
|
|
60
60
|
errorCode: string;
|
|
61
|
-
region: "
|
|
61
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
62
62
|
accountId: string;
|
|
63
63
|
errorMessage: string;
|
|
64
64
|
errorStack: string;
|
|
@@ -13,28 +13,28 @@ export declare const logEventSchema: z.ZodObject<{
|
|
|
13
13
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14
14
|
timestamp: z.ZodNumber;
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
|
-
type: "
|
|
16
|
+
type: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "leadStatusCheckFailed" | "leadStatusUpdated" | "jobSyncPublished" | "jobSyncReceived" | "jobsIndexed" | "leadsCreatedAndSynced" | "jobDuplicateSkipped" | "manualSuitabilityAnalyzed" | "manualProposalGenerated" | "biddingSkipped" | "biddingPending" | "biddingRetry" | "biddingInsufficientConnects" | "biddingWarningAlert" | "biddingRejected" | "biddingRejectedWithFeedback" | "checkSuitableLeadFeedbackStatus" | "biddingApproved" | "acceptInvitationFailed" | "syncProposalsStatusCompleted" | "syncProposalsStatusFailed" | "scheduleBidding" | "errorLogged" | "cloudTaskRetry" | "manualLeadEdited" | "leadArchived" | "auditTrailLogged" | "feedScrapeStarted" | "feedScrapeCompleted" | "feedScrapeFailed" | "feedEnrichStarted" | "feedEnrichCompleted" | "feedEnrichFailed" | "feedJobEnrichStarted" | "feedJobEnrichCompleted" | "feedJobEnrichFailed" | "feedChunkEnrichStarted" | "feedChunkEnrichCompleted" | "feedChunkEnrichFailed" | "scrapeJobsCompleted" | "scraperAccountError" | "scraperAccountSwapStarted" | "scraperAccountSwapCompleted" | "scraperAccountSwapFailed";
|
|
17
17
|
reason: string | null;
|
|
18
18
|
source: string;
|
|
19
19
|
metadata: Record<string, unknown> | null;
|
|
20
|
+
leadId: string | null;
|
|
21
|
+
organizationId: string | null;
|
|
20
22
|
campaignId: string | null;
|
|
21
23
|
userId: string | null;
|
|
22
|
-
organizationId: string | null;
|
|
23
|
-
timestamp: number;
|
|
24
|
-
leadId: string | null;
|
|
25
24
|
resourceType: string;
|
|
26
25
|
resourceId: string | null;
|
|
26
|
+
timestamp: number;
|
|
27
27
|
}, {
|
|
28
|
-
type: "
|
|
28
|
+
type: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "leadStatusCheckFailed" | "leadStatusUpdated" | "jobSyncPublished" | "jobSyncReceived" | "jobsIndexed" | "leadsCreatedAndSynced" | "jobDuplicateSkipped" | "manualSuitabilityAnalyzed" | "manualProposalGenerated" | "biddingSkipped" | "biddingPending" | "biddingRetry" | "biddingInsufficientConnects" | "biddingWarningAlert" | "biddingRejected" | "biddingRejectedWithFeedback" | "checkSuitableLeadFeedbackStatus" | "biddingApproved" | "acceptInvitationFailed" | "syncProposalsStatusCompleted" | "syncProposalsStatusFailed" | "scheduleBidding" | "errorLogged" | "cloudTaskRetry" | "manualLeadEdited" | "leadArchived" | "auditTrailLogged" | "feedScrapeStarted" | "feedScrapeCompleted" | "feedScrapeFailed" | "feedEnrichStarted" | "feedEnrichCompleted" | "feedEnrichFailed" | "feedJobEnrichStarted" | "feedJobEnrichCompleted" | "feedJobEnrichFailed" | "feedChunkEnrichStarted" | "feedChunkEnrichCompleted" | "feedChunkEnrichFailed" | "scrapeJobsCompleted" | "scraperAccountError" | "scraperAccountSwapStarted" | "scraperAccountSwapCompleted" | "scraperAccountSwapFailed";
|
|
29
29
|
reason: string | null;
|
|
30
30
|
source: string;
|
|
31
31
|
metadata: Record<string, unknown> | null;
|
|
32
|
+
leadId: string | null;
|
|
33
|
+
organizationId: string | null;
|
|
32
34
|
campaignId: string | null;
|
|
33
35
|
userId: string | null;
|
|
34
|
-
organizationId: string | null;
|
|
35
|
-
timestamp: number;
|
|
36
|
-
leadId: string | null;
|
|
37
36
|
resourceId: string | null;
|
|
37
|
+
timestamp: number;
|
|
38
38
|
resourceType?: string | undefined;
|
|
39
39
|
}>;
|
|
40
40
|
export declare const biddingCompletedEventMetadata: z.ZodObject<{
|
|
@@ -45,18 +45,18 @@ export declare const biddingCompletedEventMetadata: z.ZodObject<{
|
|
|
45
45
|
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
46
46
|
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
47
47
|
}, "strip", z.ZodTypeAny, {
|
|
48
|
-
specialisedProfile: string | null;
|
|
49
48
|
biddingAmount: number;
|
|
50
49
|
boosted: boolean;
|
|
51
50
|
boostingAmount: number;
|
|
52
51
|
boostedForPlace: number | null;
|
|
52
|
+
specialisedProfile: string | null;
|
|
53
53
|
applicationId: string;
|
|
54
54
|
}, {
|
|
55
|
-
specialisedProfile: string | null;
|
|
56
55
|
biddingAmount: number;
|
|
57
56
|
boosted: boolean;
|
|
58
57
|
boostingAmount: number;
|
|
59
58
|
boostedForPlace: number | null;
|
|
59
|
+
specialisedProfile: string | null;
|
|
60
60
|
applicationId: string;
|
|
61
61
|
}>;
|
|
62
62
|
export declare const biddingFailedEventMetadata: z.ZodObject<{
|
|
@@ -134,31 +134,31 @@ export declare const leadStatusEventMetadata: z.ZodObject<{
|
|
|
134
134
|
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>;
|
|
135
135
|
proposalId: z.ZodNullable<z.ZodString>;
|
|
136
136
|
}, "strip", z.ZodTypeAny, {
|
|
137
|
-
status: "rejected" | "
|
|
137
|
+
status: "rejected" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
138
138
|
proposalId: string | null;
|
|
139
139
|
}, {
|
|
140
|
-
status: "rejected" | "
|
|
140
|
+
status: "rejected" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
141
141
|
proposalId: string | null;
|
|
142
142
|
}>>;
|
|
143
143
|
reason: z.ZodOptional<z.ZodString>;
|
|
144
144
|
}, "strip", z.ZodTypeAny, {
|
|
145
|
+
leadId: string;
|
|
146
|
+
organizationId: string;
|
|
145
147
|
campaignId: string;
|
|
146
148
|
userId: string;
|
|
147
|
-
organizationId: string;
|
|
148
|
-
leadId: string;
|
|
149
149
|
reason?: string | undefined;
|
|
150
150
|
metadata?: {
|
|
151
|
-
status: "rejected" | "
|
|
151
|
+
status: "rejected" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
152
152
|
proposalId: string | null;
|
|
153
153
|
} | undefined;
|
|
154
154
|
}, {
|
|
155
|
+
leadId: string;
|
|
156
|
+
organizationId: string;
|
|
155
157
|
campaignId: string;
|
|
156
158
|
userId: string;
|
|
157
|
-
organizationId: string;
|
|
158
|
-
leadId: string;
|
|
159
159
|
reason?: string | undefined;
|
|
160
160
|
metadata?: {
|
|
161
|
-
status: "rejected" | "
|
|
161
|
+
status: "rejected" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
162
162
|
proposalId: string | null;
|
|
163
163
|
} | undefined;
|
|
164
164
|
}>;
|
|
@@ -174,13 +174,13 @@ export declare const scheduleBiddingEventMetadataSchema: z.ZodObject<{
|
|
|
174
174
|
campaignId: z.ZodString;
|
|
175
175
|
leadId: z.ZodString;
|
|
176
176
|
}, "strip", z.ZodTypeAny, {
|
|
177
|
-
campaignId: string;
|
|
178
|
-
organizationId: string;
|
|
179
177
|
leadId: string;
|
|
180
|
-
}, {
|
|
181
|
-
campaignId: string;
|
|
182
178
|
organizationId: string;
|
|
179
|
+
campaignId: string;
|
|
180
|
+
}, {
|
|
183
181
|
leadId: string;
|
|
182
|
+
organizationId: string;
|
|
183
|
+
campaignId: string;
|
|
184
184
|
}>;
|
|
185
185
|
export type LogEventType = z.infer<typeof LogEventTypeEnum>;
|
|
186
186
|
export type LogEvent = z.infer<typeof logEventSchema>;
|
|
@@ -200,30 +200,30 @@ export declare const suitabilityPendingEventMetadataSchema: z.ZodObject<{
|
|
|
200
200
|
leadId: z.ZodString;
|
|
201
201
|
campaignId: z.ZodString;
|
|
202
202
|
}, "strip", z.ZodTypeAny, {
|
|
203
|
-
campaignId: string;
|
|
204
203
|
leadId: string;
|
|
205
|
-
}, {
|
|
206
204
|
campaignId: string;
|
|
205
|
+
}, {
|
|
207
206
|
leadId: string;
|
|
207
|
+
campaignId: string;
|
|
208
208
|
}>, "many">;
|
|
209
209
|
}, "strip", z.ZodTypeAny, {
|
|
210
210
|
title: string;
|
|
211
|
-
timestamp: number;
|
|
212
|
-
jobUrl: string;
|
|
213
211
|
jobId: string;
|
|
214
212
|
applyToLeads: {
|
|
215
|
-
campaignId: string;
|
|
216
213
|
leadId: string;
|
|
214
|
+
campaignId: string;
|
|
217
215
|
}[];
|
|
216
|
+
jobUrl: string;
|
|
217
|
+
timestamp: number;
|
|
218
218
|
}, {
|
|
219
219
|
title: string;
|
|
220
|
-
timestamp: number;
|
|
221
|
-
jobUrl: string;
|
|
222
220
|
jobId: string;
|
|
223
221
|
applyToLeads: {
|
|
224
|
-
campaignId: string;
|
|
225
222
|
leadId: string;
|
|
223
|
+
campaignId: string;
|
|
226
224
|
}[];
|
|
225
|
+
jobUrl: string;
|
|
226
|
+
timestamp: number;
|
|
227
227
|
}>;
|
|
228
228
|
export type SuitabilityPendingEventMetadata = z.infer<typeof suitabilityPendingEventMetadataSchema>;
|
|
229
229
|
export declare const suitabilityCompleteEventMetadataSchema: z.ZodObject<{
|
|
@@ -249,23 +249,23 @@ export declare const suitabilityCompleteEventMetadataSchema: z.ZodObject<{
|
|
|
249
249
|
leadId: z.ZodString;
|
|
250
250
|
campaignId: z.ZodString;
|
|
251
251
|
}, "strip", z.ZodTypeAny, {
|
|
252
|
-
campaignId: string;
|
|
253
252
|
leadId: string;
|
|
254
|
-
}, {
|
|
255
253
|
campaignId: string;
|
|
254
|
+
}, {
|
|
256
255
|
leadId: string;
|
|
256
|
+
campaignId: string;
|
|
257
257
|
}>, "many">;
|
|
258
258
|
}, "strip", z.ZodTypeAny, {
|
|
259
259
|
jobId: string;
|
|
260
|
-
suitabilityRating: number;
|
|
261
|
-
suitabilityReason: string;
|
|
262
260
|
applyToLeads: {
|
|
263
|
-
campaignId: string;
|
|
264
261
|
leadId: string;
|
|
262
|
+
campaignId: string;
|
|
265
263
|
}[];
|
|
264
|
+
suitabilityRating: number;
|
|
265
|
+
suitabilityReason: string;
|
|
266
266
|
provider?: string | undefined;
|
|
267
|
-
agentStatus?: string | undefined;
|
|
268
267
|
model?: string | undefined;
|
|
268
|
+
agentStatus?: string | undefined;
|
|
269
269
|
promptTokens?: number | undefined;
|
|
270
270
|
completionTokens?: number | undefined;
|
|
271
271
|
messages?: {
|
|
@@ -274,15 +274,15 @@ export declare const suitabilityCompleteEventMetadataSchema: z.ZodObject<{
|
|
|
274
274
|
}[] | undefined;
|
|
275
275
|
}, {
|
|
276
276
|
jobId: string;
|
|
277
|
-
suitabilityRating: number;
|
|
278
|
-
suitabilityReason: string;
|
|
279
277
|
applyToLeads: {
|
|
280
|
-
campaignId: string;
|
|
281
278
|
leadId: string;
|
|
279
|
+
campaignId: string;
|
|
282
280
|
}[];
|
|
281
|
+
suitabilityRating: number;
|
|
282
|
+
suitabilityReason: string;
|
|
283
283
|
provider?: string | undefined;
|
|
284
|
-
agentStatus?: string | undefined;
|
|
285
284
|
model?: string | undefined;
|
|
285
|
+
agentStatus?: string | undefined;
|
|
286
286
|
promptTokens?: number | undefined;
|
|
287
287
|
completionTokens?: number | undefined;
|
|
288
288
|
messages?: {
|
|
@@ -316,17 +316,17 @@ export declare const proposalCompleteEventMetadataSchema: z.ZodObject<{
|
|
|
316
316
|
question: string;
|
|
317
317
|
}>, "many">;
|
|
318
318
|
}, "strip", z.ZodTypeAny, {
|
|
319
|
+
coverLetter: string;
|
|
319
320
|
questionAnswerPairs: {
|
|
320
321
|
answer: string;
|
|
321
322
|
question: string;
|
|
322
323
|
}[];
|
|
323
|
-
coverLetter: string;
|
|
324
324
|
}, {
|
|
325
|
+
coverLetter: string;
|
|
325
326
|
questionAnswerPairs: {
|
|
326
327
|
answer: string;
|
|
327
328
|
question: string;
|
|
328
329
|
}[];
|
|
329
|
-
coverLetter: string;
|
|
330
330
|
}>;
|
|
331
331
|
model: z.ZodOptional<z.ZodString>;
|
|
332
332
|
provider: z.ZodOptional<z.ZodString>;
|
|
@@ -348,26 +348,26 @@ export declare const proposalCompleteEventMetadataSchema: z.ZodObject<{
|
|
|
348
348
|
leadId: z.ZodString;
|
|
349
349
|
campaignId: z.ZodString;
|
|
350
350
|
}, "strip", z.ZodTypeAny, {
|
|
351
|
-
campaignId: string;
|
|
352
351
|
leadId: string;
|
|
353
|
-
}, {
|
|
354
352
|
campaignId: string;
|
|
353
|
+
}, {
|
|
355
354
|
leadId: string;
|
|
355
|
+
campaignId: string;
|
|
356
356
|
}>, "many">;
|
|
357
357
|
}, "strip", z.ZodTypeAny, {
|
|
358
358
|
jobId: string;
|
|
359
|
+
isOverallHighestPriorityCampaign: boolean;
|
|
360
|
+
applyToLeads: {
|
|
361
|
+
leadId: string;
|
|
362
|
+
campaignId: string;
|
|
363
|
+
}[];
|
|
359
364
|
proposal: {
|
|
365
|
+
coverLetter: string;
|
|
360
366
|
questionAnswerPairs: {
|
|
361
367
|
answer: string;
|
|
362
368
|
question: string;
|
|
363
369
|
}[];
|
|
364
|
-
coverLetter: string;
|
|
365
370
|
};
|
|
366
|
-
isOverallHighestPriorityCampaign: boolean;
|
|
367
|
-
applyToLeads: {
|
|
368
|
-
campaignId: string;
|
|
369
|
-
leadId: string;
|
|
370
|
-
}[];
|
|
371
371
|
provider?: string | undefined;
|
|
372
372
|
model?: string | undefined;
|
|
373
373
|
promptTokens?: number | undefined;
|
|
@@ -378,18 +378,18 @@ export declare const proposalCompleteEventMetadataSchema: z.ZodObject<{
|
|
|
378
378
|
}[] | undefined;
|
|
379
379
|
}, {
|
|
380
380
|
jobId: string;
|
|
381
|
+
isOverallHighestPriorityCampaign: boolean;
|
|
382
|
+
applyToLeads: {
|
|
383
|
+
leadId: string;
|
|
384
|
+
campaignId: string;
|
|
385
|
+
}[];
|
|
381
386
|
proposal: {
|
|
387
|
+
coverLetter: string;
|
|
382
388
|
questionAnswerPairs: {
|
|
383
389
|
answer: string;
|
|
384
390
|
question: string;
|
|
385
391
|
}[];
|
|
386
|
-
coverLetter: string;
|
|
387
392
|
};
|
|
388
|
-
isOverallHighestPriorityCampaign: boolean;
|
|
389
|
-
applyToLeads: {
|
|
390
|
-
campaignId: string;
|
|
391
|
-
leadId: string;
|
|
392
|
-
}[];
|
|
393
393
|
provider?: string | undefined;
|
|
394
394
|
model?: string | undefined;
|
|
395
395
|
promptTokens?: number | undefined;
|
|
@@ -413,28 +413,28 @@ export declare const eventLoggerPayloadSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
413
413
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
414
414
|
timestamp: z.ZodNumber;
|
|
415
415
|
}, "strip", z.ZodTypeAny, {
|
|
416
|
-
type: "
|
|
416
|
+
type: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "leadStatusCheckFailed" | "leadStatusUpdated" | "jobSyncPublished" | "jobSyncReceived" | "jobsIndexed" | "leadsCreatedAndSynced" | "jobDuplicateSkipped" | "manualSuitabilityAnalyzed" | "manualProposalGenerated" | "biddingSkipped" | "biddingPending" | "biddingRetry" | "biddingInsufficientConnects" | "biddingWarningAlert" | "biddingRejected" | "biddingRejectedWithFeedback" | "checkSuitableLeadFeedbackStatus" | "biddingApproved" | "acceptInvitationFailed" | "syncProposalsStatusCompleted" | "syncProposalsStatusFailed" | "scheduleBidding" | "errorLogged" | "cloudTaskRetry" | "manualLeadEdited" | "leadArchived" | "auditTrailLogged" | "feedScrapeStarted" | "feedScrapeCompleted" | "feedScrapeFailed" | "feedEnrichStarted" | "feedEnrichCompleted" | "feedEnrichFailed" | "feedJobEnrichStarted" | "feedJobEnrichCompleted" | "feedJobEnrichFailed" | "feedChunkEnrichStarted" | "feedChunkEnrichCompleted" | "feedChunkEnrichFailed" | "scrapeJobsCompleted" | "scraperAccountError" | "scraperAccountSwapStarted" | "scraperAccountSwapCompleted" | "scraperAccountSwapFailed";
|
|
417
417
|
reason: string | null;
|
|
418
418
|
source: string;
|
|
419
419
|
metadata: Record<string, unknown> | null;
|
|
420
|
+
leadId: string | null;
|
|
421
|
+
organizationId: string | null;
|
|
420
422
|
campaignId: string | null;
|
|
421
423
|
userId: string | null;
|
|
422
|
-
organizationId: string | null;
|
|
423
|
-
timestamp: number;
|
|
424
|
-
leadId: string | null;
|
|
425
424
|
resourceType: string;
|
|
426
425
|
resourceId: string | null;
|
|
426
|
+
timestamp: number;
|
|
427
427
|
}, {
|
|
428
|
-
type: "
|
|
428
|
+
type: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "leadStatusCheckFailed" | "leadStatusUpdated" | "jobSyncPublished" | "jobSyncReceived" | "jobsIndexed" | "leadsCreatedAndSynced" | "jobDuplicateSkipped" | "manualSuitabilityAnalyzed" | "manualProposalGenerated" | "biddingSkipped" | "biddingPending" | "biddingRetry" | "biddingInsufficientConnects" | "biddingWarningAlert" | "biddingRejected" | "biddingRejectedWithFeedback" | "checkSuitableLeadFeedbackStatus" | "biddingApproved" | "acceptInvitationFailed" | "syncProposalsStatusCompleted" | "syncProposalsStatusFailed" | "scheduleBidding" | "errorLogged" | "cloudTaskRetry" | "manualLeadEdited" | "leadArchived" | "auditTrailLogged" | "feedScrapeStarted" | "feedScrapeCompleted" | "feedScrapeFailed" | "feedEnrichStarted" | "feedEnrichCompleted" | "feedEnrichFailed" | "feedJobEnrichStarted" | "feedJobEnrichCompleted" | "feedJobEnrichFailed" | "feedChunkEnrichStarted" | "feedChunkEnrichCompleted" | "feedChunkEnrichFailed" | "scrapeJobsCompleted" | "scraperAccountError" | "scraperAccountSwapStarted" | "scraperAccountSwapCompleted" | "scraperAccountSwapFailed";
|
|
429
429
|
reason: string | null;
|
|
430
430
|
source: string;
|
|
431
431
|
metadata: Record<string, unknown> | null;
|
|
432
|
+
leadId: string | null;
|
|
433
|
+
organizationId: string | null;
|
|
432
434
|
campaignId: string | null;
|
|
433
435
|
userId: string | null;
|
|
434
|
-
organizationId: string | null;
|
|
435
|
-
timestamp: number;
|
|
436
|
-
leadId: string | null;
|
|
437
436
|
resourceId: string | null;
|
|
437
|
+
timestamp: number;
|
|
438
438
|
resourceType?: string | undefined;
|
|
439
439
|
}>, z.ZodArray<z.ZodObject<{
|
|
440
440
|
type: z.ZodEnum<["leadStatusCheckFailed", "leadStatusUpdated", "jobSyncPublished", "jobSyncReceived", "jobsIndexed", "leadsCreatedAndSynced", "jobDuplicateSkipped", "suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "manualSuitabilityAnalyzed", "proposalProcessing", "proposalComplete", "proposalFailed", "manualProposalGenerated", "biddingProcessing", "biddingComplete", "biddingFailed", "biddingSkipped", "biddingPending", "biddingRetry", "biddingInsufficientConnects", "biddingWarningAlert", "biddingRejected", "biddingRejectedWithFeedback", "checkSuitableLeadFeedbackStatus", "biddingApproved", "acceptInvitationFailed", "syncProposalsStatusCompleted", "syncProposalsStatusFailed", "scheduleBidding", "errorLogged", "cloudTaskRetry", "manualLeadEdited", "leadArchived", "auditTrailLogged", "feedScrapeStarted", "feedScrapeCompleted", "feedScrapeFailed", "feedEnrichStarted", "feedEnrichCompleted", "feedEnrichFailed", "feedJobEnrichStarted", "feedJobEnrichCompleted", "feedJobEnrichFailed", "feedChunkEnrichStarted", "feedChunkEnrichCompleted", "feedChunkEnrichFailed", "scrapeJobsCompleted", "scraperAccountError", "scraperAccountSwapStarted", "scraperAccountSwapCompleted", "scraperAccountSwapFailed"]>;
|
|
@@ -449,28 +449,28 @@ export declare const eventLoggerPayloadSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
449
449
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
450
450
|
timestamp: z.ZodNumber;
|
|
451
451
|
}, "strip", z.ZodTypeAny, {
|
|
452
|
-
type: "
|
|
452
|
+
type: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "leadStatusCheckFailed" | "leadStatusUpdated" | "jobSyncPublished" | "jobSyncReceived" | "jobsIndexed" | "leadsCreatedAndSynced" | "jobDuplicateSkipped" | "manualSuitabilityAnalyzed" | "manualProposalGenerated" | "biddingSkipped" | "biddingPending" | "biddingRetry" | "biddingInsufficientConnects" | "biddingWarningAlert" | "biddingRejected" | "biddingRejectedWithFeedback" | "checkSuitableLeadFeedbackStatus" | "biddingApproved" | "acceptInvitationFailed" | "syncProposalsStatusCompleted" | "syncProposalsStatusFailed" | "scheduleBidding" | "errorLogged" | "cloudTaskRetry" | "manualLeadEdited" | "leadArchived" | "auditTrailLogged" | "feedScrapeStarted" | "feedScrapeCompleted" | "feedScrapeFailed" | "feedEnrichStarted" | "feedEnrichCompleted" | "feedEnrichFailed" | "feedJobEnrichStarted" | "feedJobEnrichCompleted" | "feedJobEnrichFailed" | "feedChunkEnrichStarted" | "feedChunkEnrichCompleted" | "feedChunkEnrichFailed" | "scrapeJobsCompleted" | "scraperAccountError" | "scraperAccountSwapStarted" | "scraperAccountSwapCompleted" | "scraperAccountSwapFailed";
|
|
453
453
|
reason: string | null;
|
|
454
454
|
source: string;
|
|
455
455
|
metadata: Record<string, unknown> | null;
|
|
456
|
+
leadId: string | null;
|
|
457
|
+
organizationId: string | null;
|
|
456
458
|
campaignId: string | null;
|
|
457
459
|
userId: string | null;
|
|
458
|
-
organizationId: string | null;
|
|
459
|
-
timestamp: number;
|
|
460
|
-
leadId: string | null;
|
|
461
460
|
resourceType: string;
|
|
462
461
|
resourceId: string | null;
|
|
462
|
+
timestamp: number;
|
|
463
463
|
}, {
|
|
464
|
-
type: "
|
|
464
|
+
type: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "leadStatusCheckFailed" | "leadStatusUpdated" | "jobSyncPublished" | "jobSyncReceived" | "jobsIndexed" | "leadsCreatedAndSynced" | "jobDuplicateSkipped" | "manualSuitabilityAnalyzed" | "manualProposalGenerated" | "biddingSkipped" | "biddingPending" | "biddingRetry" | "biddingInsufficientConnects" | "biddingWarningAlert" | "biddingRejected" | "biddingRejectedWithFeedback" | "checkSuitableLeadFeedbackStatus" | "biddingApproved" | "acceptInvitationFailed" | "syncProposalsStatusCompleted" | "syncProposalsStatusFailed" | "scheduleBidding" | "errorLogged" | "cloudTaskRetry" | "manualLeadEdited" | "leadArchived" | "auditTrailLogged" | "feedScrapeStarted" | "feedScrapeCompleted" | "feedScrapeFailed" | "feedEnrichStarted" | "feedEnrichCompleted" | "feedEnrichFailed" | "feedJobEnrichStarted" | "feedJobEnrichCompleted" | "feedJobEnrichFailed" | "feedChunkEnrichStarted" | "feedChunkEnrichCompleted" | "feedChunkEnrichFailed" | "scrapeJobsCompleted" | "scraperAccountError" | "scraperAccountSwapStarted" | "scraperAccountSwapCompleted" | "scraperAccountSwapFailed";
|
|
465
465
|
reason: string | null;
|
|
466
466
|
source: string;
|
|
467
467
|
metadata: Record<string, unknown> | null;
|
|
468
|
+
leadId: string | null;
|
|
469
|
+
organizationId: string | null;
|
|
468
470
|
campaignId: string | null;
|
|
469
471
|
userId: string | null;
|
|
470
|
-
organizationId: string | null;
|
|
471
|
-
timestamp: number;
|
|
472
|
-
leadId: string | null;
|
|
473
472
|
resourceId: string | null;
|
|
473
|
+
timestamp: number;
|
|
474
474
|
resourceType?: string | undefined;
|
|
475
475
|
}>, "many">]>;
|
|
476
476
|
export type EventLoggerPayload = z.infer<typeof eventLoggerPayloadSchema>;
|
|
@@ -8,7 +8,7 @@ export declare const scrapeJobsCompletedEventMetadata: z.ZodObject<{
|
|
|
8
8
|
successfulEnrichJobCount: z.ZodNumber;
|
|
9
9
|
failedEnrichJobCount: z.ZodNumber;
|
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
|
-
region: "
|
|
11
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
12
12
|
duration: string;
|
|
13
13
|
successfulEnrichJobCount: number;
|
|
14
14
|
failedEnrichJobCount: number;
|
|
@@ -16,7 +16,7 @@ export declare const scrapeJobsCompletedEventMetadata: z.ZodObject<{
|
|
|
16
16
|
feedScraperAccountEmail: string;
|
|
17
17
|
uniqueJobsFound: number;
|
|
18
18
|
}, {
|
|
19
|
-
region: "
|
|
19
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
20
20
|
duration: string;
|
|
21
21
|
successfulEnrichJobCount: number;
|
|
22
22
|
failedEnrichJobCount: number;
|
|
@@ -44,8 +44,8 @@ export declare const jobActivityScrapedEventMetadata: z.ZodObject<{
|
|
|
44
44
|
unansweredInvites: z.ZodNullable<z.ZodNumber>;
|
|
45
45
|
updatedAt: z.ZodNullable<z.ZodNumber>;
|
|
46
46
|
}, "strip", z.ZodTypeAny, {
|
|
47
|
-
updatedAt: number | null;
|
|
48
47
|
unansweredInvites: number | null;
|
|
48
|
+
updatedAt: number | null;
|
|
49
49
|
proposals: {
|
|
50
50
|
max: number | null;
|
|
51
51
|
min: number | null;
|
|
@@ -56,8 +56,8 @@ export declare const jobActivityScrapedEventMetadata: z.ZodObject<{
|
|
|
56
56
|
interviewing: number | null;
|
|
57
57
|
invitesSent: number | null;
|
|
58
58
|
}, {
|
|
59
|
-
updatedAt: number | null;
|
|
60
59
|
unansweredInvites: number | null;
|
|
60
|
+
updatedAt: number | null;
|
|
61
61
|
proposals: {
|
|
62
62
|
max: number | null;
|
|
63
63
|
min: number | null;
|
|
@@ -72,10 +72,10 @@ export declare const jobActivityScrapedEventMetadata: z.ZodObject<{
|
|
|
72
72
|
offsetHour: z.ZodType<4 | 24, z.ZodTypeDef, 4 | 24>;
|
|
73
73
|
scrapedAt: z.ZodNumber;
|
|
74
74
|
}, "strip", z.ZodTypeAny, {
|
|
75
|
-
region: "
|
|
75
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
76
76
|
activity: {
|
|
77
|
-
updatedAt: number | null;
|
|
78
77
|
unansweredInvites: number | null;
|
|
78
|
+
updatedAt: number | null;
|
|
79
79
|
proposals: {
|
|
80
80
|
max: number | null;
|
|
81
81
|
min: number | null;
|
|
@@ -86,13 +86,13 @@ export declare const jobActivityScrapedEventMetadata: z.ZodObject<{
|
|
|
86
86
|
interviewing: number | null;
|
|
87
87
|
invitesSent: number | null;
|
|
88
88
|
};
|
|
89
|
-
offsetHour: 4 | 24;
|
|
90
89
|
scrapedAt: number;
|
|
90
|
+
offsetHour: 4 | 24;
|
|
91
91
|
}, {
|
|
92
|
-
region: "
|
|
92
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
93
93
|
activity: {
|
|
94
|
-
updatedAt: number | null;
|
|
95
94
|
unansweredInvites: number | null;
|
|
95
|
+
updatedAt: number | null;
|
|
96
96
|
proposals: {
|
|
97
97
|
max: number | null;
|
|
98
98
|
min: number | null;
|
|
@@ -103,8 +103,8 @@ export declare const jobActivityScrapedEventMetadata: z.ZodObject<{
|
|
|
103
103
|
interviewing: number | null;
|
|
104
104
|
invitesSent: number | null;
|
|
105
105
|
};
|
|
106
|
-
offsetHour: 4 | 24;
|
|
107
106
|
scrapedAt: number;
|
|
107
|
+
offsetHour: 4 | 24;
|
|
108
108
|
}>;
|
|
109
109
|
export declare const jobActivityScrapeFailedEventMetadata: z.ZodObject<{
|
|
110
110
|
listing: z.ZodObject<{
|
|
@@ -212,7 +212,6 @@ export declare const jobActivityScrapeFailedEventMetadata: 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 jobActivityScrapeFailedEventMetadata: 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;
|
|
@@ -263,7 +263,6 @@ export declare const jobActivityScrapeFailedEventMetadata: z.ZodObject<{
|
|
|
263
263
|
type: number;
|
|
264
264
|
title: string;
|
|
265
265
|
description: string;
|
|
266
|
-
premium: boolean;
|
|
267
266
|
amount: {
|
|
268
267
|
amount: number;
|
|
269
268
|
};
|
|
@@ -291,6 +290,7 @@ export declare const jobActivityScrapeFailedEventMetadata: z.ZodObject<{
|
|
|
291
290
|
tierText: string | null;
|
|
292
291
|
isApplied: boolean;
|
|
293
292
|
proposalsTier: string | null;
|
|
293
|
+
premium: boolean;
|
|
294
294
|
attrs: {
|
|
295
295
|
uid: string;
|
|
296
296
|
prefLabel: string;
|
|
@@ -318,7 +318,6 @@ export declare const jobActivityScrapeFailedEventMetadata: z.ZodObject<{
|
|
|
318
318
|
type: number;
|
|
319
319
|
title: string;
|
|
320
320
|
description: string;
|
|
321
|
-
premium: boolean;
|
|
322
321
|
amount: {
|
|
323
322
|
amount: number;
|
|
324
323
|
};
|
|
@@ -346,6 +345,7 @@ export declare const jobActivityScrapeFailedEventMetadata: z.ZodObject<{
|
|
|
346
345
|
tierText: string | null;
|
|
347
346
|
isApplied: boolean;
|
|
348
347
|
proposalsTier: string | null;
|
|
348
|
+
premium: boolean;
|
|
349
349
|
attrs: {
|
|
350
350
|
uid: string;
|
|
351
351
|
prefLabel: string;
|
|
@@ -366,14 +366,13 @@ export declare const jobActivityScrapeFailedEventMetadata: z.ZodObject<{
|
|
|
366
366
|
jobUrl?: string | undefined;
|
|
367
367
|
clientRelation?: any;
|
|
368
368
|
};
|
|
369
|
-
region: "
|
|
369
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
370
370
|
offsetHour: 4 | 24;
|
|
371
371
|
}, {
|
|
372
372
|
listing: {
|
|
373
373
|
type: number;
|
|
374
374
|
title: string;
|
|
375
375
|
description: string;
|
|
376
|
-
premium: boolean;
|
|
377
376
|
amount: {
|
|
378
377
|
amount: number;
|
|
379
378
|
};
|
|
@@ -401,6 +400,7 @@ export declare const jobActivityScrapeFailedEventMetadata: z.ZodObject<{
|
|
|
401
400
|
tierText: string | null;
|
|
402
401
|
isApplied: boolean;
|
|
403
402
|
proposalsTier: string | null;
|
|
403
|
+
premium: boolean;
|
|
404
404
|
attrs: {
|
|
405
405
|
uid: string;
|
|
406
406
|
prefLabel: string;
|
|
@@ -421,7 +421,7 @@ export declare const jobActivityScrapeFailedEventMetadata: z.ZodObject<{
|
|
|
421
421
|
jobUrl?: string | undefined;
|
|
422
422
|
clientRelation?: any;
|
|
423
423
|
};
|
|
424
|
-
region: "
|
|
424
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
425
425
|
offsetHour: 4 | 24;
|
|
426
426
|
}>;
|
|
427
427
|
export declare const scraperAccountErrorEventMetadata: z.ZodObject<{
|
|
@@ -443,13 +443,13 @@ export declare const scraperAccountSwapStartedEventMetadata: z.ZodObject<{
|
|
|
443
443
|
accountId: z.ZodString;
|
|
444
444
|
accountEmail: z.ZodString;
|
|
445
445
|
}, "strip", z.ZodTypeAny, {
|
|
446
|
-
type: "status" | "profile" | "job" | "
|
|
447
|
-
region: "
|
|
446
|
+
type: "status" | "profile" | "job" | "feed" | "activity" | "unauthenticated";
|
|
447
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
448
448
|
accountId: string;
|
|
449
449
|
accountEmail: string;
|
|
450
450
|
}, {
|
|
451
|
-
type: "status" | "profile" | "job" | "
|
|
452
|
-
region: "
|
|
451
|
+
type: "status" | "profile" | "job" | "feed" | "activity" | "unauthenticated";
|
|
452
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
453
453
|
accountId: string;
|
|
454
454
|
accountEmail: string;
|
|
455
455
|
}>;
|
|
@@ -462,15 +462,15 @@ export declare const scraperAccountSwapCompletedEventMetadata: z.ZodObject<z.obj
|
|
|
462
462
|
newAccountId: z.ZodString;
|
|
463
463
|
newAccountEmail: z.ZodString;
|
|
464
464
|
}>, "strip", z.ZodTypeAny, {
|
|
465
|
-
type: "status" | "profile" | "job" | "
|
|
466
|
-
region: "
|
|
465
|
+
type: "status" | "profile" | "job" | "feed" | "activity" | "unauthenticated";
|
|
466
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
467
467
|
accountId: string;
|
|
468
468
|
accountEmail: string;
|
|
469
469
|
newAccountId: string;
|
|
470
470
|
newAccountEmail: string;
|
|
471
471
|
}, {
|
|
472
|
-
type: "status" | "profile" | "job" | "
|
|
473
|
-
region: "
|
|
472
|
+
type: "status" | "profile" | "job" | "feed" | "activity" | "unauthenticated";
|
|
473
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
474
474
|
accountId: string;
|
|
475
475
|
accountEmail: string;
|
|
476
476
|
newAccountId: string;
|
|
@@ -486,17 +486,17 @@ export declare const scraperAccountSwapFailedEventMetadata: z.ZodObject<z.object
|
|
|
486
486
|
errorCode: z.ZodString;
|
|
487
487
|
errorMessage: z.ZodString;
|
|
488
488
|
}>, "strip", z.ZodTypeAny, {
|
|
489
|
-
type: "status" | "profile" | "job" | "
|
|
489
|
+
type: "status" | "profile" | "job" | "feed" | "activity" | "unauthenticated";
|
|
490
490
|
errorCode: string;
|
|
491
|
-
region: "
|
|
491
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
492
492
|
accountId: string;
|
|
493
493
|
errorMessage: string;
|
|
494
494
|
errorStack: string;
|
|
495
495
|
accountEmail: string;
|
|
496
496
|
}, {
|
|
497
|
-
type: "status" | "profile" | "job" | "
|
|
497
|
+
type: "status" | "profile" | "job" | "feed" | "activity" | "unauthenticated";
|
|
498
498
|
errorCode: string;
|
|
499
|
-
region: "
|
|
499
|
+
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
500
500
|
accountId: string;
|
|
501
501
|
errorMessage: string;
|
|
502
502
|
errorStack: string;
|