@erp-galoper/types 1.0.1779 → 1.0.1781

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 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -57684,6 +57684,14 @@ export interface components {
57684
57684
  */
57685
57685
  closingBalance: number;
57686
57686
  };
57687
+ /** DocumentAccount */
57688
+ DocumentAccount: {
57689
+ /** Name */
57690
+ name?: string | null;
57691
+ /** Account Number */
57692
+ account_number?: string | null;
57693
+ type: components["schemas"]["MovementAccountType"];
57694
+ };
57687
57695
  /** ItemDetailSchemaForReport */
57688
57696
  ItemDetailSchemaForReport: {
57689
57697
  /** Id */
@@ -57779,6 +57787,11 @@ export interface components {
57779
57787
  */
57780
57788
  totalOutward: number;
57781
57789
  };
57790
+ /**
57791
+ * MovementAccountType
57792
+ * @enum {string}
57793
+ */
57794
+ MovementAccountType: "customer" | "supplier";
57782
57795
  /** MovementTransactionSchema */
57783
57796
  MovementTransactionSchema: {
57784
57797
  documentType?: components["schemas"]["CombinedModelName"] | null;
@@ -57809,6 +57822,8 @@ export interface components {
57809
57822
  * @description just display incase of item package
57810
57823
  */
57811
57824
  actualQuantity?: number | null;
57825
+ /** @description The associated Supplier (for GRN) or Customer (for GDN). Null for other documents. */
57826
+ account?: components["schemas"]["DocumentAccount"] | null;
57812
57827
  };
57813
57828
  /**
57814
57829
  * MovementType
@@ -75042,6 +75057,8 @@ export interface operations {
75042
75057
  userId?: number | null;
75043
75058
  /** @description Filter by session name */
75044
75059
  name?: string | null;
75060
+ /** @description Search by session name or POS invoice number */
75061
+ search?: string | null;
75045
75062
  };
75046
75063
  header?: never;
75047
75064
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1779",
3
+ "version": "1.0.1781",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],