@erp-galoper/types 1.0.1408 → 1.0.1409

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 +56 -56
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -28638,21 +28638,21 @@ export interface components {
28638
28638
  /** Isdoe */
28639
28639
  isDoe: boolean;
28640
28640
  /** Companyrate */
28641
- companyRate: string;
28641
+ companyRate: number | string;
28642
28642
  /** Usdrate */
28643
- usdRate: string;
28643
+ usdRate: number | string;
28644
28644
  /** Debitamount */
28645
- debitAmount: string;
28645
+ debitAmount: number | string;
28646
28646
  /** Creditamount */
28647
- creditAmount: string;
28647
+ creditAmount: number | string;
28648
28648
  /** Companydebit */
28649
- companyDebit: string;
28649
+ companyDebit: number | string;
28650
28650
  /** Companycredit */
28651
- companyCredit: string;
28651
+ companyCredit: number | string;
28652
28652
  /** Usddebit */
28653
- usdDebit: string;
28653
+ usdDebit: number | string;
28654
28654
  /** Usdcredit */
28655
- usdCredit: string;
28655
+ usdCredit: number | string;
28656
28656
  changedField: components["schemas"]["JournalVoucherFinanceFields"] | null;
28657
28657
  };
28658
28658
  /** JournalVoucherMovements */
