@gpt-core/admin 0.5.1 → 0.5.2
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 +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -20158,7 +20158,7 @@ type GetAdminWorkspacesByWorkspaceIdExtractionExportsData = {
|
|
|
20158
20158
|
*/
|
|
20159
20159
|
workspace_id: string;
|
|
20160
20160
|
};
|
|
20161
|
-
query
|
|
20161
|
+
query?: {
|
|
20162
20162
|
/**
|
|
20163
20163
|
* Filter results using JSON:API filter syntax. Use field comparisons like `field[eq]=value`, `field[in][]=val1&field[in][]=val2`, etc.
|
|
20164
20164
|
*/
|
|
@@ -20190,9 +20190,9 @@ type GetAdminWorkspacesByWorkspaceIdExtractionExportsData = {
|
|
|
20190
20190
|
[key: string]: unknown | string | undefined;
|
|
20191
20191
|
};
|
|
20192
20192
|
/**
|
|
20193
|
-
* Export statuses to filter by
|
|
20193
|
+
* Export statuses to filter by (optional for code interface)
|
|
20194
20194
|
*/
|
|
20195
|
-
status
|
|
20195
|
+
status?: Array<"pending" | "processing" | "completed" | "failed">;
|
|
20196
20196
|
};
|
|
20197
20197
|
url: "/admin/workspaces/{workspace_id}/extraction/exports";
|
|
20198
20198
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -20158,7 +20158,7 @@ type GetAdminWorkspacesByWorkspaceIdExtractionExportsData = {
|
|
|
20158
20158
|
*/
|
|
20159
20159
|
workspace_id: string;
|
|
20160
20160
|
};
|
|
20161
|
-
query
|
|
20161
|
+
query?: {
|
|
20162
20162
|
/**
|
|
20163
20163
|
* Filter results using JSON:API filter syntax. Use field comparisons like `field[eq]=value`, `field[in][]=val1&field[in][]=val2`, etc.
|
|
20164
20164
|
*/
|
|
@@ -20190,9 +20190,9 @@ type GetAdminWorkspacesByWorkspaceIdExtractionExportsData = {
|
|
|
20190
20190
|
[key: string]: unknown | string | undefined;
|
|
20191
20191
|
};
|
|
20192
20192
|
/**
|
|
20193
|
-
* Export statuses to filter by
|
|
20193
|
+
* Export statuses to filter by (optional for code interface)
|
|
20194
20194
|
*/
|
|
20195
|
-
status
|
|
20195
|
+
status?: Array<"pending" | "processing" | "completed" | "failed">;
|
|
20196
20196
|
};
|
|
20197
20197
|
url: "/admin/workspaces/{workspace_id}/extraction/exports";
|
|
20198
20198
|
};
|