@remixhq/core 0.1.40 → 0.1.41

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/api.d.ts CHANGED
@@ -852,6 +852,9 @@ type ApiClient = {
852
852
  listAppTimeline(appId: string, params?: {
853
853
  limit?: number;
854
854
  cursor?: string;
855
+ includeHistorical?: boolean;
856
+ includeCosts?: boolean;
857
+ includeMergeRequestHistory?: boolean;
855
858
  }): Promise<Json>;
856
859
  getAppTimelineEvent(appId: string, eventId: string): Promise<Json>;
857
860
  listAppEditQueue(appId: string, params?: {
package/dist/api.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  createApiClient
3
- } from "./chunk-QIESQM7X.js";
3
+ } from "./chunk-Y2QPVJFH.js";
4
4
  import "./chunk-7XJGOKEO.js";
5
5
  export {
6
6
  createApiClient
@@ -73,6 +73,11 @@ function buildAppTimelineQuery(params) {
73
73
  const qs = new URLSearchParams();
74
74
  if (typeof params?.limit === "number") qs.set("limit", String(params.limit));
75
75
  if (params?.cursor) qs.set("cursor", params.cursor);
76
+ if (typeof params?.includeHistorical === "boolean") qs.set("includeHistorical", String(params.includeHistorical));
77
+ if (typeof params?.includeCosts === "boolean") qs.set("includeCosts", String(params.includeCosts));
78
+ if (typeof params?.includeMergeRequestHistory === "boolean") {
79
+ qs.set("includeMergeRequestHistory", String(params.includeMergeRequestHistory));
80
+ }
76
81
  return suffix(qs);
77
82
  }
78
83
  function buildAppEditQueueQuery(params) {
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  createApiClient
3
- } from "./chunk-QIESQM7X.js";
3
+ } from "./chunk-Y2QPVJFH.js";
4
4
  import {
5
5
  createDefaultRefreshLock,
6
6
  createLocalSessionStore,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remixhq/core",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "description": "Remix core library",
5
5
  "homepage": "https://github.com/RemixDotOne/remix-core",
6
6
  "license": "MIT",