@erp-galoper/types 1.0.1645 → 1.0.1647

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 +313 -62
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -39880,21 +39880,39 @@ export interface components {
39880
39880
  * @default 0
39881
39881
  */
39882
39882
  companySubtotal: number;
39883
+ /**
39884
+ * Netsubtotal
39885
+ * @description This field is a number representing net subtotal (subtotal - line discount)
39886
+ * @default 0
39887
+ */
39888
+ netSubtotal: string;
39889
+ /**
39890
+ * Usdnetsubtotal
39891
+ * @description This field is a number representing net subtotal in secondary currency
39892
+ * @default 0
39893
+ */
39894
+ usdNetSubtotal: string;
39895
+ /**
39896
+ * Companynetsubtotal
39897
+ * @description This field is a number representing net subtotal in company currency
39898
+ * @default 0
39899
+ */
39900
+ companyNetSubtotal: string;
39883
39901
  /**
39884
39902
  * Discountedtotal
39885
- * @description This field represents net subtotal after discount
39903
+ * @description This field represents net total after discount
39886
39904
  * @default 0
39887
39905
  */
39888
39906
  discountedTotal: string;
39889
39907
  /**
39890
39908
  * Usddiscountedtotal
39891
- * @description This field represents net subtotal after discount in secondary currency
39909
+ * @description This field represents net total after discount in secondary currency
39892
39910
  * @default 0
39893
39911
  */
39894
39912
  usdDiscountedTotal: string;
39895
39913
  /**
39896
39914
  * Companydiscountedtotal
39897
- * @description This field represents net subtotal after discount in company currency
39915
+ * @description This field represents net total after discount in company currency
39898
39916
  * @default 0
39899
39917
  */
39900
39918
  companyDiscountedTotal: string;
@@ -39991,6 +40009,21 @@ export interface components {
39991
40009
  * @description This field represents gross subtotal in company currency
39992
40010
  */
39993
40011
  companySubtotal: number;
40012
+ /**
40013
+ * Netsubtotal
40014
+ * @description This field is a number representing net subtotal (subtotal - line discount)
40015
+ */
40016
+ netSubtotal: number;
40017
+ /**
40018
+ * Usdnetsubtotal
40019
+ * @description This field is a number representing net subtotal in secondary currency
40020
+ */
40021
+ usdNetSubtotal: number;
40022
+ /**
40023
+ * Companynetsubtotal
40024
+ * @description This field is a number representing net subtotal in company currency
40025
+ */
40026
+ companyNetSubtotal: number;
39994
40027
  /**
39995
40028
  * Discount
39996
40029
  * @description This field represents overall discount in %
@@ -39999,18 +40032,18 @@ export interface components {
39999
40032
  discount: number;
40000
40033
  /**
40001
40034
  * Discountedtotal
40002
- * @description This field represents net subtotal after discount
40035
+ * @description This field represents net total after line discount and overall discount
40003
40036
  * @default 0
40004
40037
  */
40005
40038
  discountedTotal: number;
40006
40039
  /**
40007
40040
  * Usddiscountedtotal
40008
- * @description This field represents net subtotal in secondary currency
40041
+ * @description This field represents net total after line discount and overall discount in secondary currency
40009
40042
  */
40010
40043
  usdDiscountedTotal: number;
40011
40044
  /**
40012
40045
  * Companydiscountedtotal
40013
- * @description This field represents net subtotal in company currency
40046
+ * @description This field represents net total after line discount and overall discount in company currency
40014
40047
  */
40015
40048
  companyDiscountedTotal: number;
40016
40049
  /** Taxamount */
@@ -40330,17 +40363,17 @@ export interface components {
40330
40363
  discount: number;
40331
40364
  /**
40332
40365
  * Discountedtotal
40333
- * @description This field represents net subtotal
40366
+ * @description This field represents net total after line discount and overall discount
40334
40367
  */
40335
40368
  discountedTotal: number;
40336
40369
  /**
40337
40370
  * Usddiscountedtotal
40338
- * @description Discount amount in secondary currency
40371
+ * @description This field represents discounted_total in secondary currency
40339
40372
  */
40340
- usdDiscountedTotal?: string | null;
40373
+ usdDiscountedTotal: number;
40341
40374
  /**
40342
40375
  * Companydiscountedtotal
40343
- * @description This field represents net subtotal in company currency
40376
+ * @description This field represents discounted_total in company currency
40344
40377
  */
40345
40378
  companyDiscountedTotal: number;
40346
40379
  /** Taxamount */
@@ -40375,6 +40408,11 @@ export interface components {
40375
40408
  * @description Discount amount (header-level discount only)
40376
40409
  */
40377
40410
  discountAmount?: string | null;
40411
+ /**
40412
+ * Usddiscountamount
40413
+ * @description Discount amount in secondary currency
40414
+ */
40415
+ usdDiscountAmount?: string | null;
40378
40416
  /**
40379
40417
  * Companydiscountamount
40380
40418
  * @description Discount amount in company currency
@@ -40438,19 +40476,34 @@ export interface components {
40438
40476
  * @description This field represents gross subtotal in company currency
40439
40477
  */
40440
40478
  companySubtotal: number;
40479
+ /**
40480
+ * Netsubtotal
40481
+ * @description This field is a number representing net subtotal (subtotal - line discount)
40482
+ */
40483
+ netSubtotal: number;
40484
+ /**
40485
+ * Usdnetsubtotal
40486
+ * @description This field is a number representing net subtotal in secondary currency
40487
+ */
40488
+ usdNetSubtotal: number;
40489
+ /**
40490
+ * Companynetsubtotal
40491
+ * @description This field is a number representing net subtotal in company currency
40492
+ */
40493
+ companyNetSubtotal: number;
40441
40494
  /**
40442
40495
  * Discountedtotal
40443
- * @description This field represents net subtotal
40496
+ * @description This field represents net total after line discount and overall discount
40444
40497
  */
40445
40498
  discountedTotal: number;
40446
40499
  /**
40447
40500
  * Usddiscountedtotal
40448
- * @description This field represents net subtotal in secondary currency
40501
+ * @description This field represents net total after line discount and overall discount in secondary currency
40449
40502
  */
40450
40503
  usdDiscountedTotal: number;
40451
40504
  /**
40452
40505
  * Companydiscountedtotal
40453
- * @description This field represents net subtotal in company currency
40506
+ * @description This field represents net total after line discount and overall discount in company currency
40454
40507
  */
40455
40508
  companyDiscountedTotal: number;
40456
40509
  /** Taxamount */
@@ -40638,21 +40691,39 @@ export interface components {
40638
40691
  * @default 0
40639
40692
  */
40640
40693
  companySubtotal: number;
40694
+ /**
40695
+ * Netsubtotal
40696
+ * @description This field is a number representing net subtotal (subtotal - line discount)
40697
+ * @default 0
40698
+ */
40699
+ netSubtotal: string;
40700
+ /**
40701
+ * Usdnetsubtotal
40702
+ * @description This field is a number representing net subtotal in secondary currency
40703
+ * @default 0
40704
+ */
40705
+ usdNetSubtotal: string;
40706
+ /**
40707
+ * Companynetsubtotal
40708
+ * @description This field is a number representing net subtotal in company currency
40709
+ * @default 0
40710
+ */
40711
+ companyNetSubtotal: string;
40641
40712
  /**
40642
40713
  * Discountedtotal
40643
- * @description This field represents net subtotal after discount
40714
+ * @description This field represents net total after line discount and overall discount
40644
40715
  * @default 0
40645
40716
  */
40646
40717
  discountedTotal: string;
40647
40718
  /**
40648
40719
  * Usddiscountedtotal
40649
- * @description This field represents net subtotal after discount in secondary currency
40720
+ * @description This field represents net total after line discount and overall discount in secondary currency
40650
40721
  * @default 0
40651
40722
  */
40652
40723
  usdDiscountedTotal: string;
40653
40724
  /**
40654
40725
  * Companydiscountedtotal
40655
- * @description This field represents net subtotal after discount in company currency
40726
+ * @description This field represents net total after line discount and overall discount in company currency
40656
40727
  * @default 0
40657
40728
  */
40658
40729
  companyDiscountedTotal: string;
@@ -40753,6 +40824,21 @@ export interface components {
40753
40824
  * @description This field represents gross subtotal in company currency
40754
40825
  */
40755
40826
  companySubtotal: number;
40827
+ /**
40828
+ * Netsubtotal
40829
+ * @description This field is a number representing net subtotal (subtotal - line discount)
40830
+ */
40831
+ netSubtotal: number;
40832
+ /**
40833
+ * Usdnetsubtotal
40834
+ * @description This field is a number representing net subtotal in secondary currency
40835
+ */
40836
+ usdNetSubtotal: number;
40837
+ /**
40838
+ * Companynetsubtotal
40839
+ * @description This field is a number representing net subtotal in company currency
40840
+ */
40841
+ companyNetSubtotal: number;
40756
40842
  /**
40757
40843
  * Discount
40758
40844
  * @description This field represents overall discount in %
@@ -40760,17 +40846,17 @@ export interface components {
40760
40846
  discount: number;
40761
40847
  /**
40762
40848
  * Discountedtotal
40763
- * @description This field represents net subtotal after discount
40849
+ * @description This field represents net total after line discount and overall discount
40764
40850
  */
40765
40851
  discountedTotal: number;
40766
40852
  /**
40767
40853
  * Usddiscountedtotal
40768
- * @description This field represents net subtotal in secondary currency
40854
+ * @description This field represents net total after line discount and overall discount in secondary currency
40769
40855
  */
40770
40856
  usdDiscountedTotal: number;
40771
40857
  /**
40772
40858
  * Companydiscountedtotal
40773
- * @description This field represents net subtotal in company currency
40859
+ * @description This field represents net total after line discount and overall discount in company currency
40774
40860
  */
40775
40861
  companyDiscountedTotal: number;
40776
40862
  /** Taxamount */
@@ -41294,7 +41380,7 @@ export interface components {
41294
41380
  discountedTotal: number;
41295
41381
  /**
41296
41382
  * Usddiscountedtotal
41297
- * @description This field represents net subtotal in secondary currency
41383
+ * @description This field represents discounted_total in secondary currency
41298
41384
  */
41299
41385
  usdDiscountedTotal: number;
41300
41386
  /**
@@ -41607,7 +41693,7 @@ export interface components {
41607
41693
  discountedTotal: number;
41608
41694
  /**
41609
41695
  * Usddiscountedtotal
41610
- * @description This field represents net subtotal in secondary currency
41696
+ * @description This field represents discounted_total in secondary currency
41611
41697
  */
41612
41698
  usdDiscountedTotal: number;
41613
41699
  /**
@@ -41817,19 +41903,34 @@ export interface components {
41817
41903
  * @description This field represents overall discount in %
41818
41904
  */
41819
41905
  discount: number;
41906
+ /**
41907
+ * Netsubtotal
41908
+ * @description This field is a number representing net subtotal (subtotal - line discount)
41909
+ */
41910
+ netSubtotal: number;
41911
+ /**
41912
+ * Usdnetsubtotal
41913
+ * @description This field is a number representing net subtotal in secondary currency
41914
+ */
41915
+ usdNetSubtotal: number;
41916
+ /**
41917
+ * Companynetsubtotal
41918
+ * @description This field is a number representing net subtotal in company currency
41919
+ */
41920
+ companyNetSubtotal: number;
41820
41921
  /**
41821
41922
  * Discountedtotal
41822
- * @description This field represents net subtotal after discount
41923
+ * @description This field represents net total after line discount and overall discount
41823
41924
  */
41824
41925
  discountedTotal: number;
41825
41926
  /**
41826
41927
  * Usddiscountedtotal
41827
- * @description This field represents net subtotal in secondary currency
41928
+ * @description This field represents net total after line discount and overall discount in secondary currency
41828
41929
  */
41829
41930
  usdDiscountedTotal: number;
41830
41931
  /**
41831
41932
  * Companydiscountedtotal
41832
- * @description This field represents net subtotal in company currency
41933
+ * @description This field represents net total after line discount and overall discount in company currency
41833
41934
  */
41834
41935
  companyDiscountedTotal: number;
41835
41936
  /** Taxamount */
@@ -41961,12 +42062,12 @@ export interface components {
41961
42062
  discountedTotal: number;
41962
42063
  /**
41963
42064
  * Usddiscountedtotal
41964
- * @description This field represents net subtotal in secondary currency
42065
+ * @description This field represents discounted_total in secondary currency
41965
42066
  */
41966
42067
  usdDiscountedTotal: number;
41967
42068
  /**
41968
42069
  * Companydiscountedtotal
41969
- * @description This field represents net subtotal in company currency
42070
+ * @description This field represents discounted_total in company currency
41970
42071
  */
41971
42072
  companyDiscountedTotal: number;
41972
42073
  /** Taxamount */
@@ -42111,19 +42212,34 @@ export interface components {
42111
42212
  * @description This field represents overall discount in %
42112
42213
  */
42113
42214
  discount: number;
42215
+ /**
42216
+ * Netsubtotal
42217
+ * @description This field is a number representing net subtotal (subtotal - line discount)
42218
+ */
42219
+ netSubtotal: number;
42220
+ /**
42221
+ * Usdnetsubtotal
42222
+ * @description This field is a number representing net subtotal in secondary currency
42223
+ */
42224
+ usdNetSubtotal: number;
42225
+ /**
42226
+ * Companynetsubtotal
42227
+ * @description This field is a number representing net subtotal in company currency
42228
+ */
42229
+ companyNetSubtotal: number;
42114
42230
  /**
42115
42231
  * Discountedtotal
42116
- * @description This field represents net subtotal after discount
42232
+ * @description This field represents net total after line discount and overall discount
42117
42233
  */
42118
42234
  discountedTotal: number;
42119
42235
  /**
42120
42236
  * Usddiscountedtotal
42121
- * @description This field represents net subtotal in secondary currency
42237
+ * @description This field represents net total after line discount and overall discount in secondary currency
42122
42238
  */
42123
42239
  usdDiscountedTotal: number;
42124
42240
  /**
42125
42241
  * Companydiscountedtotal
42126
- * @description This field represents net subtotal in company currency
42242
+ * @description This field represents net total after line discount and overall discount in company currency
42127
42243
  */
42128
42244
  companyDiscountedTotal: number;
42129
42245
  /** Taxamount */
@@ -43276,12 +43392,12 @@ export interface components {
43276
43392
  discountedTotal: number;
43277
43393
  /**
43278
43394
  * Usddiscountedtotal
43279
- * @description This field represents net subtotal in secondary currency
43395
+ * @description This field represents discounted_total in secondary currency
43280
43396
  */
43281
43397
  usdDiscountedTotal: number;
43282
43398
  /**
43283
43399
  * Companydiscountedtotal
43284
- * @description This field represents net subtotal in company currency
43400
+ * @description This field represents discounted_total in company currency
43285
43401
  */
43286
43402
  companyDiscountedTotal: number;
43287
43403
  /** Taxamount */
@@ -43529,12 +43645,12 @@ export interface components {
43529
43645
  discountedTotal: number;
43530
43646
  /**
43531
43647
  * Usddiscountedtotal
43532
- * @description This field represents net subtotal in secondary currency
43648
+ * @description This field represents discounted_total in secondary currency
43533
43649
  */
43534
43650
  usdDiscountedTotal: number;
43535
43651
  /**
43536
43652
  * Companydiscountedtotal
43537
- * @description This field represents net subtotal in company currency
43653
+ * @description This field represents discounted_total in company currency
43538
43654
  */
43539
43655
  companyDiscountedTotal: number;
43540
43656
  /** Taxamount */
@@ -43638,12 +43754,12 @@ export interface components {
43638
43754
  discountedTotal: number;
43639
43755
  /**
43640
43756
  * Usddiscountedtotal
43641
- * @description This field represents net subtotal in secondary currency
43757
+ * @description This field represents discounted_total in secondary currency
43642
43758
  */
43643
43759
  usdDiscountedTotal: number;
43644
43760
  /**
43645
43761
  * Companydiscountedtotal
43646
- * @description This field represents net subtotal in company currency
43762
+ * @description This field represents discounted_total in company currency
43647
43763
  */
43648
43764
  companyDiscountedTotal: number;
43649
43765
  /** Taxamount */
@@ -47235,19 +47351,34 @@ export interface components {
47235
47351
  * @description This field represents gross subtotal in company currency
47236
47352
  */
47237
47353
  companySubtotal: string;
47354
+ /**
47355
+ * Netsubtotal
47356
+ * @description This field is a number representing net subtotal (subtotal - line discount)
47357
+ */
47358
+ netSubtotal: string;
47359
+ /**
47360
+ * Secondarynetsubtotal
47361
+ * @description This field is a number representing net subtotal in secondary currency
47362
+ */
47363
+ secondaryNetSubtotal: string;
47364
+ /**
47365
+ * Companynetsubtotal
47366
+ * @description This field is a number representing net subtotal in company currency
47367
+ */
47368
+ companyNetSubtotal: string;
47238
47369
  /**
47239
47370
  * Discountedtotal
47240
- * @description This field represents net subtotal
47371
+ * @description This field represents net total after line discount and overall discount
47241
47372
  */
47242
47373
  discountedTotal: string;
47243
47374
  /**
47244
47375
  * Usddiscountedtotal
47245
- * @description This field represents net subtotal in secondary currency
47376
+ * @description This field represents net total after line discount and overall discount in secondary currency
47246
47377
  */
47247
47378
  usdDiscountedTotal: string;
47248
47379
  /**
47249
47380
  * Companydiscountedtotal
47250
- * @description This field represents net subtotal in company currency
47381
+ * @description This field represents net total after line discount and overall discount in company currency
47251
47382
  */
47252
47383
  companyDiscountedTotal: string;
47253
47384
  /**
@@ -47639,6 +47770,21 @@ export interface components {
47639
47770
  * @description This field is a number representing gross subtotal in company currency
47640
47771
  */
47641
47772
  companySubtotal: string;
47773
+ /**
47774
+ * Netsubtotal
47775
+ * @description This field is a number representing net subtotal (subtotal - line discount)
47776
+ */
47777
+ netSubtotal: string;
47778
+ /**
47779
+ * Secondarynetsubtotal
47780
+ * @description This field is a number representing net subtotal in secondary currency
47781
+ */
47782
+ secondaryNetSubtotal: string;
47783
+ /**
47784
+ * Companynetsubtotal
47785
+ * @description This field is a number representing net subtotal in company currency
47786
+ */
47787
+ companyNetSubtotal: string;
47642
47788
  /**
47643
47789
  * Discount
47644
47790
  * @description This field represents overall discount in %
@@ -47647,17 +47793,17 @@ export interface components {
47647
47793
  discount: number;
47648
47794
  /**
47649
47795
  * Discountedtotal
47650
- * @description This field is a number representing net subtotal after discount
47796
+ * @description This field is a number representing net total after line discount and overall discount
47651
47797
  */
47652
47798
  discountedTotal: string;
47653
47799
  /**
47654
47800
  * Secondarydiscountedtotal
47655
- * @description This field is a number representing net subtotal in secondary currency
47801
+ * @description This field is a number representing discounted total in secondary currency
47656
47802
  */
47657
47803
  secondaryDiscountedTotal: string;
47658
47804
  /**
47659
47805
  * Companydiscountedtotal
47660
- * @description This field is a number representing net subtotal in company currency
47806
+ * @description This field is a number representing discounted total in company currency
47661
47807
  */
47662
47808
  companyDiscountedTotal: string;
47663
47809
  /**
@@ -48075,6 +48221,21 @@ export interface components {
48075
48221
  * @description This field is a number representing gross subtotal in company currency
48076
48222
  */
48077
48223
  companySubtotal: string;
48224
+ /**
48225
+ * Netsubtotal
48226
+ * @description This field is a number representing net subtotal (subtotal - line discount)
48227
+ */
48228
+ netSubtotal: string;
48229
+ /**
48230
+ * Secondarynetsubtotal
48231
+ * @description This field is a number representing net subtotal in secondary currency
48232
+ */
48233
+ secondaryNetSubtotal: string;
48234
+ /**
48235
+ * Companynetsubtotal
48236
+ * @description This field is a number representing net subtotal in company currency
48237
+ */
48238
+ companyNetSubtotal: string;
48078
48239
  /**
48079
48240
  * Discount
48080
48241
  * @description This field represents overall discount in %
@@ -48083,17 +48244,17 @@ export interface components {
48083
48244
  discount: number;
48084
48245
  /**
48085
48246
  * Discountedtotal
48086
- * @description This field is a number representing net subtotal after discount
48247
+ * @description This field is a number representing net total after line discount and overall discount
48087
48248
  */
48088
48249
  discountedTotal: string;
48089
48250
  /**
48090
48251
  * Secondarydiscountedtotal
48091
- * @description This field is a number representing net subtotal in secondary currency
48252
+ * @description This field is a number representing discounted total in secondary currency
48092
48253
  */
48093
48254
  secondaryDiscountedTotal: string;
48094
48255
  /**
48095
48256
  * Companydiscountedtotal
48096
- * @description This field is a number representing net subtotal in company currency
48257
+ * @description This field is a number representing discounted total in company currency
48097
48258
  */
48098
48259
  companyDiscountedTotal: string;
48099
48260
  /**
@@ -49916,6 +50077,21 @@ export interface components {
49916
50077
  * @description This field is a number representing gross subtotal in the company's currency.
49917
50078
  */
49918
50079
  companySubtotal: string;
50080
+ /**
50081
+ * Netsubtotal
50082
+ * @description This field is a number representing net subtotal (subtotal - line discount)
50083
+ */
50084
+ netSubtotal: string;
50085
+ /**
50086
+ * Usdnetsubtotal
50087
+ * @description This field is a number representing net subtotal in secondary currency
50088
+ */
50089
+ usdNetSubtotal: string;
50090
+ /**
50091
+ * Companynetsubtotal
50092
+ * @description This field is a number representing net subtotal in company currency
50093
+ */
50094
+ companyNetSubtotal: string;
49919
50095
  /**
49920
50096
  * Discount
49921
50097
  * @description This field represents overall discount in %.
@@ -49924,17 +50100,17 @@ export interface components {
49924
50100
  discount: number;
49925
50101
  /**
49926
50102
  * Discountedtotal
49927
- * @description This field is a number representing net subtotal after discount.
50103
+ * @description This field is a number representing net total after line discount and overall discount.
49928
50104
  */
49929
50105
  discountedTotal: string;
49930
50106
  /**
49931
50107
  * Usddiscountedtotal
49932
- * @description This field is a number representing net subtotal in secondary currency.
50108
+ * @description This field is a number representing discounted total in secondary currency.
49933
50109
  */
49934
50110
  usdDiscountedTotal: string;
49935
50111
  /**
49936
50112
  * Companydiscountedtotal
49937
- * @description This field is a number representing net subtotal in the company's currency.
50113
+ * @description This field is a number representing discounted total in the company's currency.
49938
50114
  */
49939
50115
  companyDiscountedTotal: string;
49940
50116
  /**
@@ -50405,6 +50581,21 @@ export interface components {
50405
50581
  * @description This field is a number representing gross subtotal in the company's currency.
50406
50582
  */
50407
50583
  companySubtotal: string;
50584
+ /**
50585
+ * Netsubtotal
50586
+ * @description This field is a number representing net subtotal (subtotal - line discount)
50587
+ */
50588
+ netSubtotal: string;
50589
+ /**
50590
+ * Usdnetsubtotal
50591
+ * @description This field is a number representing net subtotal in secondary currency
50592
+ */
50593
+ usdNetSubtotal: string;
50594
+ /**
50595
+ * Companynetsubtotal
50596
+ * @description This field is a number representing net subtotal in company currency
50597
+ */
50598
+ companyNetSubtotal: string;
50408
50599
  /**
50409
50600
  * Discount
50410
50601
  * @description This field represents overall discount in %.
@@ -50413,17 +50604,17 @@ export interface components {
50413
50604
  discount: number;
50414
50605
  /**
50415
50606
  * Discountedtotal
50416
- * @description This field is a number representing net subtotal after discount.
50607
+ * @description This field is a number representing net total after line discount and overall discount.
50417
50608
  */
50418
50609
  discountedTotal: string;
50419
50610
  /**
50420
50611
  * Usddiscountedtotal
50421
- * @description This field is a number representing net subtotal in secondary currency.
50612
+ * @description This field is a number representing discounted total in secondary currency.
50422
50613
  */
50423
50614
  usdDiscountedTotal: string;
50424
50615
  /**
50425
50616
  * Companydiscountedtotal
50426
- * @description This field is a number representing net subtotal in the company's currency.
50617
+ * @description This field is a number representing discounted total in the company's currency.
50427
50618
  */
50428
50619
  companyDiscountedTotal: string;
50429
50620
  /**
@@ -50615,6 +50806,21 @@ export interface components {
50615
50806
  * @description This field is a number representing gross subtotal in the company's currency.
50616
50807
  */
50617
50808
  companySubtotal: string;
50809
+ /**
50810
+ * Netsubtotal
50811
+ * @description This field is a number representing net subtotal (subtotal - line discount)
50812
+ */
50813
+ netSubtotal: string;
50814
+ /**
50815
+ * Usdnetsubtotal
50816
+ * @description This field is a number representing net subtotal in secondary currency
50817
+ */
50818
+ usdNetSubtotal: string;
50819
+ /**
50820
+ * Companynetsubtotal
50821
+ * @description This field is a number representing net subtotal in company currency
50822
+ */
50823
+ companyNetSubtotal: string;
50618
50824
  /**
50619
50825
  * Discount
50620
50826
  * @description This field represents overall discount in %.
@@ -50623,17 +50829,17 @@ export interface components {
50623
50829
  discount: number;
50624
50830
  /**
50625
50831
  * Discountedtotal
50626
- * @description This field is a number representing net subtotal after discount.
50832
+ * @description This field is a number representing net total after line discount and overall discount.
50627
50833
  */
50628
50834
  discountedTotal: string;
50629
50835
  /**
50630
50836
  * Usddiscountedtotal
50631
- * @description This field is a number representing net subtotal in secondary currency.
50837
+ * @description This field is a number representing discounted total in secondary currency.
50632
50838
  */
50633
50839
  usdDiscountedTotal: string;
50634
50840
  /**
50635
50841
  * Companydiscountedtotal
50636
- * @description This field is a number representing net subtotal in the company's currency.
50842
+ * @description This field is a number representing discounted total in the company's currency.
50637
50843
  */
50638
50844
  companyDiscountedTotal: string;
50639
50845
  /**
@@ -51883,6 +52089,21 @@ export interface components {
51883
52089
  * @description This field is a number representing gross subtotal in the company's currency.
51884
52090
  */
51885
52091
  companySubtotal: string;
52092
+ /**
52093
+ * Netsubtotal
52094
+ * @description This field is a number representing net subtotal (subtotal - line discount)
52095
+ */
52096
+ netSubtotal: string;
52097
+ /**
52098
+ * Secondarynetsubtotal
52099
+ * @description This field is a number representing net subtotal in secondary currency
52100
+ */
52101
+ secondaryNetSubtotal: string;
52102
+ /**
52103
+ * Companynetsubtotal
52104
+ * @description This field is a number representing net subtotal in company currency
52105
+ */
52106
+ companyNetSubtotal: string;
51886
52107
  /**
51887
52108
  * Discount
51888
52109
  * @description This field represents overall discount in %.
@@ -51891,17 +52112,17 @@ export interface components {
51891
52112
  discount: number;
51892
52113
  /**
51893
52114
  * Discountedtotal
51894
- * @description This field is a number representing net subtotal after discount
52115
+ * @description This field is a number representing net total after line discount and overall discount
51895
52116
  */
51896
52117
  discountedTotal: string;
51897
52118
  /**
51898
52119
  * Secondarydiscountedtotal
51899
- * @description This field is a number representing net subtotal in secondary currency.
52120
+ * @description This field is a number representing discounted total in secondary currency.
51900
52121
  */
51901
52122
  secondaryDiscountedTotal: string;
51902
52123
  /**
51903
52124
  * Companydiscountedtotal
51904
- * @description This field is a number representing net subtotal in the company's currency.
52125
+ * @description This field is a number representing discounted total in the company's currency.
51905
52126
  */
51906
52127
  companyDiscountedTotal: string;
51907
52128
  /**
@@ -52437,6 +52658,21 @@ export interface components {
52437
52658
  * @description This field is a number representing gross subtotal in the company's currency.
52438
52659
  */
52439
52660
  companySubtotal: string;
52661
+ /**
52662
+ * Netsubtotal
52663
+ * @description This field is a number representing net subtotal (subtotal - line discount)
52664
+ */
52665
+ netSubtotal: string;
52666
+ /**
52667
+ * Secondarynetsubtotal
52668
+ * @description This field is a number representing net subtotal in secondary currency
52669
+ */
52670
+ secondaryNetSubtotal: string;
52671
+ /**
52672
+ * Companynetsubtotal
52673
+ * @description This field is a number representing net subtotal in company currency
52674
+ */
52675
+ companyNetSubtotal: string;
52440
52676
  /**
52441
52677
  * Discount
52442
52678
  * @description This field represents overall discount in %.
@@ -52445,17 +52681,17 @@ export interface components {
52445
52681
  discount: number;
52446
52682
  /**
52447
52683
  * Discountedtotal
52448
- * @description This field is a number representing net subtotal after discount
52684
+ * @description This field is a number representing net total after line discount and overall discount
52449
52685
  */
52450
52686
  discountedTotal: string;
52451
52687
  /**
52452
52688
  * Secondarydiscountedtotal
52453
- * @description This field is a number representing net subtotal in secondary currency.
52689
+ * @description This field is a number representing discounted total in secondary currency.
52454
52690
  */
52455
52691
  secondaryDiscountedTotal: string;
52456
52692
  /**
52457
52693
  * Companydiscountedtotal
52458
- * @description This field is a number representing net subtotal in the company's currency.
52694
+ * @description This field is a number representing discounted total in the company's currency.
52459
52695
  */
52460
52696
  companyDiscountedTotal: string;
52461
52697
  /**
@@ -52684,6 +52920,21 @@ export interface components {
52684
52920
  * @description This field is a number representing gross subtotal in the company's currency.
52685
52921
  */
52686
52922
  companySubtotal: string;
52923
+ /**
52924
+ * Netsubtotal
52925
+ * @description This field is a number representing net subtotal (subtotal - line discount)
52926
+ */
52927
+ netSubtotal: string;
52928
+ /**
52929
+ * Secondarynetsubtotal
52930
+ * @description This field is a number representing net subtotal in secondary currency
52931
+ */
52932
+ secondaryNetSubtotal: string;
52933
+ /**
52934
+ * Companynetsubtotal
52935
+ * @description This field is a number representing net subtotal in company currency
52936
+ */
52937
+ companyNetSubtotal: string;
52687
52938
  /**
52688
52939
  * Discount
52689
52940
  * @description This field represents overall discount in %.
@@ -52692,17 +52943,17 @@ export interface components {
52692
52943
  discount: number;
52693
52944
  /**
52694
52945
  * Discountedtotal
52695
- * @description This field is a number representing net subtotal after discount
52946
+ * @description This field is a number representing net total after line discount and overall discount
52696
52947
  */
52697
52948
  discountedTotal: string;
52698
52949
  /**
52699
52950
  * Secondarydiscountedtotal
52700
- * @description This field is a number representing net subtotal in secondary currency.
52951
+ * @description This field is a number representing discounted total in secondary currency.
52701
52952
  */
52702
52953
  secondaryDiscountedTotal: string;
52703
52954
  /**
52704
52955
  * Companydiscountedtotal
52705
- * @description This field is a number representing net subtotal in the company's currency.
52956
+ * @description This field is a number representing discounted total in the company's currency.
52706
52957
  */
52707
52958
  companyDiscountedTotal: string;
52708
52959
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1645",
3
+ "version": "1.0.1647",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],