@@ -28660,21 +28660,21 @@ export interface components {
28660
28660
  /** Currencyid */
28661
28661
  currencyId: number;
28662
28662
  /** Debitamount */
28663
- debitAmount: string;
28663
+ debitAmount: number | string;
28664
28664
  /** Creditamount */
28665
- creditAmount: string;
28665
+ creditAmount: number | string;
28666
28666
  /** Companydebit */
28667
- companyDebit: string;
28667
+ companyDebit: number | string;
28668
28668
  /** Companycredit */
28669
- companyCredit: string;
28669
+ companyCredit: number | string;
28670
28670
  /** Usddebit */
28671
- usdDebit: string;
28671
+ usdDebit: number | string;
28672
28672
  /** Usdcredit */
28673
- usdCredit: string;
28673
+ usdCredit: number | string;
28674
28674
  /** Companyrate */
28675
- companyRate: string;
28675
+ companyRate: number | string;
28676
28676
  /** Usdrate */
28677
- usdRate?: string;
28677
+ usdRate?: number | string;
28678
28678
  /** Isdoe */
28679
28679
  isDoe: boolean;
28680
28680
  changedField: components["schemas"]["JournalVoucherFinanceFields"] | null;
@@ -28748,13 +28748,13 @@ export interface components {
28748
28748
  description: string;
28749
28749
  project: components["schemas"]["ProjectSummaryInfo"] | null;
28750
28750
  /** Totalcompanydebit */
28751
- totalCompanyDebit: string;
28751
+ totalCompanyDebit: number;
28752
28752
  /** Totalcompanycredit */
28753
- totalCompanyCredit: string;
28753
+ totalCompanyCredit: number;
28754
28754
  /** Totalusddebit */
28755
- totalUsdDebit: string;
28755
+ totalUsdDebit: number;
28756
28756
  /** Totalusdcredit */
28757
- totalUsdCredit: string;
28757
+ totalUsdCredit: number;
28758
28758
  type: components["schemas"]["RetrieveJournalEntryType"];
28759
28759
  /** Candelete */
28760
28760
  canDelete: boolean;
@@ -28783,21 +28783,21 @@ export interface components {
28783
28783
  /** Isdoe */
28784
28784
  isDoe: boolean;
28785
28785
  /** Companyrate */
28786
- companyRate: string;
28786
+ companyRate: number;
28787
28787
  /** Usdrate */
28788
- usdRate: string;
28788
+ usdRate: number;
28789
28789
  /** Debitamount */
28790
- debitAmount: string;
28790
+ debitAmount: number;
28791
28791
  /** Creditamount */
28792
- creditAmount: string;
28792
+ creditAmount: number;
28793
28793
  /** Companydebit */
28794
- companyDebit: string;
28794
+ companyDebit: number;
28795
28795
  /** Companycredit */
28796
- companyCredit: string;
28796
+ companyCredit: number;
28797
28797
  /** Usddebit */
28798
- usdDebit: string;
28798
+ usdDebit: number;
28799
28799
  /** Usdcredit */
28800
- usdCredit: string;
28800
+ usdCredit: number;
28801
28801
  };
28802
28802
  /** CreateJournalVoucherItemsSchema */
28803
28803
  CreateJournalVoucherItemsSchema: {
@@ -28815,7 +28815,7 @@ export interface components {
28815
28815
  * - when doe is true:
28816
28816
  * - field is always disabled if account currency equals to company currency and one of [debitAmount, creditAmount, companyDebit, companyCredit] is not zero
28817
28817
  */
28818
- companyRate?: string;
28818
+ companyRate?: number | string;
28819
28819
  /**
28820
28820
  * Usdrate
28821
28821
  * @description - visible and required when use secondary currency is true in system settings
@@ -28824,35 +28824,35 @@ export interface components {
28824
28824
  * - when doe is true:
28825
28825
  * - field is always disabled if account currency equals to secondary currency and one of [debitAmount, creditAmount, usdDebit, usdCredit] is not zero
28826
28826
  */
28827
- usdRate?: string;
28827
+ usdRate?: number | string;
28828
28828
  /** Debitamount */
28829
- debitAmount: string;
28829
+ debitAmount: number | string;
28830
28830
  /** Creditamount */
28831
- creditAmount: string;
28831
+ creditAmount: number | string;
28832
28832
  /**
28833
28833
  * Companydebit
28834
28834
  * @description - visible when multicurrency on
28835
28835
  * - field is always disabled when account currency equals to company currency
28836
28836
  */
28837
- companyDebit: string;
28837
+ companyDebit: number | string;
28838
28838
  /**
28839
28839
  * Companycredit
28840
28840
  * @description - visible when multicurrency on
28841
28841
  * - field is always disabled when account currency equals to company currency
28842
28842
  */
28843
- companyCredit: string;
28843
+ companyCredit: number | string;
28844
28844
  /**
28845
28845
  * Usddebit
28846
28846
  * @description - visible when use secondary currency on in system settings
28847
28847
  * - field is always disabled when account currency equals to secondary currency
28848
28848
  */
28849
- usdDebit?: string;
28849
+ usdDebit?: number | string;
28850
28850
  /**
28851
28851
  * Usdcredit
28852
28852
  * @description - visible when use secondary currency on in system settings
28853
28853
  * - field is always disabled when account currency equals to secondary currency
28854
28854
  */
28855
- usdCredit?: string;
28855
+ usdCredit?: number | string;
28856
28856
  };
28857
28857
  /**
28858
28858
  * InternalStatusChoices
@@ -28934,13 +28934,13 @@ export interface components {
28934
28934
  description: string;
28935
28935
  project: components["schemas"]["ProjectSummaryInfo"] | null;
28936
28936
  /** Totalcompanydebit */
28937
- totalCompanyDebit: string;
28937
+ totalCompanyDebit: number;
28938
28938
  /** Totalcompanycredit */
28939
- totalCompanyCredit: string;
28939
+ totalCompanyCredit: number;
28940
28940
  /** Totalusddebit */
28941
- totalUsdDebit: string;
28941
+ totalUsdDebit: number;
28942
28942
  /** Totalusdcredit */
28943
- totalUsdCredit: string;
28943
+ totalUsdCredit: number;
28944
28944
  type: components["schemas"]["RetrieveJournalEntryType"];
28945
28945
  /** Candelete */
28946
28946
  canDelete: boolean;
@@ -28976,7 +28976,7 @@ export interface components {
28976
28976
  * - when doe is true:
28977
28977
  * - field is always disabled if account currency equals to company currency and one of [debitAmount, creditAmount, companyDebit, companyCredit] is not zero
28978
28978
  */
28979
- companyRate?: string;
28979
+ companyRate?: number | string;
28980
28980
  /**
28981
28981
  * Usdrate
28982
28982
  * @description - visible and required when use secondary currency is true in system settings
@@ -28985,35 +28985,35 @@ export interface components {
28985
28985
  * - when doe is true:
28986
28986
  * - field is always disabled if account currency equals to secondary currency and one of [debitAmount, creditAmount, usdDebit, usdCredit] is not zero
28987
28987
  */
28988
- usdRate?: string;
28988
+ usdRate?: number | string;
28989
28989
  /** Debitamount */
28990
- debitAmount: string;
28990
+ debitAmount: number | string;
28991
28991
  /** Creditamount */
28992
- creditAmount: string;
28992
+ creditAmount: number | string;
28993
28993
  /**
28994
28994
  * Companydebit
28995
28995
  * @description - visible when multicurrency on
28996
28996
  * - field is always disabled when account currency equals to company currency
28997
28997
  */
28998
- companyDebit: string;
28998
+ companyDebit: number | string;
28999
28999
  /**
29000
29000
  * Companycredit
29001
29001
  * @description - visible when multicurrency on
29002
29002
  * - field is always disabled when account currency equals to company currency
29003
29003
  */
29004
- companyCredit: string;
29004
+ companyCredit: number | string;
29005
29005
  /**
29006
29006
  * Usddebit
29007
29007
  * @description - visible when use secondary currency on in system settings
29008
29008
  * - field is always disabled when account currency equals to secondary currency
29009
29009
  */
29010
- usdDebit?: string;
29010
+ usdDebit?: number | string;
29011
29011
  /**
29012
29012
  * Usdcredit
29013
29013
  * @description - visible when use secondary currency on in system settings
29014
29014
  * - field is always disabled when account currency equals to secondary currency
29015
29015
  */
29016
- usdCredit?: string;
29016
+ usdCredit?: number | string;
29017
29017
  /** Index */
29018
29018
  index?: number;
29019
29019
  };
@@ -29063,7 +29063,7 @@ export interface components {
29063
29063
  * - when doe is true:
29064
29064
  * - field is always disabled if account currency equals to company currency and one of [debitAmount, creditAmount, companyDebit, companyCredit] is not zero
29065
29065
  */
29066
- companyRate?: string;
29066
+ companyRate?: number | string;
29067
29067
  /**
29068
29068
  * Usdrate
29069
29069
  * @description - visible and required when use secondary currency is true in system settings
@@ -29072,35 +29072,35 @@ export interface components {
29072
29072
  * - when doe is true:
29073
29073
  * - field is always disabled if account currency equals to secondary currency and one of [debitAmount, creditAmount, usdDebit, usdCredit] is not zero
29074
29074
  */
29075
- usdRate?: string;
29075
+ usdRate?: number | string;
29076
29076
  /** Debitamount */
29077
- debitAmount?: string;
29077
+ debitAmount?: number | string;
29078
29078
  /** Creditamount */
29079
- creditAmount?: string;
29079
+ creditAmount?: number | string;
29080
29080
  /**
29081
29081
  * Companydebit
29082
29082
  * @description - visible when multicurrency on
29083
29083
  * - field is always disabled when account currency equals to company currency
29084
29084
  */
29085
- companyDebit: string;
29085
+ companyDebit: number | string;
29086
29086
  /**
29087
29087
  * Companycredit
29088
29088
  * @description - visible when multicurrency on
29089
29089
  * - field is always disabled when account currency equals to company currency
29090
29090
  */
29091
- companyCredit: string;
29091
+ companyCredit: number | string;
29092
29092
  /**
29093
29093
  * Usddebit
29094
29094
  * @description - visible when use secondary currency on in system settings
29095
29095
  * - field is always disabled when account currency equals to secondary currency
29096
29096
  */
29097
- usdDebit?: string;
29097
+ usdDebit?: number | string;
29098
29098
  /**
29099
29099
  * Usdcredit
29100
29100
  * @description - visible when use secondary currency on in system settings
29101
29101
  * - field is always disabled when account currency equals to secondary currency
29102
29102
  */
29103
- usdCredit?: string;
29103
+ usdCredit?: number | string;
29104
29104
  /** Index */
29105
29105
  index: number;
29106
29106
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1408",
3
+ "version": "1.0.1409",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],