@secondstaxorg/sscomp 1.7.92 → 1.7.94

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": "@secondstaxorg/sscomp",
3
- "version": "1.7.92",
3
+ "version": "1.7.94",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -2,22 +2,17 @@ export interface ProvidersProps {
2
2
  /**
3
3
  * Array containing a list of providers to be listed in the table
4
4
  */
5
- providers: {
6
- providerId: string;
7
- name: string;
8
- email: string;
9
- phone: string;
10
- status: Status;
11
- }[];
5
+ providers: providersType[];
12
6
  /**
13
7
  * Callback function to receive the selected provider when clicked
14
8
  */
15
- callback: (a: {
16
- providerId: string;
17
- name: string;
18
- email: string;
19
- phone: string;
20
- status: Status;
21
- }) => void;
9
+ callback: (a: providersType) => void;
22
10
  }
23
11
  export declare type Status = "active" | "inactive";
12
+ export declare type providersType = {
13
+ providerId: string;
14
+ name: string;
15
+ email: string;
16
+ phone: string;
17
+ status: Status;
18
+ };