@erp-galoper/types 1.0.1442 → 1.0.1444

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 +65 -7
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -4656,7 +4656,7 @@ export interface paths {
4656
4656
  * Get Stock Adjustment
4657
4657
  * @description Endpoint for retrieving Stock Adjustment Document
4658
4658
  * Responses:
4659
- * - 200: StockAdjustmentDetailedSchema
4659
+ * - 200: StockAdjustmentRetrieveSchema
4660
4660
  * - 403: "permissionDenied"
4661
4661
  * - "noBranchAccess"
4662
4662
  * - 404: "stockAdjustmentNotFound"
@@ -23867,22 +23867,22 @@ export interface components {
23867
23867
  * BasePermissionsSchema_Purchase_PurchaseorderEnum
23868
23868
  * @enum {string}
23869
23869
  */
23870
- BasePermissionsSchema_Purchase_PurchaseorderEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "view";
23870
+ BasePermissionsSchema_Purchase_PurchaseorderEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
23871
23871
  /**
23872
23872
  * BasePermissionsSchema_Purchase_PurchasequotationEnum
23873
23873
  * @enum {string}
23874
23874
  */
23875
- BasePermissionsSchema_Purchase_PurchasequotationEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "view";
23875
+ BasePermissionsSchema_Purchase_PurchasequotationEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
23876
23876
  /**
23877
23877
  * BasePermissionsSchema_Purchase_PurchasereturninvoiceEnum
23878
23878
  * @enum {string}
23879
23879
  */
23880
- BasePermissionsSchema_Purchase_PurchasereturninvoiceEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "view";
23880
+ BasePermissionsSchema_Purchase_PurchasereturninvoiceEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
23881
23881
  /**
23882
23882
  * BasePermissionsSchema_Purchase_PurchasereturnorderEnum
23883
23883
  * @enum {string}
23884
23884
  */
23885
- BasePermissionsSchema_Purchase_PurchasereturnorderEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "view";
23885
+ BasePermissionsSchema_Purchase_PurchasereturnorderEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
23886
23886
  /**
23887
23887
  * BasePermissionsSchema_Purchase_RefundvoucherEnum
23888
23888
  * @enum {string}
@@ -24389,7 +24389,7 @@ export interface components {
24389
24389
  * BasePermissionsSchema_Sales_SalesreturnorderEnum
24390
24390
  * @enum {string}
24391
24391
  */
24392
- BasePermissionsSchema_Sales_SalesreturnorderEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "view";
24392
+ BasePermissionsSchema_Sales_SalesreturnorderEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
24393
24393
  /**
24394
24394
  * BasePermissionsSchema_Sales_SalessummaryreportEnum
24395
24395
  * @constant
@@ -26757,6 +26757,7 @@ export interface components {
26757
26757
  /** QuantityGroupSchema */
26758
26758
  QuantityGroupSchema: {
26759
26759
  unitOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"];
26760
+ itemPackage?: components["schemas"]["ItemPackageSummarySchema"] | null;
26760
26761
  /** Stockquantity */
26761
26762
  stockQuantity: number;
26762
26763
  /** Availableforsale */
@@ -31243,6 +31244,63 @@ export interface components {
31243
31244
  */
31244
31245
  id?: number;
31245
31246
  };
31247
+ /** StockAdjustmentRetrieveDetailSchema */
31248
+ StockAdjustmentRetrieveDetailSchema: {
31249
+ /**
31250
+ * Datecreated
31251
+ * Format: date-time
31252
+ */
31253
+ dateCreated: string;
31254
+ /** Datemodified */
31255
+ dateModified: string | null;
31256
+ createdBy: components["schemas"]["RecordUserSchema"];
31257
+ modifiedBy: components["schemas"]["RecordUserSchema"] | null;
31258
+ /** Id */
31259
+ id: number;
31260
+ item: components["schemas"]["ItemSchema"];
31261
+ /** @description Tracking method: serial_number, batch, or quantity */
31262
+ trackInventoryBy?: components["schemas"]["TrackingMethodChoices"] | null;
31263
+ reason?: components["schemas"]["Reason"] | null;
31264
+ adjustmentType: components["schemas"]["AdjustmentTypeOption"];
31265
+ /** Adjustmentquantity */
31266
+ adjustmentQuantity: number;
31267
+ unitOfMeasure?: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
31268
+ itemPackage?: components["schemas"]["ItemPackageSummarySchema"] | null;
31269
+ batch?: components["schemas"]["BatchSerialSummarySchema"] | null;
31270
+ serial?: components["schemas"]["BatchSerialSummarySchema"] | null;
31271
+ /**
31272
+ * Candelete
31273
+ * @default true
31274
+ */
31275
+ canDelete: boolean;
31276
+ };
31277
+ /** StockAdjustmentRetrieveSchema */
31278
+ StockAdjustmentRetrieveSchema: {
31279
+ /**
31280
+ * Datecreated
31281
+ * Format: date-time
31282
+ */
31283
+ dateCreated: string;
31284
+ /** Datemodified */
31285
+ dateModified: string | null;
31286
+ createdBy: components["schemas"]["RecordUserSchema"];
31287
+ modifiedBy: components["schemas"]["RecordUserSchema"] | null;
31288
+ /** Id */
31289
+ id: number;
31290
+ status: components["schemas"]["InternalStatusOnReturnValueChoices"];
31291
+ approvalStatus: components["schemas"]["ApprovalValueChoices"];
31292
+ /** Serialnumber */
31293
+ serialNumber: string;
31294
+ warehouse: components["schemas"]["WarehouseSummaryInfo"];
31295
+ branch: components["schemas"]["BranchSummaryInfo"];
31296
+ /** Description */
31297
+ description?: string | null;
31298
+ /**
31299
+ * Details
31300
+ * @default []
31301
+ */
31302
+ details: components["schemas"]["StockAdjustmentRetrieveDetailSchema"][];
31303
+ };
31246
31304
  /** OpeningQuantityDetailsSchema */
31247
31305
  OpeningQuantityDetailsSchema: {
31248
31306
  /**
@@ -67471,7 +67529,7 @@ export interface operations {
67471
67529
  [name: string]: unknown;
67472
67530
  };
67473
67531
  content: {
67474
- "application/json": components["schemas"]["StockAdjustmentSchema"];
67532
+ "application/json": components["schemas"]["StockAdjustmentRetrieveSchema"];
67475
67533
  };
67476
67534
  };
67477
67535
  /** @description Forbidden */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1442",
3
+ "version": "1.0.1444",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],