lancer-shared 1.2.314 → 1.2.316

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.
@@ -6728,13 +6728,18 @@ const reconnectBidderAccountResponseSchema = z.object({
6728
6728
  photoUrl: z.string(),
6729
6729
  contractors: z.array(bidderAccountAgencyContractorSchema),
6730
6730
  });
6731
+ const upworkOrganizationTypeEnum = z.enum([
6732
+ 'freelancer',
6733
+ 'agency',
6734
+ 'client',
6735
+ ]);
6731
6736
  const upworkOrganizationSchema = z.object({
6732
6737
  label: z.string(),
6733
6738
  photo_url: z.string(),
6734
6739
  uid: z.string(),
6735
6740
  id: z.string(),
6736
6741
  link: z.string(),
6737
- type: z.enum(['freelancer', 'agency', 'client']),
6742
+ type: upworkOrganizationTypeEnum,
6738
6743
  type_title: z.string(),
6739
6744
  is_active: z.boolean(),
6740
6745
  monetizedTitle: z.string(),
@@ -24880,6 +24885,7 @@ exports.upworkAccountConnectSchema = upworkAccountConnectSchema;
24880
24885
  exports.upworkAccountConnectStatusSchema = upworkAccountConnectStatusSchema;
24881
24886
  exports.upworkJobSchema = upworkJobSchema;
24882
24887
  exports.upworkOrganizationSchema = upworkOrganizationSchema;
24888
+ exports.upworkOrganizationTypeEnum = upworkOrganizationTypeEnum;
24883
24889
  exports.upworkProfileSchema = upworkProfileSchema;
24884
24890
  exports.upworkTalentCountrySchema = upworkTalentCountrySchema;
24885
24891
  exports.upworkTalentSchema = upworkTalentSchema;