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
- tasks?: Array<{
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
- tasks {
10527
+ items {
10528
10528
  id
10529
10529
  title
10530
10530
  category
package/dist/queries.js CHANGED
@@ -1542,7 +1542,7 @@ query CallCampaignLog($id: ID!) {
1542
1542
  exports.TASKS = (0, client_1.gql) `
1543
1543
  query Tasks($filters: TaskFilterInput) {
1544
1544
  tasks(filters: $filters) {
1545
- tasks {
1545
+ items {
1546
1546
  id
1547
1547
  title
1548
1548
  category
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",