lancer-shared 1.2.134 → 1.2.136

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.
Files changed (207) hide show
  1. package/dist/bundle.cjs.js +1 -0
  2. package/dist/constants/collections.js +11 -13
  3. package/dist/constants/common-questions.js +1 -4
  4. package/dist/constants/index.js +10 -32
  5. package/dist/constants/job-filter-options.js +1 -4
  6. package/dist/constants/job-status.js +7 -12
  7. package/dist/constants/mappings/countryMapping.js +1 -3
  8. package/dist/constants/mappings/regionMapping.js +1 -3
  9. package/dist/constants/organization.d.ts +2 -2
  10. package/dist/constants/routes.js +39 -37
  11. package/dist/constants/upwork-accounts.js +3 -6
  12. package/dist/index.js +4 -20
  13. package/dist/schemas/account/account-status.js +2 -5
  14. package/dist/schemas/account/bidder-account.js +22 -24
  15. package/dist/schemas/account/index.js +3 -19
  16. package/dist/schemas/account/scraper-account.js +21 -24
  17. package/dist/schemas/ai/ai-config.js +8 -11
  18. package/dist/schemas/ai/index.js +3 -19
  19. package/dist/schemas/ai/proposal.js +10 -13
  20. package/dist/schemas/ai/suitability.js +8 -11
  21. package/dist/schemas/bid/bid-result.js +9 -13
  22. package/dist/schemas/bid/bid.js +29 -30
  23. package/dist/schemas/bid/index.js +2 -18
  24. package/dist/schemas/campaign/campaign-ai-metrics.js +5 -8
  25. package/dist/schemas/campaign/campaign-analytics.d.ts +296 -0
  26. package/dist/schemas/campaign/campaign-analytics.js +32 -31
  27. package/dist/schemas/campaign/campaign-expenses.js +5 -8
  28. package/dist/schemas/campaign/campaign-insights.js +30 -30
  29. package/dist/schemas/campaign/campaign-integrations.d.ts +5 -0
  30. package/dist/schemas/campaign/campaign-integrations.js +10 -13
  31. package/dist/schemas/campaign/campaign-job-count.js +3 -6
  32. package/dist/schemas/campaign/campaign.js +32 -35
  33. package/dist/schemas/campaign/index.js +7 -23
  34. package/dist/schemas/chat-message/chat-message.js +7 -10
  35. package/dist/schemas/chat-message/index.js +1 -17
  36. package/dist/schemas/config/agency-config.js +6 -9
  37. package/dist/schemas/config/index.js +1 -17
  38. package/dist/schemas/event/index.d.ts +58 -0
  39. package/dist/schemas/index.js +17 -32
  40. package/dist/schemas/job/haha.json +581 -0
  41. package/dist/schemas/job-filters/index.js +1 -17
  42. package/dist/schemas/job-filters/job-filters.js +62 -65
  43. package/dist/schemas/lead/index.js +173 -19
  44. package/dist/schemas/lead/lead-note.js +13 -16
  45. package/dist/schemas/lead/lead-status.js +3 -6
  46. package/dist/schemas/lead/nuxt.js +287 -0
  47. package/dist/schemas/logger/index.js +1 -17
  48. package/dist/schemas/logger/log-event.d.ts +10 -10
  49. package/dist/schemas/logger/log-event.js +100 -49
  50. package/dist/schemas/meter-event/index.d.ts +12 -0
  51. package/dist/schemas/organization/index.js +70 -17
  52. package/dist/schemas/organization/member.js +7 -0
  53. package/dist/schemas/organization/organization.d.ts +177 -7
  54. package/dist/schemas/organization/organization.js +14 -17
  55. package/dist/schemas/organization/subscription.js +17 -0
  56. package/dist/schemas/proxy/index.js +3 -17
  57. package/dist/schemas/proxy/proxy-available-replacements.js +3 -0
  58. package/dist/schemas/proxy/proxy-country.js +249 -0
  59. package/dist/schemas/proxy/proxy.js +25 -19
  60. package/dist/schemas/saved-search/index.js +8 -11
  61. package/dist/schemas/scraper/index.js +2 -18
  62. package/dist/schemas/scraper/scrape-payload.d.ts +78 -0
  63. package/dist/schemas/scraper/scrape-payload.js +19 -14
  64. package/dist/schemas/scraper/scrape-result.js +21 -21
  65. package/dist/schemas/shared.js +12 -9
  66. package/dist/schemas/tier/index.d.ts +119 -0
  67. package/dist/schemas/time-filter/index.js +5 -8
  68. package/dist/schemas/transaction/index.js +17 -0
  69. package/dist/schemas/usage/index.js +18 -0
  70. package/dist/schemas/user/index.js +38 -41
  71. package/dist/types/account/account-status.js +1 -2
  72. package/dist/types/account/bidder-account.js +1 -2
  73. package/dist/types/account/index.js +3 -19
  74. package/dist/types/account/scraper-account.js +1 -2
  75. package/dist/types/ai/ai-config.js +1 -2
  76. package/dist/types/ai/index.js +3 -19
  77. package/dist/types/ai/proposal.js +1 -2
  78. package/dist/types/ai/suitability.js +1 -2
  79. package/dist/types/bid/bid-result.js +1 -2
  80. package/dist/types/bid/bid.js +1 -2
  81. package/dist/types/bid/index.js +2 -18
  82. package/dist/types/campaign/campaign-analytics.js +1 -2
  83. package/dist/types/campaign/campaign-expenses.js +1 -2
  84. package/dist/types/campaign/campaign-insights.js +1 -2
  85. package/dist/types/campaign/campaign-integrations.js +1 -2
  86. package/dist/types/campaign/campaign-job-count.js +1 -2
  87. package/dist/types/campaign/campaign.js +1 -2
  88. package/dist/types/campaign/index.js +6 -22
  89. package/dist/types/chat-message/chat-message.js +1 -2
  90. package/dist/types/chat-message/index.js +1 -17
  91. package/dist/types/config/agency-config.js +1 -2
  92. package/dist/types/config/index.js +1 -17
  93. package/dist/types/index.js +15 -29
  94. package/dist/types/job/index.js +3 -19
  95. package/dist/types/job/job-note.js +1 -2
  96. package/dist/types/job/job-status.js +1 -4
  97. package/dist/types/job/nuxt.js +1 -0
  98. package/dist/types/job-filters/index.js +1 -17
  99. package/dist/types/job-filters/job-filters.js +1 -2
  100. package/dist/types/logger/index.js +1 -17
  101. package/dist/types/logger/log-event.js +1 -2
  102. package/dist/types/saved-search/index.js +1 -2
  103. package/dist/types/scraper/index.js +2 -18
  104. package/dist/types/scraper/scrape-payload.js +1 -2
  105. package/dist/types/scraper/scrape-result.js +1 -2
  106. package/dist/types/shared.js +1 -0
  107. package/dist/types/time-filter/index.js +1 -2
  108. package/dist/types/transaction/index.js +1 -0
  109. package/dist/types/usage/index.js +1 -0
  110. package/dist/types/user/index.js +1 -2
  111. package/dist/utils/index.js +1 -17
  112. package/dist/utils/try-catch.js +8 -23
  113. package/package.json +1 -1
  114. package/dist/constants/account-status.d.ts +0 -3
  115. package/dist/constants/account-status.js +0 -17
  116. package/dist/constants/proxies.d.ts +0 -4
  117. package/dist/constants/upwork-filters.d.ts +0 -5
  118. package/dist/constants/upwork-filters.js +0 -75
  119. package/dist/schemas/account/exceptions/no-bidder-accounts-available.d.ts +0 -5
  120. package/dist/schemas/account/manager-account.d.ts +0 -116
  121. package/dist/schemas/account/manager-account.js +0 -38
  122. package/dist/schemas/ai-config/ai-config.d.ts +0 -39
  123. package/dist/schemas/ai-config/ai-config.js +0 -12
  124. package/dist/schemas/ai-config/index.d.ts +0 -1
  125. package/dist/schemas/ai-config/index.js +0 -17
  126. package/dist/schemas/bid/bid-status.d.ts +0 -30
  127. package/dist/schemas/bid/bid-status.js +0 -15
  128. package/dist/schemas/bid/exceptions/base-exception.d.ts +0 -4
  129. package/dist/schemas/bid/exceptions/evalute-element.exception.d.ts +0 -5
  130. package/dist/schemas/bid/exceptions/wait-for-function-timeout.d.ts +0 -5
  131. package/dist/schemas/bidding/index.d.ts +0 -1
  132. package/dist/schemas/bidding/index.js +0 -17
  133. package/dist/schemas/bidding/proposal-bidding-status.d.ts +0 -26
  134. package/dist/schemas/bidding/proposal-bidding-status.js +0 -18
  135. package/dist/schemas/bidding/proposal-dto.d.ts +0 -26
  136. package/dist/schemas/bidding/proposal-dto.js +0 -18
  137. package/dist/schemas/job/feed-job.d.ts +0 -866
  138. package/dist/schemas/job/index.js +0 -19
  139. package/dist/schemas/job/job-details.js +0 -29
  140. package/dist/schemas/job/job-note.d.ts +0 -83
  141. package/dist/schemas/job/job-note.js +0 -30
  142. package/dist/schemas/job/job-pipeline.d.ts +0 -74
  143. package/dist/schemas/job/job-pipeline.js +0 -29
  144. package/dist/schemas/job/job-status.d.ts +0 -3
  145. package/dist/schemas/job/job-status.js +0 -27
  146. package/dist/schemas/job/job-suitability.d.ts +0 -12
  147. package/dist/schemas/job/job-suitability.js +0 -13
  148. package/dist/schemas/job/job.d.ts +0 -1160
  149. package/dist/schemas/job/job.js +0 -90
  150. package/dist/schemas/job/pipeline-job.d.ts +0 -608
  151. package/dist/schemas/job/pipeline-job.js +0 -43
  152. package/dist/schemas/job/upwork-job.d.ts +0 -334
  153. package/dist/schemas/job/upwork-job.js +0 -60
  154. package/dist/schemas/knowledge-object/index.d.ts +0 -1
  155. package/dist/schemas/knowledge-object/index.js +0 -17
  156. package/dist/schemas/knowledge-object/knowledge-object.d.ts +0 -128
  157. package/dist/schemas/knowledge-object/knowledge-object.js +0 -47
  158. package/dist/schemas/lead/lead.d.ts +0 -1897
  159. package/dist/schemas/lead/lead.js +0 -143
  160. package/dist/schemas/scraper/scrape-response.d.ts +0 -345
  161. package/dist/schemas/scraper/scrape-response.js +0 -9
  162. package/dist/schemas/upwork-account/index.d.ts +0 -3
  163. package/dist/schemas/upwork-account/index.js +0 -19
  164. package/dist/schemas/upwork-account/upwork-account-status.d.ts +0 -2
  165. package/dist/schemas/upwork-account/upwork-account-status.js +0 -11
  166. package/dist/schemas/upwork-account/upwork-business-manager-account.d.ts +0 -95
  167. package/dist/schemas/upwork-account/upwork-business-manager-account.js +0 -35
  168. package/dist/schemas/upwork-account/upwork-scraper-account.d.ts +0 -92
  169. package/dist/schemas/upwork-account/upwork-scraper-account.js +0 -31
  170. package/dist/schemas/upwork-account/upwork-scraping-account.d.ts +0 -90
  171. package/dist/schemas/upwork-account/upwork-scraping-account.js +0 -30
  172. package/dist/types/account/manager-account.d.ts +0 -7
  173. package/dist/types/account/manager-account.js +0 -2
  174. package/dist/types/ai-config/ai-config.d.ts +0 -6
  175. package/dist/types/ai-config/ai-config.js +0 -2
  176. package/dist/types/ai-config/index.d.ts +0 -1
  177. package/dist/types/ai-config/index.js +0 -17
  178. package/dist/types/bid/bid-status.d.ts +0 -5
  179. package/dist/types/bid/bid-status.js +0 -2
  180. package/dist/types/bidding/index.d.ts +0 -1
  181. package/dist/types/bidding/index.js +0 -17
  182. package/dist/types/bidding/proposal-bidding-status.d.ts +0 -3
  183. package/dist/types/bidding/proposal-bidding-status.js +0 -2
  184. package/dist/types/bidding/proposal-dto.d.ts +0 -3
  185. package/dist/types/bidding/proposal-dto.js +0 -2
  186. package/dist/types/job/job-details.d.ts +0 -36
  187. package/dist/types/job/job-details.js +0 -2
  188. package/dist/types/job/job-pipeline.d.ts +0 -4
  189. package/dist/types/job/job-pipeline.js +0 -2
  190. package/dist/types/job/job-suitability.d.ts +0 -3
  191. package/dist/types/job/job-suitability.js +0 -2
  192. package/dist/types/job/job.d.ts +0 -36
  193. package/dist/types/job/job.js +0 -2
  194. package/dist/types/knowledge-object/index.d.ts +0 -1
  195. package/dist/types/knowledge-object/index.js +0 -17
  196. package/dist/types/knowledge-object/knowledge-object.d.ts +0 -4
  197. package/dist/types/knowledge-object/knowledge-object.js +0 -2
  198. package/dist/types/scraper/scrape-response.d.ts +0 -4
  199. package/dist/types/scraper/scrape-response.js +0 -2
  200. package/dist/types/upwork-account/index.d.ts +0 -3
  201. package/dist/types/upwork-account/index.js +0 -19
  202. package/dist/types/upwork-account/upwork-account-status.d.ts +0 -3
  203. package/dist/types/upwork-account/upwork-account-status.js +0 -2
  204. package/dist/types/upwork-account/upwork-business-manager-account.d.ts +0 -7
  205. package/dist/types/upwork-account/upwork-business-manager-account.js +0 -2
  206. package/dist/types/upwork-account/upwork-scraping-account.d.ts +0 -5
  207. package/dist/types/upwork-account/upwork-scraping-account.js +0 -2
@@ -0,0 +1,581 @@
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
+ }
@@ -1,17 +1 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./job-filters"), exports);
1
+ export * from './job-filters';