@erp-galoper/types 1.0.1442 → 1.0.1443
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 +64 -7
- 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:
|
|
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
|
|
@@ -31243,6 +31243,63 @@ export interface components {
|
|
|
31243
31243
|
*/
|
|
31244
31244
|
id?: number;
|
|
31245
31245
|
};
|
|
31246
|
+
/** StockAdjustmentRetrieveDetailSchema */
|
|
31247
|
+
StockAdjustmentRetrieveDetailSchema: {
|
|
31248
|
+
/**
|
|
31249
|
+
* Datecreated
|
|
31250
|
+
* Format: date-time
|
|
31251
|
+
*/
|
|
31252
|
+
dateCreated: string;
|
|
31253
|
+
/** Datemodified */
|
|
31254
|
+
dateModified: string | null;
|
|
31255
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
31256
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
31257
|
+
/** Id */
|
|
31258
|
+
id: number;
|
|
31259
|
+
item: components["schemas"]["ItemSchema"];
|
|
31260
|
+
/** @description Tracking method: serial_number, batch, or quantity */
|
|
31261
|
+
trackInventoryBy?: components["schemas"]["TrackingMethodChoices"] | null;
|
|
31262
|
+
reason?: components["schemas"]["Reason"] | null;
|
|
31263
|
+
adjustmentType: components["schemas"]["AdjustmentTypeOption"];
|
|
31264
|
+
/** Adjustmentquantity */
|
|
31265
|
+
adjustmentQuantity: number;
|
|
31266
|
+
unitOfMeasure?: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
|
|
31267
|
+
itemPackage?: components["schemas"]["ItemPackageSummarySchema"] | null;
|
|
31268
|
+
batch?: components["schemas"]["BatchSerialSummarySchema"] | null;
|
|
31269
|
+
serial?: components["schemas"]["BatchSerialSummarySchema"] | null;
|
|
31270
|
+
/**
|
|
31271
|
+
* Candelete
|
|
31272
|
+
* @default true
|
|
31273
|
+
*/
|
|
31274
|
+
canDelete: boolean;
|
|
31275
|
+
};
|
|
31276
|
+
/** StockAdjustmentRetrieveSchema */
|
|
31277
|
+
StockAdjustmentRetrieveSchema: {
|
|
31278
|
+
/**
|
|
31279
|
+
* Datecreated
|
|
31280
|
+
* Format: date-time
|
|
31281
|
+
*/
|
|
31282
|
+
dateCreated: string;
|
|
31283
|
+
/** Datemodified */
|
|
31284
|
+
dateModified: string | null;
|
|
31285
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
31286
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
31287
|
+
/** Id */
|
|
31288
|
+
id: number;
|
|
31289
|
+
status: components["schemas"]["InternalStatusOnReturnValueChoices"];
|
|
31290
|
+
approvalStatus: components["schemas"]["ApprovalValueChoices"];
|
|
31291
|
+
/** Serialnumber */
|
|
31292
|
+
serialNumber: string;
|
|
31293
|
+
warehouse: components["schemas"]["WarehouseSummaryInfo"];
|
|
31294
|
+
branch: components["schemas"]["BranchSummaryInfo"];
|
|
31295
|
+
/** Description */
|
|
31296
|
+
description?: string | null;
|
|
31297
|
+
/**
|
|
31298
|
+
* Details
|
|
31299
|
+
* @default []
|
|
31300
|
+
*/
|
|
31301
|
+
details: components["schemas"]["StockAdjustmentRetrieveDetailSchema"][];
|
|
31302
|
+
};
|
|
31246
31303
|
/** OpeningQuantityDetailsSchema */
|
|
31247
31304
|
OpeningQuantityDetailsSchema: {
|
|
31248
31305
|
/**
|
|
@@ -67471,7 +67528,7 @@ export interface operations {
|
|
|
67471
67528
|
[name: string]: unknown;
|
|
67472
67529
|
};
|
|
67473
67530
|
content: {
|
|
67474
|
-
"application/json": components["schemas"]["
|
|
67531
|
+
"application/json": components["schemas"]["StockAdjustmentRetrieveSchema"];
|
|
67475
67532
|
};
|
|
67476
67533
|
};
|
|
67477
67534
|
/** @description Forbidden */
|