@erp-galoper/types 1.0.94 → 1.0.95

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 +132 -36
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26467,7 +26467,7 @@ export interface components {
26467
26467
  /**
26468
26468
  * Id
26469
26469
  * Format: uuid
26470
- * @example d3ee8e89-f537-434a-b212-c32d888c5ded
26470
+ * @example 540de8dc-fb22-4af5-9da3-82c7b6d1ee1e
26471
26471
  */
26472
26472
  id: string;
26473
26473
  /**
@@ -29426,7 +29426,10 @@ export interface components {
29426
29426
  CalculateItemSchema: {
29427
29427
  /**
29428
29428
  * Quantity
29429
- * @description This field is required when purchase invoice item does not have item package
29429
+ * @description
29430
+ * - Disabled when item package is selected
29431
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
29432
+ *
29430
29433
  */
29431
29434
  quantity?: number;
29432
29435
  /**
@@ -29666,8 +29669,14 @@ export interface components {
29666
29669
  * @description This field is required and visible when inventory module is not active
29667
29670
  */
29668
29671
  itemText: string | null;
29669
- /** Quantity */
29670
- quantity: number | string;
29672
+ /**
29673
+ * Quantity
29674
+ * @description
29675
+ * - Disabled when item package is selected
29676
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
29677
+ *
29678
+ */
29679
+ quantity?: number;
29671
29680
  /**
29672
29681
  * Unitofmeasure
29673
29682
  * @description This field is required and visible when inventory module is active only, to get unit of measures use route /inventory/item/{item_id}/ where field is unitOfMeasure
@@ -29761,8 +29770,14 @@ export interface components {
29761
29770
  * @description This field is required and visible when inventory module is not active
29762
29771
  */
29763
29772
  itemText: string | null;
29764
- /** Quantity */
29765
- quantity: number | string;
29773
+ /**
29774
+ * Quantity
29775
+ * @description
29776
+ * - Disabled when item package is selected
29777
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
29778
+ *
29779
+ */
29780
+ quantity?: number;
29766
29781
  /**
29767
29782
  * Unitofmeasure
29768
29783
  * @description This field is required and visible when inventory module is active only, to get unit of measures use route /inventory/item/{item_id}/ where field is unitOfMeasure
@@ -30001,8 +30016,14 @@ export interface components {
30001
30016
  * @description This field is required and visible when inventory module is not active
30002
30017
  */
30003
30018
  itemText: string | null;
30004
- /** Quantity */
30005
- quantity: number | string;
30019
+ /**
30020
+ * Quantity
30021
+ * @description
30022
+ * - Disabled when item package is selected
30023
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
30024
+ *
30025
+ */
30026
+ quantity?: number;
30006
30027
  /**
30007
30028
  * Unitofmeasure
30008
30029
  * @description This field is required and visible when inventory module is active only, to get unit of measures use route /inventory/item/{item_id}/ where field is unitOfMeasure
@@ -30080,8 +30101,14 @@ export interface components {
30080
30101
  * @description This field is required and visible when inventory module is not active
30081
30102
  */
30082
30103
  itemText: string | null;
30083
- /** Quantity */
30084
- quantity: number | string;
30104
+ /**
30105
+ * Quantity
30106
+ * @description
30107
+ * - Disabled when item package is selected
30108
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
30109
+ *
30110
+ */
30111
+ quantity?: number;
30085
30112
  /**
30086
30113
  * Unitofmeasure
30087
30114
  * @description This field is required and visible when inventory module is active only, to get unit of measures use route /inventory/item/{item_id}/ where field is unitOfMeasure
@@ -30822,8 +30849,14 @@ export interface components {
30822
30849
  * @description This field is required when the package is selected
30823
30850
  */
30824
30851
  unitPackage?: number;
30825
- /** Quantity */
30826
- quantity: number;
30852
+ /**
30853
+ * Quantity
30854
+ * @description
30855
+ * - Disabled when item package is selected
30856
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
30857
+ *
30858
+ */
30859
+ quantity?: number;
30827
30860
  /** Unitprice */
30828
30861
  unitPrice: number;
30829
30862
  /**
@@ -31055,8 +31088,14 @@ export interface components {
31055
31088
  };
31056
31089
  /** ItemTotal */
31057
31090
  ItemTotal: {
31058
- /** Quantity */
31059
- quantity: number;
31091
+ /**
31092
+ * Quantity
31093
+ * @description
31094
+ * - Disabled when item package is selected
31095
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
31096
+ *
31097
+ */
31098
+ quantity?: number;
31060
31099
  /** Unitprice */
31061
31100
  unitPrice: number;
31062
31101
  /** Unitpackage */
@@ -31333,8 +31372,14 @@ export interface components {
31333
31372
  * @description This field is required when the package is selected
31334
31373
  */
31335
31374
  unitPackage?: number;
31336
- /** Quantity */
31337
- quantity: number;
31375
+ /**
31376
+ * Quantity
31377
+ * @description
31378
+ * - Disabled when item package is selected
31379
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
31380
+ *
31381
+ */
31382
+ quantity?: number;
31338
31383
  /** Unitprice */
31339
31384
  unitPrice: number;
31340
31385
  /**
@@ -31825,7 +31870,10 @@ export interface components {
31825
31870
  purchaseInvoice: components["schemas"]["PurchaseInvoiceForReturnOrderCreateSchema"];
31826
31871
  /**
31827
31872
  * Quantity
31828
- * @description This field is required when purchase invoice item does not have item package
31873
+ * @description
31874
+ * - Disabled when item package is selected
31875
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
31876
+ *
31829
31877
  */
31830
31878
  quantity?: number;
31831
31879
  /**
@@ -32179,8 +32227,14 @@ export interface components {
32179
32227
  * @description Item name, this is required if inventory module is not enabled, otherwise should be null and should replaced by item, the label should be item only not itemName
32180
32228
  */
32181
32229
  itemName: string | null;
32182
- /** Quantity */
32183
- quantity: number;
32230
+ /**
32231
+ * Quantity
32232
+ * @description
32233
+ * - Disabled when item package is selected
32234
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
32235
+ *
32236
+ */
32237
+ quantity?: number;
32184
32238
  /**
32185
32239
  * Unitofmeasurement
32186
32240
  * @description Unit of measurement ID, this is required if inventory module is enabled, otherwise should be null, and should be disappeared in the ui, to get unit of measures use route /inventory/item/{item_id}/ and the field is unitOfMeasure
@@ -32226,8 +32280,14 @@ export interface components {
32226
32280
  * @description Item name, this is required if inventory module is not enabled, otherwise should be null and should replaced by item, the label should be item only not itemName
32227
32281
  */
32228
32282
  itemName: string | null;
32229
- /** Quantity */
32230
- quantity: number;
32283
+ /**
32284
+ * Quantity
32285
+ * @description
32286
+ * - Disabled when item package is selected
32287
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
32288
+ *
32289
+ */
32290
+ quantity?: number;
32231
32291
  /**
32232
32292
  * Unitofmeasurement
32233
32293
  * @description Unit of measurement ID, this is required if inventory module is enabled, otherwise should be null, and should be disappeared in the ui
@@ -33096,7 +33156,10 @@ export interface components {
33096
33156
  purchaseInvoice: components["schemas"]["PurchaseInvoiceForReturnInvoiceCreateSchema"];
33097
33157
  /**
33098
33158
  * Quantity
33099
- * @description This field is required when purchase invoice item does not have item package
33159
+ * @description
33160
+ * - Disabled when item package is selected
33161
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
33162
+ *
33100
33163
  */
33101
33164
  quantity?: number;
33102
33165
  /**
@@ -36422,8 +36485,14 @@ export interface components {
36422
36485
  SalesItemTotal: {
36423
36486
  /** Item */
36424
36487
  item: number;
36425
- /** Quantity */
36426
- quantity: number;
36488
+ /**
36489
+ * Quantity
36490
+ * @description
36491
+ * - Disabled when item package is selected
36492
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
36493
+ *
36494
+ */
36495
+ quantity?: number;
36427
36496
  /** Unitprice */
36428
36497
  unitPrice: number;
36429
36498
  /** Unitpackage */
@@ -36832,9 +36901,12 @@ export interface components {
36832
36901
  itemType?: components["schemas"]["NonInventoryItemType"];
36833
36902
  /**
36834
36903
  * Quantity
36835
- * @description The quantity of the items, incase of package, it should be unitPackage * quantity of the package
36904
+ * @description
36905
+ * - Disabled when item package is selected
36906
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
36907
+ *
36836
36908
  */
36837
- quantity: number;
36909
+ quantity?: number;
36838
36910
  /**
36839
36911
  * Itempackage
36840
36912
  * Format: uuid
@@ -38870,9 +38942,12 @@ export interface components {
38870
38942
  itemType?: components["schemas"]["NonInventoryItemType"];
38871
38943
  /**
38872
38944
  * Quantity
38873
- * @description The quantity of the items. For packages, it should be unitPackage * quantity of the package
38945
+ * @description
38946
+ * - Disabled when item package is selected
38947
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
38948
+ *
38874
38949
  */
38875
- quantity: number;
38950
+ quantity?: number;
38876
38951
  /**
38877
38952
  * Itempackage
38878
38953
  * Format: uuid
@@ -40294,9 +40369,12 @@ export interface components {
40294
40369
  itemType?: components["schemas"]["NonInventoryItemType"];
40295
40370
  /**
40296
40371
  * Quantity
40297
- * @description The quantity of the items. For packages, it should be unitPackage * quantity of the package
40372
+ * @description
40373
+ * - Disabled when item package is selected
40374
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
40375
+ *
40298
40376
  */
40299
- quantity: number;
40377
+ quantity?: number;
40300
40378
  /**
40301
40379
  * Itempackage
40302
40380
  * Format: uuid
@@ -40686,7 +40764,10 @@ export interface components {
40686
40764
  salesInvoice: components["schemas"]["SalesInvoiceForReturnOrderCreateSchema"];
40687
40765
  /**
40688
40766
  * Quantity
40689
- * @description This field is required when sales invoice item does not have item package
40767
+ * @description
40768
+ * - Disabled when item package is selected
40769
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
40770
+ *
40690
40771
  */
40691
40772
  quantity?: number;
40692
40773
  /**
@@ -40864,8 +40945,14 @@ export interface components {
40864
40945
  /** CalculateSalesReturnOrderItemsSchema */
40865
40946
  CalculateSalesReturnOrderItemsSchema: {
40866
40947
  salesInvoice: components["schemas"]["SalesInvoiceForReturnOrderCreateSchema"];
40867
- /** Quantity */
40868
- quantity: number;
40948
+ /**
40949
+ * Quantity
40950
+ * @description
40951
+ * - Disabled when item package is selected
40952
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
40953
+ *
40954
+ */
40955
+ quantity?: number;
40869
40956
  /** Unitpackage */
40870
40957
  unitPackage?: number | null;
40871
40958
  };
@@ -41038,7 +41125,10 @@ export interface components {
41038
41125
  salesInvoice: components["schemas"]["SalesInvoiceForReturnInvoiceCreateSchema"];
41039
41126
  /**
41040
41127
  * Quantity
41041
- * @description This field is required when sales invoice item does not have item package.
41128
+ * @description
41129
+ * - Disabled when item package is selected
41130
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
41131
+ *
41042
41132
  */
41043
41133
  quantity?: number;
41044
41134
  /**
@@ -41213,8 +41303,14 @@ export interface components {
41213
41303
  /** CalculateSalesReturnInvoiceItemsSchema */
41214
41304
  CalculateSalesReturnInvoiceItemsSchema: {
41215
41305
  salesInvoice: components["schemas"]["SalesInvoiceForReturnInvoiceCreateSchema"];
41216
- /** Quantity */
41217
- quantity: number;
41306
+ /**
41307
+ * Quantity
41308
+ * @description
41309
+ * - Disabled when item package is selected
41310
+ * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
41311
+ *
41312
+ */
41313
+ quantity?: number;
41218
41314
  /** Unitpackage */
41219
41315
  unitPackage?: number | null;
41220
41316
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.94",
3
+ "version": "1.0.95",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],