lancer-shared 1.2.271 → 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 +9 -4
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +9 -5
- package/dist/bundle.esm.js.map +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 +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
|
@@ -33,8 +33,8 @@ export declare const chatbotSchema: z.ZodObject<{
|
|
|
33
33
|
createdAt: z.ZodNumber;
|
|
34
34
|
updatedAt: z.ZodNumber;
|
|
35
35
|
}, "strip", z.ZodTypeAny, {
|
|
36
|
-
campaignId: string;
|
|
37
36
|
organizationId: string;
|
|
37
|
+
campaignId: string;
|
|
38
38
|
createdAt: number;
|
|
39
39
|
updatedAt: number;
|
|
40
40
|
notificationsEnabled: boolean;
|
|
@@ -48,8 +48,8 @@ export declare const chatbotSchema: z.ZodObject<{
|
|
|
48
48
|
accessToken?: string | undefined;
|
|
49
49
|
refreshToken?: string | undefined;
|
|
50
50
|
}, {
|
|
51
|
-
campaignId: string;
|
|
52
51
|
organizationId: string;
|
|
52
|
+
campaignId: string;
|
|
53
53
|
createdAt: number;
|
|
54
54
|
updatedAt: number;
|
|
55
55
|
workspaceId: string;
|
|
@@ -84,9 +84,9 @@ export declare const createChatbotSchema: z.ZodObject<Pick<{
|
|
|
84
84
|
campaignId: z.ZodString;
|
|
85
85
|
createdAt: z.ZodNumber;
|
|
86
86
|
updatedAt: z.ZodNumber;
|
|
87
|
-
}, "
|
|
88
|
-
campaignId: string;
|
|
87
|
+
}, "organizationId" | "campaignId" | "accessToken" | "refreshToken" | "workspaceId" | "channels">, "strip", z.ZodTypeAny, {
|
|
89
88
|
organizationId: string;
|
|
89
|
+
campaignId: string;
|
|
90
90
|
workspaceId: string;
|
|
91
91
|
channels: {
|
|
92
92
|
id: string;
|
|
@@ -95,8 +95,8 @@ export declare const createChatbotSchema: z.ZodObject<Pick<{
|
|
|
95
95
|
accessToken?: string | undefined;
|
|
96
96
|
refreshToken?: string | undefined;
|
|
97
97
|
}, {
|
|
98
|
-
campaignId: string;
|
|
99
98
|
organizationId: string;
|
|
99
|
+
campaignId: string;
|
|
100
100
|
workspaceId: string;
|
|
101
101
|
channels: {
|
|
102
102
|
id: string;
|
|
@@ -143,16 +143,16 @@ export declare const sendNotificationRequestSchema: z.ZodObject<{
|
|
|
143
143
|
message: z.ZodOptional<z.ZodString>;
|
|
144
144
|
isSleepModeActive: z.ZodOptional<z.ZodBoolean>;
|
|
145
145
|
}, "strip", z.ZodTypeAny, {
|
|
146
|
-
campaignId: string;
|
|
147
|
-
organizationId: string;
|
|
148
146
|
leadId: string;
|
|
147
|
+
organizationId: string;
|
|
148
|
+
campaignId: string;
|
|
149
149
|
notificationType: "biddingFailed" | "boostAboveMaxConnects" | "privateJob" | "alreadyHired" | "suitableLead" | "proposalSent" | "proposalViewed" | "proposalReplied" | "noConnects" | "accountDisconnected" | "biddingWarning" | "jobNoLongerAvailable" | "jobAlreadyBiddedOn";
|
|
150
150
|
message?: string | undefined;
|
|
151
151
|
isSleepModeActive?: boolean | undefined;
|
|
152
152
|
}, {
|
|
153
|
-
campaignId: string;
|
|
154
|
-
organizationId: string;
|
|
155
153
|
leadId: string;
|
|
154
|
+
organizationId: string;
|
|
155
|
+
campaignId: string;
|
|
156
156
|
notificationType: "biddingFailed" | "boostAboveMaxConnects" | "privateJob" | "alreadyHired" | "suitableLead" | "proposalSent" | "proposalViewed" | "proposalReplied" | "noConnects" | "accountDisconnected" | "biddingWarning" | "jobNoLongerAvailable" | "jobAlreadyBiddedOn";
|
|
157
157
|
message?: string | undefined;
|
|
158
158
|
isSleepModeActive?: boolean | undefined;
|