@erp-galoper/types 1.0.1858 → 1.0.1860

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 +17 -5
  2. 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
  /**
@@ -33412,6 +33412,10 @@ export interface components {
33412
33412
  group: components["schemas"]["CustomerGroupInfoSchema"];
33413
33413
  city?: components["schemas"]["CommonCity"] | null;
33414
33414
  region: components["schemas"]["RegionCommonSchema"] | null;
33415
+ /** Country */
33416
+ country?: string | null;
33417
+ /** Address */
33418
+ address?: string | null;
33415
33419
  /**
33416
33420
  * Attachments
33417
33421
  * @default []
@@ -34393,6 +34397,12 @@ export interface components {
34393
34397
  phone1?: string | null;
34394
34398
  /** Phone2 */
34395
34399
  phone2?: string | null;
34400
+ city?: components["schemas"]["CommonCity"] | null;
34401
+ region: components["schemas"]["RegionCommonSchema"] | null;
34402
+ /** Country */
34403
+ country?: string | null;
34404
+ /** Address */
34405
+ address?: string | null;
34396
34406
  /**
34397
34407
  * Attachments
34398
34408
  * @default []
@@ -67887,9 +67897,11 @@ export interface operations {
67887
67897
  parameters: {
67888
67898
  query?: {
67889
67899
  /** @description Filter by MIME types e.g. image/webp */
67890
- mime_types?: components["schemas"]["MimeType"][] | null;
67900
+ mimeTypes?: components["schemas"]["MimeType"][] | null;
67891
67901
  /** @description Filter by related object type e.g. item, company */
67892
- file_types?: components["schemas"]["FileType"][] | null;
67902
+ modelNames?: components["schemas"]["FileType"][] | null;
67903
+ /** @description Filter media by document id */
67904
+ documentIds?: string[];
67893
67905
  };
67894
67906
  header?: never;
67895
67907
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1858",
3
+ "version": "1.0.1860",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],