@sanity/sdk 2.1.1 → 2.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/sdk",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "private": false,
5
5
  "description": "Sanity SDK",
6
6
  "keywords": [
@@ -58,7 +58,7 @@ function createTokenRefreshStream(
58
58
  return new Observable((subscriber) => {
59
59
  const client = clientFactory({
60
60
  apiVersion: DEFAULT_API_VERSION,
61
- requestTagPrefix: 'sdk.token-refresh',
61
+ requestTagPrefix: 'token-refresh',
62
62
  useProjectHostname: false,
63
63
  useCdn: false,
64
64
  token,
@@ -1,6 +1,6 @@
1
1
  import {type ValidProjection} from './types'
2
2
 
3
- export const PROJECTION_TAG = 'sdk.projection'
3
+ export const PROJECTION_TAG = 'projection'
4
4
  export const PROJECTION_PERSPECTIVE = 'raw'
5
5
  export const PROJECTION_STATE_CLEAR_DELAY = 1000
6
6