lancer-shared 1.2.291 → 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.
@@ -6632,6 +6632,7 @@ const bidderAccountSchema = z.object({
6632
6632
  profilePhotoUrl: z.string().nullable(),
6633
6633
  name: z.string().nullable(),
6634
6634
  agencies: z.array(bidderAccountAgencySchema).nullable(),
6635
+ specialisedProfiles: z.array(z.string()).nullable(),
6635
6636
  instanceId: stringType().nullable(),
6636
6637
  createdAt: z.number(),
6637
6638
  updatedAt: z.number(),
@@ -6676,6 +6677,7 @@ const verifyBidderAccountCredentialsResponseSchema = z.object({
6676
6677
  accountName: z.string().nullable(),
6677
6678
  accountPhotoUrl: z.string().nullable(),
6678
6679
  agencies: z.array(bidderAccountAgencySchema).nullable(),
6680
+ specialisedProfiles: z.array(z.string()).nullable(),
6679
6681
  });
6680
6682
  const acceptUpworkInvitationSchema = z.object({
6681
6683
  code: z.string(),
@@ -9063,6 +9065,7 @@ const verifyCredentialsSucceededEventMetadataSchema = objectType({
9063
9065
  accountName: z.string(),
9064
9066
  accountPhotoUrl: z.string(),
9065
9067
  agencies: z.array(bidderAccountAgencySchema),
9068
+ specialisedProfiles: z.array(z.string()),
9066
9069
  });
9067
9070
  const verifyCredentialsFailedEventMetadataSchema = objectType({
9068
9071
  bidderAccountId: z.string(),
@@ -15349,6 +15352,7 @@ const ROUTES = {
15349
15352
  BY_PROVIDER_AND_ID: (provider, id) => `admin/bidder-accounts/${provider}/${id}`,
15350
15353
  REFRESH_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/refresh-proxy`,
15351
15354
  AGENCIES: 'admin/bidder-accounts/agencies',
15355
+ ASSIGN_IPROYAL_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/assign-iproyal-proxy`,
15352
15356
  },
15353
15357
  SCRAPER_ACCOUNTS: {
15354
15358
  BASE: 'admin/scraper-accounts',