@erp-galoper/main-package 1.0.268 → 1.0.269
Sign up to get free protection for your applications and to get access to all the features.
- package/openapi.ts +31 -37
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -11409,18 +11409,7 @@ export interface components {
|
|
11409
11409
|
mof: string;
|
11410
11410
|
/** Email */
|
11411
11411
|
email: string;
|
11412
|
-
/** Phone */
|
11413
|
-
phone: string;
|
11414
|
-
/** Mobile */
|
11415
|
-
mobile?: string | null;
|
11416
|
-
/** Fax */
|
11417
|
-
fax?: string | null;
|
11418
11412
|
country: components["schemas"]["CountryCodes"];
|
11419
|
-
/** Postalcode */
|
11420
|
-
postalcode?: string | null;
|
11421
|
-
cityId: components["schemas"]["RetrieveCity"];
|
11422
|
-
/** Address */
|
11423
|
-
address: string;
|
11424
11413
|
/** Website */
|
11425
11414
|
website?: string | null;
|
11426
11415
|
/** Image */
|
@@ -11474,19 +11463,7 @@ export interface components {
|
|
11474
11463
|
* Format: email
|
11475
11464
|
*/
|
11476
11465
|
email: string;
|
11477
|
-
/** Phone */
|
11478
|
-
phone: string;
|
11479
|
-
/** Mobile */
|
11480
|
-
mobile?: string | null;
|
11481
|
-
/** Fax */
|
11482
|
-
fax?: string | null;
|
11483
11466
|
country: components["schemas"]["CountryCodes"];
|
11484
|
-
/** Postalcode */
|
11485
|
-
postalcode?: string | null;
|
11486
|
-
/** Cityid */
|
11487
|
-
cityId: number;
|
11488
|
-
/** Address */
|
11489
|
-
address: string;
|
11490
11467
|
/** Website */
|
11491
11468
|
website?: string | null;
|
11492
11469
|
/** Image */
|
@@ -11513,18 +11490,6 @@ export interface components {
|
|
11513
11490
|
* Format: email
|
11514
11491
|
*/
|
11515
11492
|
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
11493
|
/** Website */
|
11529
11494
|
website?: string | null;
|
11530
11495
|
/** Image */
|
@@ -11560,6 +11525,8 @@ export interface components {
|
|
11560
11525
|
phone: string;
|
11561
11526
|
/** Mobile */
|
11562
11527
|
mobile: string | null;
|
11528
|
+
/** Region */
|
11529
|
+
region: number;
|
11563
11530
|
/** Cityid */
|
11564
11531
|
cityId: number;
|
11565
11532
|
/** Address */
|
@@ -11606,6 +11573,33 @@ export interface components {
|
|
11606
11573
|
/** Address */
|
11607
11574
|
address: string;
|
11608
11575
|
};
|
11576
|
+
/** MainBranchSchema */
|
11577
|
+
MainBranchSchema: {
|
11578
|
+
/** Name */
|
11579
|
+
name: string;
|
11580
|
+
/** Code */
|
11581
|
+
code?: string | null;
|
11582
|
+
/**
|
11583
|
+
* Startdate
|
11584
|
+
* Format: date
|
11585
|
+
*/
|
11586
|
+
startDate: string;
|
11587
|
+
/** Phone */
|
11588
|
+
phone: string;
|
11589
|
+
/** Mobile */
|
11590
|
+
mobile: string | null;
|
11591
|
+
/** Region */
|
11592
|
+
region: string;
|
11593
|
+
/** City */
|
11594
|
+
city: string;
|
11595
|
+
/** Address */
|
11596
|
+
address: string;
|
11597
|
+
/**
|
11598
|
+
* Users
|
11599
|
+
* @default []
|
11600
|
+
*/
|
11601
|
+
users: number[];
|
11602
|
+
};
|
11609
11603
|
/**
|
11610
11604
|
* GeneralAccountsOptions
|
11611
11605
|
* @enum {string}
|
@@ -15963,7 +15957,7 @@ export interface components {
|
|
15963
15957
|
/**
|
15964
15958
|
* Id
|
15965
15959
|
* Format: uuid
|
15966
|
-
* @example
|
15960
|
+
* @example 555e776e-ff10-4bf1-8412-87e41999da35
|
15967
15961
|
*/
|
15968
15962
|
id: string;
|
15969
15963
|
/**
|
@@ -21054,7 +21048,7 @@ export interface operations {
|
|
21054
21048
|
};
|
21055
21049
|
requestBody: {
|
21056
21050
|
content: {
|
21057
|
-
"application/json": components["schemas"]["
|
21051
|
+
"application/json": components["schemas"]["MainBranchSchema"];
|
21058
21052
|
};
|
21059
21053
|
};
|
21060
21054
|
responses: {
|
package/package.json
CHANGED