@sanity/client 7.11.2 → 7.12.0
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.browser.cjs +1 -0
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.d.cts +4 -0
- package/dist/index.browser.d.ts +4 -0
- package/dist/index.browser.js +1 -0
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cjs +11 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/dist/stega.browser.d.cts +4 -0
- package/dist/stega.browser.d.ts +4 -0
- package/dist/stega.d.cts +4 -0
- package/dist/stega.d.ts +4 -0
- package/package.json +1 -1
- package/src/defineCreateClient.ts +1 -0
- package/src/http/nodeMiddleware.ts +18 -1
- package/src/http/request.ts +5 -1
- package/src/types.ts +4 -0
- package/umd/sanityClient.js +1 -0
- package/umd/sanityClient.min.js +1 -1
package/dist/index.browser.d.cts
CHANGED
|
@@ -786,6 +786,10 @@ export declare interface ClientConfig {
|
|
|
786
786
|
* Options for how, if enabled, Content Source Maps are encoded into query results using steganography
|
|
787
787
|
*/
|
|
788
788
|
stega?: StegaConfig | boolean
|
|
789
|
+
/**
|
|
790
|
+
* Lineage token for recursion control
|
|
791
|
+
*/
|
|
792
|
+
lineage?: string
|
|
789
793
|
}
|
|
790
794
|
|
|
791
795
|
declare type ClientConfigResource =
|
package/dist/index.browser.d.ts
CHANGED
|
@@ -786,6 +786,10 @@ export declare interface ClientConfig {
|
|
|
786
786
|
* Options for how, if enabled, Content Source Maps are encoded into query results using steganography
|
|
787
787
|
*/
|
|
788
788
|
stega?: StegaConfig | boolean
|
|
789
|
+
/**
|
|
790
|
+
* Lineage token for recursion control
|
|
791
|
+
*/
|
|
792
|
+
lineage?: string
|
|
789
793
|
}
|
|
790
794
|
|
|
791
795
|
declare type ClientConfigResource =
|
package/dist/index.browser.js
CHANGED