lancer-shared 1.2.210 → 1.2.211
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
import { Lead } from '../lead';
|
|
2
3
|
export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
3
4
|
organizationId: z.ZodString;
|
|
4
5
|
campaignId: z.ZodString;
|
|
@@ -8100,6 +8101,10 @@ export type AgencyBidPayload = z.infer<typeof agencyBidPayloadSchema>;
|
|
|
8100
8101
|
export type FreelancerBidPayload = z.infer<typeof freelancerBidPayloadSchema>;
|
|
8101
8102
|
export type AgencyBidProposalData = z.infer<typeof agencyBidProposalDataSchema>;
|
|
8102
8103
|
export type FreelancerBidProposalData = z.infer<typeof freelancerBidProposalDataSchema>;
|
|
8103
|
-
export
|
|
8104
|
-
|
|
8105
|
-
|
|
8104
|
+
export interface BidDto extends z.infer<typeof bidDtoSchema> {
|
|
8105
|
+
lead: Lead;
|
|
8106
|
+
}
|
|
8107
|
+
export interface GetBiddingProcessingEventFromAnotherCampaignsPayload extends z.infer<typeof getBiddingProcessingEventFromAnotherCampaignsPayloadSchema> {
|
|
8108
|
+
}
|
|
8109
|
+
export interface GetBiddingProcessingEventFromAnotherCampaignsResponse extends z.infer<typeof getBiddingProcessingEventFromAnotherCampaignsResponseSchema> {
|
|
8110
|
+
}
|