profinansy-ui-lib 4.1.24 → 4.1.26
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/api/quizFunnel/quizFunnel.enkod.api.d.ts +1 -1
- package/dist/api/quizFunnel/quizFunnel.enkod.const.d.ts +2 -2
- package/dist/api/quizFunnel/quizFunnel.enkod.typed.d.ts +1 -1
- package/dist/components/blocks/QuizFunnel/hooks/useQuizFunnelBanner.d.ts +0 -2
- package/dist/profinansy-ui-lib.cjs +623 -614
- package/dist/profinansy-ui-lib.cjs.map +1 -1
- package/dist/profinansy-ui-lib.es.js +6096 -6107
- package/dist/profinansy-ui-lib.es.js.map +1 -1
- package/package.json +3 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IApiSettings } from '../api';
|
|
2
2
|
import { IQuizEnkodSendPayload, IQuizEnkodSendResponse } from './quizFunnel.enkod.typed';
|
|
3
3
|
/**
|
|
4
|
-
* POST /
|
|
4
|
+
* POST {apiUrl}/auth/send/enkod — заголовок token (в т.ч. анонимный).
|
|
5
5
|
*/
|
|
6
6
|
export declare const sendQuizEnkodContact: (settings: IApiSettings, payload: IQuizEnkodSendPayload) => Promise<IQuizEnkodSendResponse>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/** POST /
|
|
2
|
-
export declare const QUIZ_FUNNEL_ENKOD_SEND_PATH = "/
|
|
1
|
+
/** POST {apiUrl}/auth/send/enkod — apiUrl уже содержит /api */
|
|
2
|
+
export declare const QUIZ_FUNNEL_ENKOD_SEND_PATH = "/auth/send/enkod";
|