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.
- package/dist/bundle.cjs.js +3 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +3 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/account/bidder-account.d.ts +10 -0
- package/dist/schemas/agent/index.d.ts +2 -2
- package/dist/schemas/logger/log-event.d.ts +3 -0
- package/dist/schemas/scraper/scrape-payload.d.ts +5 -0
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -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(),
|