zou 0.20.66__py3-none-any.whl → 0.20.68__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 +41 -41
- 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 +9 -9
- 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 +37 -37
- zou/app/blueprints/projects/resources.py +159 -159
- zou/app/blueprints/search/resources.py +3 -3
- zou/app/blueprints/shots/resources.py +143 -143
- 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/swagger.py +4 -3
- {zou-0.20.66.dist-info → zou-0.20.68.dist-info}/METADATA +5 -5
- {zou-0.20.66.dist-info → zou-0.20.68.dist-info}/RECORD +46 -46
- {zou-0.20.66.dist-info → zou-0.20.68.dist-info}/WHEEL +0 -0
- {zou-0.20.66.dist-info → zou-0.20.68.dist-info}/entry_points.txt +0 -0
- {zou-0.20.66.dist-info → zou-0.20.68.dist-info}/licenses/LICENSE +0 -0
- {zou-0.20.66.dist-info → zou-0.20.68.dist-info}/top_level.txt +0 -0
|
@@ -36,8 +36,8 @@ class ShotResource(Resource, ArgsMixin):
|
|
|
36
36
|
name: shot_id
|
|
37
37
|
required: True
|
|
38
38
|
type: string
|
|
39
|
-
format:
|
|
40
|
-
|
|
39
|
+
format: uuid
|
|
40
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
41
41
|
responses:
|
|
42
42
|
200:
|
|
43
43
|
description: Given shot
|
|
@@ -62,8 +62,8 @@ class ShotResource(Resource, ArgsMixin):
|
|
|
62
62
|
name: shot_id
|
|
63
63
|
required: True
|
|
64
64
|
type: string
|
|
65
|
-
format:
|
|
66
|
-
|
|
65
|
+
format: uuid
|
|
66
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
67
67
|
- in: body
|
|
68
68
|
name: data
|
|
69
69
|
required: True
|
|
@@ -108,8 +108,8 @@ class ShotResource(Resource, ArgsMixin):
|
|
|
108
108
|
name: shot_id
|
|
109
109
|
required: True
|
|
110
110
|
type: string
|
|
111
|
-
format:
|
|
112
|
-
|
|
111
|
+
format: uuid
|
|
112
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
113
113
|
responses:
|
|
114
114
|
204:
|
|
115
115
|
description: Given shot deleted
|
|
@@ -137,8 +137,8 @@ class SceneResource(Resource):
|
|
|
137
137
|
name: scene_id
|
|
138
138
|
required: True
|
|
139
139
|
type: string
|
|
140
|
-
format:
|
|
141
|
-
|
|
140
|
+
format: uuid
|
|
141
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
142
142
|
responses:
|
|
143
143
|
200:
|
|
144
144
|
description: Given scene
|
|
@@ -160,8 +160,8 @@ class SceneResource(Resource):
|
|
|
160
160
|
name: scene_id
|
|
161
161
|
required: True
|
|
162
162
|
type: string
|
|
163
|
-
format:
|
|
164
|
-
|
|
163
|
+
format: uuid
|
|
164
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
165
165
|
responses:
|
|
166
166
|
204:
|
|
167
167
|
description: Given scene deleted
|
|
@@ -189,20 +189,20 @@ class ShotsResource(Resource):
|
|
|
189
189
|
name: sequence_id
|
|
190
190
|
required: False
|
|
191
191
|
type: string
|
|
192
|
-
format:
|
|
193
|
-
|
|
192
|
+
format: uuid
|
|
193
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
194
194
|
- in: query
|
|
195
195
|
name: project_id
|
|
196
196
|
required: False
|
|
197
197
|
type: string
|
|
198
|
-
format:
|
|
199
|
-
|
|
198
|
+
format: uuid
|
|
199
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
200
200
|
- in: query
|
|
201
201
|
name: parent_id
|
|
202
202
|
required: False
|
|
203
203
|
type: string
|
|
204
|
-
format:
|
|
205
|
-
|
|
204
|
+
format: uuid
|
|
205
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
206
206
|
responses:
|
|
207
207
|
200:
|
|
208
208
|
description: All shot entries
|
|
@@ -235,20 +235,20 @@ class AllShotsResource(Resource):
|
|
|
235
235
|
name: sequence_id
|
|
236
236
|
required: False
|
|
237
237
|
type: string
|
|
238
|
-
format:
|
|
239
|
-
|
|
238
|
+
format: uuid
|
|
239
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
240
240
|
- in: query
|
|
241
241
|
name: project_id
|
|
242
242
|
required: False
|
|
243
243
|
type: string
|
|
244
|
-
format:
|
|
245
|
-
|
|
244
|
+
format: uuid
|
|
245
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
246
246
|
- in: query
|
|
247
247
|
name: parent_id
|
|
248
248
|
required: False
|
|
249
249
|
type: string
|
|
250
|
-
format:
|
|
251
|
-
|
|
250
|
+
format: uuid
|
|
251
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
252
252
|
responses:
|
|
253
253
|
200:
|
|
254
254
|
description: All shot entries
|
|
@@ -281,8 +281,8 @@ class ScenesResource(Resource):
|
|
|
281
281
|
name: project_id
|
|
282
282
|
required: False
|
|
283
283
|
type: string
|
|
284
|
-
format:
|
|
285
|
-
|
|
284
|
+
format: uuid
|
|
285
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
286
286
|
responses:
|
|
287
287
|
200:
|
|
288
288
|
description: All scene entries
|
|
@@ -305,8 +305,8 @@ class ShotAssetsResource(Resource):
|
|
|
305
305
|
name: shot_id
|
|
306
306
|
required: True
|
|
307
307
|
type: string
|
|
308
|
-
format:
|
|
309
|
-
|
|
308
|
+
format: uuid
|
|
309
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
310
310
|
responses:
|
|
311
311
|
200:
|
|
312
312
|
description: All assets for given shot
|
|
@@ -330,8 +330,8 @@ class ShotTaskTypesResource(Resource):
|
|
|
330
330
|
name: shot_id
|
|
331
331
|
required: True
|
|
332
332
|
type: string
|
|
333
|
-
format:
|
|
334
|
-
|
|
333
|
+
format: uuid
|
|
334
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
335
335
|
responses:
|
|
336
336
|
200:
|
|
337
337
|
description: All task types related to given shot
|
|
@@ -355,8 +355,8 @@ class ShotTasksResource(Resource, ArgsMixin):
|
|
|
355
355
|
name: shot_id
|
|
356
356
|
required: True
|
|
357
357
|
type: string
|
|
358
|
-
format:
|
|
359
|
-
|
|
358
|
+
format: uuid
|
|
359
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
360
360
|
responses:
|
|
361
361
|
200:
|
|
362
362
|
description: All tasks related to given shot
|
|
@@ -381,8 +381,8 @@ class SequenceShotTasksResource(Resource, ArgsMixin):
|
|
|
381
381
|
name: sequence_id
|
|
382
382
|
required: True
|
|
383
383
|
type: string
|
|
384
|
-
format:
|
|
385
|
-
|
|
384
|
+
format: uuid
|
|
385
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
386
386
|
responses:
|
|
387
387
|
200:
|
|
388
388
|
description: All task types related to given sequence
|
|
@@ -411,8 +411,8 @@ class EpisodeShotTasksResource(Resource, ArgsMixin):
|
|
|
411
411
|
name: episode_id
|
|
412
412
|
required: True
|
|
413
413
|
type: string
|
|
414
|
-
format:
|
|
415
|
-
|
|
414
|
+
format: uuid
|
|
415
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
416
416
|
responses:
|
|
417
417
|
200:
|
|
418
418
|
description: All shots tasks related to given episode
|
|
@@ -441,8 +441,8 @@ class EpisodeAssetTasksResource(Resource, ArgsMixin):
|
|
|
441
441
|
name: episode_id
|
|
442
442
|
required: True
|
|
443
443
|
type: string
|
|
444
|
-
format:
|
|
445
|
-
|
|
444
|
+
format: uuid
|
|
445
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
446
446
|
responses:
|
|
447
447
|
200:
|
|
448
448
|
description: All assets tasks related to given episode
|
|
@@ -471,8 +471,8 @@ class EpisodeShotsResource(Resource, ArgsMixin):
|
|
|
471
471
|
name: episode_id
|
|
472
472
|
required: True
|
|
473
473
|
type: string
|
|
474
|
-
format:
|
|
475
|
-
|
|
474
|
+
format: uuid
|
|
475
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
476
476
|
responses:
|
|
477
477
|
200:
|
|
478
478
|
description: All shots related to given episode
|
|
@@ -501,8 +501,8 @@ class ShotPreviewsResource(Resource):
|
|
|
501
501
|
name: shot_id
|
|
502
502
|
required: True
|
|
503
503
|
type: string
|
|
504
|
-
format:
|
|
505
|
-
|
|
504
|
+
format: uuid
|
|
505
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
506
506
|
responses:
|
|
507
507
|
200:
|
|
508
508
|
description: All previews related to given episode
|
|
@@ -526,8 +526,8 @@ class SequenceTasksResource(Resource, ArgsMixin):
|
|
|
526
526
|
name: sequence_id
|
|
527
527
|
required: True
|
|
528
528
|
type: string
|
|
529
|
-
format:
|
|
530
|
-
|
|
529
|
+
format: uuid
|
|
530
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
531
531
|
responses:
|
|
532
532
|
200:
|
|
533
533
|
description: All tasks related to given shot
|
|
@@ -553,8 +553,8 @@ class SequenceTaskTypesResource(Resource):
|
|
|
553
553
|
name: sequence_id
|
|
554
554
|
required: True
|
|
555
555
|
type: string
|
|
556
|
-
format:
|
|
557
|
-
|
|
556
|
+
format: uuid
|
|
557
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
558
558
|
responses:
|
|
559
559
|
200:
|
|
560
560
|
description: All task types related to given shot
|
|
@@ -578,8 +578,8 @@ class ShotsAndTasksResource(Resource):
|
|
|
578
578
|
name: project_id
|
|
579
579
|
required: False
|
|
580
580
|
type: string
|
|
581
|
-
format:
|
|
582
|
-
|
|
581
|
+
format: uuid
|
|
582
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
583
583
|
responses:
|
|
584
584
|
200:
|
|
585
585
|
description: All shots
|
|
@@ -610,8 +610,8 @@ class SceneAndTasksResource(Resource):
|
|
|
610
610
|
name: project_id
|
|
611
611
|
required: False
|
|
612
612
|
type: string
|
|
613
|
-
format:
|
|
614
|
-
|
|
613
|
+
format: uuid
|
|
614
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
615
615
|
responses:
|
|
616
616
|
200:
|
|
617
617
|
description: All scenes
|
|
@@ -635,8 +635,8 @@ class SequenceAndTasksResource(Resource):
|
|
|
635
635
|
name: project_id
|
|
636
636
|
required: False
|
|
637
637
|
type: string
|
|
638
|
-
format:
|
|
639
|
-
|
|
638
|
+
format: uuid
|
|
639
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
640
640
|
responses:
|
|
641
641
|
200:
|
|
642
642
|
description: All sequences
|
|
@@ -660,8 +660,8 @@ class EpisodeAndTasksResource(Resource):
|
|
|
660
660
|
name: project_id
|
|
661
661
|
required: False
|
|
662
662
|
type: string
|
|
663
|
-
format:
|
|
664
|
-
|
|
663
|
+
format: uuid
|
|
664
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
665
665
|
responses:
|
|
666
666
|
200:
|
|
667
667
|
description: All episodes
|
|
@@ -685,8 +685,8 @@ class ProjectShotsResource(Resource, ArgsMixin):
|
|
|
685
685
|
name: project_id
|
|
686
686
|
required: True
|
|
687
687
|
type: string
|
|
688
|
-
format:
|
|
689
|
-
|
|
688
|
+
format: uuid
|
|
689
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
690
690
|
responses:
|
|
691
691
|
200:
|
|
692
692
|
description: All shots related to given project
|
|
@@ -709,22 +709,22 @@ class ProjectShotsResource(Resource, ArgsMixin):
|
|
|
709
709
|
name: project_id
|
|
710
710
|
required: True
|
|
711
711
|
type: string
|
|
712
|
-
format:
|
|
713
|
-
|
|
712
|
+
format: uuid
|
|
713
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
714
714
|
- in: formData
|
|
715
715
|
name: name
|
|
716
716
|
required: True
|
|
717
717
|
type: string
|
|
718
|
-
|
|
718
|
+
example: Name of shot
|
|
719
719
|
- in: formData
|
|
720
720
|
name: description
|
|
721
721
|
type: string
|
|
722
|
-
|
|
722
|
+
example: Description of shot
|
|
723
723
|
- in: formData
|
|
724
724
|
name: sequence_id
|
|
725
725
|
type: string
|
|
726
|
-
format:
|
|
727
|
-
|
|
726
|
+
format: uuid
|
|
727
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
728
728
|
- in: formData
|
|
729
729
|
name: nb_frames
|
|
730
730
|
type: integer
|
|
@@ -786,8 +786,8 @@ class ProjectSequencesResource(Resource, ArgsMixin):
|
|
|
786
786
|
name: project_id
|
|
787
787
|
required: True
|
|
788
788
|
type: string
|
|
789
|
-
format:
|
|
790
|
-
|
|
789
|
+
format: uuid
|
|
790
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
791
791
|
responses:
|
|
792
792
|
200:
|
|
793
793
|
description: All sequences related to given project
|
|
@@ -810,18 +810,18 @@ class ProjectSequencesResource(Resource, ArgsMixin):
|
|
|
810
810
|
name: project_id
|
|
811
811
|
required: True
|
|
812
812
|
type: string
|
|
813
|
-
format:
|
|
814
|
-
|
|
813
|
+
format: uuid
|
|
814
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
815
815
|
- in: formData
|
|
816
816
|
name: name
|
|
817
817
|
required: True
|
|
818
818
|
type: string
|
|
819
|
-
|
|
819
|
+
example: Name of sequence
|
|
820
820
|
- in: formData
|
|
821
821
|
name: episode_id
|
|
822
822
|
type: string
|
|
823
|
-
format:
|
|
824
|
-
|
|
823
|
+
format: uuid
|
|
824
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
825
825
|
responses:
|
|
826
826
|
201:
|
|
827
827
|
description: Sequence created for given project
|
|
@@ -870,8 +870,8 @@ class ProjectEpisodesResource(Resource, ArgsMixin):
|
|
|
870
870
|
name: project_id
|
|
871
871
|
required: True
|
|
872
872
|
type: string
|
|
873
|
-
format:
|
|
874
|
-
|
|
873
|
+
format: uuid
|
|
874
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
875
875
|
responses:
|
|
876
876
|
200:
|
|
877
877
|
description: All episodes related to given project
|
|
@@ -894,18 +894,18 @@ class ProjectEpisodesResource(Resource, ArgsMixin):
|
|
|
894
894
|
name: project_id
|
|
895
895
|
required: True
|
|
896
896
|
type: string
|
|
897
|
-
format:
|
|
898
|
-
|
|
897
|
+
format: uuid
|
|
898
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
899
899
|
- in: formData
|
|
900
900
|
name: name
|
|
901
901
|
required: True
|
|
902
902
|
type: string
|
|
903
|
-
|
|
903
|
+
example: Name of the episode
|
|
904
904
|
- in: formData
|
|
905
905
|
name: description
|
|
906
906
|
required: True
|
|
907
907
|
type: string
|
|
908
|
-
|
|
908
|
+
example: Description of the episode
|
|
909
909
|
responses:
|
|
910
910
|
201:
|
|
911
911
|
description: Episode created for given project
|
|
@@ -951,8 +951,8 @@ class ProjectEpisodeStatsResource(Resource):
|
|
|
951
951
|
name: project_id
|
|
952
952
|
required: True
|
|
953
953
|
type: string
|
|
954
|
-
format:
|
|
955
|
-
|
|
954
|
+
format: uuid
|
|
955
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
956
956
|
responses:
|
|
957
957
|
200:
|
|
958
958
|
description: Number of tasks by status, task types and episodes for given project
|
|
@@ -977,8 +977,8 @@ class ProjectEpisodeRetakeStatsResource(Resource):
|
|
|
977
977
|
name: project_id
|
|
978
978
|
required: True
|
|
979
979
|
type: string
|
|
980
|
-
format:
|
|
981
|
-
|
|
980
|
+
format: uuid
|
|
981
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
982
982
|
responses:
|
|
983
983
|
200:
|
|
984
984
|
description: Number of tasks by status, task types and episodes for given project
|
|
@@ -1003,8 +1003,8 @@ class EpisodeResource(Resource, ArgsMixin):
|
|
|
1003
1003
|
name: episode_id
|
|
1004
1004
|
required: True
|
|
1005
1005
|
type: string
|
|
1006
|
-
format:
|
|
1007
|
-
|
|
1006
|
+
format: uuid
|
|
1007
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1008
1008
|
responses:
|
|
1009
1009
|
200:
|
|
1010
1010
|
description: Given episode
|
|
@@ -1025,8 +1025,8 @@ class EpisodeResource(Resource, ArgsMixin):
|
|
|
1025
1025
|
name: episode_id
|
|
1026
1026
|
required: True
|
|
1027
1027
|
type: string
|
|
1028
|
-
format:
|
|
1029
|
-
|
|
1028
|
+
format: uuid
|
|
1029
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1030
1030
|
responses:
|
|
1031
1031
|
204:
|
|
1032
1032
|
description: Given episode deleted
|
|
@@ -1055,8 +1055,8 @@ class EpisodesResource(Resource):
|
|
|
1055
1055
|
name: project_id
|
|
1056
1056
|
required: False
|
|
1057
1057
|
type: string
|
|
1058
|
-
format:
|
|
1059
|
-
|
|
1058
|
+
format: uuid
|
|
1059
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1060
1060
|
responses:
|
|
1061
1061
|
200:
|
|
1062
1062
|
description: All episode entries
|
|
@@ -1080,14 +1080,14 @@ class EpisodeSequencesResource(Resource):
|
|
|
1080
1080
|
name: episode_id
|
|
1081
1081
|
required: True
|
|
1082
1082
|
type: string
|
|
1083
|
-
format:
|
|
1084
|
-
|
|
1083
|
+
format: uuid
|
|
1084
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1085
1085
|
- in: query
|
|
1086
1086
|
name: project_id
|
|
1087
1087
|
required: False
|
|
1088
1088
|
type: string
|
|
1089
|
-
format:
|
|
1090
|
-
|
|
1089
|
+
format: uuid
|
|
1090
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1091
1091
|
responses:
|
|
1092
1092
|
200:
|
|
1093
1093
|
description: All sequence entries for given episode
|
|
@@ -1119,8 +1119,8 @@ class EpisodeTaskTypesResource(Resource):
|
|
|
1119
1119
|
name: episode_id
|
|
1120
1120
|
required: True
|
|
1121
1121
|
type: string
|
|
1122
|
-
format:
|
|
1123
|
-
|
|
1122
|
+
format: uuid
|
|
1123
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1124
1124
|
responses:
|
|
1125
1125
|
200:
|
|
1126
1126
|
description: All task types related to given episode
|
|
@@ -1143,8 +1143,8 @@ class EpisodeTasksResource(Resource):
|
|
|
1143
1143
|
name: episode_id
|
|
1144
1144
|
required: True
|
|
1145
1145
|
type: string
|
|
1146
|
-
format:
|
|
1147
|
-
|
|
1146
|
+
format: uuid
|
|
1147
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1148
1148
|
responses:
|
|
1149
1149
|
200:
|
|
1150
1150
|
description: All tasks related to given episode
|
|
@@ -1167,8 +1167,8 @@ class SequenceResource(Resource, ArgsMixin):
|
|
|
1167
1167
|
name: sequence_id
|
|
1168
1168
|
required: True
|
|
1169
1169
|
type: string
|
|
1170
|
-
format:
|
|
1171
|
-
|
|
1170
|
+
format: uuid
|
|
1171
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1172
1172
|
responses:
|
|
1173
1173
|
200:
|
|
1174
1174
|
description: Given sequence
|
|
@@ -1189,8 +1189,8 @@ class SequenceResource(Resource, ArgsMixin):
|
|
|
1189
1189
|
name: sequence_id
|
|
1190
1190
|
required: True
|
|
1191
1191
|
type: string
|
|
1192
|
-
format:
|
|
1193
|
-
|
|
1192
|
+
format: uuid
|
|
1193
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1194
1194
|
responses:
|
|
1195
1195
|
204:
|
|
1196
1196
|
description: Given sequence deleted
|
|
@@ -1219,8 +1219,8 @@ class SequencesResource(Resource):
|
|
|
1219
1219
|
name: episode_id
|
|
1220
1220
|
required: False
|
|
1221
1221
|
type: string
|
|
1222
|
-
format:
|
|
1223
|
-
|
|
1222
|
+
format: uuid
|
|
1223
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1224
1224
|
responses:
|
|
1225
1225
|
200:
|
|
1226
1226
|
description: All sequence entries
|
|
@@ -1249,14 +1249,14 @@ class SequenceShotsResource(Resource):
|
|
|
1249
1249
|
name: sequence_id
|
|
1250
1250
|
required: True
|
|
1251
1251
|
type: string
|
|
1252
|
-
format:
|
|
1253
|
-
|
|
1252
|
+
format: uuid
|
|
1253
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1254
1254
|
- in: query
|
|
1255
1255
|
name: project_id
|
|
1256
1256
|
required: False
|
|
1257
1257
|
type: string
|
|
1258
|
-
format:
|
|
1259
|
-
|
|
1258
|
+
format: uuid
|
|
1259
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1260
1260
|
responses:
|
|
1261
1261
|
200:
|
|
1262
1262
|
description: All shot entries for given sequence
|
|
@@ -1285,8 +1285,8 @@ class ProjectScenesResource(Resource, ArgsMixin):
|
|
|
1285
1285
|
name: project_id
|
|
1286
1286
|
required: True
|
|
1287
1287
|
type: string
|
|
1288
|
-
format:
|
|
1289
|
-
|
|
1288
|
+
format: uuid
|
|
1289
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1290
1290
|
responses:
|
|
1291
1291
|
200:
|
|
1292
1292
|
description: All scenes related to given project
|
|
@@ -1307,19 +1307,19 @@ class ProjectScenesResource(Resource, ArgsMixin):
|
|
|
1307
1307
|
name: project_id
|
|
1308
1308
|
required: True
|
|
1309
1309
|
type: string
|
|
1310
|
-
format:
|
|
1311
|
-
|
|
1310
|
+
format: uuid
|
|
1311
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1312
1312
|
- in: formData
|
|
1313
1313
|
name: name
|
|
1314
1314
|
required: True
|
|
1315
1315
|
type: string
|
|
1316
|
-
|
|
1316
|
+
example: Name of scene
|
|
1317
1317
|
- in: formData
|
|
1318
1318
|
name: sequence_id
|
|
1319
1319
|
required: True
|
|
1320
1320
|
type: string
|
|
1321
|
-
format:
|
|
1322
|
-
|
|
1321
|
+
format: uuid
|
|
1322
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1323
1323
|
responses:
|
|
1324
1324
|
201:
|
|
1325
1325
|
description: Scene created for given project
|
|
@@ -1356,8 +1356,8 @@ class SequenceScenesResource(Resource):
|
|
|
1356
1356
|
name: sequence_id
|
|
1357
1357
|
required: True
|
|
1358
1358
|
type: string
|
|
1359
|
-
format:
|
|
1360
|
-
|
|
1359
|
+
format: uuid
|
|
1360
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1361
1361
|
responses:
|
|
1362
1362
|
200:
|
|
1363
1363
|
description: All scenes related to given sequence
|
|
@@ -1380,8 +1380,8 @@ class SceneTaskTypesResource(Resource):
|
|
|
1380
1380
|
name: scene_id
|
|
1381
1381
|
required: True
|
|
1382
1382
|
type: string
|
|
1383
|
-
format:
|
|
1384
|
-
|
|
1383
|
+
format: uuid
|
|
1384
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1385
1385
|
responses:
|
|
1386
1386
|
200:
|
|
1387
1387
|
description: All task types related to given scene
|
|
@@ -1405,8 +1405,8 @@ class SceneTasksResource(Resource):
|
|
|
1405
1405
|
name: scene_id
|
|
1406
1406
|
required: True
|
|
1407
1407
|
type: string
|
|
1408
|
-
format:
|
|
1409
|
-
|
|
1408
|
+
format: uuid
|
|
1409
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1410
1410
|
responses:
|
|
1411
1411
|
200:
|
|
1412
1412
|
description: All tasks related to given scene
|
|
@@ -1429,8 +1429,8 @@ class SceneShotsResource(Resource, ArgsMixin):
|
|
|
1429
1429
|
name: scene_id
|
|
1430
1430
|
required: True
|
|
1431
1431
|
type: string
|
|
1432
|
-
format:
|
|
1433
|
-
|
|
1432
|
+
format: uuid
|
|
1433
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1434
1434
|
responses:
|
|
1435
1435
|
200:
|
|
1436
1436
|
description: All shots that come from given scene
|
|
@@ -1451,13 +1451,13 @@ class SceneShotsResource(Resource, ArgsMixin):
|
|
|
1451
1451
|
name: scene_id
|
|
1452
1452
|
required: True
|
|
1453
1453
|
type: string
|
|
1454
|
-
format:
|
|
1455
|
-
|
|
1454
|
+
format: uuid
|
|
1455
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1456
1456
|
- in: formData
|
|
1457
1457
|
name: shot_id
|
|
1458
1458
|
type: string
|
|
1459
|
-
format:
|
|
1460
|
-
|
|
1459
|
+
format: uuid
|
|
1460
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1461
1461
|
responses:
|
|
1462
1462
|
200:
|
|
1463
1463
|
description: Given scene marked as source of given shot
|
|
@@ -1483,14 +1483,14 @@ class RemoveShotFromSceneResource(Resource):
|
|
|
1483
1483
|
name: scene_id
|
|
1484
1484
|
required: True
|
|
1485
1485
|
type: string
|
|
1486
|
-
format:
|
|
1487
|
-
|
|
1486
|
+
format: uuid
|
|
1487
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1488
1488
|
- in: path
|
|
1489
1489
|
name: shot_id
|
|
1490
1490
|
required: True
|
|
1491
1491
|
type: string
|
|
1492
|
-
format:
|
|
1493
|
-
|
|
1492
|
+
format: uuid
|
|
1493
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1494
1494
|
responses:
|
|
1495
1495
|
204:
|
|
1496
1496
|
description: Given shot deleted from given scene
|
|
@@ -1519,8 +1519,8 @@ class ShotVersionsResource(Resource):
|
|
|
1519
1519
|
name: shot_id
|
|
1520
1520
|
required: True
|
|
1521
1521
|
type: string
|
|
1522
|
-
format:
|
|
1523
|
-
|
|
1522
|
+
format: uuid
|
|
1523
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1524
1524
|
responses:
|
|
1525
1525
|
204:
|
|
1526
1526
|
description: Data versions of given shot
|
|
@@ -1548,26 +1548,26 @@ class ProjectQuotasResource(Resource, ArgsMixin):
|
|
|
1548
1548
|
name: project_id
|
|
1549
1549
|
required: True
|
|
1550
1550
|
type: string
|
|
1551
|
-
format:
|
|
1552
|
-
|
|
1551
|
+
format: uuid
|
|
1552
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1553
1553
|
- in: path
|
|
1554
1554
|
name: task_type_id
|
|
1555
1555
|
required: True
|
|
1556
1556
|
type: string
|
|
1557
|
-
format:
|
|
1558
|
-
|
|
1557
|
+
format: uuid
|
|
1558
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1559
1559
|
- in: query
|
|
1560
1560
|
name: count_mode
|
|
1561
1561
|
required: True
|
|
1562
1562
|
type: string
|
|
1563
1563
|
enum: [weighted, weigtheddone, feedback, done]
|
|
1564
|
-
|
|
1564
|
+
example: weighted
|
|
1565
1565
|
- in: query
|
|
1566
1566
|
name: studio_id
|
|
1567
1567
|
required: False
|
|
1568
1568
|
type: string
|
|
1569
|
-
format:
|
|
1570
|
-
|
|
1569
|
+
format: uuid
|
|
1570
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1571
1571
|
responses:
|
|
1572
1572
|
200:
|
|
1573
1573
|
description: Quotas statistics for shots
|
|
@@ -1622,26 +1622,26 @@ class ProjectPersonQuotasResource(Resource, ArgsMixin):
|
|
|
1622
1622
|
name: project_id
|
|
1623
1623
|
required: True
|
|
1624
1624
|
type: string
|
|
1625
|
-
format:
|
|
1626
|
-
|
|
1625
|
+
format: uuid
|
|
1626
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1627
1627
|
- in: path
|
|
1628
1628
|
name: person_id
|
|
1629
1629
|
required: True
|
|
1630
1630
|
type: string
|
|
1631
|
-
format:
|
|
1632
|
-
|
|
1631
|
+
format: uuid
|
|
1632
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1633
1633
|
- in: query
|
|
1634
1634
|
name: count_mode
|
|
1635
1635
|
required: True
|
|
1636
1636
|
type: string
|
|
1637
1637
|
enum: [weighted, weigtheddone, feedback, done]
|
|
1638
|
-
|
|
1638
|
+
example: weighted
|
|
1639
1639
|
- in: query
|
|
1640
1640
|
name: studio_id
|
|
1641
1641
|
required: False
|
|
1642
1642
|
type: string
|
|
1643
|
-
format:
|
|
1644
|
-
|
|
1643
|
+
format: uuid
|
|
1644
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1645
1645
|
responses:
|
|
1646
1646
|
200:
|
|
1647
1647
|
description: Quotas statistics for shots
|
|
@@ -1706,11 +1706,11 @@ class SetShotsFramesResource(Resource, ArgsMixin):
|
|
|
1706
1706
|
properties:
|
|
1707
1707
|
shot_id:
|
|
1708
1708
|
type: string
|
|
1709
|
-
format:
|
|
1710
|
-
|
|
1709
|
+
format: uuid
|
|
1710
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1711
1711
|
nb_frames:
|
|
1712
1712
|
type: integer
|
|
1713
|
-
|
|
1713
|
+
example: 24
|
|
1714
1714
|
responses:
|
|
1715
1715
|
200:
|
|
1716
1716
|
description: Frames set for given shots
|