@sanity/client 6.19.2 → 6.20.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/client",
3
- "version": "6.19.2",
3
+ "version": "6.20.0",
4
4
  "description": "Client for retrieving, creating and patching data from Sanity.io",
5
5
  "keywords": [
6
6
  "sanity",
@@ -124,7 +124,7 @@
124
124
  "devDependencies": {
125
125
  "@edge-runtime/types": "^2.2.9",
126
126
  "@edge-runtime/vm": "^3.2.0",
127
- "@rollup/plugin-commonjs": "^25.0.8",
127
+ "@rollup/plugin-commonjs": "^26.0.1",
128
128
  "@rollup/plugin-node-resolve": "^15.2.3",
129
129
  "@sanity/pkg-utils": "^6.9.3",
130
130
  "@types/json-diff": "^1.0.3",
@@ -145,7 +145,7 @@
145
145
  "nock": "^13.5.4",
146
146
  "prettier": "^3.3.1",
147
147
  "prettier-plugin-packagejson": "^2.5.0",
148
- "rimraf": "^5.0.1",
148
+ "rimraf": "^5.0.7",
149
149
  "rollup": "^4.18.0",
150
150
  "sse-channel": "^4.0.0",
151
151
  "terser": "^5.31.1",
package/src/data/live.ts CHANGED
@@ -4,8 +4,10 @@ import type {ObservableSanityClient, SanityClient} from '../SanityClient'
4
4
  import type {Any, LiveEventMessage, LiveEventRestart} from '../types'
5
5
  import {_getDataUrl} from './dataMethods'
6
6
 
7
+ const requiredApiVersion = '2021-03-26'
8
+
7
9
  /**
8
- * @alpha this API is experimental and may change or even be removed
10
+ * @public
9
11
  */
10
12
  export class LiveClient {
11
13
  #client: SanityClient | ObservableSanityClient
@@ -13,7 +15,18 @@ export class LiveClient {
13
15
  this.#client = client
14
16
  }
15
17
 
18
+ /**
19
+ * Requires `apiVersion` to be `2021-03-26` or later.
20
+ */
16
21
  events(): Observable<LiveEventMessage | LiveEventRestart> {
22
+ const apiVersion = this.#client.config().apiVersion.replace(/^v/, '')
23
+ if (apiVersion !== 'X' && apiVersion < requiredApiVersion) {
24
+ throw new Error(
25
+ `The live events API requires API version ${requiredApiVersion} or later. ` +
26
+ `The current API version is ${apiVersion}. ` +
27
+ `Please update your API version to use this feature.`,
28
+ )
29
+ }
17
30
  const path = _getDataUrl(this.#client, 'live/events')
18
31
  const url = new URL(this.#client.getUrl(path, false))
19
32
 
package/src/types.ts CHANGED
@@ -306,7 +306,6 @@ export interface RequestObservableOptions extends Omit<RequestOptions, 'url'> {
306
306
  returnQuery?: boolean
307
307
  resultSourceMap?: boolean | 'withKeyArraySelector'
308
308
  perspective?: ClientPerspective
309
- /** @alpha this API is experimental and may change or even be removed */
310
309
  lastLiveEventId?: string
311
310
  }
312
311
 
@@ -929,7 +928,6 @@ export interface ResponseQueryOptions extends RequestOptions {
929
928
  // The `cache` and `next` options are specific to the Next.js App Router integration
930
929
  cache?: 'next' extends keyof RequestInit ? RequestInit['cache'] : never
931
930
  next?: ('next' extends keyof RequestInit ? RequestInit : never)['next']
932
- /** @alpha this API is experimental and may change or even be removed */
933
931
  lastLiveEventId?: string | string[] | null
934
932
  }
935
933
 
@@ -973,7 +971,7 @@ export interface RawQueryResponse<R> {
973
971
  ms: number
974
972
  result: R
975
973
  resultSourceMap?: ContentSourceMap
976
- /** @alpha this API is experimental and may change or even be removed */
974
+ /** Requires `apiVersion` to be `2021-03-26` or later. */
977
975
  syncTags?: SyncTag[]
978
976
  }
979
977
 
@@ -1225,13 +1223,13 @@ export interface ContentSourceMap {
1225
1223
  paths: ContentSourceMapPaths
1226
1224
  }
1227
1225
 
1228
- /** @alpha this API is experimental and may change or even be removed */
1226
+ /** @public */
1229
1227
  export type SyncTag = `s1:${string}`
1230
- /** @alpha this API is experimental and may change or even be removed */
1228
+ /** @public */
1231
1229
  export interface LiveEventRestart {
1232
1230
  type: 'restart'
1233
1231
  }
1234
- /** @alpha this API is experimental and may change or even be removed */
1232
+ /** @public */
1235
1233
  export interface LiveEventMessage {
1236
1234
  type: 'message'
1237
1235
  id: string
@@ -2747,12 +2747,22 @@ ${selectionOpts}`);
2747
2747
  if (member.has(obj))
2748
2748
  throw TypeError("Cannot add the same private member more than once");
2749
2749
  member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
2750
- }, __privateSet$4 = (obj, member, value, setter) => (__accessCheck$4(obj, member, "write to private field"), member.set(obj, value), value), _client$3;
2750
+ }, __privateSet$4 = (obj, member, value, setter) => (__accessCheck$4(obj, member, "write to private field"), member.set(obj, value), value);
2751
+ const requiredApiVersion = "2021-03-26";
2752
+ var _client$3;
2751
2753
  class LiveClient {
2752
2754
  constructor(client) {
2753
2755
  __privateAdd$4(this, _client$3, void 0), __privateSet$4(this, _client$3, client);
2754
2756
  }
2757
+ /**
2758
+ * Requires `apiVersion` to be `2021-03-26` or later.
2759
+ */
2755
2760
  events() {
2761
+ const apiVersion = __privateGet$4(this, _client$3).config().apiVersion.replace(/^v/, "");
2762
+ if (apiVersion !== "X" && apiVersion < requiredApiVersion)
2763
+ throw new Error(
2764
+ `The live events API requires API version ${requiredApiVersion} or later. The current API version is ${apiVersion}. Please update your API version to use this feature.`
2765
+ );
2756
2766
  const path = _getDataUrl(__privateGet$4(this, _client$3), "live/events"), url = new URL(__privateGet$4(this, _client$3).getUrl(path, !1)), listenFor = ["restart", "message"];
2757
2767
  return new Observable((observer) => {
2758
2768
  let es, reconnectTimer, stopped = !1, unsubscribed = !1;
@@ -4,9 +4,9 @@
4
4
  *
5
5
  * Copyright (c) 2014-2017, Jon Schlinkert.
6
6
  * Released under the MIT License.
7
- */;function q(e){return"[object Object]"===Object.prototype.toString.call(e)}const N=["boolean","string","number"];function U(){return{processOptions:e=>{const t=e.body;return!t||"function"==typeof t.pipe||F(t)||-1===N.indexOf(typeof t)&&!Array.isArray(t)&&!function(e){if(!1===q(e))return!1;const t=e.constructor;if(void 0===t)return!0;const r=t.prototype;return!(!1===q(r)||!1===r.hasOwnProperty("isPrototypeOf"))}(t)?e:Object.assign({},e,{body:JSON.stringify(e.body),headers:Object.assign({},e.headers,{"Content-Type":"application/json"})})}}}function L(e){return{onResponse:e=>{const r=e.headers["content-type"]||"",n=-1!==r.indexOf("application/json");return e.body&&r&&n?Object.assign({},e,{body:t(e.body)}):e},processOptions:e=>Object.assign({},e,{headers:Object.assign({Accept:"application/json"},e.headers)})};function t(e){try{return JSON.parse(e)}catch(e){throw e.message=`Failed to parsed response body as JSON: ${e.message}`,e}}}let W={};typeof globalThis<"u"?W=globalThis:typeof window<"u"?W=window:typeof global<"u"?W=global:typeof self<"u"&&(W=self);var z=W;function H(e={}){const t=e.implementation||z.Observable;if(!t)throw new Error("`Observable` is not available in global scope, and no implementation was passed");return{onReturn:(e,r)=>new t((t=>(e.error.subscribe((e=>t.error(e))),e.progress.subscribe((e=>t.next(Object.assign({type:"progress"},e)))),e.response.subscribe((e=>{t.next(Object.assign({type:"response"},e)),t.complete()})),e.request.publish(r),()=>e.abort.publish())))}}var B=Object.defineProperty,J=(e,t,r)=>(((e,t,r)=>{t in e?B(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r})(e,"symbol"!=typeof t?t+"":t,r),r);class G{constructor(e){J(this,"__CANCEL__",!0),J(this,"message"),this.message=e}toString(){return"Cancel"+(this.message?`: ${this.message}`:"")}}const V=class{constructor(e){if(J(this,"promise"),J(this,"reason"),"function"!=typeof e)throw new TypeError("executor must be a function.");let t=null;this.promise=new Promise((e=>{t=e})),e((e=>{this.reason||(this.reason=new G(e),t(this.reason))}))}};J(V,"source",(()=>{let e;return{token:new V((t=>{e=t})),cancel:e}}));var Q=(e,t,r)=>("GET"===r.method||"HEAD"===r.method)&&(e.isNetworkError||!1);function Y(e){return 100*Math.pow(2,e)+100*Math.random()}const X=(e={})=>(e=>{const t=e.maxRetries||5,r=e.retryDelay||Y,n=e.shouldRetry;return{onError:(e,o)=>{const s=o.options,i=s.maxRetries||t,a=s.retryDelay||r,u=s.shouldRetry||n,c=s.attemptNumber||0;if(null!==(l=s.body)&&"object"==typeof l&&"function"==typeof l.pipe||!u(e,c,s)||c>=i)return e;var l;const h=Object.assign({},o,{options:Object.assign({},s,{attemptNumber:c+1})});return setTimeout((()=>o.channels.request.publish(h)),a(c)),null}}})({shouldRetry:Q,...e});X.shouldRetry=Q;var K=function(e,t){return K=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},K(e,t)};function Z(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}K(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}function ee(e,t,r,n){return new(r||(r=Promise))((function(o,s){function i(e){try{u(n.next(e))}catch(e){s(e)}}function a(e){try{u(n.throw(e))}catch(e){s(e)}}function u(e){var t;e.done?o(e.value):(t=e.value,t instanceof r?t:new r((function(e){e(t)}))).then(i,a)}u((n=n.apply(e,t||[])).next())}))}function te(e,t){var r,n,o,s,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return s={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function a(a){return function(u){return function(a){if(r)throw new TypeError("Generator is already executing.");for(;s&&(s=0,a[0]&&(i=0)),i;)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;switch(n=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,n=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1],o=a;break}if(o&&i.label<o[2]){i.label=o[2],i.ops.push(a);break}o[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e],n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,u])}}}function re(e){var t="function"==typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function ne(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,s=r.call(e),i=[];try{for(;(void 0===t||t-- >0)&&!(n=s.next()).done;)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=s.return)&&r.call(s)}finally{if(o)throw o.error}}return i}function oe(e,t,r){if(r||2===arguments.length)for(var n,o=0,s=t.length;o<s;o++)!n&&o in t||(n||(n=Array.prototype.slice.call(t,0,o)),n[o]=t[o]);return e.concat(n||Array.prototype.slice.call(t))}function se(e){return this instanceof se?(this.v=e,this):new se(e)}function ie(e,t,r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var n,o=r.apply(e,t||[]),s=[];return n={},i("next"),i("throw"),i("return"),n[Symbol.asyncIterator]=function(){return this},n;function i(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){s.push([e,t,r,n])>1||a(e,t)}))})}function a(e,t){try{(r=o[e](t)).value instanceof se?Promise.resolve(r.value.v).then(u,c):l(s[0][2],r)}catch(e){l(s[0][3],e)}var r}function u(e){a("next",e)}function c(e){a("throw",e)}function l(e,t){e(t),s.shift(),s.length&&a(s[0][0],s[0][1])}}function ae(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=re(e),t={},n("next"),n("throw"),n("return"),t[Symbol.asyncIterator]=function(){return this},t);function n(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){(function(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)})(n,o,(t=e[r](t)).done,t.value)}))}}}function ue(e){return"function"==typeof e}function ce(e){var t=e((function(e){Error.call(e),e.stack=(new Error).stack}));return t.prototype=Object.create(Error.prototype),t.prototype.constructor=t,t}"function"==typeof SuppressedError&&SuppressedError;var le=ce((function(e){return function(t){e(this),this.message=t?t.length+" errors occurred during unsubscription:\n"+t.map((function(e,t){return t+1+") "+e.toString()})).join("\n "):"",this.name="UnsubscriptionError",this.errors=t}}));function he(e,t){if(e){var r=e.indexOf(t);0<=r&&e.splice(r,1)}}var de=function(){function e(e){this.initialTeardown=e,this.closed=!1,this._parentage=null,this._finalizers=null}var t;return e.prototype.unsubscribe=function(){var e,t,r,n,o;if(!this.closed){this.closed=!0;var s=this._parentage;if(s)if(this._parentage=null,Array.isArray(s))try{for(var i=re(s),a=i.next();!a.done;a=i.next()){a.value.remove(this)}}catch(t){e={error:t}}finally{try{a&&!a.done&&(t=i.return)&&t.call(i)}finally{if(e)throw e.error}}else s.remove(this);var u=this.initialTeardown;if(ue(u))try{u()}catch(e){o=e instanceof le?e.errors:[e]}var c=this._finalizers;if(c){this._finalizers=null;try{for(var l=re(c),h=l.next();!h.done;h=l.next()){var d=h.value;try{pe(d)}catch(e){o=null!=o?o:[],e instanceof le?o=oe(oe([],ne(o)),ne(e.errors)):o.push(e)}}}catch(e){r={error:e}}finally{try{h&&!h.done&&(n=l.return)&&n.call(l)}finally{if(r)throw r.error}}}if(o)throw new le(o)}},e.prototype.add=function(t){var r;if(t&&t!==this)if(this.closed)pe(t);else{if(t instanceof e){if(t.closed||t._hasParent(this))return;t._addParent(this)}(this._finalizers=null!==(r=this._finalizers)&&void 0!==r?r:[]).push(t)}},e.prototype._hasParent=function(e){var t=this._parentage;return t===e||Array.isArray(t)&&t.includes(e)},e.prototype._addParent=function(e){var t=this._parentage;this._parentage=Array.isArray(t)?(t.push(e),t):t?[t,e]:e},e.prototype._removeParent=function(e){var t=this._parentage;t===e?this._parentage=null:Array.isArray(t)&&he(t,e)},e.prototype.remove=function(t){var r=this._finalizers;r&&he(r,t),t instanceof e&&t._removeParent(this)},e.EMPTY=((t=new e).closed=!0,t),e}();function fe(e){return e instanceof de||e&&"closed"in e&&ue(e.remove)&&ue(e.add)&&ue(e.unsubscribe)}function pe(e){ue(e)?e():e.unsubscribe()}de.EMPTY;var ye={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},me={setTimeout:function(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];return setTimeout.apply(void 0,oe([e,t],ne(r)))},clearTimeout:function(e){var t=me.delegate;return((null==t?void 0:t.clearTimeout)||clearTimeout)(e)},delegate:void 0};function ge(e){me.setTimeout((function(){throw e}))}function ve(){}var be=function(e){function t(t){var r=e.call(this)||this;return r.isStopped=!1,t?(r.destination=t,fe(t)&&t.add(r)):r.destination=Te,r}return Z(t,e),t.create=function(e,t,r){return new xe(e,t,r)},t.prototype.next=function(e){this.isStopped||this._next(e)},t.prototype.error=function(e){this.isStopped||(this.isStopped=!0,this._error(e))},t.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},t.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,e.prototype.unsubscribe.call(this),this.destination=null)},t.prototype._next=function(e){this.destination.next(e)},t.prototype._error=function(e){try{this.destination.error(e)}finally{this.unsubscribe()}},t.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},t}(de),we=Function.prototype.bind;function Ce(e,t){return we.call(e,t)}var Ee=function(){function e(e){this.partialObserver=e}return e.prototype.next=function(e){var t=this.partialObserver;if(t.next)try{t.next(e)}catch(e){Se(e)}},e.prototype.error=function(e){var t=this.partialObserver;if(t.error)try{t.error(e)}catch(e){Se(e)}else Se(e)},e.prototype.complete=function(){var e=this.partialObserver;if(e.complete)try{e.complete()}catch(e){Se(e)}},e}(),xe=function(e){function t(t,r,n){var o,s,i=e.call(this)||this;ue(t)||!t?o={next:null!=t?t:void 0,error:null!=r?r:void 0,complete:null!=n?n:void 0}:i&&ye.useDeprecatedNextContext?((s=Object.create(t)).unsubscribe=function(){return i.unsubscribe()},o={next:t.next&&Ce(t.next,s),error:t.error&&Ce(t.error,s),complete:t.complete&&Ce(t.complete,s)}):o=t;return i.destination=new Ee(o),i}return Z(t,e),t}(be);function Se(e){ge(e)}var Te={closed:!0,next:ve,error:function(e){throw e},complete:ve},_e="function"==typeof Symbol&&Symbol.observable||"@@observable";function Oe(e){return e}function je(e){return 0===e.length?Oe:1===e.length?e[0]:function(t){return e.reduce((function(e,t){return t(e)}),t)}}var $e=function(){function e(e){e&&(this._subscribe=e)}return e.prototype.lift=function(t){var r=new e;return r.source=this,r.operator=t,r},e.prototype.subscribe=function(e,t,r){var n,o=this,s=(n=e)&&n instanceof be||function(e){return e&&ue(e.next)&&ue(e.error)&&ue(e.complete)}(n)&&fe(n)?e:new xe(e,t,r);return function(){var e=o,t=e.operator,r=e.source;s.add(t?t.call(s,r):r?o._subscribe(s):o._trySubscribe(s))}(),s},e.prototype._trySubscribe=function(e){try{return this._subscribe(e)}catch(t){e.error(t)}},e.prototype.forEach=function(e,t){var r=this;return new(t=ke(t))((function(t,n){var o=new xe({next:function(t){try{e(t)}catch(e){n(e),o.unsubscribe()}},error:n,complete:t});r.subscribe(o)}))},e.prototype._subscribe=function(e){var t;return null===(t=this.source)||void 0===t?void 0:t.subscribe(e)},e.prototype[_e]=function(){return this},e.prototype.pipe=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return je(e)(this)},e.prototype.toPromise=function(e){var t=this;return new(e=ke(e))((function(e,r){var n;t.subscribe((function(e){return n=e}),(function(e){return r(e)}),(function(){return e(n)}))}))},e.create=function(t){return new e(t)},e}();function ke(e){var t;return null!==(t=null!=e?e:ye.Promise)&&void 0!==t?t:Promise}function Ae(e){return function(t){if(function(e){return ue(null==e?void 0:e.lift)}(t))return t.lift((function(t){try{return e(t,this)}catch(e){this.error(e)}}));throw new TypeError("Unable to lift unknown Observable type")}}function Pe(e,t,r,n,o){return new Ie(e,t,r,n,o)}var Ie=function(e){function t(t,r,n,o,s,i){var a=e.call(this,t)||this;return a.onFinalize=s,a.shouldUnsubscribe=i,a._next=r?function(e){try{r(e)}catch(e){t.error(e)}}:e.prototype._next,a._error=o?function(e){try{o(e)}catch(e){t.error(e)}finally{this.unsubscribe()}}:e.prototype._error,a._complete=n?function(){try{n()}catch(e){t.error(e)}finally{this.unsubscribe()}}:e.prototype._complete,a}return Z(t,e),t.prototype.unsubscribe=function(){var t;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var r=this.closed;e.prototype.unsubscribe.call(this),!r&&(null===(t=this.onFinalize)||void 0===t||t.call(this))}},t}(be);var Re=function(e){return e&&"number"==typeof e.length&&"function"!=typeof e};var Me="function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator";function De(e){if(e instanceof $e)return e;if(null!=e){if(function(e){return ue(e[_e])}(e))return s=e,new $e((function(e){var t=s[_e]();if(ue(t.subscribe))return t.subscribe(e);throw new TypeError("Provided object does not correctly implement Symbol.observable")}));if(Re(e))return o=e,new $e((function(e){for(var t=0;t<o.length&&!e.closed;t++)e.next(o[t]);e.complete()}));if(ue(null==(n=e)?void 0:n.then))return r=e,new $e((function(e){r.then((function(t){e.closed||(e.next(t),e.complete())}),(function(t){return e.error(t)})).then(null,ge)}));if(function(e){return Symbol.asyncIterator&&ue(null==e?void 0:e[Symbol.asyncIterator])}(e))return Fe(e);if(function(e){return ue(null==e?void 0:e[Me])}(e))return t=e,new $e((function(e){var r,n;try{for(var o=re(t),s=o.next();!s.done;s=o.next()){var i=s.value;if(e.next(i),e.closed)return}}catch(e){r={error:e}}finally{try{s&&!s.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}e.complete()}));if(function(e){return ue(null==e?void 0:e.getReader)}(e))return Fe(function(e){return ie(this,arguments,(function(){var t,r,n;return te(this,(function(o){switch(o.label){case 0:t=e.getReader(),o.label=1;case 1:o.trys.push([1,,9,10]),o.label=2;case 2:return[4,se(t.read())];case 3:return r=o.sent(),n=r.value,r.done?[4,se(void 0)]:[3,5];case 4:return[2,o.sent()];case 5:return[4,se(n)];case 6:return[4,o.sent()];case 7:return o.sent(),[3,2];case 8:return[3,10];case 9:return t.releaseLock(),[7];case 10:return[2]}}))}))}(e))}var t,r,n,o,s;throw function(e){return new TypeError("You provided "+(null!==e&&"object"==typeof e?"an invalid object":"'"+e+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}(e)}function Fe(e){return new $e((function(t){(function(e,t){var r,n,o,s;return ee(this,void 0,void 0,(function(){var i,a;return te(this,(function(u){switch(u.label){case 0:u.trys.push([0,5,6,11]),r=ae(e),u.label=1;case 1:return[4,r.next()];case 2:if((n=u.sent()).done)return[3,4];if(i=n.value,t.next(i),t.closed)return[2];u.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return a=u.sent(),o={error:a},[3,11];case 6:return u.trys.push([6,,9,10]),n&&!n.done&&(s=r.return)?[4,s.call(r)]:[3,8];case 7:u.sent(),u.label=8;case 8:return[3,10];case 9:if(o)throw o.error;return[7];case 10:return[7];case 11:return t.complete(),[2]}}))}))})(e,t).catch((function(e){return t.error(e)}))}))}function qe(e,t){return De(e)}var Ne=ce((function(e){return function(){e(this),this.name="EmptyError",this.message="no elements in sequence"}}));function Ue(e,t){return new Promise((function(t,r){var n,o=!1;e.subscribe({next:function(e){n=e,o=!0},error:r,complete:function(){o?t(n):r(new Ne)}})}))}function Le(e,t){return Ae((function(r,n){var o=0;r.subscribe(Pe(n,(function(r){n.next(e.call(t,r,o++))})))}))}var We=Array.isArray;function ze(e){return Le((function(t){return function(e,t){return We(t)?e.apply(void 0,oe([],ne(t))):e(t)}(e,t)}))}function He(e,t,r){t()}var Be=Array.isArray;function Je(e,t){return Ae((function(r,n){var o=0;r.subscribe(Pe(n,(function(r){return e.call(t,r,o++)&&n.next(r)})))}))}function Ge(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var r=function(e){return ue((t=e)[t.length-1])?e.pop():void 0;var t}(e);return r?function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return je(e)}(Ge.apply(void 0,oe([],ne(e))),ze(r)):Ae((function(t,r){var n,o;(n=oe([t],ne(function(e){return 1===e.length&&Be(e[0])?e[0]:e}(e))),void 0===o&&(o=Oe),function(e){He(0,(function(){for(var t=n.length,r=new Array(t),s=t,i=t,a=function(t){He(0,(function(){var a=qe(n[t]),u=!1;a.subscribe(Pe(e,(function(n){r[t]=n,u||(u=!0,i--),i||e.next(o(r.slice()))}),(function(){--s||e.complete()})))}))},u=0;u<t;u++)a(u)}))})(r)}))}var Ve={0:8203,1:8204,2:8205,3:8290,4:8291,5:8288,6:65279,7:8289,8:119155,9:119156,a:119157,b:119158,c:119159,d:119160,e:119161,f:119162},Qe={0:8203,1:8204,2:8205,3:65279},Ye=new Array(4).fill(String.fromCodePoint(Qe[0])).join("");function Xe(e,t,r="auto"){return!0===r||"auto"===r&&(function(e){return!(!Number.isNaN(Number(e))||/[a-z]/i.test(e)&&!/\d+(?:[-:\/]\d+){2}(?:T\d+(?:[-:\/]\d+){1,2}(\.\d+)?Z?)?/.test(e)||!Date.parse(e))}(e)||function(e){try{new URL(e,e.startsWith("/")?"https://acme.com":void 0)}catch{return!1}return!0}(e))?e:`${e}${function(e){let t=JSON.stringify(e);return`${Ye}${Array.from(t).map((e=>{let r=e.charCodeAt(0);if(r>255)throw new Error(`Only ASCII edit info can be encoded. Error attempting to encode ${t} on character ${e} (${r})`);return Array.from(r.toString(4).padStart(4,"0")).map((e=>String.fromCodePoint(Qe[e]))).join("")})).join("")}`}(t)}`}Object.fromEntries(Object.entries(Qe).map((e=>e.reverse()))),Object.fromEntries(Object.entries(Ve).map((e=>e.reverse())));var Ke=`${Object.values(Ve).map((e=>`\\u{${e.toString(16)}}`)).join("")}`,Ze=new RegExp(`[${Ke}]{4,}`,"gu");function et(e){return e&&JSON.parse(function(e){var t;return{cleaned:e.replace(Ze,""),encoded:(null==(t=e.match(Ze))?void 0:t[0])||""}}(JSON.stringify(e)).cleaned)}var tt=Object.defineProperty,rt=(e,t,r)=>(((e,t,r)=>{t in e?tt(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r})(e,"symbol"!=typeof t?t+"":t,r),r);class nt extends Error{constructor(e){const t=st(e);super(t.message),rt(this,"response"),rt(this,"statusCode",400),rt(this,"responseBody"),rt(this,"details"),Object.assign(this,t)}}class ot extends Error{constructor(e){const t=st(e);super(t.message),rt(this,"response"),rt(this,"statusCode",500),rt(this,"responseBody"),rt(this,"details"),Object.assign(this,t)}}function st(e){const t=e.body,r={response:e,statusCode:e.statusCode,responseBody:at(t,e),message:"",details:void 0};if(t.error&&t.message)return r.message=`${t.error} - ${t.message}`,r;if(function(e){return it(e)&&it(e.error)&&"mutationError"===e.error.type&&"string"==typeof e.error.description}(t)||function(e){return it(e)&&it(e.error)&&"actionError"===e.error.type&&"string"==typeof e.error.description}(t)){const e=t.error.items||[],n=e.slice(0,5).map((e=>{var t;return null==(t=e.error)?void 0:t.description})).filter(Boolean);let o=n.length?`:\n- ${n.join("\n- ")}`:"";return e.length>5&&(o+=`\n...and ${e.length-5} more`),r.message=`${t.error.description}${o}`,r.details=t.error,r}return t.error&&t.error.description?(r.message=t.error.description,r.details=t.error,r):(r.message=t.error||t.message||function(e){const t=e.statusMessage?` ${e.statusMessage}`:"";return`${e.method}-request to ${e.url} resulted in HTTP ${e.statusCode}${t}`}(e),r)}function it(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}function at(e,t){return-1!==(t.headers["content-type"]||"").toLowerCase().indexOf("application/json")?JSON.stringify(e,null,2):e}const ut={onResponse:e=>{if(e.statusCode>=500)throw new ot(e);if(e.statusCode>=400)throw new nt(e);return e}},ct={onResponse:e=>{const t=e.headers["x-sanity-warning"];return(Array.isArray(t)?t:[t]).filter(Boolean).forEach((e=>console.warn(e))),e}};function lt(e,t,r){if(0===r.maxRetries)return!1;const n="GET"===r.method||"HEAD"===r.method,o=(r.uri||r.url).startsWith("/data/query"),s=e.response&&(429===e.response.statusCode||502===e.response.statusCode||503===e.response.statusCode);return!(!n&&!o||!s)||X.shouldRetry(e,t,r)}function ht(e){if("string"==typeof e)return{id:e};if(Array.isArray(e))return{query:"*[_id in $ids]",params:{ids:e}};if("object"==typeof e&&null!==e&&"query"in e&&"string"==typeof e.query)return"params"in e&&"object"==typeof e.params&&null!==e.params?{query:e.query,params:e.params}:{query:e.query};const t=["* Document ID (<docId>)","* Array of document IDs","* Object containing `query`"].join("\n");throw new Error(`Unknown selection - must be one of:\n\n${t}`)}const dt=["image","file"],ft=["before","after","replace"],pt=e=>{if(!/^(~[a-z0-9]{1}[-\w]{0,63}|[a-z0-9]{1}[-\w]{0,63})$/.test(e))throw new Error("Datasets can only contain lowercase characters, numbers, underscores and dashes, and start with tilde, and be maximum 64 characters")},yt=(e,t)=>{if(null===t||"object"!=typeof t||Array.isArray(t))throw new Error(`${e}() takes an object of properties`)},mt=(e,t)=>{if("string"!=typeof t||!/^[a-z0-9_][a-z0-9_.-]{0,127}$/i.test(t)||t.includes(".."))throw new Error(`${e}(): "${t}" is not a valid document ID`)},gt=(e,t)=>{if(!t._id)throw new Error(`${e}() requires that the document contains an ID ("_id" property)`);mt(e,t._id)},vt=e=>{if(!e.dataset)throw new Error("`dataset` must be provided to perform queries");return e.dataset||""},bt=e=>{if("string"!=typeof e||!/^[a-z0-9._-]{1,75}$/i.test(e))throw new Error("Tag can only contain alphanumeric characters, underscores, dashes and dots, and be between one and 75 characters long.");return e};var wt,Ct=Object.defineProperty,Et=(e,t,r)=>(((e,t,r)=>{t in e?Ct(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r})(e,"symbol"!=typeof t?t+"":t,r),r),xt=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},St=(e,t,r)=>(xt(e,t,"read from private field"),r?r.call(e):t.get(e)),Tt=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},_t=(e,t,r,n)=>(xt(e,t,"write to private field"),t.set(e,r),r);class Ot{constructor(e,t={}){Et(this,"selection"),Et(this,"operations"),this.selection=e,this.operations=t}set(e){return this._assign("set",e)}setIfMissing(e){return this._assign("setIfMissing",e)}diffMatchPatch(e){return yt("diffMatchPatch",e),this._assign("diffMatchPatch",e)}unset(e){if(!Array.isArray(e))throw new Error("unset(attrs) takes an array of attributes to unset, non-array given");return this.operations=Object.assign({},this.operations,{unset:e}),this}inc(e){return this._assign("inc",e)}dec(e){return this._assign("dec",e)}insert(e,t,r){return((e,t,r)=>{const n="insert(at, selector, items)";if(-1===ft.indexOf(e)){const e=ft.map((e=>`"${e}"`)).join(", ");throw new Error(`${n} takes an "at"-argument which is one of: ${e}`)}if("string"!=typeof t)throw new Error(`${n} takes a "selector"-argument which must be a string`);if(!Array.isArray(r))throw new Error(`${n} takes an "items"-argument which must be an array`)})(e,t,r),this._assign("insert",{[e]:t,items:r})}append(e,t){return this.insert("after",`${e}[-1]`,t)}prepend(e,t){return this.insert("before",`${e}[0]`,t)}splice(e,t,r,n){const o=t<0?t-1:t,s=typeof r>"u"||-1===r?-1:Math.max(0,t+r),i=`${e}[${o}:${o<0&&s>=0?"":s}]`;return this.insert("replace",i,n||[])}ifRevisionId(e){return this.operations.ifRevisionID=e,this}serialize(){return{...ht(this.selection),...this.operations}}toJSON(){return this.serialize()}reset(){return this.operations={},this}_assign(e,t,r=!0){return yt(e,t),this.operations=Object.assign({},this.operations,{[e]:Object.assign({},r&&this.operations[e]||{},t)}),this}_set(e,t){return this._assign(e,t,!1)}}wt=new WeakMap;let jt=class e extends Ot{constructor(e,t,r){super(e,t),Tt(this,wt,void 0),_t(this,wt,r)}clone(){return new e(this.selection,{...this.operations},St(this,wt))}commit(e){if(!St(this,wt))throw new Error("No `client` passed to patch, either provide one or pass the patch to a clients `mutate()` method");const t="string"==typeof this.selection,r=Object.assign({returnFirst:t,returnDocuments:!0},e);return St(this,wt).mutate({patch:this.serialize()},r)}};var $t;$t=new WeakMap;let kt=class e extends Ot{constructor(e,t,r){super(e,t),Tt(this,$t,void 0),_t(this,$t,r)}clone(){return new e(this.selection,{...this.operations},St(this,$t))}commit(e){if(!St(this,$t))throw new Error("No `client` passed to patch, either provide one or pass the patch to a clients `mutate()` method");const t="string"==typeof this.selection,r=Object.assign({returnFirst:t,returnDocuments:!0},e);return St(this,$t).mutate({patch:this.serialize()},r)}};var At=Object.defineProperty,Pt=(e,t,r)=>(((e,t,r)=>{t in e?At(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r})(e,"symbol"!=typeof t?t+"":t,r),r),It=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},Rt=(e,t,r)=>(It(e,t,"read from private field"),r?r.call(e):t.get(e)),Mt=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},Dt=(e,t,r,n)=>(It(e,t,"write to private field"),t.set(e,r),r);const Ft={returnDocuments:!1};class qt{constructor(e=[],t){Pt(this,"operations"),Pt(this,"trxId"),this.operations=e,this.trxId=t}create(e){return yt("create",e),this._add({create:e})}createIfNotExists(e){const t="createIfNotExists";return yt(t,e),gt(t,e),this._add({[t]:e})}createOrReplace(e){const t="createOrReplace";return yt(t,e),gt(t,e),this._add({[t]:e})}delete(e){return mt("delete",e),this._add({delete:{id:e}})}transactionId(e){return e?(this.trxId=e,this):this.trxId}serialize(){return[...this.operations]}toJSON(){return this.serialize()}reset(){return this.operations=[],this}_add(e){return this.operations.push(e),this}}var Nt;Nt=new WeakMap;let Ut=class e extends qt{constructor(e,t,r){super(e,r),Mt(this,Nt,void 0),Dt(this,Nt,t)}clone(){return new e([...this.operations],Rt(this,Nt),this.trxId)}commit(e){if(!Rt(this,Nt))throw new Error("No `client` passed to transaction, either provide one or pass the transaction to a clients `mutate()` method");return Rt(this,Nt).mutate(this.serialize(),Object.assign({transactionId:this.trxId},Ft,e||{}))}patch(e,t){const r="function"==typeof t;if("string"!=typeof e&&e instanceof kt)return this._add({patch:e.serialize()});if(r){const r=t(new kt(e,{},Rt(this,Nt)));if(!(r instanceof kt))throw new Error("function passed to `patch()` must return the patch");return this._add({patch:r.serialize()})}return this._add({patch:{id:e,...t}})}};var Lt;Lt=new WeakMap;let Wt=class e extends qt{constructor(e,t,r){super(e,r),Mt(this,Lt,void 0),Dt(this,Lt,t)}clone(){return new e([...this.operations],Rt(this,Lt),this.trxId)}commit(e){if(!Rt(this,Lt))throw new Error("No `client` passed to transaction, either provide one or pass the transaction to a clients `mutate()` method");return Rt(this,Lt).mutate(this.serialize(),Object.assign({transactionId:this.trxId},Ft,e||{}))}patch(e,t){const r="function"==typeof t;if("string"!=typeof e&&e instanceof jt)return this._add({patch:e.serialize()});if(r){const r=t(new jt(e,{},Rt(this,Lt)));if(!(r instanceof jt))throw new Error("function passed to `patch()` must return the patch");return this._add({patch:r.serialize()})}return this._add({patch:{id:e,...t}})}};function zt(e){return"https://www.sanity.io/help/"+e}const Ht=e=>function(e){let t,r=!1;return(...n)=>(r||(t=e(...n),r=!0),t)}(((...t)=>console.warn(e.join(" "),...t))),Bt=Ht(["Since you haven't set a value for `useCdn`, we will deliver content using our","global, edge-cached API-CDN. If you wish to have content delivered faster, set","`useCdn: false` to use the Live API. Note: You may incur higher costs using the live API."]),Jt=Ht(["The Sanity client is configured with the `perspective` set to `previewDrafts`, which doesn't support the API-CDN.","The Live API will be used instead. Set `useCdn: false` in your configuration to hide this warning."]),Gt=Ht(["You have configured Sanity client to use a token in the browser. This may cause unintentional security issues.",`See ${zt("js-client-browser-token")} for more information and how to hide this warning.`]),Vt=Ht(["Using the Sanity client without specifying an API version is deprecated.",`See ${zt("js-client-api-version")}`]),Qt=Ht(["The default export of @sanity/client has been deprecated. Use the named export `createClient` instead."]),Yt={apiHost:"https://api.sanity.io",apiVersion:"1",useProjectHostname:!0,stega:{enabled:!1}},Xt=["localhost","127.0.0.1","0.0.0.0"];const Kt=function(e){switch(e){case"previewDrafts":case"published":case"raw":return;default:throw new TypeError("Invalid API perspective string, expected `published`, `previewDrafts` or `raw`")}},Zt=(e,t)=>{const r={...t,...e,stega:{..."boolean"==typeof t.stega?{enabled:t.stega}:t.stega||Yt.stega,..."boolean"==typeof e.stega?{enabled:e.stega}:e.stega||{}}};r.apiVersion||Vt();const n={...Yt,...r},o=n.useProjectHostname;if(typeof Promise>"u"){const e=zt("js-client-promise-polyfill");throw new Error(`No native Promise-implementation found, polyfill needed - see ${e}`)}if(o&&!n.projectId)throw new Error("Configuration must contain `projectId`");if("string"==typeof n.perspective&&Kt(n.perspective),"encodeSourceMap"in n)throw new Error("It looks like you're using options meant for '@sanity/preview-kit/client'. 'encodeSourceMap' is not supported in '@sanity/client'. Did you mean 'stega.enabled'?");if("encodeSourceMapAtPath"in n)throw new Error("It looks like you're using options meant for '@sanity/preview-kit/client'. 'encodeSourceMapAtPath' is not supported in '@sanity/client'. Did you mean 'stega.filter'?");if("boolean"!=typeof n.stega.enabled)throw new Error(`stega.enabled must be a boolean, received ${n.stega.enabled}`);if(n.stega.enabled&&void 0===n.stega.studioUrl)throw new Error("stega.studioUrl must be defined when stega.enabled is true");if(n.stega.enabled&&"string"!=typeof n.stega.studioUrl&&"function"!=typeof n.stega.studioUrl)throw new Error(`stega.studioUrl must be a string or a function, received ${n.stega.studioUrl}`);const s=typeof window<"u"&&window.location&&window.location.hostname,i=s&&(e=>-1!==Xt.indexOf(e))(window.location.hostname);s&&i&&n.token&&!0!==n.ignoreBrowserTokenWarning?Gt():typeof n.useCdn>"u"&&Bt(),o&&(e=>{if(!/^[-a-z0-9]+$/i.test(e))throw new Error("`projectId` can only contain only a-z, 0-9 and dashes")})(n.projectId),n.dataset&&pt(n.dataset),"requestTagPrefix"in n&&(n.requestTagPrefix=n.requestTagPrefix?bt(n.requestTagPrefix).replace(/\.+$/,""):void 0),n.apiVersion=`${n.apiVersion}`.replace(/^v/,""),n.isDefaultApi=n.apiHost===Yt.apiHost,n.useCdn=!1!==n.useCdn&&!n.withCredentials,function(e){if("1"===e||"X"===e)return;const t=new Date(e);if(!(/^\d{4}-\d{2}-\d{2}$/.test(e)&&t instanceof Date&&t.getTime()>0))throw new Error("Invalid API version string, expected `1` or date in format `YYYY-MM-DD`")}(n.apiVersion);const a=n.apiHost.split("://",2),u=a[0],c=a[1],l=n.isDefaultApi?"apicdn.sanity.io":c;return n.useProjectHostname?(n.url=`${u}://${n.projectId}.${c}/v${n.apiVersion}`,n.cdnUrl=`${u}://${n.projectId}.${l}/v${n.apiVersion}`):(n.url=`${n.apiHost}/v${n.apiVersion}`,n.cdnUrl=n.url),n},er="X-Sanity-Project-ID";const tr=({query:e,params:t={},options:r={}})=>{const n=new URLSearchParams,{tag:o,returnQuery:s,...i}=r;o&&n.append("tag",o),n.append("query",e);for(const[e,r]of Object.entries(t))n.append(`$${e}`,JSON.stringify(r));for(const[e,t]of Object.entries(i))t&&n.append(e,`${t}`);return!1===s&&n.append("returnQuery","false"),`?${n}`},rr=(e={})=>{return{dryRun:e.dryRun,returnIds:!0,returnDocuments:(t=e.returnDocuments,r=!0,!1===t?void 0:typeof t>"u"?r:t),visibility:e.visibility||"sync",autoGenerateArrayKeys:e.autoGenerateArrayKeys,skipCrossDatasetReferenceValidation:e.skipCrossDatasetReferenceValidation};var t,r},nr=e=>"response"===e.type,or=e=>e.body,sr=11264;function ir(e,t,r,n,o={},s={}){const i="stega"in s?{...r||{},..."boolean"==typeof s.stega?{enabled:s.stega}:s.stega||{}}:r,a=i.enabled?et(o):o,u=!1===s.filterResponse?e=>e:e=>e.result,{cache:c,next:l,...h}={useAbortSignal:typeof s.signal<"u",resultSourceMap:i.enabled?"withKeyArraySelector":s.resultSourceMap,...s,returnQuery:!1===s.filterResponse&&!1!==s.returnQuery},d=pr(e,t,"query",{query:n,params:a},typeof c<"u"||typeof l<"u"?{...h,fetch:{cache:c,next:l}}:h);return i.enabled?d.pipe(function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return Ge.apply(void 0,oe([],ne(e)))}(qe(Promise.resolve().then((function(){return eo})).then((function(e){return e.stegaEncodeSourceMap$1})).then((({stegaEncodeSourceMap:e})=>e)))),Le((([e,t])=>{const r=t(e.result,e.resultSourceMap,i);return u({...e,result:r})}))):d.pipe(Le(u))}function ar(e,t,r,n={}){return mr(e,t,{uri:vr(e,"doc",r),json:!0,tag:n.tag}).pipe(Je(nr),Le((e=>e.body.documents&&e.body.documents[0])))}function ur(e,t,r,n={}){return mr(e,t,{uri:vr(e,"doc",r.join(",")),json:!0,tag:n.tag}).pipe(Je(nr),Le((e=>{const t=(n=e.body.documents||[],o=e=>e._id,n.reduce(((e,t)=>(e[o(t)]=t,e)),Object.create(null)));var n,o;return r.map((e=>t[e]||null))})))}function cr(e,t,r,n){return gt("createIfNotExists",r),yr(e,t,r,"createIfNotExists",n)}function lr(e,t,r,n){return gt("createOrReplace",r),yr(e,t,r,"createOrReplace",n)}function hr(e,t,r,n){return pr(e,t,"mutate",{mutations:[{delete:ht(r)}]},n)}function dr(e,t,r,n){let o;o=r instanceof kt||r instanceof jt?{patch:r.serialize()}:r instanceof Ut||r instanceof Wt?r.serialize():r;return pr(e,t,"mutate",{mutations:Array.isArray(o)?o:[o],transactionId:n&&n.transactionId||void 0},n)}function fr(e,t,r,n){return pr(e,t,"actions",{actions:Array.isArray(r)?r:[r],transactionId:n&&n.transactionId||void 0,skipCrossDatasetReferenceValidation:n&&n.skipCrossDatasetReferenceValidation||void 0,dryRun:n&&n.dryRun||void 0},n)}function pr(e,t,r,n,o={}){const s="mutate"===r,i="actions"===r,a="query"===r,u=s||i?"":tr(n),c=!s&&!i&&u.length<sr,l=c?u:"",h=o.returnFirst,{timeout:d,token:f,tag:p,headers:y,returnQuery:m,lastLiveEventId:g}=o;return mr(e,t,{method:c?"GET":"POST",uri:vr(e,r,l),json:!0,body:c?void 0:n,query:s&&rr(o),timeout:d,headers:y,token:f,tag:p,returnQuery:m,perspective:o.perspective,resultSourceMap:o.resultSourceMap,lastLiveEventId:Array.isArray(g)?g[0]:g,canUseCdn:a,signal:o.signal,fetch:o.fetch,useAbortSignal:o.useAbortSignal,useCdn:o.useCdn}).pipe(Je(nr),Le(or),Le((e=>{if(!s)return e;const t=e.results||[];if(o.returnDocuments)return h?t[0]&&t[0].document:t.map((e=>e.document));const r=h?"documentId":"documentIds",n=h?t[0]&&t[0].id:t.map((e=>e.id));return{transactionId:e.transactionId,results:t,[r]:n}})))}function yr(e,t,r,n,o={}){return pr(e,t,"mutate",{mutations:[{[n]:r}]},Object.assign({returnFirst:!0,returnDocuments:!0},o))}function mr(e,t,r){var n,o;const s=r.url||r.uri,i=e.config(),a=typeof r.canUseCdn>"u"?["GET","HEAD"].indexOf(r.method||"GET")>=0&&0===s.indexOf("/data/"):r.canUseCdn;let u=(null!=(n=r.useCdn)?n:i.useCdn)&&a;const c=r.tag&&i.requestTagPrefix?[i.requestTagPrefix,r.tag].join("."):r.tag||i.requestTagPrefix;if(c&&null!==r.tag&&(r.query={tag:bt(c),...r.query}),["GET","HEAD","POST"].indexOf(r.method||"GET")>=0&&0===s.indexOf("/data/query/")){const e=null!=(o=r.resultSourceMap)?o:i.resultSourceMap;void 0!==e&&!1!==e&&(r.query={resultSourceMap:e,...r.query});const t=r.perspective||i.perspective;"string"==typeof t&&"raw"!==t&&(Kt(t),r.query={perspective:t,...r.query},"previewDrafts"===t&&u&&(u=!1,Jt())),r.lastLiveEventId&&(r.query={...r.query,lastLiveEventId:r.lastLiveEventId}),!1===r.returnQuery&&(r.query={returnQuery:"false",...r.query})}const l=function(e,t={}){const r={},n=t.token||e.token;n&&(r.Authorization=`Bearer ${n}`),!t.useGlobalApi&&!e.useProjectHostname&&e.projectId&&(r[er]=e.projectId);const o=!!(typeof t.withCredentials>"u"?e.token||e.withCredentials:t.withCredentials),s=typeof t.timeout>"u"?e.timeout:t.timeout;return Object.assign({},t,{headers:Object.assign({},r,t.headers||{}),timeout:typeof s>"u"?3e5:s,proxy:t.proxy||e.proxy,json:!0,withCredentials:o,fetch:"object"==typeof t.fetch&&"object"==typeof e.fetch?{...e.fetch,...t.fetch}:t.fetch||e.fetch})}(i,Object.assign({},r,{url:br(e,s,u)})),h=new $e((e=>t(l,i.requester).subscribe(e)));return r.signal?h.pipe((d=r.signal,e=>new $e((t=>{const r=()=>t.error(function(e){var t,r;if(wr)return new DOMException(null!=(t=null==e?void 0:e.reason)?t:"The operation was aborted.","AbortError");const n=new Error(null!=(r=null==e?void 0:e.reason)?r:"The operation was aborted.");return n.name="AbortError",n}(d));if(d&&d.aborted)return void r();const n=e.subscribe(t);return d.addEventListener("abort",r),()=>{d.removeEventListener("abort",r),n.unsubscribe()}})))):h;var d}function gr(e,t,r){return mr(e,t,r).pipe(Je((e=>"response"===e.type)),Le((e=>e.body)))}function vr(e,t,r){const n=e.config(),o=`/${t}/${vt(n)}`;return`/data${r?`${o}/${r}`:o}`.replace(/\/($|\?)/,"$1")}function br(e,t,r=!1){const{url:n,cdnUrl:o}=e.config();return`${r?o:n}/${t.replace(/^\//,"")}`}const wr=!!globalThis.DOMException;var Cr,Er,xr,Sr,Tr=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},_r=(e,t,r)=>(Tr(e,t,"read from private field"),r?r.call(e):t.get(e)),Or=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},jr=(e,t,r,n)=>(Tr(e,t,"write to private field"),t.set(e,r),r);class $r{constructor(e,t){Or(this,Cr,void 0),Or(this,Er,void 0),jr(this,Cr,e),jr(this,Er,t)}upload(e,t,r){return Ar(_r(this,Cr),_r(this,Er),e,t,r)}}Cr=new WeakMap,Er=new WeakMap;class kr{constructor(e,t){Or(this,xr,void 0),Or(this,Sr,void 0),jr(this,xr,e),jr(this,Sr,t)}upload(e,t,r){return Ue(Ar(_r(this,xr),_r(this,Sr),e,t,r).pipe(Je((e=>"response"===e.type)),Le((e=>e.body.document))))}}function Ar(e,t,r,n,o={}){(e=>{if(-1===dt.indexOf(e))throw new Error(`Invalid asset type: ${e}. Must be one of ${dt.join(", ")}`)})(r);let s=o.extract||void 0;s&&!s.length&&(s=["none"]);const i=vt(e.config()),a="image"===r?"images":"files",u=function(e,t){return typeof File>"u"||!(t instanceof File)?e:Object.assign({filename:!1===e.preserveFilename?void 0:t.name,contentType:t.type},e)}(o,n),{tag:c,label:l,title:h,description:d,creditLine:f,filename:p,source:y}=u,m={label:l,title:h,description:d,filename:p,meta:s,creditLine:f};return y&&(m.sourceId=y.id,m.sourceName=y.name,m.sourceUrl=y.url),mr(e,t,{tag:c,method:"POST",timeout:u.timeout||0,uri:`/assets/${a}/${i}`,headers:u.contentType?{"Content-Type":u.contentType}:{},query:m,body:n})}xr=new WeakMap,Sr=new WeakMap;const Pr=["includePreviousRevision","includeResult","visibility","effectFormat","tag"],Ir={includeResult:!0};function Rr(e,t,r={}){const{url:n,token:o,withCredentials:s,requestTagPrefix:i}=this.config(),a=r.tag&&i?[i,r.tag].join("."):r.tag,u={...(h=r,d=Ir,Object.keys(d).concat(Object.keys(h)).reduce(((e,t)=>(e[t]=typeof h[t]>"u"?d[t]:h[t],e)),{})),tag:a},c=((e,t)=>t.reduce(((t,r)=>(typeof e[r]>"u"||(t[r]=e[r]),t)),{}))(u,Pr),l=`${n}${vr(this,"listen",tr({query:e,params:t,options:{tag:a,...c}}))}`;var h,d;if(l.length>14800)return new $e((e=>e.error(new Error("Query too large for listener"))));const f=u.events?u.events:["mutation"],p=-1!==f.indexOf("reconnect"),y={};return(o||s)&&(y.withCredentials=!0),o&&(y.headers={Authorization:`Bearer ${o}`}),new $e((e=>{let t,r,n=!1,o=!1;function s(){n||(p&&e.next({type:"reconnect"}),!n&&t.readyState===t.CLOSED&&(c(),clearTimeout(r),r=setTimeout(h,100)))}function i(t){e.error(function(e){if(e instanceof Error)return e;const t=Mr(e);return t instanceof Error?t:new Error(function(e){return e.error?e.error.description?e.error.description:"string"==typeof e.error?e.error:JSON.stringify(e.error,null,2):e.message||"Unknown listener error"}(t))}(t))}function a(t){const r=Mr(t);return r instanceof Error?e.error(r):e.next(r)}function u(){n=!0,c(),e.complete()}function c(){t&&(t.removeEventListener("error",s),t.removeEventListener("channelError",i),t.removeEventListener("disconnect",u),f.forEach((e=>t.removeEventListener(e,a))),t.close())}function h(){(async function(){const{default:e}=await Promise.resolve().then((function(){return so}));if(o)return;const t=new e(l,y);return t.addEventListener("error",s),t.addEventListener("channelError",i),t.addEventListener("disconnect",u),f.forEach((e=>t.addEventListener(e,a))),t})().then((e=>{e&&(t=e,o&&c())})).catch((t=>{e.error(t),d()}))}function d(){n=!0,c(),o=!0}return h(),d}))}function Mr(e){try{const t=e.data&&JSON.parse(e.data)||{};return Object.assign({type:e.type},t)}catch(e){return e}}var Dr,Fr=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},qr=(e,t,r)=>(Fr(e,t,"read from private field"),r?r.call(e):t.get(e));class Nr{constructor(e){var t,r,n;((e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)})(this,Dr,void 0),n=e,Fr(t=this,r=Dr,"write to private field"),r.set(t,n)}events(){const e=vr(qr(this,Dr),"live/events"),t=new URL(qr(this,Dr).getUrl(e,!1)),r=["restart","message"];return new $e((e=>{let n,o,s=!1,i=!1;function a(t){if(!s){if("data"in t){const r=Ur(t);e.error(new Error(r.message,{cause:r}))}n.readyState===n.CLOSED&&(c(),clearTimeout(o),o=setTimeout(l,100))}}function u(t){const r=Ur(t);return r instanceof Error?e.error(r):e.next(r)}function c(){if(n){n.removeEventListener("error",a);for(const e of r)n.removeEventListener(e,u);n.close()}}function l(){(async function(){const e=typeof EventSource>"u"?(await Promise.resolve().then((function(){return so}))).default:EventSource;if(i)return;const n=new e(t.toString());n.addEventListener("error",a);for(const e of r)n.addEventListener(e,u);return n})().then((e=>{e&&(n=e,i&&c())})).catch((t=>{e.error(t),h()}))}function h(){s=!0,c(),i=!0}return l(),h}))}}function Ur(e){try{const t=e.data&&JSON.parse(e.data)||{};return{type:e.type,id:e.lastEventId,...t}}catch(e){return e}}Dr=new WeakMap;var Lr,Wr,zr,Hr,Br=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},Jr=(e,t,r)=>(Br(e,t,"read from private field"),r?r.call(e):t.get(e)),Gr=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},Vr=(e,t,r,n)=>(Br(e,t,"write to private field"),t.set(e,r),r);class Qr{constructor(e,t){Gr(this,Lr,void 0),Gr(this,Wr,void 0),Vr(this,Lr,e),Vr(this,Wr,t)}create(e,t){return Xr(Jr(this,Lr),Jr(this,Wr),"PUT",e,t)}edit(e,t){return Xr(Jr(this,Lr),Jr(this,Wr),"PATCH",e,t)}delete(e){return Xr(Jr(this,Lr),Jr(this,Wr),"DELETE",e)}list(){return gr(Jr(this,Lr),Jr(this,Wr),{uri:"/datasets",tag:null})}}Lr=new WeakMap,Wr=new WeakMap;class Yr{constructor(e,t){Gr(this,zr,void 0),Gr(this,Hr,void 0),Vr(this,zr,e),Vr(this,Hr,t)}create(e,t){return Ue(Xr(Jr(this,zr),Jr(this,Hr),"PUT",e,t))}edit(e,t){return Ue(Xr(Jr(this,zr),Jr(this,Hr),"PATCH",e,t))}delete(e){return Ue(Xr(Jr(this,zr),Jr(this,Hr),"DELETE",e))}list(){return Ue(gr(Jr(this,zr),Jr(this,Hr),{uri:"/datasets",tag:null}))}}function Xr(e,t,r,n,o){return pt(n),gr(e,t,{method:r,uri:`/datasets/${n}`,body:o,tag:null})}zr=new WeakMap,Hr=new WeakMap;var Kr,Zr,en,tn,rn=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},nn=(e,t,r)=>(rn(e,t,"read from private field"),r?r.call(e):t.get(e)),on=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},sn=(e,t,r,n)=>(rn(e,t,"write to private field"),t.set(e,r),r);class an{constructor(e,t){on(this,Kr,void 0),on(this,Zr,void 0),sn(this,Kr,e),sn(this,Zr,t)}list(e){const t=!1===(null==e?void 0:e.includeMembers)?"/projects?includeMembers=false":"/projects";return gr(nn(this,Kr),nn(this,Zr),{uri:t})}getById(e){return gr(nn(this,Kr),nn(this,Zr),{uri:`/projects/${e}`})}}Kr=new WeakMap,Zr=new WeakMap;class un{constructor(e,t){on(this,en,void 0),on(this,tn,void 0),sn(this,en,e),sn(this,tn,t)}list(e){const t=!1===(null==e?void 0:e.includeMembers)?"/projects?includeMembers=false":"/projects";return Ue(gr(nn(this,en),nn(this,tn),{uri:t}))}getById(e){return Ue(gr(nn(this,en),nn(this,tn),{uri:`/projects/${e}`}))}}en=new WeakMap,tn=new WeakMap;var cn,ln,hn,dn,fn=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},pn=(e,t,r)=>(fn(e,t,"read from private field"),r?r.call(e):t.get(e)),yn=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},mn=(e,t,r,n)=>(fn(e,t,"write to private field"),t.set(e,r),r);class gn{constructor(e,t){yn(this,cn,void 0),yn(this,ln,void 0),mn(this,cn,e),mn(this,ln,t)}getById(e){return gr(pn(this,cn),pn(this,ln),{uri:`/users/${e}`})}}cn=new WeakMap,ln=new WeakMap;class vn{constructor(e,t){yn(this,hn,void 0),yn(this,dn,void 0),mn(this,hn,e),mn(this,dn,t)}getById(e){return Ue(gr(pn(this,hn),pn(this,dn),{uri:`/users/${e}`}))}}hn=new WeakMap,dn=new WeakMap;var bn,wn,Cn=Object.defineProperty,En=(e,t,r)=>(((e,t,r)=>{t in e?Cn(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r})(e,"symbol"!=typeof t?t+"":t,r),r),xn=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},Sn=(e,t,r)=>(xn(e,t,"read from private field"),r?r.call(e):t.get(e)),Tn=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},_n=(e,t,r,n)=>(xn(e,t,"write to private field"),t.set(e,r),r);bn=new WeakMap,wn=new WeakMap;let On=class e{constructor(e,t=Yt){En(this,"assets"),En(this,"datasets"),En(this,"live"),En(this,"projects"),En(this,"users"),Tn(this,bn,void 0),Tn(this,wn,void 0),En(this,"listen",Rr),this.config(t),_n(this,wn,e),this.assets=new $r(this,Sn(this,wn)),this.datasets=new Qr(this,Sn(this,wn)),this.live=new Nr(this),this.projects=new an(this,Sn(this,wn)),this.users=new gn(this,Sn(this,wn))}clone(){return new e(Sn(this,wn),this.config())}config(e){if(void 0===e)return{...Sn(this,bn)};if(Sn(this,bn)&&!1===Sn(this,bn).allowReconfigure)throw new Error("Existing client instance cannot be reconfigured - use `withConfig(newConfig)` to return a new client");return _n(this,bn,Zt(e,Sn(this,bn)||{})),this}withConfig(t){const r=this.config();return new e(Sn(this,wn),{...r,...t,stega:{...r.stega||{},..."boolean"==typeof(null==t?void 0:t.stega)?{enabled:t.stega}:(null==t?void 0:t.stega)||{}}})}fetch(e,t,r){return ir(this,Sn(this,wn),Sn(this,bn).stega,e,t,r)}getDocument(e,t){return ar(this,Sn(this,wn),e,t)}getDocuments(e,t){return ur(this,Sn(this,wn),e,t)}create(e,t){return yr(this,Sn(this,wn),e,"create",t)}createIfNotExists(e,t){return cr(this,Sn(this,wn),e,t)}createOrReplace(e,t){return lr(this,Sn(this,wn),e,t)}delete(e,t){return hr(this,Sn(this,wn),e,t)}mutate(e,t){return dr(this,Sn(this,wn),e,t)}patch(e,t){return new jt(e,t,this)}transaction(e){return new Wt(e,this)}action(e,t){return fr(this,Sn(this,wn),e,t)}request(e){return gr(this,Sn(this,wn),e)}getUrl(e,t){return br(this,e,t)}getDataUrl(e,t){return vr(this,e,t)}};var jn,$n;jn=new WeakMap,$n=new WeakMap;let kn=class e{constructor(e,t=Yt){En(this,"assets"),En(this,"datasets"),En(this,"live"),En(this,"projects"),En(this,"users"),En(this,"observable"),Tn(this,jn,void 0),Tn(this,$n,void 0),En(this,"listen",Rr),this.config(t),_n(this,$n,e),this.assets=new kr(this,Sn(this,$n)),this.datasets=new Yr(this,Sn(this,$n)),this.live=new Nr(this),this.projects=new un(this,Sn(this,$n)),this.users=new vn(this,Sn(this,$n)),this.observable=new On(e,t)}clone(){return new e(Sn(this,$n),this.config())}config(e){if(void 0===e)return{...Sn(this,jn)};if(Sn(this,jn)&&!1===Sn(this,jn).allowReconfigure)throw new Error("Existing client instance cannot be reconfigured - use `withConfig(newConfig)` to return a new client");return this.observable&&this.observable.config(e),_n(this,jn,Zt(e,Sn(this,jn)||{})),this}withConfig(t){const r=this.config();return new e(Sn(this,$n),{...r,...t,stega:{...r.stega||{},..."boolean"==typeof(null==t?void 0:t.stega)?{enabled:t.stega}:(null==t?void 0:t.stega)||{}}})}fetch(e,t,r){return Ue(ir(this,Sn(this,$n),Sn(this,jn).stega,e,t,r))}getDocument(e,t){return Ue(ar(this,Sn(this,$n),e,t))}getDocuments(e,t){return Ue(ur(this,Sn(this,$n),e,t))}create(e,t){return Ue(yr(this,Sn(this,$n),e,"create",t))}createIfNotExists(e,t){return Ue(cr(this,Sn(this,$n),e,t))}createOrReplace(e,t){return Ue(lr(this,Sn(this,$n),e,t))}delete(e,t){return Ue(hr(this,Sn(this,$n),e,t))}mutate(e,t){return Ue(dr(this,Sn(this,$n),e,t))}patch(e,t){return new kt(e,t,this)}transaction(e){return new Ut(e,this)}action(e,t){return Ue(fr(this,Sn(this,$n),e,t))}request(e){return Ue(gr(this,Sn(this,$n),e))}dataRequest(e,t,r){return Ue(pr(this,Sn(this,$n),e,t,r))}getUrl(e,t){return br(this,e,t)}getDataUrl(e,t){return vr(this,e,t)}};const An=function(e,t){const r=function(e){return A([X({shouldRetry:lt}),...e,ct,U(),L(),{onRequest:e=>{if("xhr"!==e.adapter)return;const t=e.request,r=e.context;function n(e){return t=>{const n=t.lengthComputable?t.loaded/t.total*100:-1;r.channels.progress.publish({stage:e,percent:n,total:t.total,loaded:t.loaded,lengthComputable:t.lengthComputable})}}"upload"in t&&"onprogress"in t.upload&&(t.upload.onprogress=n("upload")),"onprogress"in t&&(t.onprogress=n("download"))}},ut,H({implementation:$e})])}(e);return{requester:r,createClient:e=>new t(((t,n)=>(n||r)({maxRedirects:0,maxRetries:e.maxRetries,retryDelay:e.retryDelay,...t})),e)}}([],kn),Pn=An.requester,In=An.createClient,Rn=(Mn=In,function(e){return Qt(),Mn(e)});var Mn;const Dn=/_key\s*==\s*['"](.*)['"]/;function Fn(e){if(!Array.isArray(e))throw new Error("Path is not an array");return e.reduce(((e,t,r)=>{const n=typeof t;if("number"===n)return`${e}[${t}]`;if("string"===n)return`${e}${0===r?"":"."}${t}`;if(function(e){return"string"==typeof e?Dn.test(e.trim()):"object"==typeof e&&"_key"in e}(t)&&t._key)return`${e}[_key=="${t._key}"]`;if(Array.isArray(t)){const[r,n]=t;return`${e}[${r}:${n}]`}throw new Error(`Unsupported path segment \`${JSON.stringify(t)}\``)}),"")}const qn={"\f":"\\f","\n":"\\n","\r":"\\r","\t":"\\t","'":"\\'","\\":"\\\\"},Nn={"\\f":"\f","\\n":"\n","\\r":"\r","\\t":"\t","\\'":"'","\\\\":"\\"};function Un(e){const t=[],r=/\['(.*?)'\]|\[(\d+)\]|\[\?\(@\._key=='(.*?)'\)\]/g;let n;for(;null!==(n=r.exec(e));)if(void 0===n[1])if(void 0===n[2])if(void 0===n[3]);else{const e=n[3].replace(/\\(\\')/g,(e=>Nn[e]));t.push({_key:e,_index:-1})}else t.push(parseInt(n[2],10));else{const e=n[1].replace(/\\(\\|f|n|r|t|')/g,(e=>Nn[e]));t.push(e)}return t}function Ln(e){return e.map((e=>{if("string"==typeof e||"number"==typeof e)return e;if(""!==e._key)return{_key:e._key};if(-1!==e._index)return e._index;throw new Error(`invalid segment:${JSON.stringify(e)}`)}))}function Wn(e,t){if(null==t||!t.mappings)return;const r=function(e){return`$${e.map((e=>"string"==typeof e?`['${e.replace(/[\f\n\r\t'\\]/g,(e=>qn[e]))}']`:"number"==typeof e?`[${e}]`:""!==e._key?`[?(@._key=='${e._key.replace(/['\\]/g,(e=>qn[e]))}')]`:`[${e._index}]`)).join("")}`}(e.map((e=>{if("string"==typeof e||"number"==typeof e)return e;if(-1!==e._index)return e._index;throw new Error(`invalid segment:${JSON.stringify(e)}`)})));if(void 0!==t.mappings[r])return{mapping:t.mappings[r],matchedPath:r,pathSuffix:""};const n=Object.entries(t.mappings).filter((([e])=>r.startsWith(e))).sort((([e],[t])=>t.length-e.length));if(0==n.length)return;const[o,s]=n[0];return{mapping:s,matchedPath:o,pathSuffix:r.substring(o.length)}}function zn(e){return"object"==typeof e&&null!==e}function Hn(e,t,r=[]){return function(e){return null!==e&&Array.isArray(e)}(e)?e.map(((e,n)=>{if(zn(e)){const o=e._key;if("string"==typeof o)return Hn(e,t,r.concat({_key:o,_index:n}))}return Hn(e,t,r.concat(n))})):zn(e)?Object.fromEntries(Object.entries(e).map((([e,n])=>[e,Hn(n,t,r.concat(e))]))):t(e,r)}function Bn(e,t,r){return Hn(e,((e,n)=>{if("string"!=typeof e)return e;const o=Wn(n,t);if(!o)return e;const{mapping:s,matchedPath:i}=o;if("value"!==s.type||"documentValue"!==s.source.type)return e;const a=t.documents[s.source.document],u=t.paths[s.source.path],c=Un(i),l=Un(u).concat(n.slice(c.length));return r({sourcePath:l,sourceDocument:a,resultPath:n,value:e})}))}const Jn="drafts.";function Gn(e){const{baseUrl:t,workspace:r="default",tool:n="default",id:o,type:s,path:i,projectId:a,dataset:u}=e;if(!t)throw new Error("baseUrl is required");if(!i)throw new Error("path is required");if(!o)throw new Error("id is required");if("/"!==t&&t.endsWith("/"))throw new Error("baseUrl must not end with a slash");const c="default"===r?void 0:r,l="default"===n?void 0:n,h=function(e){return e.startsWith(Jn)?e.slice(Jn.length):e}(o),d=Array.isArray(i)?Fn(Ln(i)):i,f=new URLSearchParams({baseUrl:t,id:h,type:s,path:d});c&&f.set("workspace",c),l&&f.set("tool",l),a&&f.set("projectId",a),u&&f.set("dataset",u),o.startsWith(Jn)&&f.set("isDraft","");const p=["/"===t?"":t];c&&p.push(c);const y=["mode=presentation",`id=${h}`,`type=${s}`,`path=${encodeURIComponent(d)}`];return l&&y.push(`tool=${l}`),p.push("intent","edit",`${y.join(";")}?${f}`),p.join("/")}const Vn=({sourcePath:e,resultPath:t,value:r})=>{if(/^\d{4}-\d{2}-\d{2}/.test(n=r)&&Date.parse(n)||function(e){try{new URL(e,e.startsWith("/")?"https://acme.com":void 0)}catch{return!1}return!0}(r))return!1;var n;const o=e.at(-1);return!("slug"===e.at(-2)&&"current"===o||"string"==typeof o&&o.startsWith("_")||"number"==typeof o&&"marks"===e.at(-2)||"href"===o&&"number"==typeof e.at(-2)&&"markDefs"===e.at(-3)||"style"===o||"listItem"===o||e.some((e=>"meta"===e||"metadata"===e||"openGraph"===e||"seo"===e))||Yn(e)||Yn(t)||"string"==typeof o&&Qn.has(o))},Qn=new Set(["color","colour","currency","email","format","gid","hex","href","hsl","hsla","icon","id","index","key","language","layout","link","linkAction","locale","lqip","page","path","ref","rgb","rgba","route","secret","slug","status","tag","template","theme","type","unit","url","username","variant","website"]);function Yn(e){return e.some((e=>"string"==typeof e&&null!==e.match(/type/i)))}function Xn(e,t,r){var n,o,s,i,a,u,c,l,h;const{filter:d,logger:f,enabled:p}=r;if(!p){const o="config.enabled must be true, don't call this function otherwise";throw null==(n=null==f?void 0:f.error)||n.call(f,`[@sanity/client]: ${o}`,{result:e,resultSourceMap:t,config:r}),new TypeError(o)}if(!t)return null==(o=null==f?void 0:f.error)||o.call(f,"[@sanity/client]: Missing Content Source Map from response body",{result:e,resultSourceMap:t,config:r}),e;if(!r.studioUrl){const n="config.studioUrl must be defined";throw null==(s=null==f?void 0:f.error)||s.call(f,`[@sanity/client]: ${n}`,{result:e,resultSourceMap:t,config:r}),new TypeError(n)}const y={encoded:[],skipped:[]},m=Bn(e,t,(({sourcePath:e,sourceDocument:t,resultPath:n,value:o})=>{if(!1===("function"==typeof d?d({sourcePath:e,resultPath:n,filterDefault:Vn,sourceDocument:t,value:o}):Vn({sourcePath:e,resultPath:n,filterDefault:Vn,sourceDocument:t,value:o})))return f&&y.skipped.push({path:Kn(e),value:`${o.slice(0,20)}${o.length>20?"...":""}`,length:o.length}),o;f&&y.encoded.push({path:Kn(e),value:`${o.slice(0,20)}${o.length>20?"...":""}`,length:o.length});const{baseUrl:s,workspace:i,tool:a}=function(e){let t="string"==typeof e?e:e.baseUrl;return"/"!==t&&(t=t.replace(/\/$/,"")),"string"==typeof e?{baseUrl:t}:{...e,baseUrl:t}}("function"==typeof r.studioUrl?r.studioUrl(t):r.studioUrl);if(!s)return o;const{_id:u,_type:c,_projectId:l,_dataset:h}=t;return Xe(o,{origin:"sanity.io",href:Gn({baseUrl:s,workspace:i,tool:a,id:u,type:c,path:e,...!r.omitCrossDatasetReferenceData&&{dataset:h,projectId:l}})},!1)}));if(f){const e=y.skipped.length,t=y.encoded.length;if((e||t)&&(null==(i=(null==f?void 0:f.groupCollapsed)||f.log)||i("[@sanity/client]: Encoding source map into result"),null==(a=f.log)||a.call(f,`[@sanity/client]: Paths encoded: ${y.encoded.length}, skipped: ${y.skipped.length}`)),y.encoded.length>0&&(null==(u=null==f?void 0:f.log)||u.call(f,"[@sanity/client]: Table of encoded paths"),null==(c=(null==f?void 0:f.table)||f.log)||c(y.encoded)),y.skipped.length>0){const e=new Set;for(const{path:t}of y.skipped)e.add(t.replace(Dn,"0").replace(/\[\d+\]/g,"[]"));null==(l=null==f?void 0:f.log)||l.call(f,"[@sanity/client]: List of skipped paths",[...e.values()])}(e||t)&&(null==(h=null==f?void 0:f.groupEnd)||h.call(f))}return m}function Kn(e){return Fn(Ln(e))}var Zn=Object.freeze({__proto__:null,stegaEncodeSourceMap:Xn}),eo=Object.freeze({__proto__:null,encodeIntoResult:Bn,stegaEncodeSourceMap:Xn,stegaEncodeSourceMap$1:Zn}),to="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function ro(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var no={exports:{}};
7
+ */;function q(e){return"[object Object]"===Object.prototype.toString.call(e)}const N=["boolean","string","number"];function U(){return{processOptions:e=>{const t=e.body;return!t||"function"==typeof t.pipe||F(t)||-1===N.indexOf(typeof t)&&!Array.isArray(t)&&!function(e){if(!1===q(e))return!1;const t=e.constructor;if(void 0===t)return!0;const r=t.prototype;return!(!1===q(r)||!1===r.hasOwnProperty("isPrototypeOf"))}(t)?e:Object.assign({},e,{body:JSON.stringify(e.body),headers:Object.assign({},e.headers,{"Content-Type":"application/json"})})}}}function L(e){return{onResponse:e=>{const r=e.headers["content-type"]||"",n=-1!==r.indexOf("application/json");return e.body&&r&&n?Object.assign({},e,{body:t(e.body)}):e},processOptions:e=>Object.assign({},e,{headers:Object.assign({Accept:"application/json"},e.headers)})};function t(e){try{return JSON.parse(e)}catch(e){throw e.message=`Failed to parsed response body as JSON: ${e.message}`,e}}}let W={};typeof globalThis<"u"?W=globalThis:typeof window<"u"?W=window:typeof global<"u"?W=global:typeof self<"u"&&(W=self);var z=W;function H(e={}){const t=e.implementation||z.Observable;if(!t)throw new Error("`Observable` is not available in global scope, and no implementation was passed");return{onReturn:(e,r)=>new t((t=>(e.error.subscribe((e=>t.error(e))),e.progress.subscribe((e=>t.next(Object.assign({type:"progress"},e)))),e.response.subscribe((e=>{t.next(Object.assign({type:"response"},e)),t.complete()})),e.request.publish(r),()=>e.abort.publish())))}}var B=Object.defineProperty,J=(e,t,r)=>(((e,t,r)=>{t in e?B(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r})(e,"symbol"!=typeof t?t+"":t,r),r);class G{constructor(e){J(this,"__CANCEL__",!0),J(this,"message"),this.message=e}toString(){return"Cancel"+(this.message?`: ${this.message}`:"")}}const V=class{constructor(e){if(J(this,"promise"),J(this,"reason"),"function"!=typeof e)throw new TypeError("executor must be a function.");let t=null;this.promise=new Promise((e=>{t=e})),e((e=>{this.reason||(this.reason=new G(e),t(this.reason))}))}};J(V,"source",(()=>{let e;return{token:new V((t=>{e=t})),cancel:e}}));var Q=(e,t,r)=>("GET"===r.method||"HEAD"===r.method)&&(e.isNetworkError||!1);function X(e){return 100*Math.pow(2,e)+100*Math.random()}const Y=(e={})=>(e=>{const t=e.maxRetries||5,r=e.retryDelay||X,n=e.shouldRetry;return{onError:(e,o)=>{const s=o.options,i=s.maxRetries||t,a=s.retryDelay||r,u=s.shouldRetry||n,c=s.attemptNumber||0;if(null!==(l=s.body)&&"object"==typeof l&&"function"==typeof l.pipe||!u(e,c,s)||c>=i)return e;var l;const h=Object.assign({},o,{options:Object.assign({},s,{attemptNumber:c+1})});return setTimeout((()=>o.channels.request.publish(h)),a(c)),null}}})({shouldRetry:Q,...e});Y.shouldRetry=Q;var K=function(e,t){return K=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},K(e,t)};function Z(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}K(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}function ee(e,t,r,n){return new(r||(r=Promise))((function(o,s){function i(e){try{u(n.next(e))}catch(e){s(e)}}function a(e){try{u(n.throw(e))}catch(e){s(e)}}function u(e){var t;e.done?o(e.value):(t=e.value,t instanceof r?t:new r((function(e){e(t)}))).then(i,a)}u((n=n.apply(e,t||[])).next())}))}function te(e,t){var r,n,o,s,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return s={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function a(a){return function(u){return function(a){if(r)throw new TypeError("Generator is already executing.");for(;s&&(s=0,a[0]&&(i=0)),i;)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;switch(n=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,n=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1],o=a;break}if(o&&i.label<o[2]){i.label=o[2],i.ops.push(a);break}o[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e],n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,u])}}}function re(e){var t="function"==typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function ne(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,s=r.call(e),i=[];try{for(;(void 0===t||t-- >0)&&!(n=s.next()).done;)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=s.return)&&r.call(s)}finally{if(o)throw o.error}}return i}function oe(e,t,r){if(r||2===arguments.length)for(var n,o=0,s=t.length;o<s;o++)!n&&o in t||(n||(n=Array.prototype.slice.call(t,0,o)),n[o]=t[o]);return e.concat(n||Array.prototype.slice.call(t))}function se(e){return this instanceof se?(this.v=e,this):new se(e)}function ie(e,t,r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var n,o=r.apply(e,t||[]),s=[];return n={},i("next"),i("throw"),i("return"),n[Symbol.asyncIterator]=function(){return this},n;function i(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){s.push([e,t,r,n])>1||a(e,t)}))})}function a(e,t){try{(r=o[e](t)).value instanceof se?Promise.resolve(r.value.v).then(u,c):l(s[0][2],r)}catch(e){l(s[0][3],e)}var r}function u(e){a("next",e)}function c(e){a("throw",e)}function l(e,t){e(t),s.shift(),s.length&&a(s[0][0],s[0][1])}}function ae(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=re(e),t={},n("next"),n("throw"),n("return"),t[Symbol.asyncIterator]=function(){return this},t);function n(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){(function(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)})(n,o,(t=e[r](t)).done,t.value)}))}}}function ue(e){return"function"==typeof e}function ce(e){var t=e((function(e){Error.call(e),e.stack=(new Error).stack}));return t.prototype=Object.create(Error.prototype),t.prototype.constructor=t,t}"function"==typeof SuppressedError&&SuppressedError;var le=ce((function(e){return function(t){e(this),this.message=t?t.length+" errors occurred during unsubscription:\n"+t.map((function(e,t){return t+1+") "+e.toString()})).join("\n "):"",this.name="UnsubscriptionError",this.errors=t}}));function he(e,t){if(e){var r=e.indexOf(t);0<=r&&e.splice(r,1)}}var de=function(){function e(e){this.initialTeardown=e,this.closed=!1,this._parentage=null,this._finalizers=null}var t;return e.prototype.unsubscribe=function(){var e,t,r,n,o;if(!this.closed){this.closed=!0;var s=this._parentage;if(s)if(this._parentage=null,Array.isArray(s))try{for(var i=re(s),a=i.next();!a.done;a=i.next()){a.value.remove(this)}}catch(t){e={error:t}}finally{try{a&&!a.done&&(t=i.return)&&t.call(i)}finally{if(e)throw e.error}}else s.remove(this);var u=this.initialTeardown;if(ue(u))try{u()}catch(e){o=e instanceof le?e.errors:[e]}var c=this._finalizers;if(c){this._finalizers=null;try{for(var l=re(c),h=l.next();!h.done;h=l.next()){var d=h.value;try{pe(d)}catch(e){o=null!=o?o:[],e instanceof le?o=oe(oe([],ne(o)),ne(e.errors)):o.push(e)}}}catch(e){r={error:e}}finally{try{h&&!h.done&&(n=l.return)&&n.call(l)}finally{if(r)throw r.error}}}if(o)throw new le(o)}},e.prototype.add=function(t){var r;if(t&&t!==this)if(this.closed)pe(t);else{if(t instanceof e){if(t.closed||t._hasParent(this))return;t._addParent(this)}(this._finalizers=null!==(r=this._finalizers)&&void 0!==r?r:[]).push(t)}},e.prototype._hasParent=function(e){var t=this._parentage;return t===e||Array.isArray(t)&&t.includes(e)},e.prototype._addParent=function(e){var t=this._parentage;this._parentage=Array.isArray(t)?(t.push(e),t):t?[t,e]:e},e.prototype._removeParent=function(e){var t=this._parentage;t===e?this._parentage=null:Array.isArray(t)&&he(t,e)},e.prototype.remove=function(t){var r=this._finalizers;r&&he(r,t),t instanceof e&&t._removeParent(this)},e.EMPTY=((t=new e).closed=!0,t),e}();function fe(e){return e instanceof de||e&&"closed"in e&&ue(e.remove)&&ue(e.add)&&ue(e.unsubscribe)}function pe(e){ue(e)?e():e.unsubscribe()}de.EMPTY;var ye={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},me={setTimeout:function(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];return setTimeout.apply(void 0,oe([e,t],ne(r)))},clearTimeout:function(e){var t=me.delegate;return((null==t?void 0:t.clearTimeout)||clearTimeout)(e)},delegate:void 0};function ge(e){me.setTimeout((function(){throw e}))}function ve(){}var be=function(e){function t(t){var r=e.call(this)||this;return r.isStopped=!1,t?(r.destination=t,fe(t)&&t.add(r)):r.destination=Te,r}return Z(t,e),t.create=function(e,t,r){return new xe(e,t,r)},t.prototype.next=function(e){this.isStopped||this._next(e)},t.prototype.error=function(e){this.isStopped||(this.isStopped=!0,this._error(e))},t.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},t.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,e.prototype.unsubscribe.call(this),this.destination=null)},t.prototype._next=function(e){this.destination.next(e)},t.prototype._error=function(e){try{this.destination.error(e)}finally{this.unsubscribe()}},t.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},t}(de),we=Function.prototype.bind;function Ce(e,t){return we.call(e,t)}var Ee=function(){function e(e){this.partialObserver=e}return e.prototype.next=function(e){var t=this.partialObserver;if(t.next)try{t.next(e)}catch(e){Se(e)}},e.prototype.error=function(e){var t=this.partialObserver;if(t.error)try{t.error(e)}catch(e){Se(e)}else Se(e)},e.prototype.complete=function(){var e=this.partialObserver;if(e.complete)try{e.complete()}catch(e){Se(e)}},e}(),xe=function(e){function t(t,r,n){var o,s,i=e.call(this)||this;ue(t)||!t?o={next:null!=t?t:void 0,error:null!=r?r:void 0,complete:null!=n?n:void 0}:i&&ye.useDeprecatedNextContext?((s=Object.create(t)).unsubscribe=function(){return i.unsubscribe()},o={next:t.next&&Ce(t.next,s),error:t.error&&Ce(t.error,s),complete:t.complete&&Ce(t.complete,s)}):o=t;return i.destination=new Ee(o),i}return Z(t,e),t}(be);function Se(e){ge(e)}var Te={closed:!0,next:ve,error:function(e){throw e},complete:ve},_e="function"==typeof Symbol&&Symbol.observable||"@@observable";function Oe(e){return e}function je(e){return 0===e.length?Oe:1===e.length?e[0]:function(t){return e.reduce((function(e,t){return t(e)}),t)}}var $e=function(){function e(e){e&&(this._subscribe=e)}return e.prototype.lift=function(t){var r=new e;return r.source=this,r.operator=t,r},e.prototype.subscribe=function(e,t,r){var n,o=this,s=(n=e)&&n instanceof be||function(e){return e&&ue(e.next)&&ue(e.error)&&ue(e.complete)}(n)&&fe(n)?e:new xe(e,t,r);return function(){var e=o,t=e.operator,r=e.source;s.add(t?t.call(s,r):r?o._subscribe(s):o._trySubscribe(s))}(),s},e.prototype._trySubscribe=function(e){try{return this._subscribe(e)}catch(t){e.error(t)}},e.prototype.forEach=function(e,t){var r=this;return new(t=ke(t))((function(t,n){var o=new xe({next:function(t){try{e(t)}catch(e){n(e),o.unsubscribe()}},error:n,complete:t});r.subscribe(o)}))},e.prototype._subscribe=function(e){var t;return null===(t=this.source)||void 0===t?void 0:t.subscribe(e)},e.prototype[_e]=function(){return this},e.prototype.pipe=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return je(e)(this)},e.prototype.toPromise=function(e){var t=this;return new(e=ke(e))((function(e,r){var n;t.subscribe((function(e){return n=e}),(function(e){return r(e)}),(function(){return e(n)}))}))},e.create=function(t){return new e(t)},e}();function ke(e){var t;return null!==(t=null!=e?e:ye.Promise)&&void 0!==t?t:Promise}function Ae(e){return function(t){if(function(e){return ue(null==e?void 0:e.lift)}(t))return t.lift((function(t){try{return e(t,this)}catch(e){this.error(e)}}));throw new TypeError("Unable to lift unknown Observable type")}}function Pe(e,t,r,n,o){return new Ie(e,t,r,n,o)}var Ie=function(e){function t(t,r,n,o,s,i){var a=e.call(this,t)||this;return a.onFinalize=s,a.shouldUnsubscribe=i,a._next=r?function(e){try{r(e)}catch(e){t.error(e)}}:e.prototype._next,a._error=o?function(e){try{o(e)}catch(e){t.error(e)}finally{this.unsubscribe()}}:e.prototype._error,a._complete=n?function(){try{n()}catch(e){t.error(e)}finally{this.unsubscribe()}}:e.prototype._complete,a}return Z(t,e),t.prototype.unsubscribe=function(){var t;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var r=this.closed;e.prototype.unsubscribe.call(this),!r&&(null===(t=this.onFinalize)||void 0===t||t.call(this))}},t}(be);var Re=function(e){return e&&"number"==typeof e.length&&"function"!=typeof e};var Me="function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator";function De(e){if(e instanceof $e)return e;if(null!=e){if(function(e){return ue(e[_e])}(e))return s=e,new $e((function(e){var t=s[_e]();if(ue(t.subscribe))return t.subscribe(e);throw new TypeError("Provided object does not correctly implement Symbol.observable")}));if(Re(e))return o=e,new $e((function(e){for(var t=0;t<o.length&&!e.closed;t++)e.next(o[t]);e.complete()}));if(ue(null==(n=e)?void 0:n.then))return r=e,new $e((function(e){r.then((function(t){e.closed||(e.next(t),e.complete())}),(function(t){return e.error(t)})).then(null,ge)}));if(function(e){return Symbol.asyncIterator&&ue(null==e?void 0:e[Symbol.asyncIterator])}(e))return Fe(e);if(function(e){return ue(null==e?void 0:e[Me])}(e))return t=e,new $e((function(e){var r,n;try{for(var o=re(t),s=o.next();!s.done;s=o.next()){var i=s.value;if(e.next(i),e.closed)return}}catch(e){r={error:e}}finally{try{s&&!s.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}e.complete()}));if(function(e){return ue(null==e?void 0:e.getReader)}(e))return Fe(function(e){return ie(this,arguments,(function(){var t,r,n;return te(this,(function(o){switch(o.label){case 0:t=e.getReader(),o.label=1;case 1:o.trys.push([1,,9,10]),o.label=2;case 2:return[4,se(t.read())];case 3:return r=o.sent(),n=r.value,r.done?[4,se(void 0)]:[3,5];case 4:return[2,o.sent()];case 5:return[4,se(n)];case 6:return[4,o.sent()];case 7:return o.sent(),[3,2];case 8:return[3,10];case 9:return t.releaseLock(),[7];case 10:return[2]}}))}))}(e))}var t,r,n,o,s;throw function(e){return new TypeError("You provided "+(null!==e&&"object"==typeof e?"an invalid object":"'"+e+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}(e)}function Fe(e){return new $e((function(t){(function(e,t){var r,n,o,s;return ee(this,void 0,void 0,(function(){var i,a;return te(this,(function(u){switch(u.label){case 0:u.trys.push([0,5,6,11]),r=ae(e),u.label=1;case 1:return[4,r.next()];case 2:if((n=u.sent()).done)return[3,4];if(i=n.value,t.next(i),t.closed)return[2];u.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return a=u.sent(),o={error:a},[3,11];case 6:return u.trys.push([6,,9,10]),n&&!n.done&&(s=r.return)?[4,s.call(r)]:[3,8];case 7:u.sent(),u.label=8;case 8:return[3,10];case 9:if(o)throw o.error;return[7];case 10:return[7];case 11:return t.complete(),[2]}}))}))})(e,t).catch((function(e){return t.error(e)}))}))}function qe(e,t){return De(e)}var Ne=ce((function(e){return function(){e(this),this.name="EmptyError",this.message="no elements in sequence"}}));function Ue(e,t){return new Promise((function(t,r){var n,o=!1;e.subscribe({next:function(e){n=e,o=!0},error:r,complete:function(){o?t(n):r(new Ne)}})}))}function Le(e,t){return Ae((function(r,n){var o=0;r.subscribe(Pe(n,(function(r){n.next(e.call(t,r,o++))})))}))}var We=Array.isArray;function ze(e){return Le((function(t){return function(e,t){return We(t)?e.apply(void 0,oe([],ne(t))):e(t)}(e,t)}))}function He(e,t,r){t()}var Be=Array.isArray;function Je(e,t){return Ae((function(r,n){var o=0;r.subscribe(Pe(n,(function(r){return e.call(t,r,o++)&&n.next(r)})))}))}function Ge(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var r=function(e){return ue((t=e)[t.length-1])?e.pop():void 0;var t}(e);return r?function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return je(e)}(Ge.apply(void 0,oe([],ne(e))),ze(r)):Ae((function(t,r){var n,o;(n=oe([t],ne(function(e){return 1===e.length&&Be(e[0])?e[0]:e}(e))),void 0===o&&(o=Oe),function(e){He(0,(function(){for(var t=n.length,r=new Array(t),s=t,i=t,a=function(t){He(0,(function(){var a=qe(n[t]),u=!1;a.subscribe(Pe(e,(function(n){r[t]=n,u||(u=!0,i--),i||e.next(o(r.slice()))}),(function(){--s||e.complete()})))}))},u=0;u<t;u++)a(u)}))})(r)}))}var Ve={0:8203,1:8204,2:8205,3:8290,4:8291,5:8288,6:65279,7:8289,8:119155,9:119156,a:119157,b:119158,c:119159,d:119160,e:119161,f:119162},Qe={0:8203,1:8204,2:8205,3:65279},Xe=new Array(4).fill(String.fromCodePoint(Qe[0])).join("");function Ye(e,t,r="auto"){return!0===r||"auto"===r&&(function(e){return!(!Number.isNaN(Number(e))||/[a-z]/i.test(e)&&!/\d+(?:[-:\/]\d+){2}(?:T\d+(?:[-:\/]\d+){1,2}(\.\d+)?Z?)?/.test(e)||!Date.parse(e))}(e)||function(e){try{new URL(e,e.startsWith("/")?"https://acme.com":void 0)}catch{return!1}return!0}(e))?e:`${e}${function(e){let t=JSON.stringify(e);return`${Xe}${Array.from(t).map((e=>{let r=e.charCodeAt(0);if(r>255)throw new Error(`Only ASCII edit info can be encoded. Error attempting to encode ${t} on character ${e} (${r})`);return Array.from(r.toString(4).padStart(4,"0")).map((e=>String.fromCodePoint(Qe[e]))).join("")})).join("")}`}(t)}`}Object.fromEntries(Object.entries(Qe).map((e=>e.reverse()))),Object.fromEntries(Object.entries(Ve).map((e=>e.reverse())));var Ke=`${Object.values(Ve).map((e=>`\\u{${e.toString(16)}}`)).join("")}`,Ze=new RegExp(`[${Ke}]{4,}`,"gu");function et(e){return e&&JSON.parse(function(e){var t;return{cleaned:e.replace(Ze,""),encoded:(null==(t=e.match(Ze))?void 0:t[0])||""}}(JSON.stringify(e)).cleaned)}var tt=Object.defineProperty,rt=(e,t,r)=>(((e,t,r)=>{t in e?tt(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r})(e,"symbol"!=typeof t?t+"":t,r),r);class nt extends Error{constructor(e){const t=st(e);super(t.message),rt(this,"response"),rt(this,"statusCode",400),rt(this,"responseBody"),rt(this,"details"),Object.assign(this,t)}}class ot extends Error{constructor(e){const t=st(e);super(t.message),rt(this,"response"),rt(this,"statusCode",500),rt(this,"responseBody"),rt(this,"details"),Object.assign(this,t)}}function st(e){const t=e.body,r={response:e,statusCode:e.statusCode,responseBody:at(t,e),message:"",details:void 0};if(t.error&&t.message)return r.message=`${t.error} - ${t.message}`,r;if(function(e){return it(e)&&it(e.error)&&"mutationError"===e.error.type&&"string"==typeof e.error.description}(t)||function(e){return it(e)&&it(e.error)&&"actionError"===e.error.type&&"string"==typeof e.error.description}(t)){const e=t.error.items||[],n=e.slice(0,5).map((e=>{var t;return null==(t=e.error)?void 0:t.description})).filter(Boolean);let o=n.length?`:\n- ${n.join("\n- ")}`:"";return e.length>5&&(o+=`\n...and ${e.length-5} more`),r.message=`${t.error.description}${o}`,r.details=t.error,r}return t.error&&t.error.description?(r.message=t.error.description,r.details=t.error,r):(r.message=t.error||t.message||function(e){const t=e.statusMessage?` ${e.statusMessage}`:"";return`${e.method}-request to ${e.url} resulted in HTTP ${e.statusCode}${t}`}(e),r)}function it(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)}function at(e,t){return-1!==(t.headers["content-type"]||"").toLowerCase().indexOf("application/json")?JSON.stringify(e,null,2):e}const ut={onResponse:e=>{if(e.statusCode>=500)throw new ot(e);if(e.statusCode>=400)throw new nt(e);return e}},ct={onResponse:e=>{const t=e.headers["x-sanity-warning"];return(Array.isArray(t)?t:[t]).filter(Boolean).forEach((e=>console.warn(e))),e}};function lt(e,t,r){if(0===r.maxRetries)return!1;const n="GET"===r.method||"HEAD"===r.method,o=(r.uri||r.url).startsWith("/data/query"),s=e.response&&(429===e.response.statusCode||502===e.response.statusCode||503===e.response.statusCode);return!(!n&&!o||!s)||Y.shouldRetry(e,t,r)}function ht(e){if("string"==typeof e)return{id:e};if(Array.isArray(e))return{query:"*[_id in $ids]",params:{ids:e}};if("object"==typeof e&&null!==e&&"query"in e&&"string"==typeof e.query)return"params"in e&&"object"==typeof e.params&&null!==e.params?{query:e.query,params:e.params}:{query:e.query};const t=["* Document ID (<docId>)","* Array of document IDs","* Object containing `query`"].join("\n");throw new Error(`Unknown selection - must be one of:\n\n${t}`)}const dt=["image","file"],ft=["before","after","replace"],pt=e=>{if(!/^(~[a-z0-9]{1}[-\w]{0,63}|[a-z0-9]{1}[-\w]{0,63})$/.test(e))throw new Error("Datasets can only contain lowercase characters, numbers, underscores and dashes, and start with tilde, and be maximum 64 characters")},yt=(e,t)=>{if(null===t||"object"!=typeof t||Array.isArray(t))throw new Error(`${e}() takes an object of properties`)},mt=(e,t)=>{if("string"!=typeof t||!/^[a-z0-9_][a-z0-9_.-]{0,127}$/i.test(t)||t.includes(".."))throw new Error(`${e}(): "${t}" is not a valid document ID`)},gt=(e,t)=>{if(!t._id)throw new Error(`${e}() requires that the document contains an ID ("_id" property)`);mt(e,t._id)},vt=e=>{if(!e.dataset)throw new Error("`dataset` must be provided to perform queries");return e.dataset||""},bt=e=>{if("string"!=typeof e||!/^[a-z0-9._-]{1,75}$/i.test(e))throw new Error("Tag can only contain alphanumeric characters, underscores, dashes and dots, and be between one and 75 characters long.");return e};var wt,Ct=Object.defineProperty,Et=(e,t,r)=>(((e,t,r)=>{t in e?Ct(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r})(e,"symbol"!=typeof t?t+"":t,r),r),xt=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},St=(e,t,r)=>(xt(e,t,"read from private field"),r?r.call(e):t.get(e)),Tt=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},_t=(e,t,r,n)=>(xt(e,t,"write to private field"),t.set(e,r),r);class Ot{constructor(e,t={}){Et(this,"selection"),Et(this,"operations"),this.selection=e,this.operations=t}set(e){return this._assign("set",e)}setIfMissing(e){return this._assign("setIfMissing",e)}diffMatchPatch(e){return yt("diffMatchPatch",e),this._assign("diffMatchPatch",e)}unset(e){if(!Array.isArray(e))throw new Error("unset(attrs) takes an array of attributes to unset, non-array given");return this.operations=Object.assign({},this.operations,{unset:e}),this}inc(e){return this._assign("inc",e)}dec(e){return this._assign("dec",e)}insert(e,t,r){return((e,t,r)=>{const n="insert(at, selector, items)";if(-1===ft.indexOf(e)){const e=ft.map((e=>`"${e}"`)).join(", ");throw new Error(`${n} takes an "at"-argument which is one of: ${e}`)}if("string"!=typeof t)throw new Error(`${n} takes a "selector"-argument which must be a string`);if(!Array.isArray(r))throw new Error(`${n} takes an "items"-argument which must be an array`)})(e,t,r),this._assign("insert",{[e]:t,items:r})}append(e,t){return this.insert("after",`${e}[-1]`,t)}prepend(e,t){return this.insert("before",`${e}[0]`,t)}splice(e,t,r,n){const o=t<0?t-1:t,s=typeof r>"u"||-1===r?-1:Math.max(0,t+r),i=`${e}[${o}:${o<0&&s>=0?"":s}]`;return this.insert("replace",i,n||[])}ifRevisionId(e){return this.operations.ifRevisionID=e,this}serialize(){return{...ht(this.selection),...this.operations}}toJSON(){return this.serialize()}reset(){return this.operations={},this}_assign(e,t,r=!0){return yt(e,t),this.operations=Object.assign({},this.operations,{[e]:Object.assign({},r&&this.operations[e]||{},t)}),this}_set(e,t){return this._assign(e,t,!1)}}wt=new WeakMap;let jt=class e extends Ot{constructor(e,t,r){super(e,t),Tt(this,wt,void 0),_t(this,wt,r)}clone(){return new e(this.selection,{...this.operations},St(this,wt))}commit(e){if(!St(this,wt))throw new Error("No `client` passed to patch, either provide one or pass the patch to a clients `mutate()` method");const t="string"==typeof this.selection,r=Object.assign({returnFirst:t,returnDocuments:!0},e);return St(this,wt).mutate({patch:this.serialize()},r)}};var $t;$t=new WeakMap;let kt=class e extends Ot{constructor(e,t,r){super(e,t),Tt(this,$t,void 0),_t(this,$t,r)}clone(){return new e(this.selection,{...this.operations},St(this,$t))}commit(e){if(!St(this,$t))throw new Error("No `client` passed to patch, either provide one or pass the patch to a clients `mutate()` method");const t="string"==typeof this.selection,r=Object.assign({returnFirst:t,returnDocuments:!0},e);return St(this,$t).mutate({patch:this.serialize()},r)}};var At=Object.defineProperty,Pt=(e,t,r)=>(((e,t,r)=>{t in e?At(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r})(e,"symbol"!=typeof t?t+"":t,r),r),It=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},Rt=(e,t,r)=>(It(e,t,"read from private field"),r?r.call(e):t.get(e)),Mt=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},Dt=(e,t,r,n)=>(It(e,t,"write to private field"),t.set(e,r),r);const Ft={returnDocuments:!1};class qt{constructor(e=[],t){Pt(this,"operations"),Pt(this,"trxId"),this.operations=e,this.trxId=t}create(e){return yt("create",e),this._add({create:e})}createIfNotExists(e){const t="createIfNotExists";return yt(t,e),gt(t,e),this._add({[t]:e})}createOrReplace(e){const t="createOrReplace";return yt(t,e),gt(t,e),this._add({[t]:e})}delete(e){return mt("delete",e),this._add({delete:{id:e}})}transactionId(e){return e?(this.trxId=e,this):this.trxId}serialize(){return[...this.operations]}toJSON(){return this.serialize()}reset(){return this.operations=[],this}_add(e){return this.operations.push(e),this}}var Nt;Nt=new WeakMap;let Ut=class e extends qt{constructor(e,t,r){super(e,r),Mt(this,Nt,void 0),Dt(this,Nt,t)}clone(){return new e([...this.operations],Rt(this,Nt),this.trxId)}commit(e){if(!Rt(this,Nt))throw new Error("No `client` passed to transaction, either provide one or pass the transaction to a clients `mutate()` method");return Rt(this,Nt).mutate(this.serialize(),Object.assign({transactionId:this.trxId},Ft,e||{}))}patch(e,t){const r="function"==typeof t;if("string"!=typeof e&&e instanceof kt)return this._add({patch:e.serialize()});if(r){const r=t(new kt(e,{},Rt(this,Nt)));if(!(r instanceof kt))throw new Error("function passed to `patch()` must return the patch");return this._add({patch:r.serialize()})}return this._add({patch:{id:e,...t}})}};var Lt;Lt=new WeakMap;let Wt=class e extends qt{constructor(e,t,r){super(e,r),Mt(this,Lt,void 0),Dt(this,Lt,t)}clone(){return new e([...this.operations],Rt(this,Lt),this.trxId)}commit(e){if(!Rt(this,Lt))throw new Error("No `client` passed to transaction, either provide one or pass the transaction to a clients `mutate()` method");return Rt(this,Lt).mutate(this.serialize(),Object.assign({transactionId:this.trxId},Ft,e||{}))}patch(e,t){const r="function"==typeof t;if("string"!=typeof e&&e instanceof jt)return this._add({patch:e.serialize()});if(r){const r=t(new jt(e,{},Rt(this,Lt)));if(!(r instanceof jt))throw new Error("function passed to `patch()` must return the patch");return this._add({patch:r.serialize()})}return this._add({patch:{id:e,...t}})}};function zt(e){return"https://www.sanity.io/help/"+e}const Ht=e=>function(e){let t,r=!1;return(...n)=>(r||(t=e(...n),r=!0),t)}(((...t)=>console.warn(e.join(" "),...t))),Bt=Ht(["Since you haven't set a value for `useCdn`, we will deliver content using our","global, edge-cached API-CDN. If you wish to have content delivered faster, set","`useCdn: false` to use the Live API. Note: You may incur higher costs using the live API."]),Jt=Ht(["The Sanity client is configured with the `perspective` set to `previewDrafts`, which doesn't support the API-CDN.","The Live API will be used instead. Set `useCdn: false` in your configuration to hide this warning."]),Gt=Ht(["You have configured Sanity client to use a token in the browser. This may cause unintentional security issues.",`See ${zt("js-client-browser-token")} for more information and how to hide this warning.`]),Vt=Ht(["Using the Sanity client without specifying an API version is deprecated.",`See ${zt("js-client-api-version")}`]),Qt=Ht(["The default export of @sanity/client has been deprecated. Use the named export `createClient` instead."]),Xt={apiHost:"https://api.sanity.io",apiVersion:"1",useProjectHostname:!0,stega:{enabled:!1}},Yt=["localhost","127.0.0.1","0.0.0.0"];const Kt=function(e){switch(e){case"previewDrafts":case"published":case"raw":return;default:throw new TypeError("Invalid API perspective string, expected `published`, `previewDrafts` or `raw`")}},Zt=(e,t)=>{const r={...t,...e,stega:{..."boolean"==typeof t.stega?{enabled:t.stega}:t.stega||Xt.stega,..."boolean"==typeof e.stega?{enabled:e.stega}:e.stega||{}}};r.apiVersion||Vt();const n={...Xt,...r},o=n.useProjectHostname;if(typeof Promise>"u"){const e=zt("js-client-promise-polyfill");throw new Error(`No native Promise-implementation found, polyfill needed - see ${e}`)}if(o&&!n.projectId)throw new Error("Configuration must contain `projectId`");if("string"==typeof n.perspective&&Kt(n.perspective),"encodeSourceMap"in n)throw new Error("It looks like you're using options meant for '@sanity/preview-kit/client'. 'encodeSourceMap' is not supported in '@sanity/client'. Did you mean 'stega.enabled'?");if("encodeSourceMapAtPath"in n)throw new Error("It looks like you're using options meant for '@sanity/preview-kit/client'. 'encodeSourceMapAtPath' is not supported in '@sanity/client'. Did you mean 'stega.filter'?");if("boolean"!=typeof n.stega.enabled)throw new Error(`stega.enabled must be a boolean, received ${n.stega.enabled}`);if(n.stega.enabled&&void 0===n.stega.studioUrl)throw new Error("stega.studioUrl must be defined when stega.enabled is true");if(n.stega.enabled&&"string"!=typeof n.stega.studioUrl&&"function"!=typeof n.stega.studioUrl)throw new Error(`stega.studioUrl must be a string or a function, received ${n.stega.studioUrl}`);const s=typeof window<"u"&&window.location&&window.location.hostname,i=s&&(e=>-1!==Yt.indexOf(e))(window.location.hostname);s&&i&&n.token&&!0!==n.ignoreBrowserTokenWarning?Gt():typeof n.useCdn>"u"&&Bt(),o&&(e=>{if(!/^[-a-z0-9]+$/i.test(e))throw new Error("`projectId` can only contain only a-z, 0-9 and dashes")})(n.projectId),n.dataset&&pt(n.dataset),"requestTagPrefix"in n&&(n.requestTagPrefix=n.requestTagPrefix?bt(n.requestTagPrefix).replace(/\.+$/,""):void 0),n.apiVersion=`${n.apiVersion}`.replace(/^v/,""),n.isDefaultApi=n.apiHost===Xt.apiHost,n.useCdn=!1!==n.useCdn&&!n.withCredentials,function(e){if("1"===e||"X"===e)return;const t=new Date(e);if(!(/^\d{4}-\d{2}-\d{2}$/.test(e)&&t instanceof Date&&t.getTime()>0))throw new Error("Invalid API version string, expected `1` or date in format `YYYY-MM-DD`")}(n.apiVersion);const a=n.apiHost.split("://",2),u=a[0],c=a[1],l=n.isDefaultApi?"apicdn.sanity.io":c;return n.useProjectHostname?(n.url=`${u}://${n.projectId}.${c}/v${n.apiVersion}`,n.cdnUrl=`${u}://${n.projectId}.${l}/v${n.apiVersion}`):(n.url=`${n.apiHost}/v${n.apiVersion}`,n.cdnUrl=n.url),n},er="X-Sanity-Project-ID";const tr=({query:e,params:t={},options:r={}})=>{const n=new URLSearchParams,{tag:o,returnQuery:s,...i}=r;o&&n.append("tag",o),n.append("query",e);for(const[e,r]of Object.entries(t))n.append(`$${e}`,JSON.stringify(r));for(const[e,t]of Object.entries(i))t&&n.append(e,`${t}`);return!1===s&&n.append("returnQuery","false"),`?${n}`},rr=(e={})=>{return{dryRun:e.dryRun,returnIds:!0,returnDocuments:(t=e.returnDocuments,r=!0,!1===t?void 0:typeof t>"u"?r:t),visibility:e.visibility||"sync",autoGenerateArrayKeys:e.autoGenerateArrayKeys,skipCrossDatasetReferenceValidation:e.skipCrossDatasetReferenceValidation};var t,r},nr=e=>"response"===e.type,or=e=>e.body,sr=11264;function ir(e,t,r,n,o={},s={}){const i="stega"in s?{...r||{},..."boolean"==typeof s.stega?{enabled:s.stega}:s.stega||{}}:r,a=i.enabled?et(o):o,u=!1===s.filterResponse?e=>e:e=>e.result,{cache:c,next:l,...h}={useAbortSignal:typeof s.signal<"u",resultSourceMap:i.enabled?"withKeyArraySelector":s.resultSourceMap,...s,returnQuery:!1===s.filterResponse&&!1!==s.returnQuery},d=pr(e,t,"query",{query:n,params:a},typeof c<"u"||typeof l<"u"?{...h,fetch:{cache:c,next:l}}:h);return i.enabled?d.pipe(function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return Ge.apply(void 0,oe([],ne(e)))}(qe(Promise.resolve().then((function(){return to})).then((function(e){return e.stegaEncodeSourceMap$1})).then((({stegaEncodeSourceMap:e})=>e)))),Le((([e,t])=>{const r=t(e.result,e.resultSourceMap,i);return u({...e,result:r})}))):d.pipe(Le(u))}function ar(e,t,r,n={}){return mr(e,t,{uri:vr(e,"doc",r),json:!0,tag:n.tag}).pipe(Je(nr),Le((e=>e.body.documents&&e.body.documents[0])))}function ur(e,t,r,n={}){return mr(e,t,{uri:vr(e,"doc",r.join(",")),json:!0,tag:n.tag}).pipe(Je(nr),Le((e=>{const t=(n=e.body.documents||[],o=e=>e._id,n.reduce(((e,t)=>(e[o(t)]=t,e)),Object.create(null)));var n,o;return r.map((e=>t[e]||null))})))}function cr(e,t,r,n){return gt("createIfNotExists",r),yr(e,t,r,"createIfNotExists",n)}function lr(e,t,r,n){return gt("createOrReplace",r),yr(e,t,r,"createOrReplace",n)}function hr(e,t,r,n){return pr(e,t,"mutate",{mutations:[{delete:ht(r)}]},n)}function dr(e,t,r,n){let o;o=r instanceof kt||r instanceof jt?{patch:r.serialize()}:r instanceof Ut||r instanceof Wt?r.serialize():r;return pr(e,t,"mutate",{mutations:Array.isArray(o)?o:[o],transactionId:n&&n.transactionId||void 0},n)}function fr(e,t,r,n){return pr(e,t,"actions",{actions:Array.isArray(r)?r:[r],transactionId:n&&n.transactionId||void 0,skipCrossDatasetReferenceValidation:n&&n.skipCrossDatasetReferenceValidation||void 0,dryRun:n&&n.dryRun||void 0},n)}function pr(e,t,r,n,o={}){const s="mutate"===r,i="actions"===r,a="query"===r,u=s||i?"":tr(n),c=!s&&!i&&u.length<sr,l=c?u:"",h=o.returnFirst,{timeout:d,token:f,tag:p,headers:y,returnQuery:m,lastLiveEventId:g}=o;return mr(e,t,{method:c?"GET":"POST",uri:vr(e,r,l),json:!0,body:c?void 0:n,query:s&&rr(o),timeout:d,headers:y,token:f,tag:p,returnQuery:m,perspective:o.perspective,resultSourceMap:o.resultSourceMap,lastLiveEventId:Array.isArray(g)?g[0]:g,canUseCdn:a,signal:o.signal,fetch:o.fetch,useAbortSignal:o.useAbortSignal,useCdn:o.useCdn}).pipe(Je(nr),Le(or),Le((e=>{if(!s)return e;const t=e.results||[];if(o.returnDocuments)return h?t[0]&&t[0].document:t.map((e=>e.document));const r=h?"documentId":"documentIds",n=h?t[0]&&t[0].id:t.map((e=>e.id));return{transactionId:e.transactionId,results:t,[r]:n}})))}function yr(e,t,r,n,o={}){return pr(e,t,"mutate",{mutations:[{[n]:r}]},Object.assign({returnFirst:!0,returnDocuments:!0},o))}function mr(e,t,r){var n,o;const s=r.url||r.uri,i=e.config(),a=typeof r.canUseCdn>"u"?["GET","HEAD"].indexOf(r.method||"GET")>=0&&0===s.indexOf("/data/"):r.canUseCdn;let u=(null!=(n=r.useCdn)?n:i.useCdn)&&a;const c=r.tag&&i.requestTagPrefix?[i.requestTagPrefix,r.tag].join("."):r.tag||i.requestTagPrefix;if(c&&null!==r.tag&&(r.query={tag:bt(c),...r.query}),["GET","HEAD","POST"].indexOf(r.method||"GET")>=0&&0===s.indexOf("/data/query/")){const e=null!=(o=r.resultSourceMap)?o:i.resultSourceMap;void 0!==e&&!1!==e&&(r.query={resultSourceMap:e,...r.query});const t=r.perspective||i.perspective;"string"==typeof t&&"raw"!==t&&(Kt(t),r.query={perspective:t,...r.query},"previewDrafts"===t&&u&&(u=!1,Jt())),r.lastLiveEventId&&(r.query={...r.query,lastLiveEventId:r.lastLiveEventId}),!1===r.returnQuery&&(r.query={returnQuery:"false",...r.query})}const l=function(e,t={}){const r={},n=t.token||e.token;n&&(r.Authorization=`Bearer ${n}`),!t.useGlobalApi&&!e.useProjectHostname&&e.projectId&&(r[er]=e.projectId);const o=!!(typeof t.withCredentials>"u"?e.token||e.withCredentials:t.withCredentials),s=typeof t.timeout>"u"?e.timeout:t.timeout;return Object.assign({},t,{headers:Object.assign({},r,t.headers||{}),timeout:typeof s>"u"?3e5:s,proxy:t.proxy||e.proxy,json:!0,withCredentials:o,fetch:"object"==typeof t.fetch&&"object"==typeof e.fetch?{...e.fetch,...t.fetch}:t.fetch||e.fetch})}(i,Object.assign({},r,{url:br(e,s,u)})),h=new $e((e=>t(l,i.requester).subscribe(e)));return r.signal?h.pipe((d=r.signal,e=>new $e((t=>{const r=()=>t.error(function(e){var t,r;if(wr)return new DOMException(null!=(t=null==e?void 0:e.reason)?t:"The operation was aborted.","AbortError");const n=new Error(null!=(r=null==e?void 0:e.reason)?r:"The operation was aborted.");return n.name="AbortError",n}(d));if(d&&d.aborted)return void r();const n=e.subscribe(t);return d.addEventListener("abort",r),()=>{d.removeEventListener("abort",r),n.unsubscribe()}})))):h;var d}function gr(e,t,r){return mr(e,t,r).pipe(Je((e=>"response"===e.type)),Le((e=>e.body)))}function vr(e,t,r){const n=e.config(),o=`/${t}/${vt(n)}`;return`/data${r?`${o}/${r}`:o}`.replace(/\/($|\?)/,"$1")}function br(e,t,r=!1){const{url:n,cdnUrl:o}=e.config();return`${r?o:n}/${t.replace(/^\//,"")}`}const wr=!!globalThis.DOMException;var Cr,Er,xr,Sr,Tr=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},_r=(e,t,r)=>(Tr(e,t,"read from private field"),r?r.call(e):t.get(e)),Or=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},jr=(e,t,r,n)=>(Tr(e,t,"write to private field"),t.set(e,r),r);class $r{constructor(e,t){Or(this,Cr,void 0),Or(this,Er,void 0),jr(this,Cr,e),jr(this,Er,t)}upload(e,t,r){return Ar(_r(this,Cr),_r(this,Er),e,t,r)}}Cr=new WeakMap,Er=new WeakMap;class kr{constructor(e,t){Or(this,xr,void 0),Or(this,Sr,void 0),jr(this,xr,e),jr(this,Sr,t)}upload(e,t,r){return Ue(Ar(_r(this,xr),_r(this,Sr),e,t,r).pipe(Je((e=>"response"===e.type)),Le((e=>e.body.document))))}}function Ar(e,t,r,n,o={}){(e=>{if(-1===dt.indexOf(e))throw new Error(`Invalid asset type: ${e}. Must be one of ${dt.join(", ")}`)})(r);let s=o.extract||void 0;s&&!s.length&&(s=["none"]);const i=vt(e.config()),a="image"===r?"images":"files",u=function(e,t){return typeof File>"u"||!(t instanceof File)?e:Object.assign({filename:!1===e.preserveFilename?void 0:t.name,contentType:t.type},e)}(o,n),{tag:c,label:l,title:h,description:d,creditLine:f,filename:p,source:y}=u,m={label:l,title:h,description:d,filename:p,meta:s,creditLine:f};return y&&(m.sourceId=y.id,m.sourceName=y.name,m.sourceUrl=y.url),mr(e,t,{tag:c,method:"POST",timeout:u.timeout||0,uri:`/assets/${a}/${i}`,headers:u.contentType?{"Content-Type":u.contentType}:{},query:m,body:n})}xr=new WeakMap,Sr=new WeakMap;const Pr=["includePreviousRevision","includeResult","visibility","effectFormat","tag"],Ir={includeResult:!0};function Rr(e,t,r={}){const{url:n,token:o,withCredentials:s,requestTagPrefix:i}=this.config(),a=r.tag&&i?[i,r.tag].join("."):r.tag,u={...(h=r,d=Ir,Object.keys(d).concat(Object.keys(h)).reduce(((e,t)=>(e[t]=typeof h[t]>"u"?d[t]:h[t],e)),{})),tag:a},c=((e,t)=>t.reduce(((t,r)=>(typeof e[r]>"u"||(t[r]=e[r]),t)),{}))(u,Pr),l=`${n}${vr(this,"listen",tr({query:e,params:t,options:{tag:a,...c}}))}`;var h,d;if(l.length>14800)return new $e((e=>e.error(new Error("Query too large for listener"))));const f=u.events?u.events:["mutation"],p=-1!==f.indexOf("reconnect"),y={};return(o||s)&&(y.withCredentials=!0),o&&(y.headers={Authorization:`Bearer ${o}`}),new $e((e=>{let t,r,n=!1,o=!1;function s(){n||(p&&e.next({type:"reconnect"}),!n&&t.readyState===t.CLOSED&&(c(),clearTimeout(r),r=setTimeout(h,100)))}function i(t){e.error(function(e){if(e instanceof Error)return e;const t=Mr(e);return t instanceof Error?t:new Error(function(e){return e.error?e.error.description?e.error.description:"string"==typeof e.error?e.error:JSON.stringify(e.error,null,2):e.message||"Unknown listener error"}(t))}(t))}function a(t){const r=Mr(t);return r instanceof Error?e.error(r):e.next(r)}function u(){n=!0,c(),e.complete()}function c(){t&&(t.removeEventListener("error",s),t.removeEventListener("channelError",i),t.removeEventListener("disconnect",u),f.forEach((e=>t.removeEventListener(e,a))),t.close())}function h(){(async function(){const{default:e}=await Promise.resolve().then((function(){return io}));if(o)return;const t=new e(l,y);return t.addEventListener("error",s),t.addEventListener("channelError",i),t.addEventListener("disconnect",u),f.forEach((e=>t.addEventListener(e,a))),t})().then((e=>{e&&(t=e,o&&c())})).catch((t=>{e.error(t),d()}))}function d(){n=!0,c(),o=!0}return h(),d}))}function Mr(e){try{const t=e.data&&JSON.parse(e.data)||{};return Object.assign({type:e.type},t)}catch(e){return e}}var Dr=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},Fr=(e,t,r)=>(Dr(e,t,"read from private field"),r?r.call(e):t.get(e));const qr="2021-03-26";var Nr;class Ur{constructor(e){var t,r,n;((e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)})(this,Nr,void 0),n=e,Dr(t=this,r=Nr,"write to private field"),r.set(t,n)}events(){const e=Fr(this,Nr).config().apiVersion.replace(/^v/,"");if("X"!==e&&e<qr)throw new Error(`The live events API requires API version ${qr} or later. The current API version is ${e}. Please update your API version to use this feature.`);const t=vr(Fr(this,Nr),"live/events"),r=new URL(Fr(this,Nr).getUrl(t,!1)),n=["restart","message"];return new $e((e=>{let t,o,s=!1,i=!1;function a(r){if(!s){if("data"in r){const t=Lr(r);e.error(new Error(t.message,{cause:t}))}t.readyState===t.CLOSED&&(c(),clearTimeout(o),o=setTimeout(l,100))}}function u(t){const r=Lr(t);return r instanceof Error?e.error(r):e.next(r)}function c(){if(t){t.removeEventListener("error",a);for(const e of n)t.removeEventListener(e,u);t.close()}}function l(){(async function(){const e=typeof EventSource>"u"?(await Promise.resolve().then((function(){return io}))).default:EventSource;if(i)return;const t=new e(r.toString());t.addEventListener("error",a);for(const e of n)t.addEventListener(e,u);return t})().then((e=>{e&&(t=e,i&&c())})).catch((t=>{e.error(t),h()}))}function h(){s=!0,c(),i=!0}return l(),h}))}}function Lr(e){try{const t=e.data&&JSON.parse(e.data)||{};return{type:e.type,id:e.lastEventId,...t}}catch(e){return e}}Nr=new WeakMap;var Wr,zr,Hr,Br,Jr=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},Gr=(e,t,r)=>(Jr(e,t,"read from private field"),r?r.call(e):t.get(e)),Vr=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},Qr=(e,t,r,n)=>(Jr(e,t,"write to private field"),t.set(e,r),r);class Xr{constructor(e,t){Vr(this,Wr,void 0),Vr(this,zr,void 0),Qr(this,Wr,e),Qr(this,zr,t)}create(e,t){return Kr(Gr(this,Wr),Gr(this,zr),"PUT",e,t)}edit(e,t){return Kr(Gr(this,Wr),Gr(this,zr),"PATCH",e,t)}delete(e){return Kr(Gr(this,Wr),Gr(this,zr),"DELETE",e)}list(){return gr(Gr(this,Wr),Gr(this,zr),{uri:"/datasets",tag:null})}}Wr=new WeakMap,zr=new WeakMap;class Yr{constructor(e,t){Vr(this,Hr,void 0),Vr(this,Br,void 0),Qr(this,Hr,e),Qr(this,Br,t)}create(e,t){return Ue(Kr(Gr(this,Hr),Gr(this,Br),"PUT",e,t))}edit(e,t){return Ue(Kr(Gr(this,Hr),Gr(this,Br),"PATCH",e,t))}delete(e){return Ue(Kr(Gr(this,Hr),Gr(this,Br),"DELETE",e))}list(){return Ue(gr(Gr(this,Hr),Gr(this,Br),{uri:"/datasets",tag:null}))}}function Kr(e,t,r,n,o){return pt(n),gr(e,t,{method:r,uri:`/datasets/${n}`,body:o,tag:null})}Hr=new WeakMap,Br=new WeakMap;var Zr,en,tn,rn,nn=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},on=(e,t,r)=>(nn(e,t,"read from private field"),r?r.call(e):t.get(e)),sn=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},an=(e,t,r,n)=>(nn(e,t,"write to private field"),t.set(e,r),r);class un{constructor(e,t){sn(this,Zr,void 0),sn(this,en,void 0),an(this,Zr,e),an(this,en,t)}list(e){const t=!1===(null==e?void 0:e.includeMembers)?"/projects?includeMembers=false":"/projects";return gr(on(this,Zr),on(this,en),{uri:t})}getById(e){return gr(on(this,Zr),on(this,en),{uri:`/projects/${e}`})}}Zr=new WeakMap,en=new WeakMap;class cn{constructor(e,t){sn(this,tn,void 0),sn(this,rn,void 0),an(this,tn,e),an(this,rn,t)}list(e){const t=!1===(null==e?void 0:e.includeMembers)?"/projects?includeMembers=false":"/projects";return Ue(gr(on(this,tn),on(this,rn),{uri:t}))}getById(e){return Ue(gr(on(this,tn),on(this,rn),{uri:`/projects/${e}`}))}}tn=new WeakMap,rn=new WeakMap;var ln,hn,dn,fn,pn=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},yn=(e,t,r)=>(pn(e,t,"read from private field"),r?r.call(e):t.get(e)),mn=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},gn=(e,t,r,n)=>(pn(e,t,"write to private field"),t.set(e,r),r);class vn{constructor(e,t){mn(this,ln,void 0),mn(this,hn,void 0),gn(this,ln,e),gn(this,hn,t)}getById(e){return gr(yn(this,ln),yn(this,hn),{uri:`/users/${e}`})}}ln=new WeakMap,hn=new WeakMap;class bn{constructor(e,t){mn(this,dn,void 0),mn(this,fn,void 0),gn(this,dn,e),gn(this,fn,t)}getById(e){return Ue(gr(yn(this,dn),yn(this,fn),{uri:`/users/${e}`}))}}dn=new WeakMap,fn=new WeakMap;var wn,Cn,En=Object.defineProperty,xn=(e,t,r)=>(((e,t,r)=>{t in e?En(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r})(e,"symbol"!=typeof t?t+"":t,r),r),Sn=(e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},Tn=(e,t,r)=>(Sn(e,t,"read from private field"),r?r.call(e):t.get(e)),_n=(e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},On=(e,t,r,n)=>(Sn(e,t,"write to private field"),t.set(e,r),r);wn=new WeakMap,Cn=new WeakMap;let jn=class e{constructor(e,t=Xt){xn(this,"assets"),xn(this,"datasets"),xn(this,"live"),xn(this,"projects"),xn(this,"users"),_n(this,wn,void 0),_n(this,Cn,void 0),xn(this,"listen",Rr),this.config(t),On(this,Cn,e),this.assets=new $r(this,Tn(this,Cn)),this.datasets=new Xr(this,Tn(this,Cn)),this.live=new Ur(this),this.projects=new un(this,Tn(this,Cn)),this.users=new vn(this,Tn(this,Cn))}clone(){return new e(Tn(this,Cn),this.config())}config(e){if(void 0===e)return{...Tn(this,wn)};if(Tn(this,wn)&&!1===Tn(this,wn).allowReconfigure)throw new Error("Existing client instance cannot be reconfigured - use `withConfig(newConfig)` to return a new client");return On(this,wn,Zt(e,Tn(this,wn)||{})),this}withConfig(t){const r=this.config();return new e(Tn(this,Cn),{...r,...t,stega:{...r.stega||{},..."boolean"==typeof(null==t?void 0:t.stega)?{enabled:t.stega}:(null==t?void 0:t.stega)||{}}})}fetch(e,t,r){return ir(this,Tn(this,Cn),Tn(this,wn).stega,e,t,r)}getDocument(e,t){return ar(this,Tn(this,Cn),e,t)}getDocuments(e,t){return ur(this,Tn(this,Cn),e,t)}create(e,t){return yr(this,Tn(this,Cn),e,"create",t)}createIfNotExists(e,t){return cr(this,Tn(this,Cn),e,t)}createOrReplace(e,t){return lr(this,Tn(this,Cn),e,t)}delete(e,t){return hr(this,Tn(this,Cn),e,t)}mutate(e,t){return dr(this,Tn(this,Cn),e,t)}patch(e,t){return new jt(e,t,this)}transaction(e){return new Wt(e,this)}action(e,t){return fr(this,Tn(this,Cn),e,t)}request(e){return gr(this,Tn(this,Cn),e)}getUrl(e,t){return br(this,e,t)}getDataUrl(e,t){return vr(this,e,t)}};var $n,kn;$n=new WeakMap,kn=new WeakMap;let An=class e{constructor(e,t=Xt){xn(this,"assets"),xn(this,"datasets"),xn(this,"live"),xn(this,"projects"),xn(this,"users"),xn(this,"observable"),_n(this,$n,void 0),_n(this,kn,void 0),xn(this,"listen",Rr),this.config(t),On(this,kn,e),this.assets=new kr(this,Tn(this,kn)),this.datasets=new Yr(this,Tn(this,kn)),this.live=new Ur(this),this.projects=new cn(this,Tn(this,kn)),this.users=new bn(this,Tn(this,kn)),this.observable=new jn(e,t)}clone(){return new e(Tn(this,kn),this.config())}config(e){if(void 0===e)return{...Tn(this,$n)};if(Tn(this,$n)&&!1===Tn(this,$n).allowReconfigure)throw new Error("Existing client instance cannot be reconfigured - use `withConfig(newConfig)` to return a new client");return this.observable&&this.observable.config(e),On(this,$n,Zt(e,Tn(this,$n)||{})),this}withConfig(t){const r=this.config();return new e(Tn(this,kn),{...r,...t,stega:{...r.stega||{},..."boolean"==typeof(null==t?void 0:t.stega)?{enabled:t.stega}:(null==t?void 0:t.stega)||{}}})}fetch(e,t,r){return Ue(ir(this,Tn(this,kn),Tn(this,$n).stega,e,t,r))}getDocument(e,t){return Ue(ar(this,Tn(this,kn),e,t))}getDocuments(e,t){return Ue(ur(this,Tn(this,kn),e,t))}create(e,t){return Ue(yr(this,Tn(this,kn),e,"create",t))}createIfNotExists(e,t){return Ue(cr(this,Tn(this,kn),e,t))}createOrReplace(e,t){return Ue(lr(this,Tn(this,kn),e,t))}delete(e,t){return Ue(hr(this,Tn(this,kn),e,t))}mutate(e,t){return Ue(dr(this,Tn(this,kn),e,t))}patch(e,t){return new kt(e,t,this)}transaction(e){return new Ut(e,this)}action(e,t){return Ue(fr(this,Tn(this,kn),e,t))}request(e){return Ue(gr(this,Tn(this,kn),e))}dataRequest(e,t,r){return Ue(pr(this,Tn(this,kn),e,t,r))}getUrl(e,t){return br(this,e,t)}getDataUrl(e,t){return vr(this,e,t)}};const Pn=function(e,t){const r=function(e){return A([Y({shouldRetry:lt}),...e,ct,U(),L(),{onRequest:e=>{if("xhr"!==e.adapter)return;const t=e.request,r=e.context;function n(e){return t=>{const n=t.lengthComputable?t.loaded/t.total*100:-1;r.channels.progress.publish({stage:e,percent:n,total:t.total,loaded:t.loaded,lengthComputable:t.lengthComputable})}}"upload"in t&&"onprogress"in t.upload&&(t.upload.onprogress=n("upload")),"onprogress"in t&&(t.onprogress=n("download"))}},ut,H({implementation:$e})])}(e);return{requester:r,createClient:e=>new t(((t,n)=>(n||r)({maxRedirects:0,maxRetries:e.maxRetries,retryDelay:e.retryDelay,...t})),e)}}([],An),In=Pn.requester,Rn=Pn.createClient,Mn=(Dn=Rn,function(e){return Qt(),Dn(e)});var Dn;const Fn=/_key\s*==\s*['"](.*)['"]/;function qn(e){if(!Array.isArray(e))throw new Error("Path is not an array");return e.reduce(((e,t,r)=>{const n=typeof t;if("number"===n)return`${e}[${t}]`;if("string"===n)return`${e}${0===r?"":"."}${t}`;if(function(e){return"string"==typeof e?Fn.test(e.trim()):"object"==typeof e&&"_key"in e}(t)&&t._key)return`${e}[_key=="${t._key}"]`;if(Array.isArray(t)){const[r,n]=t;return`${e}[${r}:${n}]`}throw new Error(`Unsupported path segment \`${JSON.stringify(t)}\``)}),"")}const Nn={"\f":"\\f","\n":"\\n","\r":"\\r","\t":"\\t","'":"\\'","\\":"\\\\"},Un={"\\f":"\f","\\n":"\n","\\r":"\r","\\t":"\t","\\'":"'","\\\\":"\\"};function Ln(e){const t=[],r=/\['(.*?)'\]|\[(\d+)\]|\[\?\(@\._key=='(.*?)'\)\]/g;let n;for(;null!==(n=r.exec(e));)if(void 0===n[1])if(void 0===n[2])if(void 0===n[3]);else{const e=n[3].replace(/\\(\\')/g,(e=>Un[e]));t.push({_key:e,_index:-1})}else t.push(parseInt(n[2],10));else{const e=n[1].replace(/\\(\\|f|n|r|t|')/g,(e=>Un[e]));t.push(e)}return t}function Wn(e){return e.map((e=>{if("string"==typeof e||"number"==typeof e)return e;if(""!==e._key)return{_key:e._key};if(-1!==e._index)return e._index;throw new Error(`invalid segment:${JSON.stringify(e)}`)}))}function zn(e,t){if(null==t||!t.mappings)return;const r=function(e){return`$${e.map((e=>"string"==typeof e?`['${e.replace(/[\f\n\r\t'\\]/g,(e=>Nn[e]))}']`:"number"==typeof e?`[${e}]`:""!==e._key?`[?(@._key=='${e._key.replace(/['\\]/g,(e=>Nn[e]))}')]`:`[${e._index}]`)).join("")}`}(e.map((e=>{if("string"==typeof e||"number"==typeof e)return e;if(-1!==e._index)return e._index;throw new Error(`invalid segment:${JSON.stringify(e)}`)})));if(void 0!==t.mappings[r])return{mapping:t.mappings[r],matchedPath:r,pathSuffix:""};const n=Object.entries(t.mappings).filter((([e])=>r.startsWith(e))).sort((([e],[t])=>t.length-e.length));if(0==n.length)return;const[o,s]=n[0];return{mapping:s,matchedPath:o,pathSuffix:r.substring(o.length)}}function Hn(e){return"object"==typeof e&&null!==e}function Bn(e,t,r=[]){return function(e){return null!==e&&Array.isArray(e)}(e)?e.map(((e,n)=>{if(Hn(e)){const o=e._key;if("string"==typeof o)return Bn(e,t,r.concat({_key:o,_index:n}))}return Bn(e,t,r.concat(n))})):Hn(e)?Object.fromEntries(Object.entries(e).map((([e,n])=>[e,Bn(n,t,r.concat(e))]))):t(e,r)}function Jn(e,t,r){return Bn(e,((e,n)=>{if("string"!=typeof e)return e;const o=zn(n,t);if(!o)return e;const{mapping:s,matchedPath:i}=o;if("value"!==s.type||"documentValue"!==s.source.type)return e;const a=t.documents[s.source.document],u=t.paths[s.source.path],c=Ln(i),l=Ln(u).concat(n.slice(c.length));return r({sourcePath:l,sourceDocument:a,resultPath:n,value:e})}))}const Gn="drafts.";function Vn(e){const{baseUrl:t,workspace:r="default",tool:n="default",id:o,type:s,path:i,projectId:a,dataset:u}=e;if(!t)throw new Error("baseUrl is required");if(!i)throw new Error("path is required");if(!o)throw new Error("id is required");if("/"!==t&&t.endsWith("/"))throw new Error("baseUrl must not end with a slash");const c="default"===r?void 0:r,l="default"===n?void 0:n,h=function(e){return e.startsWith(Gn)?e.slice(Gn.length):e}(o),d=Array.isArray(i)?qn(Wn(i)):i,f=new URLSearchParams({baseUrl:t,id:h,type:s,path:d});c&&f.set("workspace",c),l&&f.set("tool",l),a&&f.set("projectId",a),u&&f.set("dataset",u),o.startsWith(Gn)&&f.set("isDraft","");const p=["/"===t?"":t];c&&p.push(c);const y=["mode=presentation",`id=${h}`,`type=${s}`,`path=${encodeURIComponent(d)}`];return l&&y.push(`tool=${l}`),p.push("intent","edit",`${y.join(";")}?${f}`),p.join("/")}const Qn=({sourcePath:e,resultPath:t,value:r})=>{if(/^\d{4}-\d{2}-\d{2}/.test(n=r)&&Date.parse(n)||function(e){try{new URL(e,e.startsWith("/")?"https://acme.com":void 0)}catch{return!1}return!0}(r))return!1;var n;const o=e.at(-1);return!("slug"===e.at(-2)&&"current"===o||"string"==typeof o&&o.startsWith("_")||"number"==typeof o&&"marks"===e.at(-2)||"href"===o&&"number"==typeof e.at(-2)&&"markDefs"===e.at(-3)||"style"===o||"listItem"===o||e.some((e=>"meta"===e||"metadata"===e||"openGraph"===e||"seo"===e))||Yn(e)||Yn(t)||"string"==typeof o&&Xn.has(o))},Xn=new Set(["color","colour","currency","email","format","gid","hex","href","hsl","hsla","icon","id","index","key","language","layout","link","linkAction","locale","lqip","page","path","ref","rgb","rgba","route","secret","slug","status","tag","template","theme","type","unit","url","username","variant","website"]);function Yn(e){return e.some((e=>"string"==typeof e&&null!==e.match(/type/i)))}function Kn(e,t,r){var n,o,s,i,a,u,c,l,h;const{filter:d,logger:f,enabled:p}=r;if(!p){const o="config.enabled must be true, don't call this function otherwise";throw null==(n=null==f?void 0:f.error)||n.call(f,`[@sanity/client]: ${o}`,{result:e,resultSourceMap:t,config:r}),new TypeError(o)}if(!t)return null==(o=null==f?void 0:f.error)||o.call(f,"[@sanity/client]: Missing Content Source Map from response body",{result:e,resultSourceMap:t,config:r}),e;if(!r.studioUrl){const n="config.studioUrl must be defined";throw null==(s=null==f?void 0:f.error)||s.call(f,`[@sanity/client]: ${n}`,{result:e,resultSourceMap:t,config:r}),new TypeError(n)}const y={encoded:[],skipped:[]},m=Jn(e,t,(({sourcePath:e,sourceDocument:t,resultPath:n,value:o})=>{if(!1===("function"==typeof d?d({sourcePath:e,resultPath:n,filterDefault:Qn,sourceDocument:t,value:o}):Qn({sourcePath:e,resultPath:n,filterDefault:Qn,sourceDocument:t,value:o})))return f&&y.skipped.push({path:Zn(e),value:`${o.slice(0,20)}${o.length>20?"...":""}`,length:o.length}),o;f&&y.encoded.push({path:Zn(e),value:`${o.slice(0,20)}${o.length>20?"...":""}`,length:o.length});const{baseUrl:s,workspace:i,tool:a}=function(e){let t="string"==typeof e?e:e.baseUrl;return"/"!==t&&(t=t.replace(/\/$/,"")),"string"==typeof e?{baseUrl:t}:{...e,baseUrl:t}}("function"==typeof r.studioUrl?r.studioUrl(t):r.studioUrl);if(!s)return o;const{_id:u,_type:c,_projectId:l,_dataset:h}=t;return Ye(o,{origin:"sanity.io",href:Vn({baseUrl:s,workspace:i,tool:a,id:u,type:c,path:e,...!r.omitCrossDatasetReferenceData&&{dataset:h,projectId:l}})},!1)}));if(f){const e=y.skipped.length,t=y.encoded.length;if((e||t)&&(null==(i=(null==f?void 0:f.groupCollapsed)||f.log)||i("[@sanity/client]: Encoding source map into result"),null==(a=f.log)||a.call(f,`[@sanity/client]: Paths encoded: ${y.encoded.length}, skipped: ${y.skipped.length}`)),y.encoded.length>0&&(null==(u=null==f?void 0:f.log)||u.call(f,"[@sanity/client]: Table of encoded paths"),null==(c=(null==f?void 0:f.table)||f.log)||c(y.encoded)),y.skipped.length>0){const e=new Set;for(const{path:t}of y.skipped)e.add(t.replace(Fn,"0").replace(/\[\d+\]/g,"[]"));null==(l=null==f?void 0:f.log)||l.call(f,"[@sanity/client]: List of skipped paths",[...e.values()])}(e||t)&&(null==(h=null==f?void 0:f.groupEnd)||h.call(f))}return m}function Zn(e){return qn(Wn(e))}var eo=Object.freeze({__proto__:null,stegaEncodeSourceMap:Kn}),to=Object.freeze({__proto__:null,encodeIntoResult:Jn,stegaEncodeSourceMap:Kn,stegaEncodeSourceMap$1:eo}),ro="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function no(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var oo={exports:{}};
8
8
  /** @license
9
9
  * eventsource.js
10
10
  * Available under MIT License (MIT)
11
11
  * https://github.com/Yaffle/EventSource/
12
- */!function(e,t){!function(r){var n=r.setTimeout,o=r.clearTimeout,s=r.XMLHttpRequest,i=r.XDomainRequest,a=r.ActiveXObject,u=r.EventSource,c=r.document,l=r.Promise,h=r.fetch,d=r.Response,f=r.TextDecoder,p=r.TextEncoder,y=r.AbortController;if("undefined"==typeof window||void 0===c||"readyState"in c||null!=c.body||(c.readyState="loading",window.addEventListener("load",(function(e){c.readyState="complete"}),!1)),null==s&&null!=a&&(s=function(){return new a("Microsoft.XMLHTTP")}),null==Object.create&&(Object.create=function(e){function t(){}return t.prototype=e,new t}),Date.now||(Date.now=function(){return(new Date).getTime()}),null==y){var m=h;h=function(e,t){var r=t.signal;return m(e,{headers:t.headers,credentials:t.credentials,cache:t.cache}).then((function(e){var t=e.body.getReader();return r._reader=t,r._aborted&&r._reader.cancel(),{status:e.status,statusText:e.statusText,headers:e.headers,body:{getReader:function(){return t}}}}))},y=function(){this.signal={_reader:null,_aborted:!1},this.abort=function(){null!=this.signal._reader&&this.signal._reader.cancel(),this.signal._aborted=!0}}}function g(){this.bitsNeeded=0,this.codePoint=0}g.prototype.decode=function(e){function t(e,t,r){if(1===r)return e>=128>>t&&e<<t<=2047;if(2===r)return e>=2048>>t&&e<<t<=55295||e>=57344>>t&&e<<t<=65535;if(3===r)return e>=65536>>t&&e<<t<=1114111;throw new Error}function r(e,t){if(6===e)return t>>6>15?3:t>31?2:1;if(12===e)return t>15?3:2;if(18===e)return 3;throw new Error}for(var n=65533,o="",s=this.bitsNeeded,i=this.codePoint,a=0;a<e.length;a+=1){var u=e[a];0!==s&&(u<128||u>191||!t(i<<6|63&u,s-6,r(s,i)))&&(s=0,i=n,o+=String.fromCharCode(i)),0===s?(u>=0&&u<=127?(s=0,i=u):u>=192&&u<=223?(s=6,i=31&u):u>=224&&u<=239?(s=12,i=15&u):u>=240&&u<=247?(s=18,i=7&u):(s=0,i=n),0===s||t(i,s,r(s,i))||(s=0,i=n)):(s-=6,i=i<<6|63&u),0===s&&(i<=65535?o+=String.fromCharCode(i):(o+=String.fromCharCode(55296+(i-65535-1>>10)),o+=String.fromCharCode(56320+(i-65535-1&1023))))}return this.bitsNeeded=s,this.codePoint=i,o};null!=f&&null!=p&&function(){try{return"test"===(new f).decode((new p).encode("test"),{stream:!0})}catch(e){console.debug("TextDecoder does not support streaming option. Using polyfill instead: "+e)}return!1}()||(f=g);var v=function(){};function b(e){this.withCredentials=!1,this.readyState=0,this.status=0,this.statusText="",this.responseText="",this.onprogress=v,this.onload=v,this.onerror=v,this.onreadystatechange=v,this._contentType="",this._xhr=e,this._sendTimeout=0,this._abort=v}function w(e){return e.replace(/[A-Z]/g,(function(e){return String.fromCharCode(e.charCodeAt(0)+32)}))}function C(e){for(var t=Object.create(null),r=e.split("\r\n"),n=0;n<r.length;n+=1){var o=r[n].split(": "),s=o.shift(),i=o.join(": ");t[w(s)]=i}this._map=t}function E(){}function x(e){this._headers=e}function S(){}function T(){this._listeners=Object.create(null)}function _(e){n((function(){throw e}),0)}function O(e){this.type=e,this.target=void 0}function j(e,t){O.call(this,e),this.data=t.data,this.lastEventId=t.lastEventId}function $(e,t){O.call(this,e),this.status=t.status,this.statusText=t.statusText,this.headers=t.headers}function k(e,t){O.call(this,e),this.error=t.error}b.prototype.open=function(e,t){this._abort(!0);var r=this,i=this._xhr,a=1,u=0;this._abort=function(e){0!==r._sendTimeout&&(o(r._sendTimeout),r._sendTimeout=0),1!==a&&2!==a&&3!==a||(a=4,i.onload=v,i.onerror=v,i.onabort=v,i.onprogress=v,i.onreadystatechange=v,i.abort(),0!==u&&(o(u),u=0),e||(r.readyState=4,r.onabort(null),r.onreadystatechange())),a=0};var c=function(){if(1===a){var e=0,t="",n=void 0;if("contentType"in i)e=200,t="OK",n=i.contentType;else try{e=i.status,t=i.statusText,n=i.getResponseHeader("Content-Type")}catch(r){e=0,t="",n=void 0}0!==e&&(a=2,r.readyState=2,r.status=e,r.statusText=t,r._contentType=n,r.onreadystatechange())}},l=function(){if(c(),2===a||3===a){a=3;var e="";try{e=i.responseText}catch(e){}r.readyState=3,r.responseText=e,r.onprogress()}},h=function(e,t){if(null!=t&&null!=t.preventDefault||(t={preventDefault:v}),l(),1===a||2===a||3===a){if(a=4,0!==u&&(o(u),u=0),r.readyState=4,"load"===e)r.onload(t);else if("error"===e)r.onerror(t);else{if("abort"!==e)throw new TypeError;r.onabort(t)}r.onreadystatechange()}},d=function(){u=n((function(){d()}),500),3===i.readyState&&l()};"onload"in i&&(i.onload=function(e){h("load",e)}),"onerror"in i&&(i.onerror=function(e){h("error",e)}),"onabort"in i&&(i.onabort=function(e){h("abort",e)}),"onprogress"in i&&(i.onprogress=l),"onreadystatechange"in i&&(i.onreadystatechange=function(e){!function(e){null!=i&&(4===i.readyState?"onload"in i&&"onerror"in i&&"onabort"in i||h(""===i.responseText?"error":"load",e):3===i.readyState?"onprogress"in i||l():2===i.readyState&&c())}(e)}),!("contentType"in i)&&"ontimeout"in s.prototype||(t+=(-1===t.indexOf("?")?"?":"&")+"padding=true"),i.open(e,t,!0),"readyState"in i&&(u=n((function(){d()}),0))},b.prototype.abort=function(){this._abort(!1)},b.prototype.getResponseHeader=function(e){return this._contentType},b.prototype.setRequestHeader=function(e,t){var r=this._xhr;"setRequestHeader"in r&&r.setRequestHeader(e,t)},b.prototype.getAllResponseHeaders=function(){return null!=this._xhr.getAllResponseHeaders&&this._xhr.getAllResponseHeaders()||""},b.prototype.send=function(){if("ontimeout"in s.prototype&&("sendAsBinary"in s.prototype||"mozAnon"in s.prototype)||null==c||null==c.readyState||"complete"===c.readyState){var e=this._xhr;"withCredentials"in e&&(e.withCredentials=this.withCredentials);try{e.send(void 0)}catch(e){throw e}}else{var t=this;t._sendTimeout=n((function(){t._sendTimeout=0,t.send()}),4)}},C.prototype.get=function(e){return this._map[w(e)]},null!=s&&null==s.HEADERS_RECEIVED&&(s.HEADERS_RECEIVED=2),E.prototype.open=function(e,t,r,n,o,i,a){e.open("GET",o);var u=0;for(var c in e.onprogress=function(){var t=e.responseText.slice(u);u+=t.length,r(t)},e.onerror=function(e){e.preventDefault(),n(new Error("NetworkError"))},e.onload=function(){n(null)},e.onabort=function(){n(null)},e.onreadystatechange=function(){if(e.readyState===s.HEADERS_RECEIVED){var r=e.status,n=e.statusText,o=e.getResponseHeader("Content-Type"),i=e.getAllResponseHeaders();t(r,n,o,new C(i))}},e.withCredentials=i,a)Object.prototype.hasOwnProperty.call(a,c)&&e.setRequestHeader(c,a[c]);return e.send(),e},x.prototype.get=function(e){return this._headers.get(e)},S.prototype.open=function(e,t,r,n,o,s,i){var a=null,u=new y,c=u.signal,d=new f;return h(o,{headers:i,credentials:s?"include":"same-origin",signal:c,cache:"no-store"}).then((function(e){return a=e.body.getReader(),t(e.status,e.statusText,e.headers.get("Content-Type"),new x(e.headers)),new l((function(e,t){var n=function(){a.read().then((function(t){if(t.done)e(void 0);else{var o=d.decode(t.value,{stream:!0});r(o),n()}})).catch((function(e){t(e)}))};n()}))})).catch((function(e){return"AbortError"===e.name?void 0:e})).then((function(e){n(e)})),{abort:function(){null!=a&&a.cancel(),u.abort()}}},T.prototype.dispatchEvent=function(e){e.target=this;var t=this._listeners[e.type];if(null!=t)for(var r=t.length,n=0;n<r;n+=1){var o=t[n];try{"function"==typeof o.handleEvent?o.handleEvent(e):o.call(this,e)}catch(e){_(e)}}},T.prototype.addEventListener=function(e,t){e=String(e);var r=this._listeners,n=r[e];null==n&&(n=[],r[e]=n);for(var o=!1,s=0;s<n.length;s+=1)n[s]===t&&(o=!0);o||n.push(t)},T.prototype.removeEventListener=function(e,t){e=String(e);var r=this._listeners,n=r[e];if(null!=n){for(var o=[],s=0;s<n.length;s+=1)n[s]!==t&&o.push(n[s]);0===o.length?delete r[e]:r[e]=o}},j.prototype=Object.create(O.prototype),$.prototype=Object.create(O.prototype),k.prototype=Object.create(O.prototype);var A=-1,P=0,I=1,R=2,M=-1,D=0,F=1,q=2,N=3,U=/^text\/event\-stream(;.*)?$/i,L=function(e,t){var r=null==e?t:parseInt(e,10);return r!=r&&(r=t),W(r)},W=function(e){return Math.min(Math.max(e,1e3),18e6)},z=function(e,t,r){try{"function"==typeof t&&t.call(e,r)}catch(e){_(e)}};function H(e,t){T.call(this),t=t||{},this.onopen=void 0,this.onmessage=void 0,this.onerror=void 0,this.url=void 0,this.readyState=void 0,this.withCredentials=void 0,this.headers=void 0,this._close=void 0,function(e,t,r){t=String(t);var a=Boolean(r.withCredentials),u=r.lastEventIdQueryParameterName||"lastEventId",c=W(1e3),l=L(r.heartbeatTimeout,45e3),h="",d=c,f=!1,p=0,y=r.headers||{},m=r.Transport,g=B&&null==m?void 0:new b(null!=m?new m:null!=s&&"withCredentials"in s.prototype||null==i?new s:new i),v=null!=m&&"string"!=typeof m?new m:null==g?new S:new E,w=void 0,C=0,x=A,T="",_="",O="",H="",J=D,G=0,V=0,Q=function(t,r,n,o){if(x===P)if(200===t&&null!=n&&U.test(n)){x=I,f=Date.now(),d=c,e.readyState=I;var s=new $("open",{status:t,statusText:r,headers:o});e.dispatchEvent(s),z(e,e.onopen,s)}else{var i="";200!==t?(r&&(r=r.replace(/\s+/g," ")),i="EventSource's response has a status "+t+" "+r+" that is not 200. Aborting the connection."):i="EventSource's response has a Content-Type specifying an unsupported type: "+(null==n?"-":n.replace(/\s+/g," "))+". Aborting the connection.",K();s=new $("error",{status:t,statusText:r,headers:o});e.dispatchEvent(s),z(e,e.onerror,s),console.error(i)}},Y=function(t){if(x===I){for(var r=-1,s=0;s<t.length;s+=1){(u=t.charCodeAt(s))!=="\n".charCodeAt(0)&&u!=="\r".charCodeAt(0)||(r=s)}var i=(-1!==r?H:"")+t.slice(0,r+1);H=(-1===r?H:"")+t.slice(r+1),""!==t&&(f=Date.now(),p+=t.length);for(var a=0;a<i.length;a+=1){var u=i.charCodeAt(a);if(J===M&&u==="\n".charCodeAt(0))J=D;else if(J===M&&(J=D),u==="\r".charCodeAt(0)||u==="\n".charCodeAt(0)){if(J!==D){J===F&&(V=a+1);var y=i.slice(G,V-1),m=i.slice(V+(V<a&&i.charCodeAt(V)===" ".charCodeAt(0)?1:0),a);"data"===y?(T+="\n",T+=m):"id"===y?_=m:"event"===y?O=m:"retry"===y?(c=L(m,c),d=c):"heartbeatTimeout"===y&&(l=L(m,l),0!==C&&(o(C),C=n((function(){Z()}),l)))}if(J===D){if(""!==T){h=_,""===O&&(O="message");var g=new j(O,{data:T.slice(1),lastEventId:_});if(e.dispatchEvent(g),"open"===O?z(e,e.onopen,g):"message"===O?z(e,e.onmessage,g):"error"===O&&z(e,e.onerror,g),x===R)return}T="",O=""}J=u==="\r".charCodeAt(0)?M:D}else J===D&&(G=a,J=F),J===F?u===":".charCodeAt(0)&&(V=a+1,J=q):J===q&&(J=N)}}},X=function(t){if(x===I||x===P){x=A,0!==C&&(o(C),C=0),C=n((function(){Z()}),d),d=W(Math.min(16*c,2*d)),e.readyState=P;var r=new k("error",{error:t});e.dispatchEvent(r),z(e,e.onerror,r),null!=t&&console.error(t)}},K=function(){x=R,null!=w&&(w.abort(),w=void 0),0!==C&&(o(C),C=0),e.readyState=R},Z=function(){if(C=0,x===A){f=!1,p=0,C=n((function(){Z()}),l),x=P,T="",O="",_=h,H="",G=0,V=0,J=D;var r=t;if("data:"!==t.slice(0,5)&&"blob:"!==t.slice(0,5)&&""!==h){var o=t.indexOf("?");r=-1===o?t:t.slice(0,o+1)+t.slice(o+1).replace(/(?:^|&)([^=&]*)(?:=[^&]*)?/g,(function(e,t){return t===u?"":e})),r+=(-1===t.indexOf("?")?"?":"&")+u+"="+encodeURIComponent(h)}var s=e.withCredentials,i={Accept:"text/event-stream"},a=e.headers;if(null!=a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(i[c]=a[c]);try{w=v.open(g,Q,Y,X,r,s,i)}catch(e){throw K(),e}}else if(f||null==w){var d=Math.max((f||Date.now())+l-Date.now(),1);f=!1,C=n((function(){Z()}),d)}else X(new Error("No activity within "+l+" milliseconds. "+(x===P?"No response received.":p+" chars received.")+" Reconnecting.")),null!=w&&(w.abort(),w=void 0)};e.url=t,e.readyState=P,e.withCredentials=a,e.headers=y,e._close=K,Z()}(this,e,t)}var B=null!=h&&null!=d&&"body"in d.prototype;H.prototype=Object.create(T.prototype),H.prototype.CONNECTING=P,H.prototype.OPEN=I,H.prototype.CLOSED=R,H.prototype.close=function(){this._close()},H.CONNECTING=P,H.OPEN=I,H.CLOSED=R,H.prototype.withCredentials=void 0;var J,G=u;null==s||null!=u&&"withCredentials"in u.prototype||(G=H),J=function(e){e.EventSourcePolyfill=H,e.NativeEventSource=u,e.EventSource=G}(t),void 0!==J&&(e.exports=J)}("undefined"==typeof globalThis?"undefined"!=typeof window?window:"undefined"!=typeof self?self:to:globalThis)}(no,no.exports);var oo=ro(no.exports.EventSourcePolyfill),so=Object.freeze({__proto__:null,default:oo});e.BasePatch=Ot,e.BaseTransaction=qt,e.ClientError=nt,e.ObservablePatch=jt,e.ObservableSanityClient=On,e.ObservableTransaction=Wt,e.Patch=kt,e.SanityClient=kn,e.ServerError=ot,e.Transaction=Ut,e.createClient=In,e.default=Rn,e.requester=Pn,e.unstable__adapter=j,e.unstable__environment="browser",Object.defineProperty(e,"__esModule",{value:!0})}));
12
+ */!function(e,t){!function(r){var n=r.setTimeout,o=r.clearTimeout,s=r.XMLHttpRequest,i=r.XDomainRequest,a=r.ActiveXObject,u=r.EventSource,c=r.document,l=r.Promise,h=r.fetch,d=r.Response,f=r.TextDecoder,p=r.TextEncoder,y=r.AbortController;if("undefined"==typeof window||void 0===c||"readyState"in c||null!=c.body||(c.readyState="loading",window.addEventListener("load",(function(e){c.readyState="complete"}),!1)),null==s&&null!=a&&(s=function(){return new a("Microsoft.XMLHTTP")}),null==Object.create&&(Object.create=function(e){function t(){}return t.prototype=e,new t}),Date.now||(Date.now=function(){return(new Date).getTime()}),null==y){var m=h;h=function(e,t){var r=t.signal;return m(e,{headers:t.headers,credentials:t.credentials,cache:t.cache}).then((function(e){var t=e.body.getReader();return r._reader=t,r._aborted&&r._reader.cancel(),{status:e.status,statusText:e.statusText,headers:e.headers,body:{getReader:function(){return t}}}}))},y=function(){this.signal={_reader:null,_aborted:!1},this.abort=function(){null!=this.signal._reader&&this.signal._reader.cancel(),this.signal._aborted=!0}}}function g(){this.bitsNeeded=0,this.codePoint=0}g.prototype.decode=function(e){function t(e,t,r){if(1===r)return e>=128>>t&&e<<t<=2047;if(2===r)return e>=2048>>t&&e<<t<=55295||e>=57344>>t&&e<<t<=65535;if(3===r)return e>=65536>>t&&e<<t<=1114111;throw new Error}function r(e,t){if(6===e)return t>>6>15?3:t>31?2:1;if(12===e)return t>15?3:2;if(18===e)return 3;throw new Error}for(var n=65533,o="",s=this.bitsNeeded,i=this.codePoint,a=0;a<e.length;a+=1){var u=e[a];0!==s&&(u<128||u>191||!t(i<<6|63&u,s-6,r(s,i)))&&(s=0,i=n,o+=String.fromCharCode(i)),0===s?(u>=0&&u<=127?(s=0,i=u):u>=192&&u<=223?(s=6,i=31&u):u>=224&&u<=239?(s=12,i=15&u):u>=240&&u<=247?(s=18,i=7&u):(s=0,i=n),0===s||t(i,s,r(s,i))||(s=0,i=n)):(s-=6,i=i<<6|63&u),0===s&&(i<=65535?o+=String.fromCharCode(i):(o+=String.fromCharCode(55296+(i-65535-1>>10)),o+=String.fromCharCode(56320+(i-65535-1&1023))))}return this.bitsNeeded=s,this.codePoint=i,o};null!=f&&null!=p&&function(){try{return"test"===(new f).decode((new p).encode("test"),{stream:!0})}catch(e){console.debug("TextDecoder does not support streaming option. Using polyfill instead: "+e)}return!1}()||(f=g);var v=function(){};function b(e){this.withCredentials=!1,this.readyState=0,this.status=0,this.statusText="",this.responseText="",this.onprogress=v,this.onload=v,this.onerror=v,this.onreadystatechange=v,this._contentType="",this._xhr=e,this._sendTimeout=0,this._abort=v}function w(e){return e.replace(/[A-Z]/g,(function(e){return String.fromCharCode(e.charCodeAt(0)+32)}))}function C(e){for(var t=Object.create(null),r=e.split("\r\n"),n=0;n<r.length;n+=1){var o=r[n].split(": "),s=o.shift(),i=o.join(": ");t[w(s)]=i}this._map=t}function E(){}function x(e){this._headers=e}function S(){}function T(){this._listeners=Object.create(null)}function _(e){n((function(){throw e}),0)}function O(e){this.type=e,this.target=void 0}function j(e,t){O.call(this,e),this.data=t.data,this.lastEventId=t.lastEventId}function $(e,t){O.call(this,e),this.status=t.status,this.statusText=t.statusText,this.headers=t.headers}function k(e,t){O.call(this,e),this.error=t.error}b.prototype.open=function(e,t){this._abort(!0);var r=this,i=this._xhr,a=1,u=0;this._abort=function(e){0!==r._sendTimeout&&(o(r._sendTimeout),r._sendTimeout=0),1!==a&&2!==a&&3!==a||(a=4,i.onload=v,i.onerror=v,i.onabort=v,i.onprogress=v,i.onreadystatechange=v,i.abort(),0!==u&&(o(u),u=0),e||(r.readyState=4,r.onabort(null),r.onreadystatechange())),a=0};var c=function(){if(1===a){var e=0,t="",n=void 0;if("contentType"in i)e=200,t="OK",n=i.contentType;else try{e=i.status,t=i.statusText,n=i.getResponseHeader("Content-Type")}catch(r){e=0,t="",n=void 0}0!==e&&(a=2,r.readyState=2,r.status=e,r.statusText=t,r._contentType=n,r.onreadystatechange())}},l=function(){if(c(),2===a||3===a){a=3;var e="";try{e=i.responseText}catch(e){}r.readyState=3,r.responseText=e,r.onprogress()}},h=function(e,t){if(null!=t&&null!=t.preventDefault||(t={preventDefault:v}),l(),1===a||2===a||3===a){if(a=4,0!==u&&(o(u),u=0),r.readyState=4,"load"===e)r.onload(t);else if("error"===e)r.onerror(t);else{if("abort"!==e)throw new TypeError;r.onabort(t)}r.onreadystatechange()}},d=function(){u=n((function(){d()}),500),3===i.readyState&&l()};"onload"in i&&(i.onload=function(e){h("load",e)}),"onerror"in i&&(i.onerror=function(e){h("error",e)}),"onabort"in i&&(i.onabort=function(e){h("abort",e)}),"onprogress"in i&&(i.onprogress=l),"onreadystatechange"in i&&(i.onreadystatechange=function(e){!function(e){null!=i&&(4===i.readyState?"onload"in i&&"onerror"in i&&"onabort"in i||h(""===i.responseText?"error":"load",e):3===i.readyState?"onprogress"in i||l():2===i.readyState&&c())}(e)}),!("contentType"in i)&&"ontimeout"in s.prototype||(t+=(-1===t.indexOf("?")?"?":"&")+"padding=true"),i.open(e,t,!0),"readyState"in i&&(u=n((function(){d()}),0))},b.prototype.abort=function(){this._abort(!1)},b.prototype.getResponseHeader=function(e){return this._contentType},b.prototype.setRequestHeader=function(e,t){var r=this._xhr;"setRequestHeader"in r&&r.setRequestHeader(e,t)},b.prototype.getAllResponseHeaders=function(){return null!=this._xhr.getAllResponseHeaders&&this._xhr.getAllResponseHeaders()||""},b.prototype.send=function(){if("ontimeout"in s.prototype&&("sendAsBinary"in s.prototype||"mozAnon"in s.prototype)||null==c||null==c.readyState||"complete"===c.readyState){var e=this._xhr;"withCredentials"in e&&(e.withCredentials=this.withCredentials);try{e.send(void 0)}catch(e){throw e}}else{var t=this;t._sendTimeout=n((function(){t._sendTimeout=0,t.send()}),4)}},C.prototype.get=function(e){return this._map[w(e)]},null!=s&&null==s.HEADERS_RECEIVED&&(s.HEADERS_RECEIVED=2),E.prototype.open=function(e,t,r,n,o,i,a){e.open("GET",o);var u=0;for(var c in e.onprogress=function(){var t=e.responseText.slice(u);u+=t.length,r(t)},e.onerror=function(e){e.preventDefault(),n(new Error("NetworkError"))},e.onload=function(){n(null)},e.onabort=function(){n(null)},e.onreadystatechange=function(){if(e.readyState===s.HEADERS_RECEIVED){var r=e.status,n=e.statusText,o=e.getResponseHeader("Content-Type"),i=e.getAllResponseHeaders();t(r,n,o,new C(i))}},e.withCredentials=i,a)Object.prototype.hasOwnProperty.call(a,c)&&e.setRequestHeader(c,a[c]);return e.send(),e},x.prototype.get=function(e){return this._headers.get(e)},S.prototype.open=function(e,t,r,n,o,s,i){var a=null,u=new y,c=u.signal,d=new f;return h(o,{headers:i,credentials:s?"include":"same-origin",signal:c,cache:"no-store"}).then((function(e){return a=e.body.getReader(),t(e.status,e.statusText,e.headers.get("Content-Type"),new x(e.headers)),new l((function(e,t){var n=function(){a.read().then((function(t){if(t.done)e(void 0);else{var o=d.decode(t.value,{stream:!0});r(o),n()}})).catch((function(e){t(e)}))};n()}))})).catch((function(e){return"AbortError"===e.name?void 0:e})).then((function(e){n(e)})),{abort:function(){null!=a&&a.cancel(),u.abort()}}},T.prototype.dispatchEvent=function(e){e.target=this;var t=this._listeners[e.type];if(null!=t)for(var r=t.length,n=0;n<r;n+=1){var o=t[n];try{"function"==typeof o.handleEvent?o.handleEvent(e):o.call(this,e)}catch(e){_(e)}}},T.prototype.addEventListener=function(e,t){e=String(e);var r=this._listeners,n=r[e];null==n&&(n=[],r[e]=n);for(var o=!1,s=0;s<n.length;s+=1)n[s]===t&&(o=!0);o||n.push(t)},T.prototype.removeEventListener=function(e,t){e=String(e);var r=this._listeners,n=r[e];if(null!=n){for(var o=[],s=0;s<n.length;s+=1)n[s]!==t&&o.push(n[s]);0===o.length?delete r[e]:r[e]=o}},j.prototype=Object.create(O.prototype),$.prototype=Object.create(O.prototype),k.prototype=Object.create(O.prototype);var A=-1,P=0,I=1,R=2,M=-1,D=0,F=1,q=2,N=3,U=/^text\/event\-stream(;.*)?$/i,L=function(e,t){var r=null==e?t:parseInt(e,10);return r!=r&&(r=t),W(r)},W=function(e){return Math.min(Math.max(e,1e3),18e6)},z=function(e,t,r){try{"function"==typeof t&&t.call(e,r)}catch(e){_(e)}};function H(e,t){T.call(this),t=t||{},this.onopen=void 0,this.onmessage=void 0,this.onerror=void 0,this.url=void 0,this.readyState=void 0,this.withCredentials=void 0,this.headers=void 0,this._close=void 0,function(e,t,r){t=String(t);var a=Boolean(r.withCredentials),u=r.lastEventIdQueryParameterName||"lastEventId",c=W(1e3),l=L(r.heartbeatTimeout,45e3),h="",d=c,f=!1,p=0,y=r.headers||{},m=r.Transport,g=B&&null==m?void 0:new b(null!=m?new m:null!=s&&"withCredentials"in s.prototype||null==i?new s:new i),v=null!=m&&"string"!=typeof m?new m:null==g?new S:new E,w=void 0,C=0,x=A,T="",_="",O="",H="",J=D,G=0,V=0,Q=function(t,r,n,o){if(x===P)if(200===t&&null!=n&&U.test(n)){x=I,f=Date.now(),d=c,e.readyState=I;var s=new $("open",{status:t,statusText:r,headers:o});e.dispatchEvent(s),z(e,e.onopen,s)}else{var i="";200!==t?(r&&(r=r.replace(/\s+/g," ")),i="EventSource's response has a status "+t+" "+r+" that is not 200. Aborting the connection."):i="EventSource's response has a Content-Type specifying an unsupported type: "+(null==n?"-":n.replace(/\s+/g," "))+". Aborting the connection.",K();s=new $("error",{status:t,statusText:r,headers:o});e.dispatchEvent(s),z(e,e.onerror,s),console.error(i)}},X=function(t){if(x===I){for(var r=-1,s=0;s<t.length;s+=1){(u=t.charCodeAt(s))!=="\n".charCodeAt(0)&&u!=="\r".charCodeAt(0)||(r=s)}var i=(-1!==r?H:"")+t.slice(0,r+1);H=(-1===r?H:"")+t.slice(r+1),""!==t&&(f=Date.now(),p+=t.length);for(var a=0;a<i.length;a+=1){var u=i.charCodeAt(a);if(J===M&&u==="\n".charCodeAt(0))J=D;else if(J===M&&(J=D),u==="\r".charCodeAt(0)||u==="\n".charCodeAt(0)){if(J!==D){J===F&&(V=a+1);var y=i.slice(G,V-1),m=i.slice(V+(V<a&&i.charCodeAt(V)===" ".charCodeAt(0)?1:0),a);"data"===y?(T+="\n",T+=m):"id"===y?_=m:"event"===y?O=m:"retry"===y?(c=L(m,c),d=c):"heartbeatTimeout"===y&&(l=L(m,l),0!==C&&(o(C),C=n((function(){Z()}),l)))}if(J===D){if(""!==T){h=_,""===O&&(O="message");var g=new j(O,{data:T.slice(1),lastEventId:_});if(e.dispatchEvent(g),"open"===O?z(e,e.onopen,g):"message"===O?z(e,e.onmessage,g):"error"===O&&z(e,e.onerror,g),x===R)return}T="",O=""}J=u==="\r".charCodeAt(0)?M:D}else J===D&&(G=a,J=F),J===F?u===":".charCodeAt(0)&&(V=a+1,J=q):J===q&&(J=N)}}},Y=function(t){if(x===I||x===P){x=A,0!==C&&(o(C),C=0),C=n((function(){Z()}),d),d=W(Math.min(16*c,2*d)),e.readyState=P;var r=new k("error",{error:t});e.dispatchEvent(r),z(e,e.onerror,r),null!=t&&console.error(t)}},K=function(){x=R,null!=w&&(w.abort(),w=void 0),0!==C&&(o(C),C=0),e.readyState=R},Z=function(){if(C=0,x===A){f=!1,p=0,C=n((function(){Z()}),l),x=P,T="",O="",_=h,H="",G=0,V=0,J=D;var r=t;if("data:"!==t.slice(0,5)&&"blob:"!==t.slice(0,5)&&""!==h){var o=t.indexOf("?");r=-1===o?t:t.slice(0,o+1)+t.slice(o+1).replace(/(?:^|&)([^=&]*)(?:=[^&]*)?/g,(function(e,t){return t===u?"":e})),r+=(-1===t.indexOf("?")?"?":"&")+u+"="+encodeURIComponent(h)}var s=e.withCredentials,i={Accept:"text/event-stream"},a=e.headers;if(null!=a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(i[c]=a[c]);try{w=v.open(g,Q,X,Y,r,s,i)}catch(e){throw K(),e}}else if(f||null==w){var d=Math.max((f||Date.now())+l-Date.now(),1);f=!1,C=n((function(){Z()}),d)}else Y(new Error("No activity within "+l+" milliseconds. "+(x===P?"No response received.":p+" chars received.")+" Reconnecting.")),null!=w&&(w.abort(),w=void 0)};e.url=t,e.readyState=P,e.withCredentials=a,e.headers=y,e._close=K,Z()}(this,e,t)}var B=null!=h&&null!=d&&"body"in d.prototype;H.prototype=Object.create(T.prototype),H.prototype.CONNECTING=P,H.prototype.OPEN=I,H.prototype.CLOSED=R,H.prototype.close=function(){this._close()},H.CONNECTING=P,H.OPEN=I,H.CLOSED=R,H.prototype.withCredentials=void 0;var J,G=u;null==s||null!=u&&"withCredentials"in u.prototype||(G=H),J=function(e){e.EventSourcePolyfill=H,e.NativeEventSource=u,e.EventSource=G}(t),void 0!==J&&(e.exports=J)}("undefined"==typeof globalThis?"undefined"!=typeof window?window:"undefined"!=typeof self?self:ro:globalThis)}(oo,oo.exports);var so=no(oo.exports.EventSourcePolyfill),io=Object.freeze({__proto__:null,default:so});e.BasePatch=Ot,e.BaseTransaction=qt,e.ClientError=nt,e.ObservablePatch=jt,e.ObservableSanityClient=jn,e.ObservableTransaction=Wt,e.Patch=kt,e.SanityClient=An,e.ServerError=ot,e.Transaction=Ut,e.createClient=Rn,e.default=Mn,e.requester=In,e.unstable__adapter=j,e.unstable__environment="browser",Object.defineProperty(e,"__esModule",{value:!0})}));