@twin.org/background-task-models 0.0.1-next.16 → 0.0.1-next.18
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/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @twin.org/background-task-models - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.18](https://github.com/twinfoundation/background-task/compare/background-task-models-v0.0.1-next.17...background-task-models-v0.0.1-next.18) (2025-06-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **background-task-models:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [0.0.1-next.17](https://github.com/twinfoundation/background-task/compare/background-task-models-v0.0.1-next.16...background-task-models-v0.0.1-next.17) (2025-06-12)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* update dependencies ([8e65767](https://github.com/twinfoundation/background-task/commit/8e657679f5e4305dbcb15ac7bcb3ab8a4613a60b))
|
|
16
|
+
|
|
3
17
|
## [0.0.1-next.16](https://github.com/twinfoundation/background-task/compare/background-task-models-v0.0.1-next.15...background-task-models-v0.0.1-next.16) (2025-06-05)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -236,7 +236,7 @@ Nothing.
|
|
|
236
236
|
|
|
237
237
|
### query()
|
|
238
238
|
|
|
239
|
-
> **query**(`taskType?`, `taskStatus?`, `sortProperty?`, `sortDirection?`, `cursor?`, `pageSize?`): `Promise`\<\{ `entities`: [`IBackgroundTask`](IBackgroundTask.md)\<`any`, `any`\>[]; `cursor
|
|
239
|
+
> **query**(`taskType?`, `taskStatus?`, `sortProperty?`, `sortDirection?`, `cursor?`, `pageSize?`): `Promise`\<\{ `entities`: [`IBackgroundTask`](IBackgroundTask.md)\<`any`, `any`\>[]; `cursor?`: `string`; \}\>
|
|
240
240
|
|
|
241
241
|
Get a list of tasks.
|
|
242
242
|
|
|
@@ -258,7 +258,7 @@ The status of the task to get.
|
|
|
258
258
|
|
|
259
259
|
The property to sort by, defaults to dateCreated.
|
|
260
260
|
|
|
261
|
-
`"
|
|
261
|
+
`"dateCreated"` | `"dateModified"` | `"dateCompleted"` | `"status"`
|
|
262
262
|
|
|
263
263
|
##### sortDirection?
|
|
264
264
|
|
|
@@ -280,6 +280,6 @@ The maximum number of entities in a page.
|
|
|
280
280
|
|
|
281
281
|
#### Returns
|
|
282
282
|
|
|
283
|
-
`Promise`\<\{ `entities`: [`IBackgroundTask`](IBackgroundTask.md)\<`any`, `any`\>[]; `cursor
|
|
283
|
+
`Promise`\<\{ `entities`: [`IBackgroundTask`](IBackgroundTask.md)\<`any`, `any`\>[]; `cursor?`: `string`; \}\>
|
|
284
284
|
|
|
285
285
|
The list of tasks.
|
package/package.json
CHANGED