@erp-galoper/types 1.0.325 → 1.0.327
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 +105 -1
- 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;
|
|
@@ -22046,6 +22075,21 @@ export interface components {
|
|
|
22046
22075
|
/** Address */
|
|
22047
22076
|
address?: string;
|
|
22048
22077
|
};
|
|
22078
|
+
/** UserResponseSchema */
|
|
22079
|
+
UserResponseSchema: {
|
|
22080
|
+
/** Code */
|
|
22081
|
+
code: string;
|
|
22082
|
+
/** Message */
|
|
22083
|
+
message: string;
|
|
22084
|
+
data: components["schemas"]["RetrieveUser"];
|
|
22085
|
+
};
|
|
22086
|
+
/** UpdateOwnerUserSchema */
|
|
22087
|
+
UpdateOwnerUserSchema: {
|
|
22088
|
+
/** Username */
|
|
22089
|
+
username: string;
|
|
22090
|
+
/** Email */
|
|
22091
|
+
email: string;
|
|
22092
|
+
};
|
|
22049
22093
|
/**
|
|
22050
22094
|
* GeneralAccountsOptions
|
|
22051
22095
|
* @enum {string}
|
|
@@ -26670,7 +26714,7 @@ export interface components {
|
|
|
26670
26714
|
/**
|
|
26671
26715
|
* Id
|
|
26672
26716
|
* Format: uuid
|
|
26673
|
-
* @example
|
|
26717
|
+
* @example 5c450264-c541-41f6-b1b4-e594ce4b496b
|
|
26674
26718
|
*/
|
|
26675
26719
|
id: string;
|
|
26676
26720
|
/**
|
|
@@ -46823,6 +46867,66 @@ export interface operations {
|
|
|
46823
46867
|
};
|
|
46824
46868
|
};
|
|
46825
46869
|
};
|
|
46870
|
+
authentication_views_update_owner_user: {
|
|
46871
|
+
parameters: {
|
|
46872
|
+
query?: never;
|
|
46873
|
+
header?: never;
|
|
46874
|
+
path?: never;
|
|
46875
|
+
cookie?: never;
|
|
46876
|
+
};
|
|
46877
|
+
requestBody: {
|
|
46878
|
+
content: {
|
|
46879
|
+
"application/json": components["schemas"]["UpdateOwnerUserSchema"];
|
|
46880
|
+
};
|
|
46881
|
+
};
|
|
46882
|
+
responses: {
|
|
46883
|
+
/** @description OK */
|
|
46884
|
+
200: {
|
|
46885
|
+
headers: {
|
|
46886
|
+
[name: string]: unknown;
|
|
46887
|
+
};
|
|
46888
|
+
content: {
|
|
46889
|
+
"application/json": components["schemas"]["UserResponseSchema"];
|
|
46890
|
+
};
|
|
46891
|
+
};
|
|
46892
|
+
/** @description Bad Request */
|
|
46893
|
+
400: {
|
|
46894
|
+
headers: {
|
|
46895
|
+
[name: string]: unknown;
|
|
46896
|
+
};
|
|
46897
|
+
content: {
|
|
46898
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
46899
|
+
};
|
|
46900
|
+
};
|
|
46901
|
+
/** @description Forbidden */
|
|
46902
|
+
403: {
|
|
46903
|
+
headers: {
|
|
46904
|
+
[name: string]: unknown;
|
|
46905
|
+
};
|
|
46906
|
+
content: {
|
|
46907
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
46908
|
+
};
|
|
46909
|
+
};
|
|
46910
|
+
/** @description Not Found */
|
|
46911
|
+
404: {
|
|
46912
|
+
headers: {
|
|
46913
|
+
[name: string]: unknown;
|
|
46914
|
+
};
|
|
46915
|
+
content: {
|
|
46916
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
46917
|
+
};
|
|
46918
|
+
};
|
|
46919
|
+
/** @description Internal Server Error */
|
|
46920
|
+
500: {
|
|
46921
|
+
headers: {
|
|
46922
|
+
[name: string]: unknown;
|
|
46923
|
+
};
|
|
46924
|
+
content: {
|
|
46925
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
46926
|
+
};
|
|
46927
|
+
};
|
|
46928
|
+
};
|
|
46929
|
+
};
|
|
46826
46930
|
accounting_chartofaccount_views_export_chart_of_account: {
|
|
46827
46931
|
parameters: {
|
|
46828
46932
|
query: {
|