graphlit-client 1.0.20250904002 → 1.0.20250904003

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.
@@ -212,6 +212,12 @@ export const GetAlert = gql `
212
212
  publishSpecification {
213
213
  id
214
214
  }
215
+ schedulePolicy {
216
+ recurrenceType
217
+ repeatInterval
218
+ cron
219
+ timeZoneId
220
+ }
215
221
  lastAlertDate
216
222
  }
217
223
  }
@@ -369,6 +375,12 @@ export const QueryAlerts = gql `
369
375
  publishSpecification {
370
376
  id
371
377
  }
378
+ schedulePolicy {
379
+ recurrenceType
380
+ repeatInterval
381
+ cron
382
+ timeZoneId
383
+ }
372
384
  lastAlertDate
373
385
  }
374
386
  }
@@ -15500,6 +15500,13 @@ export type GetAlertQuery = {
15500
15500
  __typename?: 'EntityReference';
15501
15501
  id: string;
15502
15502
  } | null;
15503
+ schedulePolicy?: {
15504
+ __typename?: 'AlertSchedulePolicy';
15505
+ recurrenceType?: TimedPolicyRecurrenceTypes | null;
15506
+ repeatInterval?: any | null;
15507
+ cron?: string | null;
15508
+ timeZoneId?: string | null;
15509
+ } | null;
15503
15510
  } | null;
15504
15511
  };
15505
15512
  export type QueryAlertsQueryVariables = Exact<{
@@ -15702,6 +15709,13 @@ export type QueryAlertsQuery = {
15702
15709
  __typename?: 'EntityReference';
15703
15710
  id: string;
15704
15711
  } | null;
15712
+ schedulePolicy?: {
15713
+ __typename?: 'AlertSchedulePolicy';
15714
+ recurrenceType?: TimedPolicyRecurrenceTypes | null;
15715
+ repeatInterval?: any | null;
15716
+ cron?: string | null;
15717
+ timeZoneId?: string | null;
15718
+ } | null;
15705
15719
  }> | null;
15706
15720
  } | null;
15707
15721
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250904002",
3
+ "version": "1.0.20250904003",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",