lancer-shared 1.2.112 → 1.2.113
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 +106 -104
- package/dist/constants/account-status.d.ts +3 -0
- package/dist/constants/account-status.js +17 -0
- package/dist/constants/collections.js +13 -11
- package/dist/constants/common-questions.js +4 -1
- package/dist/constants/index.js +32 -10
- package/dist/constants/job-filter-options.js +4 -1
- package/dist/constants/job-status.js +12 -7
- package/dist/constants/mappings/countryMapping.js +3 -1
- package/dist/constants/mappings/regionMapping.js +3 -1
- package/dist/constants/routes.js +35 -43
- package/dist/constants/upwork-accounts.js +6 -3
- package/dist/index.js +20 -4
- package/dist/schemas/account/account-status.js +5 -2
- package/dist/schemas/account/bidder-account.d.ts +10 -1
- package/dist/schemas/account/bidder-account.js +24 -22
- package/dist/schemas/account/index.js +19 -3
- package/dist/schemas/account/manager-account.d.ts +116 -0
- package/dist/schemas/account/manager-account.js +38 -0
- package/dist/schemas/account/scraper-account.js +24 -21
- package/dist/schemas/ai/ai-config.js +11 -8
- package/dist/schemas/ai/index.js +19 -3
- package/dist/schemas/ai/proposal.js +13 -10
- package/dist/schemas/ai/suitability.js +11 -8
- package/dist/schemas/bid/bid-result.js +13 -9
- package/dist/schemas/bid/bid.js +30 -29
- package/dist/schemas/bid/index.js +18 -2
- package/dist/schemas/bidding/index.d.ts +1 -0
- package/dist/schemas/bidding/index.js +17 -0
- package/dist/schemas/bidding/proposal-bidding-status.d.ts +26 -0
- package/dist/schemas/bidding/proposal-bidding-status.js +18 -0
- package/dist/schemas/campaign/campaign-ai-metrics.js +8 -5
- package/dist/schemas/campaign/campaign-analytics.js +31 -32
- package/dist/schemas/campaign/campaign-expenses.js +8 -5
- package/dist/schemas/campaign/campaign-insights.js +30 -30
- package/dist/schemas/campaign/campaign-integrations.js +13 -10
- package/dist/schemas/campaign/campaign-job-count.js +6 -3
- package/dist/schemas/campaign/campaign.js +35 -32
- package/dist/schemas/campaign/index.js +23 -7
- package/dist/schemas/chat-message/chat-message.js +10 -7
- package/dist/schemas/chat-message/index.js +17 -1
- package/dist/schemas/config/agency-config.js +9 -6
- package/dist/schemas/config/index.js +17 -1
- package/dist/schemas/index.js +32 -17
- package/dist/schemas/job/index.js +19 -0
- package/dist/schemas/job/job-details.d.ts +335 -0
- package/dist/schemas/job/job-details.js +29 -0
- package/dist/schemas/job/job-note.d.ts +83 -0
- package/dist/schemas/job/job-note.js +30 -0
- package/dist/schemas/job/job-status.d.ts +3 -0
- package/dist/schemas/job/job-status.js +27 -0
- package/dist/schemas/job/job.d.ts +1160 -0
- package/dist/schemas/job/job.js +90 -0
- package/dist/schemas/job/pipeline-job.d.ts +602 -0
- package/dist/schemas/job/pipeline-job.js +42 -0
- package/dist/schemas/job/upwork-job.d.ts +334 -0
- package/dist/schemas/job/upwork-job.js +60 -0
- package/dist/schemas/job-filters/index.js +17 -1
- package/dist/schemas/job-filters/job-filters.js +65 -62
- package/dist/schemas/lead/index.js +19 -173
- package/dist/schemas/lead/lead-note.js +16 -13
- package/dist/schemas/lead/lead-status.js +6 -3
- package/dist/schemas/lead/lead.d.ts +1897 -0
- package/dist/schemas/lead/lead.js +143 -0
- package/dist/schemas/logger/index.js +17 -1
- package/dist/schemas/logger/log-event.js +49 -100
- package/dist/schemas/organization/index.js +17 -70
- package/dist/schemas/organization/organization.d.ts +7 -177
- package/dist/schemas/organization/organization.js +17 -14
- package/dist/schemas/proxy/index.js +17 -3
- package/dist/schemas/proxy/proxy.js +17 -25
- package/dist/schemas/saved-search/index.js +11 -8
- package/dist/schemas/scraper/index.js +18 -2
- package/dist/schemas/scraper/scrape-payload.js +14 -19
- package/dist/schemas/scraper/scrape-result.js +21 -21
- package/dist/schemas/shared.js +9 -12
- package/dist/schemas/time-filter/index.js +8 -5
- package/dist/schemas/upwork-account/index.d.ts +3 -0
- package/dist/schemas/upwork-account/index.js +19 -0
- package/dist/schemas/upwork-account/upwork-account-status.d.ts +2 -0
- package/dist/schemas/upwork-account/upwork-account-status.js +11 -0
- package/dist/schemas/upwork-account/upwork-business-manager-account.d.ts +95 -0
- package/dist/schemas/upwork-account/upwork-business-manager-account.js +35 -0
- package/dist/schemas/upwork-account/upwork-scraping-account.d.ts +90 -0
- package/dist/schemas/upwork-account/upwork-scraping-account.js +29 -0
- package/dist/schemas/user/index.js +41 -38
- package/dist/types/account/account-status.js +2 -1
- package/dist/types/account/bidder-account.js +2 -1
- package/dist/types/account/index.js +19 -3
- package/dist/types/account/manager-account.d.ts +7 -0
- package/dist/types/account/manager-account.js +2 -0
- package/dist/types/account/scraper-account.js +2 -1
- package/dist/types/ai/ai-config.js +2 -1
- package/dist/types/ai/index.js +19 -3
- package/dist/types/ai/proposal.js +2 -1
- package/dist/types/ai/suitability.js +2 -1
- package/dist/types/bid/bid-result.js +2 -1
- package/dist/types/bid/bid.js +2 -1
- package/dist/types/bid/index.js +18 -2
- package/dist/types/bidding/index.d.ts +1 -0
- package/dist/types/bidding/index.js +17 -0
- package/dist/types/bidding/proposal-bidding-status.d.ts +3 -0
- package/dist/types/bidding/proposal-bidding-status.js +2 -0
- package/dist/types/campaign/campaign-analytics.js +2 -1
- package/dist/types/campaign/campaign-expenses.js +2 -1
- package/dist/types/campaign/campaign-insights.js +2 -1
- package/dist/types/campaign/campaign-integrations.js +2 -1
- package/dist/types/campaign/campaign-job-count.js +2 -1
- package/dist/types/campaign/campaign.js +2 -1
- package/dist/types/campaign/index.js +22 -6
- package/dist/types/chat-message/chat-message.js +2 -1
- package/dist/types/chat-message/index.js +17 -1
- package/dist/types/config/agency-config.js +2 -1
- package/dist/types/config/index.js +17 -1
- package/dist/types/index.js +29 -15
- package/dist/types/job/index.js +19 -3
- package/dist/types/job/job-details.d.ts +36 -0
- package/dist/types/job/job-details.js +2 -0
- package/dist/types/job/job-note.js +2 -1
- package/dist/types/job/job-status.js +4 -1
- package/dist/types/job/job.d.ts +36 -0
- package/dist/types/job/job.js +2 -0
- package/dist/types/job-filters/index.js +17 -1
- package/dist/types/job-filters/job-filters.js +2 -1
- package/dist/types/logger/index.js +17 -1
- package/dist/types/logger/log-event.js +2 -1
- package/dist/types/saved-search/index.js +2 -1
- package/dist/types/scraper/index.js +18 -2
- package/dist/types/scraper/scrape-payload.js +2 -1
- package/dist/types/scraper/scrape-result.js +2 -1
- package/dist/types/time-filter/index.js +2 -1
- package/dist/types/upwork-account/index.d.ts +3 -0
- package/dist/types/upwork-account/index.js +19 -0
- package/dist/types/upwork-account/upwork-account-status.d.ts +3 -0
- package/dist/types/upwork-account/upwork-account-status.js +2 -0
- package/dist/types/upwork-account/upwork-business-manager-account.d.ts +7 -0
- package/dist/types/upwork-account/upwork-business-manager-account.js +2 -0
- package/dist/types/upwork-account/upwork-scraping-account.d.ts +5 -0
- package/dist/types/upwork-account/upwork-scraping-account.js +2 -0
- package/dist/types/user/index.js +2 -1
- package/dist/utils/index.js +17 -1
- package/dist/utils/try-catch.js +23 -8
- package/package.json +1 -1
- package/dist/schemas/event/index.d.ts +0 -58
- package/dist/schemas/job/haha.json +0 -581
- package/dist/schemas/lead/nuxt.js +0 -287
- package/dist/schemas/meter-event/index.d.ts +0 -12
- package/dist/schemas/organization/member.js +0 -7
- package/dist/schemas/organization/subscription.js +0 -17
- package/dist/schemas/proxy/proxy-available-replacements.js +0 -3
- package/dist/schemas/proxy/proxy-country.js +0 -249
- package/dist/schemas/tier/index.d.ts +0 -119
- package/dist/schemas/transaction/index.js +0 -17
- package/dist/schemas/usage/index.js +0 -18
- package/dist/types/job/nuxt.js +0 -1
- package/dist/types/shared.js +0 -1
- package/dist/types/transaction/index.js +0 -1
- package/dist/types/usage/index.js +0 -1
|
@@ -1,581 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"cache": true,
|
|
3
|
-
"job": {
|
|
4
|
-
"status": 1,
|
|
5
|
-
"category": {
|
|
6
|
-
"name": "Art & Illustration",
|
|
7
|
-
"urlSlug": "art-illustration"
|
|
8
|
-
},
|
|
9
|
-
"categoryGroup": {
|
|
10
|
-
"name": "Design & Creative",
|
|
11
|
-
"urlSlug": "design-creative"
|
|
12
|
-
},
|
|
13
|
-
"budget": {
|
|
14
|
-
"amount": 350,
|
|
15
|
-
"currencyCode": "USD"
|
|
16
|
-
},
|
|
17
|
-
"postedOn": "2025-05-29T20:54:47.454Z",
|
|
18
|
-
"publishTime": "2025-05-29T20:54:48.366Z",
|
|
19
|
-
"wasRenewed": false,
|
|
20
|
-
"startDate": null,
|
|
21
|
-
"deliveryDate": null,
|
|
22
|
-
"workload": null,
|
|
23
|
-
"engagementDuration": {
|
|
24
|
-
"label": "1 to 3 months",
|
|
25
|
-
"weeks": 9
|
|
26
|
-
},
|
|
27
|
-
"extendedBudgetInfo": {
|
|
28
|
-
"hourlyBudgetMin": null,
|
|
29
|
-
"hourlyBudgetMax": null,
|
|
30
|
-
"hourlyBudgetType": null
|
|
31
|
-
},
|
|
32
|
-
"contractorTier": 1,
|
|
33
|
-
"description": "I am looking for somebody to design seven illustrations, one for each story in my children’s collection. I like the style of the pictures in Arnold Lobel’s Frog and Toad series.\n\nTo start immediately",
|
|
34
|
-
"segmentationData": [
|
|
35
|
-
{
|
|
36
|
-
"customValue": null,
|
|
37
|
-
"label": "Ongoing project",
|
|
38
|
-
"name": "Employment",
|
|
39
|
-
"sortOrder": 1,
|
|
40
|
-
"type": "EMPLOYMENT",
|
|
41
|
-
"value": "EMPLOYMENT_POSITION",
|
|
42
|
-
"skill": null
|
|
43
|
-
}
|
|
44
|
-
],
|
|
45
|
-
"clientActivity": {
|
|
46
|
-
"lastBuyerActivity": "2025-05-29T21:10:48.948Z",
|
|
47
|
-
"totalApplicants": 16,
|
|
48
|
-
"totalHired": 0,
|
|
49
|
-
"totalInvitedToInterview": 0,
|
|
50
|
-
"unansweredInvites": 0,
|
|
51
|
-
"invitationsSent": 0,
|
|
52
|
-
"numberOfPositionsToHire": 1
|
|
53
|
-
},
|
|
54
|
-
"annotations": {
|
|
55
|
-
"tags": [
|
|
56
|
-
"contractToHireSet",
|
|
57
|
-
"searchable",
|
|
58
|
-
"C2HJobsOptInEducation"
|
|
59
|
-
]
|
|
60
|
-
},
|
|
61
|
-
"uid": "1928193323984039900",
|
|
62
|
-
"title": "Children’s book illustrator",
|
|
63
|
-
"type": 1,
|
|
64
|
-
"ciphertext": "~021928193323984039900",
|
|
65
|
-
"access": 4,
|
|
66
|
-
"createdOn": "2025-05-29T20:54:47.454Z",
|
|
67
|
-
"hideBudget": false,
|
|
68
|
-
"notSureProjectDuration": false,
|
|
69
|
-
"notSureFreelancersToHire": false,
|
|
70
|
-
"notSureExperienceLevel": false,
|
|
71
|
-
"numberOfPositionsToHire": 1,
|
|
72
|
-
"isContractToHire": false,
|
|
73
|
-
"deliverables": null,
|
|
74
|
-
"deadline": null,
|
|
75
|
-
"tools": [],
|
|
76
|
-
"attachments": [],
|
|
77
|
-
"isPremium": false,
|
|
78
|
-
"qualifications": {
|
|
79
|
-
"countries": null,
|
|
80
|
-
"earnings": null,
|
|
81
|
-
"groupRecno": null,
|
|
82
|
-
"languages": null,
|
|
83
|
-
"localDescription": null,
|
|
84
|
-
"localFlexibilityDescription": null,
|
|
85
|
-
"localMarket": true,
|
|
86
|
-
"minJobSuccessScore": 90,
|
|
87
|
-
"minOdeskHours": 0,
|
|
88
|
-
"onSiteType": null,
|
|
89
|
-
"prefEnglishSkill": 0,
|
|
90
|
-
"regions": null,
|
|
91
|
-
"risingTalent": true,
|
|
92
|
-
"shouldHavePortfolio": false,
|
|
93
|
-
"states": null,
|
|
94
|
-
"tests": null,
|
|
95
|
-
"timezones": null,
|
|
96
|
-
"type": 1,
|
|
97
|
-
"locationCheckRequired": false,
|
|
98
|
-
"group": null,
|
|
99
|
-
"location": null,
|
|
100
|
-
"locations": null
|
|
101
|
-
},
|
|
102
|
-
"questions": [],
|
|
103
|
-
"durationIdV3": 2,
|
|
104
|
-
"durationLabel": "1 to 3 months"
|
|
105
|
-
},
|
|
106
|
-
"buyer": {
|
|
107
|
-
"isEnterprise": false,
|
|
108
|
-
"isPaymentMethodVerified": true,
|
|
109
|
-
"stats": {
|
|
110
|
-
"totalAssignments": 8,
|
|
111
|
-
"activeAssignmentsCount": 1,
|
|
112
|
-
"hoursCount": 0,
|
|
113
|
-
"feedbackCount": 7,
|
|
114
|
-
"score": 5,
|
|
115
|
-
"totalJobsWithHires": 8,
|
|
116
|
-
"totalCharges": {
|
|
117
|
-
"amount": 2349
|
|
118
|
-
}
|
|
119
|
-
},
|
|
120
|
-
"location": {
|
|
121
|
-
"offsetFromUtcMillis": -10800000,
|
|
122
|
-
"countryTimezone": "America/Sao_Paulo (UTC-03:00)",
|
|
123
|
-
"city": "WORCESTER",
|
|
124
|
-
"country": "United States"
|
|
125
|
-
},
|
|
126
|
-
"company": {
|
|
127
|
-
"isEDCReplicated": null,
|
|
128
|
-
"contractDate": "2020-08-11T00:00:00.000Z",
|
|
129
|
-
"profile": {
|
|
130
|
-
"industry": "Media & Entertainment",
|
|
131
|
-
"size": 1
|
|
132
|
-
},
|
|
133
|
-
"name": null
|
|
134
|
-
},
|
|
135
|
-
"jobs": {
|
|
136
|
-
"postedCount": 8,
|
|
137
|
-
"openCount": 1
|
|
138
|
-
},
|
|
139
|
-
"avgHourlyJobsRate": null
|
|
140
|
-
},
|
|
141
|
-
"currentUserInfo": {
|
|
142
|
-
"owner": false,
|
|
143
|
-
"freelancerInfo": {
|
|
144
|
-
"profileState": "AUTO_ACCEPTED",
|
|
145
|
-
"applied": null,
|
|
146
|
-
"devProfileCiphertext": "~0181ff8dedd0f43dc3",
|
|
147
|
-
"hired": null,
|
|
148
|
-
"application": {},
|
|
149
|
-
"pendingInvite": {},
|
|
150
|
-
"contract": null,
|
|
151
|
-
"hourlyRate": {
|
|
152
|
-
"amount": 20
|
|
153
|
-
},
|
|
154
|
-
"qualificationsMatches": {
|
|
155
|
-
"matches": [
|
|
156
|
-
{
|
|
157
|
-
"clientPreferred": "individuals",
|
|
158
|
-
"clientPreferredLabel": "Freelancers only",
|
|
159
|
-
"freelancerValue": "IC",
|
|
160
|
-
"freelancerValueLabel": "Not Specified",
|
|
161
|
-
"qualification": 0,
|
|
162
|
-
"qualified": true
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
"clientPreferred": "90",
|
|
166
|
-
"clientPreferredLabel": "At least 90%",
|
|
167
|
-
"freelancerValue": "0",
|
|
168
|
-
"freelancerValueLabel": "0%",
|
|
169
|
-
"qualification": 6,
|
|
170
|
-
"qualified": false
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"clientPreferred": "0",
|
|
174
|
-
"clientPreferredLabel": "Any",
|
|
175
|
-
"freelancerValue": "1",
|
|
176
|
-
"freelancerValueLabel": "Basic",
|
|
177
|
-
"qualification": 4,
|
|
178
|
-
"qualified": true
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
"clientPreferred": "true",
|
|
182
|
-
"clientPreferredLabel": "yes",
|
|
183
|
-
"freelancerValue": "false",
|
|
184
|
-
"freelancerValueLabel": "no",
|
|
185
|
-
"qualification": 7,
|
|
186
|
-
"qualified": false
|
|
187
|
-
},
|
|
188
|
-
{
|
|
189
|
-
"clientPreferred": "0",
|
|
190
|
-
"clientPreferredLabel": "At least 0 hours",
|
|
191
|
-
"freelancerValue": "0",
|
|
192
|
-
"freelancerValueLabel": "0",
|
|
193
|
-
"qualification": 2,
|
|
194
|
-
"qualified": true
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
"clientPreferred": "ANY",
|
|
198
|
-
"clientPreferredLabel": "Any",
|
|
199
|
-
"freelancerValue": "0.00",
|
|
200
|
-
"freelancerValueLabel": "0.00",
|
|
201
|
-
"qualification": 8,
|
|
202
|
-
"qualified": true
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
"clientPreferred": "Any",
|
|
206
|
-
"clientPreferredLabel": null,
|
|
207
|
-
"freelancerValue": "en",
|
|
208
|
-
"freelancerValueLabel": "English",
|
|
209
|
-
"qualification": 10,
|
|
210
|
-
"qualified": true
|
|
211
|
-
}
|
|
212
|
-
]
|
|
213
|
-
}
|
|
214
|
-
}
|
|
215
|
-
},
|
|
216
|
-
"isVisitor": false,
|
|
217
|
-
"openJobs": [],
|
|
218
|
-
"workHistory": [
|
|
219
|
-
{
|
|
220
|
-
"isPtcJob": false,
|
|
221
|
-
"status": "ACTIVE",
|
|
222
|
-
"isEDCReplicated": null,
|
|
223
|
-
"startDate": "2022-07-07T18:54:58.000Z",
|
|
224
|
-
"endDate": null,
|
|
225
|
-
"totalCharge": 400,
|
|
226
|
-
"totalHours": 0,
|
|
227
|
-
"jobInfo": {
|
|
228
|
-
"title": "Picture book illustrator",
|
|
229
|
-
"id": "1537462633963122688",
|
|
230
|
-
"uid": "1537462633963122688",
|
|
231
|
-
"access": 4,
|
|
232
|
-
"type": 1,
|
|
233
|
-
"ciphertext": "~0161515da3a61c1da1"
|
|
234
|
-
},
|
|
235
|
-
"contractorInfo": {
|
|
236
|
-
"contractorName": "Nur Efsan T.",
|
|
237
|
-
"accessType": "PUBLIC_INDEX",
|
|
238
|
-
"ciphertext": "~01187d4af5f44041ae"
|
|
239
|
-
},
|
|
240
|
-
"rate": null,
|
|
241
|
-
"feedback": null,
|
|
242
|
-
"feedbackToClient": null,
|
|
243
|
-
"isEDCPublic": true
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"isPtcJob": null,
|
|
247
|
-
"status": null,
|
|
248
|
-
"isEDCReplicated": null,
|
|
249
|
-
"startDate": "2023-09-19T03:08:36.000Z",
|
|
250
|
-
"endDate": "2023-12-23T00:37:34.000Z",
|
|
251
|
-
"totalCharge": 800,
|
|
252
|
-
"totalHours": 0,
|
|
253
|
-
"jobInfo": {
|
|
254
|
-
"title": "Illustration and layout",
|
|
255
|
-
"id": null,
|
|
256
|
-
"uid": null,
|
|
257
|
-
"access": 2,
|
|
258
|
-
"type": 1,
|
|
259
|
-
"ciphertext": null
|
|
260
|
-
},
|
|
261
|
-
"contractorInfo": {
|
|
262
|
-
"contractorName": "Mohammed M.",
|
|
263
|
-
"accessType": "PUBLIC_INDEX",
|
|
264
|
-
"ciphertext": "~014ed764e8f58bea7f"
|
|
265
|
-
},
|
|
266
|
-
"rate": null,
|
|
267
|
-
"feedback": {
|
|
268
|
-
"feedbackSuppressed": false,
|
|
269
|
-
"score": 4.85,
|
|
270
|
-
"comment": "Mohammed is a very creative and talented illustrator. He took feedback well and didn't rest until the job was done to my satisfaction. I love the end result!",
|
|
271
|
-
"feedback_suppressed": false
|
|
272
|
-
},
|
|
273
|
-
"feedbackToClient": {
|
|
274
|
-
"feedbackSuppressed": false,
|
|
275
|
-
"score": 5,
|
|
276
|
-
"comment": "",
|
|
277
|
-
"feedback_suppressed": false
|
|
278
|
-
},
|
|
279
|
-
"isEDCPublic": true
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
"isPtcJob": false,
|
|
283
|
-
"status": "CLOSED",
|
|
284
|
-
"isEDCReplicated": null,
|
|
285
|
-
"startDate": "2020-12-15T19:57:56.000Z",
|
|
286
|
-
"endDate": "2021-01-13T21:11:27.000Z",
|
|
287
|
-
"totalCharge": 299,
|
|
288
|
-
"totalHours": 0,
|
|
289
|
-
"jobInfo": {
|
|
290
|
-
"title": "Facebook advertising",
|
|
291
|
-
"id": "1336695541092941824",
|
|
292
|
-
"uid": "1336695541092941824",
|
|
293
|
-
"access": 1,
|
|
294
|
-
"type": 1,
|
|
295
|
-
"ciphertext": "~01e8661afbe5efe325"
|
|
296
|
-
},
|
|
297
|
-
"contractorInfo": {
|
|
298
|
-
"contractorName": "Gustavo C.",
|
|
299
|
-
"accessType": "PUBLIC_INDEX",
|
|
300
|
-
"ciphertext": "~01e4535aba058f1d46"
|
|
301
|
-
},
|
|
302
|
-
"rate": null,
|
|
303
|
-
"feedback": {
|
|
304
|
-
"feedbackSuppressed": false,
|
|
305
|
-
"score": 5,
|
|
306
|
-
"comment": "Gustavo is a joy to work with. He is persistent and a great communicator.",
|
|
307
|
-
"feedback_suppressed": false
|
|
308
|
-
},
|
|
309
|
-
"feedbackToClient": {
|
|
310
|
-
"feedbackSuppressed": false,
|
|
311
|
-
"score": 5,
|
|
312
|
-
"comment": "I enjoyed working on this project. All expectations and requirements were communicated up front and the client was responsive to any of my requests for clarification. I liked working with her and hope to have the opportunity to work with her again.",
|
|
313
|
-
"feedback_suppressed": false
|
|
314
|
-
},
|
|
315
|
-
"isEDCPublic": true
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
"isPtcJob": null,
|
|
319
|
-
"status": null,
|
|
320
|
-
"isEDCReplicated": null,
|
|
321
|
-
"startDate": "2020-12-04T18:45:32.000Z",
|
|
322
|
-
"endDate": "2020-12-27T20:11:13.000Z",
|
|
323
|
-
"totalCharge": 200,
|
|
324
|
-
"totalHours": 0,
|
|
325
|
-
"jobInfo": {
|
|
326
|
-
"title": "Picture book designer",
|
|
327
|
-
"id": null,
|
|
328
|
-
"uid": null,
|
|
329
|
-
"access": 2,
|
|
330
|
-
"type": 1,
|
|
331
|
-
"ciphertext": null
|
|
332
|
-
},
|
|
333
|
-
"contractorInfo": {
|
|
334
|
-
"contractorName": "Kresimir V.",
|
|
335
|
-
"accessType": "PUBLIC_INDEX",
|
|
336
|
-
"ciphertext": "~01531974a46e06a151"
|
|
337
|
-
},
|
|
338
|
-
"rate": null,
|
|
339
|
-
"feedback": {
|
|
340
|
-
"feedbackSuppressed": false,
|
|
341
|
-
"score": 5,
|
|
342
|
-
"comment": "Kresimir is creative, diligent, and abounding in patience, I would hire him again in a heartbeat.",
|
|
343
|
-
"feedback_suppressed": false
|
|
344
|
-
},
|
|
345
|
-
"feedbackToClient": {
|
|
346
|
-
"feedbackSuppressed": false,
|
|
347
|
-
"score": 5,
|
|
348
|
-
"comment": "Once again, a great cooperation with Carol! She is a great client and I hope to work with her more in the future.",
|
|
349
|
-
"feedback_suppressed": false
|
|
350
|
-
},
|
|
351
|
-
"isEDCPublic": true
|
|
352
|
-
},
|
|
353
|
-
{
|
|
354
|
-
"isPtcJob": false,
|
|
355
|
-
"status": "CLOSED",
|
|
356
|
-
"isEDCReplicated": null,
|
|
357
|
-
"startDate": "2020-10-12T23:35:38.000Z",
|
|
358
|
-
"endDate": "2020-10-29T22:21:01.000Z",
|
|
359
|
-
"totalCharge": 200,
|
|
360
|
-
"totalHours": 0,
|
|
361
|
-
"jobInfo": {
|
|
362
|
-
"title": "Picture book designer",
|
|
363
|
-
"id": "1311361141275496448",
|
|
364
|
-
"uid": "1311361141275496448",
|
|
365
|
-
"access": 1,
|
|
366
|
-
"type": 1,
|
|
367
|
-
"ciphertext": "~01bd62ef80b14480ca"
|
|
368
|
-
},
|
|
369
|
-
"contractorInfo": {
|
|
370
|
-
"contractorName": "Kresimir V.",
|
|
371
|
-
"accessType": "PUBLIC_INDEX",
|
|
372
|
-
"ciphertext": "~01531974a46e06a151"
|
|
373
|
-
},
|
|
374
|
-
"rate": null,
|
|
375
|
-
"feedback": {
|
|
376
|
-
"feedbackSuppressed": false,
|
|
377
|
-
"score": 5,
|
|
378
|
-
"comment": "I took a chance on Kresimir because he listed the skills I needed, even though he hadn't worked on upwork before. I am absolutely delighted. Thoroughly professional and easy to work with.",
|
|
379
|
-
"feedback_suppressed": false
|
|
380
|
-
},
|
|
381
|
-
"feedbackToClient": {
|
|
382
|
-
"feedbackSuppressed": false,
|
|
383
|
-
"score": 5,
|
|
384
|
-
"comment": "Carol is a great client! Very communicative, easy going and trusting in my professional skills and abilities. She has a high reguard for designer/artistic profession. I would strongly recommend her as a client and I hope to work with her more in the future.",
|
|
385
|
-
"feedback_suppressed": false
|
|
386
|
-
},
|
|
387
|
-
"isEDCPublic": true
|
|
388
|
-
},
|
|
389
|
-
{
|
|
390
|
-
"isPtcJob": null,
|
|
391
|
-
"status": null,
|
|
392
|
-
"isEDCReplicated": null,
|
|
393
|
-
"startDate": "2020-09-21T18:27:42.000Z",
|
|
394
|
-
"endDate": "2020-09-30T17:40:11.000Z",
|
|
395
|
-
"totalCharge": 100,
|
|
396
|
-
"totalHours": 0,
|
|
397
|
-
"jobInfo": {
|
|
398
|
-
"title": "Children's book illustrator",
|
|
399
|
-
"id": null,
|
|
400
|
-
"uid": null,
|
|
401
|
-
"access": 2,
|
|
402
|
-
"type": 1,
|
|
403
|
-
"ciphertext": null
|
|
404
|
-
},
|
|
405
|
-
"contractorInfo": {
|
|
406
|
-
"contractorName": "Mariia L.",
|
|
407
|
-
"accessType": "PUBLIC_INDEX",
|
|
408
|
-
"ciphertext": "~018c98f6769a884131"
|
|
409
|
-
},
|
|
410
|
-
"rate": null,
|
|
411
|
-
"feedback": {
|
|
412
|
-
"feedbackSuppressed": false,
|
|
413
|
-
"score": 5,
|
|
414
|
-
"comment": "I would definitely hire Mariia again. She is topnotch.",
|
|
415
|
-
"feedback_suppressed": false
|
|
416
|
-
},
|
|
417
|
-
"feedbackToClient": {
|
|
418
|
-
"feedbackSuppressed": false,
|
|
419
|
-
"score": 5,
|
|
420
|
-
"comment": null,
|
|
421
|
-
"feedback_suppressed": false
|
|
422
|
-
},
|
|
423
|
-
"isEDCPublic": true
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
"isPtcJob": false,
|
|
427
|
-
"status": "CLOSED",
|
|
428
|
-
"isEDCReplicated": null,
|
|
429
|
-
"startDate": "2020-09-15T17:04:05.000Z",
|
|
430
|
-
"endDate": "2020-09-21T12:05:36.000Z",
|
|
431
|
-
"totalCharge": 100,
|
|
432
|
-
"totalHours": 0,
|
|
433
|
-
"jobInfo": {
|
|
434
|
-
"title": "Children's book illustrator",
|
|
435
|
-
"id": "1304536463566569472",
|
|
436
|
-
"uid": "1304536463566569472",
|
|
437
|
-
"access": 1,
|
|
438
|
-
"type": 1,
|
|
439
|
-
"ciphertext": "~014f06a046e3a91c86"
|
|
440
|
-
},
|
|
441
|
-
"contractorInfo": {
|
|
442
|
-
"contractorName": "Mariia L.",
|
|
443
|
-
"accessType": "PUBLIC_INDEX",
|
|
444
|
-
"ciphertext": "~018c98f6769a884131"
|
|
445
|
-
},
|
|
446
|
-
"rate": null,
|
|
447
|
-
"feedback": {
|
|
448
|
-
"feedbackSuppressed": false,
|
|
449
|
-
"score": 5,
|
|
450
|
-
"comment": null,
|
|
451
|
-
"feedback_suppressed": false
|
|
452
|
-
},
|
|
453
|
-
"feedbackToClient": {
|
|
454
|
-
"feedbackSuppressed": false,
|
|
455
|
-
"score": 5,
|
|
456
|
-
"comment": "A friendly client with reasonable deadlines and interesting projects!",
|
|
457
|
-
"feedback_suppressed": false
|
|
458
|
-
},
|
|
459
|
-
"isEDCPublic": true
|
|
460
|
-
},
|
|
461
|
-
{
|
|
462
|
-
"isPtcJob": false,
|
|
463
|
-
"status": "CLOSED",
|
|
464
|
-
"isEDCReplicated": null,
|
|
465
|
-
"startDate": "2020-08-23T18:25:38.000Z",
|
|
466
|
-
"endDate": "2020-09-15T14:11:49.000Z",
|
|
467
|
-
"totalCharge": 250,
|
|
468
|
-
"totalHours": 0,
|
|
469
|
-
"jobInfo": {
|
|
470
|
-
"title": "Seeking photo illustrator for children's picture Book",
|
|
471
|
-
"id": "1294739614270701568",
|
|
472
|
-
"uid": "1294739614270701568",
|
|
473
|
-
"access": 1,
|
|
474
|
-
"type": 1,
|
|
475
|
-
"ciphertext": "~018f5e59d7edf8e2b1"
|
|
476
|
-
},
|
|
477
|
-
"contractorInfo": {
|
|
478
|
-
"contractorName": "Mariia L.",
|
|
479
|
-
"accessType": "PUBLIC_INDEX",
|
|
480
|
-
"ciphertext": "~018c98f6769a884131"
|
|
481
|
-
},
|
|
482
|
-
"rate": null,
|
|
483
|
-
"feedback": {
|
|
484
|
-
"feedbackSuppressed": false,
|
|
485
|
-
"score": 5,
|
|
486
|
-
"comment": "Mariia made beautiful illustrations perfect for a children's picture book, communicated well, and was generally a delight to work with.",
|
|
487
|
-
"feedback_suppressed": false
|
|
488
|
-
},
|
|
489
|
-
"feedbackToClient": {
|
|
490
|
-
"feedbackSuppressed": false,
|
|
491
|
-
"score": 5,
|
|
492
|
-
"comment": "Very interesting project and a reasonable client. Would recommend!",
|
|
493
|
-
"feedback_suppressed": false
|
|
494
|
-
},
|
|
495
|
-
"isEDCPublic": true
|
|
496
|
-
}
|
|
497
|
-
],
|
|
498
|
-
"similarJobs": [],
|
|
499
|
-
"sands": {
|
|
500
|
-
"occupation": {
|
|
501
|
-
"freeText": null,
|
|
502
|
-
"ontologyId": "upworkOccupation:illustration",
|
|
503
|
-
"prefLabel": "Illustration",
|
|
504
|
-
"id": "1017484851352698968",
|
|
505
|
-
"uid": "1017484851352698968"
|
|
506
|
-
},
|
|
507
|
-
"ontologySkills": [],
|
|
508
|
-
"additionalSkills": [
|
|
509
|
-
{
|
|
510
|
-
"uid": "1031626747312324608",
|
|
511
|
-
"name": "Illustration",
|
|
512
|
-
"isFreeText": false,
|
|
513
|
-
"relevance": "MANDATORY"
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
"uid": "1031626723652255744",
|
|
517
|
-
"name": "Character Design",
|
|
518
|
-
"isFreeText": false,
|
|
519
|
-
"relevance": "MANDATORY"
|
|
520
|
-
}
|
|
521
|
-
]
|
|
522
|
-
},
|
|
523
|
-
"auth": {
|
|
524
|
-
"canFlagOpening": true,
|
|
525
|
-
"canPostJob": false,
|
|
526
|
-
"domestic": {
|
|
527
|
-
"country": null,
|
|
528
|
-
"isInfographicTooltipAvailable": false
|
|
529
|
-
}
|
|
530
|
-
},
|
|
531
|
-
"applicants": {
|
|
532
|
-
"applicantsBidsStats": null
|
|
533
|
-
},
|
|
534
|
-
"connects": {
|
|
535
|
-
"pricing": {
|
|
536
|
-
"price": 11,
|
|
537
|
-
"context": "OTHER",
|
|
538
|
-
"auctionPrice": -1
|
|
539
|
-
},
|
|
540
|
-
"requiredConnects": 11,
|
|
541
|
-
"availableConnects": 0,
|
|
542
|
-
"chooseConnectsStatus": {
|
|
543
|
-
"isExplainerModalShown": null
|
|
544
|
-
},
|
|
545
|
-
"canSeeApplicantsRates": false
|
|
546
|
-
},
|
|
547
|
-
"enterpriseJobAdditionalInfo": {},
|
|
548
|
-
"applicationContext": {
|
|
549
|
-
"freelancerAllowed": true,
|
|
550
|
-
"clientAllowed": true,
|
|
551
|
-
"userIntentEvaluation": {
|
|
552
|
-
"isDeclined": false,
|
|
553
|
-
"reason": null
|
|
554
|
-
},
|
|
555
|
-
"canApplyOnBehalfOfAgencyFreelancers": false,
|
|
556
|
-
"canSubmitMoreProposals": true,
|
|
557
|
-
"submittedProposals": null
|
|
558
|
-
},
|
|
559
|
-
"profileMatchServiceUid": "1017484851352698968",
|
|
560
|
-
"seo": {
|
|
561
|
-
"title": "Children’s book illustrator",
|
|
562
|
-
"description": "I am looking for somebody to design seven illustrations, one for each story in my children’s collection. I like the style of the pictures in Arnold Lobel’s Frog and Toad series.\n\nTo start immediately",
|
|
563
|
-
"url": "/freelance-jobs/apply/Children-book-illustrator_~021928193323984039900/"
|
|
564
|
-
},
|
|
565
|
-
"teamUid": null,
|
|
566
|
-
"proposalPermissions": {
|
|
567
|
-
"freelancerAllowed": true,
|
|
568
|
-
"clientAllowed": true
|
|
569
|
-
},
|
|
570
|
-
"jobSlug": null,
|
|
571
|
-
"prefillWith": null,
|
|
572
|
-
"isGroupOpportunity": false,
|
|
573
|
-
"workLocation": null,
|
|
574
|
-
"isPhoneVerified": false,
|
|
575
|
-
"errorResponse": null,
|
|
576
|
-
"isApplyBlocked": true,
|
|
577
|
-
"hasAiInterview": false,
|
|
578
|
-
"aiInterviewRoomId": null,
|
|
579
|
-
"aiInterviewLinkSent": false,
|
|
580
|
-
"aiInterviewStatus": null
|
|
581
|
-
}
|