@aristid/leav-types 1.4.1-e7d4dc36 → 1.4.1-e8855e93
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.
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
import WebSocket from 'ws';
|
|
2
2
|
import { type Client as GraphqlWsClient } from 'graphql-ws';
|
|
3
|
+
import { type AxiosResponse } from 'axios';
|
|
3
4
|
import type FormData from 'form-data';
|
|
4
5
|
import { type ActionsListConfig } from '_types/actionsList';
|
|
5
6
|
import { type ITreeElement } from '_types/tree';
|
|
6
7
|
import { AttributeFormats, type AttributeTypes, type IAttributeVersionsConf, type IEmbeddedAttribute } from '../../../_types/attribute';
|
|
7
8
|
export declare function getGraphQLUrl(): Promise<string>;
|
|
8
|
-
export declare
|
|
9
|
+
export declare class E2EGraphQLError extends Error {
|
|
10
|
+
readonly response: AxiosResponse;
|
|
11
|
+
constructor(message: string, response: AxiosResponse);
|
|
12
|
+
}
|
|
13
|
+
export declare function makeGraphQlCall(query: string | FormData): Promise<any>;
|
|
9
14
|
export declare function gqlSaveLibrary(id: string, label: string, additionalAttributes?: string[]): Promise<any>;
|
|
10
15
|
export declare function gqlSaveApplication(id: string, label: string, endpoint: string): Promise<any>;
|
|
11
16
|
export declare function gqlSaveAttribute(params: {
|