@webiny/api-headless-cms-scheduler 6.0.0-alpha.1 → 6.0.0-alpha.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.
Files changed (2) hide show
  1. package/graphql/schema.d.ts +6 -6
  2. package/package.json +16 -16
@@ -49,6 +49,7 @@ export declare const listScheduleSchema: zod.ZodObject<{
49
49
  }, "strip", zod.ZodTypeAny, {
50
50
  modelId: string;
51
51
  sort?: (`${string}_ASC` | `${string}_DESC`)[] | undefined;
52
+ limit?: number | undefined;
52
53
  after?: string | undefined;
53
54
  where?: {
54
55
  type?: ScheduleType | undefined;
@@ -61,10 +62,10 @@ export declare const listScheduleSchema: zod.ZodObject<{
61
62
  title_contains?: string | undefined;
62
63
  title_not_contains?: string | undefined;
63
64
  } | undefined;
64
- limit?: number | undefined;
65
65
  }, {
66
66
  modelId: string;
67
67
  sort?: string[] | undefined;
68
+ limit?: number | undefined;
68
69
  after?: string | undefined;
69
70
  where?: {
70
71
  type?: ScheduleType | undefined;
@@ -77,7 +78,6 @@ export declare const listScheduleSchema: zod.ZodObject<{
77
78
  title_contains?: string | undefined;
78
79
  title_not_contains?: string | undefined;
79
80
  } | undefined;
80
- limit?: number | undefined;
81
81
  }>;
82
82
  export declare const createScheduleSchema: zod.ZodObject<{
83
83
  modelId: zod.ZodString;
@@ -114,6 +114,7 @@ export declare const createScheduleSchema: zod.ZodObject<{
114
114
  dateOn?: Date | undefined;
115
115
  }>]>;
116
116
  }, "strip", zod.ZodTypeAny, {
117
+ id: string;
117
118
  input: {
118
119
  type: ScheduleType;
119
120
  immediately: true;
@@ -125,9 +126,9 @@ export declare const createScheduleSchema: zod.ZodObject<{
125
126
  immediately?: false | undefined;
126
127
  dateOn?: Date | undefined;
127
128
  };
128
- id: string;
129
129
  modelId: string;
130
130
  }, {
131
+ id: string;
131
132
  input: {
132
133
  type: ScheduleType;
133
134
  immediately: true;
@@ -139,7 +140,6 @@ export declare const createScheduleSchema: zod.ZodObject<{
139
140
  immediately?: false | undefined;
140
141
  dateOn?: Date | undefined;
141
142
  };
142
- id: string;
143
143
  modelId: string;
144
144
  }>;
145
145
  export declare const updateScheduleSchema: zod.ZodObject<{
@@ -177,6 +177,7 @@ export declare const updateScheduleSchema: zod.ZodObject<{
177
177
  dateOn?: Date | undefined;
178
178
  }>]>;
179
179
  }, "strip", zod.ZodTypeAny, {
180
+ id: string;
180
181
  input: {
181
182
  type: ScheduleType;
182
183
  immediately: true;
@@ -188,9 +189,9 @@ export declare const updateScheduleSchema: zod.ZodObject<{
188
189
  immediately?: false | undefined;
189
190
  dateOn?: Date | undefined;
190
191
  };
191
- id: string;
192
192
  modelId: string;
193
193
  }, {
194
+ id: string;
194
195
  input: {
195
196
  type: ScheduleType;
196
197
  immediately: true;
@@ -202,7 +203,6 @@ export declare const updateScheduleSchema: zod.ZodObject<{
202
203
  immediately?: false | undefined;
203
204
  dateOn?: Date | undefined;
204
205
  };
205
- id: string;
206
206
  modelId: string;
207
207
  }>;
208
208
  export declare const cancelScheduleSchema: zod.ZodObject<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/api-headless-cms-scheduler",
3
- "version": "6.0.0-alpha.1",
3
+ "version": "6.0.0-alpha.2",
4
4
  "main": "index.js",
5
5
  "description": "Schedule for Webiny Headless CMS",
6
6
  "keywords": [
@@ -13,23 +13,23 @@
13
13
  },
14
14
  "license": "MIT",
15
15
  "dependencies": {
16
- "@webiny/api": "6.0.0-alpha.1",
17
- "@webiny/api-headless-cms": "6.0.0-alpha.1",
18
- "@webiny/aws-sdk": "6.0.0-alpha.1",
19
- "@webiny/error": "6.0.0-alpha.1",
20
- "@webiny/handler-graphql": "6.0.0-alpha.1",
21
- "@webiny/utils": "6.0.0-alpha.1",
16
+ "@webiny/api": "6.0.0-alpha.2",
17
+ "@webiny/api-headless-cms": "6.0.0-alpha.2",
18
+ "@webiny/aws-sdk": "6.0.0-alpha.2",
19
+ "@webiny/error": "6.0.0-alpha.2",
20
+ "@webiny/handler-graphql": "6.0.0-alpha.2",
21
+ "@webiny/utils": "6.0.0-alpha.2",
22
22
  "zod": "3.23.8"
23
23
  },
24
24
  "devDependencies": {
25
- "@webiny/api-i18n": "6.0.0-alpha.1",
26
- "@webiny/api-security": "6.0.0-alpha.1",
27
- "@webiny/api-tenancy": "6.0.0-alpha.1",
28
- "@webiny/api-wcp": "6.0.0-alpha.1",
29
- "@webiny/handler": "6.0.0-alpha.1",
30
- "@webiny/handler-aws": "6.0.0-alpha.1",
31
- "@webiny/plugins": "6.0.0-alpha.1",
32
- "@webiny/project-utils": "6.0.0-alpha.1",
25
+ "@webiny/api-i18n": "6.0.0-alpha.2",
26
+ "@webiny/api-security": "6.0.0-alpha.2",
27
+ "@webiny/api-tenancy": "6.0.0-alpha.2",
28
+ "@webiny/api-wcp": "6.0.0-alpha.2",
29
+ "@webiny/handler": "6.0.0-alpha.2",
30
+ "@webiny/handler-aws": "6.0.0-alpha.2",
31
+ "@webiny/plugins": "6.0.0-alpha.2",
32
+ "@webiny/project-utils": "6.0.0-alpha.2",
33
33
  "aws-sdk-client-mock": "4.1.0",
34
34
  "typescript": "5.3.3"
35
35
  },
@@ -41,5 +41,5 @@
41
41
  "access": "public",
42
42
  "directory": "dist"
43
43
  },
44
- "gitHead": "9bd236cf5e689f209a11bec089207dcc2d41a53c"
44
+ "gitHead": "7c9e8fbfd62a57ece5f880dbad6c864636b0355e"
45
45
  }