@sanity/client 7.16.0 → 7.18.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/README.md +46 -2
- package/dist/_chunks-cjs/config.cjs.map +1 -1
- package/dist/_chunks-cjs/isRecord.cjs.map +1 -1
- package/dist/_chunks-cjs/resolveEditInfo.cjs +1 -1
- package/dist/_chunks-cjs/resolveEditInfo.cjs.map +1 -1
- package/dist/_chunks-cjs/stegaClean.cjs +34 -12
- package/dist/_chunks-cjs/stegaClean.cjs.map +1 -1
- package/dist/_chunks-cjs/stegaEncodeSourceMap.cjs +3 -57
- package/dist/_chunks-cjs/stegaEncodeSourceMap.cjs.map +1 -1
- package/dist/_chunks-es/config.js.map +1 -1
- package/dist/_chunks-es/isRecord.js.map +1 -1
- package/dist/_chunks-es/resolveEditInfo.js +1 -1
- package/dist/_chunks-es/resolveEditInfo.js.map +1 -1
- package/dist/_chunks-es/stegaClean.js +35 -13
- package/dist/_chunks-es/stegaClean.js.map +1 -1
- package/dist/_chunks-es/stegaEncodeSourceMap.js +4 -58
- package/dist/_chunks-es/stegaEncodeSourceMap.js.map +1 -1
- package/dist/csm.cjs.map +1 -1
- package/dist/csm.js.map +1 -1
- package/dist/index.browser.cjs +2 -2
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.d.cts +37 -2
- package/dist/index.browser.d.ts +37 -2
- package/dist/index.browser.js +3 -3
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +37 -2
- package/dist/index.d.ts +37 -2
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/media-library.cjs.map +1 -1
- package/dist/media-library.d.cts +26 -1
- package/dist/media-library.d.ts +26 -1
- package/dist/media-library.js.map +1 -1
- package/dist/stega.browser.cjs.map +1 -1
- package/dist/stega.browser.d.cts +37 -2
- package/dist/stega.browser.d.ts +37 -2
- package/dist/stega.browser.js +1 -1
- package/dist/stega.browser.js.map +1 -1
- package/dist/stega.cjs.map +1 -1
- package/dist/stega.d.cts +37 -2
- package/dist/stega.d.ts +37 -2
- package/dist/stega.js +1 -1
- package/dist/stega.js.map +1 -1
- package/package.json +2 -2
- package/src/media-library.ts +2 -0
- package/src/projects/ProjectsClient.ts +22 -2
- package/src/stega/stegaEncodeSourceMap.ts +4 -3
- package/src/types.ts +26 -1
- package/umd/sanityClient.js +55 -88
- package/umd/sanityClient.min.js +2 -2
- package/src/stega/stega.ts +0 -163
package/src/types.ts
CHANGED
|
@@ -1978,7 +1978,31 @@ export interface VideoPlaybackInfoItemSigned extends VideoPlaybackInfoItemPublic
|
|
|
1978
1978
|
export type VideoPlaybackInfoItem = VideoPlaybackInfoItemPublic | VideoPlaybackInfoItemSigned
|
|
1979
1979
|
|
|
1980
1980
|
/** @public */
|
|
1981
|
-
export interface
|
|
1981
|
+
export interface VideoRenditionInfoPublic {
|
|
1982
|
+
/** URL to the MP4 rendition (redirects to CDN) */
|
|
1983
|
+
url: string
|
|
1984
|
+
/** Resolution identifier, e.g. "1080p", "480p", "270p" */
|
|
1985
|
+
resolution: '1080p' | '480p' | '270p' | (string & {})
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
/** @public */
|
|
1989
|
+
export interface VideoRenditionInfoSigned extends VideoRenditionInfoPublic {
|
|
1990
|
+
/** Authentication token for signed playback */
|
|
1991
|
+
token: string
|
|
1992
|
+
/** Token expiration time in ISO 8601 format */
|
|
1993
|
+
expiresAt: string
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
/** @public */
|
|
1997
|
+
export type VideoRenditionInfo = VideoRenditionInfoPublic | VideoRenditionInfoSigned
|
|
1998
|
+
|
|
1999
|
+
/** @public */
|
|
2000
|
+
export interface VideoPlaybackInfo<
|
|
2001
|
+
T extends VideoPlaybackInfoItem = VideoPlaybackInfoItem,
|
|
2002
|
+
R extends VideoRenditionInfo = T extends VideoPlaybackInfoItemSigned
|
|
2003
|
+
? VideoRenditionInfoSigned
|
|
2004
|
+
: VideoRenditionInfo,
|
|
2005
|
+
> {
|
|
1982
2006
|
id: string
|
|
1983
2007
|
thumbnail: T
|
|
1984
2008
|
animated: T
|
|
@@ -1986,6 +2010,7 @@ export interface VideoPlaybackInfo<T extends VideoPlaybackInfoItem = VideoPlayba
|
|
|
1986
2010
|
stream: T
|
|
1987
2011
|
duration: number
|
|
1988
2012
|
aspectRatio: number
|
|
2013
|
+
renditions?: R[]
|
|
1989
2014
|
}
|
|
1990
2015
|
|
|
1991
2016
|
/** @public */
|
package/umd/sanityClient.js
CHANGED
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
return Object.freeze(n);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
const e=!(typeof navigator>"u")&&"ReactNative"===navigator.product,t={timeout:e?6e4:12e4},r=function(r){const a={...t,..."string"==typeof r?{url:r}:r};if(a.timeout=n$1(a.timeout),a.query){const{url:t,searchParams:r}=function(t){const r=t.indexOf("?");if(-1===r)return {url:t,searchParams:new URLSearchParams};const n=t.slice(0,r),a=t.slice(r+1);if(!e)return {url:n,searchParams:new URLSearchParams(a)};if("function"!=typeof decodeURIComponent)throw new Error("Broken `URLSearchParams` implementation, and `decodeURIComponent` is not defined");const s=new URLSearchParams;for(const e of a.split("&")){const[t,r]=e.split("=");t&&s.append(o$1(t),o$1(r||""));}return {url:n,searchParams:s}}(a.url);for(const[e,o]of Object.entries(a.query)){if(void 0!==o)if(Array.isArray(o))for(const t of o)r.append(e,t);else r.append(e,o);const n=r.toString();n&&(a.url=`${t}?${n}`);}}return a.method=a.body&&!a.method?"POST":(a.method||"GET").toUpperCase(),a};function o$1(e){return decodeURIComponent(e.replace(/\+/g," "))}function n$1(e){if(false===e||0===e)return false;if(e.connect||e.socket)return e;const r=Number(e);return isNaN(r)?n$1(t.timeout):{connect:r,socket:r}}const a$2=/^https?:\/\//i,s$
|
|
22
|
+
const e=!(typeof navigator>"u")&&"ReactNative"===navigator.product,t={timeout:e?6e4:12e4},r=function(r){const a={...t,..."string"==typeof r?{url:r}:r};if(a.timeout=n$1(a.timeout),a.query){const{url:t,searchParams:r}=function(t){const r=t.indexOf("?");if(-1===r)return {url:t,searchParams:new URLSearchParams};const n=t.slice(0,r),a=t.slice(r+1);if(!e)return {url:n,searchParams:new URLSearchParams(a)};if("function"!=typeof decodeURIComponent)throw new Error("Broken `URLSearchParams` implementation, and `decodeURIComponent` is not defined");const s=new URLSearchParams;for(const e of a.split("&")){const[t,r]=e.split("=");t&&s.append(o$1(t),o$1(r||""));}return {url:n,searchParams:s}}(a.url);for(const[e,o]of Object.entries(a.query)){if(void 0!==o)if(Array.isArray(o))for(const t of o)r.append(e,t);else r.append(e,o);const n=r.toString();n&&(a.url=`${t}?${n}`);}}return a.method=a.body&&!a.method?"POST":(a.method||"GET").toUpperCase(),a};function o$1(e){return decodeURIComponent(e.replace(/\+/g," "))}function n$1(e){if(false===e||0===e)return false;if(e.connect||e.socket)return e;const r=Number(e);return isNaN(r)?n$1(t.timeout):{connect:r,socket:r}}const a$2=/^https?:\/\//i,s$1=function(e){if(!a$2.test(e.url))throw new Error(`"${e.url}" is not a valid URL`)};function c$2(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}
|
|
23
23
|
|
|
24
|
-
const o=["request","response","progress","error","abort"],n=["processOptions","validateOptions","interceptRequest","finalizeOptions","onRequest","onResponse","onError","onReturn","onHeaders"];function s
|
|
24
|
+
const o=["request","response","progress","error","abort"],n=["processOptions","validateOptions","interceptRequest","finalizeOptions","onRequest","onResponse","onError","onReturn","onHeaders"];function s(r$1,a){const i=[],u=n.reduce((e,t)=>(e[t]=e[t]||[],e),{processOptions:[r],validateOptions:[s$1]});function l(e){const t=o.reduce((e,t)=>(e[t]=function(){const e=/* @__PURE__ */Object.create(null);let t=0;return {publish:function(t){for(const r in e)e[r](t);},subscribe:function(r){const o=t++;return e[o]=r,function(){delete e[o];}}}}(),e),{}),r=(e=>function(t,r,...o){const n="onError"===t;let s=r;for(let r=0;r<e[t].length&&(s=(0, e[t][r])(s,...o),!n||s);r++);return s})(u),n=r("processOptions",e);r("validateOptions",n);const s={options:n,channels:t,applyMiddleware:r};let i;const l=t.request.subscribe(e=>{i=a(e,(o,n)=>((e,o,n)=>{let s=e,a=o;if(!s)try{a=r("onResponse",o,n);}catch(e){a=null,s=e;}s=s&&r("onError",s,n),s?t.error.publish(s):a&&t.response.publish(a);})(o,n,e));});t.abort.subscribe(()=>{l(),i&&i.abort();});const c=r("onReturn",t,s);return c===t&&t.request.publish(s),c}return l.use=function(e){if(!e)throw new Error("Tried to add middleware that resolved to falsey value");if("function"==typeof e)throw new Error("Tried to add middleware that was a function. It probably expects you to pass options to it.");if(e.onReturn&&u.onReturn.length>0)throw new Error("Tried to add new middleware with `onReturn` handler, but another handler has already been registered for this event");return n.forEach(t=>{e[t]&&u[t].push(e[t]);}),i.push(e),l},l.clone=()=>s(i,a),r$1.forEach(l.use),l}var a$1,i,u$2=/* @__PURE__ */c$2(function(){if(i)return a$1;i=1;var e=function(e){return e.replace(/^\s+|\s+$/g,"")},t=function(e){return "[object Array]"===Object.prototype.toString.call(e)};return a$1=function(r){if(!r)return {};for(var o=/* @__PURE__ */Object.create(null),n=e(r).split("\n"),s=0;s<n.length;s++){var a=n[s],i=a.indexOf(":"),u=e(a.slice(0,i)).toLowerCase(),l=e(a.slice(i+1));typeof o[u]>"u"?o[u]=l:t(o[u])?o[u].push(l):o[u]=[o[u],l];}return o}}());let l$2 = class l{onabort;onerror;onreadystatechange;ontimeout;readyState=0;response;responseText="";responseType="";status;statusText;withCredentials;#e;#t;#r;#o={};#n;#s={};#a;open(e,t,r){this.#e=e,this.#t=t,this.#r="",this.readyState=1,this.onreadystatechange?.(),this.#n=void 0;}abort(){this.#n&&this.#n.abort();}getAllResponseHeaders(){return this.#r}setRequestHeader(e,t){this.#o[e]=t;}setInit(e,t=true){this.#s=e,this.#a=t;}send(e){const t="arraybuffer"!==this.responseType,r={...this.#s,method:this.#e,headers:this.#o,body:e};"function"==typeof AbortController&&this.#a&&(this.#n=new AbortController,typeof EventTarget<"u"&&this.#n.signal instanceof EventTarget&&(r.signal=this.#n.signal)),typeof document<"u"&&(r.credentials=this.withCredentials?"include":"omit"),fetch(this.#t,r).then(e=>(e.headers.forEach((e,t)=>{this.#r+=`${t}: ${e}\r\n`;}),this.status=e.status,this.statusText=e.statusText,this.readyState=3,this.onreadystatechange?.(),t?e.text():e.arrayBuffer())).then(e=>{"string"==typeof e?this.responseText=e:this.response=e,this.readyState=4,this.onreadystatechange?.();}).catch(e=>{"AbortError"!==e.name?this.onerror?.(e):this.onabort?.();});}};const c$1="function"==typeof XMLHttpRequest?"xhr":"fetch",h$1="xhr"===c$1?XMLHttpRequest:l$2,d$2=(e,t)=>{const r=e.options,o=e.applyMiddleware("finalizeOptions",r),n={},s=e.applyMiddleware("interceptRequest",void 0,{adapter:c$1,context:e});if(s){const e=setTimeout(t,0,null,s);return {abort:()=>clearTimeout(e)}}let a=new h$1;a instanceof l$2&&"object"==typeof o.fetch&&a.setInit(o.fetch,o.useAbortSignal??true);const i=o.headers,d=o.timeout;let p=false,f=false,b=false;if(a.onerror=e=>{m(a instanceof l$2?e instanceof Error?e:new Error(`Request error while attempting to reach is ${o.url}`,{cause:e}):new Error(`Request error while attempting to reach is ${o.url}${e.lengthComputable?`(${e.loaded} of ${e.total} bytes transferred)`:""}`));},a.ontimeout=e=>{m(new Error(`Request timeout while attempting to reach ${o.url}${e.lengthComputable?`(${e.loaded} of ${e.total} bytes transferred)`:""}`));},a.onabort=()=>{w(true),p=true;},a.onreadystatechange=function(){d&&(w(),n.socket=setTimeout(()=>y("ESOCKETTIMEDOUT"),d.socket)),!p&&a&&4===a.readyState&&0!==a.status&&function(){if(!(p||f||b)){if(0===a.status)return void m(new Error("Unknown XHR error"));w(),f=true,t(null,{body:a.response||(""===a.responseType||"text"===a.responseType?a.responseText:""),url:o.url,method:o.method,headers:u$2(a.getAllResponseHeaders()),statusCode:a.status,statusMessage:a.statusText});}}();},a.open(o.method,o.url,true),a.withCredentials=!!o.withCredentials,i&&a.setRequestHeader)for(const e in i)i.hasOwnProperty(e)&&a.setRequestHeader(e,i[e]);return o.rawBody&&(a.responseType="arraybuffer"),e.applyMiddleware("onRequest",{options:o,adapter:c$1,request:a,context:e}),a.send(o.body||null),d&&(n.connect=setTimeout(()=>y("ETIMEDOUT"),d.connect)),{abort:function(){p=true,a&&a.abort();}};function y(t){b=true,a.abort();const r=new Error("ESOCKETTIMEDOUT"===t?`Socket timed out on request to ${o.url}`:`Connection timed out on request to ${o.url}`);r.code=t,e.channels.error.publish(r);}function w(e){(e||p||a&&a.readyState>=2&&n.connect)&&clearTimeout(n.connect),n.socket&&clearTimeout(n.socket);}function m(e){if(f)return;w(true),f=true,a=null;const r=e||new Error(`Network error while attempting to reach ${o.url}`);r.isNetworkError=true,r.request=o,t(r);}},p$2=(e=[],t=d$2)=>s(e,t),f="browser";
|
|
25
25
|
|
|
26
|
-
var a,c$1,
|
|
26
|
+
var a,c,u$1,l$1,p$1,d$1={exports:{}};/* @__PURE__ */c$2((p$1||(p$1=1,function(e,t){t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;const s="color: "+this.color;t.splice(1,0,s,"color: inherit");let n=0,r=0;t[0].replace(/%[a-zA-Z%]/g,e=>{"%%"!==e&&(n++,"%c"===e&&(r=n));}),t.splice(r,0,s);},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug");}catch{}},t.load=function(){let e;try{e=t.storage.getItem("debug")||t.storage.getItem("DEBUG");}catch{}return !e&&typeof process<"u"&&"env"in process&&(e=process.env.DEBUG),e},t.useColors=function(){if(typeof window<"u"&&window.process&&("renderer"===window.process.type||window.process.__nwjs))return true;if(typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return false;let e;return typeof document<"u"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent&&(e=navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/))&&parseInt(e[1],10)>=31||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)},t.storage=function(){try{return localStorage}catch{}}(),t.destroy=/* @__PURE__ */(()=>{let e=false;return ()=>{e||(e=true,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."));}})(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],t.log=console.debug||console.log||(()=>{}),e.exports=(l$1?u$1:(l$1=1,u$1=function(e){function t(e){let n,r,o,i=null;function a(...e){if(!a.enabled)return;const s=a,r=Number(/* @__PURE__ */new Date),o=r-(n||r);s.diff=o,s.prev=n,s.curr=r,n=r,e[0]=t.coerce(e[0]),"string"!=typeof e[0]&&e.unshift("%O");let i=0;e[0]=e[0].replace(/%([a-zA-Z%])/g,(n,r)=>{if("%%"===n)return "%";i++;const o=t.formatters[r];if("function"==typeof o){const t=e[i];n=o.call(s,t),e.splice(i,1),i--;}return n}),t.formatArgs.call(s,e),(s.log||t.log).apply(s,e);}return a.namespace=e,a.useColors=t.useColors(),a.color=t.selectColor(e),a.extend=s,a.destroy=t.destroy,Object.defineProperty(a,"enabled",{enumerable:true,configurable:false,get:()=>null!==i?i:(r!==t.namespaces&&(r=t.namespaces,o=t.enabled(e)),o),set:e=>{i=e;}}),"function"==typeof t.init&&t.init(a),a}function s(e,s){const n=t(this.namespace+(typeof s>"u"?":":s)+e);return n.log=this.log,n}function n(e,t){let s=0,n=0,r=-1,o=0;for(;s<e.length;)if(n<t.length&&(t[n]===e[s]||"*"===t[n]))"*"===t[n]?(r=n,o=s,n++):(s++,n++);else {if(-1===r)return false;n=r+1,o++,s=o;}for(;n<t.length&&"*"===t[n];)n++;return n===t.length}return t.debug=t,t.default=t,t.coerce=function(e){return e instanceof Error?e.stack||e.message:e},t.disable=function(){const e=[...t.names,...t.skips.map(e=>"-"+e)].join(",");return t.enable(""),e},t.enable=function(e){t.save(e),t.namespaces=e,t.names=[],t.skips=[];const s=("string"==typeof e?e:"").trim().replace(/\s+/g,",").split(",").filter(Boolean);for(const e of s)"-"===e[0]?t.skips.push(e.slice(1)):t.names.push(e);},t.enabled=function(e){for(const s of t.skips)if(n(e,s))return false;for(const s of t.names)if(n(e,s))return true;return false},t.humanize=function(){if(c)return a;c=1;var e=1e3,t=60*e,s=60*t,n=24*s,r=7*n;function o(e,t,s,n){var r=t>=1.5*s;return Math.round(e/s)+" "+n+(r?"s":"")}return a=function(i,a){a=a||{};var c,u,l=typeof i;if("string"===l&&i.length>0)return function(o){if(!((o=String(o)).length>100)){var i=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(o);if(i){var a=parseFloat(i[1]);switch((i[2]||"ms").toLowerCase()){case "years":case "year":case "yrs":case "yr":case "y":return 315576e5*a;case "weeks":case "week":case "w":return a*r;case "days":case "day":case "d":return a*n;case "hours":case "hour":case "hrs":case "hr":case "h":return a*s;case "minutes":case "minute":case "mins":case "min":case "m":return a*t;case "seconds":case "second":case "secs":case "sec":case "s":return a*e;case "milliseconds":case "millisecond":case "msecs":case "msec":case "ms":return a;default:return}}}}(i);if("number"===l&&isFinite(i))return a.long?(c=i,(u=Math.abs(c))>=n?o(c,u,n,"day"):u>=s?o(c,u,s,"hour"):u>=t?o(c,u,t,"minute"):u>=e?o(c,u,e,"second"):c+" ms"):function(r){var o=Math.abs(r);return o>=n?Math.round(r/n)+"d":o>=s?Math.round(r/s)+"h":o>=t?Math.round(r/t)+"m":o>=e?Math.round(r/e)+"s":r+"ms"}(i);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(i))}}(),t.destroy=function(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");},Object.keys(e).forEach(s=>{t[s]=e[s];}),t.names=[],t.skips=[],t.formatters={},t.selectColor=function(e){let s=0;for(let t=0;t<e.length;t++)s=(s<<5)-s+e.charCodeAt(t),s|=0;return t.colors[Math.abs(s)%t.colors.length]},t.enable(t.load()),t}))(t);const{formatters:s}=e.exports;s.j=function(e){try{return JSON.stringify(e)}catch(e){return "[UnexpectedJSONParseError]: "+e.message}};}(d$1,d$1.exports)),d$1.exports));const F=typeof Buffer>"u"?()=>false:e=>Buffer.isBuffer(e);function O(e){return "[object Object]"===Object.prototype.toString.call(e)}function j(e){if(false===O(e))return false;const t=e.constructor;if(void 0===t)return true;const s=t.prototype;return !(false===O(s)||false===s.hasOwnProperty("isPrototypeOf"))}const v=["boolean","string","number"];function x$1(){return {processOptions:e=>{const t=e.body;return !t||"function"==typeof t.pipe||F(t)||-1===v.indexOf(typeof t)&&!Array.isArray(t)&&!j(t)?e:Object.assign({},e,{body:JSON.stringify(e.body),headers:Object.assign({},e.headers,{"Content-Type":"application/json"})})}}}function E(e){return {onResponse:s=>{const n=s.headers["content-type"]||"",r=e&&e.force||-1!==n.indexOf("application/json");return s.body&&n&&r?Object.assign({},s,{body:t(s.body)}):s},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 R={};typeof globalThis<"u"?R=globalThis:typeof window<"u"?R=window:typeof global<"u"?R=global:typeof self<"u"&&(R=self);var q=R;function A$1(e={}){const t=e.implementation||q.Observable;if(!t)throw new Error("`Observable` is not available in global scope, and no implementation was passed");return {onReturn:(e,s)=>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(s),()=>e.abort.publish()))}}function S$1(){return {onRequest:e=>{if("xhr"!==e.adapter)return;const t=e.request,s=e.context;function n(e){return t=>{const n=t.lengthComputable?t.loaded/t.total*100:-1;s.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"));}}}var $=(e,t,s)=>("GET"===s.method||"HEAD"===s.method)&&(e.isNetworkError||false);function _(e){return 100*Math.pow(2,e)+100*Math.random()}const P$1=(e={})=>(e=>{const t=e.maxRetries||5,s=e.retryDelay||_,n=e.shouldRetry;return {onError:(e,r)=>{const o=r.options,i=o.maxRetries||t,a=o.retryDelay||s,c=o.shouldRetry||n,u=o.attemptNumber||0;if(null!==(l=o.body)&&"object"==typeof l&&"function"==typeof l.pipe||!c(e,u,o)||u>=i)return e;var l;const p=Object.assign({},r,{options:Object.assign({},o,{attemptNumber:u+1})});return setTimeout(()=>r.channels.request.publish(p),a(u)),null}}})({shouldRetry:$,...e});P$1.shouldRetry=$;
|
|
27
27
|
|
|
28
28
|
/******************************************************************************
|
|
29
29
|
Copyright (c) Microsoft Corporation.
|
|
@@ -1661,7 +1661,7 @@
|
|
|
1661
1661
|
function timer(dueTime, intervalOrScheduler, scheduler) {
|
|
1662
1662
|
if (scheduler === void 0) { scheduler = async; }
|
|
1663
1663
|
return new Observable(function (subscriber) {
|
|
1664
|
-
var due = isValidDate$1(dueTime) ?
|
|
1664
|
+
var due = isValidDate$1(dueTime) ? +dueTime - scheduler.now() : dueTime;
|
|
1665
1665
|
if (due < 0) {
|
|
1666
1666
|
due = 0;
|
|
1667
1667
|
}
|
|
@@ -1896,20 +1896,41 @@
|
|
|
1896
1896
|
function isRecord(value) {
|
|
1897
1897
|
return typeof value == "object" && value !== null && !Array.isArray(value);
|
|
1898
1898
|
}
|
|
1899
|
-
var
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
return
|
|
1899
|
+
var p = { 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 }, l = { 0: 8203, 1: 8204, 2: 8205, 3: 65279 }, d = { 0: String.fromCodePoint(l[0]), 1: String.fromCodePoint(l[1]), 2: String.fromCodePoint(l[2]), 3: String.fromCodePoint(l[3]) }, u = new Array(4).fill(String.fromCodePoint(l[0])).join("");
|
|
1900
|
+
function A(e) {
|
|
1901
|
+
let r = JSON.stringify(e), t = new TextEncoder().encode(r), i = "";
|
|
1902
|
+
for (let c = 0; c < t.length; c++) {
|
|
1903
|
+
let n = t[c];
|
|
1904
|
+
i += d[n >> 6 & 3] + d[n >> 4 & 3] + d[n >> 2 & 3] + d[n & 3];
|
|
1905
|
+
}
|
|
1906
|
+
return u + i;
|
|
1907
|
+
}
|
|
1908
|
+
function I(e) {
|
|
1909
|
+
return !Number.isNaN(Number(e)) || /[a-z]/i.test(e) && !/\d+(?:[-:\/]\d+){2}(?:T\d+(?:[-:\/]\d+){1,2}(\.\d+)?Z?)?/.test(e) ? false : !!Date.parse(e);
|
|
1910
|
+
}
|
|
1911
|
+
function S(e) {
|
|
1912
|
+
try {
|
|
1913
|
+
new URL(e, e.startsWith("/") ? "https://acme.com" : void 0);
|
|
1914
|
+
} catch {
|
|
1915
|
+
return false;
|
|
1916
|
+
}
|
|
1917
|
+
return true;
|
|
1907
1918
|
}
|
|
1908
|
-
function
|
|
1909
|
-
return t &&
|
|
1919
|
+
function y(e, r, t = "auto") {
|
|
1920
|
+
return t === true || t === "auto" && (I(e) || S(e)) ? e : `${e}${A(r)}`;
|
|
1921
|
+
}
|
|
1922
|
+
Object.fromEntries(Object.entries(d).map((e) => [e[1], +e[0]]));
|
|
1923
|
+
Object.fromEntries(Object.entries(p).map((e) => e.reverse()));
|
|
1924
|
+
var h = `${Object.values(p).map((e) => `\\u{${e.toString(16)}}`).join("")}`, x = new RegExp(`[${h}]{4,}`, "gu");
|
|
1925
|
+
function P(e) {
|
|
1926
|
+
var r;
|
|
1927
|
+
return { cleaned: e.replace(x, ""), encoded: ((r = e.match(x)) == null ? void 0 : r[0]) || "" };
|
|
1928
|
+
}
|
|
1929
|
+
function w(e) {
|
|
1930
|
+
return e && JSON.parse(P(JSON.stringify(e)).cleaned);
|
|
1910
1931
|
}
|
|
1911
1932
|
function stegaClean(result) {
|
|
1912
|
-
return
|
|
1933
|
+
return w(result);
|
|
1913
1934
|
}
|
|
1914
1935
|
|
|
1915
1936
|
const DRAFTS_FOLDER$1 = "drafts", VERSION_FOLDER$1 = "versions", PATH_SEPARATOR$1 = ".", DRAFTS_PREFIX$1 = `${DRAFTS_FOLDER$1}${PATH_SEPARATOR$1}`, VERSION_PREFIX$1 = `${VERSION_FOLDER$1}${PATH_SEPARATOR$1}`;
|
|
@@ -1933,7 +1954,7 @@
|
|
|
1933
1954
|
}
|
|
1934
1955
|
function getVersionFromId$1(id) {
|
|
1935
1956
|
if (!isVersionId$1(id)) return;
|
|
1936
|
-
const [_versionPrefix, versionId
|
|
1957
|
+
const [_versionPrefix, versionId] = id.split(PATH_SEPARATOR$1);
|
|
1937
1958
|
return versionId;
|
|
1938
1959
|
}
|
|
1939
1960
|
function getPublishedId$1(id) {
|
|
@@ -2146,21 +2167,21 @@ ${codeFrame(query, { start, end }, description)}${withTag}`;
|
|
|
2146
2167
|
};
|
|
2147
2168
|
}
|
|
2148
2169
|
function defineHttpRequest(envMiddleware2, config = {}) {
|
|
2149
|
-
return p$
|
|
2150
|
-
P({ shouldRetry }),
|
|
2170
|
+
return p$2([
|
|
2171
|
+
P$1({ shouldRetry }),
|
|
2151
2172
|
...envMiddleware2,
|
|
2152
2173
|
printWarnings(config),
|
|
2153
|
-
x(),
|
|
2174
|
+
x$1(),
|
|
2154
2175
|
E(),
|
|
2155
2176
|
S$1(),
|
|
2156
2177
|
httpError,
|
|
2157
|
-
A({ implementation: Observable })
|
|
2178
|
+
A$1({ implementation: Observable })
|
|
2158
2179
|
]);
|
|
2159
2180
|
}
|
|
2160
2181
|
function shouldRetry(err, attempt, options) {
|
|
2161
2182
|
if (options.maxRetries === 0) return false;
|
|
2162
2183
|
const isSafe = options.method === "GET" || options.method === "HEAD", isQuery2 = (options.uri || options.url).startsWith("/data/query"), isRetriableResponse = err.response && (err.response.statusCode === 429 || err.response.statusCode === 502 || err.response.statusCode === 503);
|
|
2163
|
-
return (isSafe || isQuery2) && isRetriableResponse ? true : P.shouldRetry(err, attempt, options);
|
|
2184
|
+
return (isSafe || isQuery2) && isRetriableResponse ? true : P$1.shouldRetry(err, attempt, options);
|
|
2164
2185
|
}
|
|
2165
2186
|
const BASE_URL = "https://www.sanity.io/help/";
|
|
2166
2187
|
function generateHelpUrl(slug) {
|
|
@@ -3726,7 +3747,7 @@ ${selectionOpts}`);
|
|
|
3726
3747
|
}
|
|
3727
3748
|
list(options) {
|
|
3728
3749
|
const query = {}, uri = "/projects";
|
|
3729
|
-
return options?.includeMembers === false && (query.includeMembers = "false"), options?.organizationId && (query.organizationId = options.organizationId), _request(this.#client, this.#httpRequest, { uri, query });
|
|
3750
|
+
return options?.includeMembers === false && (query.includeMembers = "false"), options?.organizationId && (query.organizationId = options.organizationId), options?.onlyExplicitMembership === true && (query.onlyExplicitMembership = "true"), _request(this.#client, this.#httpRequest, { uri, query });
|
|
3730
3751
|
}
|
|
3731
3752
|
/**
|
|
3732
3753
|
* Fetch a project by project ID
|
|
@@ -3745,7 +3766,7 @@ ${selectionOpts}`);
|
|
|
3745
3766
|
}
|
|
3746
3767
|
list(options) {
|
|
3747
3768
|
const query = {}, uri = "/projects";
|
|
3748
|
-
return options?.includeMembers === false && (query.includeMembers = "false"), options?.organizationId && (query.organizationId = options.organizationId), lastValueFrom(_request(this.#client, this.#httpRequest, { uri, query }));
|
|
3769
|
+
return options?.includeMembers === false && (query.includeMembers = "false"), options?.organizationId && (query.organizationId = options.organizationId), options?.onlyExplicitMembership === true && (query.onlyExplicitMembership = "true"), lastValueFrom(_request(this.#client, this.#httpRequest, { uri, query }));
|
|
3749
3770
|
}
|
|
3750
3771
|
/**
|
|
3751
3772
|
* Fetch a project by project ID
|
|
@@ -5035,7 +5056,7 @@ ${selectionOpts}`);
|
|
|
5035
5056
|
}
|
|
5036
5057
|
function getVersionFromId(id) {
|
|
5037
5058
|
if (!isVersionId(id)) return;
|
|
5038
|
-
const [_versionPrefix, versionId
|
|
5059
|
+
const [_versionPrefix, versionId] = id.split(PATH_SEPARATOR);
|
|
5039
5060
|
return versionId;
|
|
5040
5061
|
}
|
|
5041
5062
|
function getPublishedId(id) {
|
|
@@ -5175,60 +5196,6 @@ ${selectionOpts}`);
|
|
|
5175
5196
|
function hasTypeLike(path) {
|
|
5176
5197
|
return path.some((segment) => typeof segment == "string" && segment.match(/type/i) !== null);
|
|
5177
5198
|
}
|
|
5178
|
-
const ZERO_WIDTHS = [
|
|
5179
|
-
8203,
|
|
5180
|
-
// U+200B ZERO WIDTH SPACE
|
|
5181
|
-
8204,
|
|
5182
|
-
// U+200C ZERO WIDTH NON-JOINER
|
|
5183
|
-
8205,
|
|
5184
|
-
// U+200D ZERO WIDTH JOINER
|
|
5185
|
-
65279
|
|
5186
|
-
// U+FEFF ZERO WIDTH NO-BREAK SPACE
|
|
5187
|
-
], ZERO_WIDTHS_CHAR_CODES = ZERO_WIDTHS.map((x) => String.fromCharCode(x)), LEGACY_WIDTHS = [
|
|
5188
|
-
8203,
|
|
5189
|
-
8204,
|
|
5190
|
-
8205,
|
|
5191
|
-
8290,
|
|
5192
|
-
8291,
|
|
5193
|
-
8288,
|
|
5194
|
-
65279,
|
|
5195
|
-
8289,
|
|
5196
|
-
119155,
|
|
5197
|
-
119156,
|
|
5198
|
-
119157,
|
|
5199
|
-
119158,
|
|
5200
|
-
119159,
|
|
5201
|
-
119160,
|
|
5202
|
-
119161,
|
|
5203
|
-
119162
|
|
5204
|
-
];
|
|
5205
|
-
Object.fromEntries(ZERO_WIDTHS.map((cp, i) => [cp, i]));
|
|
5206
|
-
Object.fromEntries(LEGACY_WIDTHS.map((cp, i) => [cp, i.toString(16)]));
|
|
5207
|
-
const PREFIX = String.fromCodePoint(ZERO_WIDTHS[0]).repeat(4), ALL_WIDTHS = [...ZERO_WIDTHS, ...LEGACY_WIDTHS];
|
|
5208
|
-
ALL_WIDTHS.map((cp) => `\\u{${cp.toString(16)}}`).join("");
|
|
5209
|
-
function stegaEncode(data) {
|
|
5210
|
-
if (data === void 0) return "";
|
|
5211
|
-
const json = typeof data == "string" ? data : JSON.stringify(data), bytes = new TextEncoder().encode(json);
|
|
5212
|
-
let out = "";
|
|
5213
|
-
for (let i = 0; i < bytes.length; i++) {
|
|
5214
|
-
const b = bytes[i];
|
|
5215
|
-
out += ZERO_WIDTHS_CHAR_CODES[b >> 6 & 3] + ZERO_WIDTHS_CHAR_CODES[b >> 4 & 3] + ZERO_WIDTHS_CHAR_CODES[b >> 2 & 3] + ZERO_WIDTHS_CHAR_CODES[b & 3];
|
|
5216
|
-
}
|
|
5217
|
-
return PREFIX + out;
|
|
5218
|
-
}
|
|
5219
|
-
function stegaCombine(visible, metadata, skip = "auto") {
|
|
5220
|
-
return skip === true || skip === "auto" && !isDateLike(visible) && !isUrlLike(visible) ? `${visible}${stegaEncode(metadata)}` : visible;
|
|
5221
|
-
}
|
|
5222
|
-
function isUrlLike(t) {
|
|
5223
|
-
try {
|
|
5224
|
-
return new URL(t, t.startsWith("/") ? "https://example.com" : void 0), !0;
|
|
5225
|
-
} catch {
|
|
5226
|
-
return false;
|
|
5227
|
-
}
|
|
5228
|
-
}
|
|
5229
|
-
function isDateLike(t) {
|
|
5230
|
-
return !t || typeof t != "string" ? false : !!Date.parse(t);
|
|
5231
|
-
}
|
|
5232
5199
|
const TRUNCATE_LENGTH = 20;
|
|
5233
5200
|
function stegaEncodeSourceMap(result, resultSourceMap, config) {
|
|
5234
5201
|
const { filter, logger, enabled } = config;
|
|
@@ -5269,7 +5236,7 @@ ${selectionOpts}`);
|
|
|
5269
5236
|
);
|
|
5270
5237
|
if (!baseUrl) return value;
|
|
5271
5238
|
const { _id: id, _type: type, _projectId: projectId, _dataset: dataset } = sourceDocument;
|
|
5272
|
-
return
|
|
5239
|
+
return y(
|
|
5273
5240
|
value,
|
|
5274
5241
|
{
|
|
5275
5242
|
origin: "sanity.io",
|
|
@@ -5284,7 +5251,7 @@ ${selectionOpts}`);
|
|
|
5284
5251
|
})
|
|
5285
5252
|
},
|
|
5286
5253
|
// We use custom logic to determine if we should skip encoding
|
|
5287
|
-
|
|
5254
|
+
false
|
|
5288
5255
|
);
|
|
5289
5256
|
}
|
|
5290
5257
|
);
|
|
@@ -5335,7 +5302,7 @@ ${selectionOpts}`);
|
|
|
5335
5302
|
function requireEventsource () {
|
|
5336
5303
|
if (hasRequiredEventsource) return eventsource$1.exports;
|
|
5337
5304
|
hasRequiredEventsource = 1;
|
|
5338
|
-
(function (module, exports) {
|
|
5305
|
+
(function (module, exports$1) {
|
|
5339
5306
|
/*jslint indent: 2, vars: true, plusplus: true */
|
|
5340
5307
|
/*global setTimeout, clearTimeout */
|
|
5341
5308
|
|
|
@@ -6362,13 +6329,13 @@ ${selectionOpts}`);
|
|
|
6362
6329
|
|
|
6363
6330
|
(function (factory) {
|
|
6364
6331
|
{
|
|
6365
|
-
var v = factory(exports);
|
|
6332
|
+
var v = factory(exports$1);
|
|
6366
6333
|
if (v !== undefined) module.exports = v;
|
|
6367
6334
|
}
|
|
6368
|
-
})(function (exports) {
|
|
6369
|
-
exports.EventSourcePolyfill = EventSourcePolyfill;
|
|
6370
|
-
exports.NativeEventSource = NativeEventSource;
|
|
6371
|
-
exports.EventSource = R;
|
|
6335
|
+
})(function (exports$1) {
|
|
6336
|
+
exports$1.EventSourcePolyfill = EventSourcePolyfill;
|
|
6337
|
+
exports$1.NativeEventSource = NativeEventSource;
|
|
6338
|
+
exports$1.EventSource = R;
|
|
6372
6339
|
});
|
|
6373
6340
|
}(typeof globalThis === 'undefined' ? (typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : eventsource) : globalThis));
|
|
6374
6341
|
} (eventsource$1, eventsource$1.exports));
|
|
@@ -6417,8 +6384,8 @@ ${selectionOpts}`);
|
|
|
6417
6384
|
exports.isHttpError = isHttpError;
|
|
6418
6385
|
exports.isQueryParseError = isQueryParseError;
|
|
6419
6386
|
exports.requester = requester;
|
|
6420
|
-
exports.unstable__adapter = c$
|
|
6421
|
-
exports.unstable__environment = f
|
|
6387
|
+
exports.unstable__adapter = c$1;
|
|
6388
|
+
exports.unstable__environment = f;
|
|
6422
6389
|
exports.validateApiPerspective = validateApiPerspective;
|
|
6423
6390
|
|
|
6424
6391
|
Object.defineProperty(exports, '__esModule', { value: true });
|