@screeb/sdk-react 0.1.13 → 0.1.14
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/cjs/index.cjs +1 -1
- package/dist/cjs/types.d.ts +2 -0
- package/dist/es/index.mjs +1 -1
- package/dist/es/types.d.ts +2 -0
- package/docs/README.md +2 -0
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
package/dist/cjs/types.d.ts
CHANGED
|
@@ -381,6 +381,8 @@ export type ScreebContextValues = {
|
|
|
381
381
|
load: LoadFunction;
|
|
382
382
|
surveyClose: SurveyCloseFunction;
|
|
383
383
|
surveyStart: SurveyStartFunction;
|
|
384
|
+
messageClose: MessageCloseFunction;
|
|
385
|
+
messageStart: MessageStartFunction;
|
|
384
386
|
targetingCheck: TargetingCheckFunction;
|
|
385
387
|
targetingDebug: TargetingDebugFunction;
|
|
386
388
|
};
|
package/dist/es/index.mjs
CHANGED
package/dist/es/types.d.ts
CHANGED
|
@@ -381,6 +381,8 @@ export type ScreebContextValues = {
|
|
|
381
381
|
load: LoadFunction;
|
|
382
382
|
surveyClose: SurveyCloseFunction;
|
|
383
383
|
surveyStart: SurveyStartFunction;
|
|
384
|
+
messageClose: MessageCloseFunction;
|
|
385
|
+
messageStart: MessageStartFunction;
|
|
384
386
|
targetingCheck: TargetingCheckFunction;
|
|
385
387
|
targetingDebug: TargetingDebugFunction;
|
|
386
388
|
};
|
package/docs/README.md
CHANGED
|
@@ -524,6 +524,8 @@ Screeb context API
|
|
|
524
524
|
| `identityReset` | [`IdentityResetFunction`](README.md#identityresetfunction) |
|
|
525
525
|
| `init` | [`InitFunction`](README.md#initfunction) |
|
|
526
526
|
| `load` | [`LoadFunction`](README.md#loadfunction) |
|
|
527
|
+
| `messageClose` | [`MessageCloseFunction`](README.md#messageclosefunction) |
|
|
528
|
+
| `messageStart` | [`MessageStartFunction`](README.md#messagestartfunction) |
|
|
527
529
|
| `surveyClose` | [`SurveyCloseFunction`](README.md#surveyclosefunction) |
|
|
528
530
|
| `surveyStart` | [`SurveyStartFunction`](README.md#surveystartfunction) |
|
|
529
531
|
| `targetingCheck` | [`TargetingCheckFunction`](README.md#targetingcheckfunction) |
|