lancer-shared 1.2.292 → 1.2.293

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.
@@ -6634,6 +6634,7 @@ const bidderAccountSchema = z.object({
6634
6634
  profilePhotoUrl: z.string().nullable(),
6635
6635
  name: z.string().nullable(),
6636
6636
  agencies: z.array(bidderAccountAgencySchema).nullable(),
6637
+ specialisedProfiles: z.array(z.string()).nullable(),
6637
6638
  instanceId: stringType().nullable(),
6638
6639
  createdAt: z.number(),
6639
6640
  updatedAt: z.number(),
@@ -6678,6 +6679,7 @@ const verifyBidderAccountCredentialsResponseSchema = z.object({
6678
6679
  accountName: z.string().nullable(),
6679
6680
  accountPhotoUrl: z.string().nullable(),
6680
6681
  agencies: z.array(bidderAccountAgencySchema).nullable(),
6682
+ specialisedProfiles: z.array(z.string()).nullable(),
6681
6683
  });
6682
6684
  const acceptUpworkInvitationSchema = z.object({
6683
6685
  code: z.string(),
@@ -9065,6 +9067,7 @@ const verifyCredentialsSucceededEventMetadataSchema = objectType({
9065
9067
  accountName: z.string(),
9066
9068
  accountPhotoUrl: z.string(),
9067
9069
  agencies: z.array(bidderAccountAgencySchema),
9070
+ specialisedProfiles: z.array(z.string()),
9068
9071
  });
9069
9072
  const verifyCredentialsFailedEventMetadataSchema = objectType({
9070
9073
  bidderAccountId: z.string(),