@erp-galoper/types 1.0.1858 → 1.0.1859
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 +7 -5
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -2552,7 +2552,7 @@ export interface paths {
|
|
|
2552
2552
|
patch?: never;
|
|
2553
2553
|
trace?: never;
|
|
2554
2554
|
};
|
|
2555
|
-
"/api/v1/common/media": {
|
|
2555
|
+
"/api/v1/common/media/": {
|
|
2556
2556
|
parameters: {
|
|
2557
2557
|
query?: never;
|
|
2558
2558
|
header?: never;
|
|
@@ -23691,7 +23691,7 @@ export interface components {
|
|
|
23691
23691
|
* BasePermissionsSchema_Customer_CustomerEnum
|
|
23692
23692
|
* @enum {string}
|
|
23693
23693
|
*/
|
|
23694
|
-
BasePermissionsSchema_Customer_CustomerEnum: "add" | "change" | "delete" | "import" | "view";
|
|
23694
|
+
BasePermissionsSchema_Customer_CustomerEnum: "add" | "change" | "delete" | "export" | "import" | "print" | "view";
|
|
23695
23695
|
/**
|
|
23696
23696
|
* BasePermissionsSchema_Customer_Retail_customerEnum
|
|
23697
23697
|
* @enum {string}
|
|
@@ -25478,7 +25478,7 @@ export interface components {
|
|
|
25478
25478
|
* BasePermissionsSchema_Supplier_SupplierEnum
|
|
25479
25479
|
* @enum {string}
|
|
25480
25480
|
*/
|
|
25481
|
-
BasePermissionsSchema_Supplier_SupplierEnum: "add" | "change" | "import" | "view";
|
|
25481
|
+
BasePermissionsSchema_Supplier_SupplierEnum: "add" | "change" | "export" | "import" | "print" | "view";
|
|
25482
25482
|
/** BasePermissionsSchema_Task */
|
|
25483
25483
|
BasePermissionsSchema_Task: {
|
|
25484
25484
|
/**
|
|
@@ -67887,9 +67887,11 @@ export interface operations {
|
|
|
67887
67887
|
parameters: {
|
|
67888
67888
|
query?: {
|
|
67889
67889
|
/** @description Filter by MIME types e.g. image/webp */
|
|
67890
|
-
|
|
67890
|
+
mimeTypes?: components["schemas"]["MimeType"][] | null;
|
|
67891
67891
|
/** @description Filter by related object type e.g. item, company */
|
|
67892
|
-
|
|
67892
|
+
modelNames?: components["schemas"]["FileType"][] | null;
|
|
67893
|
+
/** @description Filter media by document id */
|
|
67894
|
+
documentIds?: string[];
|
|
67893
67895
|
};
|
|
67894
67896
|
header?: never;
|
|
67895
67897
|
path?: never;
|