sales-frontend-debug 0.0.47 → 0.0.49
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/index.cjs +198 -207
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +157 -167
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -50,5 +50,6 @@ declare function addErrorLog(error: AxiosError): Promise<unknown> | undefined;
|
|
|
50
50
|
|
|
51
51
|
declare function isDebugStepValidationOff(): boolean;
|
|
52
52
|
declare function isDebugMode(): boolean;
|
|
53
|
+
declare function getDebugFileConvertType(): string;
|
|
53
54
|
|
|
54
|
-
export { DebugTool, addErrorLog, addRequestLog, addResponseLog, isDebugMode, isDebugStepValidationOff };
|
|
55
|
+
export { DebugTool, addErrorLog, addRequestLog, addResponseLog, getDebugFileConvertType, isDebugMode, isDebugStepValidationOff };
|
package/dist/index.d.ts
CHANGED
|
@@ -50,5 +50,6 @@ declare function addErrorLog(error: AxiosError): Promise<unknown> | undefined;
|
|
|
50
50
|
|
|
51
51
|
declare function isDebugStepValidationOff(): boolean;
|
|
52
52
|
declare function isDebugMode(): boolean;
|
|
53
|
+
declare function getDebugFileConvertType(): string;
|
|
53
54
|
|
|
54
|
-
export { DebugTool, addErrorLog, addRequestLog, addResponseLog, isDebugMode, isDebugStepValidationOff };
|
|
55
|
+
export { DebugTool, addErrorLog, addRequestLog, addResponseLog, getDebugFileConvertType, isDebugMode, isDebugStepValidationOff };
|