@roundtable-bb/sdk 0.1.25 → 0.1.27
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.
- package/dist/generated/client.js +2 -2
- package/dist/index.d.ts +722 -4
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/generated/client.ts +2 -2
package/dist/generated/client.js
CHANGED
|
@@ -188,7 +188,7 @@ export class AcpClient {
|
|
|
188
188
|
}
|
|
189
189
|
/** Search users by display name or email (case-insensitive) */
|
|
190
190
|
searchUsers(query) {
|
|
191
|
-
return request(this.opts, 'GET', '/users/search', { query, routeAuth: { acceptsApiKey: true, acceptsTenantJwt: true } });
|
|
191
|
+
return request(this.opts, 'GET', '/users/search', { query, routeAuth: { acceptsApiKey: true, acceptsBetterAuth: true, acceptsTenantJwt: true } });
|
|
192
192
|
}
|
|
193
193
|
/** Set forum visibility for a group (requires group.manage or group.manage_protected permission) */
|
|
194
194
|
setGroupForums(params, body) {
|
|
@@ -342,7 +342,7 @@ export class TenantClient {
|
|
|
342
342
|
}
|
|
343
343
|
/** Search users by display name or email (case-insensitive) */
|
|
344
344
|
searchUsers(query) {
|
|
345
|
-
return request(this.opts, 'GET', '/users/search', { query, routeAuth: { acceptsApiKey: true, acceptsTenantJwt: true } });
|
|
345
|
+
return request(this.opts, 'GET', '/users/search', { query, routeAuth: { acceptsApiKey: true, acceptsBetterAuth: true, acceptsTenantJwt: true } });
|
|
346
346
|
}
|
|
347
347
|
/** Mark a thread as read up to a given post */
|
|
348
348
|
setThreadReadStatus(params, body) {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,723 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
|
|
3
|
+
declare const IdSchema: z.ZodUUID;
|
|
4
|
+
declare const PaginationQuerySchema: z.ZodObject<{
|
|
5
|
+
cursor: z.ZodOptional<z.ZodUUID>;
|
|
6
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
declare const PaginatedResponseSchema: <T extends z.ZodTypeAny>(itemSchema: T) => z.ZodObject<{
|
|
9
|
+
items: z.ZodArray<T>;
|
|
10
|
+
nextCursor: z.ZodNullable<z.ZodUUID>;
|
|
11
|
+
}, z.core.$strip>;
|
|
12
|
+
declare const ErrorSchema: z.ZodObject<{
|
|
13
|
+
code: z.ZodString;
|
|
14
|
+
message: z.ZodString;
|
|
15
|
+
}, z.core.$strip>;
|
|
16
|
+
type Id = z.infer<typeof IdSchema>;
|
|
17
|
+
type PaginationQuery = z.infer<typeof PaginationQuerySchema>;
|
|
18
|
+
type PaginatedResponse<T> = {
|
|
19
|
+
items: T[];
|
|
20
|
+
nextCursor: string | null;
|
|
21
|
+
};
|
|
22
|
+
type ApiError = z.infer<typeof ErrorSchema>;
|
|
23
|
+
|
|
24
|
+
declare const TenantIdParamsSchema: z.ZodObject<{
|
|
25
|
+
tenantId: z.ZodCoercedNumber<unknown>;
|
|
26
|
+
}, z.core.$strip>;
|
|
27
|
+
declare const TenantUuidParamsSchema: z.ZodObject<{
|
|
28
|
+
tenantId: z.ZodUUID;
|
|
29
|
+
}, z.core.$strip>;
|
|
30
|
+
declare const TenantCategoryIdParamsSchema: z.ZodObject<{
|
|
31
|
+
tenantId: z.ZodCoercedNumber<unknown>;
|
|
32
|
+
categoryId: z.ZodUUID;
|
|
33
|
+
}, z.core.$strip>;
|
|
34
|
+
declare const TenantForumIdParamsSchema: z.ZodObject<{
|
|
35
|
+
tenantId: z.ZodCoercedNumber<unknown>;
|
|
36
|
+
forumId: z.ZodUUID;
|
|
37
|
+
}, z.core.$strip>;
|
|
38
|
+
declare const TenantThreadIdParamsSchema: z.ZodObject<{
|
|
39
|
+
tenantId: z.ZodCoercedNumber<unknown>;
|
|
40
|
+
threadId: z.ZodUUID;
|
|
41
|
+
}, z.core.$strip>;
|
|
42
|
+
declare const TenantPostIdParamsSchema: z.ZodObject<{
|
|
43
|
+
tenantId: z.ZodCoercedNumber<unknown>;
|
|
44
|
+
postId: z.ZodUUID;
|
|
45
|
+
}, z.core.$strip>;
|
|
46
|
+
declare const TenantThreadPostIdParamsSchema: z.ZodObject<{
|
|
47
|
+
tenantId: z.ZodCoercedNumber<unknown>;
|
|
48
|
+
threadId: z.ZodUUID;
|
|
49
|
+
postId: z.ZodUUID;
|
|
50
|
+
}, z.core.$strip>;
|
|
51
|
+
declare const TenantGroupIdParamsSchema: z.ZodObject<{
|
|
52
|
+
tenantId: z.ZodCoercedNumber<unknown>;
|
|
53
|
+
groupId: z.ZodUUID;
|
|
54
|
+
}, z.core.$strip>;
|
|
55
|
+
declare const TenantUserIdParamsSchema: z.ZodObject<{
|
|
56
|
+
tenantId: z.ZodCoercedNumber<unknown>;
|
|
57
|
+
userId: z.ZodUUID;
|
|
58
|
+
}, z.core.$strip>;
|
|
59
|
+
declare const NotificationIdParamsSchema: z.ZodObject<{
|
|
60
|
+
notificationId: z.ZodUUID;
|
|
61
|
+
}, z.core.$strip>;
|
|
62
|
+
declare const UserIdParamsSchema: z.ZodObject<{
|
|
63
|
+
userId: z.ZodUUID;
|
|
64
|
+
}, z.core.$strip>;
|
|
65
|
+
declare const KeyIdParamsSchema: z.ZodObject<{
|
|
66
|
+
keyId: z.ZodUUID;
|
|
67
|
+
}, z.core.$strip>;
|
|
68
|
+
declare const PlatformSettingKeyParamsSchema: z.ZodObject<{
|
|
69
|
+
key: z.ZodString;
|
|
70
|
+
}, z.core.$strip>;
|
|
71
|
+
type TenantIdParams = z.infer<typeof TenantIdParamsSchema>;
|
|
72
|
+
type TenantUuidParams = z.infer<typeof TenantUuidParamsSchema>;
|
|
73
|
+
type TenantCategoryIdParams = z.infer<typeof TenantCategoryIdParamsSchema>;
|
|
74
|
+
type TenantForumIdParams = z.infer<typeof TenantForumIdParamsSchema>;
|
|
75
|
+
type TenantThreadIdParams = z.infer<typeof TenantThreadIdParamsSchema>;
|
|
76
|
+
type TenantPostIdParams = z.infer<typeof TenantPostIdParamsSchema>;
|
|
77
|
+
type TenantThreadPostIdParams = z.infer<typeof TenantThreadPostIdParamsSchema>;
|
|
78
|
+
type TenantGroupIdParams = z.infer<typeof TenantGroupIdParamsSchema>;
|
|
79
|
+
type TenantUserIdParams = z.infer<typeof TenantUserIdParamsSchema>;
|
|
80
|
+
type NotificationIdParams = z.infer<typeof NotificationIdParamsSchema>;
|
|
81
|
+
type UserIdParams = z.infer<typeof UserIdParamsSchema>;
|
|
82
|
+
type KeyIdParams = z.infer<typeof KeyIdParamsSchema>;
|
|
83
|
+
type PlatformSettingKeyParams = z.infer<typeof PlatformSettingKeyParamsSchema>;
|
|
84
|
+
|
|
85
|
+
declare const UserProfileSchema: z.ZodObject<{
|
|
86
|
+
userId: z.ZodUUID;
|
|
87
|
+
displayName: z.ZodString;
|
|
88
|
+
avatarUrl: z.ZodNullable<z.ZodURL>;
|
|
89
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
90
|
+
updatedAt: z.ZodISODateTime;
|
|
91
|
+
}, z.core.$strip>;
|
|
92
|
+
declare const UserMembershipSchema: z.ZodObject<{
|
|
93
|
+
userId: z.ZodUUID;
|
|
94
|
+
groups: z.ZodArray<z.ZodObject<{
|
|
95
|
+
id: z.ZodUUID;
|
|
96
|
+
name: z.ZodString;
|
|
97
|
+
}, z.core.$strip>>;
|
|
98
|
+
}, z.core.$strip>;
|
|
99
|
+
declare const UpdateUserProfileSchema: z.ZodObject<{
|
|
100
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
101
|
+
avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
102
|
+
bio: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
103
|
+
}, z.core.$strip>;
|
|
104
|
+
declare const GroupMemberSchema: z.ZodObject<{
|
|
105
|
+
userId: z.ZodUUID;
|
|
106
|
+
displayName: z.ZodString;
|
|
107
|
+
avatarUrl: z.ZodNullable<z.ZodURL>;
|
|
108
|
+
joinedAt: z.ZodISODateTime;
|
|
109
|
+
}, z.core.$strip>;
|
|
110
|
+
type UserProfile = z.infer<typeof UserProfileSchema>;
|
|
111
|
+
type UserMembership = z.infer<typeof UserMembershipSchema>;
|
|
112
|
+
type UpdateUserProfile = z.infer<typeof UpdateUserProfileSchema>;
|
|
113
|
+
type GroupMember = z.infer<typeof GroupMemberSchema>;
|
|
114
|
+
|
|
115
|
+
declare const CategorySchema: z.ZodObject<{
|
|
116
|
+
id: z.ZodUUID;
|
|
117
|
+
name: z.ZodString;
|
|
118
|
+
description: z.ZodNullable<z.ZodString>;
|
|
119
|
+
position: z.ZodNumber;
|
|
120
|
+
createdAt: z.ZodISODateTime;
|
|
121
|
+
}, z.core.$strip>;
|
|
122
|
+
declare const CreateCategorySchema: z.ZodObject<{
|
|
123
|
+
name: z.ZodString;
|
|
124
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
125
|
+
}, z.core.$strip>;
|
|
126
|
+
declare const UpdateCategorySchema: z.ZodObject<{
|
|
127
|
+
name: z.ZodOptional<z.ZodString>;
|
|
128
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
129
|
+
}, z.core.$strip>;
|
|
130
|
+
declare const ReorderCategorySchema: z.ZodArray<z.ZodObject<{
|
|
131
|
+
id: z.ZodUUID;
|
|
132
|
+
position: z.ZodNumber;
|
|
133
|
+
}, z.core.$strip>>;
|
|
134
|
+
type Category = z.infer<typeof CategorySchema>;
|
|
135
|
+
type CreateCategory = z.infer<typeof CreateCategorySchema>;
|
|
136
|
+
type UpdateCategory = z.infer<typeof UpdateCategorySchema>;
|
|
137
|
+
type ReorderCategory = z.infer<typeof ReorderCategorySchema>;
|
|
138
|
+
|
|
139
|
+
declare const ForumSchema: z.ZodObject<{
|
|
140
|
+
id: z.ZodUUID;
|
|
141
|
+
categoryId: z.ZodUUID;
|
|
142
|
+
name: z.ZodString;
|
|
143
|
+
description: z.ZodNullable<z.ZodString>;
|
|
144
|
+
position: z.ZodNumber;
|
|
145
|
+
threadCount: z.ZodNumber;
|
|
146
|
+
isHidden: z.ZodBoolean;
|
|
147
|
+
createdAt: z.ZodISODateTime;
|
|
148
|
+
}, z.core.$strip>;
|
|
149
|
+
declare const CreateForumSchema: z.ZodObject<{
|
|
150
|
+
categoryId: z.ZodUUID;
|
|
151
|
+
name: z.ZodString;
|
|
152
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
153
|
+
isHidden: z.ZodOptional<z.ZodBoolean>;
|
|
154
|
+
}, z.core.$strip>;
|
|
155
|
+
declare const UpdateForumSchema: z.ZodObject<{
|
|
156
|
+
name: z.ZodOptional<z.ZodString>;
|
|
157
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
158
|
+
isHidden: z.ZodOptional<z.ZodBoolean>;
|
|
159
|
+
}, z.core.$strip>;
|
|
160
|
+
declare const ReorderForumSchema: z.ZodArray<z.ZodObject<{
|
|
161
|
+
id: z.ZodUUID;
|
|
162
|
+
position: z.ZodNumber;
|
|
163
|
+
}, z.core.$strip>>;
|
|
164
|
+
type Forum = z.infer<typeof ForumSchema>;
|
|
165
|
+
type CreateForum = z.infer<typeof CreateForumSchema>;
|
|
166
|
+
type UpdateForum = z.infer<typeof UpdateForumSchema>;
|
|
167
|
+
type ReorderForum = z.infer<typeof ReorderForumSchema>;
|
|
168
|
+
|
|
169
|
+
declare const ThreadSchema: z.ZodObject<{
|
|
170
|
+
id: z.ZodUUID;
|
|
171
|
+
forumId: z.ZodUUID;
|
|
172
|
+
title: z.ZodString;
|
|
173
|
+
authorId: z.ZodUUID;
|
|
174
|
+
author: z.ZodObject<{
|
|
175
|
+
userId: z.ZodUUID;
|
|
176
|
+
displayName: z.ZodString;
|
|
177
|
+
avatarUrl: z.ZodNullable<z.ZodURL>;
|
|
178
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
179
|
+
updatedAt: z.ZodISODateTime;
|
|
180
|
+
}, z.core.$strip>;
|
|
181
|
+
postCount: z.ZodNumber;
|
|
182
|
+
isPinned: z.ZodBoolean;
|
|
183
|
+
isLocked: z.ZodBoolean;
|
|
184
|
+
lastPostAt: z.ZodNullable<z.ZodISODateTime>;
|
|
185
|
+
createdAt: z.ZodISODateTime;
|
|
186
|
+
}, z.core.$strip>;
|
|
187
|
+
declare const CreateThreadSchema: z.ZodObject<{
|
|
188
|
+
title: z.ZodString;
|
|
189
|
+
content: z.ZodString;
|
|
190
|
+
}, z.core.$strip>;
|
|
191
|
+
declare const UpdateThreadSchema: z.ZodObject<{
|
|
192
|
+
title: z.ZodOptional<z.ZodString>;
|
|
193
|
+
isPinned: z.ZodOptional<z.ZodBoolean>;
|
|
194
|
+
isLocked: z.ZodOptional<z.ZodBoolean>;
|
|
195
|
+
forumId: z.ZodOptional<z.ZodUUID>;
|
|
196
|
+
}, z.core.$strip>;
|
|
197
|
+
declare const ThreadReadStatusSchema: z.ZodObject<{
|
|
198
|
+
lastReadPostId: z.ZodNullable<z.ZodUUID>;
|
|
199
|
+
}, z.core.$strip>;
|
|
200
|
+
declare const SetThreadReadStatusSchema: z.ZodObject<{
|
|
201
|
+
lastReadPostId: z.ZodUUID;
|
|
202
|
+
}, z.core.$strip>;
|
|
203
|
+
type Thread = z.infer<typeof ThreadSchema>;
|
|
204
|
+
type CreateThread = z.infer<typeof CreateThreadSchema>;
|
|
205
|
+
type UpdateThread = z.infer<typeof UpdateThreadSchema>;
|
|
206
|
+
type ThreadReadStatus = z.infer<typeof ThreadReadStatusSchema>;
|
|
207
|
+
type SetThreadReadStatus = z.infer<typeof SetThreadReadStatusSchema>;
|
|
208
|
+
|
|
209
|
+
declare const PostSchema: z.ZodObject<{
|
|
210
|
+
id: z.ZodUUID;
|
|
211
|
+
threadId: z.ZodUUID;
|
|
212
|
+
authorId: z.ZodUUID;
|
|
213
|
+
author: z.ZodObject<{
|
|
214
|
+
userId: z.ZodUUID;
|
|
215
|
+
displayName: z.ZodString;
|
|
216
|
+
avatarUrl: z.ZodNullable<z.ZodURL>;
|
|
217
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
218
|
+
updatedAt: z.ZodISODateTime;
|
|
219
|
+
}, z.core.$strip>;
|
|
220
|
+
content: z.ZodNullable<z.ZodString>;
|
|
221
|
+
deletedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
222
|
+
createdAt: z.ZodISODateTime;
|
|
223
|
+
updatedAt: z.ZodISODateTime;
|
|
224
|
+
}, z.core.$strip>;
|
|
225
|
+
declare const CreatePostSchema: z.ZodObject<{
|
|
226
|
+
content: z.ZodString;
|
|
227
|
+
}, z.core.$strip>;
|
|
228
|
+
declare const UpdatePostSchema: z.ZodObject<{
|
|
229
|
+
content: z.ZodString;
|
|
230
|
+
}, z.core.$strip>;
|
|
231
|
+
type Post = z.infer<typeof PostSchema>;
|
|
232
|
+
type CreatePost = z.infer<typeof CreatePostSchema>;
|
|
233
|
+
type UpdatePost = z.infer<typeof UpdatePostSchema>;
|
|
234
|
+
|
|
235
|
+
declare const PostsQuerySchema: z.ZodObject<{
|
|
236
|
+
cursor: z.ZodOptional<z.ZodUUID>;
|
|
237
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
238
|
+
from: z.ZodOptional<z.ZodUUID>;
|
|
239
|
+
}, z.core.$strip>;
|
|
240
|
+
type PostsQuery = z.infer<typeof PostsQuerySchema>;
|
|
241
|
+
|
|
242
|
+
declare const PERMISSIONS: {
|
|
243
|
+
readonly 'thread.create': {
|
|
244
|
+
readonly isInternal: false;
|
|
245
|
+
};
|
|
246
|
+
readonly 'thread.manage': {
|
|
247
|
+
readonly isInternal: false;
|
|
248
|
+
};
|
|
249
|
+
readonly 'post.create': {
|
|
250
|
+
readonly isInternal: false;
|
|
251
|
+
};
|
|
252
|
+
readonly 'post.manage': {
|
|
253
|
+
readonly isInternal: false;
|
|
254
|
+
};
|
|
255
|
+
readonly 'category.manage': {
|
|
256
|
+
readonly isInternal: false;
|
|
257
|
+
};
|
|
258
|
+
readonly 'forum.manage': {
|
|
259
|
+
readonly isInternal: false;
|
|
260
|
+
};
|
|
261
|
+
readonly 'group.manage': {
|
|
262
|
+
readonly isInternal: false;
|
|
263
|
+
};
|
|
264
|
+
readonly 'group.manage_protected': {
|
|
265
|
+
readonly isInternal: true;
|
|
266
|
+
};
|
|
267
|
+
};
|
|
268
|
+
type Permission = keyof typeof PERMISSIONS;
|
|
269
|
+
declare const PermissionSchema: z.ZodEnum<{
|
|
270
|
+
"thread.create": "thread.create";
|
|
271
|
+
"thread.manage": "thread.manage";
|
|
272
|
+
"post.create": "post.create";
|
|
273
|
+
"post.manage": "post.manage";
|
|
274
|
+
"category.manage": "category.manage";
|
|
275
|
+
"forum.manage": "forum.manage";
|
|
276
|
+
"group.manage": "group.manage";
|
|
277
|
+
"group.manage_protected": "group.manage_protected";
|
|
278
|
+
}>;
|
|
279
|
+
declare const AssignablePermissionSchema: z.ZodEnum<{
|
|
280
|
+
[x: string]: string;
|
|
281
|
+
}>;
|
|
282
|
+
declare const GroupSchema: z.ZodObject<{
|
|
283
|
+
id: z.ZodUUID;
|
|
284
|
+
name: z.ZodString;
|
|
285
|
+
description: z.ZodNullable<z.ZodString>;
|
|
286
|
+
position: z.ZodNumber;
|
|
287
|
+
isProtected: z.ZodBoolean;
|
|
288
|
+
permissions: z.ZodArray<z.ZodEnum<{
|
|
289
|
+
"thread.create": "thread.create";
|
|
290
|
+
"thread.manage": "thread.manage";
|
|
291
|
+
"post.create": "post.create";
|
|
292
|
+
"post.manage": "post.manage";
|
|
293
|
+
"category.manage": "category.manage";
|
|
294
|
+
"forum.manage": "forum.manage";
|
|
295
|
+
"group.manage": "group.manage";
|
|
296
|
+
"group.manage_protected": "group.manage_protected";
|
|
297
|
+
}>>;
|
|
298
|
+
visibleForumIds: z.ZodArray<z.ZodUUID>;
|
|
299
|
+
}, z.core.$strip>;
|
|
300
|
+
declare const CreateGroupSchema: z.ZodObject<{
|
|
301
|
+
name: z.ZodString;
|
|
302
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
303
|
+
}, z.core.$strip>;
|
|
304
|
+
declare const UpdateGroupSchema: z.ZodObject<{
|
|
305
|
+
name: z.ZodOptional<z.ZodString>;
|
|
306
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
307
|
+
}, z.core.$strip>;
|
|
308
|
+
declare const SetGroupPermissionsSchema: z.ZodObject<{
|
|
309
|
+
permissions: z.ZodArray<z.ZodEnum<{
|
|
310
|
+
[x: string]: string;
|
|
311
|
+
}>>;
|
|
312
|
+
}, z.core.$strip>;
|
|
313
|
+
declare const SetGroupForumsSchema: z.ZodObject<{
|
|
314
|
+
forumIds: z.ZodArray<z.ZodUUID>;
|
|
315
|
+
}, z.core.$strip>;
|
|
316
|
+
declare const SetUserGroupsSchema: z.ZodObject<{
|
|
317
|
+
groupIds: z.ZodArray<z.ZodUUID>;
|
|
318
|
+
}, z.core.$strip>;
|
|
319
|
+
declare const ReorderGroupSchema: z.ZodArray<z.ZodObject<{
|
|
320
|
+
id: z.ZodUUID;
|
|
321
|
+
position: z.ZodNumber;
|
|
322
|
+
}, z.core.$strip>>;
|
|
323
|
+
type Group = z.infer<typeof GroupSchema>;
|
|
324
|
+
type CreateGroup = z.infer<typeof CreateGroupSchema>;
|
|
325
|
+
type UpdateGroup = z.infer<typeof UpdateGroupSchema>;
|
|
326
|
+
type SetGroupPermissions = z.infer<typeof SetGroupPermissionsSchema>;
|
|
327
|
+
type SetGroupForums = z.infer<typeof SetGroupForumsSchema>;
|
|
328
|
+
type SetUserGroups = z.infer<typeof SetUserGroupsSchema>;
|
|
329
|
+
type ReorderGroup = z.infer<typeof ReorderGroupSchema>;
|
|
330
|
+
|
|
331
|
+
declare const NotificationTypeSchema: z.ZodEnum<{
|
|
332
|
+
new_post: "new_post";
|
|
333
|
+
}>;
|
|
334
|
+
declare const NotificationSchema: z.ZodObject<{
|
|
335
|
+
id: z.ZodUUID;
|
|
336
|
+
userId: z.ZodUUID;
|
|
337
|
+
tenantId: z.ZodNumber;
|
|
338
|
+
type: z.ZodEnum<{
|
|
339
|
+
new_post: "new_post";
|
|
340
|
+
}>;
|
|
341
|
+
payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
342
|
+
readAt: z.ZodNullable<z.ZodISODateTime>;
|
|
343
|
+
createdAt: z.ZodISODateTime;
|
|
344
|
+
}, z.core.$strip>;
|
|
345
|
+
type NotificationType = z.infer<typeof NotificationTypeSchema>;
|
|
346
|
+
type Notification = z.infer<typeof NotificationSchema>;
|
|
347
|
+
|
|
348
|
+
declare const NotificationCountSchema: z.ZodObject<{
|
|
349
|
+
read: z.ZodNumber;
|
|
350
|
+
unread: z.ZodNumber;
|
|
351
|
+
}, z.core.$strip>;
|
|
352
|
+
type NotificationCount = z.infer<typeof NotificationCountSchema>;
|
|
353
|
+
|
|
354
|
+
declare const ApiKeySchema: z.ZodObject<{
|
|
355
|
+
id: z.ZodUUID;
|
|
356
|
+
name: z.ZodString;
|
|
357
|
+
lastUsedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
358
|
+
createdAt: z.ZodISODateTime;
|
|
359
|
+
}, z.core.$strip>;
|
|
360
|
+
declare const CreatedApiKeySchema: z.ZodObject<{
|
|
361
|
+
id: z.ZodUUID;
|
|
362
|
+
name: z.ZodString;
|
|
363
|
+
lastUsedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
364
|
+
createdAt: z.ZodISODateTime;
|
|
365
|
+
key: z.ZodString;
|
|
366
|
+
}, z.core.$strip>;
|
|
367
|
+
declare const CreateApiKeySchema: z.ZodObject<{
|
|
368
|
+
name: z.ZodString;
|
|
369
|
+
}, z.core.$strip>;
|
|
370
|
+
type ApiKey = z.infer<typeof ApiKeySchema>;
|
|
371
|
+
type CreatedApiKey = z.infer<typeof CreatedApiKeySchema>;
|
|
372
|
+
type CreateApiKey = z.infer<typeof CreateApiKeySchema>;
|
|
373
|
+
|
|
374
|
+
declare const SearchResultTypeSchema: z.ZodEnum<{
|
|
375
|
+
thread: "thread";
|
|
376
|
+
post: "post";
|
|
377
|
+
}>;
|
|
378
|
+
declare const SearchResultSchema: z.ZodObject<{
|
|
379
|
+
type: z.ZodEnum<{
|
|
380
|
+
thread: "thread";
|
|
381
|
+
post: "post";
|
|
382
|
+
}>;
|
|
383
|
+
id: z.ZodUUID;
|
|
384
|
+
threadId: z.ZodUUID;
|
|
385
|
+
forumId: z.ZodUUID;
|
|
386
|
+
title: z.ZodNullable<z.ZodString>;
|
|
387
|
+
excerpt: z.ZodString;
|
|
388
|
+
authorId: z.ZodUUID;
|
|
389
|
+
createdAt: z.ZodISODateTime;
|
|
390
|
+
}, z.core.$strip>;
|
|
391
|
+
declare const SearchQuerySchema: z.ZodObject<{
|
|
392
|
+
q: z.ZodString;
|
|
393
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
394
|
+
thread: "thread";
|
|
395
|
+
post: "post";
|
|
396
|
+
}>>;
|
|
397
|
+
categoryId: z.ZodOptional<z.ZodUUID>;
|
|
398
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
399
|
+
}, z.core.$strip>;
|
|
400
|
+
declare const SearchResponseSchema: z.ZodObject<{
|
|
401
|
+
results: z.ZodArray<z.ZodObject<{
|
|
402
|
+
type: z.ZodEnum<{
|
|
403
|
+
thread: "thread";
|
|
404
|
+
post: "post";
|
|
405
|
+
}>;
|
|
406
|
+
id: z.ZodUUID;
|
|
407
|
+
threadId: z.ZodUUID;
|
|
408
|
+
forumId: z.ZodUUID;
|
|
409
|
+
title: z.ZodNullable<z.ZodString>;
|
|
410
|
+
excerpt: z.ZodString;
|
|
411
|
+
authorId: z.ZodUUID;
|
|
412
|
+
createdAt: z.ZodISODateTime;
|
|
413
|
+
}, z.core.$strip>>;
|
|
414
|
+
total: z.ZodNumber;
|
|
415
|
+
}, z.core.$strip>;
|
|
416
|
+
type SearchResultType = z.infer<typeof SearchResultTypeSchema>;
|
|
417
|
+
type SearchResult = z.infer<typeof SearchResultSchema>;
|
|
418
|
+
type SearchQuery = z.infer<typeof SearchQuerySchema>;
|
|
419
|
+
type SearchResponse = z.infer<typeof SearchResponseSchema>;
|
|
420
|
+
|
|
421
|
+
declare const TenantSchema: z.ZodObject<{
|
|
422
|
+
id: z.ZodNumber;
|
|
423
|
+
name: z.ZodString;
|
|
424
|
+
slug: z.ZodString;
|
|
425
|
+
customDomain: z.ZodNullable<z.ZodString>;
|
|
426
|
+
createdAt: z.ZodString;
|
|
427
|
+
}, z.core.$strip>;
|
|
428
|
+
declare const CreateTenantSchema: z.ZodObject<{
|
|
429
|
+
name: z.ZodString;
|
|
430
|
+
slug: z.ZodString;
|
|
431
|
+
}, z.core.$strip>;
|
|
432
|
+
declare const SetCustomDomainSchema: z.ZodObject<{
|
|
433
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
434
|
+
}, z.core.$strip>;
|
|
435
|
+
declare const OwnedTenantSchema: z.ZodObject<{
|
|
436
|
+
id: z.ZodNumber;
|
|
437
|
+
name: z.ZodString;
|
|
438
|
+
slug: z.ZodString;
|
|
439
|
+
customDomain: z.ZodNullable<z.ZodString>;
|
|
440
|
+
}, z.core.$strip>;
|
|
441
|
+
declare const TenantTokenSchema: z.ZodObject<{
|
|
442
|
+
token: z.ZodString;
|
|
443
|
+
expiresIn: z.ZodNumber;
|
|
444
|
+
payload: z.ZodObject<{
|
|
445
|
+
userId: z.ZodString;
|
|
446
|
+
tenantId: z.ZodNumber;
|
|
447
|
+
}, z.core.$strip>;
|
|
448
|
+
}, z.core.$strip>;
|
|
449
|
+
type OwnedTenant = z.infer<typeof OwnedTenantSchema>;
|
|
450
|
+
type Tenant = z.infer<typeof TenantSchema>;
|
|
451
|
+
type CreateTenant = z.infer<typeof CreateTenantSchema>;
|
|
452
|
+
type SetCustomDomain = z.infer<typeof SetCustomDomainSchema>;
|
|
453
|
+
type TenantToken = z.infer<typeof TenantTokenSchema>;
|
|
454
|
+
|
|
455
|
+
declare const TenantOwnerSchema: z.ZodObject<{
|
|
456
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
457
|
+
}, z.core.$strip>;
|
|
458
|
+
declare const TransferTenantOwnerSchema: z.ZodObject<{
|
|
459
|
+
userId: z.ZodString;
|
|
460
|
+
}, z.core.$strip>;
|
|
461
|
+
type TenantOwner = z.infer<typeof TenantOwnerSchema>;
|
|
462
|
+
type TransferTenantOwner = z.infer<typeof TransferTenantOwnerSchema>;
|
|
463
|
+
|
|
464
|
+
declare const BackupSettingsSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
465
|
+
declare const BackupCategorySchema: z.ZodObject<{
|
|
466
|
+
id: z.ZodString;
|
|
467
|
+
name: z.ZodString;
|
|
468
|
+
description: z.ZodNullable<z.ZodString>;
|
|
469
|
+
position: z.ZodNumber;
|
|
470
|
+
}, z.core.$strip>;
|
|
471
|
+
declare const BackupGroupSchema: z.ZodObject<{
|
|
472
|
+
id: z.ZodString;
|
|
473
|
+
name: z.ZodString;
|
|
474
|
+
description: z.ZodNullable<z.ZodString>;
|
|
475
|
+
position: z.ZodNumber;
|
|
476
|
+
permissions: z.ZodArray<z.ZodString>;
|
|
477
|
+
visibleForumIds: z.ZodArray<z.ZodString>;
|
|
478
|
+
}, z.core.$strip>;
|
|
479
|
+
declare const BackupMembershipSchema: z.ZodObject<{
|
|
480
|
+
userId: z.ZodString;
|
|
481
|
+
groupId: z.ZodString;
|
|
482
|
+
}, z.core.$strip>;
|
|
483
|
+
declare const BackupThreadSchema: z.ZodObject<{
|
|
484
|
+
id: z.ZodString;
|
|
485
|
+
forumId: z.ZodString;
|
|
486
|
+
title: z.ZodString;
|
|
487
|
+
authorId: z.ZodString;
|
|
488
|
+
isPinned: z.ZodBoolean;
|
|
489
|
+
isLocked: z.ZodBoolean;
|
|
490
|
+
lastPostAt: z.ZodNullable<z.ZodString>;
|
|
491
|
+
createdAt: z.ZodString;
|
|
492
|
+
}, z.core.$strip>;
|
|
493
|
+
declare const BackupPostSchema: z.ZodObject<{
|
|
494
|
+
id: z.ZodString;
|
|
495
|
+
threadId: z.ZodString;
|
|
496
|
+
authorId: z.ZodString;
|
|
497
|
+
content: z.ZodNullable<z.ZodString>;
|
|
498
|
+
createdAt: z.ZodString;
|
|
499
|
+
updatedAt: z.ZodString;
|
|
500
|
+
}, z.core.$strip>;
|
|
501
|
+
declare const BackupDataSchema: z.ZodObject<{
|
|
502
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
503
|
+
categories: z.ZodArray<z.ZodObject<{
|
|
504
|
+
id: z.ZodString;
|
|
505
|
+
name: z.ZodString;
|
|
506
|
+
description: z.ZodNullable<z.ZodString>;
|
|
507
|
+
position: z.ZodNumber;
|
|
508
|
+
}, z.core.$strip>>;
|
|
509
|
+
groups: z.ZodArray<z.ZodObject<{
|
|
510
|
+
id: z.ZodString;
|
|
511
|
+
name: z.ZodString;
|
|
512
|
+
description: z.ZodNullable<z.ZodString>;
|
|
513
|
+
position: z.ZodNumber;
|
|
514
|
+
permissions: z.ZodArray<z.ZodString>;
|
|
515
|
+
visibleForumIds: z.ZodArray<z.ZodString>;
|
|
516
|
+
}, z.core.$strip>>;
|
|
517
|
+
memberships: z.ZodArray<z.ZodObject<{
|
|
518
|
+
userId: z.ZodString;
|
|
519
|
+
groupId: z.ZodString;
|
|
520
|
+
}, z.core.$strip>>;
|
|
521
|
+
threads: z.ZodArray<z.ZodObject<{
|
|
522
|
+
id: z.ZodString;
|
|
523
|
+
forumId: z.ZodString;
|
|
524
|
+
title: z.ZodString;
|
|
525
|
+
authorId: z.ZodString;
|
|
526
|
+
isPinned: z.ZodBoolean;
|
|
527
|
+
isLocked: z.ZodBoolean;
|
|
528
|
+
lastPostAt: z.ZodNullable<z.ZodString>;
|
|
529
|
+
createdAt: z.ZodString;
|
|
530
|
+
}, z.core.$strip>>;
|
|
531
|
+
posts: z.ZodArray<z.ZodObject<{
|
|
532
|
+
id: z.ZodString;
|
|
533
|
+
threadId: z.ZodString;
|
|
534
|
+
authorId: z.ZodString;
|
|
535
|
+
content: z.ZodNullable<z.ZodString>;
|
|
536
|
+
createdAt: z.ZodString;
|
|
537
|
+
updatedAt: z.ZodString;
|
|
538
|
+
}, z.core.$strip>>;
|
|
539
|
+
}, z.core.$strip>;
|
|
540
|
+
declare const BackupPayloadSchema: z.ZodObject<{
|
|
541
|
+
version: z.ZodLiteral<1>;
|
|
542
|
+
exportedAt: z.ZodString;
|
|
543
|
+
sourceTenantId: z.ZodNumber;
|
|
544
|
+
includeContent: z.ZodBoolean;
|
|
545
|
+
data: z.ZodObject<{
|
|
546
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
547
|
+
categories: z.ZodArray<z.ZodObject<{
|
|
548
|
+
id: z.ZodString;
|
|
549
|
+
name: z.ZodString;
|
|
550
|
+
description: z.ZodNullable<z.ZodString>;
|
|
551
|
+
position: z.ZodNumber;
|
|
552
|
+
}, z.core.$strip>>;
|
|
553
|
+
groups: z.ZodArray<z.ZodObject<{
|
|
554
|
+
id: z.ZodString;
|
|
555
|
+
name: z.ZodString;
|
|
556
|
+
description: z.ZodNullable<z.ZodString>;
|
|
557
|
+
position: z.ZodNumber;
|
|
558
|
+
permissions: z.ZodArray<z.ZodString>;
|
|
559
|
+
visibleForumIds: z.ZodArray<z.ZodString>;
|
|
560
|
+
}, z.core.$strip>>;
|
|
561
|
+
memberships: z.ZodArray<z.ZodObject<{
|
|
562
|
+
userId: z.ZodString;
|
|
563
|
+
groupId: z.ZodString;
|
|
564
|
+
}, z.core.$strip>>;
|
|
565
|
+
threads: z.ZodArray<z.ZodObject<{
|
|
566
|
+
id: z.ZodString;
|
|
567
|
+
forumId: z.ZodString;
|
|
568
|
+
title: z.ZodString;
|
|
569
|
+
authorId: z.ZodString;
|
|
570
|
+
isPinned: z.ZodBoolean;
|
|
571
|
+
isLocked: z.ZodBoolean;
|
|
572
|
+
lastPostAt: z.ZodNullable<z.ZodString>;
|
|
573
|
+
createdAt: z.ZodString;
|
|
574
|
+
}, z.core.$strip>>;
|
|
575
|
+
posts: z.ZodArray<z.ZodObject<{
|
|
576
|
+
id: z.ZodString;
|
|
577
|
+
threadId: z.ZodString;
|
|
578
|
+
authorId: z.ZodString;
|
|
579
|
+
content: z.ZodNullable<z.ZodString>;
|
|
580
|
+
createdAt: z.ZodString;
|
|
581
|
+
updatedAt: z.ZodString;
|
|
582
|
+
}, z.core.$strip>>;
|
|
583
|
+
}, z.core.$strip>;
|
|
584
|
+
signature: z.ZodString;
|
|
585
|
+
}, z.core.$strip>;
|
|
586
|
+
declare const TenantBackupSchema: z.ZodObject<{
|
|
587
|
+
version: z.ZodLiteral<1>;
|
|
588
|
+
exportedAt: z.ZodString;
|
|
589
|
+
sourceTenantId: z.ZodNumber;
|
|
590
|
+
includeContent: z.ZodBoolean;
|
|
591
|
+
data: z.ZodObject<{
|
|
592
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
593
|
+
categories: z.ZodArray<z.ZodObject<{
|
|
594
|
+
id: z.ZodString;
|
|
595
|
+
name: z.ZodString;
|
|
596
|
+
description: z.ZodNullable<z.ZodString>;
|
|
597
|
+
position: z.ZodNumber;
|
|
598
|
+
}, z.core.$strip>>;
|
|
599
|
+
groups: z.ZodArray<z.ZodObject<{
|
|
600
|
+
id: z.ZodString;
|
|
601
|
+
name: z.ZodString;
|
|
602
|
+
description: z.ZodNullable<z.ZodString>;
|
|
603
|
+
position: z.ZodNumber;
|
|
604
|
+
permissions: z.ZodArray<z.ZodString>;
|
|
605
|
+
visibleForumIds: z.ZodArray<z.ZodString>;
|
|
606
|
+
}, z.core.$strip>>;
|
|
607
|
+
memberships: z.ZodArray<z.ZodObject<{
|
|
608
|
+
userId: z.ZodString;
|
|
609
|
+
groupId: z.ZodString;
|
|
610
|
+
}, z.core.$strip>>;
|
|
611
|
+
threads: z.ZodArray<z.ZodObject<{
|
|
612
|
+
id: z.ZodString;
|
|
613
|
+
forumId: z.ZodString;
|
|
614
|
+
title: z.ZodString;
|
|
615
|
+
authorId: z.ZodString;
|
|
616
|
+
isPinned: z.ZodBoolean;
|
|
617
|
+
isLocked: z.ZodBoolean;
|
|
618
|
+
lastPostAt: z.ZodNullable<z.ZodString>;
|
|
619
|
+
createdAt: z.ZodString;
|
|
620
|
+
}, z.core.$strip>>;
|
|
621
|
+
posts: z.ZodArray<z.ZodObject<{
|
|
622
|
+
id: z.ZodString;
|
|
623
|
+
threadId: z.ZodString;
|
|
624
|
+
authorId: z.ZodString;
|
|
625
|
+
content: z.ZodNullable<z.ZodString>;
|
|
626
|
+
createdAt: z.ZodString;
|
|
627
|
+
updatedAt: z.ZodString;
|
|
628
|
+
}, z.core.$strip>>;
|
|
629
|
+
}, z.core.$strip>;
|
|
630
|
+
signature: z.ZodString;
|
|
631
|
+
}, z.core.$strip>;
|
|
632
|
+
declare const BackupQuerySchema: z.ZodObject<{
|
|
633
|
+
includeContent: z.ZodDefault<z.ZodCoercedBoolean<unknown>>;
|
|
634
|
+
}, z.core.$strip>;
|
|
635
|
+
type BackupSettings = z.infer<typeof BackupSettingsSchema>;
|
|
636
|
+
type BackupCategory = z.infer<typeof BackupCategorySchema>;
|
|
637
|
+
type BackupGroup = z.infer<typeof BackupGroupSchema>;
|
|
638
|
+
type BackupMembership = z.infer<typeof BackupMembershipSchema>;
|
|
639
|
+
type BackupThread = z.infer<typeof BackupThreadSchema>;
|
|
640
|
+
type BackupPost = z.infer<typeof BackupPostSchema>;
|
|
641
|
+
type BackupData = z.infer<typeof BackupDataSchema>;
|
|
642
|
+
type BackupPayload = z.infer<typeof BackupPayloadSchema>;
|
|
643
|
+
type TenantBackup = z.infer<typeof TenantBackupSchema>;
|
|
644
|
+
type BackupQuery = z.infer<typeof BackupQuerySchema>;
|
|
645
|
+
|
|
646
|
+
declare const RestoreTenantSchema: z.ZodObject<{
|
|
647
|
+
payload: z.ZodObject<{
|
|
648
|
+
version: z.ZodLiteral<1>;
|
|
649
|
+
exportedAt: z.ZodString;
|
|
650
|
+
sourceTenantId: z.ZodNumber;
|
|
651
|
+
includeContent: z.ZodBoolean;
|
|
652
|
+
data: z.ZodObject<{
|
|
653
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
654
|
+
categories: z.ZodArray<z.ZodObject<{
|
|
655
|
+
id: z.ZodString;
|
|
656
|
+
name: z.ZodString;
|
|
657
|
+
description: z.ZodNullable<z.ZodString>;
|
|
658
|
+
position: z.ZodNumber;
|
|
659
|
+
}, z.core.$strip>>;
|
|
660
|
+
groups: z.ZodArray<z.ZodObject<{
|
|
661
|
+
id: z.ZodString;
|
|
662
|
+
name: z.ZodString;
|
|
663
|
+
description: z.ZodNullable<z.ZodString>;
|
|
664
|
+
position: z.ZodNumber;
|
|
665
|
+
permissions: z.ZodArray<z.ZodString>;
|
|
666
|
+
visibleForumIds: z.ZodArray<z.ZodString>;
|
|
667
|
+
}, z.core.$strip>>;
|
|
668
|
+
memberships: z.ZodArray<z.ZodObject<{
|
|
669
|
+
userId: z.ZodString;
|
|
670
|
+
groupId: z.ZodString;
|
|
671
|
+
}, z.core.$strip>>;
|
|
672
|
+
threads: z.ZodArray<z.ZodObject<{
|
|
673
|
+
id: z.ZodString;
|
|
674
|
+
forumId: z.ZodString;
|
|
675
|
+
title: z.ZodString;
|
|
676
|
+
authorId: z.ZodString;
|
|
677
|
+
isPinned: z.ZodBoolean;
|
|
678
|
+
isLocked: z.ZodBoolean;
|
|
679
|
+
lastPostAt: z.ZodNullable<z.ZodString>;
|
|
680
|
+
createdAt: z.ZodString;
|
|
681
|
+
}, z.core.$strip>>;
|
|
682
|
+
posts: z.ZodArray<z.ZodObject<{
|
|
683
|
+
id: z.ZodString;
|
|
684
|
+
threadId: z.ZodString;
|
|
685
|
+
authorId: z.ZodString;
|
|
686
|
+
content: z.ZodNullable<z.ZodString>;
|
|
687
|
+
createdAt: z.ZodString;
|
|
688
|
+
updatedAt: z.ZodString;
|
|
689
|
+
}, z.core.$strip>>;
|
|
690
|
+
}, z.core.$strip>;
|
|
691
|
+
signature: z.ZodString;
|
|
692
|
+
}, z.core.$strip>;
|
|
693
|
+
includeContent: z.ZodBoolean;
|
|
694
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
695
|
+
}, z.core.$strip>;
|
|
696
|
+
declare const RestoreTenantResponseSchema: z.ZodObject<{
|
|
697
|
+
signatureValid: z.ZodBoolean;
|
|
698
|
+
}, z.core.$strip>;
|
|
699
|
+
declare const RestoreErrorSchema: z.ZodObject<{
|
|
700
|
+
code: z.ZodString;
|
|
701
|
+
message: z.ZodString;
|
|
702
|
+
}, z.core.$strip>;
|
|
703
|
+
type RestoreTenant = z.infer<typeof RestoreTenantSchema>;
|
|
704
|
+
type RestoreTenantResponse = z.infer<typeof RestoreTenantResponseSchema>;
|
|
705
|
+
type RestoreError = z.infer<typeof RestoreErrorSchema>;
|
|
706
|
+
|
|
707
|
+
declare const PlatformSettingSchema: z.ZodObject<{
|
|
708
|
+
key: z.ZodString;
|
|
709
|
+
value: z.ZodUnknown;
|
|
710
|
+
updatedAt: z.ZodISODateTime;
|
|
711
|
+
}, z.core.$strip>;
|
|
712
|
+
declare const UpdatePlatformSettingSchema: z.ZodObject<{
|
|
713
|
+
value: z.ZodUnknown;
|
|
714
|
+
}, z.core.$strip>;
|
|
715
|
+
declare const GrantPlatformOwnerSchema: z.ZodObject<{
|
|
716
|
+
userId: z.ZodUUID;
|
|
717
|
+
}, z.core.$strip>;
|
|
718
|
+
type PlatformSetting = z.infer<typeof PlatformSettingSchema>;
|
|
719
|
+
type UpdatePlatformSetting = z.infer<typeof UpdatePlatformSettingSchema>;
|
|
720
|
+
type GrantPlatformOwner = z.infer<typeof GrantPlatformOwnerSchema>;
|
|
3
721
|
|
|
4
722
|
interface RoundtableClientOpts {
|
|
5
723
|
baseURL: string;
|
|
@@ -414,5 +1132,5 @@ declare class TenantClient {
|
|
|
414
1132
|
}, body: UpdateThread): Promise<Thread>;
|
|
415
1133
|
}
|
|
416
1134
|
|
|
417
|
-
export { AcpClient, TenantClient };
|
|
418
|
-
export type { RoundtableClientOpts };
|
|
1135
|
+
export { AcpClient, ApiKeySchema, AssignablePermissionSchema, BackupPayloadSchema, BackupQuerySchema, CategorySchema, CreateApiKeySchema, CreateCategorySchema, CreateForumSchema, CreateGroupSchema, CreatePostSchema, CreateTenantSchema, CreateThreadSchema, CreatedApiKeySchema, ErrorSchema, ForumSchema, GrantPlatformOwnerSchema, GroupMemberSchema, GroupSchema, IdSchema, KeyIdParamsSchema, NotificationCountSchema, NotificationIdParamsSchema, NotificationSchema, NotificationTypeSchema, OwnedTenantSchema, PERMISSIONS, PaginatedResponseSchema, PaginationQuerySchema, PermissionSchema, PlatformSettingKeyParamsSchema, PlatformSettingSchema, PostSchema, PostsQuerySchema, ReorderCategorySchema, ReorderForumSchema, ReorderGroupSchema, RestoreErrorSchema, RestoreTenantResponseSchema, RestoreTenantSchema, SearchQuerySchema, SearchResponseSchema, SearchResultSchema, SearchResultTypeSchema, SetCustomDomainSchema, SetGroupForumsSchema, SetGroupPermissionsSchema, SetThreadReadStatusSchema, SetUserGroupsSchema, TenantBackupSchema, TenantCategoryIdParamsSchema, TenantClient, TenantForumIdParamsSchema, TenantGroupIdParamsSchema, TenantIdParamsSchema, TenantOwnerSchema, TenantPostIdParamsSchema, TenantSchema, TenantThreadIdParamsSchema, TenantThreadPostIdParamsSchema, TenantTokenSchema, TenantUserIdParamsSchema, TenantUuidParamsSchema, ThreadReadStatusSchema, ThreadSchema, TransferTenantOwnerSchema, UpdateCategorySchema, UpdateForumSchema, UpdateGroupSchema, UpdatePlatformSettingSchema, UpdatePostSchema, UpdateThreadSchema, UpdateUserProfileSchema, UserIdParamsSchema, UserMembershipSchema, UserProfileSchema };
|
|
1136
|
+
export type { ApiError, ApiKey, BackupCategory, BackupData, BackupGroup, BackupMembership, BackupPayload, BackupPost, BackupQuery, BackupSettings, BackupThread, Category, CreateApiKey, CreateCategory, CreateForum, CreateGroup, CreatePost, CreateTenant, CreateThread, CreatedApiKey, Forum, GrantPlatformOwner, Group, GroupMember, Id, KeyIdParams, Notification, NotificationCount, NotificationIdParams, NotificationType, OwnedTenant, PaginatedResponse, PaginationQuery, Permission, PlatformSetting, PlatformSettingKeyParams, Post, PostsQuery, ReorderCategory, ReorderForum, ReorderGroup, RestoreError, RestoreTenant, RestoreTenantResponse, RoundtableClientOpts, SearchQuery, SearchResponse, SearchResult, SearchResultType, SetCustomDomain, SetGroupForums, SetGroupPermissions, SetThreadReadStatus, SetUserGroups, Tenant, TenantBackup, TenantCategoryIdParams, TenantForumIdParams, TenantGroupIdParams, TenantIdParams, TenantOwner, TenantPostIdParams, TenantThreadIdParams, TenantThreadPostIdParams, TenantToken, TenantUserIdParams, TenantUuidParams, Thread, ThreadReadStatus, TransferTenantOwner, UpdateCategory, UpdateForum, UpdateGroup, UpdatePlatformSetting, UpdatePost, UpdateThread, UpdateUserProfile, UserIdParams, UserMembership, UserProfile };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/tslib/modules/index.d.ts","../../../node_modules/zod/v4/core/json-schema.d.cts","../../../node_modules/zod/v4/core/standard-schema.d.cts","../../../node_modules/zod/v4/core/registries.d.cts","../../../node_modules/zod/v4/core/to-json-schema.d.cts","../../../node_modules/zod/v4/core/util.d.cts","../../../node_modules/zod/v4/core/versions.d.cts","../../../node_modules/zod/v4/core/schemas.d.cts","../../../node_modules/zod/v4/core/checks.d.cts","../../../node_modules/zod/v4/core/errors.d.cts","../../../node_modules/zod/v4/core/core.d.cts","../../../node_modules/zod/v4/core/parse.d.cts","../../../node_modules/zod/v4/core/regexes.d.cts","../../../node_modules/zod/v4/locales/ar.d.cts","../../../node_modules/zod/v4/locales/az.d.cts","../../../node_modules/zod/v4/locales/be.d.cts","../../../node_modules/zod/v4/locales/bg.d.cts","../../../node_modules/zod/v4/locales/ca.d.cts","../../../node_modules/zod/v4/locales/cs.d.cts","../../../node_modules/zod/v4/locales/da.d.cts","../../../node_modules/zod/v4/locales/de.d.cts","../../../node_modules/zod/v4/locales/el.d.cts","../../../node_modules/zod/v4/locales/en.d.cts","../../../node_modules/zod/v4/locales/eo.d.cts","../../../node_modules/zod/v4/locales/es.d.cts","../../../node_modules/zod/v4/locales/fa.d.cts","../../../node_modules/zod/v4/locales/fi.d.cts","../../../node_modules/zod/v4/locales/fr.d.cts","../../../node_modules/zod/v4/locales/fr-CA.d.cts","../../../node_modules/zod/v4/locales/he.d.cts","../../../node_modules/zod/v4/locales/hr.d.cts","../../../node_modules/zod/v4/locales/hu.d.cts","../../../node_modules/zod/v4/locales/hy.d.cts","../../../node_modules/zod/v4/locales/id.d.cts","../../../node_modules/zod/v4/locales/is.d.cts","../../../node_modules/zod/v4/locales/it.d.cts","../../../node_modules/zod/v4/locales/ja.d.cts","../../../node_modules/zod/v4/locales/ka.d.cts","../../../node_modules/zod/v4/locales/kh.d.cts","../../../node_modules/zod/v4/locales/km.d.cts","../../../node_modules/zod/v4/locales/ko.d.cts","../../../node_modules/zod/v4/locales/lt.d.cts","../../../node_modules/zod/v4/locales/mk.d.cts","../../../node_modules/zod/v4/locales/ms.d.cts","../../../node_modules/zod/v4/locales/nl.d.cts","../../../node_modules/zod/v4/locales/no.d.cts","../../../node_modules/zod/v4/locales/ota.d.cts","../../../node_modules/zod/v4/locales/ps.d.cts","../../../node_modules/zod/v4/locales/pl.d.cts","../../../node_modules/zod/v4/locales/pt.d.cts","../../../node_modules/zod/v4/locales/ro.d.cts","../../../node_modules/zod/v4/locales/ru.d.cts","../../../node_modules/zod/v4/locales/sl.d.cts","../../../node_modules/zod/v4/locales/sv.d.cts","../../../node_modules/zod/v4/locales/ta.d.cts","../../../node_modules/zod/v4/locales/th.d.cts","../../../node_modules/zod/v4/locales/tr.d.cts","../../../node_modules/zod/v4/locales/ua.d.cts","../../../node_modules/zod/v4/locales/uk.d.cts","../../../node_modules/zod/v4/locales/ur.d.cts","../../../node_modules/zod/v4/locales/uz.d.cts","../../../node_modules/zod/v4/locales/vi.d.cts","../../../node_modules/zod/v4/locales/zh-CN.d.cts","../../../node_modules/zod/v4/locales/zh-TW.d.cts","../../../node_modules/zod/v4/locales/yo.d.cts","../../../node_modules/zod/v4/locales/index.d.cts","../../../node_modules/zod/v4/core/doc.d.cts","../../../node_modules/zod/v4/core/api.d.cts","../../../node_modules/zod/v4/core/json-schema-processors.d.cts","../../../node_modules/zod/v4/core/json-schema-generator.d.cts","../../../node_modules/zod/v4/core/index.d.cts","../../../node_modules/zod/v4/classic/errors.d.cts","../../../node_modules/zod/v4/classic/parse.d.cts","../../../node_modules/zod/v4/classic/schemas.d.cts","../../../node_modules/zod/v4/classic/checks.d.cts","../../../node_modules/zod/v4/classic/compat.d.cts","../../../node_modules/zod/v4/classic/from-json-schema.d.cts","../../../node_modules/zod/v4/classic/iso.d.cts","../../../node_modules/zod/v4/classic/coerce.d.cts","../../../node_modules/zod/v4/classic/external.d.cts","../../../node_modules/zod/index.d.cts","../../types/dist/lib/common.d.ts","../../types/dist/lib/common-params.d.ts","../../types/dist/lib/user.d.ts","../../types/dist/lib/category.d.ts","../../types/dist/lib/forum.d.ts","../../types/dist/lib/thread.d.ts","../../types/dist/lib/post.d.ts","../../types/dist/lib/post-query.d.ts","../../types/dist/lib/group.d.ts","../../types/dist/lib/notification.d.ts","../../types/dist/lib/notification-count.d.ts","../../types/dist/lib/api-key.d.ts","../../types/dist/lib/search.d.ts","../../types/dist/lib/tenant.d.ts","../../types/dist/lib/tenant-owner.d.ts","../../types/dist/lib/tenant-backup.d.ts","../../types/dist/lib/tenant-restore.d.ts","../../types/dist/lib/platform.d.ts","../../types/dist/index.d.ts","../src/request.ts","../src/generated/client.ts","../src/index.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts"],"fileIdsList":[[166,218,219,221,238,239],[166,220,221,238,239],[221,238,239],[166,221,226,238,239,257],[166,221,222,227,232,238,239,241,254,265],[166,221,222,223,232,238,239,241],[166,221,238,239],[166,221,224,238,239,266],[166,221,225,226,233,238,239,243],[166,221,226,238,239,254,262],[166,221,227,229,232,238,239,241],[166,220,221,228,238,239],[166,221,229,230,238,239],[166,221,231,232,238,239],[166,220,221,232,238,239],[166,221,232,233,234,238,239,254,265],[166,221,232,233,234,238,239,249,254,257],[166,213,221,229,232,235,238,239,241,254,265],[166,221,232,233,235,236,238,239,241,254,262,265],[166,221,235,237,238,239,254,262,265],[164,165,166,167,168,169,170,171,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271],[166,221,232,238,239],[166,221,238,239,240,265],[166,221,229,232,238,239,241,254],[166,221,238,239,243],[166,221,238,239,244],[166,220,221,238,239,245],[166,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271],[166,221,238,239,247],[166,221,238,239,248],[166,221,232,238,239,249,250],[166,221,238,239,249,251,266,268],[166,221,233,238,239],[166,221,232,238,239,254,255,257],[166,221,238,239,256,257],[166,221,238,239,254,255],[166,221,238,239,257],[166,221,238,239,258],[166,218,221,238,239,254,259,265],[166,221,232,238,239,260,261],[166,221,238,239,260,261],[166,221,226,238,239,241,254,262],[166,221,238,239,263],[166,221,238,239,241,264],[166,221,235,238,239,248,265],[166,221,226,238,239,266],[166,221,238,239,254,267],[166,221,238,239,240,268],[166,221,238,239,269],[166,221,226,238,239],[166,213,221,238,239],[166,221,238,239,270],[166,213,221,232,234,238,239,245,254,257,265,267,268,270],[166,221,238,239,254,271],[60,166,221,238,239],[166,178,181,184,185,221,238,239,265],[166,181,221,238,239,254,265],[166,181,185,221,238,239,265],[166,221,238,239,254],[166,175,221,238,239],[166,179,221,238,239],[166,177,178,181,221,238,239,265],[166,221,238,239,241,262],[166,221,238,239,272],[166,175,221,238,239,272],[166,177,181,221,238,239,241,265],[166,172,173,174,176,180,221,232,238,239,254,265],[166,181,190,198,221,238,239],[166,173,179,221,238,239],[166,181,207,208,221,238,239],[166,173,176,181,221,238,239,257,265,272],[166,181,221,238,239],[166,177,181,221,238,239,265],[166,172,221,238,239],[166,175,176,177,179,180,181,182,183,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,221,238,239],[166,181,200,203,221,229,238,239],[166,181,190,191,192,221,238,239],[166,179,181,191,193,221,238,239],[166,180,221,238,239],[166,173,175,181,221,238,239],[166,181,185,191,193,221,238,239],[166,185,221,238,239],[166,179,181,184,221,238,239,265],[166,173,177,181,190,221,238,239],[166,181,200,221,238,239],[166,193,221,238,239],[166,175,181,207,221,238,239,257,270,272],[140,166,221,238,239],[131,166,221,238,239],[131,134,166,221,238,239],[66,126,129,131,132,133,134,135,136,137,138,139,166,221,238,239],[62,64,134,166,221,238,239],[131,132,166,221,238,239],[63,131,133,166,221,238,239],[64,66,68,69,70,71,166,221,238,239],[66,68,70,71,166,221,238,239],[66,68,70,166,221,238,239],[63,66,68,69,71,166,221,238,239],[62,64,65,66,67,68,69,70,71,72,73,126,127,128,129,130,166,221,238,239],[62,64,65,68,166,221,238,239],[64,65,68,166,221,238,239],[68,71,166,221,238,239],[62,63,65,66,67,69,70,71,166,221,238,239],[62,63,64,68,131,166,221,238,239],[68,69,70,71,166,221,238,239],[70,166,221,238,239],[74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,166,221,238,239],[61,160,161,166,221,238,239],[61,160,161,162,166,221,238,239],[61,166,221,238,239],[142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,166,221,238,239],[141,166,221,238,239]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"c1a2e05eb6d7ca8d7e4a7f4c93ccf0c2857e842a64c98eaee4d85841ee9855e6","impliedFormat":1},{"version":"835fb2909ce458740fb4a49fc61709896c6864f5ce3db7f0a88f06c720d74d02","impliedFormat":1},{"version":"6e5857f38aa297a859cab4ec891408659218a5a2610cd317b6dcbef9979459cc","impliedFormat":1},{"version":"ead8e39c2e11891f286b06ae2aa71f208b1802661fcdb2425cffa4f494a68854","impliedFormat":1},{"version":"40ba6c32eb732a09e4446ade5cb6ad0c147f186f9c9dc6878b90b4418ad9f6ea","impliedFormat":1},{"version":"fdd814741843f85c98281522c58f5a646590ba9019fad2efaa95987655e0611b","impliedFormat":1},{"version":"c78aff4fb58b28b8f642d5095fc7eeb79f00e652a67caa19693af1adabb833c9","impliedFormat":1},{"version":"f80a08ced8818dc99359c0acd5b3f12762e1ce53758007759b0d4e503cbf4a5e","impliedFormat":1},{"version":"37935fa7564bcc6e0bc845b766a24391098d26f7c8245d6e8ab37bc016816e94","impliedFormat":1},{"version":"68add36d9632bc096d7245d24d6b0b8ad5f125183016102a3dad4c9c2438ccb0","impliedFormat":1},{"version":"3a819c2928ee06bbcc84e2797fd3558ae2ebb7e0ed8d87f71732fb2e2acc87b4","impliedFormat":1},{"version":"0f8a263f4c8595c8a07de52e3f3927640c44386c1aa2984de9eae50d75e613b2","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"346fffde7c32da87c2196eb7494422449dc2ca82d3b4e6bf55be1d1a33ffc2b0","impliedFormat":1},{"version":"add0ce7b77ba5b308492fa68f77f24d1ed1d9148534bdf05ac17c30763fc1a79","impliedFormat":1},{"version":"8b5875e4958528042103fdd775e106a7f76bafc29709f0690df9a7d2241d52a7","impliedFormat":1},{"version":"2f67911e4bf4e0717dc2ded248ce2d5e4398d945ee13889a6852c1233ea41508","impliedFormat":1},{"version":"d8430c275b0f59417ea8e173cfb888a4477b430ec35b595bf734f3ec7a7d729f","impliedFormat":1},{"version":"69364df1c776372d7df1fb46a6cb3a6bf7f55e700f533a104e3f9d70a32bec18","impliedFormat":1},{"version":"6042774c61ece4ba77b3bf375f15942eb054675b7957882a00c22c0e4fe5865c","impliedFormat":1},{"version":"5a3bd57ed7a9d9afef74c75f77fce79ba3c786401af9810cdf45907c4e93f30e","impliedFormat":1},{"version":"aef26cf95593c8ace1c62c4724f9afac77bdfa756fb8a00613cd152117cb2f43","impliedFormat":1},{"version":"30db853bb2e60170ba11e39ab48bacecb32d06d4def89eedf17e58ebab762a65","impliedFormat":1},{"version":"e27451b24234dfed45f6cf22112a04955183a99c42a2691fb4936d63cfe42761","impliedFormat":1},{"version":"2316301dd223d31962d917999acf8e543e0119c5d24ec984c9f22cb23247160c","impliedFormat":1},{"version":"58d65a2803c3b6629b0e18c8bf1bc883a686fcf0333230dd0151ab6e85b74307","impliedFormat":1},{"version":"e818471014c77c103330aee11f00a7a00b37b35500b53ea6f337aefacd6174c9","impliedFormat":1},{"version":"268fd6d9f2e807a39a6c5aa654b00f949feb63d3faa7dd0f9bba7dde9172159c","impliedFormat":1},{"version":"29f823cbe0166e10e7176a94afe609a24b9e5af3858628c541ff8ce1727023cd","impliedFormat":1},"44123b6a6f3f302dadb37ed3491d4e0e18e87aafac891c20b76f29ac77f62d91","dd40d15a4d9424fbf4eb9b461f1b2adcf74e5443148dd5a363cbfca3c06e8375","d74f672799f9e54495a65ab6c10e1c71868e48b27d05e9bb2b6c7411e2bce00c","22db02370ff88e271f28cd5540eb3e185b13a155302bebc131bb5bec8002b564","1828e3976d18f628807a5a0c1f6c688dce3337572f2d733975cbfd16e309ac0b","d9099710f1391f3674da9f261b39c6892daa5b763691df296c9766508064a6ca","69461a534ca542c080845a519738c0e47d661373e2f7f628b46802971e50312d","6949785a69bf8333357bd0971141d1f0de66000f2b5eb4dafe9b06c47bc71152","19eb7d53a6b8aec3f584638f107111d9f259b4239e9a64bfc31a05309346eb96","005c1a70457fc3afec16c3471ea59061d34b99ecee471c48e697c85fa52fa9b5","cacd7870c1d18c9331f480bdf5e75b6a03b6ea6d40fcdecbd20d1ed9ee93d4ab","194c468fbca684d3c9c74d8097daa0e0f6700aecb9e76cabc545860247732882","435698928942ec7db66ef4b33b6d5a1c7443b00343030b2e149acb403a40a44b","018a42b1cfb024d399cecae1865ec054e6b71716e39dd883d22945bf434f2b0d","3f7e26910c8238abf00d7afa64357460e9a55fc0e618df37bb84c01fdcd78315","0755d71be9ad5e461eb513d4ce367a17235e5a679d50ab1ae03b217fdc8b3ce9","b6c8967b60b0d2dd975317cb7d0ddf139014da829ab5707163b4d8a748e948d1","a5fd0637ed1b6fcbae0cb69a606dd84b5e6d1f3d5b9d5e40bef79fadab37a3d4","ca965e1d3bdd4372a2b95ba0b22d42ee785364bbf7e7ba70bdf384ded83bb3b1",{"version":"49e983bc01244a416781732277fc1bf50ea5590224cec7f3c5d1c39d15b6eb05","signature":"5c8bec5caf88850a62433e207f235fbbf8c8bfbe3acb60256b099134f0483824"},{"version":"88fbd74f9a77c692b885213b8e64244b10168b5709a003049d45d8ab134cf533","signature":"7a14e96ab689c0e16dd435a75636e0c5ddb11b87bff00f6d24df778b01a821d9"},"645ebdefecea0918cf45c5138519ed6d829e6fc2a68bec6b097da37c5f34ba69",{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"24371e69a38fc33e268d4a8716dbcda430d6c2c414a99ff9669239c4b8f40dea","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"c63b9ada8c72f95aac5db92aea07e5e87ec810353cdf63b2d78f49a58662cf6c","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"f724236417941ea77ec8d38c6b7021f5fb7f8521c7f8c1538e87661f2c6a0774","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"c06b2652ffeb89afd0f1c52c165ced77032f9cd09bc481153fbd6b5504c69494","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"9d8f9e63e29a3396285620908e7f14d874d066caea747dc4b2c378f0599166b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"612422d5ba6b4a5c4537f423e9199645468ad80a689801da63ab7edb43f7b835","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"1cbdcdef62bf42688e5d825898c3a59458466c48ad8a4ef3f88d8a1cd04310d6","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc8c6f5322961b56d9906601b20798725df60baeab45ec014fba9f795d5596fd","impliedFormat":1},{"version":"67e435fa530778903f5525904e6645b7368eb5ac622055febd19bb399e328ccd","impliedFormat":1},{"version":"060d305fe4494d8cb2b99d620928d369d1ee55c1645f5e729a2aca07d0f108cb","impliedFormat":1},{"version":"5b22bf96be06fca1e134e3a85351ffe7aa2edf0c9a5bd175b7239ee48186dbf5","impliedFormat":1},{"version":"0c50296ee73dae94efc3f0da4936b1146ca6ce2217acfabb44c19c9a33fa30e5","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"5b48cc670da1dfe926036deaf349085caf822def460a6d50de23f1cc12a5f8cd","impliedFormat":1},{"version":"418f34087d52d001e2688a6282a5de9bf583ff771ed5546af0ae36e4f60a458b","affectsGlobalScope":true,"impliedFormat":1},{"version":"036c9a03b01281f99f8251fdc7088e894566be44b3f139a9d48501a978b611df","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"04bf1aa481d1adfb16d93d76e44ce71c51c8ef68039d849926551199489637f6","impliedFormat":1},{"version":"2c9adcc85574b002c9a6311ff2141055769e0071856ec979d92ff989042b1f1b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1569ad5969ae0de6ad0bdfaaab0dabcd8878bc3147ab096206eed2019bb84e7f","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"42a350ce4f6f291198dc89833afcc4fd078248b4e1fdc9d05c846c66a670f710","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"b03754211d839cdc48979996525a32eb62130682c2f9801dfc2f25533ce7238d","impliedFormat":1},{"version":"3910dab597c40e173bf0e0d419d3ce9682c54ebf6ae84849f9b829b1451a17ec","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"486c074a5c0f2254345c0d1c9540380f5463999e42d7e1a159305ea823d3c4b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"f4d99ac08c4097a3cc202bec2c7198c19dcdd80d4ec6c62d1356b10d03b119d5","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"ca77e83162eccec633513723d178d4203bdd5465297267696be08013bab0aa1d","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"f61c153d5abbe4381a1fba0d41be0babdd5de51c626ee7ff14cede14dedc33f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7803171d745ab18e77f16bf82e742268ff72b7f7382ab191e4277527580c2d89","affectsGlobalScope":true,"impliedFormat":1},{"version":"0e9ba65cd3d6d194bdda7343f9f2917f7144ead96a924ca58d1a14919992dc20","impliedFormat":1},{"version":"255d948f87f24ffd57bcb2fdf95792fd418a2e1f712a98cf2cce88744d75085c","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"0b0dfb2d3e8420ead06f6a11acfb02ddcec42257e6ce391993e895ba0af86de4","affectsGlobalScope":true,"impliedFormat":1},{"version":"bfd3b3c21a56104693183942e221c1896ee23bcb8f8d91ab0b941f7b32985411","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1}],"root":[[161,163]],"options":{"composite":true,"declarationMap":true,"emitDeclarationOnly":false,"importHelpers":true,"module":200,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedSideEffectImports":false,"noUnusedLocals":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.lib.tsbuildinfo"},"referencedMap":[[218,1],[219,1],[220,2],[166,3],[221,4],[222,5],[223,6],[164,7],[224,8],[225,9],[226,10],[227,11],[228,12],[229,13],[230,13],[231,14],[232,15],[233,16],[234,17],[167,7],[165,7],[235,18],[236,19],[237,20],[272,21],[238,22],[239,7],[240,23],[241,24],[243,25],[244,26],[245,27],[246,28],[247,29],[248,30],[249,31],[250,31],[251,32],[252,7],[253,33],[254,34],[256,35],[255,36],[257,37],[258,38],[259,39],[260,40],[261,41],[262,42],[263,43],[264,44],[265,45],[266,46],[267,47],[268,48],[269,49],[168,7],[169,50],[170,7],[171,7],[214,51],[215,52],[216,7],[217,37],[270,53],[271,54],[242,7],[61,55],[60,7],[58,7],[59,7],[11,7],[10,7],[2,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[3,7],[20,7],[21,7],[4,7],[22,7],[26,7],[23,7],[24,7],[25,7],[27,7],[28,7],[29,7],[5,7],[30,7],[31,7],[32,7],[33,7],[6,7],[37,7],[34,7],[35,7],[36,7],[38,7],[7,7],[39,7],[44,7],[45,7],[40,7],[41,7],[42,7],[43,7],[8,7],[49,7],[46,7],[47,7],[48,7],[50,7],[9,7],[51,7],[52,7],[53,7],[55,7],[54,7],[56,7],[1,7],[57,7],[190,56],[202,57],[187,58],[203,59],[212,60],[178,61],[179,62],[177,63],[211,64],[206,65],[210,66],[181,67],[199,68],[180,69],[209,70],[175,71],[176,65],[182,72],[183,7],[189,73],[186,72],[173,74],[213,75],[204,76],[193,77],[192,72],[194,78],[197,79],[191,80],[195,81],[207,64],[184,82],[185,83],[198,84],[174,59],[201,85],[200,72],[188,83],[196,86],[205,7],[172,7],[208,87],[141,88],[135,89],[139,90],[136,90],[132,89],[140,91],[137,92],[138,90],[133,93],[134,94],[128,95],[69,96],[71,97],[127,7],[70,98],[131,99],[130,100],[129,101],[62,7],[72,96],[73,7],[64,102],[68,103],[63,7],[65,104],[66,105],[67,7],[74,106],[75,106],[76,106],[77,106],[78,106],[79,106],[80,106],[81,106],[82,106],[83,106],[84,106],[85,106],[86,106],[87,106],[89,106],[88,106],[90,106],[91,106],[92,106],[93,106],[94,106],[126,107],[95,106],[96,106],[97,106],[98,106],[99,106],[100,106],[101,106],[102,106],[103,106],[104,106],[105,106],[106,106],[107,106],[109,106],[108,106],[110,106],[111,106],[112,106],[113,106],[114,106],[115,106],[116,106],[117,106],[118,106],[119,106],[120,106],[121,106],[122,106],[125,106],[123,106],[124,106],[162,108],[163,109],[161,110],[160,111],[153,112],[145,112],[143,112],[142,112],[146,112],[150,112],[152,112],[151,112],[159,112],[149,112],[148,112],[154,112],[157,112],[156,112],[158,112],[155,112],[147,112],[144,112]],"latestChangedDtsFile":"./index.d.ts","version":"6.0.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/tslib/modules/index.d.ts","../../../node_modules/zod/v4/core/json-schema.d.cts","../../../node_modules/zod/v4/core/standard-schema.d.cts","../../../node_modules/zod/v4/core/registries.d.cts","../../../node_modules/zod/v4/core/to-json-schema.d.cts","../../../node_modules/zod/v4/core/util.d.cts","../../../node_modules/zod/v4/core/versions.d.cts","../../../node_modules/zod/v4/core/schemas.d.cts","../../../node_modules/zod/v4/core/checks.d.cts","../../../node_modules/zod/v4/core/errors.d.cts","../../../node_modules/zod/v4/core/core.d.cts","../../../node_modules/zod/v4/core/parse.d.cts","../../../node_modules/zod/v4/core/regexes.d.cts","../../../node_modules/zod/v4/locales/ar.d.cts","../../../node_modules/zod/v4/locales/az.d.cts","../../../node_modules/zod/v4/locales/be.d.cts","../../../node_modules/zod/v4/locales/bg.d.cts","../../../node_modules/zod/v4/locales/ca.d.cts","../../../node_modules/zod/v4/locales/cs.d.cts","../../../node_modules/zod/v4/locales/da.d.cts","../../../node_modules/zod/v4/locales/de.d.cts","../../../node_modules/zod/v4/locales/el.d.cts","../../../node_modules/zod/v4/locales/en.d.cts","../../../node_modules/zod/v4/locales/eo.d.cts","../../../node_modules/zod/v4/locales/es.d.cts","../../../node_modules/zod/v4/locales/fa.d.cts","../../../node_modules/zod/v4/locales/fi.d.cts","../../../node_modules/zod/v4/locales/fr.d.cts","../../../node_modules/zod/v4/locales/fr-CA.d.cts","../../../node_modules/zod/v4/locales/he.d.cts","../../../node_modules/zod/v4/locales/hr.d.cts","../../../node_modules/zod/v4/locales/hu.d.cts","../../../node_modules/zod/v4/locales/hy.d.cts","../../../node_modules/zod/v4/locales/id.d.cts","../../../node_modules/zod/v4/locales/is.d.cts","../../../node_modules/zod/v4/locales/it.d.cts","../../../node_modules/zod/v4/locales/ja.d.cts","../../../node_modules/zod/v4/locales/ka.d.cts","../../../node_modules/zod/v4/locales/kh.d.cts","../../../node_modules/zod/v4/locales/km.d.cts","../../../node_modules/zod/v4/locales/ko.d.cts","../../../node_modules/zod/v4/locales/lt.d.cts","../../../node_modules/zod/v4/locales/mk.d.cts","../../../node_modules/zod/v4/locales/ms.d.cts","../../../node_modules/zod/v4/locales/nl.d.cts","../../../node_modules/zod/v4/locales/no.d.cts","../../../node_modules/zod/v4/locales/ota.d.cts","../../../node_modules/zod/v4/locales/ps.d.cts","../../../node_modules/zod/v4/locales/pl.d.cts","../../../node_modules/zod/v4/locales/pt.d.cts","../../../node_modules/zod/v4/locales/ro.d.cts","../../../node_modules/zod/v4/locales/ru.d.cts","../../../node_modules/zod/v4/locales/sl.d.cts","../../../node_modules/zod/v4/locales/sv.d.cts","../../../node_modules/zod/v4/locales/ta.d.cts","../../../node_modules/zod/v4/locales/th.d.cts","../../../node_modules/zod/v4/locales/tr.d.cts","../../../node_modules/zod/v4/locales/ua.d.cts","../../../node_modules/zod/v4/locales/uk.d.cts","../../../node_modules/zod/v4/locales/ur.d.cts","../../../node_modules/zod/v4/locales/uz.d.cts","../../../node_modules/zod/v4/locales/vi.d.cts","../../../node_modules/zod/v4/locales/zh-CN.d.cts","../../../node_modules/zod/v4/locales/zh-TW.d.cts","../../../node_modules/zod/v4/locales/yo.d.cts","../../../node_modules/zod/v4/locales/index.d.cts","../../../node_modules/zod/v4/core/doc.d.cts","../../../node_modules/zod/v4/core/api.d.cts","../../../node_modules/zod/v4/core/json-schema-processors.d.cts","../../../node_modules/zod/v4/core/json-schema-generator.d.cts","../../../node_modules/zod/v4/core/index.d.cts","../../../node_modules/zod/v4/classic/errors.d.cts","../../../node_modules/zod/v4/classic/parse.d.cts","../../../node_modules/zod/v4/classic/schemas.d.cts","../../../node_modules/zod/v4/classic/checks.d.cts","../../../node_modules/zod/v4/classic/compat.d.cts","../../../node_modules/zod/v4/classic/from-json-schema.d.cts","../../../node_modules/zod/v4/classic/iso.d.cts","../../../node_modules/zod/v4/classic/coerce.d.cts","../../../node_modules/zod/v4/classic/external.d.cts","../../../node_modules/zod/index.d.cts","../../types/dist/lib/common.d.ts","../../types/dist/lib/common-params.d.ts","../../types/dist/lib/user.d.ts","../../types/dist/lib/category.d.ts","../../types/dist/lib/forum.d.ts","../../types/dist/lib/thread.d.ts","../../types/dist/lib/post.d.ts","../../types/dist/lib/post-query.d.ts","../../types/dist/lib/group.d.ts","../../types/dist/lib/notification.d.ts","../../types/dist/lib/notification-count.d.ts","../../types/dist/lib/api-key.d.ts","../../types/dist/lib/search.d.ts","../../types/dist/lib/tenant.d.ts","../../types/dist/lib/tenant-owner.d.ts","../../types/dist/lib/tenant-backup.d.ts","../../types/dist/lib/tenant-restore.d.ts","../../types/dist/lib/platform.d.ts","../../types/dist/index.d.ts","../src/request.ts","../src/generated/client.ts","../src/index.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts"],"fileIdsList":[[166,218,219,221,238,239],[166,220,221,238,239],[221,238,239],[166,221,226,238,239,257],[166,221,222,227,232,238,239,241,254,265],[166,221,222,223,232,238,239,241],[166,221,238,239],[166,221,224,238,239,266],[166,221,225,226,233,238,239,243],[166,221,226,238,239,254,262],[166,221,227,229,232,238,239,241],[166,220,221,228,238,239],[166,221,229,230,238,239],[166,221,231,232,238,239],[166,220,221,232,238,239],[166,221,232,233,234,238,239,254,265],[166,221,232,233,234,238,239,249,254,257],[166,213,221,229,232,235,238,239,241,254,265],[166,221,232,233,235,236,238,239,241,254,262,265],[166,221,235,237,238,239,254,262,265],[164,165,166,167,168,169,170,171,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271],[166,221,232,238,239],[166,221,238,239,240,265],[166,221,229,232,238,239,241,254],[166,221,238,239,243],[166,221,238,239,244],[166,220,221,238,239,245],[166,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271],[166,221,238,239,247],[166,221,238,239,248],[166,221,232,238,239,249,250],[166,221,238,239,249,251,266,268],[166,221,233,238,239],[166,221,232,238,239,254,255,257],[166,221,238,239,256,257],[166,221,238,239,254,255],[166,221,238,239,257],[166,221,238,239,258],[166,218,221,238,239,254,259,265],[166,221,232,238,239,260,261],[166,221,238,239,260,261],[166,221,226,238,239,241,254,262],[166,221,238,239,263],[166,221,238,239,241,264],[166,221,235,238,239,248,265],[166,221,226,238,239,266],[166,221,238,239,254,267],[166,221,238,239,240,268],[166,221,238,239,269],[166,221,226,238,239],[166,213,221,238,239],[166,221,238,239,270],[166,213,221,232,234,238,239,245,254,257,265,267,268,270],[166,221,238,239,254,271],[60,166,221,238,239],[166,178,181,184,185,221,238,239,265],[166,181,221,238,239,254,265],[166,181,185,221,238,239,265],[166,221,238,239,254],[166,175,221,238,239],[166,179,221,238,239],[166,177,178,181,221,238,239,265],[166,221,238,239,241,262],[166,221,238,239,272],[166,175,221,238,239,272],[166,177,181,221,238,239,241,265],[166,172,173,174,176,180,221,232,238,239,254,265],[166,181,190,198,221,238,239],[166,173,179,221,238,239],[166,181,207,208,221,238,239],[166,173,176,181,221,238,239,257,265,272],[166,181,221,238,239],[166,177,181,221,238,239,265],[166,172,221,238,239],[166,175,176,177,179,180,181,182,183,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,221,238,239],[166,181,200,203,221,229,238,239],[166,181,190,191,192,221,238,239],[166,179,181,191,193,221,238,239],[166,180,221,238,239],[166,173,175,181,221,238,239],[166,181,185,191,193,221,238,239],[166,185,221,238,239],[166,179,181,184,221,238,239,265],[166,173,177,181,190,221,238,239],[166,181,200,221,238,239],[166,193,221,238,239],[166,175,181,207,221,238,239,257,270,272],[140,166,221,238,239],[131,166,221,238,239],[131,134,166,221,238,239],[66,126,129,131,132,133,134,135,136,137,138,139,166,221,238,239],[62,64,134,166,221,238,239],[131,132,166,221,238,239],[63,131,133,166,221,238,239],[64,66,68,69,70,71,166,221,238,239],[66,68,70,71,166,221,238,239],[66,68,70,166,221,238,239],[63,66,68,69,71,166,221,238,239],[62,64,65,66,67,68,69,70,71,72,73,126,127,128,129,130,166,221,238,239],[62,64,65,68,166,221,238,239],[64,65,68,166,221,238,239],[68,71,166,221,238,239],[62,63,65,66,67,69,70,71,166,221,238,239],[62,63,64,68,131,166,221,238,239],[68,69,70,71,166,221,238,239],[70,166,221,238,239],[74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,166,221,238,239],[61,160,161,166,221,238,239],[61,160,161,162,166,221,238,239],[61,166,221,238,239],[142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,166,221,238,239],[141,166,221,238,239]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"c1a2e05eb6d7ca8d7e4a7f4c93ccf0c2857e842a64c98eaee4d85841ee9855e6","impliedFormat":1},{"version":"835fb2909ce458740fb4a49fc61709896c6864f5ce3db7f0a88f06c720d74d02","impliedFormat":1},{"version":"6e5857f38aa297a859cab4ec891408659218a5a2610cd317b6dcbef9979459cc","impliedFormat":1},{"version":"ead8e39c2e11891f286b06ae2aa71f208b1802661fcdb2425cffa4f494a68854","impliedFormat":1},{"version":"40ba6c32eb732a09e4446ade5cb6ad0c147f186f9c9dc6878b90b4418ad9f6ea","impliedFormat":1},{"version":"fdd814741843f85c98281522c58f5a646590ba9019fad2efaa95987655e0611b","impliedFormat":1},{"version":"c78aff4fb58b28b8f642d5095fc7eeb79f00e652a67caa19693af1adabb833c9","impliedFormat":1},{"version":"f80a08ced8818dc99359c0acd5b3f12762e1ce53758007759b0d4e503cbf4a5e","impliedFormat":1},{"version":"37935fa7564bcc6e0bc845b766a24391098d26f7c8245d6e8ab37bc016816e94","impliedFormat":1},{"version":"68add36d9632bc096d7245d24d6b0b8ad5f125183016102a3dad4c9c2438ccb0","impliedFormat":1},{"version":"3a819c2928ee06bbcc84e2797fd3558ae2ebb7e0ed8d87f71732fb2e2acc87b4","impliedFormat":1},{"version":"0f8a263f4c8595c8a07de52e3f3927640c44386c1aa2984de9eae50d75e613b2","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"346fffde7c32da87c2196eb7494422449dc2ca82d3b4e6bf55be1d1a33ffc2b0","impliedFormat":1},{"version":"add0ce7b77ba5b308492fa68f77f24d1ed1d9148534bdf05ac17c30763fc1a79","impliedFormat":1},{"version":"8b5875e4958528042103fdd775e106a7f76bafc29709f0690df9a7d2241d52a7","impliedFormat":1},{"version":"2f67911e4bf4e0717dc2ded248ce2d5e4398d945ee13889a6852c1233ea41508","impliedFormat":1},{"version":"d8430c275b0f59417ea8e173cfb888a4477b430ec35b595bf734f3ec7a7d729f","impliedFormat":1},{"version":"69364df1c776372d7df1fb46a6cb3a6bf7f55e700f533a104e3f9d70a32bec18","impliedFormat":1},{"version":"6042774c61ece4ba77b3bf375f15942eb054675b7957882a00c22c0e4fe5865c","impliedFormat":1},{"version":"5a3bd57ed7a9d9afef74c75f77fce79ba3c786401af9810cdf45907c4e93f30e","impliedFormat":1},{"version":"aef26cf95593c8ace1c62c4724f9afac77bdfa756fb8a00613cd152117cb2f43","impliedFormat":1},{"version":"30db853bb2e60170ba11e39ab48bacecb32d06d4def89eedf17e58ebab762a65","impliedFormat":1},{"version":"e27451b24234dfed45f6cf22112a04955183a99c42a2691fb4936d63cfe42761","impliedFormat":1},{"version":"2316301dd223d31962d917999acf8e543e0119c5d24ec984c9f22cb23247160c","impliedFormat":1},{"version":"58d65a2803c3b6629b0e18c8bf1bc883a686fcf0333230dd0151ab6e85b74307","impliedFormat":1},{"version":"e818471014c77c103330aee11f00a7a00b37b35500b53ea6f337aefacd6174c9","impliedFormat":1},{"version":"268fd6d9f2e807a39a6c5aa654b00f949feb63d3faa7dd0f9bba7dde9172159c","impliedFormat":1},{"version":"29f823cbe0166e10e7176a94afe609a24b9e5af3858628c541ff8ce1727023cd","impliedFormat":1},"44123b6a6f3f302dadb37ed3491d4e0e18e87aafac891c20b76f29ac77f62d91","dd40d15a4d9424fbf4eb9b461f1b2adcf74e5443148dd5a363cbfca3c06e8375","d74f672799f9e54495a65ab6c10e1c71868e48b27d05e9bb2b6c7411e2bce00c","22db02370ff88e271f28cd5540eb3e185b13a155302bebc131bb5bec8002b564","1828e3976d18f628807a5a0c1f6c688dce3337572f2d733975cbfd16e309ac0b","d9099710f1391f3674da9f261b39c6892daa5b763691df296c9766508064a6ca","69461a534ca542c080845a519738c0e47d661373e2f7f628b46802971e50312d","6949785a69bf8333357bd0971141d1f0de66000f2b5eb4dafe9b06c47bc71152","19eb7d53a6b8aec3f584638f107111d9f259b4239e9a64bfc31a05309346eb96","005c1a70457fc3afec16c3471ea59061d34b99ecee471c48e697c85fa52fa9b5","cacd7870c1d18c9331f480bdf5e75b6a03b6ea6d40fcdecbd20d1ed9ee93d4ab","194c468fbca684d3c9c74d8097daa0e0f6700aecb9e76cabc545860247732882","435698928942ec7db66ef4b33b6d5a1c7443b00343030b2e149acb403a40a44b","018a42b1cfb024d399cecae1865ec054e6b71716e39dd883d22945bf434f2b0d","3f7e26910c8238abf00d7afa64357460e9a55fc0e618df37bb84c01fdcd78315","0755d71be9ad5e461eb513d4ce367a17235e5a679d50ab1ae03b217fdc8b3ce9","b6c8967b60b0d2dd975317cb7d0ddf139014da829ab5707163b4d8a748e948d1","a5fd0637ed1b6fcbae0cb69a606dd84b5e6d1f3d5b9d5e40bef79fadab37a3d4","ca965e1d3bdd4372a2b95ba0b22d42ee785364bbf7e7ba70bdf384ded83bb3b1",{"version":"49e983bc01244a416781732277fc1bf50ea5590224cec7f3c5d1c39d15b6eb05","signature":"5c8bec5caf88850a62433e207f235fbbf8c8bfbe3acb60256b099134f0483824"},{"version":"1fd531130cd465612c46ee16735e30777847c6426e36ca171fd68fbbadb9e459","signature":"7a14e96ab689c0e16dd435a75636e0c5ddb11b87bff00f6d24df778b01a821d9"},"645ebdefecea0918cf45c5138519ed6d829e6fc2a68bec6b097da37c5f34ba69",{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"24371e69a38fc33e268d4a8716dbcda430d6c2c414a99ff9669239c4b8f40dea","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"c63b9ada8c72f95aac5db92aea07e5e87ec810353cdf63b2d78f49a58662cf6c","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"f724236417941ea77ec8d38c6b7021f5fb7f8521c7f8c1538e87661f2c6a0774","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"c06b2652ffeb89afd0f1c52c165ced77032f9cd09bc481153fbd6b5504c69494","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"9d8f9e63e29a3396285620908e7f14d874d066caea747dc4b2c378f0599166b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"612422d5ba6b4a5c4537f423e9199645468ad80a689801da63ab7edb43f7b835","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"1cbdcdef62bf42688e5d825898c3a59458466c48ad8a4ef3f88d8a1cd04310d6","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc8c6f5322961b56d9906601b20798725df60baeab45ec014fba9f795d5596fd","impliedFormat":1},{"version":"67e435fa530778903f5525904e6645b7368eb5ac622055febd19bb399e328ccd","impliedFormat":1},{"version":"060d305fe4494d8cb2b99d620928d369d1ee55c1645f5e729a2aca07d0f108cb","impliedFormat":1},{"version":"5b22bf96be06fca1e134e3a85351ffe7aa2edf0c9a5bd175b7239ee48186dbf5","impliedFormat":1},{"version":"0c50296ee73dae94efc3f0da4936b1146ca6ce2217acfabb44c19c9a33fa30e5","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"5b48cc670da1dfe926036deaf349085caf822def460a6d50de23f1cc12a5f8cd","impliedFormat":1},{"version":"418f34087d52d001e2688a6282a5de9bf583ff771ed5546af0ae36e4f60a458b","affectsGlobalScope":true,"impliedFormat":1},{"version":"036c9a03b01281f99f8251fdc7088e894566be44b3f139a9d48501a978b611df","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"04bf1aa481d1adfb16d93d76e44ce71c51c8ef68039d849926551199489637f6","impliedFormat":1},{"version":"2c9adcc85574b002c9a6311ff2141055769e0071856ec979d92ff989042b1f1b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1569ad5969ae0de6ad0bdfaaab0dabcd8878bc3147ab096206eed2019bb84e7f","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"42a350ce4f6f291198dc89833afcc4fd078248b4e1fdc9d05c846c66a670f710","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"b03754211d839cdc48979996525a32eb62130682c2f9801dfc2f25533ce7238d","impliedFormat":1},{"version":"3910dab597c40e173bf0e0d419d3ce9682c54ebf6ae84849f9b829b1451a17ec","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"486c074a5c0f2254345c0d1c9540380f5463999e42d7e1a159305ea823d3c4b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"f4d99ac08c4097a3cc202bec2c7198c19dcdd80d4ec6c62d1356b10d03b119d5","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"ca77e83162eccec633513723d178d4203bdd5465297267696be08013bab0aa1d","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"f61c153d5abbe4381a1fba0d41be0babdd5de51c626ee7ff14cede14dedc33f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7803171d745ab18e77f16bf82e742268ff72b7f7382ab191e4277527580c2d89","affectsGlobalScope":true,"impliedFormat":1},{"version":"0e9ba65cd3d6d194bdda7343f9f2917f7144ead96a924ca58d1a14919992dc20","impliedFormat":1},{"version":"255d948f87f24ffd57bcb2fdf95792fd418a2e1f712a98cf2cce88744d75085c","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"0b0dfb2d3e8420ead06f6a11acfb02ddcec42257e6ce391993e895ba0af86de4","affectsGlobalScope":true,"impliedFormat":1},{"version":"bfd3b3c21a56104693183942e221c1896ee23bcb8f8d91ab0b941f7b32985411","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1}],"root":[[161,163]],"options":{"composite":true,"declarationMap":true,"emitDeclarationOnly":false,"importHelpers":true,"module":200,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedSideEffectImports":false,"noUnusedLocals":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.lib.tsbuildinfo"},"referencedMap":[[218,1],[219,1],[220,2],[166,3],[221,4],[222,5],[223,6],[164,7],[224,8],[225,9],[226,10],[227,11],[228,12],[229,13],[230,13],[231,14],[232,15],[233,16],[234,17],[167,7],[165,7],[235,18],[236,19],[237,20],[272,21],[238,22],[239,7],[240,23],[241,24],[243,25],[244,26],[245,27],[246,28],[247,29],[248,30],[249,31],[250,31],[251,32],[252,7],[253,33],[254,34],[256,35],[255,36],[257,37],[258,38],[259,39],[260,40],[261,41],[262,42],[263,43],[264,44],[265,45],[266,46],[267,47],[268,48],[269,49],[168,7],[169,50],[170,7],[171,7],[214,51],[215,52],[216,7],[217,37],[270,53],[271,54],[242,7],[61,55],[60,7],[58,7],[59,7],[11,7],[10,7],[2,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[3,7],[20,7],[21,7],[4,7],[22,7],[26,7],[23,7],[24,7],[25,7],[27,7],[28,7],[29,7],[5,7],[30,7],[31,7],[32,7],[33,7],[6,7],[37,7],[34,7],[35,7],[36,7],[38,7],[7,7],[39,7],[44,7],[45,7],[40,7],[41,7],[42,7],[43,7],[8,7],[49,7],[46,7],[47,7],[48,7],[50,7],[9,7],[51,7],[52,7],[53,7],[55,7],[54,7],[56,7],[1,7],[57,7],[190,56],[202,57],[187,58],[203,59],[212,60],[178,61],[179,62],[177,63],[211,64],[206,65],[210,66],[181,67],[199,68],[180,69],[209,70],[175,71],[176,65],[182,72],[183,7],[189,73],[186,72],[173,74],[213,75],[204,76],[193,77],[192,72],[194,78],[197,79],[191,80],[195,81],[207,64],[184,82],[185,83],[198,84],[174,59],[201,85],[200,72],[188,83],[196,86],[205,7],[172,7],[208,87],[141,88],[135,89],[139,90],[136,90],[132,89],[140,91],[137,92],[138,90],[133,93],[134,94],[128,95],[69,96],[71,97],[127,7],[70,98],[131,99],[130,100],[129,101],[62,7],[72,96],[73,7],[64,102],[68,103],[63,7],[65,104],[66,105],[67,7],[74,106],[75,106],[76,106],[77,106],[78,106],[79,106],[80,106],[81,106],[82,106],[83,106],[84,106],[85,106],[86,106],[87,106],[89,106],[88,106],[90,106],[91,106],[92,106],[93,106],[94,106],[126,107],[95,106],[96,106],[97,106],[98,106],[99,106],[100,106],[101,106],[102,106],[103,106],[104,106],[105,106],[106,106],[107,106],[109,106],[108,106],[110,106],[111,106],[112,106],[113,106],[114,106],[115,106],[116,106],[117,106],[118,106],[119,106],[120,106],[121,106],[122,106],[125,106],[123,106],[124,106],[162,108],[163,109],[161,110],[160,111],[153,112],[145,112],[143,112],[142,112],[146,112],[150,112],[152,112],[151,112],[159,112],[149,112],[148,112],[154,112],[157,112],[156,112],[158,112],[155,112],[147,112],[144,112]],"latestChangedDtsFile":"./index.d.ts","version":"6.0.3"}
|
package/package.json
CHANGED
package/src/generated/client.ts
CHANGED
|
@@ -234,7 +234,7 @@ export class AcpClient {
|
|
|
234
234
|
|
|
235
235
|
/** Search users by display name or email (case-insensitive) */
|
|
236
236
|
searchUsers(query?: { q: string }): Promise<unknown> {
|
|
237
|
-
return request(this.opts, 'GET', '/users/search', { query, routeAuth: { acceptsApiKey: true, acceptsTenantJwt: true } })
|
|
237
|
+
return request(this.opts, 'GET', '/users/search', { query, routeAuth: { acceptsApiKey: true, acceptsBetterAuth: true, acceptsTenantJwt: true } })
|
|
238
238
|
}
|
|
239
239
|
|
|
240
240
|
/** Set forum visibility for a group (requires group.manage or group.manage_protected permission) */
|
|
@@ -423,7 +423,7 @@ export class TenantClient {
|
|
|
423
423
|
|
|
424
424
|
/** Search users by display name or email (case-insensitive) */
|
|
425
425
|
searchUsers(query?: { q: string }): Promise<unknown> {
|
|
426
|
-
return request(this.opts, 'GET', '/users/search', { query, routeAuth: { acceptsApiKey: true, acceptsTenantJwt: true } })
|
|
426
|
+
return request(this.opts, 'GET', '/users/search', { query, routeAuth: { acceptsApiKey: true, acceptsBetterAuth: true, acceptsTenantJwt: true } })
|
|
427
427
|
}
|
|
428
428
|
|
|
429
429
|
/** Mark a thread as read up to a given post */
|