@erp-galoper/types 1.0.295 → 1.0.296

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 +150 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26631,7 +26631,7 @@ export interface components {
26631
26631
  /**
26632
26632
  * Id
26633
26633
  * Format: uuid
26634
- * @example 07bd5e4e-3492-492f-97bc-c6b1722618a6
26634
+ * @example 2cf9a5c1-fb5f-43b5-8583-ca2f1197857a
26635
26635
  */
26636
26636
  id: string;
26637
26637
  /**
@@ -32250,6 +32250,12 @@ export interface components {
32250
32250
  usdSubtotal: number;
32251
32251
  /** Companysubtotal */
32252
32252
  companySubtotal: number;
32253
+ /** Discountedtotal */
32254
+ discountedTotal: number;
32255
+ /** Usddiscountedtotal */
32256
+ usdDiscountedTotal: number;
32257
+ /** Companydiscountedtotal */
32258
+ companyDiscountedTotal: number;
32253
32259
  /** Taxamount */
32254
32260
  taxAmount: number;
32255
32261
  /** Usdtaxamount */
@@ -32418,6 +32424,12 @@ export interface components {
32418
32424
  usdSubtotal: number;
32419
32425
  /** Companysubtotal */
32420
32426
  companySubtotal: number;
32427
+ /** Discountedtotal */
32428
+ discountedTotal: number;
32429
+ /** Usddiscountedtotal */
32430
+ usdDiscountedTotal: number;
32431
+ /** Companydiscountedtotal */
32432
+ companyDiscountedTotal: number;
32421
32433
  /** Taxamount */
32422
32434
  taxAmount: number;
32423
32435
  /** Usdtaxamount */
@@ -32446,6 +32458,14 @@ export interface components {
32446
32458
  ReturnPurchaseOrderItemTotalCalculated: {
32447
32459
  /** Total */
32448
32460
  total: number;
32461
+ /** Unitprice */
32462
+ unitPrice: number;
32463
+ /**
32464
+ * Discount
32465
+ * @description The discount percentage applied to the sales invoice.
32466
+ * @default 0
32467
+ */
32468
+ discount: number;
32449
32469
  };
32450
32470
  /** ReturnPurchaseOrderTotalCalculationResponse */
32451
32471
  ReturnPurchaseOrderTotalCalculationResponse: {
@@ -33757,6 +33777,12 @@ export interface components {
33757
33777
  usdSubtotal: number;
33758
33778
  /** Companysubtotal */
33759
33779
  companySubtotal: number;
33780
+ /** Discountedtotal */
33781
+ discountedTotal: number;
33782
+ /** Usddiscountedtotal */
33783
+ usdDiscountedTotal: number;
33784
+ /** Companydiscountedtotal */
33785
+ companyDiscountedTotal: number;
33760
33786
  /** Taxamount */
33761
33787
  taxAmount: number;
33762
33788
  /** Usdtaxamount */
@@ -33935,6 +33961,12 @@ export interface components {
33935
33961
  usdSubtotal: number;
33936
33962
  /** Companysubtotal */
33937
33963
  companySubtotal: number;
33964
+ /** Discountedtotal */
33965
+ discountedTotal: number;
33966
+ /** Usddiscountedtotal */
33967
+ usdDiscountedTotal: number;
33968
+ /** Companydiscountedtotal */
33969
+ companyDiscountedTotal: number;
33938
33970
  /** Taxamount */
33939
33971
  taxAmount: number;
33940
33972
  /** Usdtaxamount */
@@ -33963,6 +33995,14 @@ export interface components {
33963
33995
  ReturnPurchaseInvoiceItemTotalCalculated: {
33964
33996
  /** Total */
33965
33997
  total: number;
33998
+ /** Unitprice */
33999
+ unitPrice: number;
34000
+ /**
34001
+ * Discount
34002
+ * @description The discount percentage applied to the sales invoice.
34003
+ * @default 0
34004
+ */
34005
+ discount: number;
33966
34006
  };
33967
34007
  /** ReturnPurchaseInvoiceTotalCalculationResponse */
33968
34008
  ReturnPurchaseInvoiceTotalCalculationResponse: {
@@ -41138,6 +41178,11 @@ export interface components {
41138
41178
  * @default 0
41139
41179
  */
41140
41180
  discount: number;
41181
+ /**
41182
+ * Discountedtotal
41183
+ * @description This field is a number representing the total after discount
41184
+ */
41185
+ discountedTotal: string;
41141
41186
  /**
41142
41187
  * Secondarydiscountedtotal
41143
41188
  * @description This field is a number representing the total after discount in USD.
@@ -41539,7 +41584,11 @@ export interface components {
41539
41584
  itemPackage: components["schemas"]["ItemPackageSummarySchema"] | null;
41540
41585
  /** Unitpackage */
41541
41586
  unitPackage: number | null;
41542
- /** Discount */
41587
+ /**
41588
+ * Discount
41589
+ * @description The discount percentage applied to the sales invoice.
41590
+ * @default 0
41591
+ */
41543
41592
  discount: number;
41544
41593
  /**
41545
41594
  * Promotionsandoffers
@@ -41558,6 +41607,21 @@ export interface components {
41558
41607
  * @default 0
41559
41608
  */
41560
41609
  companySubtotal: string;
41610
+ /**
41611
+ * Discountedtotal
41612
+ * @description This field is a number representing the total after discount
41613
+ */
41614
+ discountedTotal: string;
41615
+ /**
41616
+ * Secondarydiscountedtotal
41617
+ * @description This field is a number representing the total after discount in USD.
41618
+ */
41619
+ secondaryDiscountedTotal: string;
41620
+ /**
41621
+ * Companydiscountedtotal
41622
+ * @description This field is a number representing the total after discount in the company's currency.
41623
+ */
41624
+ companyDiscountedTotal: string;
41561
41625
  /**
41562
41626
  * Taxes
41563
41627
  * @default []
@@ -41630,6 +41694,21 @@ export interface components {
41630
41694
  secondarySubtotal: string;
41631
41695
  /** Companysubtotal */
41632
41696
  companySubtotal: string;
41697
+ /**
41698
+ * Discountedtotal
41699
+ * @description This field is a number representing the total after discount
41700
+ */
41701
+ discountedTotal: string;
41702
+ /**
41703
+ * Secondarydiscountedtotal
41704
+ * @description This field is a number representing the total after discount in USD.
41705
+ */
41706
+ secondaryDiscountedTotal: string;
41707
+ /**
41708
+ * Companydiscountedtotal
41709
+ * @description This field is a number representing the total after discount in the company's currency.
41710
+ */
41711
+ companyDiscountedTotal: string;
41633
41712
  /** Taxamount */
41634
41713
  taxAmount: string;
41635
41714
  /** Secondarytaxamount */
@@ -41796,6 +41875,21 @@ export interface components {
41796
41875
  secondarySubtotal: string;
41797
41876
  /** Companysubtotal */
41798
41877
  companySubtotal: string;
41878
+ /**
41879
+ * Discountedtotal
41880
+ * @description This field is a number representing the total after discount
41881
+ */
41882
+ discountedTotal: string;
41883
+ /**
41884
+ * Secondarydiscountedtotal
41885
+ * @description This field is a number representing the total after discount in USD.
41886
+ */
41887
+ secondaryDiscountedTotal: string;
41888
+ /**
41889
+ * Companydiscountedtotal
41890
+ * @description This field is a number representing the total after discount in the company's currency.
41891
+ */
41892
+ companyDiscountedTotal: string;
41799
41893
  /** Taxamount */
41800
41894
  taxAmount: string;
41801
41895
  /** Secondarytaxamount */
@@ -41819,6 +41913,14 @@ export interface components {
41819
41913
  SalesReturnOrderItemTotalCalculated: {
41820
41914
  /** Total */
41821
41915
  total: string;
41916
+ /** Unitprice */
41917
+ unitPrice: string;
41918
+ /**
41919
+ * Discount
41920
+ * @description The discount percentage applied to the sales invoice.
41921
+ * @default 0
41922
+ */
41923
+ discount: number;
41822
41924
  };
41823
41925
  /** SalesReturnOrderTotalCalculationResponse */
41824
41926
  SalesReturnOrderTotalCalculationResponse: {
@@ -41911,7 +42013,11 @@ export interface components {
41911
42013
  itemPackage: components["schemas"]["ItemPackageSummarySchema"] | null;
41912
42014
  /** Unitpackage */
41913
42015
  unitPackage: number | null;
41914
- /** Discount */
42016
+ /**
42017
+ * Discount
42018
+ * @description The discount percentage applied to the sales invoice.
42019
+ * @default 0
42020
+ */
41915
42021
  discount: number;
41916
42022
  /**
41917
42023
  * Promotionsandoffers
@@ -41930,6 +42036,21 @@ export interface components {
41930
42036
  * @default 0
41931
42037
  */
41932
42038
  companySubtotal: string;
42039
+ /**
42040
+ * Discountedtotal
42041
+ * @description This field is a number representing the total after discount
42042
+ */
42043
+ discountedTotal: string;
42044
+ /**
42045
+ * Secondarydiscountedtotal
42046
+ * @description This field is a number representing the total after discount in USD.
42047
+ */
42048
+ secondaryDiscountedTotal: string;
42049
+ /**
42050
+ * Companydiscountedtotal
42051
+ * @description This field is a number representing the total after discount in the company's currency.
42052
+ */
42053
+ companyDiscountedTotal: string;
41933
42054
  /**
41934
42055
  * Taxes
41935
42056
  * @default []
@@ -42001,8 +42122,17 @@ export interface components {
42001
42122
  subtotal: string;
42002
42123
  /** Secondarysubtotal */
42003
42124
  secondarySubtotal: string;
42125
+ /**
42126
+ * Discountedtotal
42127
+ * @description This field is a number representing the total after discount
42128
+ */
42129
+ discountedTotal: string;
42004
42130
  /** Companysubtotal */
42005
42131
  companySubtotal: string;
42132
+ /** Secondarydiscountedtotal */
42133
+ secondaryDiscountedTotal: string;
42134
+ /** Companydiscountedtotal */
42135
+ companyDiscountedTotal: string;
42006
42136
  /** Taxamount */
42007
42137
  taxAmount: string;
42008
42138
  /** Secondarytaxamount */
@@ -42165,8 +42295,17 @@ export interface components {
42165
42295
  subtotal: string;
42166
42296
  /** Secondarysubtotal */
42167
42297
  secondarySubtotal: string;
42298
+ /**
42299
+ * Discountedtotal
42300
+ * @description This field is a number representing the total after discount
42301
+ */
42302
+ discountedTotal: string;
42168
42303
  /** Companysubtotal */
42169
42304
  companySubtotal: string;
42305
+ /** Secondarydiscountedtotal */
42306
+ secondaryDiscountedTotal: string;
42307
+ /** Companydiscountedtotal */
42308
+ companyDiscountedTotal: string;
42170
42309
  /** Taxamount */
42171
42310
  taxAmount: string;
42172
42311
  /** Secondarytaxamount */
@@ -42188,6 +42327,14 @@ export interface components {
42188
42327
  SalesReturnInvoiceItemTotalCalculated: {
42189
42328
  /** Total */
42190
42329
  total: string;
42330
+ /** Unitprice */
42331
+ unitPrice: string;
42332
+ /**
42333
+ * Discount
42334
+ * @description The discount percentage applied to the sales invoice.
42335
+ * @default 0
42336
+ */
42337
+ discount: number;
42191
42338
  };
42192
42339
  /** SalesReturnInvoiceTotalCalculationResponse */
42193
42340
  SalesReturnInvoiceTotalCalculationResponse: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.295",
3
+ "version": "1.0.296",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],