@erp-galoper/main-package 1.0.269 → 1.0.270
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 +5 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -2079,6 +2079,8 @@ export interface paths {
|
|
|
2079
2079
|
* possible responses:
|
|
2080
2080
|
* - 200:
|
|
2081
2081
|
* -success
|
|
2082
|
+
* - 400 :
|
|
2083
|
+
* - branchDoesNotExist
|
|
2082
2084
|
* - 404:
|
|
2083
2085
|
* - accountDoesNotExist
|
|
2084
2086
|
* - mainBranchDoesNotExist
|
|
@@ -15957,7 +15959,7 @@ export interface components {
|
|
|
15957
15959
|
/**
|
|
15958
15960
|
* Id
|
|
15959
15961
|
* Format: uuid
|
|
15960
|
-
* @example
|
|
15962
|
+
* @example 57d073b7-0053-400c-8e89-480e6c3a5d4b
|
|
15961
15963
|
*/
|
|
15962
15964
|
id: string;
|
|
15963
15965
|
/**
|
|
@@ -22633,6 +22635,8 @@ export interface operations {
|
|
|
22633
22635
|
pageSize?: number;
|
|
22634
22636
|
search?: string;
|
|
22635
22637
|
accountType: "opening" | "General" | "Detail";
|
|
22638
|
+
/** @description branch id */
|
|
22639
|
+
branch: number;
|
|
22636
22640
|
};
|
|
22637
22641
|
header?: never;
|
|
22638
22642
|
path?: never;
|
package/package.json
CHANGED