@uniformdev/canvas 19.80.1-alpha.192 → 19.80.1-alpha.252

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.esm.js CHANGED
@@ -476,6 +476,7 @@ var CanvasClient = class extends ApiClient {
476
476
  }
477
477
  super(options);
478
478
  this.edgeApiHost = (_a = options.edgeApiHost) != null ? _a : "https://uniform.global";
479
+ this.edgeApiRequestInit = options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0;
479
480
  }
480
481
  /** Fetches lists of Canvas compositions, optionally by type */
481
482
  async getCompositionList(params = {}) {
@@ -491,7 +492,7 @@ var CanvasClient = class extends ApiClient {
491
492
  ...params.diagnostics ? { diagnostics: "true" } : {}
492
493
  };
493
494
  const edgeUrl = this.createUrl("/api/v1/compositions", edgeParams, this.edgeApiHost);
494
- return this.apiClient(edgeUrl);
495
+ return this.apiClient(edgeUrl, this.edgeApiRequestInit);
495
496
  }
496
497
  getCompositionByNodePath(options) {
497
498
  return this.getOneComposition(options);
@@ -531,7 +532,7 @@ var CanvasClient = class extends ApiClient {
531
532
  ...diagnostics ? { diagnostics: "true" } : {}
532
533
  };
533
534
  const edgeUrl = this.createUrl("/api/v1/composition", edgeParams, this.edgeApiHost);
534
- return this.apiClient(edgeUrl);
535
+ return this.apiClient(edgeUrl, this.edgeApiRequestInit);
535
536
  }
536
537
  /** Updates or creates a Canvas component definition */
