zou 0.20.67__py3-none-any.whl → 0.20.69__py3-none-any.whl

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 (49) hide show
  1. zou/__init__.py +1 -1
  2. zou/app/blueprints/assets/resources.py +134 -91
  3. zou/app/blueprints/auth/resources.py +6 -6
  4. zou/app/blueprints/breakdown/resources.py +47 -47
  5. zou/app/blueprints/chats/resources.py +8 -8
  6. zou/app/blueprints/comments/resources.py +62 -49
  7. zou/app/blueprints/concepts/resources.py +23 -23
  8. zou/app/blueprints/crud/base.py +6 -6
  9. zou/app/blueprints/crud/output_file.py +2 -2
  10. zou/app/blueprints/crud/output_type.py +2 -2
  11. zou/app/blueprints/crud/preview_file.py +2 -2
  12. zou/app/blueprints/crud/software.py +2 -2
  13. zou/app/blueprints/crud/working_file.py +2 -2
  14. zou/app/blueprints/departments/resources.py +20 -20
  15. zou/app/blueprints/edits/resources.py +33 -33
  16. zou/app/blueprints/entities/resources.py +8 -8
  17. zou/app/blueprints/events/resources.py +7 -7
  18. zou/app/blueprints/export/csv/assets.py +2 -2
  19. zou/app/blueprints/export/csv/casting.py +2 -2
  20. zou/app/blueprints/export/csv/edits.py +2 -2
  21. zou/app/blueprints/export/csv/playlists.py +2 -2
  22. zou/app/blueprints/export/csv/shots.py +2 -2
  23. zou/app/blueprints/files/resources.py +123 -123
  24. zou/app/blueprints/news/resources.py +28 -28
  25. zou/app/blueprints/persons/resources.py +75 -75
  26. zou/app/blueprints/playlists/resources.py +37 -37
  27. zou/app/blueprints/previews/resources.py +36 -36
  28. zou/app/blueprints/projects/resources.py +159 -159
  29. zou/app/blueprints/search/resources.py +3 -3
  30. zou/app/blueprints/shots/resources.py +250 -198
  31. zou/app/blueprints/source/csv/assets.py +2 -2
  32. zou/app/blueprints/source/csv/casting.py +2 -2
  33. zou/app/blueprints/source/csv/edits.py +2 -2
  34. zou/app/blueprints/source/csv/shots.py +2 -2
  35. zou/app/blueprints/source/csv/task_type_estimations.py +10 -10
  36. zou/app/blueprints/source/otio.py +6 -6
  37. zou/app/blueprints/source/shotgun/import_errors.py +2 -2
  38. zou/app/blueprints/tasks/resources.py +135 -135
  39. zou/app/blueprints/user/resources.py +87 -87
  40. zou/app/models/attachment_file.py +4 -0
  41. zou/app/services/comments_service.py +41 -9
  42. zou/app/services/tasks_service.py +1 -0
  43. zou/migrations/versions/1b0ab951adca_add_reply_id_to_attachments.py +44 -0
  44. {zou-0.20.67.dist-info → zou-0.20.69.dist-info}/METADATA +5 -5
  45. {zou-0.20.67.dist-info → zou-0.20.69.dist-info}/RECORD +49 -48
  46. {zou-0.20.67.dist-info → zou-0.20.69.dist-info}/WHEEL +0 -0
  47. {zou-0.20.67.dist-info → zou-0.20.69.dist-info}/entry_points.txt +0 -0
  48. {zou-0.20.67.dist-info → zou-0.20.69.dist-info}/licenses/LICENSE +0 -0
  49. {zou-0.20.67.dist-info → zou-0.20.69.dist-info}/top_level.txt +0 -0
@@ -33,8 +33,8 @@ class AssetsCsvImportResource(BaseCsvProjectImportResource):
33
33
  name: project_id
34
34
  required: True
35
35
  type: string
36
- format: UUID
37
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
36
+ format: uuid
37
+ example: a24a6ea4-ce75-4665-a070-57453082c25
38
38
  - in: formData
39
39
  name: file
