@erp-galoper/types 1.0.263 → 1.0.264

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 +22 -6
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26640,7 +26640,7 @@ export interface components {
26640
26640
  /**
26641
26641
  * Id
26642
26642
  * Format: uuid
26643
- * @example 777e135a-62f7-4c7c-bc39-57c485c2fdf9
26643
+ * @example b19b601b-d227-478b-9997-c73b3d2b264f
26644
26644
  */
26645
26645
  id: string;
26646
26646
  /**
@@ -30468,6 +30468,11 @@ export interface components {
30468
30468
  /** Attachments */
30469
30469
  attachments?: string[];
30470
30470
  };
30471
+ /**
30472
+ * NonInventoryItemType
30473
+ * @enum {string}
30474
+ */
30475
+ NonInventoryItemType: "goods" | "service" | "works";
30471
30476
  /** RequestForQuotationResponse */
30472
30477
  RequestForQuotationResponse: {
30473
30478
  /** Message */
@@ -30550,6 +30555,7 @@ export interface components {
30550
30555
  item: components["schemas"]["ItemMinimalSchema"] | null;
30551
30556
  /** Itemtext */
30552
30557
  itemText: string | null;
30558
+ itemType: components["schemas"]["NonInventoryItemType"] | null;
30553
30559
  /** Quantity */
30554
30560
  quantity: number;
30555
30561
  unitOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
@@ -30615,6 +30621,8 @@ export interface components {
30615
30621
  * @description This field is required and visible when inventory module is not active
30616
30622
  */
30617
30623
  itemText: string | null;
30624
+ /** @description This field is required if inventory is off */
30625
+ itemType?: components["schemas"]["NonInventoryItemType"];
30618
30626
  /**
30619
30627
  * Quantity
30620
30628
  * @description
@@ -30700,6 +30708,8 @@ export interface components {
30700
30708
  * @description This field is required and visible when inventory module is not active
30701
30709
  */
30702
30710
  itemText: string | null;
30711
+ /** @description This field is required if inventory is off */
30712
+ itemType?: components["schemas"]["NonInventoryItemType"];
30703
30713
  /**
30704
30714
  * Quantity
30705
30715
  * @description
@@ -31241,6 +31251,7 @@ export interface components {
31241
31251
  * @description Item name if inventory is off
31242
31252
  */
31243
31253
  itemName?: string | null;
31254
+ itemType: components["schemas"]["NonInventoryItemType"] | null;
31244
31255
  /** Quantity */
31245
31256
  quantity: number;
31246
31257
  /** @description This field is required and visible when inventory module is active only */
@@ -31435,6 +31446,8 @@ export interface components {
31435
31446
  * @description if inventory is not on this field is required and should be visible
31436
31447
  */
31437
31448
  itemName?: string | null;
31449
+ /** @description This field is required if inventory is off */
31450
+ itemType?: components["schemas"]["NonInventoryItemType"];
31438
31451
  /**
31439
31452
  * Itempackage
31440
31453
  * Format: uuid
@@ -31760,6 +31773,7 @@ export interface components {
31760
31773
  item: components["schemas"]["ItemMinimalSchema"] | null;
31761
31774
  /** Itemname */
31762
31775
  itemName?: string | null;
31776
+ itemType: components["schemas"]["NonInventoryItemType"] | null;
31763
31777
  /** Quantity */
31764
31778
  quantity: number;
31765
31779
  /** @description This field is required and visible when inventory module is active only */
@@ -31958,6 +31972,8 @@ export interface components {
31958
31972
  * @description if inventory is not on this field is required and should be visible
31959
31973
  */
31960
31974
  itemName?: string | null;
31975
+ /** @description This field is required if inventory is off */
31976
+ itemType?: components["schemas"]["NonInventoryItemType"];
31961
31977
  /**
31962
31978
  * Itempackage
31963
31979
  * Format: uuid
@@ -32571,6 +32587,7 @@ export interface components {
32571
32587
  item: components["schemas"]["ItemSummaryInfoWithReturnable"] | null;
32572
32588
  /** Itemname */
32573
32589
  itemName: string | null;
32590
+ itemType: components["schemas"]["NonInventoryItemType"] | null;
32574
32591
  /** Quantity */
32575
32592
  quantity: number;
32576
32593
  unitOfMeasurement: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
@@ -32838,6 +32855,8 @@ export interface components {
32838
32855
  * @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
32839
32856
  */
32840
32857
  itemName: string | null;
32858
+ /** @description This field is required if inventory is off */
32859
+ itemType?: components["schemas"]["NonInventoryItemType"];
32841
32860
  /**
32842
32861
  * Quantity
32843
32862
  * @description
@@ -32891,6 +32910,8 @@ export interface components {
32891
32910
  * @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
32892
32911
  */
32893
32912
  itemName: string | null;
32913
+ /** @description This field is required if inventory is off */
32914
+ itemType?: components["schemas"]["NonInventoryItemType"];
32894
32915
  /**
32895
32916
  * Quantity
32896
32917
  * @description
@@ -37354,11 +37375,6 @@ export interface components {
37354
37375
  /** Name */
37355
37376
  name: string;
37356
37377
  };
37357
- /**
37358
- * NonInventoryItemType
37359
- * @enum {string}
37360
- */
37361
- NonInventoryItemType: "goods" | "service" | "works";
37362
37378
  /** PromotionsAndOffersSharedSchema */
37363
37379
  PromotionsAndOffersSharedSchema: {
37364
37380
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.263",
3
+ "version": "1.0.264",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],