lancer-shared 1.2.241 → 1.2.243
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 +2 -1
- package/dist/bundle.cjs.js.map +1 -0
- package/dist/bundle.esm.js +2 -1
- package/dist/bundle.esm.js.map +1 -0
- package/dist/schemas/account/bidder-account.d.ts +75 -75
- package/dist/schemas/account/scraper-account.d.ts +37 -37
- package/dist/schemas/agent/index.d.ts +287 -287
- package/dist/schemas/agent/proposal.d.ts +6 -6
- package/dist/schemas/bidder/bid.d.ts +2345 -2345
- package/dist/schemas/campaign/campaign-analytics.d.ts +857 -857
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +25 -25
- package/dist/schemas/campaign/campaign-expenses.d.ts +2 -2
- package/dist/schemas/campaign/campaign-insights.d.ts +12 -12
- package/dist/schemas/campaign/campaign.d.ts +201 -201
- package/dist/schemas/campaign/sequence/boost-node.d.ts +2 -2
- package/dist/schemas/campaign/sequence/client-size-node.d.ts +8 -8
- package/dist/schemas/campaign/sequence/client-spent-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/hire-rate-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/hourly-rate-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/rating-node.d.ts +16 -16
- package/dist/schemas/campaign/sequence/suitability-node.d.ts +16 -16
- package/dist/schemas/dashboard/index.d.ts +34 -34
- package/dist/schemas/infrastructure/index.d.ts +8 -8
- package/dist/schemas/invoice/index.d.ts +51 -51
- package/dist/schemas/job/index.d.ts +212 -212
- package/dist/schemas/job/job-api.d.ts +4 -4
- package/dist/schemas/job/job-details.d.ts +736 -736
- package/dist/schemas/job/job-filters.d.ts +14 -14
- package/dist/schemas/job/job-listing.d.ts +94 -94
- package/dist/schemas/job/nuxt.d.ts +150 -150
- package/dist/schemas/lead/index.d.ts +1025 -1022
- package/dist/schemas/lead/lead-status.d.ts +10 -10
- package/dist/schemas/logger/feed/feed-chunk-enrich.d.ts +25 -25
- package/dist/schemas/logger/feed/feed-enrich.d.ts +15 -15
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +321 -321
- package/dist/schemas/logger/feed/feed-scrape.d.ts +15 -15
- package/dist/schemas/logger/log-event.d.ts +91 -91
- package/dist/schemas/logger/scraper-events.d.ts +90 -90
- package/dist/schemas/notifications/index.d.ts +4 -4
- package/dist/schemas/organization/cover-letter.d.ts +2 -2
- package/dist/schemas/organization/index.d.ts +104 -104
- package/dist/schemas/organization/subscription.d.ts +6 -6
- package/dist/schemas/plan/index.d.ts +14 -14
- package/dist/schemas/proxy/proxy.d.ts +20 -20
- package/dist/schemas/saved-search/index.d.ts +4 -4
- package/dist/schemas/scraper/scrape-payload.d.ts +621 -621
- package/dist/schemas/scraper/scrape-result.d.ts +214 -214
- package/dist/schemas/scraper/upwork-profile.d.ts +16 -16
- package/dist/schemas/shared.d.ts +1 -1
- package/dist/schemas/talent/index.d.ts +854 -854
- package/dist/schemas/transaction/index.d.ts +18 -18
- package/dist/schemas/usage/index.d.ts +16 -16
- package/dist/schemas/usage-event/index.d.ts +4 -4
- package/dist/schemas/user/index.d.ts +4 -4
- package/package.json +7 -5
|
@@ -27,20 +27,20 @@ export declare const bidderAccountAgencySchema: z.ZodObject<{
|
|
|
27
27
|
organizationId: z.ZodString;
|
|
28
28
|
}, "strip", z.ZodTypeAny, {
|
|
29
29
|
name: string;
|
|
30
|
+
organizationId: string;
|
|
30
31
|
logoUrl: string | null;
|
|
31
32
|
contractors: {
|
|
32
33
|
name: string;
|
|
33
34
|
specializedProfiles: string[];
|
|
34
35
|
}[];
|
|
35
|
-
organizationId: string;
|
|
36
36
|
}, {
|
|
37
37
|
name: string;
|
|
38
|
+
organizationId: string;
|
|
38
39
|
logoUrl: string | null;
|
|
39
40
|
contractors: {
|
|
40
41
|
name: string;
|
|
41
42
|
specializedProfiles: string[];
|
|
42
43
|
}[];
|
|
43
|
-
organizationId: string;
|
|
44
44
|
}>;
|
|
45
45
|
export declare const bidderAccountSchema: z.ZodObject<{
|
|
46
46
|
id: z.ZodString;
|
|
@@ -72,32 +72,35 @@ export declare const bidderAccountSchema: z.ZodObject<{
|
|
|
72
72
|
organizationId: z.ZodString;
|
|
73
73
|
}, "strip", z.ZodTypeAny, {
|
|
74
74
|
name: string;
|
|
75
|
+
organizationId: string;
|
|
75
76
|
logoUrl: string | null;
|
|
76
77
|
contractors: {
|
|
77
78
|
name: string;
|
|
78
79
|
specializedProfiles: string[];
|
|
79
80
|
}[];
|
|
80
|
-
organizationId: string;
|
|
81
81
|
}, {
|
|
82
82
|
name: string;
|
|
83
|
+
organizationId: string;
|
|
83
84
|
logoUrl: string | null;
|
|
84
85
|
contractors: {
|
|
85
86
|
name: string;
|
|
86
87
|
specializedProfiles: string[];
|
|
87
88
|
}[];
|
|
88
|
-
organizationId: string;
|
|
89
89
|
}>, "many">>;
|
|
90
90
|
instanceId: z.ZodNullable<z.ZodString>;
|
|
91
91
|
createdAt: z.ZodNumber;
|
|
92
92
|
updatedAt: z.ZodNumber;
|
|
93
|
-
region: z.ZodEnum<["
|
|
93
|
+
region: z.ZodEnum<["Worldwide", "USOnly", "UKOnly", "All"]>;
|
|
94
94
|
isProtected: z.ZodOptional<z.ZodBoolean>;
|
|
95
95
|
}, "strip", z.ZodTypeAny, {
|
|
96
|
-
name: string | null;
|
|
97
96
|
id: string;
|
|
98
|
-
|
|
97
|
+
name: string | null;
|
|
99
98
|
email: string;
|
|
99
|
+
region: "Worldwide" | "USOnly" | "UKOnly" | "All";
|
|
100
|
+
createdAt: number;
|
|
101
|
+
updatedAt: number;
|
|
100
102
|
password: string;
|
|
103
|
+
provider: "user-provided" | "lancer-provided";
|
|
101
104
|
isConnecting: boolean | null;
|
|
102
105
|
securityQuestionAnswer: string | null;
|
|
103
106
|
assignedOrganizations: string[];
|
|
@@ -107,25 +110,25 @@ export declare const bidderAccountSchema: z.ZodObject<{
|
|
|
107
110
|
profilePhotoUrl: string | null;
|
|
108
111
|
agencies: {
|
|
109
112
|
name: string;
|
|
113
|
+
organizationId: string;
|
|
110
114
|
logoUrl: string | null;
|
|
111
115
|
contractors: {
|
|
112
116
|
name: string;
|
|
113
117
|
specializedProfiles: string[];
|
|
114
118
|
}[];
|
|
115
|
-
organizationId: string;
|
|
116
119
|
}[] | null;
|
|
117
120
|
instanceId: string | null;
|
|
118
|
-
createdAt: number;
|
|
119
|
-
updatedAt: number;
|
|
120
|
-
region: "all" | "Worldwide" | "UKOnly" | "USOnly";
|
|
121
121
|
googleOauthTokens?: any;
|
|
122
122
|
isProtected?: boolean | undefined;
|
|
123
123
|
}, {
|
|
124
|
-
name: string | null;
|
|
125
124
|
id: string;
|
|
126
|
-
|
|
125
|
+
name: string | null;
|
|
127
126
|
email: string;
|
|
127
|
+
region: "Worldwide" | "USOnly" | "UKOnly" | "All";
|
|
128
|
+
createdAt: number;
|
|
129
|
+
updatedAt: number;
|
|
128
130
|
password: string;
|
|
131
|
+
provider: "user-provided" | "lancer-provided";
|
|
129
132
|
isConnecting: boolean | null;
|
|
130
133
|
securityQuestionAnswer: string | null;
|
|
131
134
|
assignedOrganizations: string[];
|
|
@@ -135,17 +138,14 @@ export declare const bidderAccountSchema: z.ZodObject<{
|
|
|
135
138
|
profilePhotoUrl: string | null;
|
|
136
139
|
agencies: {
|
|
137
140
|
name: string;
|
|
141
|
+
organizationId: string;
|
|
138
142
|
logoUrl: string | null;
|
|
139
143
|
contractors: {
|
|
140
144
|
name: string;
|
|
141
145
|
specializedProfiles: string[];
|
|
142
146
|
}[];
|
|
143
|
-
organizationId: string;
|
|
144
147
|
}[] | null;
|
|
145
148
|
instanceId: string | null;
|
|
146
|
-
createdAt: number;
|
|
147
|
-
updatedAt: number;
|
|
148
|
-
region: "all" | "Worldwide" | "UKOnly" | "USOnly";
|
|
149
149
|
googleOauthTokens?: any;
|
|
150
150
|
isProtected?: boolean | undefined;
|
|
151
151
|
}>;
|
|
@@ -179,33 +179,34 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
179
179
|
organizationId: z.ZodString;
|
|
180
180
|
}, "strip", z.ZodTypeAny, {
|
|
181
181
|
name: string;
|
|
182
|
+
organizationId: string;
|
|
182
183
|
logoUrl: string | null;
|
|
183
184
|
contractors: {
|
|
184
185
|
name: string;
|
|
185
186
|
specializedProfiles: string[];
|
|
186
187
|
}[];
|
|
187
|
-
organizationId: string;
|
|
188
188
|
}, {
|
|
189
189
|
name: string;
|
|
190
|
+
organizationId: string;
|
|
190
191
|
logoUrl: string | null;
|
|
191
192
|
contractors: {
|
|
192
193
|
name: string;
|
|
193
194
|
specializedProfiles: string[];
|
|
194
195
|
}[];
|
|
195
|
-
organizationId: string;
|
|
196
196
|
}>, "many">>;
|
|
197
197
|
instanceId: z.ZodNullable<z.ZodString>;
|
|
198
198
|
createdAt: z.ZodNumber;
|
|
199
199
|
updatedAt: z.ZodNumber;
|
|
200
|
-
region: z.ZodEnum<["
|
|
200
|
+
region: z.ZodEnum<["Worldwide", "USOnly", "UKOnly", "All"]>;
|
|
201
201
|
isProtected: z.ZodOptional<z.ZodBoolean>;
|
|
202
|
-
}, "name" | "
|
|
202
|
+
}, "name" | "email" | "region" | "password" | "provider" | "securityQuestionAnswer" | "assignedOrganizations" | "multiLoginProfileId" | "proxyId" | "profilePhotoUrl" | "agencies">, {
|
|
203
203
|
proxyCountry: z.ZodNullable<z.ZodEnum<["US", "CA", "GB", "AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "AN", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SK", "SI", "SB", "SO", "ZA", "GS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"]>>;
|
|
204
204
|
}>, "strip", z.ZodTypeAny, {
|
|
205
205
|
name: string | null;
|
|
206
|
-
provider: "user-provided" | "lancer-provided";
|
|
207
206
|
email: string;
|
|
207
|
+
region: "Worldwide" | "USOnly" | "UKOnly" | "All";
|
|
208
208
|
password: string;
|
|
209
|
+
provider: "user-provided" | "lancer-provided";
|
|
209
210
|
securityQuestionAnswer: string | null;
|
|
210
211
|
assignedOrganizations: string[];
|
|
211
212
|
multiLoginProfileId: string | null;
|
|
@@ -213,20 +214,20 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
213
214
|
profilePhotoUrl: string | null;
|
|
214
215
|
agencies: {
|
|
215
216
|
name: string;
|
|
217
|
+
organizationId: string;
|
|
216
218
|
logoUrl: string | null;
|
|
217
219
|
contractors: {
|
|
218
220
|
name: string;
|
|
219
221
|
specializedProfiles: string[];
|
|
220
222
|
}[];
|
|
221
|
-
organizationId: string;
|
|
222
223
|
}[] | null;
|
|
223
|
-
region: "all" | "Worldwide" | "UKOnly" | "USOnly";
|
|
224
224
|
proxyCountry: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | null;
|
|
225
225
|
}, {
|
|
226
226
|
name: string | null;
|
|
227
|
-
provider: "user-provided" | "lancer-provided";
|
|
228
227
|
email: string;
|
|
228
|
+
region: "Worldwide" | "USOnly" | "UKOnly" | "All";
|
|
229
229
|
password: string;
|
|
230
|
+
provider: "user-provided" | "lancer-provided";
|
|
230
231
|
securityQuestionAnswer: string | null;
|
|
231
232
|
assignedOrganizations: string[];
|
|
232
233
|
multiLoginProfileId: string | null;
|
|
@@ -234,21 +235,23 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
234
235
|
profilePhotoUrl: string | null;
|
|
235
236
|
agencies: {
|
|
236
237
|
name: string;
|
|
238
|
+
organizationId: string;
|
|
237
239
|
logoUrl: string | null;
|
|
238
240
|
contractors: {
|
|
239
241
|
name: string;
|
|
240
242
|
specializedProfiles: string[];
|
|
241
243
|
}[];
|
|
242
|
-
organizationId: string;
|
|
243
244
|
}[] | null;
|
|
244
|
-
region: "all" | "Worldwide" | "UKOnly" | "USOnly";
|
|
245
245
|
proxyCountry: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | null;
|
|
246
246
|
}>;
|
|
247
247
|
export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
248
248
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
249
|
-
provider: z.ZodOptional<z.ZodEnum<["user-provided", "lancer-provided"]>>;
|
|
250
249
|
email: z.ZodOptional<z.ZodString>;
|
|
250
|
+
region: z.ZodOptional<z.ZodEnum<["Worldwide", "USOnly", "UKOnly", "All"]>>;
|
|
251
|
+
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
252
|
+
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
251
253
|
password: z.ZodOptional<z.ZodString>;
|
|
254
|
+
provider: z.ZodOptional<z.ZodEnum<["user-provided", "lancer-provided"]>>;
|
|
252
255
|
isConnecting: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
253
256
|
securityQuestionAnswer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
254
257
|
assignedOrganizations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -273,31 +276,31 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
|
273
276
|
organizationId: z.ZodString;
|
|
274
277
|
}, "strip", z.ZodTypeAny, {
|
|
275
278
|
name: string;
|
|
279
|
+
organizationId: string;
|
|
276
280
|
logoUrl: string | null;
|
|
277
281
|
contractors: {
|
|
278
282
|
name: string;
|
|
279
283
|
specializedProfiles: string[];
|
|
280
284
|
}[];
|
|
281
|
-
organizationId: string;
|
|
282
285
|
}, {
|
|
283
286
|
name: string;
|
|
287
|
+
organizationId: string;
|
|
284
288
|
logoUrl: string | null;
|
|
285
289
|
contractors: {
|
|
286
290
|
name: string;
|
|
287
291
|
specializedProfiles: string[];
|
|
288
292
|
}[];
|
|
289
|
-
organizationId: string;
|
|
290
293
|
}>, "many">>>;
|
|
291
294
|
instanceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
292
|
-
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
293
|
-
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
294
|
-
region: z.ZodOptional<z.ZodEnum<["all", "Worldwide", "UKOnly", "USOnly"]>>;
|
|
295
295
|
isProtected: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
296
296
|
}, "strip", z.ZodTypeAny, {
|
|
297
297
|
name?: string | null | undefined;
|
|
298
|
-
provider?: "user-provided" | "lancer-provided" | undefined;
|
|
299
298
|
email?: string | undefined;
|
|
299
|
+
region?: "Worldwide" | "USOnly" | "UKOnly" | "All" | undefined;
|
|
300
|
+
createdAt?: number | undefined;
|
|
301
|
+
updatedAt?: number | undefined;
|
|
300
302
|
password?: string | undefined;
|
|
303
|
+
provider?: "user-provided" | "lancer-provided" | undefined;
|
|
301
304
|
isConnecting?: boolean | null | undefined;
|
|
302
305
|
securityQuestionAnswer?: string | null | undefined;
|
|
303
306
|
assignedOrganizations?: string[] | undefined;
|
|
@@ -308,23 +311,23 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
|
308
311
|
profilePhotoUrl?: string | null | undefined;
|
|
309
312
|
agencies?: {
|
|
310
313
|
name: string;
|
|
314
|
+
organizationId: string;
|
|
311
315
|
logoUrl: string | null;
|
|
312
316
|
contractors: {
|
|
313
317
|
name: string;
|
|
314
318
|
specializedProfiles: string[];
|
|
315
319
|
}[];
|
|
316
|
-
organizationId: string;
|
|
317
320
|
}[] | null | undefined;
|
|
318
321
|
instanceId?: string | null | undefined;
|
|
319
|
-
createdAt?: number | undefined;
|
|
320
|
-
updatedAt?: number | undefined;
|
|
321
|
-
region?: "all" | "Worldwide" | "UKOnly" | "USOnly" | undefined;
|
|
322
322
|
isProtected?: boolean | undefined;
|
|
323
323
|
}, {
|
|
324
324
|
name?: string | null | undefined;
|
|
325
|
-
provider?: "user-provided" | "lancer-provided" | undefined;
|
|
326
325
|
email?: string | undefined;
|
|
326
|
+
region?: "Worldwide" | "USOnly" | "UKOnly" | "All" | undefined;
|
|
327
|
+
createdAt?: number | undefined;
|
|
328
|
+
updatedAt?: number | undefined;
|
|
327
329
|
password?: string | undefined;
|
|
330
|
+
provider?: "user-provided" | "lancer-provided" | undefined;
|
|
328
331
|
isConnecting?: boolean | null | undefined;
|
|
329
332
|
securityQuestionAnswer?: string | null | undefined;
|
|
330
333
|
assignedOrganizations?: string[] | undefined;
|
|
@@ -335,17 +338,14 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
|
335
338
|
profilePhotoUrl?: string | null | undefined;
|
|
336
339
|
agencies?: {
|
|
337
340
|
name: string;
|
|
341
|
+
organizationId: string;
|
|
338
342
|
logoUrl: string | null;
|
|
339
343
|
contractors: {
|
|
340
344
|
name: string;
|
|
341
345
|
specializedProfiles: string[];
|
|
342
346
|
}[];
|
|
343
|
-
organizationId: string;
|
|
344
347
|
}[] | null | undefined;
|
|
345
348
|
instanceId?: string | null | undefined;
|
|
346
|
-
createdAt?: number | undefined;
|
|
347
|
-
updatedAt?: number | undefined;
|
|
348
|
-
region?: "all" | "Worldwide" | "UKOnly" | "USOnly" | undefined;
|
|
349
349
|
isProtected?: boolean | undefined;
|
|
350
350
|
}>;
|
|
351
351
|
export declare const verifyBidderAccountCredentialsSchema: z.ZodObject<{
|
|
@@ -368,32 +368,32 @@ export declare const verifyBidderAccountCredentialsSchema: z.ZodObject<{
|
|
|
368
368
|
accountId: z.ZodNullable<z.ZodString>;
|
|
369
369
|
type: z.ZodEnum<["rotating", "static"]>;
|
|
370
370
|
}, "strip", z.ZodTypeAny, {
|
|
371
|
-
status: "valid" | "invalid" | "pending_validation" | null;
|
|
372
371
|
type: "rotating" | "static";
|
|
373
372
|
id: string;
|
|
374
|
-
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
375
|
-
password: string;
|
|
376
|
-
externalId: string;
|
|
377
|
-
host: string;
|
|
378
373
|
port: number;
|
|
374
|
+
country: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | null;
|
|
379
375
|
username: string;
|
|
376
|
+
host: string;
|
|
377
|
+
status: "invalid" | "valid" | "pending_validation" | null;
|
|
378
|
+
externalId: string;
|
|
379
|
+
password: string;
|
|
380
|
+
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
380
381
|
fraudScore: number | null;
|
|
381
382
|
claimedCountry: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW";
|
|
382
|
-
country: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | null;
|
|
383
383
|
accountId: string | null;
|
|
384
384
|
}, {
|
|
385
|
-
status: "valid" | "invalid" | "pending_validation" | null;
|
|
386
385
|
type: "rotating" | "static";
|
|
387
386
|
id: string;
|
|
388
|
-
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
389
|
-
password: string;
|
|
390
|
-
externalId: string;
|
|
391
|
-
host: string;
|
|
392
387
|
port: number;
|
|
388
|
+
country: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | null;
|
|
393
389
|
username: string;
|
|
390
|
+
host: string;
|
|
391
|
+
status: "invalid" | "valid" | "pending_validation" | null;
|
|
392
|
+
externalId: string;
|
|
393
|
+
password: string;
|
|
394
|
+
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
394
395
|
fraudScore: number | null;
|
|
395
396
|
claimedCountry: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW";
|
|
396
|
-
country: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | null;
|
|
397
397
|
accountId: string | null;
|
|
398
398
|
}>;
|
|
399
399
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -402,18 +402,18 @@ export declare const verifyBidderAccountCredentialsSchema: z.ZodObject<{
|
|
|
402
402
|
securityQuestionAnswer: string;
|
|
403
403
|
multiloginProfileId: string;
|
|
404
404
|
proxy: {
|
|
405
|
-
status: "valid" | "invalid" | "pending_validation" | null;
|
|
406
405
|
type: "rotating" | "static";
|
|
407
406
|
id: string;
|
|
408
|
-
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
409
|
-
password: string;
|
|
410
|
-
externalId: string;
|
|
411
|
-
host: string;
|
|
412
407
|
port: number;
|
|
408
|
+
country: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | null;
|
|
413
409
|
username: string;
|
|
410
|
+
host: string;
|
|
411
|
+
status: "invalid" | "valid" | "pending_validation" | null;
|
|
412
|
+
externalId: string;
|
|
413
|
+
password: string;
|
|
414
|
+
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
414
415
|
fraudScore: number | null;
|
|
415
416
|
claimedCountry: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW";
|
|
416
|
-
country: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | null;
|
|
417
417
|
accountId: string | null;
|
|
418
418
|
};
|
|
419
419
|
}, {
|
|
@@ -422,18 +422,18 @@ export declare const verifyBidderAccountCredentialsSchema: z.ZodObject<{
|
|
|
422
422
|
securityQuestionAnswer: string;
|
|
423
423
|
multiloginProfileId: string;
|
|
424
424
|
proxy: {
|
|
425
|
-
status: "valid" | "invalid" | "pending_validation" | null;
|
|
426
425
|
type: "rotating" | "static";
|
|
427
426
|
id: string;
|
|
428
|
-
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
429
|
-
password: string;
|
|
430
|
-
externalId: string;
|
|
431
|
-
host: string;
|
|
432
427
|
port: number;
|
|
428
|
+
country: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | null;
|
|
433
429
|
username: string;
|
|
430
|
+
host: string;
|
|
431
|
+
status: "invalid" | "valid" | "pending_validation" | null;
|
|
432
|
+
externalId: string;
|
|
433
|
+
password: string;
|
|
434
|
+
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
434
435
|
fraudScore: number | null;
|
|
435
436
|
claimedCountry: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW";
|
|
436
|
-
country: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | null;
|
|
437
437
|
accountId: string | null;
|
|
438
438
|
};
|
|
439
439
|
}>;
|
|
@@ -456,42 +456,42 @@ export declare const verifyBidderAccountCredentialsResponseSchema: z.ZodObject<{
|
|
|
456
456
|
organizationId: z.ZodString;
|
|
457
457
|
}, "strip", z.ZodTypeAny, {
|
|
458
458
|
name: string;
|
|
459
|
+
organizationId: string;
|
|
459
460
|
logoUrl: string | null;
|
|
460
461
|
contractors: {
|
|
461
462
|
name: string;
|
|
462
463
|
specializedProfiles: string[];
|
|
463
464
|
}[];
|
|
464
|
-
organizationId: string;
|
|
465
465
|
}, {
|
|
466
466
|
name: string;
|
|
467
|
+
organizationId: string;
|
|
467
468
|
logoUrl: string | null;
|
|
468
469
|
contractors: {
|
|
469
470
|
name: string;
|
|
470
471
|
specializedProfiles: string[];
|
|
471
472
|
}[];
|
|
472
|
-
organizationId: string;
|
|
473
473
|
}>, "many">>;
|
|
474
474
|
}, "strip", z.ZodTypeAny, {
|
|
475
475
|
agencies: {
|
|
476
476
|
name: string;
|
|
477
|
+
organizationId: string;
|
|
477
478
|
logoUrl: string | null;
|
|
478
479
|
contractors: {
|
|
479
480
|
name: string;
|
|
480
481
|
specializedProfiles: string[];
|
|
481
482
|
}[];
|
|
482
|
-
organizationId: string;
|
|
483
483
|
}[] | null;
|
|
484
484
|
accountName: string | null;
|
|
485
485
|
accountPhotoUrl: string | null;
|
|
486
486
|
}, {
|
|
487
487
|
agencies: {
|
|
488
488
|
name: string;
|
|
489
|
+
organizationId: string;
|
|
489
490
|
logoUrl: string | null;
|
|
490
491
|
contractors: {
|
|
491
492
|
name: string;
|
|
492
493
|
specializedProfiles: string[];
|
|
493
494
|
}[];
|
|
494
|
-
organizationId: string;
|
|
495
495
|
}[] | null;
|
|
496
496
|
accountName: string | null;
|
|
497
497
|
accountPhotoUrl: string | null;
|
|
@@ -517,19 +517,19 @@ export declare const acceptUpworkInvitationResponseSchema: z.ZodObject<{
|
|
|
517
517
|
specializedProfiles: string[];
|
|
518
518
|
}>, "many">;
|
|
519
519
|
}, "strip", z.ZodTypeAny, {
|
|
520
|
+
photoUrl: string;
|
|
520
521
|
contractors: {
|
|
521
522
|
name: string;
|
|
522
523
|
specializedProfiles: string[];
|
|
523
524
|
}[];
|
|
524
525
|
agencyName: string;
|
|
525
|
-
photoUrl: string;
|
|
526
526
|
}, {
|
|
527
|
+
photoUrl: string;
|
|
527
528
|
contractors: {
|
|
528
529
|
name: string;
|
|
529
530
|
specializedProfiles: string[];
|
|
530
531
|
}[];
|
|
531
532
|
agencyName: string;
|
|
532
|
-
photoUrl: string;
|
|
533
533
|
}>;
|
|
534
534
|
export declare const reconnectBidderAccountRequestBodySchema: z.ZodObject<{
|
|
535
535
|
organizationId: z.ZodString;
|
|
@@ -555,19 +555,19 @@ export declare const reconnectBidderAccountResponseSchema: z.ZodObject<{
|
|
|
555
555
|
specializedProfiles: string[];
|
|
556
556
|
}>, "many">;
|
|
557
557
|
}, "strip", z.ZodTypeAny, {
|
|
558
|
+
photoUrl: string;
|
|
558
559
|
contractors: {
|
|
559
560
|
name: string;
|
|
560
561
|
specializedProfiles: string[];
|
|
561
562
|
}[];
|
|
562
563
|
agencyName: string;
|
|
563
|
-
photoUrl: string;
|
|
564
564
|
}, {
|
|
565
|
+
photoUrl: string;
|
|
565
566
|
contractors: {
|
|
566
567
|
name: string;
|
|
567
568
|
specializedProfiles: string[];
|
|
568
569
|
}[];
|
|
569
570
|
agencyName: string;
|
|
570
|
-
photoUrl: string;
|
|
571
571
|
}>;
|
|
572
572
|
export interface BidderAccount extends z.infer<typeof bidderAccountSchema> {
|
|
573
573
|
proxy?: Proxy;
|