zou 0.20.82__py3-none-any.whl → 0.20.83__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 +1060 -153
- zou/app/blueprints/auth/resources.py +368 -238
- zou/app/blueprints/breakdown/resources.py +584 -94
- zou/app/blueprints/chats/resources.py +176 -37
- zou/app/blueprints/comments/resources.py +387 -125
- zou/app/blueprints/concepts/resources.py +428 -63
- zou/app/blueprints/departments/resources.py +302 -68
- zou/app/blueprints/edits/resources.py +651 -81
- zou/app/blueprints/entities/resources.py +104 -39
- zou/app/blueprints/events/resources.py +96 -8
- zou/app/blueprints/index/resources.py +49 -42
- zou/app/blueprints/news/resources.py +45 -27
- zou/app/blueprints/user/resources.py +1808 -215
- zou/app/swagger.py +100 -27
- {zou-0.20.82.dist-info → zou-0.20.83.dist-info}/METADATA +1 -1
- {zou-0.20.82.dist-info → zou-0.20.83.dist-info}/RECORD +21 -21
- {zou-0.20.82.dist-info → zou-0.20.83.dist-info}/WHEEL +0 -0
- {zou-0.20.82.dist-info → zou-0.20.83.dist-info}/entry_points.txt +0 -0
- {zou-0.20.82.dist-info → zou-0.20.83.dist-info}/licenses/LICENSE +0 -0
- {zou-0.20.82.dist-info → zou-0.20.83.dist-info}/top_level.txt +0 -0
zou/app/swagger.py
CHANGED
|
@@ -29,14 +29,18 @@ An easy to use Python client to access this API is available:
|
|
|
29
29
|
|
|
30
30
|
## Authentication<div class="auth">
|
|
31
31
|
|
|
32
|
-
<p>Before you can use any of the endpoints
|
|
33
|
-
you will
|
|
32
|
+
<p>Before you can use any of the endpoints outlined below,
|
|
33
|
+
you will need to obtain a JWT token to authorize your requests.
|
|
34
34
|
</p>
|
|
35
35
|
|
|
36
36
|
<p>
|
|
37
|
-
You will find
|
|
37
|
+
You will find detailed information on how to retrieve authentication tokens in the
|
|
38
38
|
[Zou documentation](https://zou.cg-wire.com/api/).
|
|
39
39
|
</p>
|
|
40
|
+
|
|
41
|
+
<p>
|
|
42
|
+
All API requests require authentication via JWT tokens passed in the Authorization header.
|
|
43
|
+
</p>
|
|
40
44
|
"""
|
|
41
45
|
|
|
42
46
|
swagger_template = {
|
|
@@ -73,30 +77,99 @@ swagger_template = {
|
|
|
73
77
|
},
|
|
74
78
|
"security": [{"JWT Authorization": []}],
|
|
75
79
|
"tags": [
|
|
76
|
-
{
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
{
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
{
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
{
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
{
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
{
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
80
|
+
{
|
|
81
|
+
"name": "Authentication",
|
|
82
|
+
"description": "User authentication, login, logout, and session management",
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "Assets",
|
|
86
|
+
"description": "Production asset management including 3D models, textures, and media files",
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "Breakdown",
|
|
90
|
+
"description": "Shot breakdown management and asset-to-shot relationships",
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "Chat",
|
|
94
|
+
"description": "Real-time messaging and communication features",
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "Comments",
|
|
98
|
+
"description": "Task comments, feedback, and collaboration tools",
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "Concepts",
|
|
102
|
+
"description": "Concept art and design asset management",
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "Crud",
|
|
106
|
+
"description": "Generic CRUD operations for various data models",
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "Departments",
|
|
110
|
+
"description": "Department management and organizational structure",
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"name": "Edits",
|
|
114
|
+
"description": "Edit management for post-production workflows",
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "Entities",
|
|
118
|
+
"description": "Generic entity management and relationships",
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "Events",
|
|
122
|
+
"description": "Event streaming and real-time notifications",
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "Export",
|
|
126
|
+
"description": "Data export functionality for reports and integrations",
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "Files",
|
|
130
|
+
"description": "File management, uploads, and storage operations",
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "Import",
|
|
134
|
+
"description": "Data import from external sources and file formats",
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "Index",
|
|
138
|
+
"description": "System status, health checks, and configuration",
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "News",
|
|
142
|
+
"description": "Production news feed and activity tracking",
|
|
143
|
+
},
|
|
144
|
+
{"name": "Persons", "description": "User and team member management"},
|
|
145
|
+
{
|
|
146
|
+
"name": "Playlists",
|
|
147
|
+
"description": "Media playlists and review sessions",
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "Previews",
|
|
151
|
+
"description": "Preview generation and thumbnail management",
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"name": "Projects",
|
|
155
|
+
"description": "Project management and production organization",
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "Search",
|
|
159
|
+
"description": "Search functionality across all production data",
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "Shots",
|
|
163
|
+
"description": "Shot management, sequences, and episodes",
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "Tasks",
|
|
167
|
+
"description": "Task management, assignments, and progress tracking",
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"name": "User",
|
|
171
|
+
"description": "User-specific data and personal workspace management",
|
|
172
|
+
},
|
|
100
173
|
],
|
|
101
174
|
"definitions": {
|
|
102
175
|
" Common fields for all model instances": {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
zou/__init__.py,sha256=
|
|
1
|
+
zou/__init__.py,sha256=3hgXCNBX0Y8KkyzwzhvXKPdLif8moO6RiUOZUoBfLC8,24
|
|
2
2
|
zou/cli.py,sha256=N9FyrL4TDgIiCUa-I3xIzOgiVLM14kz8_QLQ48y51oE,22767
|
|
3
3
|
zou/debug.py,sha256=1fawPbkD4wn0Y9Gk0BiBFSa-CQe5agFi8R9uJYl2Uyk,520
|
|
4
4
|
zou/event_stream.py,sha256=9O1PE_vDW8p3yfHJNSZ8w0ybD-660x8oGN0izgJdTjM,8575
|
|
@@ -7,20 +7,20 @@ zou/app/__init__.py,sha256=zGmaBGBHSS_Px34I3_WZmcse62G_AZJArjm4F6TwmRk,7100
|
|
|
7
7
|
zou/app/api.py,sha256=pg6_EPyy7EEE6Z3ycDsvovveIZCS5oHUJ82PEzyF5_U,3855
|
|
8
8
|
zou/app/config.py,sha256=6Yka0ox6GFOOYZavSDxAiFAslgFMJs12wpypPDjxjXs,6820
|
|
9
9
|
zou/app/mixin.py,sha256=MGRrwLLRjWQtXHZ1YTaMgR5Jc8khnOrFqkvy2hzP5QY,5211
|
|
10
|
-
zou/app/swagger.py,sha256=
|
|
10
|
+
zou/app/swagger.py,sha256=jFwyp3wefTgaFvxQjcZMvDU8OAXiDfAJgBQU3eB9yA8,56740
|
|
11
11
|
zou/app/blueprints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
12
|
zou/app/blueprints/assets/__init__.py,sha256=T2zhDagHjXF6jRwOQ8vqokZTkBHyY7XtTI0Rlooamjs,2931
|
|
13
|
-
zou/app/blueprints/assets/resources.py,sha256=
|
|
13
|
+
zou/app/blueprints/assets/resources.py,sha256=bnoa1sqJvSrF893a7soXczQsdlHYuzBxhdhKFAte2L4,64756
|
|
14
14
|
zou/app/blueprints/auth/__init__.py,sha256=xP874bMWUnLIirOPSEbpe-Q2fBBQrxZGKd0tLZmNJXk,1128
|
|
15
|
-
zou/app/blueprints/auth/resources.py,sha256=
|
|
15
|
+
zou/app/blueprints/auth/resources.py,sha256=uwpSwt8do-BnW9jsLrAonnQDeIHQZLhAjzcg8YFV37s,51564
|
|
16
16
|
zou/app/blueprints/breakdown/__init__.py,sha256=Dp6GWSGxxWIedpyzTTEKpCRUYEo8oVNVyQhwNvTMmQM,1888
|
|
17
|
-
zou/app/blueprints/breakdown/resources.py,sha256=
|
|
17
|
+
zou/app/blueprints/breakdown/resources.py,sha256=t9eq0G9dkmTo7lIz9utQHOoYiyLODHIBXW8LLT758h4,34592
|
|
18
18
|
zou/app/blueprints/chats/__init__.py,sha256=YGmwGvddg3MgSYVIh-hmkX8t2em9_LblxBeJzFqFJD4,558
|
|
19
|
-
zou/app/blueprints/chats/resources.py,sha256=
|
|
19
|
+
zou/app/blueprints/chats/resources.py,sha256=siE5nP6fPEmzeULEjZwufydxWSwFg1Pmc9xQbaOOXkQ,11519
|
|
20
20
|
zou/app/blueprints/comments/__init__.py,sha256=WqpJ7-_dK1cInGTFJAxQ7syZtPCotwq2oO20UEnk1h4,1532
|
|
21
|
-
zou/app/blueprints/comments/resources.py,sha256=
|
|
21
|
+
zou/app/blueprints/comments/resources.py,sha256=pqvfIGijrULNf5JIbHJQ_2op2Y_jt3Bw6Yr0-UHVunA,31635
|
|
22
22
|
zou/app/blueprints/concepts/__init__.py,sha256=sP_P4mfYvfMcgeE6MHZYP3eD0Lz0Lwit5-CFuVnA-Jg,894
|
|
23
|
-
zou/app/blueprints/concepts/resources.py,sha256=
|
|
23
|
+
zou/app/blueprints/concepts/resources.py,sha256=sodXIp6pvbz7r2AkNCTzPVvXeVxKsD23ds08IAQ9o8c,26215
|
|
24
24
|
zou/app/blueprints/crud/__init__.py,sha256=bzjCUL2BAYuufiWcP1n83JAp1TKXEMqTeN6wMOha76M,9667
|
|
25
25
|
zou/app/blueprints/crud/asset_instance.py,sha256=va3mw79aPKry2m9PYAmjVePTScigewDjwD1c672f0y0,1335
|
|
26
26
|
zou/app/blueprints/crud/attachment_file.py,sha256=-yur0V16BOTvpdqtNymDTHEugwRPgGtWccdXotpvYZ4,1193
|
|
@@ -68,13 +68,13 @@ zou/app/blueprints/crud/task_type.py,sha256=9DUtBaNZqC0yHmunKX_CaUyo-bHjNTX3B-g4
|
|
|
68
68
|
zou/app/blueprints/crud/time_spent.py,sha256=9tfoKJ77OEDTnpKHshO3UMDz_KCoyLq1CWquInm5DY0,3057
|
|
69
69
|
zou/app/blueprints/crud/working_file.py,sha256=hatXeZG5gJk9t4_37rnXpo1fgADAeOLVH0obhH_D3lE,3201
|
|
70
70
|
zou/app/blueprints/departments/__init__.py,sha256=JOm02h7xBusV3MIKrjOtH6rjSD0EOH-r0fxMVmqpVdU,1134
|
|
71
|
-
zou/app/blueprints/departments/resources.py,sha256=
|
|
71
|
+
zou/app/blueprints/departments/resources.py,sha256=0Xpl1z5XyXKfgNDBODHn6QsThyBjs9kpzMM3rkJ6n58,18093
|
|
72
72
|
zou/app/blueprints/edits/__init__.py,sha256=jR6dURRPHZJcU4DVFsNghLW1iGm3CwEzs1LPbdof158,1152
|
|
73
|
-
zou/app/blueprints/edits/resources.py,sha256=
|
|
73
|
+
zou/app/blueprints/edits/resources.py,sha256=TLdajQm-b9q-QjBo__NeX95VvxUCLUovj34R0N6G07I,37810
|
|
74
74
|
zou/app/blueprints/entities/__init__.py,sha256=v-qt2dl3s3tmK_ur-cpDHNPmcL0A6xCybczyuidjUCo,713
|
|
75
|
-
zou/app/blueprints/entities/resources.py,sha256=
|
|
75
|
+
zou/app/blueprints/entities/resources.py,sha256=KDvGz7xtEkG5cE_oe8ivdX_NqmBhQcpV6Em35WX8zIY,11262
|
|
76
76
|
zou/app/blueprints/events/__init__.py,sha256=Vb0gO7Bpj_2Dpx9hhKd2SZW2qqnJrFVoDpJjFOmoMZw,394
|
|
77
|
-
zou/app/blueprints/events/resources.py,sha256=
|
|
77
|
+
zou/app/blueprints/events/resources.py,sha256=K85om5n0WjBahUp2vE56Mf1VLExrdCLLQXL2C_lE0ic,7119
|
|
78
78
|
zou/app/blueprints/export/__init__.py,sha256=W3U93VD-dHlozFVSt_RDvP7h7K_FqgHPLA__W5H1DkE,1574
|
|
79
79
|
zou/app/blueprints/export/csv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
80
|
zou/app/blueprints/export/csv/assets.py,sha256=hJSntIw_sDjzmjbhuHs5nwt5So3ALdEvufJkPUJK5kw,5878
|
|
@@ -91,9 +91,9 @@ zou/app/blueprints/export/csv/time_spents.py,sha256=yYPtilOxfQD5mBwyh9h-PbTQBpab
|
|
|
91
91
|
zou/app/blueprints/files/__init__.py,sha256=7Wty30JW2OXIn-tBFXOWWmPuHnsnxPpH3jNtHvvr9tY,3987
|
|
92
92
|
zou/app/blueprints/files/resources.py,sha256=FxHpmTX6V-qyJqwDlLV4ZSwRKDXJpaLl4MAYukPmFTY,82693
|
|
93
93
|
zou/app/blueprints/index/__init__.py,sha256=Dh3oQiirpg8RCkfVOuk3irIjSvUvuRf0jPxE6oGubz0,828
|
|
94
|
-
zou/app/blueprints/index/resources.py,sha256=
|
|
94
|
+
zou/app/blueprints/index/resources.py,sha256=MwgaolpjsuR6OoGLG-PoPXSFAEnE_kvrB4Mx-r0G_rw,15371
|
|
95
95
|
zou/app/blueprints/news/__init__.py,sha256=HxBXjC15dVbotNAZ0CLf02iwUjxJr20kgf8_kT_9nwM,505
|
|
96
|
-
zou/app/blueprints/news/resources.py,sha256=
|
|
96
|
+
zou/app/blueprints/news/resources.py,sha256=c8h_7Pv9SnrmxMbSe6h4bnASGIpos9Bm1aMrScTyCBg,12804
|
|
97
97
|
zou/app/blueprints/persons/__init__.py,sha256=0cnHHw3K_8OEMm0qOi3wKVomSAg9IJSnVjAXabMeHks,3893
|
|
98
98
|
zou/app/blueprints/persons/resources.py,sha256=adKhPS3-ATN6gCVBuCQGpfJPtBFJEo0GoOfGB3QJqfU,46701
|
|
99
99
|
zou/app/blueprints/playlists/__init__.py,sha256=gI6dV102RwsztOnUDk53BErYd9zrjA43gfNgGeYwfFU,1700
|
|
@@ -137,7 +137,7 @@ zou/app/blueprints/source/shotgun/versions.py,sha256=8Mb35e5p3FLbbiu6AZb9tJErDKz
|
|
|
137
137
|
zou/app/blueprints/tasks/__init__.py,sha256=udtTZJVViawRAPu8dO_OoyVzQTheLYWTHeTnrC-2RDA,4331
|
|
138
138
|
zou/app/blueprints/tasks/resources.py,sha256=WVNu30pj5snz1TXjla5ZzED2CkToTNAsmJF0RcYnYBk,62938
|
|
139
139
|
zou/app/blueprints/user/__init__.py,sha256=H9zCHcVobC6jq6dTToXKAjnZmDA0a9gChHiIP3BcZsc,4586
|
|
140
|
-
zou/app/blueprints/user/resources.py,sha256=
|
|
140
|
+
zou/app/blueprints/user/resources.py,sha256=7nNkgVsZOCGLwlKCdtnVdkJGoCBjMGawGCFjFo26i1o,123927
|
|
141
141
|
zou/app/file_trees/default.json,sha256=ryUrEmQYE8B_WkzCoQLgmem3N9yNwMIWx9G8p3HfG9o,2310
|
|
142
142
|
zou/app/file_trees/simple.json,sha256=VBI43Z3rjQxtTpVCq3ktUgS0UB8x-aTowKL9LXuXCFI,3149
|
|
143
143
|
zou/app/indexer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -473,9 +473,9 @@ zou/remote/normalize_movie.py,sha256=zNfEY3N1UbAHZfddGONTg2Sff3ieLVWd4dfZa1dpnes
|
|
|
473
473
|
zou/remote/playlist.py,sha256=AsDo0bgYhDcd6DfNRV6r6Jj3URWwavE2ZN3VkKRPbLU,3293
|
|
474
474
|
zou/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
475
475
|
zou/utils/movie.py,sha256=d67fIL9dVBKt-E_qCGXRbNNdbJaJR5sHvZeX3hf8ldE,16559
|
|
476
|
-
zou-0.20.
|
|
477
|
-
zou-0.20.
|
|
478
|
-
zou-0.20.
|
|
479
|
-
zou-0.20.
|
|
480
|
-
zou-0.20.
|
|
481
|
-
zou-0.20.
|
|
476
|
+
zou-0.20.83.dist-info/licenses/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
|
|
477
|
+
zou-0.20.83.dist-info/METADATA,sha256=vHdi92vUDpaQP4rC9P7FLC4wUdQnbZXBYuFyva6pW3M,6698
|
|
478
|
+
zou-0.20.83.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
479
|
+
zou-0.20.83.dist-info/entry_points.txt,sha256=PelQoIx3qhQ_Tmne7wrLY-1m2izuzgpwokoURwSohy4,130
|
|
480
|
+
zou-0.20.83.dist-info/top_level.txt,sha256=4S7G_jk4MzpToeDItHGjPhHx_fRdX52zJZWTD4SL54g,4
|
|
481
|
+
zou-0.20.83.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|