@fileverse-dev/formulajs 4.4.11-mod-64-patch-2 → 4.4.11-mod-66

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/formulajs",
3
- "version": "4.4.11-mod-64-patch-2",
3
+ "version": "4.4.11-mod-66",
4
4
  "description": "JavaScript implementation of most Microsoft Excel formula functions",
5
5
  "author": "Formulajs",
6
6
  "publishConfig": {
@@ -56,8 +56,7 @@
56
56
  "test:browser": "mocha --recursive --reporter mochawesome",
57
57
  "test:coverage": "c8 mocha --recursive",
58
58
  "test:watch": "mocha --recursive --watch --parallel --reporter min",
59
- "types": "tsc",
60
- "test:crypto": "npx mocha 'test/crypto-functions/**/*.js' --recursive"
59
+ "types": "tsc"
61
60
  },
62
61
  "dependencies": {
63
62
  "bessel": "^1.0.2",
@@ -77,11 +76,10 @@
77
76
  "eslint": "^9.26.0",
78
77
  "globals": "^16.1.0",
79
78
  "jsdom": "^26.1.0",
80
- "mocha": "^11.7.1",
79
+ "mocha": "^11.2.2",
81
80
  "mochawesome": "^7.1.3",
82
81
  "prettier": "^3.5.3",
83
82
  "rollup": "^4.40.2",
84
- "sinon": "^21.0.0",
85
83
  "typescript": "^5.8.3"
86
84
  }
87
85
  }
@@ -627,17 +627,7 @@ export function CLEAN(text: any): any;
627
627
  * @returns
628
628
  */
629
629
  export function CODE(text: any): any;
630
- export function COINGECKO(...args: any[]): Promise<{
631
- message: string;
632
- functionName: any;
633
- type: any;
634
- reason?: undefined;
635
- } | {
636
- message: any;
637
- functionName: any;
638
- type: any;
639
- reason: any;
640
- } | {}[]>;
630
+ export function COINGECKO(category: any, param1: any, param2: any): Promise<string | {}[]>;
641
631
  /**
642
632
  * Returns the column number of a reference.
643
633
  *
@@ -1805,6 +1795,26 @@ export function GEOMEAN(...args: any[]): any;
1805
1795
  */
1806
1796
  export function GESTEP(number: any, step: any): any;
1807
1797
  export function GNOSIS(...args: any[]): Promise<any>;
1798
+ export function GNOSISPAY({ cardId, startDate, endDate, limit, offset }: {
1799
+ cardId: any;
1800
+ startDate: any;
1801
+ endDate: any;
1802
+ limit?: number;
1803
+ offset?: number;
1804
+ }): Promise<string | {
1805
+ createdAt: any;
1806
+ clearedAt: any;
1807
+ country: any;
1808
+ merchant: any;
1809
+ billingAmount: any;
1810
+ billingCurrency: any;
1811
+ transactionAmount: any;
1812
+ transactionCurrency: any;
1813
+ transactionType: any;
1814
+ kind: any;
1815
+ status: any;
1816
+ mcc: any;
1817
+ }[]>;
1808
1818
  /**
1809
1819
  * Returns values along an exponential trend.
1810
1820
  *
@@ -2627,6 +2637,7 @@ export function MINA(...args: any[]): any;
2627
2637
  * @returns
2628
2638
  */
2629
2639
  export function MINIFS(...args: any[]): any;
2640
+ declare function MINUS$1(...args: any[]): any;
2630
2641
  /**
2631
2642
  * Converts a serial number to a minute.
2632
2643
  *
@@ -4616,4 +4627,4 @@ declare function formatDate(date: any): string;
4616
4627
  declare function serialToDate(serial: any): Date;
4617
4628
  declare function useDate(): void;
4618
4629
  declare function useSerial(): void;
4619
- export {};
4630
+ export { MINUS$1 as MINUS };
@@ -627,17 +627,7 @@ export function CLEAN(text: any): any;
627
627
  * @returns
628
628
  */
629
629
  export function CODE(text: any): any;
630
- export function COINGECKO(...args: any[]): Promise<{
631
- message: string;
632
- functionName: any;
633
- type: any;
634
- reason?: undefined;
635
- } | {
636
- message: any;
637
- functionName: any;
638
- type: any;
639
- reason: any;
640
- } | {}[]>;
630
+ export function COINGECKO(category: any, param1: any, param2: any): Promise<string | {}[]>;
641
631
  /**
642
632
  * Returns the column number of a reference.
643
633
  *
@@ -1805,6 +1795,26 @@ export function GEOMEAN(...args: any[]): any;
1805
1795
  */
1806
1796
  export function GESTEP(number: any, step: any): any;
1807
1797
  export function GNOSIS(...args: any[]): Promise<any>;
1798
+ export function GNOSISPAY({ cardId, startDate, endDate, limit, offset }: {
1799
+ cardId: any;
1800
+ startDate: any;
1801
+ endDate: any;
1802
+ limit?: number;
1803
+ offset?: number;
1804
+ }): Promise<string | {
1805
+ createdAt: any;
1806
+ clearedAt: any;
1807
+ country: any;
1808
+ merchant: any;
1809
+ billingAmount: any;
1810
+ billingCurrency: any;
1811
+ transactionAmount: any;
1812
+ transactionCurrency: any;
1813
+ transactionType: any;
1814
+ kind: any;
1815
+ status: any;
1816
+ mcc: any;
1817
+ }[]>;
1808
1818
  /**
1809
1819
  * Returns values along an exponential trend.
1810
1820
  *
@@ -2627,6 +2637,7 @@ export function MINA(...args: any[]): any;
2627
2637
  * @returns
2628
2638
  */
2629
2639
  export function MINIFS(...args: any[]): any;
2640
+ declare function MINUS$1(...args: any[]): any;
2630
2641
  /**
2631
2642
  * Converts a serial number to a minute.
2632
2643
  *
@@ -4616,4 +4627,4 @@ declare function formatDate(date: any): string;
4616
4627
  declare function serialToDate(serial: any): Date;
4617
4628
  declare function useDate(): void;
4618
4629
  declare function useSerial(): void;
4619
- export {};
4630
+ export { MINUS$1 as MINUS };