@alwaysmeticulous/sdk-bundles-api 2.250.4 → 2.250.6
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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { InitialNavigationResponse } from "@alwaysmeticulous/api";
|
|
1
2
|
/**
|
|
2
3
|
* This API is exposed on the window under `window.Meticulous`.
|
|
3
4
|
*/
|
|
@@ -186,6 +187,14 @@ export interface MeticulousPublicRecordApi {
|
|
|
186
187
|
recordCustomEvent(type: string, serializedData: string): {
|
|
187
188
|
success: boolean;
|
|
188
189
|
};
|
|
190
|
+
/**
|
|
191
|
+
* Record the initial navigation for this session. This is used to bypass certain types
|
|
192
|
+
* of server-side rendering (SSR) when running Meticulous. It is unlikely you will need
|
|
193
|
+
* to call this method unless you have been directed to do so by Meticulous support.
|
|
194
|
+
*/
|
|
195
|
+
recordInitialNavigationResponse(response: InitialNavigationResponse): {
|
|
196
|
+
success: boolean;
|
|
197
|
+
};
|
|
189
198
|
/**
|
|
190
199
|
* Provides a link to view the session in the Meticulous UI. This link
|
|
191
200
|
* is of course only accessible by users with access to the Meticulous project.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/sdk-bundles-api",
|
|
3
|
-
"version": "2.250.
|
|
3
|
+
"version": "2.250.6",
|
|
4
4
|
"description": "Meticulous common types",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"depcheck": "depcheck --ignore-patterns=dist"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@alwaysmeticulous/api": "2.250.
|
|
22
|
+
"@alwaysmeticulous/api": "2.250.6"
|
|
23
23
|
},
|
|
24
24
|
"author": {
|
|
25
25
|
"name": "The Meticulous Team",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"bugs": {
|
|
39
39
|
"url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "7e686e4a5f40386a2c3d6327469204d6534b376b"
|
|
42
42
|
}
|