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.
- zou/__init__.py +1 -1
- zou/app/blueprints/assets/resources.py +134 -91
- zou/app/blueprints/auth/resources.py +6 -6
- zou/app/blueprints/breakdown/resources.py +47 -47
- zou/app/blueprints/chats/resources.py +8 -8
- zou/app/blueprints/comments/resources.py +62 -49
- zou/app/blueprints/concepts/resources.py +23 -23
- zou/app/blueprints/crud/base.py +6 -6
- zou/app/blueprints/crud/output_file.py +2 -2
- zou/app/blueprints/crud/output_type.py +2 -2
- zou/app/blueprints/crud/preview_file.py +2 -2
- zou/app/blueprints/crud/software.py +2 -2
- zou/app/blueprints/crud/working_file.py +2 -2
- zou/app/blueprints/departments/resources.py +20 -20
- zou/app/blueprints/edits/resources.py +33 -33
- zou/app/blueprints/entities/resources.py +8 -8
- zou/app/blueprints/events/resources.py +7 -7
- zou/app/blueprints/export/csv/assets.py +2 -2
- zou/app/blueprints/export/csv/casting.py +2 -2
- zou/app/blueprints/export/csv/edits.py +2 -2
- zou/app/blueprints/export/csv/playlists.py +2 -2
- zou/app/blueprints/export/csv/shots.py +2 -2
- zou/app/blueprints/files/resources.py +123 -123
- zou/app/blueprints/news/resources.py +28 -28
- zou/app/blueprints/persons/resources.py +75 -75
- zou/app/blueprints/playlists/resources.py +37 -37
- zou/app/blueprints/previews/resources.py +36 -36
- zou/app/blueprints/projects/resources.py +159 -159
- zou/app/blueprints/search/resources.py +3 -3
- zou/app/blueprints/shots/resources.py +250 -198
- zou/app/blueprints/source/csv/assets.py +2 -2
- zou/app/blueprints/source/csv/casting.py +2 -2
- zou/app/blueprints/source/csv/edits.py +2 -2
- zou/app/blueprints/source/csv/shots.py +2 -2
- zou/app/blueprints/source/csv/task_type_estimations.py +10 -10
- zou/app/blueprints/source/otio.py +6 -6
- zou/app/blueprints/source/shotgun/import_errors.py +2 -2
- zou/app/blueprints/tasks/resources.py +135 -135
- zou/app/blueprints/user/resources.py +87 -87
- zou/app/models/attachment_file.py +4 -0
- zou/app/services/comments_service.py +41 -9
- zou/app/services/tasks_service.py +1 -0
- zou/migrations/versions/1b0ab951adca_add_reply_id_to_attachments.py +44 -0
- {zou-0.20.67.dist-info → zou-0.20.69.dist-info}/METADATA +5 -5
- {zou-0.20.67.dist-info → zou-0.20.69.dist-info}/RECORD +49 -48
- {zou-0.20.67.dist-info → zou-0.20.69.dist-info}/WHEEL +0 -0
- {zou-0.20.67.dist-info → zou-0.20.69.dist-info}/entry_points.txt +0 -0
- {zou-0.20.67.dist-info → zou-0.20.69.dist-info}/licenses/LICENSE +0 -0
- {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:
|
|
37
|
-
|
|
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:
|
|
30
|
-
|
|
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:
|
|
46
|
-
|
|
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:
|
|
42
|
-
|
|
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:
|
|
46
|
-
|
|
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:
|
|
52
|
-
|
|
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:
|
|
170
|
-
|
|
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:
|
|
176
|
-
|
|
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:
|
|
182
|
-
|
|
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:
|
|
289
|
-
|
|
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:
|
|
334
|
-
|
|
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:
|
|
340
|
-
|
|
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:
|
|
62
|
-
|
|
61
|
+
format: uuid
|
|
62
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
63
63
|
responses:
|
|
64
64
|
204:
|
|
65
65
|
description: Error deleted
|