@shelby-protocol/sdk 0.2.0 → 0.2.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.
- package/dist/browser/index.d.ts +1 -1
- package/dist/browser/index.mjs +31 -29
- package/dist/chunk-3NRBHSMQ.mjs +12 -0
- package/dist/{chunk-W37FZSMA.mjs → chunk-57RQAVKL.mjs} +1 -1
- package/dist/{chunk-4ZOFT75Q.mjs → chunk-7OV5ZYW6.mjs} +2 -2
- package/dist/{chunk-2WEX3K7C.mjs → chunk-BXEVML7N.mjs} +1 -1
- package/dist/{chunk-PJVWGMVI.mjs → chunk-E5PP7BZJ.mjs} +9 -9
- package/dist/{chunk-CGYJLKBU.mjs → chunk-EZPZAUIV.mjs} +1 -1
- package/dist/{chunk-ZEDD2MPU.mjs → chunk-FMPOGFDW.mjs} +1 -1
- package/dist/{chunk-MV6FNYAU.mjs → chunk-H53O23I7.mjs} +99 -20
- package/dist/{chunk-E5QCRTBU.mjs → chunk-H5YZHUSJ.mjs} +87 -75
- package/dist/{chunk-7PN65RDX.mjs → chunk-ONOOCOQ5.mjs} +16 -14
- package/dist/{chunk-SRV4YWFH.mjs → chunk-PESSW3FK.mjs} +52 -17
- package/dist/chunk-TVLV7C74.mjs +207 -0
- package/dist/{chunk-4JZO2D7T.mjs → chunk-UEZNZBJO.mjs} +9 -2
- package/dist/core/blobs.mjs +2 -1
- package/dist/core/clients/ShelbyBlobClient.d.ts +16 -0
- package/dist/core/clients/ShelbyBlobClient.mjs +8 -8
- package/dist/core/clients/ShelbyClient.mjs +13 -13
- package/dist/core/clients/ShelbyMetadataClient.d.ts +56 -5
- package/dist/core/clients/ShelbyMetadataClient.mjs +3 -2
- package/dist/core/clients/ShelbyMicropaymentChannelClient.d.ts +39 -34
- package/dist/core/clients/ShelbyMicropaymentChannelClient.mjs +5 -4
- package/dist/core/clients/ShelbyPlacementGroupClient.mjs +3 -3
- package/dist/core/clients/ShelbyRPCClient.mjs +6 -6
- package/dist/core/clients/index.mjs +17 -17
- package/dist/core/commitments.mjs +2 -2
- package/dist/core/constants.d.ts +2 -2
- package/dist/core/constants.mjs +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.mjs +31 -29
- package/dist/core/operations/generated/types.d.ts +908 -0
- package/dist/core/operations/generated/types.mjs +63 -0
- package/dist/core/operations/index.mjs +2 -2
- package/dist/core/types/index.mjs +2 -1
- package/dist/core/types/payments.d.ts +82 -9
- package/dist/core/types/payments.mjs +2 -1
- package/dist/core/types/placement_groups.d.ts +2 -2
- package/dist/core/types/storage_providers.d.ts +2 -2
- package/dist/core/utils.d.ts +3 -2
- package/dist/core/utils.mjs +3 -1
- package/dist/node/clients/ShelbyNodeClient.mjs +14 -14
- package/dist/node/clients/index.mjs +16 -16
- package/dist/node/index.d.ts +1 -1
- package/dist/node/index.mjs +32 -30
- package/package.json +1 -1
- package/dist/chunk-4MG4XGY4.mjs +0 -91
- package/dist/chunk-OTBLZL2S.mjs +0 -9
|
@@ -0,0 +1,908 @@
|
|
|
1
|
+
type Maybe<T> = T | null;
|
|
2
|
+
type InputMaybe<T> = Maybe<T>;
|
|
3
|
+
type Exact<T extends {
|
|
4
|
+
[key: string]: unknown;
|
|
5
|
+
}> = {
|
|
6
|
+
[K in keyof T]: T[K];
|
|
7
|
+
};
|
|
8
|
+
type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
9
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
10
|
+
};
|
|
11
|
+
type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
12
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
13
|
+
};
|
|
14
|
+
type MakeEmpty<T extends {
|
|
15
|
+
[key: string]: unknown;
|
|
16
|
+
}, K extends keyof T> = {
|
|
17
|
+
[_ in K]?: never;
|
|
18
|
+
};
|
|
19
|
+
type Incremental<T> = T | {
|
|
20
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
21
|
+
};
|
|
22
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
23
|
+
type Scalars = {
|
|
24
|
+
ID: {
|
|
25
|
+
input: string;
|
|
26
|
+
output: string;
|
|
27
|
+
};
|
|
28
|
+
String: {
|
|
29
|
+
input: string;
|
|
30
|
+
output: string;
|
|
31
|
+
};
|
|
32
|
+
Boolean: {
|
|
33
|
+
input: boolean;
|
|
34
|
+
output: boolean;
|
|
35
|
+
};
|
|
36
|
+
Int: {
|
|
37
|
+
input: number;
|
|
38
|
+
output: number;
|
|
39
|
+
};
|
|
40
|
+
Float: {
|
|
41
|
+
input: number;
|
|
42
|
+
output: number;
|
|
43
|
+
};
|
|
44
|
+
bigint: {
|
|
45
|
+
input: any;
|
|
46
|
+
output: any;
|
|
47
|
+
};
|
|
48
|
+
numeric: {
|
|
49
|
+
input: any;
|
|
50
|
+
output: any;
|
|
51
|
+
};
|
|
52
|
+
timestamp: {
|
|
53
|
+
input: any;
|
|
54
|
+
output: any;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
/** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */
|
|
58
|
+
type String_Comparison_Exp = {
|
|
59
|
+
_eq?: InputMaybe<Scalars['String']['input']>;
|
|
60
|
+
_gt?: InputMaybe<Scalars['String']['input']>;
|
|
61
|
+
_gte?: InputMaybe<Scalars['String']['input']>;
|
|
62
|
+
/** does the column match the given case-insensitive pattern */
|
|
63
|
+
_ilike?: InputMaybe<Scalars['String']['input']>;
|
|
64
|
+
_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
65
|
+
/** does the column match the given POSIX regular expression, case insensitive */
|
|
66
|
+
_iregex?: InputMaybe<Scalars['String']['input']>;
|
|
67
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68
|
+
/** does the column match the given pattern */
|
|
69
|
+
_like?: InputMaybe<Scalars['String']['input']>;
|
|
70
|
+
_lt?: InputMaybe<Scalars['String']['input']>;
|
|
71
|
+
_lte?: InputMaybe<Scalars['String']['input']>;
|
|
72
|
+
_neq?: InputMaybe<Scalars['String']['input']>;
|
|
73
|
+
/** does the column NOT match the given case-insensitive pattern */
|
|
74
|
+
_nilike?: InputMaybe<Scalars['String']['input']>;
|
|
75
|
+
_nin?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
76
|
+
/** does the column NOT match the given POSIX regular expression, case insensitive */
|
|
77
|
+
_niregex?: InputMaybe<Scalars['String']['input']>;
|
|
78
|
+
/** does the column NOT match the given pattern */
|
|
79
|
+
_nlike?: InputMaybe<Scalars['String']['input']>;
|
|
80
|
+
/** does the column NOT match the given POSIX regular expression, case sensitive */
|
|
81
|
+
_nregex?: InputMaybe<Scalars['String']['input']>;
|
|
82
|
+
/** does the column NOT match the given SQL regular expression */
|
|
83
|
+
_nsimilar?: InputMaybe<Scalars['String']['input']>;
|
|
84
|
+
/** does the column match the given POSIX regular expression, case sensitive */
|
|
85
|
+
_regex?: InputMaybe<Scalars['String']['input']>;
|
|
86
|
+
/** does the column match the given SQL regular expression */
|
|
87
|
+
_similar?: InputMaybe<Scalars['String']['input']>;
|
|
88
|
+
};
|
|
89
|
+
/** Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. */
|
|
90
|
+
type Bigint_Comparison_Exp = {
|
|
91
|
+
_eq?: InputMaybe<Scalars['bigint']['input']>;
|
|
92
|
+
_gt?: InputMaybe<Scalars['bigint']['input']>;
|
|
93
|
+
_gte?: InputMaybe<Scalars['bigint']['input']>;
|
|
94
|
+
_in?: InputMaybe<Array<Scalars['bigint']['input']>>;
|
|
95
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96
|
+
_lt?: InputMaybe<Scalars['bigint']['input']>;
|
|
97
|
+
_lte?: InputMaybe<Scalars['bigint']['input']>;
|
|
98
|
+
_neq?: InputMaybe<Scalars['bigint']['input']>;
|
|
99
|
+
_nin?: InputMaybe<Array<Scalars['bigint']['input']>>;
|
|
100
|
+
};
|
|
101
|
+
/** columns and relationships of "blob_activities" */
|
|
102
|
+
type Blob_Activities = {
|
|
103
|
+
__typename?: 'blob_activities';
|
|
104
|
+
blob_name: Scalars['String']['output'];
|
|
105
|
+
event_index: Scalars['numeric']['output'];
|
|
106
|
+
event_type: Scalars['String']['output'];
|
|
107
|
+
timestamp: Scalars['timestamp']['output'];
|
|
108
|
+
transaction_hash: Scalars['String']['output'];
|
|
109
|
+
transaction_version: Scalars['numeric']['output'];
|
|
110
|
+
};
|
|
111
|
+
/** aggregated selection of "blob_activities" */
|
|
112
|
+
type Blob_Activities_Aggregate = {
|
|
113
|
+
__typename?: 'blob_activities_aggregate';
|
|
114
|
+
aggregate?: Maybe<Blob_Activities_Aggregate_Fields>;
|
|
115
|
+
nodes: Array<Blob_Activities>;
|
|
116
|
+
};
|
|
117
|
+
/** aggregate fields of "blob_activities" */
|
|
118
|
+
type Blob_Activities_Aggregate_Fields = {
|
|
119
|
+
__typename?: 'blob_activities_aggregate_fields';
|
|
120
|
+
avg?: Maybe<Blob_Activities_Avg_Fields>;
|
|
121
|
+
count: Scalars['Int']['output'];
|
|
122
|
+
max?: Maybe<Blob_Activities_Max_Fields>;
|
|
123
|
+
min?: Maybe<Blob_Activities_Min_Fields>;
|
|
124
|
+
stddev?: Maybe<Blob_Activities_Stddev_Fields>;
|
|
125
|
+
stddev_pop?: Maybe<Blob_Activities_Stddev_Pop_Fields>;
|
|
126
|
+
stddev_samp?: Maybe<Blob_Activities_Stddev_Samp_Fields>;
|
|
127
|
+
sum?: Maybe<Blob_Activities_Sum_Fields>;
|
|
128
|
+
var_pop?: Maybe<Blob_Activities_Var_Pop_Fields>;
|
|
129
|
+
var_samp?: Maybe<Blob_Activities_Var_Samp_Fields>;
|
|
130
|
+
variance?: Maybe<Blob_Activities_Variance_Fields>;
|
|
131
|
+
};
|
|
132
|
+
/** aggregate fields of "blob_activities" */
|
|
133
|
+
type Blob_Activities_Aggregate_FieldsCountArgs = {
|
|
134
|
+
columns?: InputMaybe<Array<Blob_Activities_Select_Column>>;
|
|
135
|
+
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
136
|
+
};
|
|
137
|
+
/** aggregate avg on columns */
|
|
138
|
+
type Blob_Activities_Avg_Fields = {
|
|
139
|
+
__typename?: 'blob_activities_avg_fields';
|
|
140
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
141
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
142
|
+
};
|
|
143
|
+
/** Boolean expression to filter rows from the table "blob_activities". All fields are combined with a logical 'AND'. */
|
|
144
|
+
type Blob_Activities_Bool_Exp = {
|
|
145
|
+
_and?: InputMaybe<Array<Blob_Activities_Bool_Exp>>;
|
|
146
|
+
_not?: InputMaybe<Blob_Activities_Bool_Exp>;
|
|
147
|
+
_or?: InputMaybe<Array<Blob_Activities_Bool_Exp>>;
|
|
148
|
+
blob_name?: InputMaybe<String_Comparison_Exp>;
|
|
149
|
+
event_index?: InputMaybe<Numeric_Comparison_Exp>;
|
|
150
|
+
event_type?: InputMaybe<String_Comparison_Exp>;
|
|
151
|
+
timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
152
|
+
transaction_hash?: InputMaybe<String_Comparison_Exp>;
|
|
153
|
+
transaction_version?: InputMaybe<Numeric_Comparison_Exp>;
|
|
154
|
+
};
|
|
155
|
+
/** aggregate max on columns */
|
|
156
|
+
type Blob_Activities_Max_Fields = {
|
|
157
|
+
__typename?: 'blob_activities_max_fields';
|
|
158
|
+
blob_name?: Maybe<Scalars['String']['output']>;
|
|
159
|
+
event_index?: Maybe<Scalars['numeric']['output']>;
|
|
160
|
+
event_type?: Maybe<Scalars['String']['output']>;
|
|
161
|
+
timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
162
|
+
transaction_hash?: Maybe<Scalars['String']['output']>;
|
|
163
|
+
transaction_version?: Maybe<Scalars['numeric']['output']>;
|
|
164
|
+
};
|
|
165
|
+
/** aggregate min on columns */
|
|
166
|
+
type Blob_Activities_Min_Fields = {
|
|
167
|
+
__typename?: 'blob_activities_min_fields';
|
|
168
|
+
blob_name?: Maybe<Scalars['String']['output']>;
|
|
169
|
+
event_index?: Maybe<Scalars['numeric']['output']>;
|
|
170
|
+
event_type?: Maybe<Scalars['String']['output']>;
|
|
171
|
+
timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
172
|
+
transaction_hash?: Maybe<Scalars['String']['output']>;
|
|
173
|
+
transaction_version?: Maybe<Scalars['numeric']['output']>;
|
|
174
|
+
};
|
|
175
|
+
/** Ordering options when selecting data from "blob_activities". */
|
|
176
|
+
type Blob_Activities_Order_By = {
|
|
177
|
+
blob_name?: InputMaybe<Order_By>;
|
|
178
|
+
event_index?: InputMaybe<Order_By>;
|
|
179
|
+
event_type?: InputMaybe<Order_By>;
|
|
180
|
+
timestamp?: InputMaybe<Order_By>;
|
|
181
|
+
transaction_hash?: InputMaybe<Order_By>;
|
|
182
|
+
transaction_version?: InputMaybe<Order_By>;
|
|
183
|
+
};
|
|
184
|
+
/** select columns of table "blob_activities" */
|
|
185
|
+
declare enum Blob_Activities_Select_Column {
|
|
186
|
+
/** column name */
|
|
187
|
+
BlobName = "blob_name",
|
|
188
|
+
/** column name */
|
|
189
|
+
EventIndex = "event_index",
|
|
190
|
+
/** column name */
|
|
191
|
+
EventType = "event_type",
|
|
192
|
+
/** column name */
|
|
193
|
+
Timestamp = "timestamp",
|
|
194
|
+
/** column name */
|
|
195
|
+
TransactionHash = "transaction_hash",
|
|
196
|
+
/** column name */
|
|
197
|
+
TransactionVersion = "transaction_version"
|
|
198
|
+
}
|
|
199
|
+
/** aggregate stddev on columns */
|
|
200
|
+
type Blob_Activities_Stddev_Fields = {
|
|
201
|
+
__typename?: 'blob_activities_stddev_fields';
|
|
202
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
203
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
204
|
+
};
|
|
205
|
+
/** aggregate stddev_pop on columns */
|
|
206
|
+
type Blob_Activities_Stddev_Pop_Fields = {
|
|
207
|
+
__typename?: 'blob_activities_stddev_pop_fields';
|
|
208
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
209
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
210
|
+
};
|
|
211
|
+
/** aggregate stddev_samp on columns */
|
|
212
|
+
type Blob_Activities_Stddev_Samp_Fields = {
|
|
213
|
+
__typename?: 'blob_activities_stddev_samp_fields';
|
|
214
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
215
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
216
|
+
};
|
|
217
|
+
/** Streaming cursor of the table "blob_activities" */
|
|
218
|
+
type Blob_Activities_Stream_Cursor_Input = {
|
|
219
|
+
/** Stream column input with initial value */
|
|
220
|
+
initial_value: Blob_Activities_Stream_Cursor_Value_Input;
|
|
221
|
+
/** cursor ordering */
|
|
222
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
223
|
+
};
|
|
224
|
+
/** Initial value of the column from where the streaming should start */
|
|
225
|
+
type Blob_Activities_Stream_Cursor_Value_Input = {
|
|
226
|
+
blob_name?: InputMaybe<Scalars['String']['input']>;
|
|
227
|
+
event_index?: InputMaybe<Scalars['numeric']['input']>;
|
|
228
|
+
event_type?: InputMaybe<Scalars['String']['input']>;
|
|
229
|
+
timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
230
|
+
transaction_hash?: InputMaybe<Scalars['String']['input']>;
|
|
231
|
+
transaction_version?: InputMaybe<Scalars['numeric']['input']>;
|
|
232
|
+
};
|
|
233
|
+
/** aggregate sum on columns */
|
|
234
|
+
type Blob_Activities_Sum_Fields = {
|
|
235
|
+
__typename?: 'blob_activities_sum_fields';
|
|
236
|
+
event_index?: Maybe<Scalars['numeric']['output']>;
|
|
237
|
+
transaction_version?: Maybe<Scalars['numeric']['output']>;
|
|
238
|
+
};
|
|
239
|
+
/** aggregate var_pop on columns */
|
|
240
|
+
type Blob_Activities_Var_Pop_Fields = {
|
|
241
|
+
__typename?: 'blob_activities_var_pop_fields';
|
|
242
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
243
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
244
|
+
};
|
|
245
|
+
/** aggregate var_samp on columns */
|
|
246
|
+
type Blob_Activities_Var_Samp_Fields = {
|
|
247
|
+
__typename?: 'blob_activities_var_samp_fields';
|
|
248
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
249
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
250
|
+
};
|
|
251
|
+
/** aggregate variance on columns */
|
|
252
|
+
type Blob_Activities_Variance_Fields = {
|
|
253
|
+
__typename?: 'blob_activities_variance_fields';
|
|
254
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
255
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
256
|
+
};
|
|
257
|
+
/** columns and relationships of "blobs" */
|
|
258
|
+
type Blobs = {
|
|
259
|
+
__typename?: 'blobs';
|
|
260
|
+
blob_commitment: Scalars['String']['output'];
|
|
261
|
+
blob_name: Scalars['String']['output'];
|
|
262
|
+
created_at: Scalars['numeric']['output'];
|
|
263
|
+
expires_at: Scalars['numeric']['output'];
|
|
264
|
+
is_deleted: Scalars['numeric']['output'];
|
|
265
|
+
is_written: Scalars['numeric']['output'];
|
|
266
|
+
num_chunksets: Scalars['numeric']['output'];
|
|
267
|
+
owner: Scalars['String']['output'];
|
|
268
|
+
placement_group: Scalars['String']['output'];
|
|
269
|
+
/** An array relationship */
|
|
270
|
+
placement_group_slots: Array<Placement_Group_Slots>;
|
|
271
|
+
size: Scalars['numeric']['output'];
|
|
272
|
+
slice_address: Scalars['String']['output'];
|
|
273
|
+
updated_at: Scalars['numeric']['output'];
|
|
274
|
+
};
|
|
275
|
+
/** columns and relationships of "blobs" */
|
|
276
|
+
type BlobsPlacement_Group_SlotsArgs = {
|
|
277
|
+
distinct_on?: InputMaybe<Array<Placement_Group_Slots_Select_Column>>;
|
|
278
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
279
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
280
|
+
order_by?: InputMaybe<Array<Placement_Group_Slots_Order_By>>;
|
|
281
|
+
where?: InputMaybe<Placement_Group_Slots_Bool_Exp>;
|
|
282
|
+
};
|
|
283
|
+
/** aggregated selection of "blobs" */
|
|
284
|
+
type Blobs_Aggregate = {
|
|
285
|
+
__typename?: 'blobs_aggregate';
|
|
286
|
+
aggregate?: Maybe<Blobs_Aggregate_Fields>;
|
|
287
|
+
nodes: Array<Blobs>;
|
|
288
|
+
};
|
|
289
|
+
/** aggregate fields of "blobs" */
|
|
290
|
+
type Blobs_Aggregate_Fields = {
|
|
291
|
+
__typename?: 'blobs_aggregate_fields';
|
|
292
|
+
avg?: Maybe<Blobs_Avg_Fields>;
|
|
293
|
+
count: Scalars['Int']['output'];
|
|
294
|
+
max?: Maybe<Blobs_Max_Fields>;
|
|
295
|
+
min?: Maybe<Blobs_Min_Fields>;
|
|
296
|
+
stddev?: Maybe<Blobs_Stddev_Fields>;
|
|
297
|
+
stddev_pop?: Maybe<Blobs_Stddev_Pop_Fields>;
|
|
298
|
+
stddev_samp?: Maybe<Blobs_Stddev_Samp_Fields>;
|
|
299
|
+
sum?: Maybe<Blobs_Sum_Fields>;
|
|
300
|
+
var_pop?: Maybe<Blobs_Var_Pop_Fields>;
|
|
301
|
+
var_samp?: Maybe<Blobs_Var_Samp_Fields>;
|
|
302
|
+
variance?: Maybe<Blobs_Variance_Fields>;
|
|
303
|
+
};
|
|
304
|
+
/** aggregate fields of "blobs" */
|
|
305
|
+
type Blobs_Aggregate_FieldsCountArgs = {
|
|
306
|
+
columns?: InputMaybe<Array<Blobs_Select_Column>>;
|
|
307
|
+
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
308
|
+
};
|
|
309
|
+
/** aggregate avg on columns */
|
|
310
|
+
type Blobs_Avg_Fields = {
|
|
311
|
+
__typename?: 'blobs_avg_fields';
|
|
312
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
313
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
314
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
315
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
316
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
317
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
318
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
319
|
+
};
|
|
320
|
+
/** Boolean expression to filter rows from the table "blobs". All fields are combined with a logical 'AND'. */
|
|
321
|
+
type Blobs_Bool_Exp = {
|
|
322
|
+
_and?: InputMaybe<Array<Blobs_Bool_Exp>>;
|
|
323
|
+
_not?: InputMaybe<Blobs_Bool_Exp>;
|
|
324
|
+
_or?: InputMaybe<Array<Blobs_Bool_Exp>>;
|
|
325
|
+
blob_commitment?: InputMaybe<String_Comparison_Exp>;
|
|
326
|
+
blob_name?: InputMaybe<String_Comparison_Exp>;
|
|
327
|
+
created_at?: InputMaybe<Numeric_Comparison_Exp>;
|
|
328
|
+
expires_at?: InputMaybe<Numeric_Comparison_Exp>;
|
|
329
|
+
is_deleted?: InputMaybe<Numeric_Comparison_Exp>;
|
|
330
|
+
is_written?: InputMaybe<Numeric_Comparison_Exp>;
|
|
331
|
+
num_chunksets?: InputMaybe<Numeric_Comparison_Exp>;
|
|
332
|
+
owner?: InputMaybe<String_Comparison_Exp>;
|
|
333
|
+
placement_group?: InputMaybe<String_Comparison_Exp>;
|
|
334
|
+
placement_group_slots?: InputMaybe<Placement_Group_Slots_Bool_Exp>;
|
|
335
|
+
size?: InputMaybe<Numeric_Comparison_Exp>;
|
|
336
|
+
slice_address?: InputMaybe<String_Comparison_Exp>;
|
|
337
|
+
updated_at?: InputMaybe<Numeric_Comparison_Exp>;
|
|
338
|
+
};
|
|
339
|
+
/** aggregate max on columns */
|
|
340
|
+
type Blobs_Max_Fields = {
|
|
341
|
+
__typename?: 'blobs_max_fields';
|
|
342
|
+
blob_commitment?: Maybe<Scalars['String']['output']>;
|
|
343
|
+
blob_name?: Maybe<Scalars['String']['output']>;
|
|
344
|
+
created_at?: Maybe<Scalars['numeric']['output']>;
|
|
345
|
+
expires_at?: Maybe<Scalars['numeric']['output']>;
|
|
346
|
+
is_deleted?: Maybe<Scalars['numeric']['output']>;
|
|
347
|
+
is_written?: Maybe<Scalars['numeric']['output']>;
|
|
348
|
+
num_chunksets?: Maybe<Scalars['numeric']['output']>;
|
|
349
|
+
owner?: Maybe<Scalars['String']['output']>;
|
|
350
|
+
placement_group?: Maybe<Scalars['String']['output']>;
|
|
351
|
+
size?: Maybe<Scalars['numeric']['output']>;
|
|
352
|
+
slice_address?: Maybe<Scalars['String']['output']>;
|
|
353
|
+
updated_at?: Maybe<Scalars['numeric']['output']>;
|
|
354
|
+
};
|
|
355
|
+
/** aggregate min on columns */
|
|
356
|
+
type Blobs_Min_Fields = {
|
|
357
|
+
__typename?: 'blobs_min_fields';
|
|
358
|
+
blob_commitment?: Maybe<Scalars['String']['output']>;
|
|
359
|
+
blob_name?: Maybe<Scalars['String']['output']>;
|
|
360
|
+
created_at?: Maybe<Scalars['numeric']['output']>;
|
|
361
|
+
expires_at?: Maybe<Scalars['numeric']['output']>;
|
|
362
|
+
is_deleted?: Maybe<Scalars['numeric']['output']>;
|
|
363
|
+
is_written?: Maybe<Scalars['numeric']['output']>;
|
|
364
|
+
num_chunksets?: Maybe<Scalars['numeric']['output']>;
|
|
365
|
+
owner?: Maybe<Scalars['String']['output']>;
|
|
366
|
+
placement_group?: Maybe<Scalars['String']['output']>;
|
|
367
|
+
size?: Maybe<Scalars['numeric']['output']>;
|
|
368
|
+
slice_address?: Maybe<Scalars['String']['output']>;
|
|
369
|
+
updated_at?: Maybe<Scalars['numeric']['output']>;
|
|
370
|
+
};
|
|
371
|
+
/** Ordering options when selecting data from "blobs". */
|
|
372
|
+
type Blobs_Order_By = {
|
|
373
|
+
blob_commitment?: InputMaybe<Order_By>;
|
|
374
|
+
blob_name?: InputMaybe<Order_By>;
|
|
375
|
+
created_at?: InputMaybe<Order_By>;
|
|
376
|
+
expires_at?: InputMaybe<Order_By>;
|
|
377
|
+
is_deleted?: InputMaybe<Order_By>;
|
|
378
|
+
is_written?: InputMaybe<Order_By>;
|
|
379
|
+
num_chunksets?: InputMaybe<Order_By>;
|
|
380
|
+
owner?: InputMaybe<Order_By>;
|
|
381
|
+
placement_group?: InputMaybe<Order_By>;
|
|
382
|
+
placement_group_slots_aggregate?: InputMaybe<Placement_Group_Slots_Aggregate_Order_By>;
|
|
383
|
+
size?: InputMaybe<Order_By>;
|
|
384
|
+
slice_address?: InputMaybe<Order_By>;
|
|
385
|
+
updated_at?: InputMaybe<Order_By>;
|
|
386
|
+
};
|
|
387
|
+
/** select columns of table "blobs" */
|
|
388
|
+
declare enum Blobs_Select_Column {
|
|
389
|
+
/** column name */
|
|
390
|
+
BlobCommitment = "blob_commitment",
|
|
391
|
+
/** column name */
|
|
392
|
+
BlobName = "blob_name",
|
|
393
|
+
/** column name */
|
|
394
|
+
CreatedAt = "created_at",
|
|
395
|
+
/** column name */
|
|
396
|
+
ExpiresAt = "expires_at",
|
|
397
|
+
/** column name */
|
|
398
|
+
IsDeleted = "is_deleted",
|
|
399
|
+
/** column name */
|
|
400
|
+
IsWritten = "is_written",
|
|
401
|
+
/** column name */
|
|
402
|
+
NumChunksets = "num_chunksets",
|
|
403
|
+
/** column name */
|
|
404
|
+
Owner = "owner",
|
|
405
|
+
/** column name */
|
|
406
|
+
PlacementGroup = "placement_group",
|
|
407
|
+
/** column name */
|
|
408
|
+
Size = "size",
|
|
409
|
+
/** column name */
|
|
410
|
+
SliceAddress = "slice_address",
|
|
411
|
+
/** column name */
|
|
412
|
+
UpdatedAt = "updated_at"
|
|
413
|
+
}
|
|
414
|
+
/** aggregate stddev on columns */
|
|
415
|
+
type Blobs_Stddev_Fields = {
|
|
416
|
+
__typename?: 'blobs_stddev_fields';
|
|
417
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
418
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
419
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
420
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
421
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
422
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
423
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
424
|
+
};
|
|
425
|
+
/** aggregate stddev_pop on columns */
|
|
426
|
+
type Blobs_Stddev_Pop_Fields = {
|
|
427
|
+
__typename?: 'blobs_stddev_pop_fields';
|
|
428
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
429
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
430
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
431
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
432
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
433
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
434
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
435
|
+
};
|
|
436
|
+
/** aggregate stddev_samp on columns */
|
|
437
|
+
type Blobs_Stddev_Samp_Fields = {
|
|
438
|
+
__typename?: 'blobs_stddev_samp_fields';
|
|
439
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
440
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
441
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
442
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
443
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
444
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
445
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
446
|
+
};
|
|
447
|
+
/** Streaming cursor of the table "blobs" */
|
|
448
|
+
type Blobs_Stream_Cursor_Input = {
|
|
449
|
+
/** Stream column input with initial value */
|
|
450
|
+
initial_value: Blobs_Stream_Cursor_Value_Input;
|
|
451
|
+
/** cursor ordering */
|
|
452
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
453
|
+
};
|
|
454
|
+
/** Initial value of the column from where the streaming should start */
|
|
455
|
+
type Blobs_Stream_Cursor_Value_Input = {
|
|
456
|
+
blob_commitment?: InputMaybe<Scalars['String']['input']>;
|
|
457
|
+
blob_name?: InputMaybe<Scalars['String']['input']>;
|
|
458
|
+
created_at?: InputMaybe<Scalars['numeric']['input']>;
|
|
459
|
+
expires_at?: InputMaybe<Scalars['numeric']['input']>;
|
|
460
|
+
is_deleted?: InputMaybe<Scalars['numeric']['input']>;
|
|
461
|
+
is_written?: InputMaybe<Scalars['numeric']['input']>;
|
|
462
|
+
num_chunksets?: InputMaybe<Scalars['numeric']['input']>;
|
|
463
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
464
|
+
placement_group?: InputMaybe<Scalars['String']['input']>;
|
|
465
|
+
size?: InputMaybe<Scalars['numeric']['input']>;
|
|
466
|
+
slice_address?: InputMaybe<Scalars['String']['input']>;
|
|
467
|
+
updated_at?: InputMaybe<Scalars['numeric']['input']>;
|
|
468
|
+
};
|
|
469
|
+
/** aggregate sum on columns */
|
|
470
|
+
type Blobs_Sum_Fields = {
|
|
471
|
+
__typename?: 'blobs_sum_fields';
|
|
472
|
+
created_at?: Maybe<Scalars['numeric']['output']>;
|
|
473
|
+
expires_at?: Maybe<Scalars['numeric']['output']>;
|
|
474
|
+
is_deleted?: Maybe<Scalars['numeric']['output']>;
|
|
475
|
+
is_written?: Maybe<Scalars['numeric']['output']>;
|
|
476
|
+
num_chunksets?: Maybe<Scalars['numeric']['output']>;
|
|
477
|
+
size?: Maybe<Scalars['numeric']['output']>;
|
|
478
|
+
updated_at?: Maybe<Scalars['numeric']['output']>;
|
|
479
|
+
};
|
|
480
|
+
/** aggregate var_pop on columns */
|
|
481
|
+
type Blobs_Var_Pop_Fields = {
|
|
482
|
+
__typename?: 'blobs_var_pop_fields';
|
|
483
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
484
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
485
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
486
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
487
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
488
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
489
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
490
|
+
};
|
|
491
|
+
/** aggregate var_samp on columns */
|
|
492
|
+
type Blobs_Var_Samp_Fields = {
|
|
493
|
+
__typename?: 'blobs_var_samp_fields';
|
|
494
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
495
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
496
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
497
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
498
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
499
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
500
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
501
|
+
};
|
|
502
|
+
/** aggregate variance on columns */
|
|
503
|
+
type Blobs_Variance_Fields = {
|
|
504
|
+
__typename?: 'blobs_variance_fields';
|
|
505
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
506
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
507
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
508
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
509
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
510
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
511
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
512
|
+
};
|
|
513
|
+
/** ordering argument of a cursor */
|
|
514
|
+
declare enum Cursor_Ordering {
|
|
515
|
+
/** ascending ordering of the cursor */
|
|
516
|
+
Asc = "ASC",
|
|
517
|
+
/** descending ordering of the cursor */
|
|
518
|
+
Desc = "DESC"
|
|
519
|
+
}
|
|
520
|
+
/** Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'. */
|
|
521
|
+
type Numeric_Comparison_Exp = {
|
|
522
|
+
_eq?: InputMaybe<Scalars['numeric']['input']>;
|
|
523
|
+
_gt?: InputMaybe<Scalars['numeric']['input']>;
|
|
524
|
+
_gte?: InputMaybe<Scalars['numeric']['input']>;
|
|
525
|
+
_in?: InputMaybe<Array<Scalars['numeric']['input']>>;
|
|
526
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
527
|
+
_lt?: InputMaybe<Scalars['numeric']['input']>;
|
|
528
|
+
_lte?: InputMaybe<Scalars['numeric']['input']>;
|
|
529
|
+
_neq?: InputMaybe<Scalars['numeric']['input']>;
|
|
530
|
+
_nin?: InputMaybe<Array<Scalars['numeric']['input']>>;
|
|
531
|
+
};
|
|
532
|
+
/** column ordering options */
|
|
533
|
+
declare enum Order_By {
|
|
534
|
+
/** in ascending order, nulls last */
|
|
535
|
+
Asc = "asc",
|
|
536
|
+
/** in ascending order, nulls first */
|
|
537
|
+
AscNullsFirst = "asc_nulls_first",
|
|
538
|
+
/** in ascending order, nulls last */
|
|
539
|
+
AscNullsLast = "asc_nulls_last",
|
|
540
|
+
/** in descending order, nulls first */
|
|
541
|
+
Desc = "desc",
|
|
542
|
+
/** in descending order, nulls first */
|
|
543
|
+
DescNullsFirst = "desc_nulls_first",
|
|
544
|
+
/** in descending order, nulls last */
|
|
545
|
+
DescNullsLast = "desc_nulls_last"
|
|
546
|
+
}
|
|
547
|
+
/** columns and relationships of "placement_group_slots" */
|
|
548
|
+
type Placement_Group_Slots = {
|
|
549
|
+
__typename?: 'placement_group_slots';
|
|
550
|
+
placement_group: Scalars['String']['output'];
|
|
551
|
+
slot_index: Scalars['numeric']['output'];
|
|
552
|
+
status: Scalars['String']['output'];
|
|
553
|
+
storage_provider: Scalars['String']['output'];
|
|
554
|
+
updated_at: Scalars['numeric']['output'];
|
|
555
|
+
};
|
|
556
|
+
/** order by aggregate values of table "placement_group_slots" */
|
|
557
|
+
type Placement_Group_Slots_Aggregate_Order_By = {
|
|
558
|
+
avg?: InputMaybe<Placement_Group_Slots_Avg_Order_By>;
|
|
559
|
+
count?: InputMaybe<Order_By>;
|
|
560
|
+
max?: InputMaybe<Placement_Group_Slots_Max_Order_By>;
|
|
561
|
+
min?: InputMaybe<Placement_Group_Slots_Min_Order_By>;
|
|
562
|
+
stddev?: InputMaybe<Placement_Group_Slots_Stddev_Order_By>;
|
|
563
|
+
stddev_pop?: InputMaybe<Placement_Group_Slots_Stddev_Pop_Order_By>;
|
|
564
|
+
stddev_samp?: InputMaybe<Placement_Group_Slots_Stddev_Samp_Order_By>;
|
|
565
|
+
sum?: InputMaybe<Placement_Group_Slots_Sum_Order_By>;
|
|
566
|
+
var_pop?: InputMaybe<Placement_Group_Slots_Var_Pop_Order_By>;
|
|
567
|
+
var_samp?: InputMaybe<Placement_Group_Slots_Var_Samp_Order_By>;
|
|
568
|
+
variance?: InputMaybe<Placement_Group_Slots_Variance_Order_By>;
|
|
569
|
+
};
|
|
570
|
+
/** order by avg() on columns of table "placement_group_slots" */
|
|
571
|
+
type Placement_Group_Slots_Avg_Order_By = {
|
|
572
|
+
slot_index?: InputMaybe<Order_By>;
|
|
573
|
+
updated_at?: InputMaybe<Order_By>;
|
|
574
|
+
};
|
|
575
|
+
/** Boolean expression to filter rows from the table "placement_group_slots". All fields are combined with a logical 'AND'. */
|
|
576
|
+
type Placement_Group_Slots_Bool_Exp = {
|
|
577
|
+
_and?: InputMaybe<Array<Placement_Group_Slots_Bool_Exp>>;
|
|
578
|
+
_not?: InputMaybe<Placement_Group_Slots_Bool_Exp>;
|
|
579
|
+
_or?: InputMaybe<Array<Placement_Group_Slots_Bool_Exp>>;
|
|
580
|
+
placement_group?: InputMaybe<String_Comparison_Exp>;
|
|
581
|
+
slot_index?: InputMaybe<Numeric_Comparison_Exp>;
|
|
582
|
+
status?: InputMaybe<String_Comparison_Exp>;
|
|
583
|
+
storage_provider?: InputMaybe<String_Comparison_Exp>;
|
|
584
|
+
updated_at?: InputMaybe<Numeric_Comparison_Exp>;
|
|
585
|
+
};
|
|
586
|
+
/** order by max() on columns of table "placement_group_slots" */
|
|
587
|
+
type Placement_Group_Slots_Max_Order_By = {
|
|
588
|
+
placement_group?: InputMaybe<Order_By>;
|
|
589
|
+
slot_index?: InputMaybe<Order_By>;
|
|
590
|
+
status?: InputMaybe<Order_By>;
|
|
591
|
+
storage_provider?: InputMaybe<Order_By>;
|
|
592
|
+
updated_at?: InputMaybe<Order_By>;
|
|
593
|
+
};
|
|
594
|
+
/** order by min() on columns of table "placement_group_slots" */
|
|
595
|
+
type Placement_Group_Slots_Min_Order_By = {
|
|
596
|
+
placement_group?: InputMaybe<Order_By>;
|
|
597
|
+
slot_index?: InputMaybe<Order_By>;
|
|
598
|
+
status?: InputMaybe<Order_By>;
|
|
599
|
+
storage_provider?: InputMaybe<Order_By>;
|
|
600
|
+
updated_at?: InputMaybe<Order_By>;
|
|
601
|
+
};
|
|
602
|
+
/** Ordering options when selecting data from "placement_group_slots". */
|
|
603
|
+
type Placement_Group_Slots_Order_By = {
|
|
604
|
+
placement_group?: InputMaybe<Order_By>;
|
|
605
|
+
slot_index?: InputMaybe<Order_By>;
|
|
606
|
+
status?: InputMaybe<Order_By>;
|
|
607
|
+
storage_provider?: InputMaybe<Order_By>;
|
|
608
|
+
updated_at?: InputMaybe<Order_By>;
|
|
609
|
+
};
|
|
610
|
+
/** select columns of table "placement_group_slots" */
|
|
611
|
+
declare enum Placement_Group_Slots_Select_Column {
|
|
612
|
+
/** column name */
|
|
613
|
+
PlacementGroup = "placement_group",
|
|
614
|
+
/** column name */
|
|
615
|
+
SlotIndex = "slot_index",
|
|
616
|
+
/** column name */
|
|
617
|
+
Status = "status",
|
|
618
|
+
/** column name */
|
|
619
|
+
StorageProvider = "storage_provider",
|
|
620
|
+
/** column name */
|
|
621
|
+
UpdatedAt = "updated_at"
|
|
622
|
+
}
|
|
623
|
+
/** order by stddev() on columns of table "placement_group_slots" */
|
|
624
|
+
type Placement_Group_Slots_Stddev_Order_By = {
|
|
625
|
+
slot_index?: InputMaybe<Order_By>;
|
|
626
|
+
updated_at?: InputMaybe<Order_By>;
|
|
627
|
+
};
|
|
628
|
+
/** order by stddev_pop() on columns of table "placement_group_slots" */
|
|
629
|
+
type Placement_Group_Slots_Stddev_Pop_Order_By = {
|
|
630
|
+
slot_index?: InputMaybe<Order_By>;
|
|
631
|
+
updated_at?: InputMaybe<Order_By>;
|
|
632
|
+
};
|
|
633
|
+
/** order by stddev_samp() on columns of table "placement_group_slots" */
|
|
634
|
+
type Placement_Group_Slots_Stddev_Samp_Order_By = {
|
|
635
|
+
slot_index?: InputMaybe<Order_By>;
|
|
636
|
+
updated_at?: InputMaybe<Order_By>;
|
|
637
|
+
};
|
|
638
|
+
/** Streaming cursor of the table "placement_group_slots" */
|
|
639
|
+
type Placement_Group_Slots_Stream_Cursor_Input = {
|
|
640
|
+
/** Stream column input with initial value */
|
|
641
|
+
initial_value: Placement_Group_Slots_Stream_Cursor_Value_Input;
|
|
642
|
+
/** cursor ordering */
|
|
643
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
644
|
+
};
|
|
645
|
+
/** Initial value of the column from where the streaming should start */
|
|
646
|
+
type Placement_Group_Slots_Stream_Cursor_Value_Input = {
|
|
647
|
+
placement_group?: InputMaybe<Scalars['String']['input']>;
|
|
648
|
+
slot_index?: InputMaybe<Scalars['numeric']['input']>;
|
|
649
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
650
|
+
storage_provider?: InputMaybe<Scalars['String']['input']>;
|
|
651
|
+
updated_at?: InputMaybe<Scalars['numeric']['input']>;
|
|
652
|
+
};
|
|
653
|
+
/** order by sum() on columns of table "placement_group_slots" */
|
|
654
|
+
type Placement_Group_Slots_Sum_Order_By = {
|
|
655
|
+
slot_index?: InputMaybe<Order_By>;
|
|
656
|
+
updated_at?: InputMaybe<Order_By>;
|
|
657
|
+
};
|
|
658
|
+
/** order by var_pop() on columns of table "placement_group_slots" */
|
|
659
|
+
type Placement_Group_Slots_Var_Pop_Order_By = {
|
|
660
|
+
slot_index?: InputMaybe<Order_By>;
|
|
661
|
+
updated_at?: InputMaybe<Order_By>;
|
|
662
|
+
};
|
|
663
|
+
/** order by var_samp() on columns of table "placement_group_slots" */
|
|
664
|
+
type Placement_Group_Slots_Var_Samp_Order_By = {
|
|
665
|
+
slot_index?: InputMaybe<Order_By>;
|
|
666
|
+
updated_at?: InputMaybe<Order_By>;
|
|
667
|
+
};
|
|
668
|
+
/** order by variance() on columns of table "placement_group_slots" */
|
|
669
|
+
type Placement_Group_Slots_Variance_Order_By = {
|
|
670
|
+
slot_index?: InputMaybe<Order_By>;
|
|
671
|
+
updated_at?: InputMaybe<Order_By>;
|
|
672
|
+
};
|
|
673
|
+
/** columns and relationships of "processor_status" */
|
|
674
|
+
type Processor_Status = {
|
|
675
|
+
__typename?: 'processor_status';
|
|
676
|
+
last_success_version: Scalars['bigint']['output'];
|
|
677
|
+
last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
678
|
+
last_updated: Scalars['timestamp']['output'];
|
|
679
|
+
};
|
|
680
|
+
/** Boolean expression to filter rows from the table "processor_status". All fields are combined with a logical 'AND'. */
|
|
681
|
+
type Processor_Status_Bool_Exp = {
|
|
682
|
+
_and?: InputMaybe<Array<Processor_Status_Bool_Exp>>;
|
|
683
|
+
_not?: InputMaybe<Processor_Status_Bool_Exp>;
|
|
684
|
+
_or?: InputMaybe<Array<Processor_Status_Bool_Exp>>;
|
|
685
|
+
last_success_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
686
|
+
last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
687
|
+
last_updated?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
688
|
+
};
|
|
689
|
+
/** Ordering options when selecting data from "processor_status". */
|
|
690
|
+
type Processor_Status_Order_By = {
|
|
691
|
+
last_success_version?: InputMaybe<Order_By>;
|
|
692
|
+
last_transaction_timestamp?: InputMaybe<Order_By>;
|
|
693
|
+
last_updated?: InputMaybe<Order_By>;
|
|
694
|
+
};
|
|
695
|
+
/** select columns of table "processor_status" */
|
|
696
|
+
declare enum Processor_Status_Select_Column {
|
|
697
|
+
/** column name */
|
|
698
|
+
LastSuccessVersion = "last_success_version",
|
|
699
|
+
/** column name */
|
|
700
|
+
LastTransactionTimestamp = "last_transaction_timestamp",
|
|
701
|
+
/** column name */
|
|
702
|
+
LastUpdated = "last_updated"
|
|
703
|
+
}
|
|
704
|
+
/** Streaming cursor of the table "processor_status" */
|
|
705
|
+
type Processor_Status_Stream_Cursor_Input = {
|
|
706
|
+
/** Stream column input with initial value */
|
|
707
|
+
initial_value: Processor_Status_Stream_Cursor_Value_Input;
|
|
708
|
+
/** cursor ordering */
|
|
709
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
710
|
+
};
|
|
711
|
+
/** Initial value of the column from where the streaming should start */
|
|
712
|
+
type Processor_Status_Stream_Cursor_Value_Input = {
|
|
713
|
+
last_success_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
714
|
+
last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
715
|
+
last_updated?: InputMaybe<Scalars['timestamp']['input']>;
|
|
716
|
+
};
|
|
717
|
+
type Query_Root = {
|
|
718
|
+
__typename?: 'query_root';
|
|
719
|
+
/** fetch data from the table: "blob_activities" */
|
|
720
|
+
blob_activities: Array<Blob_Activities>;
|
|
721
|
+
/** fetch aggregated fields from the table: "blob_activities" */
|
|
722
|
+
blob_activities_aggregate: Blob_Activities_Aggregate;
|
|
723
|
+
/** fetch data from the table: "blob_activities" using primary key columns */
|
|
724
|
+
blob_activities_by_pk?: Maybe<Blob_Activities>;
|
|
725
|
+
/** fetch data from the table: "blobs" */
|
|
726
|
+
blobs: Array<Blobs>;
|
|
727
|
+
/** fetch aggregated fields from the table: "blobs" */
|
|
728
|
+
blobs_aggregate: Blobs_Aggregate;
|
|
729
|
+
/** fetch data from the table: "blobs" using primary key columns */
|
|
730
|
+
blobs_by_pk?: Maybe<Blobs>;
|
|
731
|
+
/** An array relationship */
|
|
732
|
+
placement_group_slots: Array<Placement_Group_Slots>;
|
|
733
|
+
/** fetch data from the table: "placement_group_slots" using primary key columns */
|
|
734
|
+
placement_group_slots_by_pk?: Maybe<Placement_Group_Slots>;
|
|
735
|
+
/** fetch data from the table: "processor_status" */
|
|
736
|
+
processor_status: Array<Processor_Status>;
|
|
737
|
+
};
|
|
738
|
+
type Query_RootBlob_ActivitiesArgs = {
|
|
739
|
+
distinct_on?: InputMaybe<Array<Blob_Activities_Select_Column>>;
|
|
740
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
741
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
742
|
+
order_by?: InputMaybe<Array<Blob_Activities_Order_By>>;
|
|
743
|
+
where?: InputMaybe<Blob_Activities_Bool_Exp>;
|
|
744
|
+
};
|
|
745
|
+
type Query_RootBlob_Activities_AggregateArgs = {
|
|
746
|
+
distinct_on?: InputMaybe<Array<Blob_Activities_Select_Column>>;
|
|
747
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
748
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
749
|
+
order_by?: InputMaybe<Array<Blob_Activities_Order_By>>;
|
|
750
|
+
where?: InputMaybe<Blob_Activities_Bool_Exp>;
|
|
751
|
+
};
|
|
752
|
+
type Query_RootBlob_Activities_By_PkArgs = {
|
|
753
|
+
event_index: Scalars['numeric']['input'];
|
|
754
|
+
event_type: Scalars['String']['input'];
|
|
755
|
+
transaction_hash: Scalars['String']['input'];
|
|
756
|
+
};
|
|
757
|
+
type Query_RootBlobsArgs = {
|
|
758
|
+
distinct_on?: InputMaybe<Array<Blobs_Select_Column>>;
|
|
759
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
760
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
761
|
+
order_by?: InputMaybe<Array<Blobs_Order_By>>;
|
|
762
|
+
where?: InputMaybe<Blobs_Bool_Exp>;
|
|
763
|
+
};
|
|
764
|
+
type Query_RootBlobs_AggregateArgs = {
|
|
765
|
+
distinct_on?: InputMaybe<Array<Blobs_Select_Column>>;
|
|
766
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
767
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
768
|
+
order_by?: InputMaybe<Array<Blobs_Order_By>>;
|
|
769
|
+
where?: InputMaybe<Blobs_Bool_Exp>;
|
|
770
|
+
};
|
|
771
|
+
type Query_RootBlobs_By_PkArgs = {
|
|
772
|
+
blob_name: Scalars['String']['input'];
|
|
773
|
+
};
|
|
774
|
+
type Query_RootPlacement_Group_SlotsArgs = {
|
|
775
|
+
distinct_on?: InputMaybe<Array<Placement_Group_Slots_Select_Column>>;
|
|
776
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
777
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
778
|
+
order_by?: InputMaybe<Array<Placement_Group_Slots_Order_By>>;
|
|
779
|
+
where?: InputMaybe<Placement_Group_Slots_Bool_Exp>;
|
|
780
|
+
};
|
|
781
|
+
type Query_RootPlacement_Group_Slots_By_PkArgs = {
|
|
782
|
+
placement_group: Scalars['String']['input'];
|
|
783
|
+
slot_index: Scalars['numeric']['input'];
|
|
784
|
+
};
|
|
785
|
+
type Query_RootProcessor_StatusArgs = {
|
|
786
|
+
distinct_on?: InputMaybe<Array<Processor_Status_Select_Column>>;
|
|
787
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
788
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
789
|
+
order_by?: InputMaybe<Array<Processor_Status_Order_By>>;
|
|
790
|
+
where?: InputMaybe<Processor_Status_Bool_Exp>;
|
|
791
|
+
};
|
|
792
|
+
type Subscription_Root = {
|
|
793
|
+
__typename?: 'subscription_root';
|
|
794
|
+
/** fetch data from the table: "blob_activities" */
|
|
795
|
+
blob_activities: Array<Blob_Activities>;
|
|
796
|
+
/** fetch aggregated fields from the table: "blob_activities" */
|
|
797
|
+
blob_activities_aggregate: Blob_Activities_Aggregate;
|
|
798
|
+
/** fetch data from the table: "blob_activities" using primary key columns */
|
|
799
|
+
blob_activities_by_pk?: Maybe<Blob_Activities>;
|
|
800
|
+
/** fetch data from the table in a streaming manner: "blob_activities" */
|
|
801
|
+
blob_activities_stream: Array<Blob_Activities>;
|
|
802
|
+
/** fetch data from the table: "blobs" */
|
|
803
|
+
blobs: Array<Blobs>;
|
|
804
|
+
/** fetch aggregated fields from the table: "blobs" */
|
|
805
|
+
blobs_aggregate: Blobs_Aggregate;
|
|
806
|
+
/** fetch data from the table: "blobs" using primary key columns */
|
|
807
|
+
blobs_by_pk?: Maybe<Blobs>;
|
|
808
|
+
/** fetch data from the table in a streaming manner: "blobs" */
|
|
809
|
+
blobs_stream: Array<Blobs>;
|
|
810
|
+
/** An array relationship */
|
|
811
|
+
placement_group_slots: Array<Placement_Group_Slots>;
|
|
812
|
+
/** fetch data from the table: "placement_group_slots" using primary key columns */
|
|
813
|
+
placement_group_slots_by_pk?: Maybe<Placement_Group_Slots>;
|
|
814
|
+
/** fetch data from the table in a streaming manner: "placement_group_slots" */
|
|
815
|
+
placement_group_slots_stream: Array<Placement_Group_Slots>;
|
|
816
|
+
/** fetch data from the table: "processor_status" */
|
|
817
|
+
processor_status: Array<Processor_Status>;
|
|
818
|
+
/** fetch data from the table in a streaming manner: "processor_status" */
|
|
819
|
+
processor_status_stream: Array<Processor_Status>;
|
|
820
|
+
};
|
|
821
|
+
type Subscription_RootBlob_ActivitiesArgs = {
|
|
822
|
+
distinct_on?: InputMaybe<Array<Blob_Activities_Select_Column>>;
|
|
823
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
824
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
825
|
+
order_by?: InputMaybe<Array<Blob_Activities_Order_By>>;
|
|
826
|
+
where?: InputMaybe<Blob_Activities_Bool_Exp>;
|
|
827
|
+
};
|
|
828
|
+
type Subscription_RootBlob_Activities_AggregateArgs = {
|
|
829
|
+
distinct_on?: InputMaybe<Array<Blob_Activities_Select_Column>>;
|
|
830
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
831
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
832
|
+
order_by?: InputMaybe<Array<Blob_Activities_Order_By>>;
|
|
833
|
+
where?: InputMaybe<Blob_Activities_Bool_Exp>;
|
|
834
|
+
};
|
|
835
|
+
type Subscription_RootBlob_Activities_By_PkArgs = {
|
|
836
|
+
event_index: Scalars['numeric']['input'];
|
|
837
|
+
event_type: Scalars['String']['input'];
|
|
838
|
+
transaction_hash: Scalars['String']['input'];
|
|
839
|
+
};
|
|
840
|
+
type Subscription_RootBlob_Activities_StreamArgs = {
|
|
841
|
+
batch_size: Scalars['Int']['input'];
|
|
842
|
+
cursor: Array<InputMaybe<Blob_Activities_Stream_Cursor_Input>>;
|
|
843
|
+
where?: InputMaybe<Blob_Activities_Bool_Exp>;
|
|
844
|
+
};
|
|
845
|
+
type Subscription_RootBlobsArgs = {
|
|
846
|
+
distinct_on?: InputMaybe<Array<Blobs_Select_Column>>;
|
|
847
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
848
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
849
|
+
order_by?: InputMaybe<Array<Blobs_Order_By>>;
|
|
850
|
+
where?: InputMaybe<Blobs_Bool_Exp>;
|
|
851
|
+
};
|
|
852
|
+
type Subscription_RootBlobs_AggregateArgs = {
|
|
853
|
+
distinct_on?: InputMaybe<Array<Blobs_Select_Column>>;
|
|
854
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
855
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
856
|
+
order_by?: InputMaybe<Array<Blobs_Order_By>>;
|
|
857
|
+
where?: InputMaybe<Blobs_Bool_Exp>;
|
|
858
|
+
};
|
|
859
|
+
type Subscription_RootBlobs_By_PkArgs = {
|
|
860
|
+
blob_name: Scalars['String']['input'];
|
|
861
|
+
};
|
|
862
|
+
type Subscription_RootBlobs_StreamArgs = {
|
|
863
|
+
batch_size: Scalars['Int']['input'];
|
|
864
|
+
cursor: Array<InputMaybe<Blobs_Stream_Cursor_Input>>;
|
|
865
|
+
where?: InputMaybe<Blobs_Bool_Exp>;
|
|
866
|
+
};
|
|
867
|
+
type Subscription_RootPlacement_Group_SlotsArgs = {
|
|
868
|
+
distinct_on?: InputMaybe<Array<Placement_Group_Slots_Select_Column>>;
|
|
869
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
870
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
871
|
+
order_by?: InputMaybe<Array<Placement_Group_Slots_Order_By>>;
|
|
872
|
+
where?: InputMaybe<Placement_Group_Slots_Bool_Exp>;
|
|
873
|
+
};
|
|
874
|
+
type Subscription_RootPlacement_Group_Slots_By_PkArgs = {
|
|
875
|
+
placement_group: Scalars['String']['input'];
|
|
876
|
+
slot_index: Scalars['numeric']['input'];
|
|
877
|
+
};
|
|
878
|
+
type Subscription_RootPlacement_Group_Slots_StreamArgs = {
|
|
879
|
+
batch_size: Scalars['Int']['input'];
|
|
880
|
+
cursor: Array<InputMaybe<Placement_Group_Slots_Stream_Cursor_Input>>;
|
|
881
|
+
where?: InputMaybe<Placement_Group_Slots_Bool_Exp>;
|
|
882
|
+
};
|
|
883
|
+
type Subscription_RootProcessor_StatusArgs = {
|
|
884
|
+
distinct_on?: InputMaybe<Array<Processor_Status_Select_Column>>;
|
|
885
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
886
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
887
|
+
order_by?: InputMaybe<Array<Processor_Status_Order_By>>;
|
|
888
|
+
where?: InputMaybe<Processor_Status_Bool_Exp>;
|
|
889
|
+
};
|
|
890
|
+
type Subscription_RootProcessor_Status_StreamArgs = {
|
|
891
|
+
batch_size: Scalars['Int']['input'];
|
|
892
|
+
cursor: Array<InputMaybe<Processor_Status_Stream_Cursor_Input>>;
|
|
893
|
+
where?: InputMaybe<Processor_Status_Bool_Exp>;
|
|
894
|
+
};
|
|
895
|
+
/** Boolean expression to compare columns of type "timestamp". All fields are combined with logical 'AND'. */
|
|
896
|
+
type Timestamp_Comparison_Exp = {
|
|
897
|
+
_eq?: InputMaybe<Scalars['timestamp']['input']>;
|
|
898
|
+
_gt?: InputMaybe<Scalars['timestamp']['input']>;
|
|
899
|
+
_gte?: InputMaybe<Scalars['timestamp']['input']>;
|
|
900
|
+
_in?: InputMaybe<Array<Scalars['timestamp']['input']>>;
|
|
901
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
902
|
+
_lt?: InputMaybe<Scalars['timestamp']['input']>;
|
|
903
|
+
_lte?: InputMaybe<Scalars['timestamp']['input']>;
|
|
904
|
+
_neq?: InputMaybe<Scalars['timestamp']['input']>;
|
|
905
|
+
_nin?: InputMaybe<Array<Scalars['timestamp']['input']>>;
|
|
906
|
+
};
|
|
907
|
+
|
|
908
|
+
export { type Bigint_Comparison_Exp, type Blob_Activities, type Blob_Activities_Aggregate, type Blob_Activities_Aggregate_Fields, type Blob_Activities_Aggregate_FieldsCountArgs, type Blob_Activities_Avg_Fields, type Blob_Activities_Bool_Exp, type Blob_Activities_Max_Fields, type Blob_Activities_Min_Fields, type Blob_Activities_Order_By, Blob_Activities_Select_Column, type Blob_Activities_Stddev_Fields, type Blob_Activities_Stddev_Pop_Fields, type Blob_Activities_Stddev_Samp_Fields, type Blob_Activities_Stream_Cursor_Input, type Blob_Activities_Stream_Cursor_Value_Input, type Blob_Activities_Sum_Fields, type Blob_Activities_Var_Pop_Fields, type Blob_Activities_Var_Samp_Fields, type Blob_Activities_Variance_Fields, type Blobs, type BlobsPlacement_Group_SlotsArgs, type Blobs_Aggregate, type Blobs_Aggregate_Fields, type Blobs_Aggregate_FieldsCountArgs, type Blobs_Avg_Fields, type Blobs_Bool_Exp, type Blobs_Max_Fields, type Blobs_Min_Fields, type Blobs_Order_By, Blobs_Select_Column, type Blobs_Stddev_Fields, type Blobs_Stddev_Pop_Fields, type Blobs_Stddev_Samp_Fields, type Blobs_Stream_Cursor_Input, type Blobs_Stream_Cursor_Value_Input, type Blobs_Sum_Fields, type Blobs_Var_Pop_Fields, type Blobs_Var_Samp_Fields, type Blobs_Variance_Fields, Cursor_Ordering, type Exact, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Numeric_Comparison_Exp, Order_By, type Placement_Group_Slots, type Placement_Group_Slots_Aggregate_Order_By, type Placement_Group_Slots_Avg_Order_By, type Placement_Group_Slots_Bool_Exp, type Placement_Group_Slots_Max_Order_By, type Placement_Group_Slots_Min_Order_By, type Placement_Group_Slots_Order_By, Placement_Group_Slots_Select_Column, type Placement_Group_Slots_Stddev_Order_By, type Placement_Group_Slots_Stddev_Pop_Order_By, type Placement_Group_Slots_Stddev_Samp_Order_By, type Placement_Group_Slots_Stream_Cursor_Input, type Placement_Group_Slots_Stream_Cursor_Value_Input, type Placement_Group_Slots_Sum_Order_By, type Placement_Group_Slots_Var_Pop_Order_By, type Placement_Group_Slots_Var_Samp_Order_By, type Placement_Group_Slots_Variance_Order_By, type Processor_Status, type Processor_Status_Bool_Exp, type Processor_Status_Order_By, Processor_Status_Select_Column, type Processor_Status_Stream_Cursor_Input, type Processor_Status_Stream_Cursor_Value_Input, type Query_Root, type Query_RootBlob_ActivitiesArgs, type Query_RootBlob_Activities_AggregateArgs, type Query_RootBlob_Activities_By_PkArgs, type Query_RootBlobsArgs, type Query_RootBlobs_AggregateArgs, type Query_RootBlobs_By_PkArgs, type Query_RootPlacement_Group_SlotsArgs, type Query_RootPlacement_Group_Slots_By_PkArgs, type Query_RootProcessor_StatusArgs, type Scalars, type String_Comparison_Exp, type Subscription_Root, type Subscription_RootBlob_ActivitiesArgs, type Subscription_RootBlob_Activities_AggregateArgs, type Subscription_RootBlob_Activities_By_PkArgs, type Subscription_RootBlob_Activities_StreamArgs, type Subscription_RootBlobsArgs, type Subscription_RootBlobs_AggregateArgs, type Subscription_RootBlobs_By_PkArgs, type Subscription_RootBlobs_StreamArgs, type Subscription_RootPlacement_Group_SlotsArgs, type Subscription_RootPlacement_Group_Slots_By_PkArgs, type Subscription_RootPlacement_Group_Slots_StreamArgs, type Subscription_RootProcessor_StatusArgs, type Subscription_RootProcessor_Status_StreamArgs, type Timestamp_Comparison_Exp };
|