@lokalise/workspaces-api-schemas 3.6.0 → 3.7.1
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.
|
@@ -139,6 +139,67 @@ export declare const getUsersNotificationSettingsContract: import("@lokalise/api
|
|
|
139
139
|
}, z.core.$strip>;
|
|
140
140
|
}, z.core.$strip>>;
|
|
141
141
|
}>;
|
|
142
|
+
export declare const EXPERT_TEAM_USER_SCHEMA: z.ZodObject<{
|
|
143
|
+
user_id: z.ZodNumber;
|
|
144
|
+
email: z.ZodEmail;
|
|
145
|
+
fullname: z.ZodString;
|
|
146
|
+
created_at: z.ZodString;
|
|
147
|
+
created_at_timestamp: z.ZodNumber;
|
|
148
|
+
role: z.ZodString;
|
|
149
|
+
uuid: z.ZodGUID;
|
|
150
|
+
}, z.core.$strip>;
|
|
151
|
+
export declare const GET_TEAM_USERS_REQUEST_PATH_PARAMS_SCHEMA: z.ZodObject<{
|
|
152
|
+
teamId: z.ZodString;
|
|
153
|
+
}, z.core.$strip>;
|
|
154
|
+
export type GetTeamUsersRequestPathParams = z.infer<typeof GET_TEAM_USERS_REQUEST_PATH_PARAMS_SCHEMA>;
|
|
155
|
+
export declare const GET_EXPERT_TEAM_USERS_RESPONSE_SCHEMA: z.ZodObject<{
|
|
156
|
+
team_id: z.ZodNumber;
|
|
157
|
+
team_uuid: z.ZodGUID;
|
|
158
|
+
team_users: z.ZodArray<z.ZodObject<{
|
|
159
|
+
user_id: z.ZodNumber;
|
|
160
|
+
email: z.ZodEmail;
|
|
161
|
+
fullname: z.ZodString;
|
|
162
|
+
created_at: z.ZodString;
|
|
163
|
+
created_at_timestamp: z.ZodNumber;
|
|
164
|
+
role: z.ZodString;
|
|
165
|
+
uuid: z.ZodGUID;
|
|
166
|
+
}, z.core.$strip>>;
|
|
167
|
+
}, z.core.$strip>;
|
|
168
|
+
export type GetExpertTeamUsersResponse = z.infer<typeof GET_EXPERT_TEAM_USERS_RESPONSE_SCHEMA>;
|
|
169
|
+
export declare const getTeamUsersContract: import("@lokalise/api-contracts").GetRouteDefinition<z.ZodObject<{
|
|
170
|
+
team_id: z.ZodNumber;
|
|
171
|
+
team_uuid: z.ZodGUID;
|
|
172
|
+
team_users: z.ZodArray<z.ZodObject<{
|
|
173
|
+
user_id: z.ZodNumber;
|
|
174
|
+
email: z.ZodEmail;
|
|
175
|
+
fullname: z.ZodString;
|
|
176
|
+
created_at: z.ZodString;
|
|
177
|
+
created_at_timestamp: z.ZodNumber;
|
|
178
|
+
role: z.ZodString;
|
|
179
|
+
uuid: z.ZodGUID;
|
|
180
|
+
}, z.core.$strip>>;
|
|
181
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
182
|
+
teamId: z.ZodString;
|
|
183
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
184
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
185
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
186
|
+
Authorization: z.ZodString;
|
|
187
|
+
'Content-Type': z.ZodLiteral<"application/json">;
|
|
188
|
+
}, z.core.$strip>, false, false, {
|
|
189
|
+
200: z.ZodObject<{
|
|
190
|
+
team_id: z.ZodNumber;
|
|
191
|
+
team_uuid: z.ZodGUID;
|
|
192
|
+
team_users: z.ZodArray<z.ZodObject<{
|
|
193
|
+
user_id: z.ZodNumber;
|
|
194
|
+
email: z.ZodEmail;
|
|
195
|
+
fullname: z.ZodString;
|
|
196
|
+
created_at: z.ZodString;
|
|
197
|
+
created_at_timestamp: z.ZodNumber;
|
|
198
|
+
role: z.ZodString;
|
|
199
|
+
uuid: z.ZodGUID;
|
|
200
|
+
}, z.core.$strip>>;
|
|
201
|
+
}, z.core.$strip>;
|
|
202
|
+
}>;
|
|
142
203
|
export declare const GET_TEAM_USER_REQUEST_PATH_PARAMS_SCHEMA: z.ZodObject<{
|
|
143
204
|
teamId: z.ZodString;
|
|
144
205
|
userId: z.ZodString;
|
|
@@ -191,3 +252,120 @@ export declare const getTeamUserContract: import("@lokalise/api-contracts").GetR
|
|
|
191
252
|
}, z.core.$strip>;
|
|
192
253
|
}, z.core.$strip>;
|
|
193
254
|
}>;
|
|
255
|
+
export declare const EXPERT_TEAM_USER_GROUP_PERMISSIONS_LANGUAGE_SCHEMA: z.ZodObject<{
|
|
256
|
+
lang_id: z.ZodNumber;
|
|
257
|
+
lang_iso: z.ZodString;
|
|
258
|
+
lang_name: z.ZodString;
|
|
259
|
+
is_writable: z.ZodBoolean;
|
|
260
|
+
}, z.core.$strip>;
|
|
261
|
+
export declare const EXPERT_TEAM_USER_GROUP_SCHEMA: z.ZodObject<{
|
|
262
|
+
group_id: z.ZodNumber;
|
|
263
|
+
name: z.ZodString;
|
|
264
|
+
permissions: z.ZodObject<{
|
|
265
|
+
is_admin: z.ZodBoolean;
|
|
266
|
+
is_reviewer: z.ZodBoolean;
|
|
267
|
+
admin_rights: z.ZodArray<z.ZodString>;
|
|
268
|
+
languages: z.ZodArray<z.ZodObject<{
|
|
269
|
+
lang_id: z.ZodNumber;
|
|
270
|
+
lang_iso: z.ZodString;
|
|
271
|
+
lang_name: z.ZodString;
|
|
272
|
+
is_writable: z.ZodBoolean;
|
|
273
|
+
}, z.core.$strip>>;
|
|
274
|
+
role_id: z.ZodNumber;
|
|
275
|
+
}, z.core.$strip>;
|
|
276
|
+
created_at: z.ZodString;
|
|
277
|
+
created_at_timestamp: z.ZodNumber;
|
|
278
|
+
team_id: z.ZodNumber;
|
|
279
|
+
projects: z.ZodArray<z.ZodString>;
|
|
280
|
+
members: z.ZodArray<z.ZodNumber>;
|
|
281
|
+
}, z.core.$strip>;
|
|
282
|
+
export type ExpertTeamUserGroupPermissionsLanguage = z.infer<typeof EXPERT_TEAM_USER_GROUP_PERMISSIONS_LANGUAGE_SCHEMA>;
|
|
283
|
+
export type ExpertTeamUserGroup = z.infer<typeof EXPERT_TEAM_USER_GROUP_SCHEMA>;
|
|
284
|
+
export declare const GET_TEAM_USER_GROUPS_REQUEST_PATH_PARAMS_SCHEMA: z.ZodObject<{
|
|
285
|
+
teamId: z.ZodString;
|
|
286
|
+
}, z.core.$strip>;
|
|
287
|
+
export type GetTeamUserGroupsRequestPathParams = z.infer<typeof GET_TEAM_USER_GROUPS_REQUEST_PATH_PARAMS_SCHEMA>;
|
|
288
|
+
export declare const GET_EXPERT_TEAM_USER_GROUPS_RESPONSE_SCHEMA: z.ZodObject<{
|
|
289
|
+
team_id: z.ZodNumber;
|
|
290
|
+
team_uuid: z.ZodGUID;
|
|
291
|
+
team_user_groups: z.ZodArray<z.ZodObject<{
|
|
292
|
+
group_id: z.ZodNumber;
|
|
293
|
+
name: z.ZodString;
|
|
294
|
+
permissions: z.ZodObject<{
|
|
295
|
+
is_admin: z.ZodBoolean;
|
|
296
|
+
is_reviewer: z.ZodBoolean;
|
|
297
|
+
admin_rights: z.ZodArray<z.ZodString>;
|
|
298
|
+
languages: z.ZodArray<z.ZodObject<{
|
|
299
|
+
lang_id: z.ZodNumber;
|
|
300
|
+
lang_iso: z.ZodString;
|
|
301
|
+
lang_name: z.ZodString;
|
|
302
|
+
is_writable: z.ZodBoolean;
|
|
303
|
+
}, z.core.$strip>>;
|
|
304
|
+
role_id: z.ZodNumber;
|
|
305
|
+
}, z.core.$strip>;
|
|
306
|
+
created_at: z.ZodString;
|
|
307
|
+
created_at_timestamp: z.ZodNumber;
|
|
308
|
+
team_id: z.ZodNumber;
|
|
309
|
+
projects: z.ZodArray<z.ZodString>;
|
|
310
|
+
members: z.ZodArray<z.ZodNumber>;
|
|
311
|
+
}, z.core.$strip>>;
|
|
312
|
+
}, z.core.$strip>;
|
|
313
|
+
export type GetExpertTeamUserGroupsResponse = z.infer<typeof GET_EXPERT_TEAM_USER_GROUPS_RESPONSE_SCHEMA>;
|
|
314
|
+
export declare const getTeamUserGroupsContract: import("@lokalise/api-contracts").GetRouteDefinition<z.ZodObject<{
|
|
315
|
+
team_id: z.ZodNumber;
|
|
316
|
+
team_uuid: z.ZodGUID;
|
|
317
|
+
team_user_groups: z.ZodArray<z.ZodObject<{
|
|
318
|
+
group_id: z.ZodNumber;
|
|
319
|
+
name: z.ZodString;
|
|
320
|
+
permissions: z.ZodObject<{
|
|
321
|
+
is_admin: z.ZodBoolean;
|
|
322
|
+
is_reviewer: z.ZodBoolean;
|
|
323
|
+
admin_rights: z.ZodArray<z.ZodString>;
|
|
324
|
+
languages: z.ZodArray<z.ZodObject<{
|
|
325
|
+
lang_id: z.ZodNumber;
|
|
326
|
+
lang_iso: z.ZodString;
|
|
327
|
+
lang_name: z.ZodString;
|
|
328
|
+
is_writable: z.ZodBoolean;
|
|
329
|
+
}, z.core.$strip>>;
|
|
330
|
+
role_id: z.ZodNumber;
|
|
331
|
+
}, z.core.$strip>;
|
|
332
|
+
created_at: z.ZodString;
|
|
333
|
+
created_at_timestamp: z.ZodNumber;
|
|
334
|
+
team_id: z.ZodNumber;
|
|
335
|
+
projects: z.ZodArray<z.ZodString>;
|
|
336
|
+
members: z.ZodArray<z.ZodNumber>;
|
|
337
|
+
}, z.core.$strip>>;
|
|
338
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
339
|
+
teamId: z.ZodString;
|
|
340
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
341
|
+
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
342
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
343
|
+
Authorization: z.ZodString;
|
|
344
|
+
'Content-Type': z.ZodLiteral<"application/json">;
|
|
345
|
+
}, z.core.$strip>, false, false, {
|
|
346
|
+
200: z.ZodObject<{
|
|
347
|
+
team_id: z.ZodNumber;
|
|
348
|
+
team_uuid: z.ZodGUID;
|
|
349
|
+
team_user_groups: z.ZodArray<z.ZodObject<{
|
|
350
|
+
group_id: z.ZodNumber;
|
|
351
|
+
name: z.ZodString;
|
|
352
|
+
permissions: z.ZodObject<{
|
|
353
|
+
is_admin: z.ZodBoolean;
|
|
354
|
+
is_reviewer: z.ZodBoolean;
|
|
355
|
+
admin_rights: z.ZodArray<z.ZodString>;
|
|
356
|
+
languages: z.ZodArray<z.ZodObject<{
|
|
357
|
+
lang_id: z.ZodNumber;
|
|
358
|
+
lang_iso: z.ZodString;
|
|
359
|
+
lang_name: z.ZodString;
|
|
360
|
+
is_writable: z.ZodBoolean;
|
|
361
|
+
}, z.core.$strip>>;
|
|
362
|
+
role_id: z.ZodNumber;
|
|
363
|
+
}, z.core.$strip>;
|
|
364
|
+
created_at: z.ZodString;
|
|
365
|
+
created_at_timestamp: z.ZodNumber;
|
|
366
|
+
team_id: z.ZodNumber;
|
|
367
|
+
projects: z.ZodArray<z.ZodString>;
|
|
368
|
+
members: z.ZodArray<z.ZodNumber>;
|
|
369
|
+
}, z.core.$strip>>;
|
|
370
|
+
}, z.core.$strip>;
|
|
371
|
+
}>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { buildGetRoute, buildPayloadRoute } from '@lokalise/api-contracts';
|
|
2
2
|
import { z } from 'zod/v4';
|
|
3
|
-
import { EXPERT_AUTHORIZATION_HEADER_SCHEMA } from "./common.js";
|
|
3
|
+
import { EXPERT_AUTHORIZATION_HEADER_SCHEMA, EXPERT_MANDATORY_PAGINATION_SCHEMA } from "./common.js";
|
|
4
4
|
// --------------------------------------------
|
|
5
5
|
// GET /api2/users/:userId
|
|
6
6
|
// --------------------------------------------
|
|
@@ -74,6 +74,37 @@ export const getUsersNotificationSettingsContract = buildPayloadRoute({
|
|
|
74
74
|
requestHeaderSchema: EXPERT_AUTHORIZATION_HEADER_SCHEMA,
|
|
75
75
|
});
|
|
76
76
|
// --------------------------------------------
|
|
77
|
+
// GET /api2/teams/:teamId/users
|
|
78
|
+
// --------------------------------------------
|
|
79
|
+
export const EXPERT_TEAM_USER_SCHEMA = z.object({
|
|
80
|
+
user_id: z.number(),
|
|
81
|
+
email: z.email(),
|
|
82
|
+
fullname: z.string(),
|
|
83
|
+
created_at: z.string(),
|
|
84
|
+
created_at_timestamp: z.number(),
|
|
85
|
+
role: z.string(),
|
|
86
|
+
uuid: z.guid(),
|
|
87
|
+
});
|
|
88
|
+
export const GET_TEAM_USERS_REQUEST_PATH_PARAMS_SCHEMA = z.object({
|
|
89
|
+
teamId: z.string(),
|
|
90
|
+
});
|
|
91
|
+
export const GET_EXPERT_TEAM_USERS_RESPONSE_SCHEMA = z.object({
|
|
92
|
+
team_id: z.number(),
|
|
93
|
+
team_uuid: z.guid(),
|
|
94
|
+
team_users: z.array(EXPERT_TEAM_USER_SCHEMA),
|
|
95
|
+
});
|
|
96
|
+
export const getTeamUsersContract = buildGetRoute({
|
|
97
|
+
pathResolver: (params) => `/api2/teams/${params.teamId}/users`,
|
|
98
|
+
description: 'Get team users list',
|
|
99
|
+
requestQuerySchema: EXPERT_MANDATORY_PAGINATION_SCHEMA,
|
|
100
|
+
requestPathParamsSchema: GET_TEAM_USERS_REQUEST_PATH_PARAMS_SCHEMA,
|
|
101
|
+
successResponseBodySchema: GET_EXPERT_TEAM_USERS_RESPONSE_SCHEMA,
|
|
102
|
+
responseSchemasByStatusCode: {
|
|
103
|
+
200: GET_EXPERT_TEAM_USERS_RESPONSE_SCHEMA,
|
|
104
|
+
},
|
|
105
|
+
requestHeaderSchema: EXPERT_AUTHORIZATION_HEADER_SCHEMA,
|
|
106
|
+
});
|
|
107
|
+
// --------------------------------------------
|
|
77
108
|
// GET /api2/teams/:teamId/:userId
|
|
78
109
|
// --------------------------------------------
|
|
79
110
|
export const GET_TEAM_USER_REQUEST_PATH_PARAMS_SCHEMA = z.object({
|
|
@@ -83,15 +114,7 @@ export const GET_TEAM_USER_REQUEST_PATH_PARAMS_SCHEMA = z.object({
|
|
|
83
114
|
export const GET_EXPERT_TEAM_USER_RESPONSE_SCHEMA = z.object({
|
|
84
115
|
team_id: z.number(),
|
|
85
116
|
team_uuid: z.guid(),
|
|
86
|
-
team_user:
|
|
87
|
-
user_id: z.number(),
|
|
88
|
-
email: z.email(),
|
|
89
|
-
fullname: z.string(),
|
|
90
|
-
created_at: z.string(),
|
|
91
|
-
created_at_timestamp: z.number(),
|
|
92
|
-
role: z.string(),
|
|
93
|
-
uuid: z.guid(),
|
|
94
|
-
}),
|
|
117
|
+
team_user: EXPERT_TEAM_USER_SCHEMA,
|
|
95
118
|
});
|
|
96
119
|
export const getTeamUserContract = buildGetRoute({
|
|
97
120
|
pathResolver: (params) => `/api2/teams/${params.teamId}/${params.userId}`,
|
|
@@ -103,4 +126,48 @@ export const getTeamUserContract = buildGetRoute({
|
|
|
103
126
|
},
|
|
104
127
|
requestHeaderSchema: EXPERT_AUTHORIZATION_HEADER_SCHEMA,
|
|
105
128
|
});
|
|
129
|
+
// --------------------------------------------
|
|
130
|
+
// GET /api2/teams/:teamId/groups
|
|
131
|
+
// --------------------------------------------
|
|
132
|
+
export const EXPERT_TEAM_USER_GROUP_PERMISSIONS_LANGUAGE_SCHEMA = z.object({
|
|
133
|
+
lang_id: z.number(),
|
|
134
|
+
lang_iso: z.string(),
|
|
135
|
+
lang_name: z.string(),
|
|
136
|
+
is_writable: z.boolean(),
|
|
137
|
+
});
|
|
138
|
+
export const EXPERT_TEAM_USER_GROUP_SCHEMA = z.object({
|
|
139
|
+
group_id: z.number(),
|
|
140
|
+
name: z.string(),
|
|
141
|
+
permissions: z.object({
|
|
142
|
+
is_admin: z.boolean(),
|
|
143
|
+
is_reviewer: z.boolean(),
|
|
144
|
+
admin_rights: z.array(z.string()),
|
|
145
|
+
languages: z.array(EXPERT_TEAM_USER_GROUP_PERMISSIONS_LANGUAGE_SCHEMA),
|
|
146
|
+
role_id: z.number(),
|
|
147
|
+
}),
|
|
148
|
+
created_at: z.string(),
|
|
149
|
+
created_at_timestamp: z.number(),
|
|
150
|
+
team_id: z.number(),
|
|
151
|
+
projects: z.array(z.string()),
|
|
152
|
+
members: z.array(z.number()),
|
|
153
|
+
});
|
|
154
|
+
export const GET_TEAM_USER_GROUPS_REQUEST_PATH_PARAMS_SCHEMA = z.object({
|
|
155
|
+
teamId: z.string(),
|
|
156
|
+
});
|
|
157
|
+
export const GET_EXPERT_TEAM_USER_GROUPS_RESPONSE_SCHEMA = z.object({
|
|
158
|
+
team_id: z.number(),
|
|
159
|
+
team_uuid: z.guid(),
|
|
160
|
+
team_user_groups: z.array(EXPERT_TEAM_USER_GROUP_SCHEMA),
|
|
161
|
+
});
|
|
162
|
+
export const getTeamUserGroupsContract = buildGetRoute({
|
|
163
|
+
pathResolver: (params) => `/api2/teams/${params.teamId}/groups`,
|
|
164
|
+
description: 'Get team user groups list',
|
|
165
|
+
requestQuerySchema: EXPERT_MANDATORY_PAGINATION_SCHEMA,
|
|
166
|
+
requestPathParamsSchema: GET_TEAM_USER_GROUPS_REQUEST_PATH_PARAMS_SCHEMA,
|
|
167
|
+
successResponseBodySchema: GET_EXPERT_TEAM_USER_GROUPS_RESPONSE_SCHEMA,
|
|
168
|
+
responseSchemasByStatusCode: {
|
|
169
|
+
200: GET_EXPERT_TEAM_USER_GROUPS_RESPONSE_SCHEMA,
|
|
170
|
+
},
|
|
171
|
+
requestHeaderSchema: EXPERT_AUTHORIZATION_HEADER_SCHEMA,
|
|
172
|
+
});
|
|
106
173
|
//# sourceMappingURL=users.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"users.js","sourceRoot":"","sources":["../../../src/schemas/expert/users.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAA;AAC1B,OAAO,EAAE,kCAAkC,EAAE,MAAM,aAAa,CAAA;
|
|
1
|
+
{"version":3,"file":"users.js","sourceRoot":"","sources":["../../../src/schemas/expert/users.ts"],"names":[],"mappings":"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"}
|