app-v3-scripts-editor 1.11.4 → 1.11.5

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.
@@ -0,0 +1,5 @@
1
+ type EmailOutputContainerProps = {
2
+ id: string;
3
+ };
4
+ declare const EmailOutputContainer: React.FC<EmailOutputContainerProps>;
5
+ export default EmailOutputContainer;
@@ -0,0 +1,2 @@
1
+ declare const useUpstreamNodes: (nodeId?: string) => any[];
2
+ export default useUpstreamNodes;
@@ -0,0 +1,5 @@
1
+ import { AxiosError, AxiosResponse } from 'axios';
2
+ import { IOutput } from '../types';
3
+ export declare const getOutput = "output";
4
+ declare function useGetOutput(type: string, enabled?: boolean): import('@tanstack/react-query').UseQueryResult<AxiosResponse<IOutput, any>, AxiosError<unknown, any>>;
5
+ export default useGetOutput;
@@ -243,3 +243,7 @@ export interface IMailTemplate {
243
243
  file_content: any;
244
244
  params: any;
245
245
  }
246
+ export interface IOutput {
247
+ outputs: IProperty[];
248
+ unknown_types?: [];
249
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "app-v3-scripts-editor",
3
3
  "private": false,
4
- "version": "1.11.4",
4
+ "version": "1.11.5",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/ucall-asia/app-v3-scripts-editor.git"