@erp-galoper/types 1.0.326 → 1.0.328
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/openapi.ts +113 -3
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -1242,6 +1242,35 @@ export interface paths {
|
|
|
1242
1242
|
patch?: never;
|
|
1243
1243
|
trace?: never;
|
|
1244
1244
|
};
|
|
1245
|
+
"/api/v1/onboarding/user/": {
|
|
1246
|
+
parameters: {
|
|
1247
|
+
query?: never;
|
|
1248
|
+
header?: never;
|
|
1249
|
+
path?: never;
|
|
1250
|
+
cookie?: never;
|
|
1251
|
+
};
|
|
1252
|
+
get?: never;
|
|
1253
|
+
/**
|
|
1254
|
+
* Update Owner User
|
|
1255
|
+
* @description Endpoint for update owner user
|
|
1256
|
+
* Possible Responses:
|
|
1257
|
+
* - 404:
|
|
1258
|
+
* - userDoesNotExist
|
|
1259
|
+
* - 200:
|
|
1260
|
+
* - userUpdated
|
|
1261
|
+
* - 403:
|
|
1262
|
+
* - permissionDenied
|
|
1263
|
+
* - 500:
|
|
1264
|
+
* - internalServerError
|
|
1265
|
+
*/
|
|
1266
|
+
put: operations["authentication_views_update_owner_user"];
|
|
1267
|
+
post?: never;
|
|
1268
|
+
delete?: never;
|
|
1269
|
+
options?: never;
|
|
1270
|
+
head?: never;
|
|
1271
|
+
patch?: never;
|
|
1272
|
+
trace?: never;
|
|
1273
|
+
};
|
|
1245
1274
|
"/api/v1/chart_of_account/export/": {
|
|
1246
1275
|
parameters: {
|
|
1247
1276
|
query?: never;
|
|
@@ -20371,9 +20400,15 @@ export interface components {
|
|
|
20371
20400
|
firstName?: string | null;
|
|
20372
20401
|
/** Lastname */
|
|
20373
20402
|
lastName?: string | null;
|
|
20374
|
-
/**
|
|
20403
|
+
/**
|
|
20404
|
+
* Username
|
|
20405
|
+
* @description disabled when user is owner
|
|
20406
|
+
*/
|
|
20375
20407
|
username?: string | null;
|
|
20376
|
-
/**
|
|
20408
|
+
/**
|
|
20409
|
+
* Email
|
|
20410
|
+
* @description disabled when user is owner
|
|
20411
|
+
*/
|
|
20377
20412
|
email?: string | null;
|
|
20378
20413
|
/** Language */
|
|
20379
20414
|
language?: string | null;
|
|
@@ -22046,6 +22081,21 @@ export interface components {
|
|
|
22046
22081
|
/** Address */
|
|
22047
22082
|
address?: string;
|
|
22048
22083
|
};
|
|
22084
|
+
/** UserResponseSchema */
|
|
22085
|
+
UserResponseSchema: {
|
|
22086
|
+
/** Code */
|
|
22087
|
+
code: string;
|
|
22088
|
+
/** Message */
|
|
22089
|
+
message: string;
|
|
22090
|
+
data: components["schemas"]["RetrieveUser"];
|
|
22091
|
+
};
|
|
22092
|
+
/** UpdateOwnerUserSchema */
|
|
22093
|
+
UpdateOwnerUserSchema: {
|
|
22094
|
+
/** Username */
|
|
22095
|
+
username: string;
|
|
22096
|
+
/** Email */
|
|
22097
|
+
email: string;
|
|
22098
|
+
};
|
|
22049
22099
|
/**
|
|
22050
22100
|
* GeneralAccountsOptions
|
|
22051
22101
|
* @enum {string}
|
|
@@ -26670,7 +26720,7 @@ export interface components {
|
|
|
26670
26720
|
/**
|
|
26671
26721
|
* Id
|
|
26672
26722
|
* Format: uuid
|
|
26673
|
-
* @example
|
|
26723
|
+
* @example 0edf1e39-7e0d-4851-97b6-e1e700406ed8
|
|
26674
26724
|
*/
|
|
26675
26725
|
id: string;
|
|
26676
26726
|
/**
|
|
@@ -46823,6 +46873,66 @@ export interface operations {
|
|
|
46823
46873
|
};
|
|
46824
46874
|
};
|
|
46825
46875
|
};
|
|
46876
|
+
authentication_views_update_owner_user: {
|
|
46877
|
+
parameters: {
|
|
46878
|
+
query?: never;
|
|
46879
|
+
header?: never;
|
|
46880
|
+
path?: never;
|
|
46881
|
+
cookie?: never;
|
|
46882
|
+
};
|
|
46883
|
+
requestBody: {
|
|
46884
|
+
content: {
|
|
46885
|
+
"application/json": components["schemas"]["UpdateOwnerUserSchema"];
|
|
46886
|
+
};
|
|
46887
|
+
};
|
|
46888
|
+
responses: {
|
|
46889
|
+
/** @description OK */
|
|
46890
|
+
200: {
|
|
46891
|
+
headers: {
|
|
46892
|
+
[name: string]: unknown;
|
|
46893
|
+
};
|
|
46894
|
+
content: {
|
|
46895
|
+
"application/json": components["schemas"]["UserResponseSchema"];
|
|
46896
|
+
};
|
|
46897
|
+
};
|
|
46898
|
+
/** @description Bad Request */
|
|
46899
|
+
400: {
|
|
46900
|
+
headers: {
|
|
46901
|
+
[name: string]: unknown;
|
|
46902
|
+
};
|
|
46903
|
+
content: {
|
|
46904
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
46905
|
+
};
|
|
46906
|
+
};
|
|
46907
|
+
/** @description Forbidden */
|
|
46908
|
+
403: {
|
|
46909
|
+
headers: {
|
|
46910
|
+
[name: string]: unknown;
|
|
46911
|
+
};
|
|
46912
|
+
content: {
|
|
46913
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
46914
|
+
};
|
|
46915
|
+
};
|
|
46916
|
+
/** @description Not Found */
|
|
46917
|
+
404: {
|
|
46918
|
+
headers: {
|
|
46919
|
+
[name: string]: unknown;
|
|
46920
|
+
};
|
|
46921
|
+
content: {
|
|
46922
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
46923
|
+
};
|
|
46924
|
+
};
|
|
46925
|
+
/** @description Internal Server Error */
|
|
46926
|
+
500: {
|
|
46927
|
+
headers: {
|
|
46928
|
+
[name: string]: unknown;
|
|
46929
|
+
};
|
|
46930
|
+
content: {
|
|
46931
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
46932
|
+
};
|
|
46933
|
+
};
|
|
46934
|
+
};
|
|
46935
|
+
};
|
|
46826
46936
|
accounting_chartofaccount_views_export_chart_of_account: {
|
|
46827
46937
|
parameters: {
|
|
46828
46938
|
query: {
|