@erp-galoper/main-package 1.0.267 → 1.0.269
Sign up to get free protection for your applications and to get access to all the features.
- package/openapi.ts +42 -43
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -9100,6 +9100,11 @@ export interface components {
|
|
9100
9100
|
* @default []
|
9101
9101
|
*/
|
9102
9102
|
accounting: components["schemas"]["BasePermissionsSchema_Report_Accounting"];
|
9103
|
+
/**
|
9104
|
+
* @description inventory actions
|
9105
|
+
* @default []
|
9106
|
+
*/
|
9107
|
+
inventory: components["schemas"]["BasePermissionsSchema_Report_Inventory"];
|
9103
9108
|
/**
|
9104
9109
|
* @description supplier actions
|
9105
9110
|
* @default []
|
@@ -9120,11 +9125,6 @@ export interface components {
|
|
9120
9125
|
* @default []
|
9121
9126
|
*/
|
9122
9127
|
project: components["schemas"]["BasePermissionsSchema_Report_Project"];
|
9123
|
-
/**
|
9124
|
-
* @description inventory actions
|
9125
|
-
* @default []
|
9126
|
-
*/
|
9127
|
-
inventory: components["schemas"]["BasePermissionsSchema_Report_Inventory"];
|
9128
9128
|
};
|
9129
9129
|
/** BasePermissionsSchema_Report_Accounting */
|
9130
9130
|
BasePermissionsSchema_Report_Accounting: {
|
@@ -9236,8 +9236,13 @@ export interface components {
|
|
9236
9236
|
* @description stockreport actions
|
9237
9237
|
* @default []
|
9238
9238
|
*/
|
9239
|
-
stockreport:
|
9239
|
+
stockreport: components["schemas"]["BasePermissionsSchema_Report_Inventory_StockreportEnum"][];
|
9240
9240
|
};
|
9241
|
+
/**
|
9242
|
+
* BasePermissionsSchema_Report_Inventory_StockreportEnum
|
9243
|
+
* @constant
|
9244
|
+
*/
|
9245
|
+
BasePermissionsSchema_Report_Inventory_StockreportEnum: "view";
|
9241
9246
|
/** BasePermissionsSchema_Report_Project */
|
9242
9247
|
BasePermissionsSchema_Report_Project: {
|
9243
9248
|
/**
|
@@ -11404,18 +11409,7 @@ export interface components {
|
|
11404
11409
|
mof: string;
|
11405
11410
|
/** Email */
|
11406
11411
|
email: string;
|
11407
|
-
/** Phone */
|
11408
|
-
phone: string;
|
11409
|
-
/** Mobile */
|
11410
|
-
mobile?: string | null;
|
11411
|
-
/** Fax */
|
11412
|
-
fax?: string | null;
|
11413
11412
|
country: components["schemas"]["CountryCodes"];
|
11414
|
-
/** Postalcode */
|
11415
|
-
postalcode?: string | null;
|
11416
|
-
cityId: components["schemas"]["RetrieveCity"];
|
11417
|
-
/** Address */
|
11418
|
-
address: string;
|
11419
11413
|
/** Website */
|
11420
11414
|
website?: string | null;
|
11421
11415
|
/** Image */
|
@@ -11469,19 +11463,7 @@ export interface components {
|
|
11469
11463
|
* Format: email
|
11470
11464
|
*/
|
11471
11465
|
email: string;
|
11472
|
-
/** Phone */
|
11473
|
-
phone: string;
|
11474
|
-
/** Mobile */
|
11475
|
-
mobile?: string | null;
|
11476
|
-
/** Fax */
|
11477
|
-
fax?: string | null;
|
11478
11466
|
country: components["schemas"]["CountryCodes"];
|
11479
|
-
/** Postalcode */
|
11480
|
-
postalcode?: string | null;
|
11481
|
-
/** Cityid */
|
11482
|
-
cityId: number;
|
11483
|
-
/** Address */
|
11484
|
-
address: string;
|
11485
11467
|
/** Website */
|
11486
11468
|
website?: string | null;
|
11487
11469
|
/** Image */
|
@@ -11508,18 +11490,6 @@ export interface components {
|
|
11508
11490
|
* Format: email
|
11509
11491
|
*/
|
11510
11492
|
email?: string;
|
11511
|
-
/** Phone */
|
11512
|
-
phone?: string;
|
11513
|
-
/** Mobile */
|
11514
|
-
mobile?: string | null;
|
11515
|
-
/** Fax */
|
11516
|
-
fax?: string | null;
|
11517
|
-
/** Postalcode */
|
11518
|
-
postalcode?: string | null;
|
11519
|
-
/** Cityid */
|
11520
|
-
cityId?: number;
|
11521
|
-
/** Address */
|
11522
|
-
address?: string;
|
11523
11493
|
/** Website */
|
11524
11494
|
website?: string | null;
|
11525
11495
|
/** Image */
|
@@ -11555,6 +11525,8 @@ export interface components {
|
|
11555
11525
|
phone: string;
|
11556
11526
|
/** Mobile */
|
11557
11527
|
mobile: string | null;
|
11528
|
+
/** Region */
|
11529
|
+
region: number;
|
11558
11530
|
/** Cityid */
|
11559
11531
|
cityId: number;
|
11560
11532
|
/** Address */
|
@@ -11601,6 +11573,33 @@ export interface components {
|
|
11601
11573
|
/** Address */
|
11602
11574
|
address: string;
|
11603
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
|
+
};
|
11604
11603
|
/**
|
11605
11604
|
* GeneralAccountsOptions
|
11606
11605
|
* @enum {string}
|
@@ -15958,7 +15957,7 @@ export interface components {
|
|
15958
15957
|
/**
|
15959
15958
|
* Id
|
15960
15959
|
* Format: uuid
|
15961
|
-
* @example
|
15960
|
+
* @example 555e776e-ff10-4bf1-8412-87e41999da35
|
15962
15961
|
*/
|
15963
15962
|
id: string;
|
15964
15963
|
/**
|
@@ -21049,7 +21048,7 @@ export interface operations {
|
|
21049
21048
|
};
|
21050
21049
|
requestBody: {
|
21051
21050
|
content: {
|
21052
|
-
"application/json": components["schemas"]["
|
21051
|
+
"application/json": components["schemas"]["MainBranchSchema"];
|
21053
21052
|
};
|
21054
21053
|
};
|
21055
21054
|
responses: {
|
package/package.json
CHANGED