537
538
  async updateComposition(body) {
@@ -708,8 +709,15 @@ var _ContentClient = class _ContentClient extends ApiClient4 {
708
709
  getEntries(options) {
709
710
  const { projectId } = this.options;
710
711
  const { skipDataResolution, ...params } = options;
711
- const fetchUri = skipDataResolution ? this.createUrl(__privateGet(_ContentClient, _entriesUrl), { ...params, projectId }) : this.createUrl(__privateGet(_ContentClient, _entriesUrl), this.getEdgeOptions(params), this.edgeApiHost);
712
- return this.apiClient(fetchUri);
712
+ if (skipDataResolution) {
713
+ const url = this.createUrl(__privateGet(_ContentClient, _entriesUrl), { ...params, projectId });
714
+ return this.apiClient(url);
715
+ }
716
+ const edgeUrl = this.createUrl(__privateGet(_ContentClient, _entriesUrl), this.getEdgeOptions(params), this.edgeApiHost);
717
+ return this.apiClient(
718
+ edgeUrl,
719
+ this.options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0
720
+ );
713
721
  }
714
722
  /** Fetches historical versions of an entry */
715
723
  async getEntryHistory(options) {
@@ -2296,7 +2304,10 @@ var RouteClient = class extends ApiClient9 {
2296
2304
  async getRoute(options) {
2297
2305
  const { projectId } = this.options;
2298
2306
  const fetchUri = this.createUrl(ROUTE_URL, { ...options, projectId }, this.edgeApiHost);
2299
- return await this.apiClient(fetchUri);
2307
+ return await this.apiClient(
2308
+ fetchUri,
2309
+ this.options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0
2310
+ );
2300
2311
  }
2301
2312
  };
2302
2313
 
@@ -2334,6 +2345,9 @@ function convertEntryToPutEntry(entry) {
2334
2345
  _id: entry.entry._id,
2335
2346
  _name: entry.entry._name,
2336
2347
  _slug: entry.entry._slug,
2348
+ _pattern: entry.entry._pattern,
2349
+ _overridability: entry.entry._overridability,
2350
+ _overrides: entry.entry._overrides,
2337
2351
  fields: entry.entry.fields,
2338
2352
  _locales: entry.entry._locales
2339
2353
  },
package/dist/index.js CHANGED
@@ -603,6 +603,7 @@ var CanvasClient = class extends import_api2.ApiClient {
603
603
  }
604
604
  super(options);
605
605
  this.edgeApiHost = (_a = options.edgeApiHost) != null ? _a : "https://uniform.global";
606
+ this.edgeApiRequestInit = options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0;
606
607
  }
607
608
  /** Fetches lists of Canvas compositions, optionally by type */
608
609
  async getCompositionList(params = {}) {
@@ -618,7 +619,7 @@ var CanvasClient = class extends import_api2.ApiClient {
618
619
  ...params.diagnostics ? { diagnostics: "true" } : {}
619
620
  };
620
621
  const edgeUrl = this.createUrl("/api/v1/compositions", edgeParams, this.edgeApiHost);
621
- return this.apiClient(edgeUrl);
622
+ return this.apiClient(edgeUrl, this.edgeApiRequestInit);
622
623
  }
623
624
  getCompositionByNodePath(options) {
624
625
  return this.getOneComposition(options);
@@ -658,7 +659,7 @@ var CanvasClient = class extends import_api2.ApiClient {
658
659
  ...diagnostics ? { diagnostics: "true" } : {}
659
660
  };
660
661
  const edgeUrl = this.createUrl("/api/v1/composition", edgeParams, this.edgeApiHost);
661
- return this.apiClient(edgeUrl);
662
+ return this.apiClient(edgeUrl, this.edgeApiRequestInit);
662
663
  }
663
664
  /** Updates or creates a Canvas component definition */
664
665
  async updateComposition(body) {
@@ -835,8 +836,15 @@ var _ContentClient = class _ContentClient extends import_api5.ApiClient {
835
836
  getEntries(options) {
836
837
  const { projectId } = this.options;
837
838
  const { skipDataResolution, ...params } = options;
838
- const fetchUri = skipDataResolution ? this.createUrl(__privateGet(_ContentClient, _entriesUrl), { ...params, projectId }) : this.createUrl(__privateGet(_ContentClient, _entriesUrl), this.getEdgeOptions(params), this.edgeApiHost);
839
- return this.apiClient(fetchUri);
839
+ if (skipDataResolution) {
840
+ const url = this.createUrl(__privateGet(_ContentClient, _entriesUrl), { ...params, projectId });
841
+ return this.apiClient(url);
842
+ }
843
+ const edgeUrl = this.createUrl(__privateGet(_ContentClient, _entriesUrl), this.getEdgeOptions(params), this.edgeApiHost);
844
+ return this.apiClient(
845
+ edgeUrl,
846
+ this.options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0
847
+ );
840
848
  }
841
849
  /** Fetches historical versions of an entry */
842
850
  async getEntryHistory(options) {
@@ -2423,7 +2431,10 @@ var RouteClient = class extends import_api10.ApiClient {
2423
2431
  async getRoute(options) {
2424
2432
  const { projectId } = this.options;
2425
2433
  const fetchUri = this.createUrl(ROUTE_URL, { ...options, projectId }, this.edgeApiHost);
2426
- return await this.apiClient(fetchUri);
2434
+ return await this.apiClient(
2435
+ fetchUri,
2436
+ this.options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0
2437
+ );
2427
2438
  }
2428
2439
  };
2429
2440
 
@@ -2461,6 +2472,9 @@ function convertEntryToPutEntry(entry) {
2461
2472
  _id: entry.entry._id,
2462
2473
  _name: entry.entry._name,
2463
2474
  _slug: entry.entry._slug,
2475
+ _pattern: entry.entry._pattern,
2476
+ _overridability: entry.entry._overridability,
2477
+ _overrides: entry.entry._overrides,
2464
2478
  fields: entry.entry.fields,
2465
2479
  _locales: entry.entry._locales
2466
2480
  },
package/dist/index.mjs CHANGED
@@ -476,6 +476,7 @@ var CanvasClient = class extends ApiClient {
476
476
  }
477
477
  super(options);
478
478
  this.edgeApiHost = (_a = options.edgeApiHost) != null ? _a : "https://uniform.global";
479
+ this.edgeApiRequestInit = options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0;
479
480
  }
480
481
  /** Fetches lists of Canvas compositions, optionally by type */
481
482
  async getCompositionList(params = {}) {
@@ -491,7 +492,7 @@ var CanvasClient = class extends ApiClient {
491
492
  ...params.diagnostics ? { diagnostics: "true" } : {}
492
493
  };
493
494
  const edgeUrl = this.createUrl("/api/v1/compositions", edgeParams, this.edgeApiHost);
494
- return this.apiClient(edgeUrl);
495
+ return this.apiClient(edgeUrl, this.edgeApiRequestInit);
495
496
  }
496
497
  getCompositionByNodePath(options) {
497
498
  return this.getOneComposition(options);
@@ -531,7 +532,7 @@ var CanvasClient = class extends ApiClient {
531
532
  ...diagnostics ? { diagnostics: "true" } : {}
532
533
  };
533
534
  const edgeUrl = this.createUrl("/api/v1/composition", edgeParams, this.edgeApiHost);
534
- return this.apiClient(edgeUrl);
535
+ return this.apiClient(edgeUrl, this.edgeApiRequestInit);
535
536
  }
536
537
  /** Updates or creates a Canvas component definition */
537
538
  async updateComposition(body) {
@@ -708,8 +709,15 @@ var _ContentClient = class _ContentClient extends ApiClient4 {
708
709
  getEntries(options) {
709
710
  const { projectId } = this.options;
710
711
  const { skipDataResolution, ...params } = options;
711
- const fetchUri = skipDataResolution ? this.createUrl(__privateGet(_ContentClient, _entriesUrl), { ...params, projectId }) : this.createUrl(__privateGet(_ContentClient, _entriesUrl), this.getEdgeOptions(params), this.edgeApiHost);
712
- return this.apiClient(fetchUri);
712
+ if (skipDataResolution) {
713
+ const url = this.createUrl(__privateGet(_ContentClient, _entriesUrl), { ...params, projectId });
714
+ return this.apiClient(url);
715
+ }
716
+ const edgeUrl = this.createUrl(__privateGet(_ContentClient, _entriesUrl), this.getEdgeOptions(params), this.edgeApiHost);
717
+ return this.apiClient(
718
+ edgeUrl,
719
+ this.options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0
720
+ );
713
721
  }
714
722
  /** Fetches historical versions of an entry */
715
723
  async getEntryHistory(options) {
@@ -2296,7 +2304,10 @@ var RouteClient = class extends ApiClient9 {
2296
2304
  async getRoute(options) {
2297
2305
  const { projectId } = this.options;
2298
2306
  const fetchUri = this.createUrl(ROUTE_URL, { ...options, projectId }, this.edgeApiHost);
2299
- return await this.apiClient(fetchUri);
2307
+ return await this.apiClient(
2308
+ fetchUri,
2309
+ this.options.disableSWR ? { headers: { "x-disable-swr": "true" } } : void 0
2310
+ );
2300
2311
  }
2301
2312
  };
2302
2313
 
@@ -2334,6 +2345,9 @@ function convertEntryToPutEntry(entry) {
2334
2345
  _id: entry.entry._id,
2335
2346
  _name: entry.entry._name,
2336
2347
  _slug: entry.entry._slug,
2348
+ _pattern: entry.entry._pattern,
2349
+ _overridability: entry.entry._overridability,
2350
+ _overrides: entry.entry._overrides,
2337
2351
  fields: entry.entry.fields,
2338
2352
  _locales: entry.entry._locales
2339
2353
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/canvas",
3
- "version": "19.80.1-alpha.192+a267dfba25",
3
+ "version": "19.80.1-alpha.252+d847608721",
4
4
  "description": "Common functionality and types for Uniform Canvas",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -38,8 +38,8 @@
38
38
  "pusher-js": "8.2.0"
39
39
  },
40
40
  "dependencies": {
41
- "@uniformdev/assets": "19.80.1-alpha.192+a267dfba25",
42
- "@uniformdev/context": "19.80.1-alpha.192+a267dfba25",
41
+ "@uniformdev/assets": "19.80.1-alpha.252+d847608721",
42
+ "@uniformdev/context": "19.80.1-alpha.252+d847608721",
43
43
  "immer": "10.0.3"
44
44
  },
45
45
  "files": [
@@ -48,5 +48,5 @@
48
48
  "publishConfig": {
49
49
  "access": "public"
50
50
  },
51
- "gitHead": "a267dfba252cb26b79bc51681d526f2fbb8d5af3"
51
+ "gitHead": "d8476087216a62a77ce086ac719e6bb457a4fb34"
52
52
  }