zou 0.20.67__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 +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 +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 +134 -134
- zou/app/blueprints/user/resources.py +87 -87
- {zou-0.20.67.dist-info → zou-0.20.68.dist-info}/METADATA +2 -2
- {zou-0.20.67.dist-info → zou-0.20.68.dist-info}/RECORD +45 -45
- {zou-0.20.67.dist-info → zou-0.20.68.dist-info}/WHEEL +0 -0
- {zou-0.20.67.dist-info → zou-0.20.68.dist-info}/entry_points.txt +0 -0
- {zou-0.20.67.dist-info → zou-0.20.68.dist-info}/licenses/LICENSE +0 -0
- {zou-0.20.67.dist-info → zou-0.20.68.dist-info}/top_level.txt +0 -0
|
@@ -32,8 +32,8 @@ class AssetTasksResource(Resource):
|
|
|
32
32
|
name: asset_id
|
|
33
33
|
required: True
|
|
34
34
|
type: string
|
|
35
|
-
format:
|
|
36
|
-
|
|
35
|
+
format: uuid
|
|
36
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
37
37
|
responses:
|
|
38
38
|
200:
|
|
39
39
|
description: Tasks related to given asset for current user
|
|
@@ -58,8 +58,8 @@ class AssetTaskTypesResource(Resource):
|
|
|
58
58
|
name: asset_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
|
200:
|
|
65
65
|
description: Task types related to given asset for current user
|
|
@@ -84,8 +84,8 @@ class ShotTaskTypesResource(Resource):
|
|
|
84
84
|
name: shot_id
|
|
85
85
|
required: True
|
|
86
86
|
type: string
|
|
87
|
-
format:
|
|
88
|
-
|
|
87
|
+
format: uuid
|
|
88
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
89
89
|
responses:
|
|
90
90
|
200:
|
|
91
91
|
description: Tasks related to given shot for current user
|
|
@@ -110,8 +110,8 @@ class SceneTaskTypesResource(Resource):
|
|
|
110
110
|
name: scene_id
|
|
111
111
|
required: True
|
|
112
112
|
type: string
|
|
113
|
-
format:
|
|
114
|
-
|
|
113
|
+
format: uuid
|
|
114
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
115
115
|
responses:
|
|
116
116
|
200:
|
|
117
117
|
description: Tasks related to given scene for current user
|
|
@@ -136,8 +136,8 @@ class SequenceTaskTypesResource(Resource):
|
|
|
136
136
|
name: sequence_id
|
|
137
137
|
required: True
|
|
138
138
|
type: string
|
|
139
|
-
format:
|
|
140
|
-
|
|
139
|
+
format: uuid
|
|
140
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
141
141
|
responses:
|
|
142
142
|
200:
|
|
143
143
|
description: Tasks related to given sequence for current user
|
|
@@ -164,14 +164,14 @@ class AssetTypeAssetsResource(Resource):
|
|
|
164
164
|
name: project_id
|
|
165
165
|
required: True
|
|
166
166
|
type: string
|
|
167
|
-
format:
|
|
168
|
-
|
|
167
|
+
format: uuid
|
|
168
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
169
169
|
- in: path
|
|
170
170
|
name: asset_type_id
|
|
171
171
|
required: True
|
|
172
172
|
type: string
|
|
173
|
-
format:
|
|
174
|
-
|
|
173
|
+
format: uuid
|
|
174
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
175
175
|
responses:
|
|
176
176
|
200:
|
|
177
177
|
description: Assets of which type is given asset type and are
|
|
@@ -222,8 +222,8 @@ class ProjectSequencesResource(Resource):
|
|
|
222
222
|
name: project_id
|
|
223
223
|
required: True
|
|
224
224
|
type: string
|
|
225
|
-
format:
|
|
226
|
-
|
|
225
|
+
format: uuid
|
|
226
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
227
227
|
responses:
|
|
228
228
|
200:
|
|
229
229
|
description: Sequences related to given project
|
|
@@ -250,8 +250,8 @@ class ProjectEpisodesResource(Resource):
|
|
|
250
250
|
name: project_id
|
|
251
251
|
required: True
|
|
252
252
|
type: string
|
|
253
|
-
format:
|
|
254
|
-
|
|
253
|
+
format: uuid
|
|
254
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
255
255
|
responses:
|
|
256
256
|
200:
|
|
257
257
|
description: Episodes related to given project
|
|
@@ -278,8 +278,8 @@ class ProjectAssetTypesResource(Resource):
|
|
|
278
278
|
name: project_id
|
|
279
279
|
required: True
|
|
280
280
|
type: string
|
|
281
|
-
format:
|
|
282
|
-
|
|
281
|
+
format: uuid
|
|
282
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
283
283
|
responses:
|
|
284
284
|
200:
|
|
285
285
|
description: Asset types related to given project
|
|
@@ -306,8 +306,8 @@ class SequenceShotsResource(Resource):
|
|
|
306
306
|
name: sequence_id
|
|
307
307
|
required: True
|
|
308
308
|
type: string
|
|
309
|
-
format:
|
|
310
|
-
|
|
309
|
+
format: uuid
|
|
310
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
311
311
|
responses:
|
|
312
312
|
200:
|
|
313
313
|
description: Shots related to given sequence
|
|
@@ -334,8 +334,8 @@ class SequenceScenesResource(Resource):
|
|
|
334
334
|
name: sequence_id
|
|
335
335
|
required: True
|
|
336
336
|
type: string
|
|
337
|
-
format:
|
|
338
|
-
|
|
337
|
+
format: uuid
|
|
338
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
339
339
|
responses:
|
|
340
340
|
200:
|
|
341
341
|
description: Scenes related to given sequence
|
|
@@ -360,8 +360,8 @@ class ShotTasksResource(Resource):
|
|
|
360
360
|
name: shot_id
|
|
361
361
|
required: True
|
|
362
362
|
type: string
|
|
363
|
-
format:
|
|
364
|
-
|
|
363
|
+
format: uuid
|
|
364
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
365
365
|
responses:
|
|
366
366
|
200:
|
|
367
367
|
description: Tasks related to given shot
|
|
@@ -386,8 +386,8 @@ class SceneTasksResource(Resource):
|
|
|
386
386
|
name: scene_id
|
|
387
387
|
required: True
|
|
388
388
|
type: string
|
|
389
|
-
format:
|
|
390
|
-
|
|
389
|
+
format: uuid
|
|
390
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
391
391
|
responses:
|
|
392
392
|
200:
|
|
393
393
|
description: Tasks related to given scene
|
|
@@ -412,8 +412,8 @@ class SequenceTasksResource(Resource):
|
|
|
412
412
|
name: sequence_id
|
|
413
413
|
required: True
|
|
414
414
|
type: string
|
|
415
|
-
format:
|
|
416
|
-
|
|
415
|
+
format: uuid
|
|
416
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
417
417
|
responses:
|
|
418
418
|
200:
|
|
419
419
|
description: Tasks related to given sequence
|
|
@@ -509,7 +509,7 @@ class FiltersResource(Resource, ArgsMixin):
|
|
|
509
509
|
name: name
|
|
510
510
|
required: True
|
|
511
511
|
type: string
|
|
512
|
-
|
|
512
|
+
example: Name of filter
|
|
513
513
|
- in: formData
|
|
514
514
|
name: query
|
|
515
515
|
required: True
|
|
@@ -526,7 +526,7 @@ class FiltersResource(Resource, ArgsMixin):
|
|
|
526
526
|
name: project_id
|
|
527
527
|
required: True
|
|
528
528
|
type: string
|
|
529
|
-
format:
|
|
529
|
+
format: uuid
|
|
530
530
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
531
531
|
responses:
|
|
532
532
|
201:
|
|
@@ -580,8 +580,8 @@ class FilterResource(Resource, ArgsMixin):
|
|
|
580
580
|
name: filter_id
|
|
581
581
|
required: True
|
|
582
582
|
type: string
|
|
583
|
-
format:
|
|
584
|
-
|
|
583
|
+
format: uuid
|
|
584
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
585
585
|
responses:
|
|
586
586
|
200:
|
|
587
587
|
description: Given filter with updated data.
|
|
@@ -613,8 +613,8 @@ class FilterResource(Resource, ArgsMixin):
|
|
|
613
613
|
name: filter_id
|
|
614
614
|
required: True
|
|
615
615
|
type: string
|
|
616
|
-
format:
|
|
617
|
-
|
|
616
|
+
format: uuid
|
|
617
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
618
618
|
responses:
|
|
619
619
|
204:
|
|
620
620
|
description: Empty response
|
|
@@ -653,7 +653,7 @@ class FilterGroupsResource(Resource, ArgsMixin):
|
|
|
653
653
|
name: name
|
|
654
654
|
required: True
|
|
655
655
|
type: string
|
|
656
|
-
|
|
656
|
+
example: Name of filter
|
|
657
657
|
- in: formData
|
|
658
658
|
name: color
|
|
659
659
|
required: True
|
|
@@ -674,12 +674,12 @@ class FilterGroupsResource(Resource, ArgsMixin):
|
|
|
674
674
|
name: project_id
|
|
675
675
|
required: True
|
|
676
676
|
type: string
|
|
677
|
-
format:
|
|
677
|
+
format: uuid
|
|
678
678
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
679
679
|
- in: formData
|
|
680
680
|
name: department_id
|
|
681
681
|
required: False
|
|
682
|
-
format:
|
|
682
|
+
format: uuid
|
|
683
683
|
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
684
684
|
responses:
|
|
685
685
|
201:
|
|
@@ -744,30 +744,30 @@ class FilterGroupResource(Resource, ArgsMixin):
|
|
|
744
744
|
name: filter_id
|
|
745
745
|
required: True
|
|
746
746
|
type: string
|
|
747
|
-
format:
|
|
748
|
-
|
|
747
|
+
format: uuid
|
|
748
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
749
749
|
- in: formData
|
|
750
750
|
name: name
|
|
751
751
|
type: string
|
|
752
|
-
|
|
752
|
+
example: Name of the filter group
|
|
753
753
|
- in: formData
|
|
754
754
|
name: color
|
|
755
755
|
type: string
|
|
756
|
-
|
|
756
|
+
example: Color of the filter group
|
|
757
757
|
- in: formData
|
|
758
758
|
name: is_shared
|
|
759
759
|
type: boolean
|
|
760
|
-
|
|
760
|
+
example: True
|
|
761
761
|
- in: formData
|
|
762
762
|
name: project_id
|
|
763
763
|
type: string
|
|
764
|
-
format:
|
|
765
|
-
|
|
764
|
+
format: uuid
|
|
765
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
766
766
|
- in: formData
|
|
767
767
|
name: department_id
|
|
768
768
|
type: string
|
|
769
|
-
format:
|
|
770
|
-
|
|
769
|
+
format: uuid
|
|
770
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
771
771
|
responses:
|
|
772
772
|
200:
|
|
773
773
|
description: Given filter group with updated data
|
|
@@ -797,8 +797,8 @@ class FilterGroupResource(Resource, ArgsMixin):
|
|
|
797
797
|
name: filter_id
|
|
798
798
|
required: True
|
|
799
799
|
type: string
|
|
800
|
-
format:
|
|
801
|
-
|
|
800
|
+
format: uuid
|
|
801
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
802
802
|
responses:
|
|
803
803
|
204:
|
|
804
804
|
description: Empty response
|
|
@@ -839,7 +839,7 @@ class DesktopLoginLogsResource(Resource, ArgsMixin):
|
|
|
839
839
|
name: date
|
|
840
840
|
type: string
|
|
841
841
|
format: date
|
|
842
|
-
|
|
842
|
+
example: "2022-07-12"
|
|
843
843
|
responses:
|
|
844
844
|
201:
|
|
845
845
|
description: Desktop login log created
|
|
@@ -866,12 +866,12 @@ class NotificationsResource(Resource, ArgsMixin):
|
|
|
866
866
|
name: after
|
|
867
867
|
type: string
|
|
868
868
|
format: date
|
|
869
|
-
|
|
869
|
+
example: "2022-07-12"
|
|
870
870
|
- in: formData
|
|
871
871
|
name: before
|
|
872
872
|
type: string
|
|
873
873
|
format: date
|
|
874
|
-
|
|
874
|
+
example: "2022-07-12"
|
|
875
875
|
responses:
|
|
876
876
|
200:
|
|
877
877
|
description: 100 last user notifications
|
|
@@ -929,8 +929,8 @@ class NotificationResource(Resource, ArgsMixin):
|
|
|
929
929
|
name: notification_id
|
|
930
930
|
required: True
|
|
931
931
|
type: string
|
|
932
|
-
format:
|
|
933
|
-
|
|
932
|
+
format: uuid
|
|
933
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
934
934
|
|
|
935
935
|
responses:
|
|
936
936
|
200:
|
|
@@ -949,8 +949,8 @@ class NotificationResource(Resource, ArgsMixin):
|
|
|
949
949
|
name: notification_id
|
|
950
950
|
required: True
|
|
951
951
|
type: string
|
|
952
|
-
format:
|
|
953
|
-
|
|
952
|
+
format: uuid
|
|
953
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
954
954
|
responses:
|
|
955
955
|
200:
|
|
956
956
|
description: Notification
|
|
@@ -991,8 +991,8 @@ class HasTaskSubscribedResource(Resource):
|
|
|
991
991
|
name: task_id
|
|
992
992
|
required: True
|
|
993
993
|
type: string
|
|
994
|
-
format:
|
|
995
|
-
|
|
994
|
+
format: uuid
|
|
995
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
996
996
|
responses:
|
|
997
997
|
200:
|
|
998
998
|
description: True if current user has subscribed to given task,
|
|
@@ -1021,8 +1021,8 @@ class TaskSubscribeResource(Resource):
|
|
|
1021
1021
|
name: task_id
|
|
1022
1022
|
required: True
|
|
1023
1023
|
type: string
|
|
1024
|
-
format:
|
|
1025
|
-
|
|
1024
|
+
format: uuid
|
|
1025
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1026
1026
|
responses:
|
|
1027
1027
|
201:
|
|
1028
1028
|
description: Subscription entry created
|
|
@@ -1049,8 +1049,8 @@ class TaskUnsubscribeResource(Resource):
|
|
|
1049
1049
|
name: task_id
|
|
1050
1050
|
required: True
|
|
1051
1051
|
type: string
|
|
1052
|
-
format:
|
|
1053
|
-
|
|
1052
|
+
format: uuid
|
|
1053
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1054
1054
|
responses:
|
|
1055
1055
|
204:
|
|
1056
1056
|
description: Subscription entry removed
|
|
@@ -1076,14 +1076,14 @@ class HasSequenceSubscribedResource(Resource):
|
|
|
1076
1076
|
name: sequence_id
|
|
1077
1077
|
required: True
|
|
1078
1078
|
type: string
|
|
1079
|
-
format:
|
|
1080
|
-
|
|
1079
|
+
format: uuid
|
|
1080
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1081
1081
|
- in: path
|
|
1082
1082
|
name: task_type_id
|
|
1083
1083
|
required: True
|
|
1084
1084
|
type: string
|
|
1085
|
-
format:
|
|
1086
|
-
|
|
1085
|
+
format: uuid
|
|
1086
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1087
1087
|
responses:
|
|
1088
1088
|
200:
|
|
1089
1089
|
description: True if current user has subscribed to given
|
|
@@ -1115,14 +1115,14 @@ class SequenceSubscribeResource(Resource):
|
|
|
1115
1115
|
name: sequence_id
|
|
1116
1116
|
required: True
|
|
1117
1117
|
type: string
|
|
1118
|
-
format:
|
|
1119
|
-
|
|
1118
|
+
format: uuid
|
|
1119
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1120
1120
|
- in: path
|
|
1121
1121
|
name: task_type_id
|
|
1122
1122
|
required: True
|
|
1123
1123
|
type: string
|
|
1124
|
-
format:
|
|
1125
|
-
|
|
1124
|
+
format: uuid
|
|
1125
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1126
1126
|
responses:
|
|
1127
1127
|
201:
|
|
1128
1128
|
description: Subscription entry created
|
|
@@ -1150,14 +1150,14 @@ class SequenceUnsubscribeResource(Resource):
|
|
|
1150
1150
|
name: sequence_id
|
|
1151
1151
|
required: True
|
|
1152
1152
|
type: string
|
|
1153
|
-
format:
|
|
1154
|
-
|
|
1153
|
+
format: uuid
|
|
1154
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1155
1155
|
- in: path
|
|
1156
1156
|
name: task_type_id
|
|
1157
1157
|
required: True
|
|
1158
1158
|
type: string
|
|
1159
|
-
format:
|
|
1160
|
-
|
|
1159
|
+
format: uuid
|
|
1160
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1161
1161
|
responses:
|
|
1162
1162
|
204:
|
|
1163
1163
|
description: Subscription entry removed
|
|
@@ -1184,14 +1184,14 @@ class SequenceSubscriptionsResource(Resource):
|
|
|
1184
1184
|
name: project_id
|
|
1185
1185
|
required: True
|
|
1186
1186
|
type: string
|
|
1187
|
-
format:
|
|
1188
|
-
|
|
1187
|
+
format: uuid
|
|
1188
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1189
1189
|
- in: path
|
|
1190
1190
|
name: task_type_id
|
|
1191
1191
|
required: True
|
|
1192
1192
|
type: string
|
|
1193
|
-
format:
|
|
1194
|
-
|
|
1193
|
+
format: uuid
|
|
1194
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1195
1195
|
responses:
|
|
1196
1196
|
200:
|
|
1197
1197
|
description: List of sequence ids to which the current user
|
|
@@ -1264,14 +1264,14 @@ class TaskTimeSpentResource(Resource):
|
|
|
1264
1264
|
name: task_id
|
|
1265
1265
|
required: True
|
|
1266
1266
|
type: string
|
|
1267
|
-
format:
|
|
1268
|
-
|
|
1267
|
+
format: uuid
|
|
1268
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1269
1269
|
- in: path
|
|
1270
1270
|
name: date
|
|
1271
1271
|
required: True
|
|
1272
1272
|
type: string
|
|
1273
1273
|
format: date
|
|
1274
|
-
|
|
1274
|
+
example: "2022-07-12"
|
|
1275
1275
|
responses:
|
|
1276
1276
|
200:
|
|
1277
1277
|
description: Time spents for current user and given date
|
|
@@ -1304,7 +1304,7 @@ class DayOffResource(Resource):
|
|
|
1304
1304
|
required: True
|
|
1305
1305
|
type: string
|
|
1306
1306
|
format: date
|
|
1307
|
-
|
|
1307
|
+
example: "2022-07-12"
|
|
1308
1308
|
responses:
|
|
1309
1309
|
200:
|
|
1310
1310
|
description: Day off object for current user and given date
|
|
@@ -1380,8 +1380,8 @@ class JoinChatResource(Resource):
|
|
|
1380
1380
|
name: entity_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
|
201:
|
|
1387
1387
|
description: Chat joined
|
|
@@ -1403,8 +1403,8 @@ class JoinChatResource(Resource):
|
|
|
1403
1403
|
name: entity_id
|
|
1404
1404
|
required: True
|
|
1405
1405
|
type: string
|
|
1406
|
-
format:
|
|
1407
|
-
|
|
1406
|
+
format: uuid
|
|
1407
|
+
example: a24a6ea4-ce75-4665-a070-57453082c25
|
|
1408
1408
|
responses:
|
|
1409
1409
|
204:
|
|
1410
1410
|
description: empty response
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zou
|
|
3
|
-
Version: 0.20.
|
|
3
|
+
Version: 0.20.68
|
|
4
4
|
Summary: API to store and manage the data of your animation production
|
|
5
5
|
Home-page: https://zou.cg-wire.com
|
|
6
6
|
Author: CG Wire
|
|
@@ -88,7 +88,7 @@ Requires-Dist: pytest==8.4.1; extra == "test"
|
|
|
88
88
|
Provides-Extra: monitoring
|
|
89
89
|
Requires-Dist: prometheus-flask-exporter==0.23.2; extra == "monitoring"
|
|
90
90
|
Requires-Dist: pygelf==0.4.3; extra == "monitoring"
|
|
91
|
-
Requires-Dist: sentry-sdk==2.35.
|
|
91
|
+
Requires-Dist: sentry-sdk==2.35.1; extra == "monitoring"
|
|
92
92
|
Provides-Extra: lint
|
|
93
93
|
Requires-Dist: autoflake==2.3.1; extra == "lint"
|
|
94
94
|
Requires-Dist: black==25.1.0; extra == "lint"
|