@erp-galoper/types 1.0.2007 → 1.0.2009

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 +3 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -107315,11 +107315,11 @@ export interface operations {
107315
107315
  };
107316
107316
  reports_inventoryreport_views_get_item_movement_report: {
107317
107317
  parameters: {
107318
- query: {
107318
+ query?: {
107319
107319
  /** @description Start date for custom range (YYYY-MM-DD) */
107320
- startDate: string;
107320
+ startDate?: string | null;
107321
107321
  /** @description End date for custom range (YYYY-MM-DD) */
107322
- endDate: string;
107322
+ endDate?: string | null;
107323
107323
  /** @description List of branch IDs */
107324
107324
  branches?: string[] | null;
107325
107325
  /** @description List of warehouse IDs */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.2007",
3
+ "version": "1.0.2009",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],