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 type BidDto = z.infer<typeof bidDtoSchema>;
8104
- export type GetBiddingProcessingEventFromAnotherCampaignsPayload = z.infer<typeof getBiddingProcessingEventFromAnotherCampaignsPayloadSchema>;
8105
- export type GetBiddingProcessingEventFromAnotherCampaignsResponse = z.infer<typeof getBiddingProcessingEventFromAnotherCampaignsResponseSchema>;
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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.210",
3
+ "version": "1.2.211",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",