@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 +3 -0
- package/dist/api.js +1 -1
- package/dist/{chunk-QIESQM7X.js → chunk-Y2QPVJFH.js} +5 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
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
|
@@ -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