cf-service-sdk 0.0.29 → 0.0.30
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.
|
@@ -2469,10 +2469,10 @@ export type TaskStatsObject = {
|
|
|
2469
2469
|
/** Paginated response for tasks query */
|
|
2470
2470
|
export type TasksResponse = {
|
|
2471
2471
|
__typename?: 'TasksResponse';
|
|
2472
|
+
items?: Maybe<Array<Maybe<TaskObject>>>;
|
|
2472
2473
|
page?: Maybe<Scalars['Int']['output']>;
|
|
2473
2474
|
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
2474
2475
|
stats?: Maybe<TaskStatsObject>;
|
|
2475
|
-
tasks?: Maybe<Array<Maybe<TaskObject>>>;
|
|
2476
2476
|
total?: Maybe<Scalars['Int']['output']>;
|
|
2477
2477
|
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
2478
2478
|
};
|
|
@@ -11005,7 +11005,7 @@ export type TasksQuery = {
|
|
|
11005
11005
|
page?: number | null;
|
|
11006
11006
|
pageSize?: number | null;
|
|
11007
11007
|
totalPages?: number | null;
|
|
11008
|
-
|
|
11008
|
+
items?: Array<{
|
|
11009
11009
|
__typename?: 'TaskObject';
|
|
11010
11010
|
id?: number | null;
|
|
11011
11011
|
title?: string | null;
|
|
@@ -10524,7 +10524,7 @@ function useTaskSuspenseQuery(baseOptions) {
|
|
|
10524
10524
|
exports.TasksDocument = (0, client_1.gql) `
|
|
10525
10525
|
query Tasks($filters: TaskFilterInput) {
|
|
10526
10526
|
tasks(filters: $filters) {
|
|
10527
|
-
|
|
10527
|
+
items {
|
|
10528
10528
|
id
|
|
10529
10529
|
title
|
|
10530
10530
|
category
|
package/dist/queries.js
CHANGED