@shelby-protocol/sdk 0.0.4 → 0.0.5
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 +4 -4
- package/dist/browser/index.mjs +40 -35
- package/dist/{chunk-MYN7KW2X.mjs → chunk-2DD6Q5CK.mjs} +1 -1
- package/dist/{chunk-KBUWZXFA.mjs → chunk-4JZO2D7T.mjs} +6 -1
- package/dist/{chunk-GKRHKR3J.mjs → chunk-L7H6EKII.mjs} +7 -7
- package/dist/{chunk-LTV26KU4.mjs → chunk-PCNLFNAT.mjs} +1 -1
- package/dist/{chunk-VPT45MTZ.mjs → chunk-T6TVHFJO.mjs} +1 -1
- package/dist/{chunk-4W3FFVXZ.mjs → chunk-TPGMXZRD.mjs} +8 -8
- package/dist/{chunk-DLMDDEWF.mjs → chunk-WJKSPJSS.mjs} +26 -0
- package/dist/{chunk-3QINXXV6.mjs → chunk-Y7KTNPPR.mjs} +61 -24
- package/dist/core/chunk.mjs +1 -1
- package/dist/core/clients/ShelbyBlobClient.d.ts +35 -17
- package/dist/core/clients/ShelbyBlobClient.mjs +7 -7
- package/dist/core/clients/ShelbyClient.mjs +10 -10
- package/dist/core/clients/ShelbyRPCClient.mjs +7 -7
- package/dist/core/clients/index.mjs +12 -12
- package/dist/core/commitments.mjs +3 -3
- package/dist/core/erasure/clay-codes.mjs +1 -1
- package/dist/core/erasure/default.mjs +1 -1
- package/dist/core/erasure/index.mjs +3 -3
- package/dist/core/index.d.ts +4 -4
- package/dist/core/index.mjs +40 -35
- package/dist/core/layout.mjs +1 -1
- package/dist/core/operations/generated/sdk.d.ts +307 -1
- package/dist/core/operations/generated/sdk.mjs +5 -1
- package/dist/core/operations/index.d.ts +6 -1
- package/dist/core/operations/index.mjs +5 -2
- package/dist/core/types/blobs.d.ts +9 -0
- package/dist/core/types/index.mjs +1 -1
- package/dist/core/utils.d.ts +8 -1
- package/dist/core/utils.mjs +3 -1
- package/dist/node/clients/ShelbyNodeClient.mjs +11 -11
- package/dist/node/clients/index.mjs +13 -13
- package/dist/node/index.d.ts +4 -4
- package/dist/node/index.mjs +46 -41
- package/package.json +3 -3
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createDefaultErasureCodingProvider
|
|
3
3
|
} from "../../chunk-APML3CGJ.mjs";
|
|
4
|
-
import "../../chunk-ZPW742E7.mjs";
|
|
5
4
|
import "../../chunk-3ZDXWPYC.mjs";
|
|
5
|
+
import "../../chunk-ZPW742E7.mjs";
|
|
6
6
|
import "../../chunk-7P6ASYW6.mjs";
|
|
7
7
|
export {
|
|
8
8
|
createDefaultErasureCodingProvider
|
|
@@ -2,6 +2,9 @@ import {
|
|
|
2
2
|
ClayErasureCodingProvider,
|
|
3
3
|
createDefaultErasureCodingProvider
|
|
4
4
|
} from "../../chunk-APML3CGJ.mjs";
|
|
5
|
+
import {
|
|
6
|
+
ReedSolomonErasureCodingProvider
|
|
7
|
+
} from "../../chunk-3ZDXWPYC.mjs";
|
|
5
8
|
import {
|
|
6
9
|
DEFAULT_ERASURE_D,
|
|
7
10
|
DEFAULT_ERASURE_K,
|
|
@@ -10,9 +13,6 @@ import {
|
|
|
10
13
|
ERASURE_CODE_PARAMS,
|
|
11
14
|
ErasureCodingScheme
|
|
12
15
|
} from "../../chunk-ZPW742E7.mjs";
|
|
13
|
-
import {
|
|
14
|
-
ReedSolomonErasureCodingProvider
|
|
15
|
-
} from "../../chunk-3ZDXWPYC.mjs";
|
|
16
16
|
import "../../chunk-7P6ASYW6.mjs";
|
|
17
17
|
export {
|
|
18
18
|
ClayErasureCodingProvider,
|
package/dist/core/index.d.ts
CHANGED
|
@@ -16,10 +16,10 @@ export { ShelbyIndexerClient, createShelbyIndexerClient, getShelbyIndexerClient
|
|
|
16
16
|
export { getShelbyAccountBlobsExplorerUrl, getShelbyAccountExplorerUrl, getShelbyBlobExplorerUrl } from './shelby-explorer.js';
|
|
17
17
|
export { BlobActivity, BlobActivityType, BlobEncoding, BlobMetadata, ClayEncoding } from './types/blobs.js';
|
|
18
18
|
export { StorageProviderInfo } from './types/storage_providers.js';
|
|
19
|
-
export { buildRequestUrl, concatHashes, readInChunks, zeroPadBytes } from './utils.js';
|
|
19
|
+
export { buildRequestUrl, concatHashes, getBlobNameSuffix, readInChunks, zeroPadBytes } from './utils.js';
|
|
20
|
+
export { Order_By } from './operations/generated/sdk.js';
|
|
20
21
|
import '@aptos-labs/ts-sdk';
|
|
21
|
-
import './operations/generated/sdk.js';
|
|
22
|
-
import 'graphql';
|
|
23
|
-
import 'graphql-request';
|
|
24
22
|
import 'zod';
|
|
25
23
|
import '@shelby-protocol/clay-codes';
|
|
24
|
+
import 'graphql-request';
|
|
25
|
+
import 'graphql';
|
package/dist/core/index.mjs
CHANGED
|
@@ -1,29 +1,15 @@
|
|
|
1
1
|
import "../chunk-DJJD2AXO.mjs";
|
|
2
2
|
import "../chunk-MWDW4ROU.mjs";
|
|
3
|
-
import "../chunk-ZHXCVRZX.mjs";
|
|
4
3
|
import "../chunk-MQUVYMNQ.mjs";
|
|
4
|
+
import "../chunk-ZHXCVRZX.mjs";
|
|
5
5
|
import "../chunk-RNXGC54D.mjs";
|
|
6
6
|
import {
|
|
7
7
|
ShelbyClient
|
|
8
|
-
} from "../chunk-
|
|
9
|
-
import {
|
|
10
|
-
ShelbyBlobClient
|
|
11
|
-
} from "../chunk-3QINXXV6.mjs";
|
|
8
|
+
} from "../chunk-TPGMXZRD.mjs";
|
|
12
9
|
import "../chunk-Z7RFCADT.mjs";
|
|
13
10
|
import {
|
|
14
11
|
ShelbyRPCClient
|
|
15
|
-
} from "../chunk-
|
|
16
|
-
import {
|
|
17
|
-
createShelbyIndexerClient,
|
|
18
|
-
getShelbyIndexerClient
|
|
19
|
-
} from "../chunk-VPT45MTZ.mjs";
|
|
20
|
-
import "../chunk-DLMDDEWF.mjs";
|
|
21
|
-
import {
|
|
22
|
-
BlobNameSchema,
|
|
23
|
-
ChunkKey,
|
|
24
|
-
allChunksForBlob,
|
|
25
|
-
roundSize
|
|
26
|
-
} from "../chunk-FIFKKWXV.mjs";
|
|
12
|
+
} from "../chunk-L7H6EKII.mjs";
|
|
27
13
|
import {
|
|
28
14
|
isShelbyNetwork,
|
|
29
15
|
shelbyNetworks
|
|
@@ -34,6 +20,16 @@ import {
|
|
|
34
20
|
getShelbyAccountExplorerUrl,
|
|
35
21
|
getShelbyBlobExplorerUrl
|
|
36
22
|
} from "../chunk-BDSW5PHM.mjs";
|
|
23
|
+
import {
|
|
24
|
+
ShelbyBlobClient
|
|
25
|
+
} from "../chunk-Y7KTNPPR.mjs";
|
|
26
|
+
import {
|
|
27
|
+
createShelbyIndexerClient,
|
|
28
|
+
getShelbyIndexerClient
|
|
29
|
+
} from "../chunk-T6TVHFJO.mjs";
|
|
30
|
+
import {
|
|
31
|
+
Order_By
|
|
32
|
+
} from "../chunk-WJKSPJSS.mjs";
|
|
37
33
|
import "../chunk-RBFWGDMY.mjs";
|
|
38
34
|
import {
|
|
39
35
|
getAptosAccountExplorerUrl,
|
|
@@ -47,13 +43,33 @@ import {
|
|
|
47
43
|
ChunksetCommitmentSchema,
|
|
48
44
|
expectedTotalChunksets,
|
|
49
45
|
generateCommitments
|
|
50
|
-
} from "../chunk-
|
|
46
|
+
} from "../chunk-PCNLFNAT.mjs";
|
|
51
47
|
import {
|
|
52
48
|
buildRequestUrl,
|
|
53
49
|
concatHashes,
|
|
50
|
+
getBlobNameSuffix,
|
|
54
51
|
readInChunks,
|
|
55
52
|
zeroPadBytes
|
|
56
|
-
} from "../chunk-
|
|
53
|
+
} from "../chunk-4JZO2D7T.mjs";
|
|
54
|
+
import {
|
|
55
|
+
DEFAULT_PROJECT_DESCRIPTION,
|
|
56
|
+
DEFAULT_PROJECT_NAME,
|
|
57
|
+
NetworkToShelbyBlobIndexerBaseUrl,
|
|
58
|
+
NetworkToShelbyRPCBaseUrl,
|
|
59
|
+
SHELBYUSD_FA_METADATA_ADDRESS,
|
|
60
|
+
SHELBYUSD_TOKEN_ADDRESS,
|
|
61
|
+
SHELBYUSD_TOKEN_MODULE,
|
|
62
|
+
SHELBYUSD_TOKEN_NAME,
|
|
63
|
+
SHELBY_DEPLOYER,
|
|
64
|
+
TOKEN_DEPLOYER,
|
|
65
|
+
TOKEN_OBJECT_ADDRESS
|
|
66
|
+
} from "../chunk-SEXQTDX6.mjs";
|
|
67
|
+
import {
|
|
68
|
+
BlobNameSchema,
|
|
69
|
+
ChunkKey,
|
|
70
|
+
allChunksForBlob,
|
|
71
|
+
roundSize
|
|
72
|
+
} from "../chunk-FIFKKWXV.mjs";
|
|
57
73
|
import {
|
|
58
74
|
CHUNK_SIZE_PARAMS,
|
|
59
75
|
ChunkSizeScheme,
|
|
@@ -63,6 +79,9 @@ import {
|
|
|
63
79
|
ERASURE_CODE_AND_CHUNK_MAPPING,
|
|
64
80
|
createDefaultErasureCodingProvider
|
|
65
81
|
} from "../chunk-APML3CGJ.mjs";
|
|
82
|
+
import {
|
|
83
|
+
ReedSolomonErasureCodingProvider
|
|
84
|
+
} from "../chunk-3ZDXWPYC.mjs";
|
|
66
85
|
import {
|
|
67
86
|
DEFAULT_ERASURE_D,
|
|
68
87
|
DEFAULT_ERASURE_K,
|
|
@@ -71,22 +90,6 @@ import {
|
|
|
71
90
|
ERASURE_CODE_PARAMS,
|
|
72
91
|
ErasureCodingScheme
|
|
73
92
|
} from "../chunk-ZPW742E7.mjs";
|
|
74
|
-
import {
|
|
75
|
-
ReedSolomonErasureCodingProvider
|
|
76
|
-
} from "../chunk-3ZDXWPYC.mjs";
|
|
77
|
-
import {
|
|
78
|
-
DEFAULT_PROJECT_DESCRIPTION,
|
|
79
|
-
DEFAULT_PROJECT_NAME,
|
|
80
|
-
NetworkToShelbyBlobIndexerBaseUrl,
|
|
81
|
-
NetworkToShelbyRPCBaseUrl,
|
|
82
|
-
SHELBYUSD_FA_METADATA_ADDRESS,
|
|
83
|
-
SHELBYUSD_TOKEN_ADDRESS,
|
|
84
|
-
SHELBYUSD_TOKEN_MODULE,
|
|
85
|
-
SHELBYUSD_TOKEN_NAME,
|
|
86
|
-
SHELBY_DEPLOYER,
|
|
87
|
-
TOKEN_DEPLOYER,
|
|
88
|
-
TOKEN_OBJECT_ADDRESS
|
|
89
|
-
} from "../chunk-SEXQTDX6.mjs";
|
|
90
93
|
import "../chunk-7P6ASYW6.mjs";
|
|
91
94
|
export {
|
|
92
95
|
BlobCommitmentsSchema,
|
|
@@ -109,6 +112,7 @@ export {
|
|
|
109
112
|
ErasureCodingScheme,
|
|
110
113
|
NetworkToShelbyBlobIndexerBaseUrl,
|
|
111
114
|
NetworkToShelbyRPCBaseUrl,
|
|
115
|
+
Order_By,
|
|
112
116
|
ReedSolomonErasureCodingProvider,
|
|
113
117
|
SHELBYUSD_FA_METADATA_ADDRESS,
|
|
114
118
|
SHELBYUSD_TOKEN_ADDRESS,
|
|
@@ -130,6 +134,7 @@ export {
|
|
|
130
134
|
generateCommitments,
|
|
131
135
|
getAptosAccountExplorerUrl,
|
|
132
136
|
getAptosTransactionExplorerUrl,
|
|
137
|
+
getBlobNameSuffix,
|
|
133
138
|
getShelbyAccountBlobsExplorerUrl,
|
|
134
139
|
getShelbyAccountExplorerUrl,
|
|
135
140
|
getShelbyBlobExplorerUrl,
|
package/dist/core/layout.mjs
CHANGED
|
@@ -112,6 +112,38 @@ type Blob_Activities = {
|
|
|
112
112
|
transaction_hash: Scalars['String']['output'];
|
|
113
113
|
transaction_version: Scalars['numeric']['output'];
|
|
114
114
|
};
|
|
115
|
+
/** aggregated selection of "blob_activities" */
|
|
116
|
+
type Blob_Activities_Aggregate = {
|
|
117
|
+
__typename?: 'blob_activities_aggregate';
|
|
118
|
+
aggregate?: Maybe<Blob_Activities_Aggregate_Fields>;
|
|
119
|
+
nodes: Array<Blob_Activities>;
|
|
120
|
+
};
|
|
121
|
+
/** aggregate fields of "blob_activities" */
|
|
122
|
+
type Blob_Activities_Aggregate_Fields = {
|
|
123
|
+
__typename?: 'blob_activities_aggregate_fields';
|
|
124
|
+
avg?: Maybe<Blob_Activities_Avg_Fields>;
|
|
125
|
+
count: Scalars['Int']['output'];
|
|
126
|
+
max?: Maybe<Blob_Activities_Max_Fields>;
|
|
127
|
+
min?: Maybe<Blob_Activities_Min_Fields>;
|
|
128
|
+
stddev?: Maybe<Blob_Activities_Stddev_Fields>;
|
|
129
|
+
stddev_pop?: Maybe<Blob_Activities_Stddev_Pop_Fields>;
|
|
130
|
+
stddev_samp?: Maybe<Blob_Activities_Stddev_Samp_Fields>;
|
|
131
|
+
sum?: Maybe<Blob_Activities_Sum_Fields>;
|
|
132
|
+
var_pop?: Maybe<Blob_Activities_Var_Pop_Fields>;
|
|
133
|
+
var_samp?: Maybe<Blob_Activities_Var_Samp_Fields>;
|
|
134
|
+
variance?: Maybe<Blob_Activities_Variance_Fields>;
|
|
135
|
+
};
|
|
136
|
+
/** aggregate fields of "blob_activities" */
|
|
137
|
+
type Blob_Activities_Aggregate_FieldsCountArgs = {
|
|
138
|
+
columns?: InputMaybe<Array<Blob_Activities_Select_Column>>;
|
|
139
|
+
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
140
|
+
};
|
|
141
|
+
/** aggregate avg on columns */
|
|
142
|
+
type Blob_Activities_Avg_Fields = {
|
|
143
|
+
__typename?: 'blob_activities_avg_fields';
|
|
144
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
145
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
146
|
+
};
|
|
115
147
|
/** Boolean expression to filter rows from the table "blob_activities". All fields are combined with a logical 'AND'. */
|
|
116
148
|
type Blob_Activities_Bool_Exp = {
|
|
117
149
|
_and?: InputMaybe<Array<Blob_Activities_Bool_Exp>>;
|
|
@@ -124,6 +156,26 @@ type Blob_Activities_Bool_Exp = {
|
|
|
124
156
|
transaction_hash?: InputMaybe<String_Comparison_Exp>;
|
|
125
157
|
transaction_version?: InputMaybe<Numeric_Comparison_Exp>;
|
|
126
158
|
};
|
|
159
|
+
/** aggregate max on columns */
|
|
160
|
+
type Blob_Activities_Max_Fields = {
|
|
161
|
+
__typename?: 'blob_activities_max_fields';
|
|
162
|
+
blob_name?: Maybe<Scalars['String']['output']>;
|
|
163
|
+
event_index?: Maybe<Scalars['numeric']['output']>;
|
|
164
|
+
event_type?: Maybe<Scalars['String']['output']>;
|
|
165
|
+
timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
166
|
+
transaction_hash?: Maybe<Scalars['String']['output']>;
|
|
167
|
+
transaction_version?: Maybe<Scalars['numeric']['output']>;
|
|
168
|
+
};
|
|
169
|
+
/** aggregate min on columns */
|
|
170
|
+
type Blob_Activities_Min_Fields = {
|
|
171
|
+
__typename?: 'blob_activities_min_fields';
|
|
172
|
+
blob_name?: Maybe<Scalars['String']['output']>;
|
|
173
|
+
event_index?: Maybe<Scalars['numeric']['output']>;
|
|
174
|
+
event_type?: Maybe<Scalars['String']['output']>;
|
|
175
|
+
timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
176
|
+
transaction_hash?: Maybe<Scalars['String']['output']>;
|
|
177
|
+
transaction_version?: Maybe<Scalars['numeric']['output']>;
|
|
178
|
+
};
|
|
127
179
|
/** Ordering options when selecting data from "blob_activities". */
|
|
128
180
|
type Blob_Activities_Order_By = {
|
|
129
181
|
blob_name?: InputMaybe<Order_By>;
|
|
@@ -148,6 +200,24 @@ declare enum Blob_Activities_Select_Column {
|
|
|
148
200
|
/** column name */
|
|
149
201
|
TransactionVersion = "transaction_version"
|
|
150
202
|
}
|
|
203
|
+
/** aggregate stddev on columns */
|
|
204
|
+
type Blob_Activities_Stddev_Fields = {
|
|
205
|
+
__typename?: 'blob_activities_stddev_fields';
|
|
206
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
207
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
208
|
+
};
|
|
209
|
+
/** aggregate stddev_pop on columns */
|
|
210
|
+
type Blob_Activities_Stddev_Pop_Fields = {
|
|
211
|
+
__typename?: 'blob_activities_stddev_pop_fields';
|
|
212
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
213
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
214
|
+
};
|
|
215
|
+
/** aggregate stddev_samp on columns */
|
|
216
|
+
type Blob_Activities_Stddev_Samp_Fields = {
|
|
217
|
+
__typename?: 'blob_activities_stddev_samp_fields';
|
|
218
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
219
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
220
|
+
};
|
|
151
221
|
/** Streaming cursor of the table "blob_activities" */
|
|
152
222
|
type Blob_Activities_Stream_Cursor_Input = {
|
|
153
223
|
/** Stream column input with initial value */
|
|
@@ -164,6 +234,30 @@ type Blob_Activities_Stream_Cursor_Value_Input = {
|
|
|
164
234
|
transaction_hash?: InputMaybe<Scalars['String']['input']>;
|
|
165
235
|
transaction_version?: InputMaybe<Scalars['numeric']['input']>;
|
|
166
236
|
};
|
|
237
|
+
/** aggregate sum on columns */
|
|
238
|
+
type Blob_Activities_Sum_Fields = {
|
|
239
|
+
__typename?: 'blob_activities_sum_fields';
|
|
240
|
+
event_index?: Maybe<Scalars['numeric']['output']>;
|
|
241
|
+
transaction_version?: Maybe<Scalars['numeric']['output']>;
|
|
242
|
+
};
|
|
243
|
+
/** aggregate var_pop on columns */
|
|
244
|
+
type Blob_Activities_Var_Pop_Fields = {
|
|
245
|
+
__typename?: 'blob_activities_var_pop_fields';
|
|
246
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
247
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
248
|
+
};
|
|
249
|
+
/** aggregate var_samp on columns */
|
|
250
|
+
type Blob_Activities_Var_Samp_Fields = {
|
|
251
|
+
__typename?: 'blob_activities_var_samp_fields';
|
|
252
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
253
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
254
|
+
};
|
|
255
|
+
/** aggregate variance on columns */
|
|
256
|
+
type Blob_Activities_Variance_Fields = {
|
|
257
|
+
__typename?: 'blob_activities_variance_fields';
|
|
258
|
+
event_index?: Maybe<Scalars['Float']['output']>;
|
|
259
|
+
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
260
|
+
};
|
|
167
261
|
/** columns and relationships of "blobs" */
|
|
168
262
|
type Blobs = {
|
|
169
263
|
__typename?: 'blobs';
|
|
@@ -190,6 +284,43 @@ type BlobsPlacement_Group_SlotsArgs = {
|
|
|
190
284
|
order_by?: InputMaybe<Array<Placement_Group_Slots_Order_By>>;
|
|
191
285
|
where?: InputMaybe<Placement_Group_Slots_Bool_Exp>;
|
|
192
286
|
};
|
|
287
|
+
/** aggregated selection of "blobs" */
|
|
288
|
+
type Blobs_Aggregate = {
|
|
289
|
+
__typename?: 'blobs_aggregate';
|
|
290
|
+
aggregate?: Maybe<Blobs_Aggregate_Fields>;
|
|
291
|
+
nodes: Array<Blobs>;
|
|
292
|
+
};
|
|
293
|
+
/** aggregate fields of "blobs" */
|
|
294
|
+
type Blobs_Aggregate_Fields = {
|
|
295
|
+
__typename?: 'blobs_aggregate_fields';
|
|
296
|
+
avg?: Maybe<Blobs_Avg_Fields>;
|
|
297
|
+
count: Scalars['Int']['output'];
|
|
298
|
+
max?: Maybe<Blobs_Max_Fields>;
|
|
299
|
+
min?: Maybe<Blobs_Min_Fields>;
|
|
300
|
+
stddev?: Maybe<Blobs_Stddev_Fields>;
|
|
301
|
+
stddev_pop?: Maybe<Blobs_Stddev_Pop_Fields>;
|
|
302
|
+
stddev_samp?: Maybe<Blobs_Stddev_Samp_Fields>;
|
|
303
|
+
sum?: Maybe<Blobs_Sum_Fields>;
|
|
304
|
+
var_pop?: Maybe<Blobs_Var_Pop_Fields>;
|
|
305
|
+
var_samp?: Maybe<Blobs_Var_Samp_Fields>;
|
|
306
|
+
variance?: Maybe<Blobs_Variance_Fields>;
|
|
307
|
+
};
|
|
308
|
+
/** aggregate fields of "blobs" */
|
|
309
|
+
type Blobs_Aggregate_FieldsCountArgs = {
|
|
310
|
+
columns?: InputMaybe<Array<Blobs_Select_Column>>;
|
|
311
|
+
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
312
|
+
};
|
|
313
|
+
/** aggregate avg on columns */
|
|
314
|
+
type Blobs_Avg_Fields = {
|
|
315
|
+
__typename?: 'blobs_avg_fields';
|
|
316
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
317
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
318
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
319
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
320
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
321
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
322
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
323
|
+
};
|
|
193
324
|
/** Boolean expression to filter rows from the table "blobs". All fields are combined with a logical 'AND'. */
|
|
194
325
|
type Blobs_Bool_Exp = {
|
|
195
326
|
_and?: InputMaybe<Array<Blobs_Bool_Exp>>;
|
|
@@ -209,6 +340,38 @@ type Blobs_Bool_Exp = {
|
|
|
209
340
|
slice_address?: InputMaybe<String_Comparison_Exp>;
|
|
210
341
|
updated_at?: InputMaybe<Numeric_Comparison_Exp>;
|
|
211
342
|
};
|
|
343
|
+
/** aggregate max on columns */
|
|
344
|
+
type Blobs_Max_Fields = {
|
|
345
|
+
__typename?: 'blobs_max_fields';
|
|
346
|
+
blob_commitment?: Maybe<Scalars['String']['output']>;
|
|
347
|
+
blob_name?: Maybe<Scalars['String']['output']>;
|
|
348
|
+
created_at?: Maybe<Scalars['numeric']['output']>;
|
|
349
|
+
expires_at?: Maybe<Scalars['numeric']['output']>;
|
|
350
|
+
is_deleted?: Maybe<Scalars['numeric']['output']>;
|
|
351
|
+
is_written?: Maybe<Scalars['numeric']['output']>;
|
|
352
|
+
num_chunksets?: Maybe<Scalars['numeric']['output']>;
|
|
353
|
+
owner?: Maybe<Scalars['String']['output']>;
|
|
354
|
+
placement_group?: Maybe<Scalars['String']['output']>;
|
|
355
|
+
size?: Maybe<Scalars['numeric']['output']>;
|
|
356
|
+
slice_address?: Maybe<Scalars['String']['output']>;
|
|
357
|
+
updated_at?: Maybe<Scalars['numeric']['output']>;
|
|
358
|
+
};
|
|
359
|
+
/** aggregate min on columns */
|
|
360
|
+
type Blobs_Min_Fields = {
|
|
361
|
+
__typename?: 'blobs_min_fields';
|
|
362
|
+
blob_commitment?: Maybe<Scalars['String']['output']>;
|
|
363
|
+
blob_name?: Maybe<Scalars['String']['output']>;
|
|
364
|
+
created_at?: Maybe<Scalars['numeric']['output']>;
|
|
365
|
+
expires_at?: Maybe<Scalars['numeric']['output']>;
|
|
366
|
+
is_deleted?: Maybe<Scalars['numeric']['output']>;
|
|
367
|
+
is_written?: Maybe<Scalars['numeric']['output']>;
|
|
368
|
+
num_chunksets?: Maybe<Scalars['numeric']['output']>;
|
|
369
|
+
owner?: Maybe<Scalars['String']['output']>;
|
|
370
|
+
placement_group?: Maybe<Scalars['String']['output']>;
|
|
371
|
+
size?: Maybe<Scalars['numeric']['output']>;
|
|
372
|
+
slice_address?: Maybe<Scalars['String']['output']>;
|
|
373
|
+
updated_at?: Maybe<Scalars['numeric']['output']>;
|
|
374
|
+
};
|
|
212
375
|
/** Ordering options when selecting data from "blobs". */
|
|
213
376
|
type Blobs_Order_By = {
|
|
214
377
|
blob_commitment?: InputMaybe<Order_By>;
|
|
@@ -252,6 +415,39 @@ declare enum Blobs_Select_Column {
|
|
|
252
415
|
/** column name */
|
|
253
416
|
UpdatedAt = "updated_at"
|
|
254
417
|
}
|
|
418
|
+
/** aggregate stddev on columns */
|
|
419
|
+
type Blobs_Stddev_Fields = {
|
|
420
|
+
__typename?: 'blobs_stddev_fields';
|
|
421
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
422
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
423
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
424
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
425
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
426
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
427
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
428
|
+
};
|
|
429
|
+
/** aggregate stddev_pop on columns */
|
|
430
|
+
type Blobs_Stddev_Pop_Fields = {
|
|
431
|
+
__typename?: 'blobs_stddev_pop_fields';
|
|
432
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
433
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
434
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
435
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
436
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
437
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
438
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
439
|
+
};
|
|
440
|
+
/** aggregate stddev_samp on columns */
|
|
441
|
+
type Blobs_Stddev_Samp_Fields = {
|
|
442
|
+
__typename?: 'blobs_stddev_samp_fields';
|
|
443
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
444
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
445
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
446
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
447
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
448
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
449
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
450
|
+
};
|
|
255
451
|
/** Streaming cursor of the table "blobs" */
|
|
256
452
|
type Blobs_Stream_Cursor_Input = {
|
|
257
453
|
/** Stream column input with initial value */
|
|
@@ -274,6 +470,50 @@ type Blobs_Stream_Cursor_Value_Input = {
|
|
|
274
470
|
slice_address?: InputMaybe<Scalars['String']['input']>;
|
|
275
471
|
updated_at?: InputMaybe<Scalars['numeric']['input']>;
|
|
276
472
|
};
|
|
473
|
+
/** aggregate sum on columns */
|
|
474
|
+
type Blobs_Sum_Fields = {
|
|
475
|
+
__typename?: 'blobs_sum_fields';
|
|
476
|
+
created_at?: Maybe<Scalars['numeric']['output']>;
|
|
477
|
+
expires_at?: Maybe<Scalars['numeric']['output']>;
|
|
478
|
+
is_deleted?: Maybe<Scalars['numeric']['output']>;
|
|
479
|
+
is_written?: Maybe<Scalars['numeric']['output']>;
|
|
480
|
+
num_chunksets?: Maybe<Scalars['numeric']['output']>;
|
|
481
|
+
size?: Maybe<Scalars['numeric']['output']>;
|
|
482
|
+
updated_at?: Maybe<Scalars['numeric']['output']>;
|
|
483
|
+
};
|
|
484
|
+
/** aggregate var_pop on columns */
|
|
485
|
+
type Blobs_Var_Pop_Fields = {
|
|
486
|
+
__typename?: 'blobs_var_pop_fields';
|
|
487
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
488
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
489
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
490
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
491
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
492
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
493
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
494
|
+
};
|
|
495
|
+
/** aggregate var_samp on columns */
|
|
496
|
+
type Blobs_Var_Samp_Fields = {
|
|
497
|
+
__typename?: 'blobs_var_samp_fields';
|
|
498
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
499
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
500
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
501
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
502
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
503
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
504
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
505
|
+
};
|
|
506
|
+
/** aggregate variance on columns */
|
|
507
|
+
type Blobs_Variance_Fields = {
|
|
508
|
+
__typename?: 'blobs_variance_fields';
|
|
509
|
+
created_at?: Maybe<Scalars['Float']['output']>;
|
|
510
|
+
expires_at?: Maybe<Scalars['Float']['output']>;
|
|
511
|
+
is_deleted?: Maybe<Scalars['Float']['output']>;
|
|
512
|
+
is_written?: Maybe<Scalars['Float']['output']>;
|
|
513
|
+
num_chunksets?: Maybe<Scalars['Float']['output']>;
|
|
514
|
+
size?: Maybe<Scalars['Float']['output']>;
|
|
515
|
+
updated_at?: Maybe<Scalars['Float']['output']>;
|
|
516
|
+
};
|
|
277
517
|
/** ordering argument of a cursor */
|
|
278
518
|
declare enum Cursor_Ordering {
|
|
279
519
|
/** ascending ordering of the cursor */
|
|
@@ -482,10 +722,14 @@ type Query_Root = {
|
|
|
482
722
|
__typename?: 'query_root';
|
|
483
723
|
/** fetch data from the table: "blob_activities" */
|
|
484
724
|
blob_activities: Array<Blob_Activities>;
|
|
725
|
+
/** fetch aggregated fields from the table: "blob_activities" */
|
|
726
|
+
blob_activities_aggregate: Blob_Activities_Aggregate;
|
|
485
727
|
/** fetch data from the table: "blob_activities" using primary key columns */
|
|
486
728
|
blob_activities_by_pk?: Maybe<Blob_Activities>;
|
|
487
729
|
/** fetch data from the table: "blobs" */
|
|
488
730
|
blobs: Array<Blobs>;
|
|
731
|
+
/** fetch aggregated fields from the table: "blobs" */
|
|
732
|
+
blobs_aggregate: Blobs_Aggregate;
|
|
489
733
|
/** fetch data from the table: "blobs" using primary key columns */
|
|
490
734
|
blobs_by_pk?: Maybe<Blobs>;
|
|
491
735
|
/** An array relationship */
|
|
@@ -502,6 +746,13 @@ type Query_RootBlob_ActivitiesArgs = {
|
|
|
502
746
|
order_by?: InputMaybe<Array<Blob_Activities_Order_By>>;
|
|
503
747
|
where?: InputMaybe<Blob_Activities_Bool_Exp>;
|
|
504
748
|
};
|
|
749
|
+
type Query_RootBlob_Activities_AggregateArgs = {
|
|
750
|
+
distinct_on?: InputMaybe<Array<Blob_Activities_Select_Column>>;
|
|
751
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
752
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
753
|
+
order_by?: InputMaybe<Array<Blob_Activities_Order_By>>;
|
|
754
|
+
where?: InputMaybe<Blob_Activities_Bool_Exp>;
|
|
755
|
+
};
|
|
505
756
|
type Query_RootBlob_Activities_By_PkArgs = {
|
|
506
757
|
event_index: Scalars['numeric']['input'];
|
|
507
758
|
event_type: Scalars['String']['input'];
|
|
@@ -514,6 +765,13 @@ type Query_RootBlobsArgs = {
|
|
|
514
765
|
order_by?: InputMaybe<Array<Blobs_Order_By>>;
|
|
515
766
|
where?: InputMaybe<Blobs_Bool_Exp>;
|
|
516
767
|
};
|
|
768
|
+
type Query_RootBlobs_AggregateArgs = {
|
|
769
|
+
distinct_on?: InputMaybe<Array<Blobs_Select_Column>>;
|
|
770
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
771
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
772
|
+
order_by?: InputMaybe<Array<Blobs_Order_By>>;
|
|
773
|
+
where?: InputMaybe<Blobs_Bool_Exp>;
|
|
774
|
+
};
|
|
517
775
|
type Query_RootBlobs_By_PkArgs = {
|
|
518
776
|
blob_name: Scalars['String']['input'];
|
|
519
777
|
};
|
|
@@ -539,12 +797,16 @@ type Subscription_Root = {
|
|
|
539
797
|
__typename?: 'subscription_root';
|
|
540
798
|
/** fetch data from the table: "blob_activities" */
|
|
541
799
|
blob_activities: Array<Blob_Activities>;
|
|
800
|
+
/** fetch aggregated fields from the table: "blob_activities" */
|
|
801
|
+
blob_activities_aggregate: Blob_Activities_Aggregate;
|
|
542
802
|
/** fetch data from the table: "blob_activities" using primary key columns */
|
|
543
803
|
blob_activities_by_pk?: Maybe<Blob_Activities>;
|
|
544
804
|
/** fetch data from the table in a streaming manner: "blob_activities" */
|
|
545
805
|
blob_activities_stream: Array<Blob_Activities>;
|
|
546
806
|
/** fetch data from the table: "blobs" */
|
|
547
807
|
blobs: Array<Blobs>;
|
|
808
|
+
/** fetch aggregated fields from the table: "blobs" */
|
|
809
|
+
blobs_aggregate: Blobs_Aggregate;
|
|
548
810
|
/** fetch data from the table: "blobs" using primary key columns */
|
|
549
811
|
blobs_by_pk?: Maybe<Blobs>;
|
|
550
812
|
/** fetch data from the table in a streaming manner: "blobs" */
|
|
@@ -567,6 +829,13 @@ type Subscription_RootBlob_ActivitiesArgs = {
|
|
|
567
829
|
order_by?: InputMaybe<Array<Blob_Activities_Order_By>>;
|
|
568
830
|
where?: InputMaybe<Blob_Activities_Bool_Exp>;
|
|
569
831
|
};
|
|
832
|
+
type Subscription_RootBlob_Activities_AggregateArgs = {
|
|
833
|
+
distinct_on?: InputMaybe<Array<Blob_Activities_Select_Column>>;
|
|
834
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
835
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
836
|
+
order_by?: InputMaybe<Array<Blob_Activities_Order_By>>;
|
|
837
|
+
where?: InputMaybe<Blob_Activities_Bool_Exp>;
|
|
838
|
+
};
|
|
570
839
|
type Subscription_RootBlob_Activities_By_PkArgs = {
|
|
571
840
|
event_index: Scalars['numeric']['input'];
|
|
572
841
|
event_type: Scalars['String']['input'];
|
|
@@ -584,6 +853,13 @@ type Subscription_RootBlobsArgs = {
|
|
|
584
853
|
order_by?: InputMaybe<Array<Blobs_Order_By>>;
|
|
585
854
|
where?: InputMaybe<Blobs_Bool_Exp>;
|
|
586
855
|
};
|
|
856
|
+
type Subscription_RootBlobs_AggregateArgs = {
|
|
857
|
+
distinct_on?: InputMaybe<Array<Blobs_Select_Column>>;
|
|
858
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
859
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
860
|
+
order_by?: InputMaybe<Array<Blobs_Order_By>>;
|
|
861
|
+
where?: InputMaybe<Blobs_Bool_Exp>;
|
|
862
|
+
};
|
|
587
863
|
type Subscription_RootBlobs_By_PkArgs = {
|
|
588
864
|
blob_name: Scalars['String']['input'];
|
|
589
865
|
};
|
|
@@ -674,13 +950,43 @@ type GetBlobActivitiesQuery = {
|
|
|
674
950
|
timestamp: any;
|
|
675
951
|
}>;
|
|
676
952
|
};
|
|
953
|
+
type GetBlobsCountQueryVariables = Exact<{
|
|
954
|
+
where?: InputMaybe<Blobs_Bool_Exp>;
|
|
955
|
+
}>;
|
|
956
|
+
type GetBlobsCountQuery = {
|
|
957
|
+
__typename?: 'query_root';
|
|
958
|
+
blobs_aggregate: {
|
|
959
|
+
__typename?: 'blobs_aggregate';
|
|
960
|
+
aggregate?: {
|
|
961
|
+
__typename?: 'blobs_aggregate_fields';
|
|
962
|
+
count: number;
|
|
963
|
+
} | null;
|
|
964
|
+
};
|
|
965
|
+
};
|
|
966
|
+
type GetBlobActivitiesCountQueryVariables = Exact<{
|
|
967
|
+
where?: InputMaybe<Blob_Activities_Bool_Exp>;
|
|
968
|
+
}>;
|
|
969
|
+
type GetBlobActivitiesCountQuery = {
|
|
970
|
+
__typename?: 'query_root';
|
|
971
|
+
blob_activities_aggregate: {
|
|
972
|
+
__typename?: 'blob_activities_aggregate';
|
|
973
|
+
aggregate?: {
|
|
974
|
+
__typename?: 'blob_activities_aggregate_fields';
|
|
975
|
+
count: number;
|
|
976
|
+
} | null;
|
|
977
|
+
};
|
|
978
|
+
};
|
|
677
979
|
declare const GetBlobsDocument: graphql.DocumentNode;
|
|
678
980
|
declare const GetBlobActivitiesDocument: graphql.DocumentNode;
|
|
981
|
+
declare const GetBlobsCountDocument: graphql.DocumentNode;
|
|
982
|
+
declare const GetBlobActivitiesCountDocument: graphql.DocumentNode;
|
|
679
983
|
type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;
|
|
680
984
|
declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
681
985
|
getBlobs(variables?: GetBlobsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBlobsQuery>;
|
|
682
986
|
getBlobActivities(variables?: GetBlobActivitiesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBlobActivitiesQuery>;
|
|
987
|
+
getBlobsCount(variables?: GetBlobsCountQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBlobsCountQuery>;
|
|
988
|
+
getBlobActivitiesCount(variables?: GetBlobActivitiesCountQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBlobActivitiesCountQuery>;
|
|
683
989
|
};
|
|
684
990
|
type Sdk = ReturnType<typeof getSdk>;
|
|
685
991
|
|
|
686
|
-
export { type Bigint_Comparison_Exp, type Blob_Activities, type Blob_Activities_Bool_Exp, type Blob_Activities_Order_By, Blob_Activities_Select_Column, type Blob_Activities_Stream_Cursor_Input, type Blob_Activities_Stream_Cursor_Value_Input, type Blobs, type BlobsPlacement_Group_SlotsArgs, type Blobs_Bool_Exp, type Blobs_Order_By, Blobs_Select_Column, type Blobs_Stream_Cursor_Input, type Blobs_Stream_Cursor_Value_Input, Cursor_Ordering, type Exact, GetBlobActivitiesDocument, type GetBlobActivitiesQuery, type GetBlobActivitiesQueryVariables, GetBlobsDocument, type GetBlobsQuery, type GetBlobsQueryVariables, 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_By_PkArgs, type Query_RootBlobsArgs, type Query_RootBlobs_By_PkArgs, type Query_RootPlacement_Group_SlotsArgs, type Query_RootPlacement_Group_Slots_By_PkArgs, type Query_RootProcessor_StatusArgs, type Scalars, type Sdk, type SdkFunctionWrapper, type String_Comparison_Exp, type Subscription_Root, type Subscription_RootBlob_ActivitiesArgs, type Subscription_RootBlob_Activities_By_PkArgs, type Subscription_RootBlob_Activities_StreamArgs, type Subscription_RootBlobsArgs, 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, getSdk };
|
|
992
|
+
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, GetBlobActivitiesCountDocument, type GetBlobActivitiesCountQuery, type GetBlobActivitiesCountQueryVariables, GetBlobActivitiesDocument, type GetBlobActivitiesQuery, type GetBlobActivitiesQueryVariables, GetBlobsCountDocument, type GetBlobsCountQuery, type GetBlobsCountQueryVariables, GetBlobsDocument, type GetBlobsQuery, type GetBlobsQueryVariables, 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 Sdk, type SdkFunctionWrapper, 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, getSdk };
|
|
@@ -2,19 +2,23 @@ import {
|
|
|
2
2
|
Blob_Activities_Select_Column,
|
|
3
3
|
Blobs_Select_Column,
|
|
4
4
|
Cursor_Ordering,
|
|
5
|
+
GetBlobActivitiesCountDocument,
|
|
5
6
|
GetBlobActivitiesDocument,
|
|
7
|
+
GetBlobsCountDocument,
|
|
6
8
|
GetBlobsDocument,
|
|
7
9
|
Order_By,
|
|
8
10
|
Placement_Group_Slots_Select_Column,
|
|
9
11
|
Processor_Status_Select_Column,
|
|
10
12
|
getSdk
|
|
11
|
-
} from "../../../chunk-
|
|
13
|
+
} from "../../../chunk-WJKSPJSS.mjs";
|
|
12
14
|
import "../../../chunk-7P6ASYW6.mjs";
|
|
13
15
|
export {
|
|
14
16
|
Blob_Activities_Select_Column,
|
|
15
17
|
Blobs_Select_Column,
|
|
16
18
|
Cursor_Ordering,
|
|
19
|
+
GetBlobActivitiesCountDocument,
|
|
17
20
|
GetBlobActivitiesDocument,
|
|
21
|
+
GetBlobsCountDocument,
|
|
18
22
|
GetBlobsDocument,
|
|
19
23
|
Order_By,
|
|
20
24
|
Placement_Group_Slots_Select_Column,
|