@erp-galoper/types 1.0.263 → 1.0.265

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 +26 -6
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -12697,6 +12697,8 @@ export interface paths {
12697
12697
  * - internalServerError
12698
12698
  * - Permission key :
12699
12699
  * - closingcommission : [ add ]
12700
+ * - Note : when create closing commission, when user specify start date, end date and sales person you should call route api/v1/commissions/closing/{sales-person-id}/invoices/
12701
+ * to generate invoices, this allow the user to view the (invoices and returned invoices) related to sales person
12700
12702
  */
12701
12703
  post: operations["commission_closing_commission_views_new_closing_commission"];
12702
12704
  delete?: never;
@@ -12749,6 +12751,8 @@ export interface paths {
12749
12751
  * - internalServerError
12750
12752
  * - Permission key :
12751
12753
  * - closingcommission : [ change ]
12754
+ * - Note : when edit closing commission, when user specify start date, end date and sales person you should call route api/v1/commissions/closing/{sales-person-id}/invoices/
12755
+ * to generate invoices, this allow the user to view the (invoices and returned invoices) related to sales person
12752
12756
  */
12753
12757
  put: operations["commission_closing_commission_views_edit_closing_commission"];
12754
12758
  post?: never;
@@ -26640,7 +26644,7 @@ export interface components {
26640
26644
  /**
26641
26645
  * Id
26642
26646
  * Format: uuid
26643
- * @example 777e135a-62f7-4c7c-bc39-57c485c2fdf9
26647
+ * @example 2599633b-f5b2-4400-b0c1-c171015c5acb
26644
26648
  */
26645
26649
  id: string;
26646
26650
  /**
@@ -30468,6 +30472,11 @@ export interface components {
30468
30472
  /** Attachments */
30469
30473
  attachments?: string[];
30470
30474
  };
30475
+ /**
30476
+ * NonInventoryItemType
30477
+ * @enum {string}
30478
+ */
30479
+ NonInventoryItemType: "goods" | "service" | "works";
30471
30480
  /** RequestForQuotationResponse */
30472
30481
  RequestForQuotationResponse: {
30473
30482
  /** Message */
@@ -30550,6 +30559,7 @@ export interface components {
30550
30559
  item: components["schemas"]["ItemMinimalSchema"] | null;
30551
30560
  /** Itemtext */
30552
30561
  itemText: string | null;
30562
+ itemType: components["schemas"]["NonInventoryItemType"] | null;
30553
30563
  /** Quantity */
30554
30564
  quantity: number;
30555
30565
  unitOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
@@ -30615,6 +30625,8 @@ export interface components {
30615
30625
  * @description This field is required and visible when inventory module is not active
30616
30626
  */
30617
30627
  itemText: string | null;
30628
+ /** @description This field is required if inventory is off */
30629
+ itemType?: components["schemas"]["NonInventoryItemType"];
30618
30630
  /**
30619
30631
  * Quantity
30620
30632
  * @description
@@ -30700,6 +30712,8 @@ export interface components {
30700
30712
  * @description This field is required and visible when inventory module is not active
30701
30713
  */
30702
30714
  itemText: string | null;
30715
+ /** @description This field is required if inventory is off */
30716
+ itemType?: components["schemas"]["NonInventoryItemType"];
30703
30717
  /**
30704
30718
  * Quantity
30705
30719
  * @description
@@ -31241,6 +31255,7 @@ export interface components {
31241
31255
  * @description Item name if inventory is off
31242
31256
  */
31243
31257
  itemName?: string | null;
31258
+ itemType: components["schemas"]["NonInventoryItemType"] | null;
31244
31259
  /** Quantity */
31245
31260
  quantity: number;
31246
31261
  /** @description This field is required and visible when inventory module is active only */
@@ -31435,6 +31450,8 @@ export interface components {
31435
31450
  * @description if inventory is not on this field is required and should be visible
31436
31451
  */
31437
31452
  itemName?: string | null;
31453
+ /** @description This field is required if inventory is off */
31454
+ itemType?: components["schemas"]["NonInventoryItemType"];
31438
31455
  /**
31439
31456
  * Itempackage
31440
31457
  * Format: uuid
@@ -31760,6 +31777,7 @@ export interface components {
31760
31777
  item: components["schemas"]["ItemMinimalSchema"] | null;
31761
31778
  /** Itemname */
31762
31779
  itemName?: string | null;
31780
+ itemType: components["schemas"]["NonInventoryItemType"] | null;
31763
31781
  /** Quantity */
31764
31782
  quantity: number;
31765
31783
  /** @description This field is required and visible when inventory module is active only */
@@ -31958,6 +31976,8 @@ export interface components {
31958
31976
  * @description if inventory is not on this field is required and should be visible
31959
31977
  */
31960
31978
  itemName?: string | null;
31979
+ /** @description This field is required if inventory is off */
31980
+ itemType?: components["schemas"]["NonInventoryItemType"];
31961
31981
  /**
31962
31982
  * Itempackage
31963
31983
  * Format: uuid
@@ -32571,6 +32591,7 @@ export interface components {
32571
32591
  item: components["schemas"]["ItemSummaryInfoWithReturnable"] | null;
32572
32592
  /** Itemname */
32573
32593
  itemName: string | null;
32594
+ itemType: components["schemas"]["NonInventoryItemType"] | null;
32574
32595
  /** Quantity */
32575
32596
  quantity: number;
32576
32597
  unitOfMeasurement: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
@@ -32838,6 +32859,8 @@ export interface components {
32838
32859
  * @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
32860
  */
32840
32861
  itemName: string | null;
32862
+ /** @description This field is required if inventory is off */
32863
+ itemType?: components["schemas"]["NonInventoryItemType"];
32841
32864
  /**
32842
32865
  * Quantity
32843
32866
  * @description
@@ -32891,6 +32914,8 @@ export interface components {
32891
32914
  * @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
32915
  */
32893
32916
  itemName: string | null;
32917
+ /** @description This field is required if inventory is off */
32918
+ itemType?: components["schemas"]["NonInventoryItemType"];
32894
32919
  /**
32895
32920
  * Quantity
32896
32921
  * @description
@@ -37354,11 +37379,6 @@ export interface components {
37354
37379
  /** Name */
37355
37380
  name: string;
37356
37381
  };
37357
- /**
37358
- * NonInventoryItemType
37359
- * @enum {string}
37360
- */
37361
- NonInventoryItemType: "goods" | "service" | "works";
37362
37382
  /** PromotionsAndOffersSharedSchema */
37363
37383
  PromotionsAndOffersSharedSchema: {
37364
37384
  /**
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.265",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],