@erp-galoper/types 1.0.1166 → 1.0.1167

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 +43 -5
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -4815,6 +4815,8 @@ export interface paths {
4815
4815
  * - serialNotAvailable - Serial is not in available status
4816
4816
  * - serialNotInWarehouse - Serial is not present in source warehouse
4817
4817
  * - serialDoesNotExist - The selected serial does not exist
4818
+ * - itemNotFoundInRequestTransfer
4819
+ * - quantityExceedsRequestedQuantity
4818
4820
  *
4819
4821
  * - 403: permissionDenied
4820
4822
  * - noBranchAccess
@@ -4869,6 +4871,8 @@ export interface paths {
4869
4871
  * - serialNotInWarehouse - Serial is not present in source warehouse
4870
4872
  * - serialDoesNotExist - The selected serial does not exist
4871
4873
  * - item+warehouse+branch+unitOfMeasure+itemPackageConflict
4874
+ * - itemNotFoundInRequestTransfer
4875
+ * - quantityExceedsRequestedQuantity
4872
4876
  *
4873
4877
  * - 403: permissionDenied
4874
4878
  * - noBranchAccess
@@ -27934,6 +27938,11 @@ export interface components {
27934
27938
  /** Id */
27935
27939
  id?: number;
27936
27940
  };
27941
+ /**
27942
+ * DocumentLifeCycleStatus
27943
+ * @enum {string}
27944
+ */
27945
+ DocumentLifeCycleStatus: "draft" | "submitted" | "completed" | "canceled";
27937
27946
  /** InternalTransferDetailsSchema */
27938
27947
  InternalTransferDetailsSchema: {
27939
27948
  /**
@@ -27991,12 +28000,31 @@ export interface components {
27991
28000
  transferDate: string;
27992
28001
  /** Description */
27993
28002
  description?: string | null;
28003
+ transferRequest: components["schemas"]["TransferRequestCommonSchema"] | null;
27994
28004
  /**
27995
28005
  * Details
27996
28006
  * @default []
27997
28007
  */
27998
28008
  details: components["schemas"]["InternalTransferDetailsSchema"][];
27999
28009
  };
28010
+ /** TransferRequestCommonSchema */
28011
+ TransferRequestCommonSchema: {
28012
+ /**
28013
+ * Id
28014
+ * Format: uuid
28015
+ */
28016
+ id: string;
28017
+ /** Serialnumber */
28018
+ serialNumber: string;
28019
+ /**
28020
+ * Date
28021
+ * Format: date
28022
+ */
28023
+ date: string;
28024
+ status: components["schemas"]["DocumentLifeCycleStatus"];
28025
+ sourceWarehouse: components["schemas"]["WarehouseSummaryInfo"];
28026
+ destinationWarehouse: components["schemas"]["WarehouseSummaryInfo"];
28027
+ };
28000
28028
  /** CreateInternalTransferItemSchema */
28001
28029
  CreateInternalTransferItemSchema: {
28002
28030
  /**
@@ -28078,6 +28106,13 @@ export interface components {
28078
28106
  * @description Optional notes or purpose for this transfer
28079
28107
  */
28080
28108
  description?: string | null;
28109
+ /**
28110
+ * Transfer Request
28111
+ * Format: uuid
28112
+ * @description - API endpoint to link transfer request:
28113
+ * - /api/v1/inventory/transfer-requests?view=myWarehouses and filter by sourceWarehouseResponse equals to {accepted} and destinationWarehouse equals to {to-warehouse-id} and fulfillmentStage not equals to {received}
28114
+ */
28115
+ transfer_request?: string;
28081
28116
  status: components["schemas"]["InternalStatusOnCreateValueChoices"];
28082
28117
  /**
28083
28118
  * Details
@@ -28121,6 +28156,7 @@ export interface components {
28121
28156
  transferDate: string;
28122
28157
  /** Description */
28123
28158
  description?: string | null;
28159
+ transferRequest: components["schemas"]["TransferRequestCommonSchema"] | null;
28124
28160
  };
28125
28161
  /** UpdateInternalTransferItemSchema */
28126
28162
  UpdateInternalTransferItemSchema: {
@@ -28207,6 +28243,13 @@ export interface components {
28207
28243
  * @description Optional notes or purpose for this transfer
28208
28244
  */
28209
28245
  description?: string | null;
28246
+ /**
28247
+ * Transfer Request
28248
+ * Format: uuid
28249
+ * @description - API endpoint to link transfer request:
28250
+ * - /api/v1/inventory/transfer-requests?view=myWarehouses and filter by sourceWarehouseResponse equals to {accepted} and destinationWarehouse equals to {to-warehouse-id} and fulfillmentStage not equals to {received}
28251
+ */
28252
+ transfer_request?: string;
28210
28253
  status: components["schemas"]["InternalStatusOnCreateValueChoices"];
28211
28254
  /**
28212
28255
  * Details
@@ -28214,11 +28257,6 @@ export interface components {
28214
28257
  */
28215
28258
  details: components["schemas"]["UpdateInternalTransferItemSchema"][];
28216
28259
  };
28217
- /**
28218
- * DocumentLifeCycleStatus
28219
- * @enum {string}
28220
- */
28221
- DocumentLifeCycleStatus: "draft" | "submitted" | "completed" | "canceled";
28222
28260
  /**
28223
28261
  * LinkedDocumentsSchema
28224
28262
  * @description Schema for individual linked documents.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1166",
3
+ "version": "1.0.1167",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],