graphlit-client 1.0.20250904001 → 1.0.20250904002
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.
|
@@ -205,6 +205,8 @@ export type AlertSchedulePolicy = {
|
|
|
205
205
|
__typename?: 'AlertSchedulePolicy';
|
|
206
206
|
/** If absolute time, the datetime value. */
|
|
207
207
|
absoluteTime?: Maybe<Scalars['DateTime']['output']>;
|
|
208
|
+
/** 6-field NCRONTAB expression (with seconds), e.g. '0 *\/5 * * * *'. If set, this takes precedence for scheduling. */
|
|
209
|
+
cron?: Maybe<Scalars['String']['output']>;
|
|
208
210
|
/** The delay between recurrences of the alert. */
|
|
209
211
|
delay?: Maybe<Scalars['TimeSpan']['output']>;
|
|
210
212
|
/** The alert recurrence type. */
|
|
@@ -217,11 +219,15 @@ export type AlertSchedulePolicy = {
|
|
|
217
219
|
repeatUntilTime?: Maybe<Scalars['DateTime']['output']>;
|
|
218
220
|
/** The type of time interval. */
|
|
219
221
|
timeType?: Maybe<PolicyTimeTypes>;
|
|
222
|
+
/** Time zone for interpreting Cron. Accepts IANA ('America/Los_Angeles') or Windows ('Pacific Standard Time') format. If null, Cron is interpreted as UTC. */
|
|
223
|
+
timeZoneId?: Maybe<Scalars['String']['output']>;
|
|
220
224
|
};
|
|
221
225
|
/** Represents an alert scheduling policy. */
|
|
222
226
|
export type AlertSchedulePolicyInput = {
|
|
223
227
|
/** If absolute time, the datetime value. */
|
|
224
228
|
absoluteTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
229
|
+
/** 6-field NCRONTAB expression (with seconds), e.g. '0 *\/5 * * * *'. If set, this takes precedence for scheduling. */
|
|
230
|
+
cron?: InputMaybe<Scalars['String']['input']>;
|
|
225
231
|
/** The delay between recurrences of the alert. */
|
|
226
232
|
delay?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
227
233
|
/** The alert recurrence type. */
|
|
@@ -234,6 +240,8 @@ export type AlertSchedulePolicyInput = {
|
|
|
234
240
|
repeatUntilTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
235
241
|
/** The type of time interval. */
|
|
236
242
|
timeType?: InputMaybe<PolicyTimeTypes>;
|
|
243
|
+
/** Time zone for interpreting Cron. Accepts IANA ('America/Los_Angeles') or Windows ('Pacific Standard Time') format. If null, Cron is interpreted as UTC. */
|
|
244
|
+
timeZoneId?: InputMaybe<Scalars['String']['input']>;
|
|
237
245
|
};
|
|
238
246
|
/** Alert type */
|
|
239
247
|
export declare enum AlertTypes {
|