pixelarraythirdparty 1.0.7__py3-none-any.whl → 1.0.8__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.
- pixelarraythirdparty/__init__.py +2 -1
- pixelarraythirdparty/client.py +18 -29
- pixelarraythirdparty/cron/cron.py +37 -37
- pixelarraythirdparty/filestorage/__init__.py +6 -0
- pixelarraythirdparty/filestorage/filestorage.py +286 -0
- pixelarraythirdparty/order/order.py +37 -398
- pixelarraythirdparty/product/product.py +46 -47
- pixelarraythirdparty/user/user.py +44 -44
- {pixelarraythirdparty-1.0.7.dist-info → pixelarraythirdparty-1.0.8.dist-info}/METADATA +1 -1
- pixelarraythirdparty-1.0.8.dist-info/RECORD +17 -0
- pixelarraythirdparty-1.0.7.dist-info/RECORD +0 -15
- {pixelarraythirdparty-1.0.7.dist-info → pixelarraythirdparty-1.0.8.dist-info}/WHEEL +0 -0
- {pixelarraythirdparty-1.0.7.dist-info → pixelarraythirdparty-1.0.8.dist-info}/licenses/LICENSE +0 -0
- {pixelarraythirdparty-1.0.7.dist-info → pixelarraythirdparty-1.0.8.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
from pixelarraythirdparty.client import
|
|
1
|
+
from pixelarraythirdparty.client import AsyncClient
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
class
|
|
5
|
-
def create_product(
|
|
4
|
+
class ProductManagerAsync(AsyncClient):
|
|
5
|
+
async def create_product(
|
|
6
6
|
self,
|
|
7
7
|
name: str,
|
|
8
8
|
description: str,
|
|
@@ -15,11 +15,11 @@ class ProductManager(Client):
|
|
|
15
15
|
sort_order: int,
|
|
16
16
|
):
|
|
17
17
|
"""
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
创建产品(异步版本)
|
|
19
|
+
|
|
20
20
|
功能说明:
|
|
21
21
|
创建新的产品,支持订阅产品和一次性产品,产品信息包括名称、描述、价格、分类等。
|
|
22
|
-
|
|
22
|
+
|
|
23
23
|
输入参数:
|
|
24
24
|
name (str): 产品名称,必填
|
|
25
25
|
description (str): 产品描述,必填
|
|
@@ -34,7 +34,7 @@ class ProductManager(Client):
|
|
|
34
34
|
- "YEARLY": 年付
|
|
35
35
|
features (str): 产品特性,JSON格式字符串,必填
|
|
36
36
|
sort_order (int): 排序权重,必填
|
|
37
|
-
|
|
37
|
+
|
|
38
38
|
返回字段:
|
|
39
39
|
data (dict): 产品信息
|
|
40
40
|
- id (int): 产品ID
|
|
@@ -50,7 +50,7 @@ class ProductManager(Client):
|
|
|
50
50
|
- created_at (str): 产品创建时间
|
|
51
51
|
- updated_at (str): 产品更新时间
|
|
52
52
|
success (bool): 操作是否成功
|
|
53
|
-
|
|
53
|
+
|
|
54
54
|
异常情况:
|
|
55
55
|
- 产品创建失败:返回错误信息"产品创建失败"
|
|
56
56
|
"""
|
|
@@ -65,12 +65,12 @@ class ProductManager(Client):
|
|
|
65
65
|
"features": features,
|
|
66
66
|
"sort_order": sort_order,
|
|
67
67
|
}
|
|
68
|
-
data, success = self._request("POST", "/api/products/create", json=data)
|
|
68
|
+
data, success = await self._request("POST", "/api/products/create", json=data)
|
|
69
69
|
if not success:
|
|
70
70
|
return {}, False
|
|
71
71
|
return data, True
|
|
72
72
|
|
|
73
|
-
def list_product(
|
|
73
|
+
async def list_product(
|
|
74
74
|
self,
|
|
75
75
|
page: int = 1,
|
|
76
76
|
page_size: int = 10,
|
|
@@ -79,11 +79,11 @@ class ProductManager(Client):
|
|
|
79
79
|
name: str = None,
|
|
80
80
|
):
|
|
81
81
|
"""
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
获取产品列表(异步版本)
|
|
83
|
+
|
|
84
84
|
功能说明:
|
|
85
85
|
分页查询产品列表,支持按状态、分类和名称进行筛选。
|
|
86
|
-
|
|
86
|
+
|
|
87
87
|
输入参数:
|
|
88
88
|
page (int, 可选): 页码,默认为1,最小值为1
|
|
89
89
|
page_size (int, 可选): 每页数量,默认为10,范围为1-1000
|
|
@@ -92,7 +92,7 @@ class ProductManager(Client):
|
|
|
92
92
|
- "INACTIVE": 停用
|
|
93
93
|
category (str, 可选): 产品分类筛选
|
|
94
94
|
name (str, 可选): 产品名称搜索,支持模糊匹配
|
|
95
|
-
|
|
95
|
+
|
|
96
96
|
返回字段:
|
|
97
97
|
data (dict): 产品列表信息
|
|
98
98
|
- products (list): 产品列表
|
|
@@ -112,16 +112,13 @@ class ProductManager(Client):
|
|
|
112
112
|
- page (int): 当前页码
|
|
113
113
|
- page_size (int): 每页数量
|
|
114
114
|
success (bool): 操作是否成功
|
|
115
|
-
|
|
115
|
+
|
|
116
116
|
异常情况:
|
|
117
117
|
- 获取产品列表失败:返回错误信息"获取产品列表失败"
|
|
118
118
|
"""
|
|
119
119
|
params = {
|
|
120
120
|
"page": page,
|
|
121
121
|
"page_size": page_size,
|
|
122
|
-
"status": status,
|
|
123
|
-
"category": category,
|
|
124
|
-
"name": name,
|
|
125
122
|
}
|
|
126
123
|
if status is not None:
|
|
127
124
|
params["status"] = status
|
|
@@ -129,21 +126,21 @@ class ProductManager(Client):
|
|
|
129
126
|
params["category"] = category
|
|
130
127
|
if name is not None:
|
|
131
128
|
params["name"] = name
|
|
132
|
-
data, success = self._request("GET", "/api/products/list", params=params)
|
|
129
|
+
data, success = await self._request("GET", "/api/products/list", params=params)
|
|
133
130
|
if not success:
|
|
134
131
|
return {}, False
|
|
135
132
|
return data, True
|
|
136
133
|
|
|
137
|
-
def get_product_detail(self, product_id: str):
|
|
134
|
+
async def get_product_detail(self, product_id: str):
|
|
138
135
|
"""
|
|
139
|
-
|
|
140
|
-
|
|
136
|
+
获取产品详情(异步版本)
|
|
137
|
+
|
|
141
138
|
功能说明:
|
|
142
139
|
根据产品ID获取产品的详细信息。
|
|
143
|
-
|
|
140
|
+
|
|
144
141
|
输入参数:
|
|
145
142
|
product_id (str): 产品ID,必填
|
|
146
|
-
|
|
143
|
+
|
|
147
144
|
返回字段:
|
|
148
145
|
data (dict): 产品详细信息
|
|
149
146
|
- id (int): 产品ID
|
|
@@ -159,17 +156,17 @@ class ProductManager(Client):
|
|
|
159
156
|
- created_at (str): 产品创建时间
|
|
160
157
|
- updated_at (str): 产品更新时间
|
|
161
158
|
success (bool): 操作是否成功
|
|
162
|
-
|
|
159
|
+
|
|
163
160
|
异常情况:
|
|
164
161
|
- 产品不存在:返回错误信息"产品不存在"
|
|
165
162
|
- 获取产品详情失败:返回错误信息"获取产品详情失败"
|
|
166
163
|
"""
|
|
167
|
-
data, success = self._request("GET", f"/api/products/{product_id}")
|
|
164
|
+
data, success = await self._request("GET", f"/api/products/{product_id}")
|
|
168
165
|
if not success:
|
|
169
166
|
return {}, False
|
|
170
167
|
return data, True
|
|
171
168
|
|
|
172
|
-
def update_product(
|
|
169
|
+
async def update_product(
|
|
173
170
|
self,
|
|
174
171
|
product_id: str,
|
|
175
172
|
name: str,
|
|
@@ -183,11 +180,11 @@ class ProductManager(Client):
|
|
|
183
180
|
sort_order: int,
|
|
184
181
|
):
|
|
185
182
|
"""
|
|
186
|
-
|
|
187
|
-
|
|
183
|
+
更新产品信息(异步版本)
|
|
184
|
+
|
|
188
185
|
功能说明:
|
|
189
186
|
更新指定产品的信息,包括名称、描述、价格、状态等。
|
|
190
|
-
|
|
187
|
+
|
|
191
188
|
输入参数:
|
|
192
189
|
product_id (str): 产品ID,必填
|
|
193
190
|
name (str): 产品名称,必填
|
|
@@ -203,7 +200,7 @@ class ProductManager(Client):
|
|
|
203
200
|
- "YEARLY": 年付
|
|
204
201
|
features (str): 产品特性,JSON格式字符串,必填
|
|
205
202
|
sort_order (int): 排序权重,必填
|
|
206
|
-
|
|
203
|
+
|
|
207
204
|
返回字段:
|
|
208
205
|
data (dict): 更新后的产品信息
|
|
209
206
|
- id (int): 产品ID
|
|
@@ -219,7 +216,7 @@ class ProductManager(Client):
|
|
|
219
216
|
- created_at (str): 产品创建时间
|
|
220
217
|
- updated_at (str): 产品更新时间
|
|
221
218
|
success (bool): 操作是否成功
|
|
222
|
-
|
|
219
|
+
|
|
223
220
|
异常情况:
|
|
224
221
|
- 产品不存在:返回错误信息"产品不存在"
|
|
225
222
|
- 产品更新失败:返回错误信息"产品更新失败"
|
|
@@ -235,53 +232,55 @@ class ProductManager(Client):
|
|
|
235
232
|
"features": features,
|
|
236
233
|
"sort_order": sort_order,
|
|
237
234
|
}
|
|
238
|
-
data, success = self._request(
|
|
235
|
+
data, success = await self._request(
|
|
236
|
+
"PUT", f"/api/products/{product_id}", json=data
|
|
237
|
+
)
|
|
239
238
|
if not success:
|
|
240
239
|
return {}, False
|
|
241
240
|
return data, True
|
|
242
241
|
|
|
243
|
-
def delete_product(self, product_id: str):
|
|
242
|
+
async def delete_product(self, product_id: str):
|
|
244
243
|
"""
|
|
245
|
-
|
|
246
|
-
|
|
244
|
+
删除产品(异步版本)
|
|
245
|
+
|
|
247
246
|
功能说明:
|
|
248
247
|
根据产品ID删除指定的产品记录。
|
|
249
|
-
|
|
248
|
+
|
|
250
249
|
输入参数:
|
|
251
250
|
product_id (str): 产品ID,必填
|
|
252
|
-
|
|
251
|
+
|
|
253
252
|
返回字段:
|
|
254
253
|
data (None): 删除成功时返回None
|
|
255
254
|
success (bool): 操作是否成功
|
|
256
|
-
|
|
255
|
+
|
|
257
256
|
异常情况:
|
|
258
257
|
- 产品不存在:返回错误信息"产品不存在"
|
|
259
258
|
- 删除产品失败:返回错误信息"删除产品失败"
|
|
260
259
|
"""
|
|
261
|
-
data, success = self._request("DELETE", f"/api/products/{product_id}")
|
|
260
|
+
data, success = await self._request("DELETE", f"/api/products/{product_id}")
|
|
262
261
|
if not success:
|
|
263
262
|
return {}, False
|
|
264
263
|
return data, True
|
|
265
264
|
|
|
266
|
-
def get_product_categories(self):
|
|
265
|
+
async def get_product_categories(self):
|
|
267
266
|
"""
|
|
268
|
-
|
|
269
|
-
|
|
267
|
+
获取产品分类列表(异步版本)
|
|
268
|
+
|
|
270
269
|
功能说明:
|
|
271
270
|
获取所有可用的产品分类列表。
|
|
272
|
-
|
|
271
|
+
|
|
273
272
|
输入参数:
|
|
274
273
|
无
|
|
275
|
-
|
|
274
|
+
|
|
276
275
|
返回字段:
|
|
277
276
|
data (dict): 产品分类信息
|
|
278
277
|
- categories (list): 产品分类列表,如["subscription", "service", "addon"]
|
|
279
278
|
success (bool): 操作是否成功
|
|
280
|
-
|
|
279
|
+
|
|
281
280
|
异常情况:
|
|
282
281
|
- 获取产品分类失败:返回错误信息"获取产品分类失败"
|
|
283
282
|
"""
|
|
284
|
-
data, success = self._request("GET", "/api/products/categories/list")
|
|
283
|
+
data, success = await self._request("GET", "/api/products/categories/list")
|
|
285
284
|
if not success:
|
|
286
285
|
return {}, False
|
|
287
286
|
return data, True
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import aiohttp
|
|
2
2
|
from typing import Optional
|
|
3
|
-
from pixelarraythirdparty.client import
|
|
3
|
+
from pixelarraythirdparty.client import AsyncClient
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
class
|
|
7
|
-
def list_user(
|
|
6
|
+
class UserManagerAsync(AsyncClient):
|
|
7
|
+
async def list_user(
|
|
8
8
|
self,
|
|
9
9
|
page: int = 1,
|
|
10
10
|
page_size: int = 10,
|
|
@@ -12,11 +12,11 @@ class UserManager(Client):
|
|
|
12
12
|
is_active: Optional[bool] = None,
|
|
13
13
|
):
|
|
14
14
|
"""
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
获取用户列表(异步版本)
|
|
16
|
+
|
|
17
17
|
功能说明:
|
|
18
18
|
分页查询用户列表,支持按角色和状态进行筛选。仅管理员可访问。
|
|
19
|
-
|
|
19
|
+
|
|
20
20
|
输入参数:
|
|
21
21
|
page (int, 可选): 页码,默认为1,最小值为1
|
|
22
22
|
page_size (int, 可选): 每页数量,默认为10,范围为1-1000
|
|
@@ -24,7 +24,7 @@ class UserManager(Client):
|
|
|
24
24
|
- "admin": 管理员
|
|
25
25
|
- "user": 普通用户
|
|
26
26
|
is_active (bool, 可选): 用户状态筛选,True为激活,False为禁用
|
|
27
|
-
|
|
27
|
+
|
|
28
28
|
返回字段:
|
|
29
29
|
data (dict): 用户列表信息
|
|
30
30
|
- users (list): 用户列表
|
|
@@ -39,7 +39,7 @@ class UserManager(Client):
|
|
|
39
39
|
- page (int): 当前页码
|
|
40
40
|
- page_size (int): 每页数量
|
|
41
41
|
success (bool): 操作是否成功
|
|
42
|
-
|
|
42
|
+
|
|
43
43
|
异常情况:
|
|
44
44
|
- 权限不足:返回错误信息"权限不足"
|
|
45
45
|
- 获取用户列表失败:返回错误信息"获取用户列表失败"
|
|
@@ -49,18 +49,18 @@ class UserManager(Client):
|
|
|
49
49
|
params["role"] = role
|
|
50
50
|
if is_active is not None:
|
|
51
51
|
params["is_active"] = is_active
|
|
52
|
-
data, success = self._request("GET", "/api/users/list", params=params)
|
|
52
|
+
data, success = await self._request("GET", "/api/users/list", params=params)
|
|
53
53
|
if not success:
|
|
54
54
|
return {}, False
|
|
55
55
|
return data, True
|
|
56
56
|
|
|
57
|
-
def create_user(self, username: str, password: str, email: str, role: str):
|
|
57
|
+
async def create_user(self, username: str, password: str, email: str, role: str):
|
|
58
58
|
"""
|
|
59
|
-
|
|
60
|
-
|
|
59
|
+
创建用户(异步版本)
|
|
60
|
+
|
|
61
61
|
功能说明:
|
|
62
62
|
创建新的用户账户,仅管理员可访问。
|
|
63
|
-
|
|
63
|
+
|
|
64
64
|
输入参数:
|
|
65
65
|
username (str): 用户名,必填
|
|
66
66
|
password (str): 密码,必填
|
|
@@ -68,7 +68,7 @@ class UserManager(Client):
|
|
|
68
68
|
role (str): 用户角色,必填,可选值:
|
|
69
69
|
- "admin": 管理员
|
|
70
70
|
- "user": 普通用户
|
|
71
|
-
|
|
71
|
+
|
|
72
72
|
返回字段:
|
|
73
73
|
data (dict): 用户信息
|
|
74
74
|
- id (int): 用户ID
|
|
@@ -78,7 +78,7 @@ class UserManager(Client):
|
|
|
78
78
|
- is_active (bool): 是否激活,默认为True
|
|
79
79
|
- created_at (str): 用户创建时间
|
|
80
80
|
success (bool): 操作是否成功
|
|
81
|
-
|
|
81
|
+
|
|
82
82
|
异常情况:
|
|
83
83
|
- 权限不足:返回错误信息"权限不足"
|
|
84
84
|
- 用户名已存在:返回错误信息"用户名已存在"
|
|
@@ -91,20 +91,20 @@ class UserManager(Client):
|
|
|
91
91
|
"email": email,
|
|
92
92
|
"role": role,
|
|
93
93
|
}
|
|
94
|
-
data, success = self._request("POST", "/api/users/create", json=data)
|
|
94
|
+
data, success = await self._request("POST", "/api/users/create", json=data)
|
|
95
95
|
if not success:
|
|
96
96
|
return {}, False
|
|
97
97
|
return data, True
|
|
98
98
|
|
|
99
|
-
def update_user(
|
|
99
|
+
async def update_user(
|
|
100
100
|
self, user_id: int, username: str, email: str, role: str, is_active: bool
|
|
101
101
|
):
|
|
102
102
|
"""
|
|
103
|
-
|
|
104
|
-
|
|
103
|
+
更新用户信息(异步版本)
|
|
104
|
+
|
|
105
105
|
功能说明:
|
|
106
106
|
更新指定用户的信息,包括用户名、邮箱、角色和状态。仅管理员可访问。
|
|
107
|
-
|
|
107
|
+
|
|
108
108
|
输入参数:
|
|
109
109
|
user_id (int): 用户ID,必填
|
|
110
110
|
username (str): 用户名,必填
|
|
@@ -113,7 +113,7 @@ class UserManager(Client):
|
|
|
113
113
|
- "admin": 管理员
|
|
114
114
|
- "user": 普通用户
|
|
115
115
|
is_active (bool): 是否激活,必填
|
|
116
|
-
|
|
116
|
+
|
|
117
117
|
返回字段:
|
|
118
118
|
data (dict): 更新后的用户信息
|
|
119
119
|
- id (int): 用户ID
|
|
@@ -124,7 +124,7 @@ class UserManager(Client):
|
|
|
124
124
|
- created_at (str): 用户创建时间
|
|
125
125
|
- updated_at (str): 用户信息更新时间
|
|
126
126
|
success (bool): 操作是否成功
|
|
127
|
-
|
|
127
|
+
|
|
128
128
|
异常情况:
|
|
129
129
|
- 权限不足:返回错误信息"权限不足"
|
|
130
130
|
- 用户不存在:返回错误信息"用户不存在"
|
|
@@ -138,45 +138,45 @@ class UserManager(Client):
|
|
|
138
138
|
"role": role,
|
|
139
139
|
"is_active": is_active,
|
|
140
140
|
}
|
|
141
|
-
data, success = self._request("PUT", f"/api/users/{user_id}", json=data)
|
|
141
|
+
data, success = await self._request("PUT", f"/api/users/{user_id}", json=data)
|
|
142
142
|
if not success:
|
|
143
143
|
return {}, False
|
|
144
144
|
return data, True
|
|
145
145
|
|
|
146
|
-
def delete_user(self, user_id: int):
|
|
146
|
+
async def delete_user(self, user_id: int):
|
|
147
147
|
"""
|
|
148
|
-
|
|
149
|
-
|
|
148
|
+
删除用户(异步版本)
|
|
149
|
+
|
|
150
150
|
功能说明:
|
|
151
151
|
根据用户ID删除指定的用户记录。仅管理员可访问。
|
|
152
|
-
|
|
152
|
+
|
|
153
153
|
输入参数:
|
|
154
154
|
user_id (int): 用户ID,必填
|
|
155
|
-
|
|
155
|
+
|
|
156
156
|
返回字段:
|
|
157
157
|
data (None): 删除成功时返回None
|
|
158
158
|
success (bool): 操作是否成功
|
|
159
|
-
|
|
159
|
+
|
|
160
160
|
异常情况:
|
|
161
161
|
- 权限不足:返回错误信息"权限不足"
|
|
162
162
|
- 用户不存在:返回错误信息"用户不存在"
|
|
163
163
|
- 删除用户失败:返回错误信息"删除用户失败"
|
|
164
164
|
"""
|
|
165
|
-
data, success = self._request("DELETE", f"/api/users/{user_id}")
|
|
165
|
+
data, success = await self._request("DELETE", f"/api/users/{user_id}")
|
|
166
166
|
if not success:
|
|
167
167
|
return {}, False
|
|
168
168
|
return data, True
|
|
169
169
|
|
|
170
|
-
def get_user_detail(self, user_id: int):
|
|
170
|
+
async def get_user_detail(self, user_id: int):
|
|
171
171
|
"""
|
|
172
|
-
|
|
173
|
-
|
|
172
|
+
获取用户详情(异步版本)
|
|
173
|
+
|
|
174
174
|
功能说明:
|
|
175
175
|
根据用户ID获取用户的详细信息。仅管理员可访问。
|
|
176
|
-
|
|
176
|
+
|
|
177
177
|
输入参数:
|
|
178
178
|
user_id (int): 用户ID,必填
|
|
179
|
-
|
|
179
|
+
|
|
180
180
|
返回字段:
|
|
181
181
|
data (dict): 用户详细信息
|
|
182
182
|
- id (int): 用户ID
|
|
@@ -187,39 +187,39 @@ class UserManager(Client):
|
|
|
187
187
|
- created_at (str): 用户创建时间
|
|
188
188
|
- last_login_at (str): 最后登录时间
|
|
189
189
|
success (bool): 操作是否成功
|
|
190
|
-
|
|
190
|
+
|
|
191
191
|
异常情况:
|
|
192
192
|
- 权限不足:返回错误信息"权限不足"
|
|
193
193
|
- 用户不存在:返回错误信息"用户不存在"
|
|
194
194
|
- 获取用户详情失败:返回错误信息"获取用户详情失败"
|
|
195
195
|
"""
|
|
196
|
-
data, success = self._request("GET", f"/api/users/{user_id}")
|
|
196
|
+
data, success = await self._request("GET", f"/api/users/{user_id}")
|
|
197
197
|
if not success:
|
|
198
198
|
return {}, False
|
|
199
199
|
return data, True
|
|
200
200
|
|
|
201
|
-
def reset_user_password(self, user_id: int, new_password: str):
|
|
201
|
+
async def reset_user_password(self, user_id: int, new_password: str):
|
|
202
202
|
"""
|
|
203
|
-
|
|
204
|
-
|
|
203
|
+
重置用户密码(异步版本)
|
|
204
|
+
|
|
205
205
|
功能说明:
|
|
206
206
|
重置指定用户的密码。仅管理员可访问。
|
|
207
|
-
|
|
207
|
+
|
|
208
208
|
输入参数:
|
|
209
209
|
user_id (int): 用户ID,必填
|
|
210
210
|
new_password (str): 新密码,必填
|
|
211
|
-
|
|
211
|
+
|
|
212
212
|
返回字段:
|
|
213
213
|
data (None): 重置成功时返回None
|
|
214
214
|
success (bool): 操作是否成功
|
|
215
|
-
|
|
215
|
+
|
|
216
216
|
异常情况:
|
|
217
217
|
- 权限不足:返回错误信息"权限不足"
|
|
218
218
|
- 用户不存在:返回错误信息"用户不存在"
|
|
219
219
|
- 密码重置失败:返回错误信息"密码重置失败"
|
|
220
220
|
"""
|
|
221
221
|
data = {"new_password": new_password}
|
|
222
|
-
data, success = self._request(
|
|
222
|
+
data, success = await self._request(
|
|
223
223
|
"POST", f"/api/users/{user_id}/reset-password", json=data
|
|
224
224
|
)
|
|
225
225
|
if not success:
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
pixelarraythirdparty/__init__.py,sha256=IaxhSmTdxqDsLwS2tQ9Bg6vqPG1ZSAO_OHTj14jcTbY,473
|
|
2
|
+
pixelarraythirdparty/client.py,sha256=hYLLzW8uhw6Qe0rLN1j0qx1HOUMSiclrr6nHjmzJwUw,1305
|
|
3
|
+
pixelarraythirdparty/cron/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
pixelarraythirdparty/cron/cron.py,sha256=2g2Js23X5fINmyq41H3wosDuCbUbHjKqFpBK9EqSEeY,5661
|
|
5
|
+
pixelarraythirdparty/filestorage/__init__.py,sha256=R4aObBoUs9EuLxNxtcFrouHFoitWdf5MOtXv3A60smk,130
|
|
6
|
+
pixelarraythirdparty/filestorage/filestorage.py,sha256=p2unkhtjxMdt_MLN6f10WFNMA9CJtEahZe7PpXySAmU,8893
|
|
7
|
+
pixelarraythirdparty/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
pixelarraythirdparty/order/order.py,sha256=EamnHxiZqXxDVctb44T6fwWtJhTgLpzgGArxQRSvR14,14178
|
|
9
|
+
pixelarraythirdparty/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
pixelarraythirdparty/product/product.py,sha256=a6BFUnq0D-s8fVlWV3RKyCsBNE_5sqgwq5W5GmmRNto,10521
|
|
11
|
+
pixelarraythirdparty/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
pixelarraythirdparty/user/user.py,sha256=1Dna4-St7AnDZRbjVuOuI84ho5wcnL7Hr3sq8oXo3bo,8383
|
|
13
|
+
pixelarraythirdparty-1.0.8.dist-info/licenses/LICENSE,sha256=O-g1dUr0U50rSIvmWE9toiVkSgFpVt72_MHITbWvAqA,1067
|
|
14
|
+
pixelarraythirdparty-1.0.8.dist-info/METADATA,sha256=y_iQZnBl2dUb0MO4ZKpMc2l9q5oPcKvZz4PPNJElRlg,993
|
|
15
|
+
pixelarraythirdparty-1.0.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
16
|
+
pixelarraythirdparty-1.0.8.dist-info/top_level.txt,sha256=dzG2Ut8j7noUqj_0ZQjcIDAeHYCh_9WtlxjAxtoyufo,21
|
|
17
|
+
pixelarraythirdparty-1.0.8.dist-info/RECORD,,
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
pixelarraythirdparty/__init__.py,sha256=ELFmdZYuhoRr0kHxApjBHt6wfXVXW98yvJFl8yGe2DE,454
|
|
2
|
-
pixelarraythirdparty/client.py,sha256=r63EDeyPhf3Y1sORW24tDSIqo2c8E3pwbik7r0Xy5zo,1678
|
|
3
|
-
pixelarraythirdparty/cron/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
pixelarraythirdparty/cron/cron.py,sha256=wAHsDTyaVurzgIlkceEURQ7HAzv3zjbt6YarNRb7moI,5656
|
|
5
|
-
pixelarraythirdparty/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
pixelarraythirdparty/order/order.py,sha256=xPNoI5RfUyn9JqU1PP7rt4bOa48sASzLiaEcbeLPqMI,28691
|
|
7
|
-
pixelarraythirdparty/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
pixelarraythirdparty/product/product.py,sha256=_rcAtsZEWA3Ta1R9SBWnzQmjab-vf3bnSEySb4PPU-c,10586
|
|
9
|
-
pixelarraythirdparty/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
pixelarraythirdparty/user/user.py,sha256=UY-O7qO8AIWo3GRQaHqC3AMQc4w3bD9KgmPLoUo-l0I,8380
|
|
11
|
-
pixelarraythirdparty-1.0.7.dist-info/licenses/LICENSE,sha256=O-g1dUr0U50rSIvmWE9toiVkSgFpVt72_MHITbWvAqA,1067
|
|
12
|
-
pixelarraythirdparty-1.0.7.dist-info/METADATA,sha256=tU4vdmo61H15rw0QJw_-J2O3A-f99w1uU7_G80TOKg4,993
|
|
13
|
-
pixelarraythirdparty-1.0.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
14
|
-
pixelarraythirdparty-1.0.7.dist-info/top_level.txt,sha256=dzG2Ut8j7noUqj_0ZQjcIDAeHYCh_9WtlxjAxtoyufo,21
|
|
15
|
-
pixelarraythirdparty-1.0.7.dist-info/RECORD,,
|
|
File without changes
|
{pixelarraythirdparty-1.0.7.dist-info → pixelarraythirdparty-1.0.8.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|