40
40
  type: file
@@ -26,8 +26,8 @@ class CastingCsvImportResource(BaseCsvProjectImportResource):
26
26
  name: project_id
27
27
  required: True
28
28
  type: string
29
- format: UUID
30
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
29
+ format: uuid
30
+ example: a24a6ea4-ce75-4665-a070-57453082c25
31
31
  - in: formData
32
32
  name: file
33
33
  type: file
@@ -42,8 +42,8 @@ class EditsCsvImportResource(BaseCsvProjectImportResource):
42
42
  name: project_id
43
43
  required: True
44
44
  type: string
45
- format: UUID
46
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
45
+ format: uuid
46
+ example: a24a6ea4-ce75-4665-a070-57453082c25
47
47
  responses:
48
48
  201:
49
49
  description: Edits imported
@@ -38,8 +38,8 @@ class ShotsCsvImportResource(BaseCsvProjectImportResource):
38
38
  name: project_id
39
39
  required: True
40
40
  type: string
41
- format: UUID
42
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
41
+ format: uuid
42
+ example: a24a6ea4-ce75-4665-a070-57453082c25
43
43
  - in: formData
44
44
  name: file
45
45
  type: file
@@ -42,14 +42,14 @@ class TaskTypeEstimationsCsvImportResource(BaseCsvProjectImportResource):
42
42
  name: project_id
43
43
  required: True
44
44
  type: string
45
- format: UUID
46
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
45
+ format: uuid
46
+ example: a24a6ea4-ce75-4665-a070-57453082c25
47
47
  - in: path
48
48
  name: task_type_id
49
49
  required: True
50
50
  type: string
51
- format: UUID
52
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
51
+ format: uuid
52
+ example: a24a6ea4-ce75-4665-a070-57453082c25
53
53
  responses:
54
54
  201:
55
55
  description: Estimations imported
@@ -166,20 +166,20 @@ class TaskTypeEstimationsEpisodeCsvImportResource(
166
166
  name: project_id
167
167
  required: True
168
168
  type: string
169
- format: UUID
170
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
169
+ format: uuid
170
+ example: a24a6ea4-ce75-4665-a070-57453082c25
171
171
  - in: path
172
172
  name: task_type_id
173
173
  required: True
174
174
  type: string
175
- format: UUID
176
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
175
+ format: uuid
176
+ example: a24a6ea4-ce75-4665-a070-57453082c25
177
177
  - in: path
178
178
  name: episode_id
179
179
  required: True
180
180
  type: string
181
- format: UUID
182
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
181
+ format: uuid
182
+ example: a24a6ea4-ce75-4665-a070-57453082c25
183
183
  responses:
184
184
  201:
185
185
  description: Estimations imported
@@ -285,8 +285,8 @@ class OTIOImportResource(OTIOBaseResource):
285
285
  name: project_id
286
286
  required: True
287
287
  type: string
288
- format: UUID
289
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
288
+ format: uuid
289
+ example: a24a6ea4-ce75-4665-a070-57453082c25
290
290
  - in: formData
291
291
  name: file
292
292
  type: file
@@ -330,14 +330,14 @@ class OTIOImportEpisodeResource(OTIOBaseResource):
330
330
  name: project_id
331
331
  required: True
332
332
  type: string
333
- format: UUID
334
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
333
+ format: uuid
334
+ example: a24a6ea4-ce75-4665-a070-57453082c25
335
335
  - in: path
336
336
  name: episode_id
337
337
  required: True
338
338
  type: string
339
- format: UUID
340
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
339
+ format: uuid
340
+ example: a24a6ea4-ce75-4665-a070-57453082c25
341
341
  - in: formData
342
342
  name: file
343
343
  type: file
@@ -58,8 +58,8 @@ class ShotgunImportErrorResource(Resource):
58
58
  name: error_id
59
59
  required: True
60
60
  type: string
61
- format: UUID
62
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
61
+ format: uuid
62
+ example: a24a6ea4-ce75-4665-a070-57453082c25
63
63
  responses:
64
64
  204:
65
65
  description: Error deleted