@erp-galoper/types 1.0.238 → 1.0.240

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 +44 -34
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -20385,7 +20385,7 @@ export interface components {
20385
20385
  * DateFiltration
20386
20386
  * @enum {string}
20387
20387
  */
20388
- DateFiltration: "thisFiscalYear" | "lastFiscalYear" | "lastMonth" | "thisMonth" | "thisQuarter" | "lastQuarter";
20388
+ DateFiltration: "thisFiscalYear" | "lastFiscalYear" | "lastMonth" | "thisMonth" | "thisQuarter" | "lastQuarter" | "all" | "today";
20389
20389
  /** UpdateUserSetting */
20390
20390
  UpdateUserSetting: {
20391
20391
  /** User */
@@ -22460,7 +22460,7 @@ export interface components {
22460
22460
  * PeriodType
22461
22461
  * @enum {string}
22462
22462
  */
22463
- PeriodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
22463
+ PeriodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
22464
22464
  /** ListJournalVouchers */
22465
22465
  ListJournalVouchers: {
22466
22466
  info: components["schemas"]["PageInfoSchema"];
@@ -26583,7 +26583,7 @@ export interface components {
26583
26583
  /**
26584
26584
  * Id
26585
26585
  * Format: uuid
26586
- * @example 51673d87-3084-4e09-bc06-dd212b160543
26586
+ * @example 6fcde857-13f8-4df6-93f7-6c8e850da65d
26587
26587
  */
26588
26588
  id: string;
26589
26589
  /**
@@ -33598,6 +33598,16 @@ export interface components {
33598
33598
  companySubtotal: number;
33599
33599
  /** Discountedtotal */
33600
33600
  discountedTotal: number;
33601
+ /**
33602
+ * Usddiscountedtotal
33603
+ * @default 0
33604
+ */
33605
+ usdDiscountedTotal: number;
33606
+ /**
33607
+ * Companydiscountedtotal
33608
+ * @default 0
33609
+ */
33610
+ companyDiscountedTotal: number;
33601
33611
  /**
33602
33612
  * Taxes
33603
33613
  * @default []
@@ -47121,7 +47131,7 @@ export interface operations {
47121
47131
  /** @description Page size */
47122
47132
  pageSize?: number;
47123
47133
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
47124
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
47134
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
47125
47135
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
47126
47136
  startDate?: string | null;
47127
47137
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -52776,7 +52786,7 @@ export interface operations {
52776
52786
  currenciesIds: number[];
52777
52787
  branchesIds: number[];
52778
52788
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
52779
- periodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
52789
+ periodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
52780
52790
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
52781
52791
  startDate?: string | null;
52782
52792
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -52832,7 +52842,7 @@ export interface operations {
52832
52842
  currenciesIds: number[];
52833
52843
  branchesIds: number[];
52834
52844
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
52835
- periodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
52845
+ periodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
52836
52846
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
52837
52847
  startDate?: string | null;
52838
52848
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -55209,7 +55219,7 @@ export interface operations {
55209
55219
  currenciesIds: number[];
55210
55220
  branchesIds: number[];
55211
55221
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
55212
- periodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
55222
+ periodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
55213
55223
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
55214
55224
  startDate?: string | null;
55215
55225
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -55256,7 +55266,7 @@ export interface operations {
55256
55266
  currenciesIds: number[];
55257
55267
  branchesIds: number[];
55258
55268
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
55259
- periodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
55269
+ periodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
55260
55270
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
55261
55271
  startDate?: string | null;
55262
55272
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -55312,7 +55322,7 @@ export interface operations {
55312
55322
  currenciesIds: number[];
55313
55323
  branchesIds: number[];
55314
55324
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
55315
- periodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
55325
+ periodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
55316
55326
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
55317
55327
  startDate?: string | null;
55318
55328
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -55857,7 +55867,7 @@ export interface operations {
55857
55867
  currenciesIds: number[];
55858
55868
  branchesIds: number[];
55859
55869
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
55860
- periodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
55870
+ periodType: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
55861
55871
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
55862
55872
  startDate?: string | null;
55863
55873
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -62782,7 +62792,7 @@ export interface operations {
62782
62792
  /** @description Page size */
62783
62793
  pageSize?: number;
62784
62794
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
62785
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
62795
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
62786
62796
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
62787
62797
  startDate?: string | null;
62788
62798
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -63505,7 +63515,7 @@ export interface operations {
63505
63515
  /** @description Page size */
63506
63516
  pageSize?: number;
63507
63517
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
63508
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
63518
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
63509
63519
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
63510
63520
  startDate?: string | null;
63511
63521
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -64089,7 +64099,7 @@ export interface operations {
64089
64099
  query: {
64090
64100
  branchId: number;
64091
64101
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
64092
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
64102
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
64093
64103
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
64094
64104
  startDate?: string | null;
64095
64105
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -64512,7 +64522,7 @@ export interface operations {
64512
64522
  /** @description Branch ID to filter by */
64513
64523
  branchId: number;
64514
64524
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
64515
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
64525
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
64516
64526
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
64517
64527
  startDate?: string | null;
64518
64528
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -65133,7 +65143,7 @@ export interface operations {
65133
65143
  /** @description Branch ID to filter by */
65134
65144
  branchId: number;
65135
65145
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
65136
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
65146
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
65137
65147
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
65138
65148
  startDate?: string | null;
65139
65149
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -65879,7 +65889,7 @@ export interface operations {
65879
65889
  /** @description Branch ID to filter by */
65880
65890
  branchId: number;
65881
65891
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
65882
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
65892
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
65883
65893
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
65884
65894
  startDate?: string | null;
65885
65895
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -66547,7 +66557,7 @@ export interface operations {
66547
66557
  /** @description Page size */
66548
66558
  pageSize?: number;
66549
66559
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
66550
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
66560
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
66551
66561
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
66552
66562
  startDate?: string | null;
66553
66563
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -67255,7 +67265,7 @@ export interface operations {
67255
67265
  query: {
67256
67266
  branchId: number;
67257
67267
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
67258
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
67268
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
67259
67269
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
67260
67270
  startDate?: string | null;
67261
67271
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -67794,7 +67804,7 @@ export interface operations {
67794
67804
  /** @description Branch ID to filter by */
67795
67805
  branchId: number;
67796
67806
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
67797
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
67807
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
67798
67808
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
67799
67809
  startDate?: string | null;
67800
67810
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -68430,7 +68440,7 @@ export interface operations {
68430
68440
  search?: string | null;
68431
68441
  branchId: number;
68432
68442
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
68433
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
68443
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
68434
68444
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
68435
68445
  startDate?: string | null;
68436
68446
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -70065,7 +70075,7 @@ export interface operations {
70065
70075
  parameters: {
70066
70076
  query: {
70067
70077
  /** @description by default periodType is set to date filtration in user settings, Period type: thisMonth, thisYear, lastMonth, custom, ... */
70068
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
70078
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
70069
70079
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
70070
70080
  startDate?: string | null;
70071
70081
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -70582,7 +70592,7 @@ export interface operations {
70582
70592
  query: {
70583
70593
  branchId: number;
70584
70594
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
70585
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
70595
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
70586
70596
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
70587
70597
  startDate?: string | null;
70588
70598
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -72960,7 +72970,7 @@ export interface operations {
72960
72970
  /** @description Search by reference number, customer name, item name, barcode, SKU code, serial number, date, validity date */
72961
72971
  search?: string | null;
72962
72972
  /** @description Period type */
72963
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
72973
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
72964
72974
  /** @description Start date for custom range (YYYY-MM-DD) */
72965
72975
  startDate?: string | null;
72966
72976
  /** @description End date for custom range (YYYY-MM-DD) */
@@ -73810,7 +73820,7 @@ export interface operations {
73810
73820
  query: {
73811
73821
  branchId: number;
73812
73822
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
73813
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
73823
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
73814
73824
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
73815
73825
  startDate?: string | null;
73816
73826
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -74715,7 +74725,7 @@ export interface operations {
74715
74725
  parameters: {
74716
74726
  query?: {
74717
74727
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
74718
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
74728
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
74719
74729
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
74720
74730
  startDate?: string | null;
74721
74731
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -75294,7 +75304,7 @@ export interface operations {
75294
75304
  /** @description Search by reference number, customer name, item name, barcode, SKU code, serial number, date, delivery date */
75295
75305
  search?: string | null;
75296
75306
  /** @description Period type */
75297
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
75307
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
75298
75308
  /** @description Start date for custom range (YYYY-MM-DD) */
75299
75309
  startDate?: string | null;
75300
75310
  /** @description End date for custom range (YYYY-MM-DD) */
@@ -75761,7 +75771,7 @@ export interface operations {
75761
75771
  parameters: {
75762
75772
  query?: {
75763
75773
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
75764
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
75774
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
75765
75775
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
75766
75776
  startDate?: string | null;
75767
75777
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -76334,7 +76344,7 @@ export interface operations {
76334
76344
  parameters: {
76335
76345
  query?: {
76336
76346
  /** @description by default periodType is set to date filtration in user settings, Period type: thisMonth, thisYear, lastMonth, custom, ... */
76337
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
76347
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
76338
76348
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
76339
76349
  startDate?: string | null;
76340
76350
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -76913,7 +76923,7 @@ export interface operations {
76913
76923
  /** @description Search by customer name, customer number, item name, barcode, SKU code, serial number, date, delivery date */
76914
76924
  search?: string | null;
76915
76925
  /** @description by default periodType is set to date filtration in user settings, Period type: thisMonth, thisYear, lastMonth, custom, ... */
76916
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
76926
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
76917
76927
  /** @description Start date for custom range (YYYY-MM-DD) */
76918
76928
  startDate?: string | null;
76919
76929
  /** @description End date for custom range (YYYY-MM-DD) */
@@ -78489,7 +78499,7 @@ export interface operations {
78489
78499
  parameters: {
78490
78500
  query?: {
78491
78501
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ..., If periodType is empty, it will be automatically determined based on the user's default date filtration */
78492
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
78502
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
78493
78503
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
78494
78504
  startDate?: string | null;
78495
78505
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -79017,7 +79027,7 @@ export interface operations {
79017
79027
  /** @description Search by reference number, customer name, customer account number ,item name, barcode, SKU code, serial number, date, delivery date */
79018
79028
  search?: string | null;
79019
79029
  /** @description by default periodType is set to date filtration in user settings, Period type: thisMonth, thisYear, lastMonth, custom, ... */
79020
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
79030
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
79021
79031
  /** @description Start date for custom range (YYYY-MM-DD) */
79022
79032
  startDate?: string | null;
79023
79033
  /** @description End date for custom range (YYYY-MM-DD) */
@@ -79596,7 +79606,7 @@ export interface operations {
79596
79606
  parameters: {
79597
79607
  query?: {
79598
79608
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ..., if no value is provided, the default date filtration for user will be used */
79599
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
79609
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
79600
79610
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
79601
79611
  startDate?: string | null;
79602
79612
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -80127,7 +80137,7 @@ export interface operations {
80127
80137
  parameters: {
80128
80138
  query?: {
80129
80139
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ...,default should be date filtration in user settings */
80130
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
80140
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
80131
80141
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
80132
80142
  startDate?: string | null;
80133
80143
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
@@ -80526,7 +80536,7 @@ export interface operations {
80526
80536
  parameters: {
80527
80537
  query?: {
80528
80538
  /** @description Period type: thisMonth, thisYear, lastMonth, custom, ... */
80529
- periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom";
80539
+ periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
80530
80540
  /** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
80531
80541
  startDate?: string | null;
80532
80542
  /** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.238",
3
+ "version": "1.0.240",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],