@axsdk/core 0.1.6 → 0.1.8
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/dist/apiclient.d.ts +2 -2
- package/dist/axapi.d.ts +1 -0
- package/dist/config.d.ts +1 -0
- package/dist/lib.cjs +9 -9
- package/dist/lib.cjs.map +10 -10
- package/dist/lib.js +9 -9
- package/dist/lib.js.map +10 -10
- package/dist/types/axsdk.d.ts +2 -0
- package/package.json +2 -2
package/dist/apiclient.d.ts
CHANGED
|
@@ -27,8 +27,8 @@ export interface ApiClientConfig {
|
|
|
27
27
|
errorInterceptors?: ErrorInterceptor[];
|
|
28
28
|
}
|
|
29
29
|
export declare class ApiClient {
|
|
30
|
-
private baseURL
|
|
31
|
-
private basePath
|
|
30
|
+
private baseURL?;
|
|
31
|
+
private basePath?;
|
|
32
32
|
private defaultHeaders;
|
|
33
33
|
private timeout;
|
|
34
34
|
private requestInterceptors;
|
package/dist/axapi.d.ts
CHANGED
|
@@ -5,5 +5,6 @@ export declare function health(): Promise<unknown>;
|
|
|
5
5
|
export declare function createSession(): Promise<unknown>;
|
|
6
6
|
export declare function getMessages(): Promise<unknown>;
|
|
7
7
|
export declare function postMessage(text: string, images: string[]): Promise<unknown>;
|
|
8
|
+
export declare function cancelSession(sessionID: string): Promise<unknown>;
|
|
8
9
|
export declare function getPendingCalls(): Promise<unknown>;
|
|
9
10
|
export declare function updateCall(callID: string, status: string, result: string): Promise<unknown>;
|
package/dist/config.d.ts
CHANGED