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
|
@@ -119,8 +119,8 @@ class WorkingFileFileResource(Resource):
|
|
|
119
119
|
name: working_file_id
|
|
120
120
|
required: true
|
|
121
121
|
type: string
|
|
122
|
-
format:
|
|
123
|
-
|
|
122
|
+
format: uuid
|
|
123
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
124
124
|
responses:
|
|
125
125
|
200:
|
|
126
126
|
description: Working file downloaded
|
|
@@ -147,8 +147,8 @@ class WorkingFileFileResource(Resource):
|
|
|
147
147
|
name: working_file_id
|
|
148
148
|
required: true
|
|
149
149
|
type: string
|
|
150
|
-
format:
|
|
151
|
-
|
|
150
|
+
format: uuid
|
|
151
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
152
152
|
- in: formData
|
|
153
153
|
name: file
|
|
154
154
|
type: file
|
|
@@ -187,8 +187,8 @@ class WorkingFilePathResource(Resource, ArgsMixin):
|
|
|
187
187
|
name: task_id
|
|
188
188
|
required: true
|
|
189
189
|
type: string
|
|
190
|
-
format:
|
|
191
|
-
|
|
190
|
+
format: uuid
|
|
191
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
192
192
|
- in: body
|
|
193
193
|
name: File
|
|
194
194
|
description: Name, software, mode, revision and separator.
|
|
@@ -203,7 +203,7 @@ class WorkingFilePathResource(Resource, ArgsMixin):
|
|
|
203
203
|
default: working
|
|
204
204
|
software_id:
|
|
205
205
|
type: string
|
|
206
|
-
format:
|
|
206
|
+
format: uuid
|
|
207
207
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
208
208
|
comment:
|
|
209
209
|
type: string
|
|
@@ -309,8 +309,8 @@ class EntityOutputFilePathResource(Resource, ArgsMixin):
|
|
|
309
309
|
name: entity_id
|
|
310
310
|
required: true
|
|
311
311
|
type: string
|
|
312
|
-
format:
|
|
313
|
-
|
|
312
|
+
format: uuid
|
|
313
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
314
314
|
- in: body
|
|
315
315
|
name: File
|
|
316
316
|
description: Entity, output type, task type, revision, mode, name and separator.
|
|
@@ -328,11 +328,11 @@ class EntityOutputFilePathResource(Resource, ArgsMixin):
|
|
|
328
328
|
default: output
|
|
329
329
|
output_type_id:
|
|
330
330
|
type: string
|
|
331
|
-
format:
|
|
331
|
+
format: uuid
|
|
332
332
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
333
333
|
task_type_id:
|
|
334
334
|
type: string
|
|
335
|
-
format:
|
|
335
|
+
format: uuid
|
|
336
336
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
337
337
|
extension:
|
|
338
338
|
type: string
|
|
@@ -428,14 +428,14 @@ class InstanceOutputFilePathResource(Resource, ArgsMixin):
|
|
|
428
428
|
name: asset_instance_id
|
|
429
429
|
required: true
|
|
430
430
|
type: string
|
|
431
|
-
format:
|
|
432
|
-
|
|
431
|
+
format: uuid
|
|
432
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
433
433
|
- in: path
|
|
434
434
|
name: temporal_entity_id
|
|
435
435
|
required: true
|
|
436
436
|
type: string
|
|
437
|
-
format:
|
|
438
|
-
|
|
437
|
+
format: uuid
|
|
438
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
439
439
|
- in: body
|
|
440
440
|
name: File
|
|
441
441
|
description: Asset instance, output type, task type, revision, mode, name and separator.
|
|
@@ -453,11 +453,11 @@ class InstanceOutputFilePathResource(Resource, ArgsMixin):
|
|
|
453
453
|
default: output
|
|
454
454
|
output_type_id:
|
|
455
455
|
type: string
|
|
456
|
-
format:
|
|
456
|
+
format: uuid
|
|
457
457
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
458
458
|
task_type_id:
|
|
459
459
|
type: string
|
|
460
|
-
format:
|
|
460
|
+
format: uuid
|
|
461
461
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
462
462
|
extension:
|
|
463
463
|
type: string
|
|
@@ -547,8 +547,8 @@ class LastWorkingFilesResource(Resource):
|
|
|
547
547
|
name: task_id
|
|
548
548
|
required: true
|
|
549
549
|
type: string
|
|
550
|
-
format:
|
|
551
|
-
|
|
550
|
+
format: uuid
|
|
551
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
552
552
|
responses:
|
|
553
553
|
200:
|
|
554
554
|
description: Last working files revision for each file name for given task
|
|
@@ -577,8 +577,8 @@ class TaskWorkingFilesResource(Resource):
|
|
|
577
577
|
name: task_id
|
|
578
578
|
required: true
|
|
579
579
|
type: string
|
|
580
|
-
format:
|
|
581
|
-
|
|
580
|
+
format: uuid
|
|
581
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
582
582
|
responses:
|
|
583
583
|
200:
|
|
584
584
|
description: Last working files revision for each file name for given task
|
|
@@ -619,8 +619,8 @@ class NewWorkingFileResource(Resource, ArgsMixin):
|
|
|
619
619
|
name: task_id
|
|
620
620
|
required: true
|
|
621
621
|
type: string
|
|
622
|
-
format:
|
|
623
|
-
|
|
622
|
+
format: uuid
|
|
623
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
624
624
|
- in: body
|
|
625
625
|
name: File
|
|
626
626
|
description: Name, mode, description, comment, person ID, software ID, revision and separator.
|
|
@@ -640,11 +640,11 @@ class NewWorkingFileResource(Resource, ArgsMixin):
|
|
|
640
640
|
type: string
|
|
641
641
|
person_id:
|
|
642
642
|
type: string
|
|
643
|
-
format:
|
|
643
|
+
format: uuid
|
|
644
644
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
645
645
|
software_id:
|
|
646
646
|
type: string
|
|
647
|
-
format:
|
|
647
|
+
format: uuid
|
|
648
648
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
649
649
|
revision:
|
|
650
650
|
type: integer
|
|
@@ -761,8 +761,8 @@ class ModifiedFileResource(Resource):
|
|
|
761
761
|
name: working_file_id
|
|
762
762
|
required: true
|
|
763
763
|
type: string
|
|
764
|
-
format:
|
|
765
|
-
|
|
764
|
+
format: uuid
|
|
765
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
766
766
|
responses:
|
|
767
767
|
200:
|
|
768
768
|
description: Working file modification date updated
|
|
@@ -793,8 +793,8 @@ class CommentWorkingFileResource(Resource, ArgsMixin):
|
|
|
793
793
|
name: working_file_id
|
|
794
794
|
required: true
|
|
795
795
|
type: string
|
|
796
|
-
format:
|
|
797
|
-
|
|
796
|
+
format: uuid
|
|
797
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
798
798
|
- in: body
|
|
799
799
|
name: Comment
|
|
800
800
|
schema:
|
|
@@ -867,8 +867,8 @@ class NewEntityOutputFileResource(Resource, ArgsMixin):
|
|
|
867
867
|
name: entity_id
|
|
868
868
|
required: true
|
|
869
869
|
type: string
|
|
870
|
-
format:
|
|
871
|
-
|
|
870
|
+
format: uuid
|
|
871
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
872
872
|
- in: body
|
|
873
873
|
name: File
|
|
874
874
|
description: Name, mode, output type ID, task type ID, person ID, working file ID, file status ID, comment, extension, representation, revision, number of elements and separator.
|
|
@@ -885,23 +885,23 @@ class NewEntityOutputFileResource(Resource, ArgsMixin):
|
|
|
885
885
|
default: output
|
|
886
886
|
output_type_id:
|
|
887
887
|
type: string
|
|
888
|
-
format:
|
|
888
|
+
format: uuid
|
|
889
889
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
890
890
|
task_type_id:
|
|
891
891
|
type: string
|
|
892
|
-
format:
|
|
892
|
+
format: uuid
|
|
893
893
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
894
894
|
person_id:
|
|
895
895
|
type: string
|
|
896
|
-
format:
|
|
896
|
+
format: uuid
|
|
897
897
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
898
898
|
working_file_id:
|
|
899
899
|
type: string
|
|
900
|
-
format:
|
|
900
|
+
format: uuid
|
|
901
901
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
902
902
|
file_status_id:
|
|
903
903
|
type: string
|
|
904
|
-
format:
|
|
904
|
+
format: uuid
|
|
905
905
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
906
906
|
comment:
|
|
907
907
|
type: string
|
|
@@ -1088,14 +1088,14 @@ class NewInstanceOutputFileResource(Resource, ArgsMixin):
|
|
|
1088
1088
|
name: asset_instance_id
|
|
1089
1089
|
required: true
|
|
1090
1090
|
type: string
|
|
1091
|
-
format:
|
|
1092
|
-
|
|
1091
|
+
format: uuid
|
|
1092
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1093
1093
|
- in: path
|
|
1094
1094
|
name: temporal_entity_id
|
|
1095
1095
|
required: true
|
|
1096
1096
|
type: string
|
|
1097
|
-
format:
|
|
1098
|
-
|
|
1097
|
+
format: uuid
|
|
1098
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1099
1099
|
- in: body
|
|
1100
1100
|
name: File
|
|
1101
1101
|
description: Name, mode, output type ID, task type ID, person ID, working file ID, file status ID, comment, extension, representation, revision, number of elements and separator.
|
|
@@ -1113,23 +1113,23 @@ class NewInstanceOutputFileResource(Resource, ArgsMixin):
|
|
|
1113
1113
|
default: output
|
|
1114
1114
|
output_type_id:
|
|
1115
1115
|
type: string
|
|
1116
|
-
format:
|
|
1116
|
+
format: uuid
|
|
1117
1117
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1118
1118
|
task_type_id:
|
|
1119
1119
|
type: string
|
|
1120
|
-
format:
|
|
1120
|
+
format: uuid
|
|
1121
1121
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1122
1122
|
person_id:
|
|
1123
1123
|
type: string
|
|
1124
|
-
format:
|
|
1124
|
+
format: uuid
|
|
1125
1125
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1126
1126
|
working_file_id:
|
|
1127
1127
|
type: string
|
|
1128
|
-
format:
|
|
1128
|
+
format: uuid
|
|
1129
1129
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1130
1130
|
file_status_id:
|
|
1131
1131
|
type: string
|
|
1132
|
-
format:
|
|
1132
|
+
format: uuid
|
|
1133
1133
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1134
1134
|
is_sequence:
|
|
1135
1135
|
type: boolean
|
|
@@ -1311,8 +1311,8 @@ class GetNextEntityOutputFileRevisionResource(Resource, ArgsMixin):
|
|
|
1311
1311
|
name: entity_id
|
|
1312
1312
|
required: true
|
|
1313
1313
|
type: string
|
|
1314
|
-
format:
|
|
1315
|
-
|
|
1314
|
+
format: uuid
|
|
1315
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1316
1316
|
- in: body
|
|
1317
1317
|
name: File
|
|
1318
1318
|
description: Name, output type ID, task type ID.
|
|
@@ -1327,11 +1327,11 @@ class GetNextEntityOutputFileRevisionResource(Resource, ArgsMixin):
|
|
|
1327
1327
|
default: main
|
|
1328
1328
|
output_type_id:
|
|
1329
1329
|
type: string
|
|
1330
|
-
format:
|
|
1330
|
+
format: uuid
|
|
1331
1331
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1332
1332
|
task_type_id:
|
|
1333
1333
|
type: string
|
|
1334
|
-
format:
|
|
1334
|
+
format: uuid
|
|
1335
1335
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1336
1336
|
responses:
|
|
1337
1337
|
200:
|
|
@@ -1376,14 +1376,14 @@ class GetNextInstanceOutputFileRevisionResource(Resource, ArgsMixin):
|
|
|
1376
1376
|
name: asset_instance_id
|
|
1377
1377
|
required: true
|
|
1378
1378
|
type: string
|
|
1379
|
-
format:
|
|
1380
|
-
|
|
1379
|
+
format: uuid
|
|
1380
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1381
1381
|
- in: path
|
|
1382
1382
|
name: temporal_entity_id
|
|
1383
1383
|
required: true
|
|
1384
1384
|
type: string
|
|
1385
|
-
format:
|
|
1386
|
-
|
|
1385
|
+
format: uuid
|
|
1386
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1387
1387
|
- in: body
|
|
1388
1388
|
name: File
|
|
1389
1389
|
description: Name, output type ID, task type ID.
|
|
@@ -1398,11 +1398,11 @@ class GetNextInstanceOutputFileRevisionResource(Resource, ArgsMixin):
|
|
|
1398
1398
|
default: main
|
|
1399
1399
|
output_type_id:
|
|
1400
1400
|
type: string
|
|
1401
|
-
format:
|
|
1401
|
+
format: uuid
|
|
1402
1402
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1403
1403
|
task_type_id:
|
|
1404
1404
|
type: string
|
|
1405
|
-
format:
|
|
1405
|
+
format: uuid
|
|
1406
1406
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1407
1407
|
responses:
|
|
1408
1408
|
200:
|
|
@@ -1455,8 +1455,8 @@ class LastEntityOutputFilesResource(Resource, ArgsMixin):
|
|
|
1455
1455
|
name: entity_id
|
|
1456
1456
|
required: true
|
|
1457
1457
|
type: string
|
|
1458
|
-
format:
|
|
1459
|
-
|
|
1458
|
+
format: uuid
|
|
1459
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1460
1460
|
responses:
|
|
1461
1461
|
200:
|
|
1462
1462
|
description: Last revisions of output files for given entity grouped by output type and file name
|
|
@@ -1502,38 +1502,38 @@ class LastInstanceOutputFilesResource(Resource, ArgsMixin):
|
|
|
1502
1502
|
name: asset_instance_id
|
|
1503
1503
|
required: true
|
|
1504
1504
|
type: string
|
|
1505
|
-
format:
|
|
1506
|
-
|
|
1505
|
+
format: uuid
|
|
1506
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1507
1507
|
- in: path
|
|
1508
1508
|
name: temporal_entity_id
|
|
1509
1509
|
required: true
|
|
1510
1510
|
type: string
|
|
1511
|
-
format:
|
|
1512
|
-
|
|
1511
|
+
format: uuid
|
|
1512
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1513
1513
|
- in: query
|
|
1514
1514
|
name: output_type_id
|
|
1515
1515
|
required: true
|
|
1516
1516
|
type: string
|
|
1517
|
-
format:
|
|
1518
|
-
|
|
1517
|
+
format: uuid
|
|
1518
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1519
1519
|
- in: query
|
|
1520
1520
|
name: task_type_id
|
|
1521
1521
|
required: true
|
|
1522
1522
|
type: string
|
|
1523
|
-
format:
|
|
1524
|
-
|
|
1523
|
+
format: uuid
|
|
1524
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1525
1525
|
- in: query
|
|
1526
1526
|
name: file_status_id
|
|
1527
1527
|
required: true
|
|
1528
1528
|
type: string
|
|
1529
|
-
format:
|
|
1530
|
-
|
|
1529
|
+
format: uuid
|
|
1530
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1531
1531
|
- in: query
|
|
1532
1532
|
name: representation
|
|
1533
1533
|
required: true
|
|
1534
1534
|
type: string
|
|
1535
|
-
format:
|
|
1536
|
-
|
|
1535
|
+
format: uuid
|
|
1536
|
+
example: cache
|
|
1537
1537
|
responses:
|
|
1538
1538
|
200:
|
|
1539
1539
|
description: Last revisions of output files for given instance
|
|
@@ -1581,8 +1581,8 @@ class EntityOutputTypesResource(Resource):
|
|
|
1581
1581
|
name: entity_id
|
|
1582
1582
|
required: true
|
|
1583
1583
|
type: string
|
|
1584
|
-
format:
|
|
1585
|
-
|
|
1584
|
+
format: uuid
|
|
1585
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1586
1586
|
responses:
|
|
1587
1587
|
200:
|
|
1588
1588
|
description: All types of output generated for given entity
|
|
@@ -1609,14 +1609,14 @@ class InstanceOutputTypesResource(Resource):
|
|
|
1609
1609
|
name: asset_instance_id
|
|
1610
1610
|
required: true
|
|
1611
1611
|
type: string
|
|
1612
|
-
format:
|
|
1613
|
-
|
|
1612
|
+
format: uuid
|
|
1613
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1614
1614
|
- in: path
|
|
1615
1615
|
name: temporal_entity_id
|
|
1616
1616
|
required: true
|
|
1617
1617
|
type: string
|
|
1618
|
-
format:
|
|
1619
|
-
|
|
1618
|
+
format: uuid
|
|
1619
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1620
1620
|
responses:
|
|
1621
1621
|
200:
|
|
1622
1622
|
description: All types of output generated for given instance
|
|
@@ -1647,14 +1647,14 @@ class EntityOutputTypeOutputFilesResource(Resource, ArgsMixin):
|
|
|
1647
1647
|
name: entity_id
|
|
1648
1648
|
required: true
|
|
1649
1649
|
type: string
|
|
1650
|
-
format:
|
|
1651
|
-
|
|
1650
|
+
format: uuid
|
|
1651
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1652
1652
|
- in: path
|
|
1653
1653
|
name: output_type_id
|
|
1654
1654
|
required: true
|
|
1655
1655
|
type: string
|
|
1656
|
-
format:
|
|
1657
|
-
|
|
1656
|
+
format: uuid
|
|
1657
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1658
1658
|
responses:
|
|
1659
1659
|
200:
|
|
1660
1660
|
description: All output files for given entity and given output type
|
|
@@ -1690,20 +1690,20 @@ class InstanceOutputTypeOutputFilesResource(Resource, ArgsMixin):
|
|
|
1690
1690
|
name: asset_instance_id
|
|
1691
1691
|
required: true
|
|
1692
1692
|
type: string
|
|
1693
|
-
format:
|
|
1694
|
-
|
|
1693
|
+
format: uuid
|
|
1694
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1695
1695
|
- in: path
|
|
1696
1696
|
name: temporal_entity_id
|
|
1697
1697
|
required: true
|
|
1698
1698
|
type: string
|
|
1699
|
-
format:
|
|
1700
|
-
|
|
1699
|
+
format: uuid
|
|
1700
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1701
1701
|
- in: path
|
|
1702
1702
|
name: output_type_id
|
|
1703
1703
|
required: true
|
|
1704
1704
|
type: string
|
|
1705
|
-
format:
|
|
1706
|
-
|
|
1705
|
+
format: uuid
|
|
1706
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1707
1707
|
responses:
|
|
1708
1708
|
200:
|
|
1709
1709
|
description: All output files for given asset instance and given output type
|
|
@@ -1738,32 +1738,32 @@ class ProjectOutputFilesResource(Resource, ArgsMixin):
|
|
|
1738
1738
|
name: project_id
|
|
1739
1739
|
required: true
|
|
1740
1740
|
type: string
|
|
1741
|
-
format:
|
|
1742
|
-
|
|
1741
|
+
format: uuid
|
|
1742
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1743
1743
|
- in: query
|
|
1744
1744
|
name: output_type_id
|
|
1745
1745
|
required: true
|
|
1746
1746
|
type: string
|
|
1747
|
-
format:
|
|
1748
|
-
|
|
1747
|
+
format: uuid
|
|
1748
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1749
1749
|
- in: query
|
|
1750
1750
|
name: task_type_id
|
|
1751
1751
|
required: true
|
|
1752
1752
|
type: string
|
|
1753
|
-
format:
|
|
1754
|
-
|
|
1753
|
+
format: uuid
|
|
1754
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1755
1755
|
- in: query
|
|
1756
1756
|
name: file_status_id
|
|
1757
1757
|
required: true
|
|
1758
1758
|
type: string
|
|
1759
|
-
format:
|
|
1760
|
-
|
|
1759
|
+
format: uuid
|
|
1760
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1761
1761
|
- in: query
|
|
1762
1762
|
name: representation
|
|
1763
1763
|
required: true
|
|
1764
1764
|
type: string
|
|
1765
|
-
format:
|
|
1766
|
-
|
|
1765
|
+
format: uuid
|
|
1766
|
+
example: cache
|
|
1767
1767
|
responses:
|
|
1768
1768
|
200:
|
|
1769
1769
|
description: All output files for given project.
|
|
@@ -1806,32 +1806,32 @@ class EntityOutputFilesResource(Resource, ArgsMixin):
|
|
|
1806
1806
|
name: entity_id
|
|
1807
1807
|
required: true
|
|
1808
1808
|
type: string
|
|
1809
|
-
format:
|
|
1810
|
-
|
|
1809
|
+
format: uuid
|
|
1810
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1811
1811
|
- in: query
|
|
1812
1812
|
name: output_type_id
|
|
1813
1813
|
required: true
|
|
1814
1814
|
type: string
|
|
1815
|
-
format:
|
|
1816
|
-
|
|
1815
|
+
format: uuid
|
|
1816
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1817
1817
|
- in: query
|
|
1818
1818
|
name: task_type_id
|
|
1819
1819
|
required: true
|
|
1820
1820
|
type: string
|
|
1821
|
-
format:
|
|
1822
|
-
|
|
1821
|
+
format: uuid
|
|
1822
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1823
1823
|
- in: query
|
|
1824
1824
|
name: file_status_id
|
|
1825
1825
|
required: true
|
|
1826
1826
|
type: string
|
|
1827
|
-
format:
|
|
1828
|
-
|
|
1827
|
+
format: uuid
|
|
1828
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1829
1829
|
- in: query
|
|
1830
1830
|
name: representation
|
|
1831
1831
|
required: true
|
|
1832
1832
|
type: string
|
|
1833
|
-
format:
|
|
1834
|
-
|
|
1833
|
+
format: uuid
|
|
1834
|
+
example: cache
|
|
1835
1835
|
responses:
|
|
1836
1836
|
200:
|
|
1837
1837
|
description: All output files for given entity
|
|
@@ -1876,38 +1876,38 @@ class InstanceOutputFilesResource(Resource):
|
|
|
1876
1876
|
name: asset_instance_id
|
|
1877
1877
|
required: true
|
|
1878
1878
|
type: string
|
|
1879
|
-
format:
|
|
1880
|
-
|
|
1879
|
+
format: uuid
|
|
1880
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1881
1881
|
- in: query
|
|
1882
1882
|
name: temporal_entity_id
|
|
1883
1883
|
required: true
|
|
1884
1884
|
type: string
|
|
1885
|
-
format:
|
|
1886
|
-
|
|
1885
|
+
format: uuid
|
|
1886
|
+
example: cache
|
|
1887
1887
|
- in: query
|
|
1888
1888
|
name: output_type_id
|
|
1889
1889
|
required: true
|
|
1890
1890
|
type: string
|
|
1891
|
-
format:
|
|
1892
|
-
|
|
1891
|
+
format: uuid
|
|
1892
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1893
1893
|
- in: query
|
|
1894
1894
|
name: task_type_id
|
|
1895
1895
|
required: true
|
|
1896
1896
|
type: string
|
|
1897
|
-
format:
|
|
1898
|
-
|
|
1897
|
+
format: uuid
|
|
1898
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1899
1899
|
- in: query
|
|
1900
1900
|
name: file_status_id
|
|
1901
1901
|
required: true
|
|
1902
1902
|
type: string
|
|
1903
|
-
format:
|
|
1904
|
-
|
|
1903
|
+
format: uuid
|
|
1904
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1905
1905
|
- in: query
|
|
1906
1906
|
name: representation
|
|
1907
1907
|
required: true
|
|
1908
1908
|
type: string
|
|
1909
|
-
format:
|
|
1910
|
-
|
|
1909
|
+
format: uuid
|
|
1910
|
+
example: cache
|
|
1911
1911
|
responses:
|
|
1912
1912
|
200:
|
|
1913
1913
|
description: All output files for given asset instance and
|
|
@@ -1953,8 +1953,8 @@ class FileResource(Resource):
|
|
|
1953
1953
|
name: file_id
|
|
1954
1954
|
required: true
|
|
1955
1955
|
type: string
|
|
1956
|
-
format:
|
|
1957
|
-
|
|
1956
|
+
format: uuid
|
|
1957
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1958
1958
|
responses:
|
|
1959
1959
|
200:
|
|
1960
1960
|
description: Information about file
|
|
@@ -1993,8 +1993,8 @@ class SetTreeResource(Resource, ArgsMixin):
|
|
|
1993
1993
|
name: project_id
|
|
1994
1994
|
required: true
|
|
1995
1995
|
type: string
|
|
1996
|
-
format:
|
|
1997
|
-
|
|
1996
|
+
format: uuid
|
|
1997
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1998
1998
|
- in: body
|
|
1999
1999
|
name: Tree name
|
|
2000
2000
|
schema:
|
|
@@ -2049,8 +2049,8 @@ class EntityWorkingFilesResource(Resource, ArgsMixin):
|
|
|
2049
2049
|
name: entity_id
|
|
2050
2050
|
required: true
|
|
2051
2051
|
type: string
|
|
2052
|
-
format:
|
|
2053
|
-
|
|
2052
|
+
format: uuid
|
|
2053
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
2054
2054
|
responses:
|
|
2055
2055
|
200:
|
|
2056
2056
|
description: All working files for given entity and possibly a task and a name
|