@heymantle/core-api-client 0.3.1 → 0.3.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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -12170,6 +12170,10 @@ type paths = {
|
|
|
12170
12170
|
dealId?: string;
|
|
12171
12171
|
/** @description Filter by priority (can provide multiple as comma-separated values) */
|
|
12172
12172
|
priority?: "high" | "medium" | "low";
|
|
12173
|
+
/** @description Field to sort tasks by */
|
|
12174
|
+
sort?: "dueDate" | "createdAt" | "priority";
|
|
12175
|
+
/** @description Sort direction */
|
|
12176
|
+
sortDirection?: "asc" | "desc";
|
|
12173
12177
|
/** @description Filter by status (can provide multiple as comma-separated values) */
|
|
12174
12178
|
status?: "new" | "in_progress" | "complete";
|
|
12175
12179
|
/** @description Number of tasks to return per page */
|
package/dist/index.d.ts
CHANGED
|
@@ -12170,6 +12170,10 @@ type paths = {
|
|
|
12170
12170
|
dealId?: string;
|
|
12171
12171
|
/** @description Filter by priority (can provide multiple as comma-separated values) */
|
|
12172
12172
|
priority?: "high" | "medium" | "low";
|
|
12173
|
+
/** @description Field to sort tasks by */
|
|
12174
|
+
sort?: "dueDate" | "createdAt" | "priority";
|
|
12175
|
+
/** @description Sort direction */
|
|
12176
|
+
sortDirection?: "asc" | "desc";
|
|
12173
12177
|
/** @description Filter by status (can provide multiple as comma-separated values) */
|
|
12174
12178
|
status?: "new" | "in_progress" | "complete";
|
|
12175
12179
|
/** @description Number of tasks to return per page */
|