@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 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: Array<"pending" | "processing" | "completed" | "failed">;
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: Array<"pending" | "processing" | "completed" | "failed">;
20195
+ status?: Array<"pending" | "processing" | "completed" | "failed">;
20196
20196
  };
20197
20197
  url: "/admin/workspaces/{workspace_id}/extraction/exports";
20198
20198
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/admin",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "TypeScript SDK for GPT Core Admin API - Platform administration and ISV management",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",