graphlit-client 1.0.20250904003 → 1.0.20250907001
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.
|
@@ -75,6 +75,9 @@ export const GetAlert = gql `
|
|
|
75
75
|
type
|
|
76
76
|
summaryPrompt
|
|
77
77
|
publishPrompt
|
|
78
|
+
view {
|
|
79
|
+
id
|
|
80
|
+
}
|
|
78
81
|
filter {
|
|
79
82
|
dateRange {
|
|
80
83
|
from
|
|
@@ -238,6 +241,9 @@ export const QueryAlerts = gql `
|
|
|
238
241
|
type
|
|
239
242
|
summaryPrompt
|
|
240
243
|
publishPrompt
|
|
244
|
+
view {
|
|
245
|
+
id
|
|
246
|
+
}
|
|
241
247
|
filter {
|
|
242
248
|
dateRange {
|
|
243
249
|
from
|
|
@@ -145,6 +145,8 @@ export type Alert = {
|
|
|
145
145
|
summarySpecification?: Maybe<EntityReference>;
|
|
146
146
|
/** The alert type. */
|
|
147
147
|
type: AlertTypes;
|
|
148
|
+
/** The saved view, optional. */
|
|
149
|
+
view?: Maybe<EntityReference>;
|
|
148
150
|
};
|
|
149
151
|
/** Represents a filter for alerts. */
|
|
150
152
|
export type AlertFilter = {
|
|
@@ -193,6 +195,8 @@ export type AlertInput = {
|
|
|
193
195
|
summarySpecification?: InputMaybe<EntityReferenceInput>;
|
|
194
196
|
/** The alert type. */
|
|
195
197
|
type: AlertTypes;
|
|
198
|
+
/** The saved view, optional. */
|
|
199
|
+
view?: InputMaybe<EntityReferenceInput>;
|
|
196
200
|
};
|
|
197
201
|
/** Represents alert query results. */
|
|
198
202
|
export type AlertResults = {
|
|
@@ -203,43 +207,23 @@ export type AlertResults = {
|
|
|
203
207
|
/** Represents an alert scheduling policy. */
|
|
204
208
|
export type AlertSchedulePolicy = {
|
|
205
209
|
__typename?: 'AlertSchedulePolicy';
|
|
206
|
-
/** If absolute time, the datetime value. */
|
|
207
|
-
absoluteTime?: Maybe<Scalars['DateTime']['output']>;
|
|
208
210
|
/** 6-field NCRONTAB expression (with seconds), e.g. '0 *\/5 * * * *'. If set, this takes precedence for scheduling. */
|
|
209
211
|
cron?: Maybe<Scalars['String']['output']>;
|
|
210
|
-
/** The delay between recurrences of the alert. */
|
|
211
|
-
delay?: Maybe<Scalars['TimeSpan']['output']>;
|
|
212
212
|
/** The alert recurrence type. */
|
|
213
213
|
recurrenceType?: Maybe<TimedPolicyRecurrenceTypes>;
|
|
214
|
-
/** If
|
|
215
|
-
relativeTime?: Maybe<Scalars['TimeSpan']['output']>;
|
|
216
|
-
/** If a repeated alert, the interval between repetitions. */
|
|
214
|
+
/** If a repeated alert, the interval between repetitions. Defaults to 15 minutes. */
|
|
217
215
|
repeatInterval?: Maybe<Scalars['TimeSpan']['output']>;
|
|
218
|
-
/** If a repeated alert, the time to repeat until */
|
|
219
|
-
repeatUntilTime?: Maybe<Scalars['DateTime']['output']>;
|
|
220
|
-
/** The type of time interval. */
|
|
221
|
-
timeType?: Maybe<PolicyTimeTypes>;
|
|
222
216
|
/** Time zone for interpreting Cron. Accepts IANA ('America/Los_Angeles') or Windows ('Pacific Standard Time') format. If null, Cron is interpreted as UTC. */
|
|
223
217
|
timeZoneId?: Maybe<Scalars['String']['output']>;
|
|
224
218
|
};
|
|
225
219
|
/** Represents an alert scheduling policy. */
|
|
226
220
|
export type AlertSchedulePolicyInput = {
|
|
227
|
-
/** If absolute time, the datetime value. */
|
|
228
|
-
absoluteTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
229
221
|
/** 6-field NCRONTAB expression (with seconds), e.g. '0 *\/5 * * * *'. If set, this takes precedence for scheduling. */
|
|
230
222
|
cron?: InputMaybe<Scalars['String']['input']>;
|
|
231
|
-
/** The delay between recurrences of the alert. */
|
|
232
|
-
delay?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
233
223
|
/** The alert recurrence type. */
|
|
234
224
|
recurrenceType?: InputMaybe<TimedPolicyRecurrenceTypes>;
|
|
235
|
-
/** If relative time, the relative timespan. */
|
|
236
|
-
relativeTime?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
237
225
|
/** If a repeated alert, the interval between repetitions. */
|
|
238
226
|
repeatInterval?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
239
|
-
/** If a repeated alert, the time to repeat until */
|
|
240
|
-
repeatUntilTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
241
|
-
/** The type of time interval. */
|
|
242
|
-
timeType?: InputMaybe<PolicyTimeTypes>;
|
|
243
227
|
/** Time zone for interpreting Cron. Accepts IANA ('America/Los_Angeles') or Windows ('Pacific Standard Time') format. If null, Cron is interpreted as UTC. */
|
|
244
228
|
timeZoneId?: InputMaybe<Scalars['String']['input']>;
|
|
245
229
|
};
|
|
@@ -270,6 +254,8 @@ export type AlertUpdateInput = {
|
|
|
270
254
|
summaryPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
271
255
|
/** The LLM specification used for summarization, optional. */
|
|
272
256
|
summarySpecification?: InputMaybe<EntityReferenceInput>;
|
|
257
|
+
/** The saved view, optional. */
|
|
258
|
+
view?: InputMaybe<EntityReferenceInput>;
|
|
273
259
|
};
|
|
274
260
|
/** Represents Amazon S3 feed properties. */
|
|
275
261
|
export type AmazonFeedProperties = {
|
|
@@ -11310,13 +11296,6 @@ export type PointInput = {
|
|
|
11310
11296
|
/** The longitude. */
|
|
11311
11297
|
longitude: Scalars['Float']['input'];
|
|
11312
11298
|
};
|
|
11313
|
-
/** Time type for policies */
|
|
11314
|
-
export declare enum PolicyTimeTypes {
|
|
11315
|
-
/** Absolute time */
|
|
11316
|
-
AbsoluteTime = "ABSOLUTE_TIME",
|
|
11317
|
-
/** Relative time */
|
|
11318
|
-
RelativeTime = "RELATIVE_TIME"
|
|
11319
|
-
}
|
|
11320
11299
|
/** Represents a preparation workflow job. */
|
|
11321
11300
|
export type PreparationWorkflowJob = {
|
|
11322
11301
|
__typename?: 'PreparationWorkflowJob';
|
|
@@ -14855,6 +14834,10 @@ export declare enum VoyageModels {
|
|
|
14855
14834
|
Voyage_3_0 = "VOYAGE_3_0",
|
|
14856
14835
|
/** Voyage 3.0 Large */
|
|
14857
14836
|
Voyage_3_0Large = "VOYAGE_3_0_LARGE",
|
|
14837
|
+
/** Voyage 3.5 */
|
|
14838
|
+
Voyage_3_5 = "VOYAGE_3_5",
|
|
14839
|
+
/** Voyage 3.5 Lite */
|
|
14840
|
+
Voyage_3_5Lite = "VOYAGE_3_5_LITE",
|
|
14858
14841
|
/** Voyage Code 2.0 */
|
|
14859
14842
|
VoyageCode_2_0 = "VOYAGE_CODE_2_0",
|
|
14860
14843
|
/** Voyage Code 3.0 */
|
|
@@ -15324,6 +15307,10 @@ export type GetAlertQuery = {
|
|
|
15324
15307
|
__typename?: 'Owner';
|
|
15325
15308
|
id: string;
|
|
15326
15309
|
};
|
|
15310
|
+
view?: {
|
|
15311
|
+
__typename?: 'EntityReference';
|
|
15312
|
+
id: string;
|
|
15313
|
+
} | null;
|
|
15327
15314
|
filter?: {
|
|
15328
15315
|
__typename?: 'ContentCriteria';
|
|
15329
15316
|
inLast?: any | null;
|
|
@@ -15533,6 +15520,10 @@ export type QueryAlertsQuery = {
|
|
|
15533
15520
|
__typename?: 'Owner';
|
|
15534
15521
|
id: string;
|
|
15535
15522
|
};
|
|
15523
|
+
view?: {
|
|
15524
|
+
__typename?: 'EntityReference';
|
|
15525
|
+
id: string;
|
|
15526
|
+
} | null;
|
|
15536
15527
|
filter?: {
|
|
15537
15528
|
__typename?: 'ContentCriteria';
|
|
15538
15529
|
inLast?: any | null;
|
|
@@ -1845,14 +1845,6 @@ export var PlaceFacetTypes;
|
|
|
1845
1845
|
/** Creation Date */
|
|
1846
1846
|
PlaceFacetTypes["CreationDate"] = "CREATION_DATE";
|
|
1847
1847
|
})(PlaceFacetTypes || (PlaceFacetTypes = {}));
|
|
1848
|
-
/** Time type for policies */
|
|
1849
|
-
export var PolicyTimeTypes;
|
|
1850
|
-
(function (PolicyTimeTypes) {
|
|
1851
|
-
/** Absolute time */
|
|
1852
|
-
PolicyTimeTypes["AbsoluteTime"] = "ABSOLUTE_TIME";
|
|
1853
|
-
/** Relative time */
|
|
1854
|
-
PolicyTimeTypes["RelativeTime"] = "RELATIVE_TIME";
|
|
1855
|
-
})(PolicyTimeTypes || (PolicyTimeTypes = {}));
|
|
1856
1848
|
/** Product facet types */
|
|
1857
1849
|
export var ProductFacetTypes;
|
|
1858
1850
|
(function (ProductFacetTypes) {
|
|
@@ -2297,6 +2289,10 @@ export var VoyageModels;
|
|
|
2297
2289
|
VoyageModels["Voyage_3_0"] = "VOYAGE_3_0";
|
|
2298
2290
|
/** Voyage 3.0 Large */
|
|
2299
2291
|
VoyageModels["Voyage_3_0Large"] = "VOYAGE_3_0_LARGE";
|
|
2292
|
+
/** Voyage 3.5 */
|
|
2293
|
+
VoyageModels["Voyage_3_5"] = "VOYAGE_3_5";
|
|
2294
|
+
/** Voyage 3.5 Lite */
|
|
2295
|
+
VoyageModels["Voyage_3_5Lite"] = "VOYAGE_3_5_LITE";
|
|
2300
2296
|
/** Voyage Code 2.0 */
|
|
2301
2297
|
VoyageModels["VoyageCode_2_0"] = "VOYAGE_CODE_2_0";
|
|
2302
2298
|
/** Voyage Code 3.0 */
|