@cavuno/board 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -352,9 +352,9 @@ interface PublicBoard {
352
352
  */
353
353
  interface BoardSeo {
354
354
  object: 'board_seo';
355
- /** Verbatim `ads.txt` content, or `null` when not configured (the handler 404s). */
355
+ /** Verbatim `ads.txt` content, or `null` when not configured. */
356
356
  adsTxt: string | null;
357
- /** IndexNow key-file content, or `null` when not configured (the handler 404s). */
357
+ /** IndexNow key-file content, or `null` when not configured. */
358
358
  indexNowKey: string | null;
359
359
  /** Google site-verification token for the `<meta>` tag, or `null`. */
360
360
  googleSiteVerification: string | null;
@@ -413,7 +413,7 @@ declare function isConflict(e: unknown): e is BoardApiError;
413
413
  * constant because the package is platform-neutral and cannot read
414
414
  * package.json at runtime.
415
415
  */
416
- declare const SDK_VERSION = "1.2.0";
416
+ declare const SDK_VERSION = "1.2.1";
417
417
 
418
418
  interface BoardUser {
419
419
  id: string;
package/dist/index.d.ts CHANGED
@@ -352,9 +352,9 @@ interface PublicBoard {
352
352
  */
353
353
  interface BoardSeo {
354
354
  object: 'board_seo';
355
- /** Verbatim `ads.txt` content, or `null` when not configured (the handler 404s). */
355
+ /** Verbatim `ads.txt` content, or `null` when not configured. */
356
356
  adsTxt: string | null;
357
- /** IndexNow key-file content, or `null` when not configured (the handler 404s). */
357
+ /** IndexNow key-file content, or `null` when not configured. */
358
358
  indexNowKey: string | null;
359
359
  /** Google site-verification token for the `<meta>` tag, or `null`. */
360
360
  googleSiteVerification: string | null;
@@ -413,7 +413,7 @@ declare function isConflict(e: unknown): e is BoardApiError;
413
413
  * constant because the package is platform-neutral and cannot read
414
414
  * package.json at runtime.
415
415
  */
416
- declare const SDK_VERSION = "1.2.0";
416
+ declare const SDK_VERSION = "1.2.1";
417
417
 
418
418
  interface BoardUser {
419
419
  id: string;
package/dist/index.js CHANGED
@@ -143,7 +143,7 @@ async function clearSession(storage) {
143
143
  }
144
144
 
145
145
  // src/version.ts
146
- var SDK_VERSION = "1.2.0";
146
+ var SDK_VERSION = "1.2.1";
147
147
 
148
148
  // src/client.ts
149
149
  function isRawBody(body) {
package/dist/index.mjs CHANGED
@@ -105,7 +105,7 @@ async function clearSession(storage) {
105
105
  }
106
106
 
107
107
  // src/version.ts
108
- var SDK_VERSION = "1.2.0";
108
+ var SDK_VERSION = "1.2.1";
109
109
 
110
110
  // src/client.ts
111
111
  function isRawBody(body) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cavuno/board",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Typed isomorphic client for the Cavuno Board API",
5
5
  "license": "MIT",
6
6
  "repository": {