@erp-galoper/types 1.0.566 → 1.0.568

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 +11 -32
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26974,7 +26974,7 @@ export interface components {
26974
26974
  /**
26975
26975
  * Id
26976
26976
  * Format: uuid
26977
- * @example 7cb6538d-6a05-4218-b3fe-73b7ee0243da
26977
+ * @example 4d3928de-e250-426f-a9de-d5d9111efcf6
26978
26978
  */
26979
26979
  id: string;
26980
26980
  /**
@@ -35449,34 +35449,7 @@ export interface components {
35449
35449
  GoodsReceiptListSchema: {
35450
35450
  info: components["schemas"]["PageInfoSchema"];
35451
35451
  /** Results */
35452
- results: components["schemas"]["GoodsReceiptNoteSchemaWithoutItems"][];
35453
- };
35454
- /** GoodsReceiptNoteSchemaWithoutItems */
35455
- GoodsReceiptNoteSchemaWithoutItems: {
35456
- /**
35457
- * Id
35458
- * Format: uuid
35459
- */
35460
- id: string;
35461
- /** Serialnumber */
35462
- serialNumber: string;
35463
- /**
35464
- * Date
35465
- * Format: date
35466
- */
35467
- date: string;
35468
- supplier: components["schemas"]["ChildSupplierSharedSchema"];
35469
- warehouse: components["schemas"]["WarehouseSummaryInfo"];
35470
- /** @description Linked purchase order ID */
35471
- purchaseOrder?: components["schemas"]["PurchaseOrderSharedSchema"] | null;
35472
- /** @description Linked purchase invoice ID */
35473
- purchaseInvoice?: components["schemas"]["PurchaseInvoiceSharedSchema"] | null;
35474
- /** Referencenumber */
35475
- referenceNumber?: string | null;
35476
- /** Description */
35477
- description?: string | null;
35478
- status: components["schemas"]["InternalStatusOnReturnValueChoices"];
35479
- approvalStatus: components["schemas"]["ApprovalValueChoices"];
35452
+ results: components["schemas"]["GoodsReceiptNoteSchema"][];
35480
35453
  };
35481
35454
  /** History */
35482
35455
  History: {
@@ -45256,10 +45229,10 @@ export interface components {
45256
45229
  GoodsDeliveryNoteListSchema: {
45257
45230
  info: components["schemas"]["PageInfoSchema"];
45258
45231
  /** Results */
45259
- results: components["schemas"]["GoodsDeliveryNoteSchemaWithoutItems"][];
45232
+ results: components["schemas"]["GoodsDeliveryNoteWithItemForListSchema"][];
45260
45233
  };
45261
- /** GoodsDeliveryNoteSchemaWithoutItems */
45262
- GoodsDeliveryNoteSchemaWithoutItems: {
45234
+ /** GoodsDeliveryNoteWithItemForListSchema */
45235
+ GoodsDeliveryNoteWithItemForListSchema: {
45263
45236
  /**
45264
45237
  * Id
45265
45238
  * Format: uuid
@@ -45297,6 +45270,12 @@ export interface components {
45297
45270
  * @description Additional notes regarding the delivery note
45298
45271
  */
45299
45272
  notes: string | null;
45273
+ /**
45274
+ * Items
45275
+ * @description List of items in the goods delivery note
45276
+ * @default []
45277
+ */
45278
+ items: components["schemas"]["GoodsDeliveryNoteItemsSchema"][];
45300
45279
  };
45301
45280
  /** DefaultSubsidiaryAccountDetailSchema */
45302
45281
  DefaultSubsidiaryAccountDetailSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.566",
3
+ "version": "1.0.568",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],