@yuno-payments/dashboard-api-mfe 0.36.58 → 0.36.60-RC.10
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/build/cjs/index.js +6 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +30 -12
- package/build/cjs/types/lib/http-client/http-client.d.ts +7 -0
- package/build/cjs/types/mutations/accounts/accounts.mutation.d.ts +7 -7
- package/build/cjs/types/mutations/audit/audit-api.mutation.d.ts +5 -0
- package/build/cjs/types/mutations/audit/audit.mutation.d.ts +1 -1
- package/build/cjs/types/mutations/audit/index.d.ts +1 -0
- package/build/cjs/types/mutations/chartgpt/chartgpt.mutation.d.ts +3 -5
- package/build/cjs/types/mutations/checkouts/checkouts.mutation.d.ts +1 -1
- package/build/cjs/types/mutations/connections/connections.mutation.d.ts +4 -0
- package/build/cjs/types/mutations/index.d.ts +1 -0
- package/build/cjs/types/mutations/organization-settings/organization-settings.mutations.d.ts +2 -2
- package/build/cjs/types/mutations/payments/payments.mutation.d.ts +2 -2
- package/build/cjs/types/mutations/saml-config/saml-config.query.d.ts +3 -3
- package/build/cjs/types/mutations/settings/settings.mutation.d.ts +4 -4
- package/build/cjs/types/mutations/users/users.mutation.d.ts +6 -6
- package/build/cjs/types/queries/accounts/accounts.query.d.ts +6 -0
- package/build/cjs/types/queries/audit/audit.query.d.ts +6 -0
- package/build/cjs/types/queries/firebase/firebase.query.d.ts +1 -1
- package/build/cjs/types/queries/index.d.ts +1 -0
- package/build/cjs/types/queries/network-tokens/index.d.ts +1 -0
- package/build/cjs/types/queries/network-tokens/network-tokens.query.d.ts +5 -0
- package/build/cjs/types/queries/users/users.query.d.ts +1 -1
- package/build/cjs/types/types/audit/audit.d.ts +82 -0
- package/build/cjs/types/types/connection/connection.d.ts +18 -0
- package/build/cjs/types/types/user/user.d.ts +8 -0
- package/build/cjs/types/yuno-dashboard-api-mfe.d.ts +0 -1
- package/build/esm/index.js +7 -7
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +30 -12
- package/build/esm/types/lib/http-client/http-client.d.ts +7 -0
- package/build/esm/types/mutations/accounts/accounts.mutation.d.ts +7 -7
- package/build/esm/types/mutations/audit/audit-api.mutation.d.ts +5 -0
- package/build/esm/types/mutations/audit/audit.mutation.d.ts +1 -1
- package/build/esm/types/mutations/audit/index.d.ts +1 -0
- package/build/esm/types/mutations/chartgpt/chartgpt.mutation.d.ts +3 -5
- package/build/esm/types/mutations/checkouts/checkouts.mutation.d.ts +1 -1
- package/build/esm/types/mutations/connections/connections.mutation.d.ts +4 -0
- package/build/esm/types/mutations/index.d.ts +1 -0
- package/build/esm/types/mutations/organization-settings/organization-settings.mutations.d.ts +2 -2
- package/build/esm/types/mutations/payments/payments.mutation.d.ts +2 -2
- package/build/esm/types/mutations/saml-config/saml-config.query.d.ts +3 -3
- package/build/esm/types/mutations/settings/settings.mutation.d.ts +4 -4
- package/build/esm/types/mutations/users/users.mutation.d.ts +6 -6
- package/build/esm/types/queries/accounts/accounts.query.d.ts +6 -0
- package/build/esm/types/queries/audit/audit.query.d.ts +6 -0
- package/build/esm/types/queries/firebase/firebase.query.d.ts +1 -1
- package/build/esm/types/queries/index.d.ts +1 -0
- package/build/esm/types/queries/network-tokens/index.d.ts +1 -0
- package/build/esm/types/queries/network-tokens/network-tokens.query.d.ts +5 -0
- package/build/esm/types/queries/users/users.query.d.ts +1 -1
- package/build/esm/types/types/audit/audit.d.ts +82 -0
- package/build/esm/types/types/connection/connection.d.ts +18 -0
- package/build/esm/types/types/user/user.d.ts +8 -0
- package/build/esm/types/yuno-dashboard-api-mfe.d.ts +0 -1
- package/build/index.d.ts +190 -63
- package/package.json +24 -25
- package/build/cjs/types/websockets/index.d.ts +0 -1
- package/build/cjs/types/websockets/use-chart-assistant-socket.d.ts +0 -17
- package/build/esm/types/websockets/index.d.ts +0 -1
- package/build/esm/types/websockets/use-chart-assistant-socket.d.ts +0 -17
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export interface WebSocketMessage {
|
|
2
|
-
type: string;
|
|
3
|
-
chart_id?: string;
|
|
4
|
-
token?: string;
|
|
5
|
-
[key: string]: any;
|
|
6
|
-
}
|
|
7
|
-
export declare const useChartAssistantSocket: () => {
|
|
8
|
-
subscribe: (chart_id: string) => void;
|
|
9
|
-
unsubscribe: (chart_id: string) => void;
|
|
10
|
-
disconnect: () => void;
|
|
11
|
-
connect: () => void;
|
|
12
|
-
clearChartData: () => void;
|
|
13
|
-
isConnected: boolean;
|
|
14
|
-
chartData: any;
|
|
15
|
-
connectionError: string | null;
|
|
16
|
-
};
|
|
17
|
-
export default useChartAssistantSocket;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './use-chart-assistant-socket';
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export interface WebSocketMessage {
|
|
2
|
-
type: string;
|
|
3
|
-
chart_id?: string;
|
|
4
|
-
token?: string;
|
|
5
|
-
[key: string]: any;
|
|
6
|
-
}
|
|
7
|
-
export declare const useChartAssistantSocket: () => {
|
|
8
|
-
subscribe: (chart_id: string) => void;
|
|
9
|
-
unsubscribe: (chart_id: string) => void;
|
|
10
|
-
disconnect: () => void;
|
|
11
|
-
connect: () => void;
|
|
12
|
-
clearChartData: () => void;
|
|
13
|
-
isConnected: boolean;
|
|
14
|
-
chartData: any;
|
|
15
|
-
connectionError: string | null;
|
|
16
|
-
};
|
|
17
|
-
export default useChartAssistantSocket;
|