@erp-galoper/main-package 1.0.268 → 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.
Files changed (2) hide show
  1. package/openapi.ts +35 -37
  2. 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
@@ -11409,18 +11411,7 @@ export interface components {
11409
11411
  mof: string;
11410
11412
  /** Email */
11411
11413
  email: string;
11412
- /** Phone */
11413
- phone: string;
11414
- /** Mobile */
11415
- mobile?: string | null;
11416
- /** Fax */
11417
- fax?: string | null;
11418
11414
  country: components["schemas"]["CountryCodes"];
11419
- /** Postalcode */
11420
- postalcode?: string | null;
11421
- cityId: components["schemas"]["RetrieveCity"];
11422
- /** Address */
11423
- address: string;
11424
11415
  /** Website */
11425
11416
  website?: string | null;
11426
11417
  /** Image */
@@ -11474,19 +11465,7 @@ export interface components {
11474
11465
  * Format: email
11475
11466
  */
11476
11467
  email: string;
11477
- /** Phone */
11478
- phone: string;
11479
- /** Mobile */
11480
- mobile?: string | null;
11481
- /** Fax */
11482
- fax?: string | null;
11483
11468
  country: components["schemas"]["CountryCodes"];
11484
- /** Postalcode */
11485
- postalcode?: string | null;
11486
- /** Cityid */
11487
- cityId: number;
11488
- /** Address */
11489
- address: string;
11490
11469
  /** Website */
11491
11470
  website?: string | null;
11492
11471
  /** Image */
@@ -11513,18 +11492,6 @@ export interface components {
11513
11492
  * Format: email
11514
11493
  */
11515
11494
  email?: string;
11516
- /** Phone */
11517
- phone?: string;
11518
- /** Mobile */
11519
- mobile?: string | null;
11520
- /** Fax */
11521
- fax?: string | null;
11522
- /** Postalcode */
11523
- postalcode?: string | null;
11524
- /** Cityid */
11525
- cityId?: number;
11526
- /** Address */
11527
- address?: string;
11528
11495
  /** Website */
11529
11496
  website?: string | null;
11530
11497
  /** Image */
@@ -11560,6 +11527,8 @@ export interface components {
11560
11527
  phone: string;
11561
11528
  /** Mobile */
11562
11529
  mobile: string | null;
11530
+ /** Region */
11531
+ region: number;
11563
11532
  /** Cityid */
11564
11533
  cityId: number;
11565
11534
  /** Address */
@@ -11606,6 +11575,33 @@ export interface components {
11606
11575
  /** Address */
11607
11576
  address: string;
11608
11577
  };
11578
+ /** MainBranchSchema */
11579
+ MainBranchSchema: {
11580
+ /** Name */
11581
+ name: string;
11582
+ /** Code */
11583
+ code?: string | null;
11584
+ /**
11585
+ * Startdate
11586
+ * Format: date
11587
+ */
11588
+ startDate: string;
11589
+ /** Phone */
11590
+ phone: string;
11591
+ /** Mobile */
11592
+ mobile: string | null;
11593
+ /** Region */
11594
+ region: string;
11595
+ /** City */
11596
+ city: string;
11597
+ /** Address */
11598
+ address: string;
11599
+ /**
11600
+ * Users
11601
+ * @default []
11602
+ */
11603
+ users: number[];
11604
+ };
11609
11605
  /**
11610
11606
  * GeneralAccountsOptions
11611
11607
  * @enum {string}
@@ -15963,7 +15959,7 @@ export interface components {
15963
15959
  /**
15964
15960
  * Id
15965
15961
  * Format: uuid
15966
- * @example 3e32551a-53a5-4b4b-a68a-54b4f52871b7
15962
+ * @example 57d073b7-0053-400c-8e89-480e6c3a5d4b
15967
15963
  */
15968
15964
  id: string;
15969
15965
  /**
@@ -21054,7 +21050,7 @@ export interface operations {
21054
21050
  };
21055
21051
  requestBody: {
21056
21052
  content: {
21057
- "application/json": components["schemas"]["BranchSchema"];
21053
+ "application/json": components["schemas"]["MainBranchSchema"];
21058
21054
  };
21059
21055
  };
21060
21056
  responses: {
@@ -22639,6 +22635,8 @@ export interface operations {
22639
22635
  pageSize?: number;
22640
22636
  search?: string;
22641
22637
  accountType: "opening" | "General" | "Detail";
22638
+ /** @description branch id */
22639
+ branch: number;
22642
22640
  };
22643
22641
  header?: never;
22644
22642
  path?: never;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@erp-galoper/main-package",
3
- "version": "1.0.268",
3
+ "version": "1.0.270",
4
4
  "main": "openapi.ts"
5
5
  }