@ductape/sdk 0.1.114 → 0.1.115

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.
@@ -2,7 +2,7 @@ import { HttpMethods } from '../../types/enums';
2
2
  import { IProductFunction } from '../../types/productsBuilder.types';
3
3
  export declare const transformToJson: (template: string, payload: Record<string, any>) => any;
4
4
  export declare const replaceTemplateValues: (template: string, payload: Record<string, any>) => string;
5
- export declare function makeRequest(url: string, method: HttpMethods, body?: string): Promise<import("axios").AxiosResponse<any, any>>;
5
+ export declare function makeRequest(url: string, method: HttpMethods, body?: string): Promise<import("axios").AxiosResponse<any, any, {}, any>>;
6
6
  export declare const makeFunctionsRequest: (cloudFunction: IProductFunction, payload: Record<string, any>) => Promise<void>;
7
7
  export declare const startsWithFunctionAndEndsWithParen: (value: string) => string;
8
8
  export declare function extractFunctionAndArgs(value: string): {