@pipe2-ai/sdk 0.1.0
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/generated/sdk.d.ts +2619 -0
- package/dist/generated/sdk.js +805 -0
- package/dist/src/index.d.ts +8 -0
- package/dist/src/index.js +49 -0
- package/package.json +25 -0
|
@@ -0,0 +1,2619 @@
|
|
|
1
|
+
import { DocumentNode } from 'graphql';
|
|
2
|
+
export type Maybe<T> = T | null;
|
|
3
|
+
export type InputMaybe<T> = Maybe<T>;
|
|
4
|
+
export type Exact<T extends {
|
|
5
|
+
[key: string]: unknown;
|
|
6
|
+
}> = {
|
|
7
|
+
[K in keyof T]: T[K];
|
|
8
|
+
};
|
|
9
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
10
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
11
|
+
};
|
|
12
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
13
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
14
|
+
};
|
|
15
|
+
export type MakeEmpty<T extends {
|
|
16
|
+
[key: string]: unknown;
|
|
17
|
+
}, K extends keyof T> = {
|
|
18
|
+
[_ in K]?: never;
|
|
19
|
+
};
|
|
20
|
+
export type Incremental<T> = T | {
|
|
21
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
22
|
+
};
|
|
23
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
24
|
+
export type Scalars = {
|
|
25
|
+
ID: {
|
|
26
|
+
input: string;
|
|
27
|
+
output: string;
|
|
28
|
+
};
|
|
29
|
+
String: {
|
|
30
|
+
input: string;
|
|
31
|
+
output: string;
|
|
32
|
+
};
|
|
33
|
+
Boolean: {
|
|
34
|
+
input: boolean;
|
|
35
|
+
output: boolean;
|
|
36
|
+
};
|
|
37
|
+
Int: {
|
|
38
|
+
input: number;
|
|
39
|
+
output: number;
|
|
40
|
+
};
|
|
41
|
+
Float: {
|
|
42
|
+
input: number;
|
|
43
|
+
output: number;
|
|
44
|
+
};
|
|
45
|
+
bpchar: {
|
|
46
|
+
input: any;
|
|
47
|
+
output: any;
|
|
48
|
+
};
|
|
49
|
+
jsonb: {
|
|
50
|
+
input: any;
|
|
51
|
+
output: any;
|
|
52
|
+
};
|
|
53
|
+
timestamp: {
|
|
54
|
+
input: any;
|
|
55
|
+
output: any;
|
|
56
|
+
};
|
|
57
|
+
timestamptz: {
|
|
58
|
+
input: any;
|
|
59
|
+
output: any;
|
|
60
|
+
};
|
|
61
|
+
uuid: {
|
|
62
|
+
input: any;
|
|
63
|
+
output: any;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
/** Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. */
|
|
67
|
+
export type Boolean_Comparison_Exp = {
|
|
68
|
+
_eq?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69
|
+
_gt?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70
|
+
_gte?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71
|
+
_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
72
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73
|
+
_lt?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74
|
+
_lte?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75
|
+
_neq?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76
|
+
_nin?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
77
|
+
};
|
|
78
|
+
/** Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. */
|
|
79
|
+
export type Int_Comparison_Exp = {
|
|
80
|
+
_eq?: InputMaybe<Scalars['Int']['input']>;
|
|
81
|
+
_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
82
|
+
_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
83
|
+
_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
84
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85
|
+
_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
86
|
+
_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
87
|
+
_neq?: InputMaybe<Scalars['Int']['input']>;
|
|
88
|
+
_nin?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
89
|
+
};
|
|
90
|
+
/** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */
|
|
91
|
+
export type String_Array_Comparison_Exp = {
|
|
92
|
+
/** is the array contained in the given array value */
|
|
93
|
+
_contained_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
94
|
+
/** does the array contain the given value */
|
|
95
|
+
_contains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
96
|
+
_eq?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
97
|
+
_gt?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
98
|
+
_gte?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
99
|
+
_in?: InputMaybe<Array<Array<Scalars['String']['input']>>>;
|
|
100
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101
|
+
_lt?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
102
|
+
_lte?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
103
|
+
_neq?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
104
|
+
_nin?: InputMaybe<Array<Array<Scalars['String']['input']>>>;
|
|
105
|
+
};
|
|
106
|
+
/** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */
|
|
107
|
+
export type String_Comparison_Exp = {
|
|
108
|
+
_eq?: InputMaybe<Scalars['String']['input']>;
|
|
109
|
+
_gt?: InputMaybe<Scalars['String']['input']>;
|
|
110
|
+
_gte?: InputMaybe<Scalars['String']['input']>;
|
|
111
|
+
/** does the column match the given case-insensitive pattern */
|
|
112
|
+
_ilike?: InputMaybe<Scalars['String']['input']>;
|
|
113
|
+
_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
114
|
+
/** does the column match the given POSIX regular expression, case insensitive */
|
|
115
|
+
_iregex?: InputMaybe<Scalars['String']['input']>;
|
|
116
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
117
|
+
/** does the column match the given pattern */
|
|
118
|
+
_like?: InputMaybe<Scalars['String']['input']>;
|
|
119
|
+
_lt?: InputMaybe<Scalars['String']['input']>;
|
|
120
|
+
_lte?: InputMaybe<Scalars['String']['input']>;
|
|
121
|
+
_neq?: InputMaybe<Scalars['String']['input']>;
|
|
122
|
+
/** does the column NOT match the given case-insensitive pattern */
|
|
123
|
+
_nilike?: InputMaybe<Scalars['String']['input']>;
|
|
124
|
+
_nin?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
125
|
+
/** does the column NOT match the given POSIX regular expression, case insensitive */
|
|
126
|
+
_niregex?: InputMaybe<Scalars['String']['input']>;
|
|
127
|
+
/** does the column NOT match the given pattern */
|
|
128
|
+
_nlike?: InputMaybe<Scalars['String']['input']>;
|
|
129
|
+
/** does the column NOT match the given POSIX regular expression, case sensitive */
|
|
130
|
+
_nregex?: InputMaybe<Scalars['String']['input']>;
|
|
131
|
+
/** does the column NOT match the given SQL regular expression */
|
|
132
|
+
_nsimilar?: InputMaybe<Scalars['String']['input']>;
|
|
133
|
+
/** does the column match the given POSIX regular expression, case sensitive */
|
|
134
|
+
_regex?: InputMaybe<Scalars['String']['input']>;
|
|
135
|
+
/** does the column match the given SQL regular expression */
|
|
136
|
+
_similar?: InputMaybe<Scalars['String']['input']>;
|
|
137
|
+
};
|
|
138
|
+
export type Add_Affiliate_Code_Output = {
|
|
139
|
+
__typename?: 'add_affiliate_code_output';
|
|
140
|
+
code_id: Scalars['String']['output'];
|
|
141
|
+
success: Scalars['Boolean']['output'];
|
|
142
|
+
};
|
|
143
|
+
/** columns and relationships of "affiliate_codes" */
|
|
144
|
+
export type Affiliate_Codes = {
|
|
145
|
+
__typename?: 'affiliate_codes';
|
|
146
|
+
/** An object relationship */
|
|
147
|
+
affiliate: Affiliates;
|
|
148
|
+
affiliate_id: Scalars['uuid']['output'];
|
|
149
|
+
code: Scalars['String']['output'];
|
|
150
|
+
created_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
151
|
+
id: Scalars['uuid']['output'];
|
|
152
|
+
is_primary?: Maybe<Scalars['Boolean']['output']>;
|
|
153
|
+
redirect_path?: Maybe<Scalars['String']['output']>;
|
|
154
|
+
};
|
|
155
|
+
/** order by aggregate values of table "affiliate_codes" */
|
|
156
|
+
export type Affiliate_Codes_Aggregate_Order_By = {
|
|
157
|
+
count?: InputMaybe<Order_By>;
|
|
158
|
+
max?: InputMaybe<Affiliate_Codes_Max_Order_By>;
|
|
159
|
+
min?: InputMaybe<Affiliate_Codes_Min_Order_By>;
|
|
160
|
+
};
|
|
161
|
+
/** Boolean expression to filter rows from the table "affiliate_codes". All fields are combined with a logical 'AND'. */
|
|
162
|
+
export type Affiliate_Codes_Bool_Exp = {
|
|
163
|
+
_and?: InputMaybe<Array<Affiliate_Codes_Bool_Exp>>;
|
|
164
|
+
_not?: InputMaybe<Affiliate_Codes_Bool_Exp>;
|
|
165
|
+
_or?: InputMaybe<Array<Affiliate_Codes_Bool_Exp>>;
|
|
166
|
+
affiliate?: InputMaybe<Affiliates_Bool_Exp>;
|
|
167
|
+
affiliate_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
168
|
+
code?: InputMaybe<String_Comparison_Exp>;
|
|
169
|
+
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
170
|
+
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
171
|
+
is_primary?: InputMaybe<Boolean_Comparison_Exp>;
|
|
172
|
+
redirect_path?: InputMaybe<String_Comparison_Exp>;
|
|
173
|
+
};
|
|
174
|
+
/** order by max() on columns of table "affiliate_codes" */
|
|
175
|
+
export type Affiliate_Codes_Max_Order_By = {
|
|
176
|
+
affiliate_id?: InputMaybe<Order_By>;
|
|
177
|
+
code?: InputMaybe<Order_By>;
|
|
178
|
+
created_at?: InputMaybe<Order_By>;
|
|
179
|
+
id?: InputMaybe<Order_By>;
|
|
180
|
+
redirect_path?: InputMaybe<Order_By>;
|
|
181
|
+
};
|
|
182
|
+
/** order by min() on columns of table "affiliate_codes" */
|
|
183
|
+
export type Affiliate_Codes_Min_Order_By = {
|
|
184
|
+
affiliate_id?: InputMaybe<Order_By>;
|
|
185
|
+
code?: InputMaybe<Order_By>;
|
|
186
|
+
created_at?: InputMaybe<Order_By>;
|
|
187
|
+
id?: InputMaybe<Order_By>;
|
|
188
|
+
redirect_path?: InputMaybe<Order_By>;
|
|
189
|
+
};
|
|
190
|
+
/** response of any mutation on the table "affiliate_codes" */
|
|
191
|
+
export type Affiliate_Codes_Mutation_Response = {
|
|
192
|
+
__typename?: 'affiliate_codes_mutation_response';
|
|
193
|
+
/** number of rows affected by the mutation */
|
|
194
|
+
affected_rows: Scalars['Int']['output'];
|
|
195
|
+
/** data from the rows affected by the mutation */
|
|
196
|
+
returning: Array<Affiliate_Codes>;
|
|
197
|
+
};
|
|
198
|
+
/** Ordering options when selecting data from "affiliate_codes". */
|
|
199
|
+
export type Affiliate_Codes_Order_By = {
|
|
200
|
+
affiliate?: InputMaybe<Affiliates_Order_By>;
|
|
201
|
+
affiliate_id?: InputMaybe<Order_By>;
|
|
202
|
+
code?: InputMaybe<Order_By>;
|
|
203
|
+
created_at?: InputMaybe<Order_By>;
|
|
204
|
+
id?: InputMaybe<Order_By>;
|
|
205
|
+
is_primary?: InputMaybe<Order_By>;
|
|
206
|
+
redirect_path?: InputMaybe<Order_By>;
|
|
207
|
+
};
|
|
208
|
+
/** primary key columns input for table: affiliate_codes */
|
|
209
|
+
export type Affiliate_Codes_Pk_Columns_Input = {
|
|
210
|
+
id: Scalars['uuid']['input'];
|
|
211
|
+
};
|
|
212
|
+
/** select columns of table "affiliate_codes" */
|
|
213
|
+
export declare enum Affiliate_Codes_Select_Column {
|
|
214
|
+
/** column name */
|
|
215
|
+
AffiliateId = "affiliate_id",
|
|
216
|
+
/** column name */
|
|
217
|
+
Code = "code",
|
|
218
|
+
/** column name */
|
|
219
|
+
CreatedAt = "created_at",
|
|
220
|
+
/** column name */
|
|
221
|
+
Id = "id",
|
|
222
|
+
/** column name */
|
|
223
|
+
IsPrimary = "is_primary",
|
|
224
|
+
/** column name */
|
|
225
|
+
RedirectPath = "redirect_path"
|
|
226
|
+
}
|
|
227
|
+
/** input type for updating data in table "affiliate_codes" */
|
|
228
|
+
export type Affiliate_Codes_Set_Input = {
|
|
229
|
+
redirect_path?: InputMaybe<Scalars['String']['input']>;
|
|
230
|
+
};
|
|
231
|
+
/** Streaming cursor of the table "affiliate_codes" */
|
|
232
|
+
export type Affiliate_Codes_Stream_Cursor_Input = {
|
|
233
|
+
/** Stream column input with initial value */
|
|
234
|
+
initial_value: Affiliate_Codes_Stream_Cursor_Value_Input;
|
|
235
|
+
/** cursor ordering */
|
|
236
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
237
|
+
};
|
|
238
|
+
/** Initial value of the column from where the streaming should start */
|
|
239
|
+
export type Affiliate_Codes_Stream_Cursor_Value_Input = {
|
|
240
|
+
affiliate_id?: InputMaybe<Scalars['uuid']['input']>;
|
|
241
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
242
|
+
created_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
243
|
+
id?: InputMaybe<Scalars['uuid']['input']>;
|
|
244
|
+
is_primary?: InputMaybe<Scalars['Boolean']['input']>;
|
|
245
|
+
redirect_path?: InputMaybe<Scalars['String']['input']>;
|
|
246
|
+
};
|
|
247
|
+
export type Affiliate_Codes_Updates = {
|
|
248
|
+
/** sets the columns of the filtered rows to the given values */
|
|
249
|
+
_set?: InputMaybe<Affiliate_Codes_Set_Input>;
|
|
250
|
+
/** filter the rows which have to be updated */
|
|
251
|
+
where: Affiliate_Codes_Bool_Exp;
|
|
252
|
+
};
|
|
253
|
+
/** columns and relationships of "affiliates" */
|
|
254
|
+
export type Affiliates = {
|
|
255
|
+
__typename?: 'affiliates';
|
|
256
|
+
/** An array relationship */
|
|
257
|
+
codes: Array<Affiliate_Codes>;
|
|
258
|
+
commission_percent?: Maybe<Scalars['Int']['output']>;
|
|
259
|
+
created_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
260
|
+
id: Scalars['uuid']['output'];
|
|
261
|
+
is_active?: Maybe<Scalars['Boolean']['output']>;
|
|
262
|
+
whop_affiliate_id?: Maybe<Scalars['String']['output']>;
|
|
263
|
+
};
|
|
264
|
+
/** columns and relationships of "affiliates" */
|
|
265
|
+
export type AffiliatesCodesArgs = {
|
|
266
|
+
distinct_on?: InputMaybe<Array<Affiliate_Codes_Select_Column>>;
|
|
267
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
268
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
269
|
+
order_by?: InputMaybe<Array<Affiliate_Codes_Order_By>>;
|
|
270
|
+
where?: InputMaybe<Affiliate_Codes_Bool_Exp>;
|
|
271
|
+
};
|
|
272
|
+
/** Boolean expression to filter rows from the table "affiliates". All fields are combined with a logical 'AND'. */
|
|
273
|
+
export type Affiliates_Bool_Exp = {
|
|
274
|
+
_and?: InputMaybe<Array<Affiliates_Bool_Exp>>;
|
|
275
|
+
_not?: InputMaybe<Affiliates_Bool_Exp>;
|
|
276
|
+
_or?: InputMaybe<Array<Affiliates_Bool_Exp>>;
|
|
277
|
+
codes?: InputMaybe<Affiliate_Codes_Bool_Exp>;
|
|
278
|
+
commission_percent?: InputMaybe<Int_Comparison_Exp>;
|
|
279
|
+
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
280
|
+
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
281
|
+
is_active?: InputMaybe<Boolean_Comparison_Exp>;
|
|
282
|
+
whop_affiliate_id?: InputMaybe<String_Comparison_Exp>;
|
|
283
|
+
};
|
|
284
|
+
/** Ordering options when selecting data from "affiliates". */
|
|
285
|
+
export type Affiliates_Order_By = {
|
|
286
|
+
codes_aggregate?: InputMaybe<Affiliate_Codes_Aggregate_Order_By>;
|
|
287
|
+
commission_percent?: InputMaybe<Order_By>;
|
|
288
|
+
created_at?: InputMaybe<Order_By>;
|
|
289
|
+
id?: InputMaybe<Order_By>;
|
|
290
|
+
is_active?: InputMaybe<Order_By>;
|
|
291
|
+
whop_affiliate_id?: InputMaybe<Order_By>;
|
|
292
|
+
};
|
|
293
|
+
/** select columns of table "affiliates" */
|
|
294
|
+
export declare enum Affiliates_Select_Column {
|
|
295
|
+
/** column name */
|
|
296
|
+
CommissionPercent = "commission_percent",
|
|
297
|
+
/** column name */
|
|
298
|
+
CreatedAt = "created_at",
|
|
299
|
+
/** column name */
|
|
300
|
+
Id = "id",
|
|
301
|
+
/** column name */
|
|
302
|
+
IsActive = "is_active",
|
|
303
|
+
/** column name */
|
|
304
|
+
WhopAffiliateId = "whop_affiliate_id"
|
|
305
|
+
}
|
|
306
|
+
/** Streaming cursor of the table "affiliates" */
|
|
307
|
+
export type Affiliates_Stream_Cursor_Input = {
|
|
308
|
+
/** Stream column input with initial value */
|
|
309
|
+
initial_value: Affiliates_Stream_Cursor_Value_Input;
|
|
310
|
+
/** cursor ordering */
|
|
311
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
312
|
+
};
|
|
313
|
+
/** Initial value of the column from where the streaming should start */
|
|
314
|
+
export type Affiliates_Stream_Cursor_Value_Input = {
|
|
315
|
+
commission_percent?: InputMaybe<Scalars['Int']['input']>;
|
|
316
|
+
created_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
317
|
+
id?: InputMaybe<Scalars['uuid']['input']>;
|
|
318
|
+
is_active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
319
|
+
whop_affiliate_id?: InputMaybe<Scalars['String']['input']>;
|
|
320
|
+
};
|
|
321
|
+
/** columns and relationships of "assets" */
|
|
322
|
+
export type Assets = {
|
|
323
|
+
__typename?: 'assets';
|
|
324
|
+
created_at: Scalars['timestamptz']['output'];
|
|
325
|
+
id: Scalars['uuid']['output'];
|
|
326
|
+
metadata?: Maybe<Scalars['jsonb']['output']>;
|
|
327
|
+
/** An object relationship */
|
|
328
|
+
pipeline_run?: Maybe<Pipeline_Runs>;
|
|
329
|
+
pipeline_run_id?: Maybe<Scalars['uuid']['output']>;
|
|
330
|
+
tags: Array<Scalars['String']['output']>;
|
|
331
|
+
thumbnail_url?: Maybe<Scalars['String']['output']>;
|
|
332
|
+
type: Scalars['String']['output'];
|
|
333
|
+
url: Scalars['String']['output'];
|
|
334
|
+
};
|
|
335
|
+
/** columns and relationships of "assets" */
|
|
336
|
+
export type AssetsMetadataArgs = {
|
|
337
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
|
338
|
+
};
|
|
339
|
+
/** aggregated selection of "assets" */
|
|
340
|
+
export type Assets_Aggregate = {
|
|
341
|
+
__typename?: 'assets_aggregate';
|
|
342
|
+
aggregate?: Maybe<Assets_Aggregate_Fields>;
|
|
343
|
+
nodes: Array<Assets>;
|
|
344
|
+
};
|
|
345
|
+
export type Assets_Aggregate_Bool_Exp = {
|
|
346
|
+
count?: InputMaybe<Assets_Aggregate_Bool_Exp_Count>;
|
|
347
|
+
};
|
|
348
|
+
export type Assets_Aggregate_Bool_Exp_Count = {
|
|
349
|
+
arguments?: InputMaybe<Array<Assets_Select_Column>>;
|
|
350
|
+
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
351
|
+
filter?: InputMaybe<Assets_Bool_Exp>;
|
|
352
|
+
predicate: Int_Comparison_Exp;
|
|
353
|
+
};
|
|
354
|
+
/** aggregate fields of "assets" */
|
|
355
|
+
export type Assets_Aggregate_Fields = {
|
|
356
|
+
__typename?: 'assets_aggregate_fields';
|
|
357
|
+
count: Scalars['Int']['output'];
|
|
358
|
+
max?: Maybe<Assets_Max_Fields>;
|
|
359
|
+
min?: Maybe<Assets_Min_Fields>;
|
|
360
|
+
};
|
|
361
|
+
/** aggregate fields of "assets" */
|
|
362
|
+
export type Assets_Aggregate_FieldsCountArgs = {
|
|
363
|
+
columns?: InputMaybe<Array<Assets_Select_Column>>;
|
|
364
|
+
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
365
|
+
};
|
|
366
|
+
/** order by aggregate values of table "assets" */
|
|
367
|
+
export type Assets_Aggregate_Order_By = {
|
|
368
|
+
count?: InputMaybe<Order_By>;
|
|
369
|
+
max?: InputMaybe<Assets_Max_Order_By>;
|
|
370
|
+
min?: InputMaybe<Assets_Min_Order_By>;
|
|
371
|
+
};
|
|
372
|
+
/** Boolean expression to filter rows from the table "assets". All fields are combined with a logical 'AND'. */
|
|
373
|
+
export type Assets_Bool_Exp = {
|
|
374
|
+
_and?: InputMaybe<Array<Assets_Bool_Exp>>;
|
|
375
|
+
_not?: InputMaybe<Assets_Bool_Exp>;
|
|
376
|
+
_or?: InputMaybe<Array<Assets_Bool_Exp>>;
|
|
377
|
+
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
378
|
+
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
379
|
+
metadata?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
380
|
+
pipeline_run?: InputMaybe<Pipeline_Runs_Bool_Exp>;
|
|
381
|
+
pipeline_run_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
382
|
+
tags?: InputMaybe<String_Array_Comparison_Exp>;
|
|
383
|
+
thumbnail_url?: InputMaybe<String_Comparison_Exp>;
|
|
384
|
+
type?: InputMaybe<String_Comparison_Exp>;
|
|
385
|
+
url?: InputMaybe<String_Comparison_Exp>;
|
|
386
|
+
};
|
|
387
|
+
/** aggregate max on columns */
|
|
388
|
+
export type Assets_Max_Fields = {
|
|
389
|
+
__typename?: 'assets_max_fields';
|
|
390
|
+
created_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
391
|
+
id?: Maybe<Scalars['uuid']['output']>;
|
|
392
|
+
pipeline_run_id?: Maybe<Scalars['uuid']['output']>;
|
|
393
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
394
|
+
thumbnail_url?: Maybe<Scalars['String']['output']>;
|
|
395
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
396
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
397
|
+
};
|
|
398
|
+
/** order by max() on columns of table "assets" */
|
|
399
|
+
export type Assets_Max_Order_By = {
|
|
400
|
+
created_at?: InputMaybe<Order_By>;
|
|
401
|
+
id?: InputMaybe<Order_By>;
|
|
402
|
+
pipeline_run_id?: InputMaybe<Order_By>;
|
|
403
|
+
tags?: InputMaybe<Order_By>;
|
|
404
|
+
thumbnail_url?: InputMaybe<Order_By>;
|
|
405
|
+
type?: InputMaybe<Order_By>;
|
|
406
|
+
url?: InputMaybe<Order_By>;
|
|
407
|
+
};
|
|
408
|
+
/** aggregate min on columns */
|
|
409
|
+
export type Assets_Min_Fields = {
|
|
410
|
+
__typename?: 'assets_min_fields';
|
|
411
|
+
created_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
412
|
+
id?: Maybe<Scalars['uuid']['output']>;
|
|
413
|
+
pipeline_run_id?: Maybe<Scalars['uuid']['output']>;
|
|
414
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
415
|
+
thumbnail_url?: Maybe<Scalars['String']['output']>;
|
|
416
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
417
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
418
|
+
};
|
|
419
|
+
/** order by min() on columns of table "assets" */
|
|
420
|
+
export type Assets_Min_Order_By = {
|
|
421
|
+
created_at?: InputMaybe<Order_By>;
|
|
422
|
+
id?: InputMaybe<Order_By>;
|
|
423
|
+
pipeline_run_id?: InputMaybe<Order_By>;
|
|
424
|
+
tags?: InputMaybe<Order_By>;
|
|
425
|
+
thumbnail_url?: InputMaybe<Order_By>;
|
|
426
|
+
type?: InputMaybe<Order_By>;
|
|
427
|
+
url?: InputMaybe<Order_By>;
|
|
428
|
+
};
|
|
429
|
+
/** response of any mutation on the table "assets" */
|
|
430
|
+
export type Assets_Mutation_Response = {
|
|
431
|
+
__typename?: 'assets_mutation_response';
|
|
432
|
+
/** number of rows affected by the mutation */
|
|
433
|
+
affected_rows: Scalars['Int']['output'];
|
|
434
|
+
/** data from the rows affected by the mutation */
|
|
435
|
+
returning: Array<Assets>;
|
|
436
|
+
};
|
|
437
|
+
/** Ordering options when selecting data from "assets". */
|
|
438
|
+
export type Assets_Order_By = {
|
|
439
|
+
created_at?: InputMaybe<Order_By>;
|
|
440
|
+
id?: InputMaybe<Order_By>;
|
|
441
|
+
metadata?: InputMaybe<Order_By>;
|
|
442
|
+
pipeline_run?: InputMaybe<Pipeline_Runs_Order_By>;
|
|
443
|
+
pipeline_run_id?: InputMaybe<Order_By>;
|
|
444
|
+
tags?: InputMaybe<Order_By>;
|
|
445
|
+
thumbnail_url?: InputMaybe<Order_By>;
|
|
446
|
+
type?: InputMaybe<Order_By>;
|
|
447
|
+
url?: InputMaybe<Order_By>;
|
|
448
|
+
};
|
|
449
|
+
/** primary key columns input for table: assets */
|
|
450
|
+
export type Assets_Pk_Columns_Input = {
|
|
451
|
+
id: Scalars['uuid']['input'];
|
|
452
|
+
};
|
|
453
|
+
/** select columns of table "assets" */
|
|
454
|
+
export declare enum Assets_Select_Column {
|
|
455
|
+
/** column name */
|
|
456
|
+
CreatedAt = "created_at",
|
|
457
|
+
/** column name */
|
|
458
|
+
Id = "id",
|
|
459
|
+
/** column name */
|
|
460
|
+
Metadata = "metadata",
|
|
461
|
+
/** column name */
|
|
462
|
+
PipelineRunId = "pipeline_run_id",
|
|
463
|
+
/** column name */
|
|
464
|
+
Tags = "tags",
|
|
465
|
+
/** column name */
|
|
466
|
+
ThumbnailUrl = "thumbnail_url",
|
|
467
|
+
/** column name */
|
|
468
|
+
Type = "type",
|
|
469
|
+
/** column name */
|
|
470
|
+
Url = "url"
|
|
471
|
+
}
|
|
472
|
+
/** input type for updating data in table "assets" */
|
|
473
|
+
export type Assets_Set_Input = {
|
|
474
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
475
|
+
};
|
|
476
|
+
/** Streaming cursor of the table "assets" */
|
|
477
|
+
export type Assets_Stream_Cursor_Input = {
|
|
478
|
+
/** Stream column input with initial value */
|
|
479
|
+
initial_value: Assets_Stream_Cursor_Value_Input;
|
|
480
|
+
/** cursor ordering */
|
|
481
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
482
|
+
};
|
|
483
|
+
/** Initial value of the column from where the streaming should start */
|
|
484
|
+
export type Assets_Stream_Cursor_Value_Input = {
|
|
485
|
+
created_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
486
|
+
id?: InputMaybe<Scalars['uuid']['input']>;
|
|
487
|
+
metadata?: InputMaybe<Scalars['jsonb']['input']>;
|
|
488
|
+
pipeline_run_id?: InputMaybe<Scalars['uuid']['input']>;
|
|
489
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
490
|
+
thumbnail_url?: InputMaybe<Scalars['String']['input']>;
|
|
491
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
492
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
493
|
+
};
|
|
494
|
+
export type Assets_Updates = {
|
|
495
|
+
/** sets the columns of the filtered rows to the given values */
|
|
496
|
+
_set?: InputMaybe<Assets_Set_Input>;
|
|
497
|
+
/** filter the rows which have to be updated */
|
|
498
|
+
where: Assets_Bool_Exp;
|
|
499
|
+
};
|
|
500
|
+
export type Auth_Flow = {
|
|
501
|
+
__typename?: 'auth_flow';
|
|
502
|
+
csrf_token: Scalars['String']['output'];
|
|
503
|
+
id: Scalars['String']['output'];
|
|
504
|
+
};
|
|
505
|
+
export type Auth_Result = {
|
|
506
|
+
__typename?: 'auth_result';
|
|
507
|
+
message: Scalars['String']['output'];
|
|
508
|
+
success: Scalars['Boolean']['output'];
|
|
509
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
510
|
+
whop_affiliate_id?: Maybe<Scalars['String']['output']>;
|
|
511
|
+
};
|
|
512
|
+
/** Boolean expression to compare columns of type "bpchar". All fields are combined with logical 'AND'. */
|
|
513
|
+
export type Bpchar_Comparison_Exp = {
|
|
514
|
+
_eq?: InputMaybe<Scalars['bpchar']['input']>;
|
|
515
|
+
_gt?: InputMaybe<Scalars['bpchar']['input']>;
|
|
516
|
+
_gte?: InputMaybe<Scalars['bpchar']['input']>;
|
|
517
|
+
/** does the column match the given case-insensitive pattern */
|
|
518
|
+
_ilike?: InputMaybe<Scalars['bpchar']['input']>;
|
|
519
|
+
_in?: InputMaybe<Array<Scalars['bpchar']['input']>>;
|
|
520
|
+
/** does the column match the given POSIX regular expression, case insensitive */
|
|
521
|
+
_iregex?: InputMaybe<Scalars['bpchar']['input']>;
|
|
522
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
523
|
+
/** does the column match the given pattern */
|
|
524
|
+
_like?: InputMaybe<Scalars['bpchar']['input']>;
|
|
525
|
+
_lt?: InputMaybe<Scalars['bpchar']['input']>;
|
|
526
|
+
_lte?: InputMaybe<Scalars['bpchar']['input']>;
|
|
527
|
+
_neq?: InputMaybe<Scalars['bpchar']['input']>;
|
|
528
|
+
/** does the column NOT match the given case-insensitive pattern */
|
|
529
|
+
_nilike?: InputMaybe<Scalars['bpchar']['input']>;
|
|
530
|
+
_nin?: InputMaybe<Array<Scalars['bpchar']['input']>>;
|
|
531
|
+
/** does the column NOT match the given POSIX regular expression, case insensitive */
|
|
532
|
+
_niregex?: InputMaybe<Scalars['bpchar']['input']>;
|
|
533
|
+
/** does the column NOT match the given pattern */
|
|
534
|
+
_nlike?: InputMaybe<Scalars['bpchar']['input']>;
|
|
535
|
+
/** does the column NOT match the given POSIX regular expression, case sensitive */
|
|
536
|
+
_nregex?: InputMaybe<Scalars['bpchar']['input']>;
|
|
537
|
+
/** does the column NOT match the given SQL regular expression */
|
|
538
|
+
_nsimilar?: InputMaybe<Scalars['bpchar']['input']>;
|
|
539
|
+
/** does the column match the given POSIX regular expression, case sensitive */
|
|
540
|
+
_regex?: InputMaybe<Scalars['bpchar']['input']>;
|
|
541
|
+
/** does the column match the given SQL regular expression */
|
|
542
|
+
_similar?: InputMaybe<Scalars['bpchar']['input']>;
|
|
543
|
+
};
|
|
544
|
+
export type Create_Asset_Output = {
|
|
545
|
+
__typename?: 'create_asset_output';
|
|
546
|
+
created_at: Scalars['String']['output'];
|
|
547
|
+
id: Scalars['String']['output'];
|
|
548
|
+
tags: Array<Scalars['String']['output']>;
|
|
549
|
+
type: Scalars['String']['output'];
|
|
550
|
+
url: Scalars['String']['output'];
|
|
551
|
+
};
|
|
552
|
+
export type Create_Personal_Access_Token_Output = {
|
|
553
|
+
__typename?: 'create_personal_access_token_output';
|
|
554
|
+
expires_at: Scalars['String']['output'];
|
|
555
|
+
id: Scalars['String']['output'];
|
|
556
|
+
jti: Scalars['String']['output'];
|
|
557
|
+
success: Scalars['Boolean']['output'];
|
|
558
|
+
token: Scalars['String']['output'];
|
|
559
|
+
};
|
|
560
|
+
export type Credit_Balance_Output = {
|
|
561
|
+
__typename?: 'credit_balance_output';
|
|
562
|
+
available: Scalars['Int']['output'];
|
|
563
|
+
balance: Scalars['Int']['output'];
|
|
564
|
+
reserved: Scalars['Int']['output'];
|
|
565
|
+
};
|
|
566
|
+
export type Credit_History_Entry = {
|
|
567
|
+
__typename?: 'credit_history_entry';
|
|
568
|
+
amount: Scalars['Int']['output'];
|
|
569
|
+
created_at: Scalars['String']['output'];
|
|
570
|
+
description: Scalars['String']['output'];
|
|
571
|
+
type: Scalars['String']['output'];
|
|
572
|
+
};
|
|
573
|
+
/** columns and relationships of "credit_packs" */
|
|
574
|
+
export type Credit_Packs = {
|
|
575
|
+
__typename?: 'credit_packs';
|
|
576
|
+
credits: Scalars['Int']['output'];
|
|
577
|
+
id: Scalars['uuid']['output'];
|
|
578
|
+
name: Scalars['String']['output'];
|
|
579
|
+
price_cents: Scalars['Int']['output'];
|
|
580
|
+
slug: Scalars['String']['output'];
|
|
581
|
+
sort_order: Scalars['Int']['output'];
|
|
582
|
+
whop_plan_id?: Maybe<Scalars['String']['output']>;
|
|
583
|
+
};
|
|
584
|
+
/** Boolean expression to filter rows from the table "credit_packs". All fields are combined with a logical 'AND'. */
|
|
585
|
+
export type Credit_Packs_Bool_Exp = {
|
|
586
|
+
_and?: InputMaybe<Array<Credit_Packs_Bool_Exp>>;
|
|
587
|
+
_not?: InputMaybe<Credit_Packs_Bool_Exp>;
|
|
588
|
+
_or?: InputMaybe<Array<Credit_Packs_Bool_Exp>>;
|
|
589
|
+
credits?: InputMaybe<Int_Comparison_Exp>;
|
|
590
|
+
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
591
|
+
name?: InputMaybe<String_Comparison_Exp>;
|
|
592
|
+
price_cents?: InputMaybe<Int_Comparison_Exp>;
|
|
593
|
+
slug?: InputMaybe<String_Comparison_Exp>;
|
|
594
|
+
sort_order?: InputMaybe<Int_Comparison_Exp>;
|
|
595
|
+
whop_plan_id?: InputMaybe<String_Comparison_Exp>;
|
|
596
|
+
};
|
|
597
|
+
/** Ordering options when selecting data from "credit_packs". */
|
|
598
|
+
export type Credit_Packs_Order_By = {
|
|
599
|
+
credits?: InputMaybe<Order_By>;
|
|
600
|
+
id?: InputMaybe<Order_By>;
|
|
601
|
+
name?: InputMaybe<Order_By>;
|
|
602
|
+
price_cents?: InputMaybe<Order_By>;
|
|
603
|
+
slug?: InputMaybe<Order_By>;
|
|
604
|
+
sort_order?: InputMaybe<Order_By>;
|
|
605
|
+
whop_plan_id?: InputMaybe<Order_By>;
|
|
606
|
+
};
|
|
607
|
+
/** select columns of table "credit_packs" */
|
|
608
|
+
export declare enum Credit_Packs_Select_Column {
|
|
609
|
+
/** column name */
|
|
610
|
+
Credits = "credits",
|
|
611
|
+
/** column name */
|
|
612
|
+
Id = "id",
|
|
613
|
+
/** column name */
|
|
614
|
+
Name = "name",
|
|
615
|
+
/** column name */
|
|
616
|
+
PriceCents = "price_cents",
|
|
617
|
+
/** column name */
|
|
618
|
+
Slug = "slug",
|
|
619
|
+
/** column name */
|
|
620
|
+
SortOrder = "sort_order",
|
|
621
|
+
/** column name */
|
|
622
|
+
WhopPlanId = "whop_plan_id"
|
|
623
|
+
}
|
|
624
|
+
/** Streaming cursor of the table "credit_packs" */
|
|
625
|
+
export type Credit_Packs_Stream_Cursor_Input = {
|
|
626
|
+
/** Stream column input with initial value */
|
|
627
|
+
initial_value: Credit_Packs_Stream_Cursor_Value_Input;
|
|
628
|
+
/** cursor ordering */
|
|
629
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
630
|
+
};
|
|
631
|
+
/** Initial value of the column from where the streaming should start */
|
|
632
|
+
export type Credit_Packs_Stream_Cursor_Value_Input = {
|
|
633
|
+
credits?: InputMaybe<Scalars['Int']['input']>;
|
|
634
|
+
id?: InputMaybe<Scalars['uuid']['input']>;
|
|
635
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
636
|
+
price_cents?: InputMaybe<Scalars['Int']['input']>;
|
|
637
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
638
|
+
sort_order?: InputMaybe<Scalars['Int']['input']>;
|
|
639
|
+
whop_plan_id?: InputMaybe<Scalars['String']['input']>;
|
|
640
|
+
};
|
|
641
|
+
export type Current_User_Output = {
|
|
642
|
+
__typename?: 'current_user_output';
|
|
643
|
+
avatar_url?: Maybe<Scalars['String']['output']>;
|
|
644
|
+
email: Scalars['String']['output'];
|
|
645
|
+
email_verified: Scalars['Boolean']['output'];
|
|
646
|
+
id: Scalars['String']['output'];
|
|
647
|
+
name: Scalars['String']['output'];
|
|
648
|
+
};
|
|
649
|
+
/** ordering argument of a cursor */
|
|
650
|
+
export declare enum Cursor_Ordering {
|
|
651
|
+
/** ascending ordering of the cursor */
|
|
652
|
+
Asc = "ASC",
|
|
653
|
+
/** descending ordering of the cursor */
|
|
654
|
+
Desc = "DESC"
|
|
655
|
+
}
|
|
656
|
+
export type Delete_Asset_Output = {
|
|
657
|
+
__typename?: 'delete_asset_output';
|
|
658
|
+
success: Scalars['Boolean']['output'];
|
|
659
|
+
};
|
|
660
|
+
export type Ensure_Affiliate_Output = {
|
|
661
|
+
__typename?: 'ensure_affiliate_output';
|
|
662
|
+
affiliate_id: Scalars['String']['output'];
|
|
663
|
+
success: Scalars['Boolean']['output'];
|
|
664
|
+
};
|
|
665
|
+
/** columns and relationships of "executions_visibility" */
|
|
666
|
+
export type Executions_Visibility = {
|
|
667
|
+
__typename?: 'executions_visibility';
|
|
668
|
+
close_time?: Maybe<Scalars['timestamp']['output']>;
|
|
669
|
+
run_id: Scalars['bpchar']['output'];
|
|
670
|
+
start_time: Scalars['timestamp']['output'];
|
|
671
|
+
status: Scalars['Int']['output'];
|
|
672
|
+
task_queue: Scalars['String']['output'];
|
|
673
|
+
workflow_id: Scalars['String']['output'];
|
|
674
|
+
workflow_type_name: Scalars['String']['output'];
|
|
675
|
+
};
|
|
676
|
+
/** Boolean expression to filter rows from the table "executions_visibility". All fields are combined with a logical 'AND'. */
|
|
677
|
+
export type Executions_Visibility_Bool_Exp = {
|
|
678
|
+
_and?: InputMaybe<Array<Executions_Visibility_Bool_Exp>>;
|
|
679
|
+
_not?: InputMaybe<Executions_Visibility_Bool_Exp>;
|
|
680
|
+
_or?: InputMaybe<Array<Executions_Visibility_Bool_Exp>>;
|
|
681
|
+
close_time?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
682
|
+
run_id?: InputMaybe<Bpchar_Comparison_Exp>;
|
|
683
|
+
start_time?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
684
|
+
status?: InputMaybe<Int_Comparison_Exp>;
|
|
685
|
+
task_queue?: InputMaybe<String_Comparison_Exp>;
|
|
686
|
+
workflow_id?: InputMaybe<String_Comparison_Exp>;
|
|
687
|
+
workflow_type_name?: InputMaybe<String_Comparison_Exp>;
|
|
688
|
+
};
|
|
689
|
+
/** Ordering options when selecting data from "executions_visibility". */
|
|
690
|
+
export type Executions_Visibility_Order_By = {
|
|
691
|
+
close_time?: InputMaybe<Order_By>;
|
|
692
|
+
run_id?: InputMaybe<Order_By>;
|
|
693
|
+
start_time?: InputMaybe<Order_By>;
|
|
694
|
+
status?: InputMaybe<Order_By>;
|
|
695
|
+
task_queue?: InputMaybe<Order_By>;
|
|
696
|
+
workflow_id?: InputMaybe<Order_By>;
|
|
697
|
+
workflow_type_name?: InputMaybe<Order_By>;
|
|
698
|
+
};
|
|
699
|
+
/** select columns of table "executions_visibility" */
|
|
700
|
+
export declare enum Executions_Visibility_Select_Column {
|
|
701
|
+
/** column name */
|
|
702
|
+
CloseTime = "close_time",
|
|
703
|
+
/** column name */
|
|
704
|
+
RunId = "run_id",
|
|
705
|
+
/** column name */
|
|
706
|
+
StartTime = "start_time",
|
|
707
|
+
/** column name */
|
|
708
|
+
Status = "status",
|
|
709
|
+
/** column name */
|
|
710
|
+
TaskQueue = "task_queue",
|
|
711
|
+
/** column name */
|
|
712
|
+
WorkflowId = "workflow_id",
|
|
713
|
+
/** column name */
|
|
714
|
+
WorkflowTypeName = "workflow_type_name"
|
|
715
|
+
}
|
|
716
|
+
/** Streaming cursor of the table "executions_visibility" */
|
|
717
|
+
export type Executions_Visibility_Stream_Cursor_Input = {
|
|
718
|
+
/** Stream column input with initial value */
|
|
719
|
+
initial_value: Executions_Visibility_Stream_Cursor_Value_Input;
|
|
720
|
+
/** cursor ordering */
|
|
721
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
722
|
+
};
|
|
723
|
+
/** Initial value of the column from where the streaming should start */
|
|
724
|
+
export type Executions_Visibility_Stream_Cursor_Value_Input = {
|
|
725
|
+
close_time?: InputMaybe<Scalars['timestamp']['input']>;
|
|
726
|
+
run_id?: InputMaybe<Scalars['bpchar']['input']>;
|
|
727
|
+
start_time?: InputMaybe<Scalars['timestamp']['input']>;
|
|
728
|
+
status?: InputMaybe<Scalars['Int']['input']>;
|
|
729
|
+
task_queue?: InputMaybe<Scalars['String']['input']>;
|
|
730
|
+
workflow_id?: InputMaybe<Scalars['String']['input']>;
|
|
731
|
+
workflow_type_name?: InputMaybe<Scalars['String']['input']>;
|
|
732
|
+
};
|
|
733
|
+
export type Get_My_Referrals_Output = {
|
|
734
|
+
__typename?: 'get_my_referrals_output';
|
|
735
|
+
active_referrals: Scalars['Int']['output'];
|
|
736
|
+
referrals: Array<Referral_Entry>;
|
|
737
|
+
total_commission_cents: Scalars['Int']['output'];
|
|
738
|
+
total_referrals: Scalars['Int']['output'];
|
|
739
|
+
};
|
|
740
|
+
export type Jsonb_Cast_Exp = {
|
|
741
|
+
String?: InputMaybe<String_Comparison_Exp>;
|
|
742
|
+
};
|
|
743
|
+
/** Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. */
|
|
744
|
+
export type Jsonb_Comparison_Exp = {
|
|
745
|
+
_cast?: InputMaybe<Jsonb_Cast_Exp>;
|
|
746
|
+
/** is the column contained in the given json value */
|
|
747
|
+
_contained_in?: InputMaybe<Scalars['jsonb']['input']>;
|
|
748
|
+
/** does the column contain the given json value at the top level */
|
|
749
|
+
_contains?: InputMaybe<Scalars['jsonb']['input']>;
|
|
750
|
+
_eq?: InputMaybe<Scalars['jsonb']['input']>;
|
|
751
|
+
_gt?: InputMaybe<Scalars['jsonb']['input']>;
|
|
752
|
+
_gte?: InputMaybe<Scalars['jsonb']['input']>;
|
|
753
|
+
/** does the string exist as a top-level key in the column */
|
|
754
|
+
_has_key?: InputMaybe<Scalars['String']['input']>;
|
|
755
|
+
/** do all of these strings exist as top-level keys in the column */
|
|
756
|
+
_has_keys_all?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
757
|
+
/** do any of these strings exist as top-level keys in the column */
|
|
758
|
+
_has_keys_any?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
759
|
+
_in?: InputMaybe<Array<Scalars['jsonb']['input']>>;
|
|
760
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
761
|
+
_lt?: InputMaybe<Scalars['jsonb']['input']>;
|
|
762
|
+
_lte?: InputMaybe<Scalars['jsonb']['input']>;
|
|
763
|
+
_neq?: InputMaybe<Scalars['jsonb']['input']>;
|
|
764
|
+
_nin?: InputMaybe<Array<Scalars['jsonb']['input']>>;
|
|
765
|
+
};
|
|
766
|
+
/** mutation root */
|
|
767
|
+
export type Mutation_Root = {
|
|
768
|
+
__typename?: 'mutation_root';
|
|
769
|
+
/** Add a new primary affiliate code */
|
|
770
|
+
add_affiliate_code: Add_Affiliate_Code_Output;
|
|
771
|
+
/** Create an asset record after S3 upload */
|
|
772
|
+
create_asset: Create_Asset_Output;
|
|
773
|
+
/** Create a new personal access token for API/MCP authentication */
|
|
774
|
+
create_personal_access_token: Create_Personal_Access_Token_Output;
|
|
775
|
+
/** Delete an asset and its S3 object */
|
|
776
|
+
delete_asset: Delete_Asset_Output;
|
|
777
|
+
/** Create affiliate record and referral code for current user if missing */
|
|
778
|
+
ensure_affiliate: Ensure_Affiliate_Output;
|
|
779
|
+
/** Initiate Kratos login flow */
|
|
780
|
+
init_login_flow: Auth_Flow;
|
|
781
|
+
/** Initiate Kratos password recovery (forgot password) flow */
|
|
782
|
+
init_recovery_flow: Auth_Result;
|
|
783
|
+
/** Initiate Kratos signup (registration) flow */
|
|
784
|
+
init_signup_flow: Auth_Flow;
|
|
785
|
+
/** Initiate Kratos email verification flow */
|
|
786
|
+
init_verification_flow: Auth_Flow;
|
|
787
|
+
/** Generate presigned S3 PUT URL for direct browser uploads */
|
|
788
|
+
request_upload: Request_Upload_Output;
|
|
789
|
+
/** Revoke a personal access token */
|
|
790
|
+
revoke_personal_access_token: Revoke_Personal_Access_Token_Output;
|
|
791
|
+
/** Start a pipeline execution via Temporal workflow */
|
|
792
|
+
run_pipeline?: Maybe<Run_Pipeline_Output>;
|
|
793
|
+
/** Submit Kratos login credentials */
|
|
794
|
+
submit_login_flow: Auth_Result;
|
|
795
|
+
/** Submit Kratos password recovery (set new password) */
|
|
796
|
+
submit_recovery_flow: Auth_Result;
|
|
797
|
+
/** Submit Kratos signup (registration) form */
|
|
798
|
+
submit_signup_flow: Auth_Result;
|
|
799
|
+
/** Initiate OIDC social login flow and return provider redirect URL */
|
|
800
|
+
submit_social_login: Social_Login_Output;
|
|
801
|
+
/** Submit Kratos verification code */
|
|
802
|
+
submit_verification_code: Auth_Result;
|
|
803
|
+
/** update data of the table: "affiliate_codes" */
|
|
804
|
+
update_affiliate_codes?: Maybe<Affiliate_Codes_Mutation_Response>;
|
|
805
|
+
/** update single row of the table: "affiliate_codes" */
|
|
806
|
+
update_affiliate_codes_by_pk?: Maybe<Affiliate_Codes>;
|
|
807
|
+
/** update multiples rows of table: "affiliate_codes" */
|
|
808
|
+
update_affiliate_codes_many?: Maybe<Array<Maybe<Affiliate_Codes_Mutation_Response>>>;
|
|
809
|
+
/** update data of the table: "assets" */
|
|
810
|
+
update_assets?: Maybe<Assets_Mutation_Response>;
|
|
811
|
+
/** update single row of the table: "assets" */
|
|
812
|
+
update_assets_by_pk?: Maybe<Assets>;
|
|
813
|
+
/** update multiples rows of table: "assets" */
|
|
814
|
+
update_assets_many?: Maybe<Array<Maybe<Assets_Mutation_Response>>>;
|
|
815
|
+
};
|
|
816
|
+
/** mutation root */
|
|
817
|
+
export type Mutation_RootAdd_Affiliate_CodeArgs = {
|
|
818
|
+
code: Scalars['String']['input'];
|
|
819
|
+
redirect_path?: InputMaybe<Scalars['String']['input']>;
|
|
820
|
+
};
|
|
821
|
+
/** mutation root */
|
|
822
|
+
export type Mutation_RootCreate_AssetArgs = {
|
|
823
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
824
|
+
type: Scalars['String']['input'];
|
|
825
|
+
url: Scalars['String']['input'];
|
|
826
|
+
};
|
|
827
|
+
/** mutation root */
|
|
828
|
+
export type Mutation_RootCreate_Personal_Access_TokenArgs = {
|
|
829
|
+
name: Scalars['String']['input'];
|
|
830
|
+
};
|
|
831
|
+
/** mutation root */
|
|
832
|
+
export type Mutation_RootDelete_AssetArgs = {
|
|
833
|
+
id: Scalars['uuid']['input'];
|
|
834
|
+
};
|
|
835
|
+
/** mutation root */
|
|
836
|
+
export type Mutation_RootInit_Recovery_FlowArgs = {
|
|
837
|
+
email: Scalars['String']['input'];
|
|
838
|
+
};
|
|
839
|
+
/** mutation root */
|
|
840
|
+
export type Mutation_RootInit_Verification_FlowArgs = {
|
|
841
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
842
|
+
};
|
|
843
|
+
/** mutation root */
|
|
844
|
+
export type Mutation_RootRequest_UploadArgs = {
|
|
845
|
+
content_type: Scalars['String']['input'];
|
|
846
|
+
filename: Scalars['String']['input'];
|
|
847
|
+
};
|
|
848
|
+
/** mutation root */
|
|
849
|
+
export type Mutation_RootRevoke_Personal_Access_TokenArgs = {
|
|
850
|
+
id: Scalars['uuid']['input'];
|
|
851
|
+
};
|
|
852
|
+
/** mutation root */
|
|
853
|
+
export type Mutation_RootRun_PipelineArgs = {
|
|
854
|
+
input: Scalars['jsonb']['input'];
|
|
855
|
+
pipeline_slug: Scalars['String']['input'];
|
|
856
|
+
};
|
|
857
|
+
/** mutation root */
|
|
858
|
+
export type Mutation_RootSubmit_Login_FlowArgs = {
|
|
859
|
+
csrf_token: Scalars['String']['input'];
|
|
860
|
+
email: Scalars['String']['input'];
|
|
861
|
+
flowId: Scalars['String']['input'];
|
|
862
|
+
password: Scalars['String']['input'];
|
|
863
|
+
referral_code?: InputMaybe<Scalars['String']['input']>;
|
|
864
|
+
};
|
|
865
|
+
/** mutation root */
|
|
866
|
+
export type Mutation_RootSubmit_Recovery_FlowArgs = {
|
|
867
|
+
csrf_token: Scalars['String']['input'];
|
|
868
|
+
flowId: Scalars['String']['input'];
|
|
869
|
+
password: Scalars['String']['input'];
|
|
870
|
+
};
|
|
871
|
+
/** mutation root */
|
|
872
|
+
export type Mutation_RootSubmit_Signup_FlowArgs = {
|
|
873
|
+
csrf_token: Scalars['String']['input'];
|
|
874
|
+
email: Scalars['String']['input'];
|
|
875
|
+
flowId: Scalars['String']['input'];
|
|
876
|
+
name: Scalars['String']['input'];
|
|
877
|
+
password: Scalars['String']['input'];
|
|
878
|
+
};
|
|
879
|
+
/** mutation root */
|
|
880
|
+
export type Mutation_RootSubmit_Social_LoginArgs = {
|
|
881
|
+
provider: Scalars['String']['input'];
|
|
882
|
+
};
|
|
883
|
+
/** mutation root */
|
|
884
|
+
export type Mutation_RootSubmit_Verification_CodeArgs = {
|
|
885
|
+
code: Scalars['String']['input'];
|
|
886
|
+
csrf_token: Scalars['String']['input'];
|
|
887
|
+
flowId: Scalars['String']['input'];
|
|
888
|
+
};
|
|
889
|
+
/** mutation root */
|
|
890
|
+
export type Mutation_RootUpdate_Affiliate_CodesArgs = {
|
|
891
|
+
_set?: InputMaybe<Affiliate_Codes_Set_Input>;
|
|
892
|
+
where: Affiliate_Codes_Bool_Exp;
|
|
893
|
+
};
|
|
894
|
+
/** mutation root */
|
|
895
|
+
export type Mutation_RootUpdate_Affiliate_Codes_By_PkArgs = {
|
|
896
|
+
_set?: InputMaybe<Affiliate_Codes_Set_Input>;
|
|
897
|
+
pk_columns: Affiliate_Codes_Pk_Columns_Input;
|
|
898
|
+
};
|
|
899
|
+
/** mutation root */
|
|
900
|
+
export type Mutation_RootUpdate_Affiliate_Codes_ManyArgs = {
|
|
901
|
+
updates: Array<Affiliate_Codes_Updates>;
|
|
902
|
+
};
|
|
903
|
+
/** mutation root */
|
|
904
|
+
export type Mutation_RootUpdate_AssetsArgs = {
|
|
905
|
+
_set?: InputMaybe<Assets_Set_Input>;
|
|
906
|
+
where: Assets_Bool_Exp;
|
|
907
|
+
};
|
|
908
|
+
/** mutation root */
|
|
909
|
+
export type Mutation_RootUpdate_Assets_By_PkArgs = {
|
|
910
|
+
_set?: InputMaybe<Assets_Set_Input>;
|
|
911
|
+
pk_columns: Assets_Pk_Columns_Input;
|
|
912
|
+
};
|
|
913
|
+
/** mutation root */
|
|
914
|
+
export type Mutation_RootUpdate_Assets_ManyArgs = {
|
|
915
|
+
updates: Array<Assets_Updates>;
|
|
916
|
+
};
|
|
917
|
+
/** column ordering options */
|
|
918
|
+
export declare enum Order_By {
|
|
919
|
+
/** in ascending order, nulls last */
|
|
920
|
+
Asc = "asc",
|
|
921
|
+
/** in ascending order, nulls first */
|
|
922
|
+
AscNullsFirst = "asc_nulls_first",
|
|
923
|
+
/** in ascending order, nulls last */
|
|
924
|
+
AscNullsLast = "asc_nulls_last",
|
|
925
|
+
/** in descending order, nulls first */
|
|
926
|
+
Desc = "desc",
|
|
927
|
+
/** in descending order, nulls first */
|
|
928
|
+
DescNullsFirst = "desc_nulls_first",
|
|
929
|
+
/** in descending order, nulls last */
|
|
930
|
+
DescNullsLast = "desc_nulls_last"
|
|
931
|
+
}
|
|
932
|
+
/** columns and relationships of "personal_access_tokens" */
|
|
933
|
+
export type Personal_Access_Tokens = {
|
|
934
|
+
__typename?: 'personal_access_tokens';
|
|
935
|
+
created_at: Scalars['timestamptz']['output'];
|
|
936
|
+
expires_at: Scalars['timestamptz']['output'];
|
|
937
|
+
id: Scalars['uuid']['output'];
|
|
938
|
+
last_used_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
939
|
+
name: Scalars['String']['output'];
|
|
940
|
+
revoked_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
941
|
+
scopes: Array<Scalars['String']['output']>;
|
|
942
|
+
};
|
|
943
|
+
/** Boolean expression to filter rows from the table "personal_access_tokens". All fields are combined with a logical 'AND'. */
|
|
944
|
+
export type Personal_Access_Tokens_Bool_Exp = {
|
|
945
|
+
_and?: InputMaybe<Array<Personal_Access_Tokens_Bool_Exp>>;
|
|
946
|
+
_not?: InputMaybe<Personal_Access_Tokens_Bool_Exp>;
|
|
947
|
+
_or?: InputMaybe<Array<Personal_Access_Tokens_Bool_Exp>>;
|
|
948
|
+
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
949
|
+
expires_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
950
|
+
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
951
|
+
last_used_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
952
|
+
name?: InputMaybe<String_Comparison_Exp>;
|
|
953
|
+
revoked_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
954
|
+
scopes?: InputMaybe<String_Array_Comparison_Exp>;
|
|
955
|
+
};
|
|
956
|
+
/** Ordering options when selecting data from "personal_access_tokens". */
|
|
957
|
+
export type Personal_Access_Tokens_Order_By = {
|
|
958
|
+
created_at?: InputMaybe<Order_By>;
|
|
959
|
+
expires_at?: InputMaybe<Order_By>;
|
|
960
|
+
id?: InputMaybe<Order_By>;
|
|
961
|
+
last_used_at?: InputMaybe<Order_By>;
|
|
962
|
+
name?: InputMaybe<Order_By>;
|
|
963
|
+
revoked_at?: InputMaybe<Order_By>;
|
|
964
|
+
scopes?: InputMaybe<Order_By>;
|
|
965
|
+
};
|
|
966
|
+
/** select columns of table "personal_access_tokens" */
|
|
967
|
+
export declare enum Personal_Access_Tokens_Select_Column {
|
|
968
|
+
/** column name */
|
|
969
|
+
CreatedAt = "created_at",
|
|
970
|
+
/** column name */
|
|
971
|
+
ExpiresAt = "expires_at",
|
|
972
|
+
/** column name */
|
|
973
|
+
Id = "id",
|
|
974
|
+
/** column name */
|
|
975
|
+
LastUsedAt = "last_used_at",
|
|
976
|
+
/** column name */
|
|
977
|
+
Name = "name",
|
|
978
|
+
/** column name */
|
|
979
|
+
RevokedAt = "revoked_at",
|
|
980
|
+
/** column name */
|
|
981
|
+
Scopes = "scopes"
|
|
982
|
+
}
|
|
983
|
+
/** Streaming cursor of the table "personal_access_tokens" */
|
|
984
|
+
export type Personal_Access_Tokens_Stream_Cursor_Input = {
|
|
985
|
+
/** Stream column input with initial value */
|
|
986
|
+
initial_value: Personal_Access_Tokens_Stream_Cursor_Value_Input;
|
|
987
|
+
/** cursor ordering */
|
|
988
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
989
|
+
};
|
|
990
|
+
/** Initial value of the column from where the streaming should start */
|
|
991
|
+
export type Personal_Access_Tokens_Stream_Cursor_Value_Input = {
|
|
992
|
+
created_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
993
|
+
expires_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
994
|
+
id?: InputMaybe<Scalars['uuid']['input']>;
|
|
995
|
+
last_used_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
996
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
997
|
+
revoked_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
998
|
+
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
999
|
+
};
|
|
1000
|
+
/** columns and relationships of "pipeline_runs" */
|
|
1001
|
+
export type Pipeline_Runs = {
|
|
1002
|
+
__typename?: 'pipeline_runs';
|
|
1003
|
+
/** An array relationship */
|
|
1004
|
+
assets: Array<Assets>;
|
|
1005
|
+
/** An aggregate relationship */
|
|
1006
|
+
assets_aggregate: Assets_Aggregate;
|
|
1007
|
+
completed_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
1008
|
+
created_at: Scalars['timestamptz']['output'];
|
|
1009
|
+
credits_charged?: Maybe<Scalars['Int']['output']>;
|
|
1010
|
+
error_message?: Maybe<Scalars['String']['output']>;
|
|
1011
|
+
id: Scalars['uuid']['output'];
|
|
1012
|
+
input: Scalars['jsonb']['output'];
|
|
1013
|
+
output?: Maybe<Scalars['jsonb']['output']>;
|
|
1014
|
+
/** An object relationship */
|
|
1015
|
+
pipeline: Pipelines;
|
|
1016
|
+
pipeline_id: Scalars['uuid']['output'];
|
|
1017
|
+
started_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
1018
|
+
status: Scalars['String']['output'];
|
|
1019
|
+
temporal_workflow_id?: Maybe<Scalars['String']['output']>;
|
|
1020
|
+
workflow_execution?: Maybe<Executions_Visibility>;
|
|
1021
|
+
};
|
|
1022
|
+
/** columns and relationships of "pipeline_runs" */
|
|
1023
|
+
export type Pipeline_RunsAssetsArgs = {
|
|
1024
|
+
distinct_on?: InputMaybe<Array<Assets_Select_Column>>;
|
|
1025
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1026
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1027
|
+
order_by?: InputMaybe<Array<Assets_Order_By>>;
|
|
1028
|
+
where?: InputMaybe<Assets_Bool_Exp>;
|
|
1029
|
+
};
|
|
1030
|
+
/** columns and relationships of "pipeline_runs" */
|
|
1031
|
+
export type Pipeline_RunsAssets_AggregateArgs = {
|
|
1032
|
+
distinct_on?: InputMaybe<Array<Assets_Select_Column>>;
|
|
1033
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1034
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1035
|
+
order_by?: InputMaybe<Array<Assets_Order_By>>;
|
|
1036
|
+
where?: InputMaybe<Assets_Bool_Exp>;
|
|
1037
|
+
};
|
|
1038
|
+
/** columns and relationships of "pipeline_runs" */
|
|
1039
|
+
export type Pipeline_RunsInputArgs = {
|
|
1040
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
|
1041
|
+
};
|
|
1042
|
+
/** columns and relationships of "pipeline_runs" */
|
|
1043
|
+
export type Pipeline_RunsOutputArgs = {
|
|
1044
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
|
1045
|
+
};
|
|
1046
|
+
/** aggregated selection of "pipeline_runs" */
|
|
1047
|
+
export type Pipeline_Runs_Aggregate = {
|
|
1048
|
+
__typename?: 'pipeline_runs_aggregate';
|
|
1049
|
+
aggregate?: Maybe<Pipeline_Runs_Aggregate_Fields>;
|
|
1050
|
+
nodes: Array<Pipeline_Runs>;
|
|
1051
|
+
};
|
|
1052
|
+
/** aggregate fields of "pipeline_runs" */
|
|
1053
|
+
export type Pipeline_Runs_Aggregate_Fields = {
|
|
1054
|
+
__typename?: 'pipeline_runs_aggregate_fields';
|
|
1055
|
+
avg?: Maybe<Pipeline_Runs_Avg_Fields>;
|
|
1056
|
+
count: Scalars['Int']['output'];
|
|
1057
|
+
max?: Maybe<Pipeline_Runs_Max_Fields>;
|
|
1058
|
+
min?: Maybe<Pipeline_Runs_Min_Fields>;
|
|
1059
|
+
stddev?: Maybe<Pipeline_Runs_Stddev_Fields>;
|
|
1060
|
+
stddev_pop?: Maybe<Pipeline_Runs_Stddev_Pop_Fields>;
|
|
1061
|
+
stddev_samp?: Maybe<Pipeline_Runs_Stddev_Samp_Fields>;
|
|
1062
|
+
sum?: Maybe<Pipeline_Runs_Sum_Fields>;
|
|
1063
|
+
var_pop?: Maybe<Pipeline_Runs_Var_Pop_Fields>;
|
|
1064
|
+
var_samp?: Maybe<Pipeline_Runs_Var_Samp_Fields>;
|
|
1065
|
+
variance?: Maybe<Pipeline_Runs_Variance_Fields>;
|
|
1066
|
+
};
|
|
1067
|
+
/** aggregate fields of "pipeline_runs" */
|
|
1068
|
+
export type Pipeline_Runs_Aggregate_FieldsCountArgs = {
|
|
1069
|
+
columns?: InputMaybe<Array<Pipeline_Runs_Select_Column>>;
|
|
1070
|
+
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1071
|
+
};
|
|
1072
|
+
/** aggregate avg on columns */
|
|
1073
|
+
export type Pipeline_Runs_Avg_Fields = {
|
|
1074
|
+
__typename?: 'pipeline_runs_avg_fields';
|
|
1075
|
+
credits_charged?: Maybe<Scalars['Float']['output']>;
|
|
1076
|
+
};
|
|
1077
|
+
/** Boolean expression to filter rows from the table "pipeline_runs". All fields are combined with a logical 'AND'. */
|
|
1078
|
+
export type Pipeline_Runs_Bool_Exp = {
|
|
1079
|
+
_and?: InputMaybe<Array<Pipeline_Runs_Bool_Exp>>;
|
|
1080
|
+
_not?: InputMaybe<Pipeline_Runs_Bool_Exp>;
|
|
1081
|
+
_or?: InputMaybe<Array<Pipeline_Runs_Bool_Exp>>;
|
|
1082
|
+
assets?: InputMaybe<Assets_Bool_Exp>;
|
|
1083
|
+
assets_aggregate?: InputMaybe<Assets_Aggregate_Bool_Exp>;
|
|
1084
|
+
completed_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1085
|
+
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1086
|
+
credits_charged?: InputMaybe<Int_Comparison_Exp>;
|
|
1087
|
+
error_message?: InputMaybe<String_Comparison_Exp>;
|
|
1088
|
+
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1089
|
+
input?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1090
|
+
output?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1091
|
+
pipeline?: InputMaybe<Pipelines_Bool_Exp>;
|
|
1092
|
+
pipeline_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1093
|
+
started_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1094
|
+
status?: InputMaybe<String_Comparison_Exp>;
|
|
1095
|
+
temporal_workflow_id?: InputMaybe<String_Comparison_Exp>;
|
|
1096
|
+
};
|
|
1097
|
+
/** aggregate max on columns */
|
|
1098
|
+
export type Pipeline_Runs_Max_Fields = {
|
|
1099
|
+
__typename?: 'pipeline_runs_max_fields';
|
|
1100
|
+
completed_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
1101
|
+
created_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
1102
|
+
credits_charged?: Maybe<Scalars['Int']['output']>;
|
|
1103
|
+
error_message?: Maybe<Scalars['String']['output']>;
|
|
1104
|
+
id?: Maybe<Scalars['uuid']['output']>;
|
|
1105
|
+
pipeline_id?: Maybe<Scalars['uuid']['output']>;
|
|
1106
|
+
started_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
1107
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
1108
|
+
temporal_workflow_id?: Maybe<Scalars['String']['output']>;
|
|
1109
|
+
};
|
|
1110
|
+
/** aggregate min on columns */
|
|
1111
|
+
export type Pipeline_Runs_Min_Fields = {
|
|
1112
|
+
__typename?: 'pipeline_runs_min_fields';
|
|
1113
|
+
completed_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
1114
|
+
created_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
1115
|
+
credits_charged?: Maybe<Scalars['Int']['output']>;
|
|
1116
|
+
error_message?: Maybe<Scalars['String']['output']>;
|
|
1117
|
+
id?: Maybe<Scalars['uuid']['output']>;
|
|
1118
|
+
pipeline_id?: Maybe<Scalars['uuid']['output']>;
|
|
1119
|
+
started_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
1120
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
1121
|
+
temporal_workflow_id?: Maybe<Scalars['String']['output']>;
|
|
1122
|
+
};
|
|
1123
|
+
/** Ordering options when selecting data from "pipeline_runs". */
|
|
1124
|
+
export type Pipeline_Runs_Order_By = {
|
|
1125
|
+
assets_aggregate?: InputMaybe<Assets_Aggregate_Order_By>;
|
|
1126
|
+
completed_at?: InputMaybe<Order_By>;
|
|
1127
|
+
created_at?: InputMaybe<Order_By>;
|
|
1128
|
+
credits_charged?: InputMaybe<Order_By>;
|
|
1129
|
+
error_message?: InputMaybe<Order_By>;
|
|
1130
|
+
id?: InputMaybe<Order_By>;
|
|
1131
|
+
input?: InputMaybe<Order_By>;
|
|
1132
|
+
output?: InputMaybe<Order_By>;
|
|
1133
|
+
pipeline?: InputMaybe<Pipelines_Order_By>;
|
|
1134
|
+
pipeline_id?: InputMaybe<Order_By>;
|
|
1135
|
+
started_at?: InputMaybe<Order_By>;
|
|
1136
|
+
status?: InputMaybe<Order_By>;
|
|
1137
|
+
temporal_workflow_id?: InputMaybe<Order_By>;
|
|
1138
|
+
};
|
|
1139
|
+
/** select columns of table "pipeline_runs" */
|
|
1140
|
+
export declare enum Pipeline_Runs_Select_Column {
|
|
1141
|
+
/** column name */
|
|
1142
|
+
CompletedAt = "completed_at",
|
|
1143
|
+
/** column name */
|
|
1144
|
+
CreatedAt = "created_at",
|
|
1145
|
+
/** column name */
|
|
1146
|
+
CreditsCharged = "credits_charged",
|
|
1147
|
+
/** column name */
|
|
1148
|
+
ErrorMessage = "error_message",
|
|
1149
|
+
/** column name */
|
|
1150
|
+
Id = "id",
|
|
1151
|
+
/** column name */
|
|
1152
|
+
Input = "input",
|
|
1153
|
+
/** column name */
|
|
1154
|
+
Output = "output",
|
|
1155
|
+
/** column name */
|
|
1156
|
+
PipelineId = "pipeline_id",
|
|
1157
|
+
/** column name */
|
|
1158
|
+
StartedAt = "started_at",
|
|
1159
|
+
/** column name */
|
|
1160
|
+
Status = "status",
|
|
1161
|
+
/** column name */
|
|
1162
|
+
TemporalWorkflowId = "temporal_workflow_id"
|
|
1163
|
+
}
|
|
1164
|
+
/** aggregate stddev on columns */
|
|
1165
|
+
export type Pipeline_Runs_Stddev_Fields = {
|
|
1166
|
+
__typename?: 'pipeline_runs_stddev_fields';
|
|
1167
|
+
credits_charged?: Maybe<Scalars['Float']['output']>;
|
|
1168
|
+
};
|
|
1169
|
+
/** aggregate stddev_pop on columns */
|
|
1170
|
+
export type Pipeline_Runs_Stddev_Pop_Fields = {
|
|
1171
|
+
__typename?: 'pipeline_runs_stddev_pop_fields';
|
|
1172
|
+
credits_charged?: Maybe<Scalars['Float']['output']>;
|
|
1173
|
+
};
|
|
1174
|
+
/** aggregate stddev_samp on columns */
|
|
1175
|
+
export type Pipeline_Runs_Stddev_Samp_Fields = {
|
|
1176
|
+
__typename?: 'pipeline_runs_stddev_samp_fields';
|
|
1177
|
+
credits_charged?: Maybe<Scalars['Float']['output']>;
|
|
1178
|
+
};
|
|
1179
|
+
/** Streaming cursor of the table "pipeline_runs" */
|
|
1180
|
+
export type Pipeline_Runs_Stream_Cursor_Input = {
|
|
1181
|
+
/** Stream column input with initial value */
|
|
1182
|
+
initial_value: Pipeline_Runs_Stream_Cursor_Value_Input;
|
|
1183
|
+
/** cursor ordering */
|
|
1184
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
1185
|
+
};
|
|
1186
|
+
/** Initial value of the column from where the streaming should start */
|
|
1187
|
+
export type Pipeline_Runs_Stream_Cursor_Value_Input = {
|
|
1188
|
+
completed_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1189
|
+
created_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1190
|
+
credits_charged?: InputMaybe<Scalars['Int']['input']>;
|
|
1191
|
+
error_message?: InputMaybe<Scalars['String']['input']>;
|
|
1192
|
+
id?: InputMaybe<Scalars['uuid']['input']>;
|
|
1193
|
+
input?: InputMaybe<Scalars['jsonb']['input']>;
|
|
1194
|
+
output?: InputMaybe<Scalars['jsonb']['input']>;
|
|
1195
|
+
pipeline_id?: InputMaybe<Scalars['uuid']['input']>;
|
|
1196
|
+
started_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1197
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
1198
|
+
temporal_workflow_id?: InputMaybe<Scalars['String']['input']>;
|
|
1199
|
+
};
|
|
1200
|
+
/** aggregate sum on columns */
|
|
1201
|
+
export type Pipeline_Runs_Sum_Fields = {
|
|
1202
|
+
__typename?: 'pipeline_runs_sum_fields';
|
|
1203
|
+
credits_charged?: Maybe<Scalars['Int']['output']>;
|
|
1204
|
+
};
|
|
1205
|
+
/** aggregate var_pop on columns */
|
|
1206
|
+
export type Pipeline_Runs_Var_Pop_Fields = {
|
|
1207
|
+
__typename?: 'pipeline_runs_var_pop_fields';
|
|
1208
|
+
credits_charged?: Maybe<Scalars['Float']['output']>;
|
|
1209
|
+
};
|
|
1210
|
+
/** aggregate var_samp on columns */
|
|
1211
|
+
export type Pipeline_Runs_Var_Samp_Fields = {
|
|
1212
|
+
__typename?: 'pipeline_runs_var_samp_fields';
|
|
1213
|
+
credits_charged?: Maybe<Scalars['Float']['output']>;
|
|
1214
|
+
};
|
|
1215
|
+
/** aggregate variance on columns */
|
|
1216
|
+
export type Pipeline_Runs_Variance_Fields = {
|
|
1217
|
+
__typename?: 'pipeline_runs_variance_fields';
|
|
1218
|
+
credits_charged?: Maybe<Scalars['Float']['output']>;
|
|
1219
|
+
};
|
|
1220
|
+
/** columns and relationships of "pipelines" */
|
|
1221
|
+
export type Pipelines = {
|
|
1222
|
+
__typename?: 'pipelines';
|
|
1223
|
+
category: Scalars['String']['output'];
|
|
1224
|
+
credit_cost: Scalars['Int']['output'];
|
|
1225
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1226
|
+
icon_url?: Maybe<Scalars['String']['output']>;
|
|
1227
|
+
id: Scalars['uuid']['output'];
|
|
1228
|
+
input_schema: Scalars['jsonb']['output'];
|
|
1229
|
+
name: Scalars['String']['output'];
|
|
1230
|
+
output_schema: Scalars['jsonb']['output'];
|
|
1231
|
+
preview_url?: Maybe<Scalars['String']['output']>;
|
|
1232
|
+
required_providers: Array<Scalars['String']['output']>;
|
|
1233
|
+
seo_content?: Maybe<Scalars['String']['output']>;
|
|
1234
|
+
seo_faq?: Maybe<Scalars['jsonb']['output']>;
|
|
1235
|
+
slug: Scalars['String']['output'];
|
|
1236
|
+
sort_order: Scalars['Int']['output'];
|
|
1237
|
+
ui_schema: Scalars['jsonb']['output'];
|
|
1238
|
+
};
|
|
1239
|
+
/** columns and relationships of "pipelines" */
|
|
1240
|
+
export type PipelinesInput_SchemaArgs = {
|
|
1241
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
|
1242
|
+
};
|
|
1243
|
+
/** columns and relationships of "pipelines" */
|
|
1244
|
+
export type PipelinesOutput_SchemaArgs = {
|
|
1245
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
|
1246
|
+
};
|
|
1247
|
+
/** columns and relationships of "pipelines" */
|
|
1248
|
+
export type PipelinesSeo_FaqArgs = {
|
|
1249
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
|
1250
|
+
};
|
|
1251
|
+
/** columns and relationships of "pipelines" */
|
|
1252
|
+
export type PipelinesUi_SchemaArgs = {
|
|
1253
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
|
1254
|
+
};
|
|
1255
|
+
/** Boolean expression to filter rows from the table "pipelines". All fields are combined with a logical 'AND'. */
|
|
1256
|
+
export type Pipelines_Bool_Exp = {
|
|
1257
|
+
_and?: InputMaybe<Array<Pipelines_Bool_Exp>>;
|
|
1258
|
+
_not?: InputMaybe<Pipelines_Bool_Exp>;
|
|
1259
|
+
_or?: InputMaybe<Array<Pipelines_Bool_Exp>>;
|
|
1260
|
+
category?: InputMaybe<String_Comparison_Exp>;
|
|
1261
|
+
credit_cost?: InputMaybe<Int_Comparison_Exp>;
|
|
1262
|
+
description?: InputMaybe<String_Comparison_Exp>;
|
|
1263
|
+
icon_url?: InputMaybe<String_Comparison_Exp>;
|
|
1264
|
+
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1265
|
+
input_schema?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1266
|
+
name?: InputMaybe<String_Comparison_Exp>;
|
|
1267
|
+
output_schema?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1268
|
+
preview_url?: InputMaybe<String_Comparison_Exp>;
|
|
1269
|
+
required_providers?: InputMaybe<String_Array_Comparison_Exp>;
|
|
1270
|
+
seo_content?: InputMaybe<String_Comparison_Exp>;
|
|
1271
|
+
seo_faq?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1272
|
+
slug?: InputMaybe<String_Comparison_Exp>;
|
|
1273
|
+
sort_order?: InputMaybe<Int_Comparison_Exp>;
|
|
1274
|
+
ui_schema?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1275
|
+
};
|
|
1276
|
+
/** Ordering options when selecting data from "pipelines". */
|
|
1277
|
+
export type Pipelines_Order_By = {
|
|
1278
|
+
category?: InputMaybe<Order_By>;
|
|
1279
|
+
credit_cost?: InputMaybe<Order_By>;
|
|
1280
|
+
description?: InputMaybe<Order_By>;
|
|
1281
|
+
icon_url?: InputMaybe<Order_By>;
|
|
1282
|
+
id?: InputMaybe<Order_By>;
|
|
1283
|
+
input_schema?: InputMaybe<Order_By>;
|
|
1284
|
+
name?: InputMaybe<Order_By>;
|
|
1285
|
+
output_schema?: InputMaybe<Order_By>;
|
|
1286
|
+
preview_url?: InputMaybe<Order_By>;
|
|
1287
|
+
required_providers?: InputMaybe<Order_By>;
|
|
1288
|
+
seo_content?: InputMaybe<Order_By>;
|
|
1289
|
+
seo_faq?: InputMaybe<Order_By>;
|
|
1290
|
+
slug?: InputMaybe<Order_By>;
|
|
1291
|
+
sort_order?: InputMaybe<Order_By>;
|
|
1292
|
+
ui_schema?: InputMaybe<Order_By>;
|
|
1293
|
+
};
|
|
1294
|
+
/** select columns of table "pipelines" */
|
|
1295
|
+
export declare enum Pipelines_Select_Column {
|
|
1296
|
+
/** column name */
|
|
1297
|
+
Category = "category",
|
|
1298
|
+
/** column name */
|
|
1299
|
+
CreditCost = "credit_cost",
|
|
1300
|
+
/** column name */
|
|
1301
|
+
Description = "description",
|
|
1302
|
+
/** column name */
|
|
1303
|
+
IconUrl = "icon_url",
|
|
1304
|
+
/** column name */
|
|
1305
|
+
Id = "id",
|
|
1306
|
+
/** column name */
|
|
1307
|
+
InputSchema = "input_schema",
|
|
1308
|
+
/** column name */
|
|
1309
|
+
Name = "name",
|
|
1310
|
+
/** column name */
|
|
1311
|
+
OutputSchema = "output_schema",
|
|
1312
|
+
/** column name */
|
|
1313
|
+
PreviewUrl = "preview_url",
|
|
1314
|
+
/** column name */
|
|
1315
|
+
RequiredProviders = "required_providers",
|
|
1316
|
+
/** column name */
|
|
1317
|
+
SeoContent = "seo_content",
|
|
1318
|
+
/** column name */
|
|
1319
|
+
SeoFaq = "seo_faq",
|
|
1320
|
+
/** column name */
|
|
1321
|
+
Slug = "slug",
|
|
1322
|
+
/** column name */
|
|
1323
|
+
SortOrder = "sort_order",
|
|
1324
|
+
/** column name */
|
|
1325
|
+
UiSchema = "ui_schema"
|
|
1326
|
+
}
|
|
1327
|
+
/** Streaming cursor of the table "pipelines" */
|
|
1328
|
+
export type Pipelines_Stream_Cursor_Input = {
|
|
1329
|
+
/** Stream column input with initial value */
|
|
1330
|
+
initial_value: Pipelines_Stream_Cursor_Value_Input;
|
|
1331
|
+
/** cursor ordering */
|
|
1332
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
1333
|
+
};
|
|
1334
|
+
/** Initial value of the column from where the streaming should start */
|
|
1335
|
+
export type Pipelines_Stream_Cursor_Value_Input = {
|
|
1336
|
+
category?: InputMaybe<Scalars['String']['input']>;
|
|
1337
|
+
credit_cost?: InputMaybe<Scalars['Int']['input']>;
|
|
1338
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1339
|
+
icon_url?: InputMaybe<Scalars['String']['input']>;
|
|
1340
|
+
id?: InputMaybe<Scalars['uuid']['input']>;
|
|
1341
|
+
input_schema?: InputMaybe<Scalars['jsonb']['input']>;
|
|
1342
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1343
|
+
output_schema?: InputMaybe<Scalars['jsonb']['input']>;
|
|
1344
|
+
preview_url?: InputMaybe<Scalars['String']['input']>;
|
|
1345
|
+
required_providers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1346
|
+
seo_content?: InputMaybe<Scalars['String']['input']>;
|
|
1347
|
+
seo_faq?: InputMaybe<Scalars['jsonb']['input']>;
|
|
1348
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
1349
|
+
sort_order?: InputMaybe<Scalars['Int']['input']>;
|
|
1350
|
+
ui_schema?: InputMaybe<Scalars['jsonb']['input']>;
|
|
1351
|
+
};
|
|
1352
|
+
/** columns and relationships of "plans" */
|
|
1353
|
+
export type Plans = {
|
|
1354
|
+
__typename?: 'plans';
|
|
1355
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1356
|
+
features: Scalars['jsonb']['output'];
|
|
1357
|
+
id: Scalars['uuid']['output'];
|
|
1358
|
+
monthly_credits: Scalars['Int']['output'];
|
|
1359
|
+
name: Scalars['String']['output'];
|
|
1360
|
+
price_cents: Scalars['Int']['output'];
|
|
1361
|
+
slug: Scalars['String']['output'];
|
|
1362
|
+
sort_order: Scalars['Int']['output'];
|
|
1363
|
+
whop_plan_id?: Maybe<Scalars['String']['output']>;
|
|
1364
|
+
};
|
|
1365
|
+
/** columns and relationships of "plans" */
|
|
1366
|
+
export type PlansFeaturesArgs = {
|
|
1367
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
|
1368
|
+
};
|
|
1369
|
+
/** Boolean expression to filter rows from the table "plans". All fields are combined with a logical 'AND'. */
|
|
1370
|
+
export type Plans_Bool_Exp = {
|
|
1371
|
+
_and?: InputMaybe<Array<Plans_Bool_Exp>>;
|
|
1372
|
+
_not?: InputMaybe<Plans_Bool_Exp>;
|
|
1373
|
+
_or?: InputMaybe<Array<Plans_Bool_Exp>>;
|
|
1374
|
+
description?: InputMaybe<String_Comparison_Exp>;
|
|
1375
|
+
features?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1376
|
+
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1377
|
+
monthly_credits?: InputMaybe<Int_Comparison_Exp>;
|
|
1378
|
+
name?: InputMaybe<String_Comparison_Exp>;
|
|
1379
|
+
price_cents?: InputMaybe<Int_Comparison_Exp>;
|
|
1380
|
+
slug?: InputMaybe<String_Comparison_Exp>;
|
|
1381
|
+
sort_order?: InputMaybe<Int_Comparison_Exp>;
|
|
1382
|
+
whop_plan_id?: InputMaybe<String_Comparison_Exp>;
|
|
1383
|
+
};
|
|
1384
|
+
/** Ordering options when selecting data from "plans". */
|
|
1385
|
+
export type Plans_Order_By = {
|
|
1386
|
+
description?: InputMaybe<Order_By>;
|
|
1387
|
+
features?: InputMaybe<Order_By>;
|
|
1388
|
+
id?: InputMaybe<Order_By>;
|
|
1389
|
+
monthly_credits?: InputMaybe<Order_By>;
|
|
1390
|
+
name?: InputMaybe<Order_By>;
|
|
1391
|
+
price_cents?: InputMaybe<Order_By>;
|
|
1392
|
+
slug?: InputMaybe<Order_By>;
|
|
1393
|
+
sort_order?: InputMaybe<Order_By>;
|
|
1394
|
+
whop_plan_id?: InputMaybe<Order_By>;
|
|
1395
|
+
};
|
|
1396
|
+
/** select columns of table "plans" */
|
|
1397
|
+
export declare enum Plans_Select_Column {
|
|
1398
|
+
/** column name */
|
|
1399
|
+
Description = "description",
|
|
1400
|
+
/** column name */
|
|
1401
|
+
Features = "features",
|
|
1402
|
+
/** column name */
|
|
1403
|
+
Id = "id",
|
|
1404
|
+
/** column name */
|
|
1405
|
+
MonthlyCredits = "monthly_credits",
|
|
1406
|
+
/** column name */
|
|
1407
|
+
Name = "name",
|
|
1408
|
+
/** column name */
|
|
1409
|
+
PriceCents = "price_cents",
|
|
1410
|
+
/** column name */
|
|
1411
|
+
Slug = "slug",
|
|
1412
|
+
/** column name */
|
|
1413
|
+
SortOrder = "sort_order",
|
|
1414
|
+
/** column name */
|
|
1415
|
+
WhopPlanId = "whop_plan_id"
|
|
1416
|
+
}
|
|
1417
|
+
/** Streaming cursor of the table "plans" */
|
|
1418
|
+
export type Plans_Stream_Cursor_Input = {
|
|
1419
|
+
/** Stream column input with initial value */
|
|
1420
|
+
initial_value: Plans_Stream_Cursor_Value_Input;
|
|
1421
|
+
/** cursor ordering */
|
|
1422
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
1423
|
+
};
|
|
1424
|
+
/** Initial value of the column from where the streaming should start */
|
|
1425
|
+
export type Plans_Stream_Cursor_Value_Input = {
|
|
1426
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1427
|
+
features?: InputMaybe<Scalars['jsonb']['input']>;
|
|
1428
|
+
id?: InputMaybe<Scalars['uuid']['input']>;
|
|
1429
|
+
monthly_credits?: InputMaybe<Scalars['Int']['input']>;
|
|
1430
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1431
|
+
price_cents?: InputMaybe<Scalars['Int']['input']>;
|
|
1432
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
1433
|
+
sort_order?: InputMaybe<Scalars['Int']['input']>;
|
|
1434
|
+
whop_plan_id?: InputMaybe<Scalars['String']['input']>;
|
|
1435
|
+
};
|
|
1436
|
+
export type Query_Root = {
|
|
1437
|
+
__typename?: 'query_root';
|
|
1438
|
+
/** fetch data from the table: "affiliate_codes" */
|
|
1439
|
+
affiliate_codes: Array<Affiliate_Codes>;
|
|
1440
|
+
/** fetch data from the table: "affiliate_codes" using primary key columns */
|
|
1441
|
+
affiliate_codes_by_pk?: Maybe<Affiliate_Codes>;
|
|
1442
|
+
/** fetch data from the table: "affiliates" */
|
|
1443
|
+
affiliates: Array<Affiliates>;
|
|
1444
|
+
/** fetch data from the table: "affiliates" using primary key columns */
|
|
1445
|
+
affiliates_by_pk?: Maybe<Affiliates>;
|
|
1446
|
+
/** An array relationship */
|
|
1447
|
+
assets: Array<Assets>;
|
|
1448
|
+
/** An aggregate relationship */
|
|
1449
|
+
assets_aggregate: Assets_Aggregate;
|
|
1450
|
+
/** fetch data from the table: "assets" using primary key columns */
|
|
1451
|
+
assets_by_pk?: Maybe<Assets>;
|
|
1452
|
+
/** fetch data from the table: "credit_packs" */
|
|
1453
|
+
credit_packs: Array<Credit_Packs>;
|
|
1454
|
+
/** fetch data from the table: "credit_packs" using primary key columns */
|
|
1455
|
+
credit_packs_by_pk?: Maybe<Credit_Packs>;
|
|
1456
|
+
/** Get currently authenticated user from JWT claims */
|
|
1457
|
+
current_user: Current_User_Output;
|
|
1458
|
+
/** fetch data from the table: "executions_visibility" */
|
|
1459
|
+
executions_visibility: Array<Executions_Visibility>;
|
|
1460
|
+
/** Get user credit balance from TigerBeetle */
|
|
1461
|
+
get_credit_balance?: Maybe<Credit_Balance_Output>;
|
|
1462
|
+
/** Get user credit transaction history from TigerBeetle */
|
|
1463
|
+
get_credit_history: Array<Credit_History_Entry>;
|
|
1464
|
+
/** Get affiliate referral stats and referred users */
|
|
1465
|
+
get_my_referrals: Get_My_Referrals_Output;
|
|
1466
|
+
/** fetch data from the table: "personal_access_tokens" */
|
|
1467
|
+
personal_access_tokens: Array<Personal_Access_Tokens>;
|
|
1468
|
+
/** fetch data from the table: "personal_access_tokens" using primary key columns */
|
|
1469
|
+
personal_access_tokens_by_pk?: Maybe<Personal_Access_Tokens>;
|
|
1470
|
+
/** fetch data from the table: "pipeline_runs" */
|
|
1471
|
+
pipeline_runs: Array<Pipeline_Runs>;
|
|
1472
|
+
/** fetch aggregated fields from the table: "pipeline_runs" */
|
|
1473
|
+
pipeline_runs_aggregate: Pipeline_Runs_Aggregate;
|
|
1474
|
+
/** fetch data from the table: "pipeline_runs" using primary key columns */
|
|
1475
|
+
pipeline_runs_by_pk?: Maybe<Pipeline_Runs>;
|
|
1476
|
+
/** fetch data from the table: "pipelines" */
|
|
1477
|
+
pipelines: Array<Pipelines>;
|
|
1478
|
+
/** fetch data from the table: "pipelines" using primary key columns */
|
|
1479
|
+
pipelines_by_pk?: Maybe<Pipelines>;
|
|
1480
|
+
/** fetch data from the table: "plans" */
|
|
1481
|
+
plans: Array<Plans>;
|
|
1482
|
+
/** fetch data from the table: "plans" using primary key columns */
|
|
1483
|
+
plans_by_pk?: Maybe<Plans>;
|
|
1484
|
+
/** fetch data from the table: "subscriptions" */
|
|
1485
|
+
subscriptions: Array<Subscriptions>;
|
|
1486
|
+
/** fetch data from the table: "subscriptions" using primary key columns */
|
|
1487
|
+
subscriptions_by_pk?: Maybe<Subscriptions>;
|
|
1488
|
+
};
|
|
1489
|
+
export type Query_RootAffiliate_CodesArgs = {
|
|
1490
|
+
distinct_on?: InputMaybe<Array<Affiliate_Codes_Select_Column>>;
|
|
1491
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1492
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1493
|
+
order_by?: InputMaybe<Array<Affiliate_Codes_Order_By>>;
|
|
1494
|
+
where?: InputMaybe<Affiliate_Codes_Bool_Exp>;
|
|
1495
|
+
};
|
|
1496
|
+
export type Query_RootAffiliate_Codes_By_PkArgs = {
|
|
1497
|
+
id: Scalars['uuid']['input'];
|
|
1498
|
+
};
|
|
1499
|
+
export type Query_RootAffiliatesArgs = {
|
|
1500
|
+
distinct_on?: InputMaybe<Array<Affiliates_Select_Column>>;
|
|
1501
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1502
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1503
|
+
order_by?: InputMaybe<Array<Affiliates_Order_By>>;
|
|
1504
|
+
where?: InputMaybe<Affiliates_Bool_Exp>;
|
|
1505
|
+
};
|
|
1506
|
+
export type Query_RootAffiliates_By_PkArgs = {
|
|
1507
|
+
id: Scalars['uuid']['input'];
|
|
1508
|
+
};
|
|
1509
|
+
export type Query_RootAssetsArgs = {
|
|
1510
|
+
distinct_on?: InputMaybe<Array<Assets_Select_Column>>;
|
|
1511
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1512
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1513
|
+
order_by?: InputMaybe<Array<Assets_Order_By>>;
|
|
1514
|
+
where?: InputMaybe<Assets_Bool_Exp>;
|
|
1515
|
+
};
|
|
1516
|
+
export type Query_RootAssets_AggregateArgs = {
|
|
1517
|
+
distinct_on?: InputMaybe<Array<Assets_Select_Column>>;
|
|
1518
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1519
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1520
|
+
order_by?: InputMaybe<Array<Assets_Order_By>>;
|
|
1521
|
+
where?: InputMaybe<Assets_Bool_Exp>;
|
|
1522
|
+
};
|
|
1523
|
+
export type Query_RootAssets_By_PkArgs = {
|
|
1524
|
+
id: Scalars['uuid']['input'];
|
|
1525
|
+
};
|
|
1526
|
+
export type Query_RootCredit_PacksArgs = {
|
|
1527
|
+
distinct_on?: InputMaybe<Array<Credit_Packs_Select_Column>>;
|
|
1528
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1529
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1530
|
+
order_by?: InputMaybe<Array<Credit_Packs_Order_By>>;
|
|
1531
|
+
where?: InputMaybe<Credit_Packs_Bool_Exp>;
|
|
1532
|
+
};
|
|
1533
|
+
export type Query_RootCredit_Packs_By_PkArgs = {
|
|
1534
|
+
id: Scalars['uuid']['input'];
|
|
1535
|
+
};
|
|
1536
|
+
export type Query_RootExecutions_VisibilityArgs = {
|
|
1537
|
+
distinct_on?: InputMaybe<Array<Executions_Visibility_Select_Column>>;
|
|
1538
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1539
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1540
|
+
order_by?: InputMaybe<Array<Executions_Visibility_Order_By>>;
|
|
1541
|
+
where?: InputMaybe<Executions_Visibility_Bool_Exp>;
|
|
1542
|
+
};
|
|
1543
|
+
export type Query_RootPersonal_Access_TokensArgs = {
|
|
1544
|
+
distinct_on?: InputMaybe<Array<Personal_Access_Tokens_Select_Column>>;
|
|
1545
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1546
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1547
|
+
order_by?: InputMaybe<Array<Personal_Access_Tokens_Order_By>>;
|
|
1548
|
+
where?: InputMaybe<Personal_Access_Tokens_Bool_Exp>;
|
|
1549
|
+
};
|
|
1550
|
+
export type Query_RootPersonal_Access_Tokens_By_PkArgs = {
|
|
1551
|
+
id: Scalars['uuid']['input'];
|
|
1552
|
+
};
|
|
1553
|
+
export type Query_RootPipeline_RunsArgs = {
|
|
1554
|
+
distinct_on?: InputMaybe<Array<Pipeline_Runs_Select_Column>>;
|
|
1555
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1556
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1557
|
+
order_by?: InputMaybe<Array<Pipeline_Runs_Order_By>>;
|
|
1558
|
+
where?: InputMaybe<Pipeline_Runs_Bool_Exp>;
|
|
1559
|
+
};
|
|
1560
|
+
export type Query_RootPipeline_Runs_AggregateArgs = {
|
|
1561
|
+
distinct_on?: InputMaybe<Array<Pipeline_Runs_Select_Column>>;
|
|
1562
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1563
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1564
|
+
order_by?: InputMaybe<Array<Pipeline_Runs_Order_By>>;
|
|
1565
|
+
where?: InputMaybe<Pipeline_Runs_Bool_Exp>;
|
|
1566
|
+
};
|
|
1567
|
+
export type Query_RootPipeline_Runs_By_PkArgs = {
|
|
1568
|
+
id: Scalars['uuid']['input'];
|
|
1569
|
+
};
|
|
1570
|
+
export type Query_RootPipelinesArgs = {
|
|
1571
|
+
distinct_on?: InputMaybe<Array<Pipelines_Select_Column>>;
|
|
1572
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1573
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1574
|
+
order_by?: InputMaybe<Array<Pipelines_Order_By>>;
|
|
1575
|
+
where?: InputMaybe<Pipelines_Bool_Exp>;
|
|
1576
|
+
};
|
|
1577
|
+
export type Query_RootPipelines_By_PkArgs = {
|
|
1578
|
+
id: Scalars['uuid']['input'];
|
|
1579
|
+
};
|
|
1580
|
+
export type Query_RootPlansArgs = {
|
|
1581
|
+
distinct_on?: InputMaybe<Array<Plans_Select_Column>>;
|
|
1582
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1583
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1584
|
+
order_by?: InputMaybe<Array<Plans_Order_By>>;
|
|
1585
|
+
where?: InputMaybe<Plans_Bool_Exp>;
|
|
1586
|
+
};
|
|
1587
|
+
export type Query_RootPlans_By_PkArgs = {
|
|
1588
|
+
id: Scalars['uuid']['input'];
|
|
1589
|
+
};
|
|
1590
|
+
export type Query_RootSubscriptionsArgs = {
|
|
1591
|
+
distinct_on?: InputMaybe<Array<Subscriptions_Select_Column>>;
|
|
1592
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1593
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1594
|
+
order_by?: InputMaybe<Array<Subscriptions_Order_By>>;
|
|
1595
|
+
where?: InputMaybe<Subscriptions_Bool_Exp>;
|
|
1596
|
+
};
|
|
1597
|
+
export type Query_RootSubscriptions_By_PkArgs = {
|
|
1598
|
+
id: Scalars['uuid']['input'];
|
|
1599
|
+
};
|
|
1600
|
+
export type Referral_Entry = {
|
|
1601
|
+
__typename?: 'referral_entry';
|
|
1602
|
+
commission_cents: Scalars['Int']['output'];
|
|
1603
|
+
email: Scalars['String']['output'];
|
|
1604
|
+
name: Scalars['String']['output'];
|
|
1605
|
+
plan_name: Scalars['String']['output'];
|
|
1606
|
+
signed_up_at: Scalars['String']['output'];
|
|
1607
|
+
subscription_status: Scalars['String']['output'];
|
|
1608
|
+
user_id: Scalars['String']['output'];
|
|
1609
|
+
};
|
|
1610
|
+
export type Request_Upload_Output = {
|
|
1611
|
+
__typename?: 'request_upload_output';
|
|
1612
|
+
asset_url: Scalars['String']['output'];
|
|
1613
|
+
key: Scalars['String']['output'];
|
|
1614
|
+
upload_url: Scalars['String']['output'];
|
|
1615
|
+
};
|
|
1616
|
+
export type Revoke_Personal_Access_Token_Output = {
|
|
1617
|
+
__typename?: 'revoke_personal_access_token_output';
|
|
1618
|
+
revoked_at: Scalars['String']['output'];
|
|
1619
|
+
success: Scalars['Boolean']['output'];
|
|
1620
|
+
};
|
|
1621
|
+
export type Run_Pipeline_Output = {
|
|
1622
|
+
__typename?: 'run_pipeline_output';
|
|
1623
|
+
run_id: Scalars['String']['output'];
|
|
1624
|
+
workflow_id: Scalars['String']['output'];
|
|
1625
|
+
};
|
|
1626
|
+
export type Social_Login_Output = {
|
|
1627
|
+
__typename?: 'social_login_output';
|
|
1628
|
+
redirect_url: Scalars['String']['output'];
|
|
1629
|
+
success: Scalars['Boolean']['output'];
|
|
1630
|
+
};
|
|
1631
|
+
export type Subscription_Root = {
|
|
1632
|
+
__typename?: 'subscription_root';
|
|
1633
|
+
/** fetch data from the table: "affiliate_codes" */
|
|
1634
|
+
affiliate_codes: Array<Affiliate_Codes>;
|
|
1635
|
+
/** fetch data from the table: "affiliate_codes" using primary key columns */
|
|
1636
|
+
affiliate_codes_by_pk?: Maybe<Affiliate_Codes>;
|
|
1637
|
+
/** fetch data from the table in a streaming manner: "affiliate_codes" */
|
|
1638
|
+
affiliate_codes_stream: Array<Affiliate_Codes>;
|
|
1639
|
+
/** fetch data from the table: "affiliates" */
|
|
1640
|
+
affiliates: Array<Affiliates>;
|
|
1641
|
+
/** fetch data from the table: "affiliates" using primary key columns */
|
|
1642
|
+
affiliates_by_pk?: Maybe<Affiliates>;
|
|
1643
|
+
/** fetch data from the table in a streaming manner: "affiliates" */
|
|
1644
|
+
affiliates_stream: Array<Affiliates>;
|
|
1645
|
+
/** An array relationship */
|
|
1646
|
+
assets: Array<Assets>;
|
|
1647
|
+
/** An aggregate relationship */
|
|
1648
|
+
assets_aggregate: Assets_Aggregate;
|
|
1649
|
+
/** fetch data from the table: "assets" using primary key columns */
|
|
1650
|
+
assets_by_pk?: Maybe<Assets>;
|
|
1651
|
+
/** fetch data from the table in a streaming manner: "assets" */
|
|
1652
|
+
assets_stream: Array<Assets>;
|
|
1653
|
+
/** fetch data from the table: "credit_packs" */
|
|
1654
|
+
credit_packs: Array<Credit_Packs>;
|
|
1655
|
+
/** fetch data from the table: "credit_packs" using primary key columns */
|
|
1656
|
+
credit_packs_by_pk?: Maybe<Credit_Packs>;
|
|
1657
|
+
/** fetch data from the table in a streaming manner: "credit_packs" */
|
|
1658
|
+
credit_packs_stream: Array<Credit_Packs>;
|
|
1659
|
+
/** fetch data from the table: "executions_visibility" */
|
|
1660
|
+
executions_visibility: Array<Executions_Visibility>;
|
|
1661
|
+
/** fetch data from the table in a streaming manner: "executions_visibility" */
|
|
1662
|
+
executions_visibility_stream: Array<Executions_Visibility>;
|
|
1663
|
+
/** fetch data from the table: "personal_access_tokens" */
|
|
1664
|
+
personal_access_tokens: Array<Personal_Access_Tokens>;
|
|
1665
|
+
/** fetch data from the table: "personal_access_tokens" using primary key columns */
|
|
1666
|
+
personal_access_tokens_by_pk?: Maybe<Personal_Access_Tokens>;
|
|
1667
|
+
/** fetch data from the table in a streaming manner: "personal_access_tokens" */
|
|
1668
|
+
personal_access_tokens_stream: Array<Personal_Access_Tokens>;
|
|
1669
|
+
/** fetch data from the table: "pipeline_runs" */
|
|
1670
|
+
pipeline_runs: Array<Pipeline_Runs>;
|
|
1671
|
+
/** fetch aggregated fields from the table: "pipeline_runs" */
|
|
1672
|
+
pipeline_runs_aggregate: Pipeline_Runs_Aggregate;
|
|
1673
|
+
/** fetch data from the table: "pipeline_runs" using primary key columns */
|
|
1674
|
+
pipeline_runs_by_pk?: Maybe<Pipeline_Runs>;
|
|
1675
|
+
/** fetch data from the table in a streaming manner: "pipeline_runs" */
|
|
1676
|
+
pipeline_runs_stream: Array<Pipeline_Runs>;
|
|
1677
|
+
/** fetch data from the table: "pipelines" */
|
|
1678
|
+
pipelines: Array<Pipelines>;
|
|
1679
|
+
/** fetch data from the table: "pipelines" using primary key columns */
|
|
1680
|
+
pipelines_by_pk?: Maybe<Pipelines>;
|
|
1681
|
+
/** fetch data from the table in a streaming manner: "pipelines" */
|
|
1682
|
+
pipelines_stream: Array<Pipelines>;
|
|
1683
|
+
/** fetch data from the table: "plans" */
|
|
1684
|
+
plans: Array<Plans>;
|
|
1685
|
+
/** fetch data from the table: "plans" using primary key columns */
|
|
1686
|
+
plans_by_pk?: Maybe<Plans>;
|
|
1687
|
+
/** fetch data from the table in a streaming manner: "plans" */
|
|
1688
|
+
plans_stream: Array<Plans>;
|
|
1689
|
+
/** fetch data from the table: "subscriptions" */
|
|
1690
|
+
subscriptions: Array<Subscriptions>;
|
|
1691
|
+
/** fetch data from the table: "subscriptions" using primary key columns */
|
|
1692
|
+
subscriptions_by_pk?: Maybe<Subscriptions>;
|
|
1693
|
+
/** fetch data from the table in a streaming manner: "subscriptions" */
|
|
1694
|
+
subscriptions_stream: Array<Subscriptions>;
|
|
1695
|
+
};
|
|
1696
|
+
export type Subscription_RootAffiliate_CodesArgs = {
|
|
1697
|
+
distinct_on?: InputMaybe<Array<Affiliate_Codes_Select_Column>>;
|
|
1698
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1699
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1700
|
+
order_by?: InputMaybe<Array<Affiliate_Codes_Order_By>>;
|
|
1701
|
+
where?: InputMaybe<Affiliate_Codes_Bool_Exp>;
|
|
1702
|
+
};
|
|
1703
|
+
export type Subscription_RootAffiliate_Codes_By_PkArgs = {
|
|
1704
|
+
id: Scalars['uuid']['input'];
|
|
1705
|
+
};
|
|
1706
|
+
export type Subscription_RootAffiliate_Codes_StreamArgs = {
|
|
1707
|
+
batch_size: Scalars['Int']['input'];
|
|
1708
|
+
cursor: Array<InputMaybe<Affiliate_Codes_Stream_Cursor_Input>>;
|
|
1709
|
+
where?: InputMaybe<Affiliate_Codes_Bool_Exp>;
|
|
1710
|
+
};
|
|
1711
|
+
export type Subscription_RootAffiliatesArgs = {
|
|
1712
|
+
distinct_on?: InputMaybe<Array<Affiliates_Select_Column>>;
|
|
1713
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1714
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1715
|
+
order_by?: InputMaybe<Array<Affiliates_Order_By>>;
|
|
1716
|
+
where?: InputMaybe<Affiliates_Bool_Exp>;
|
|
1717
|
+
};
|
|
1718
|
+
export type Subscription_RootAffiliates_By_PkArgs = {
|
|
1719
|
+
id: Scalars['uuid']['input'];
|
|
1720
|
+
};
|
|
1721
|
+
export type Subscription_RootAffiliates_StreamArgs = {
|
|
1722
|
+
batch_size: Scalars['Int']['input'];
|
|
1723
|
+
cursor: Array<InputMaybe<Affiliates_Stream_Cursor_Input>>;
|
|
1724
|
+
where?: InputMaybe<Affiliates_Bool_Exp>;
|
|
1725
|
+
};
|
|
1726
|
+
export type Subscription_RootAssetsArgs = {
|
|
1727
|
+
distinct_on?: InputMaybe<Array<Assets_Select_Column>>;
|
|
1728
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1729
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1730
|
+
order_by?: InputMaybe<Array<Assets_Order_By>>;
|
|
1731
|
+
where?: InputMaybe<Assets_Bool_Exp>;
|
|
1732
|
+
};
|
|
1733
|
+
export type Subscription_RootAssets_AggregateArgs = {
|
|
1734
|
+
distinct_on?: InputMaybe<Array<Assets_Select_Column>>;
|
|
1735
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1736
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1737
|
+
order_by?: InputMaybe<Array<Assets_Order_By>>;
|
|
1738
|
+
where?: InputMaybe<Assets_Bool_Exp>;
|
|
1739
|
+
};
|
|
1740
|
+
export type Subscription_RootAssets_By_PkArgs = {
|
|
1741
|
+
id: Scalars['uuid']['input'];
|
|
1742
|
+
};
|
|
1743
|
+
export type Subscription_RootAssets_StreamArgs = {
|
|
1744
|
+
batch_size: Scalars['Int']['input'];
|
|
1745
|
+
cursor: Array<InputMaybe<Assets_Stream_Cursor_Input>>;
|
|
1746
|
+
where?: InputMaybe<Assets_Bool_Exp>;
|
|
1747
|
+
};
|
|
1748
|
+
export type Subscription_RootCredit_PacksArgs = {
|
|
1749
|
+
distinct_on?: InputMaybe<Array<Credit_Packs_Select_Column>>;
|
|
1750
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1751
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1752
|
+
order_by?: InputMaybe<Array<Credit_Packs_Order_By>>;
|
|
1753
|
+
where?: InputMaybe<Credit_Packs_Bool_Exp>;
|
|
1754
|
+
};
|
|
1755
|
+
export type Subscription_RootCredit_Packs_By_PkArgs = {
|
|
1756
|
+
id: Scalars['uuid']['input'];
|
|
1757
|
+
};
|
|
1758
|
+
export type Subscription_RootCredit_Packs_StreamArgs = {
|
|
1759
|
+
batch_size: Scalars['Int']['input'];
|
|
1760
|
+
cursor: Array<InputMaybe<Credit_Packs_Stream_Cursor_Input>>;
|
|
1761
|
+
where?: InputMaybe<Credit_Packs_Bool_Exp>;
|
|
1762
|
+
};
|
|
1763
|
+
export type Subscription_RootExecutions_VisibilityArgs = {
|
|
1764
|
+
distinct_on?: InputMaybe<Array<Executions_Visibility_Select_Column>>;
|
|
1765
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1766
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1767
|
+
order_by?: InputMaybe<Array<Executions_Visibility_Order_By>>;
|
|
1768
|
+
where?: InputMaybe<Executions_Visibility_Bool_Exp>;
|
|
1769
|
+
};
|
|
1770
|
+
export type Subscription_RootExecutions_Visibility_StreamArgs = {
|
|
1771
|
+
batch_size: Scalars['Int']['input'];
|
|
1772
|
+
cursor: Array<InputMaybe<Executions_Visibility_Stream_Cursor_Input>>;
|
|
1773
|
+
where?: InputMaybe<Executions_Visibility_Bool_Exp>;
|
|
1774
|
+
};
|
|
1775
|
+
export type Subscription_RootPersonal_Access_TokensArgs = {
|
|
1776
|
+
distinct_on?: InputMaybe<Array<Personal_Access_Tokens_Select_Column>>;
|
|
1777
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1778
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1779
|
+
order_by?: InputMaybe<Array<Personal_Access_Tokens_Order_By>>;
|
|
1780
|
+
where?: InputMaybe<Personal_Access_Tokens_Bool_Exp>;
|
|
1781
|
+
};
|
|
1782
|
+
export type Subscription_RootPersonal_Access_Tokens_By_PkArgs = {
|
|
1783
|
+
id: Scalars['uuid']['input'];
|
|
1784
|
+
};
|
|
1785
|
+
export type Subscription_RootPersonal_Access_Tokens_StreamArgs = {
|
|
1786
|
+
batch_size: Scalars['Int']['input'];
|
|
1787
|
+
cursor: Array<InputMaybe<Personal_Access_Tokens_Stream_Cursor_Input>>;
|
|
1788
|
+
where?: InputMaybe<Personal_Access_Tokens_Bool_Exp>;
|
|
1789
|
+
};
|
|
1790
|
+
export type Subscription_RootPipeline_RunsArgs = {
|
|
1791
|
+
distinct_on?: InputMaybe<Array<Pipeline_Runs_Select_Column>>;
|
|
1792
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1793
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1794
|
+
order_by?: InputMaybe<Array<Pipeline_Runs_Order_By>>;
|
|
1795
|
+
where?: InputMaybe<Pipeline_Runs_Bool_Exp>;
|
|
1796
|
+
};
|
|
1797
|
+
export type Subscription_RootPipeline_Runs_AggregateArgs = {
|
|
1798
|
+
distinct_on?: InputMaybe<Array<Pipeline_Runs_Select_Column>>;
|
|
1799
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1800
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1801
|
+
order_by?: InputMaybe<Array<Pipeline_Runs_Order_By>>;
|
|
1802
|
+
where?: InputMaybe<Pipeline_Runs_Bool_Exp>;
|
|
1803
|
+
};
|
|
1804
|
+
export type Subscription_RootPipeline_Runs_By_PkArgs = {
|
|
1805
|
+
id: Scalars['uuid']['input'];
|
|
1806
|
+
};
|
|
1807
|
+
export type Subscription_RootPipeline_Runs_StreamArgs = {
|
|
1808
|
+
batch_size: Scalars['Int']['input'];
|
|
1809
|
+
cursor: Array<InputMaybe<Pipeline_Runs_Stream_Cursor_Input>>;
|
|
1810
|
+
where?: InputMaybe<Pipeline_Runs_Bool_Exp>;
|
|
1811
|
+
};
|
|
1812
|
+
export type Subscription_RootPipelinesArgs = {
|
|
1813
|
+
distinct_on?: InputMaybe<Array<Pipelines_Select_Column>>;
|
|
1814
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1815
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1816
|
+
order_by?: InputMaybe<Array<Pipelines_Order_By>>;
|
|
1817
|
+
where?: InputMaybe<Pipelines_Bool_Exp>;
|
|
1818
|
+
};
|
|
1819
|
+
export type Subscription_RootPipelines_By_PkArgs = {
|
|
1820
|
+
id: Scalars['uuid']['input'];
|
|
1821
|
+
};
|
|
1822
|
+
export type Subscription_RootPipelines_StreamArgs = {
|
|
1823
|
+
batch_size: Scalars['Int']['input'];
|
|
1824
|
+
cursor: Array<InputMaybe<Pipelines_Stream_Cursor_Input>>;
|
|
1825
|
+
where?: InputMaybe<Pipelines_Bool_Exp>;
|
|
1826
|
+
};
|
|
1827
|
+
export type Subscription_RootPlansArgs = {
|
|
1828
|
+
distinct_on?: InputMaybe<Array<Plans_Select_Column>>;
|
|
1829
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1830
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1831
|
+
order_by?: InputMaybe<Array<Plans_Order_By>>;
|
|
1832
|
+
where?: InputMaybe<Plans_Bool_Exp>;
|
|
1833
|
+
};
|
|
1834
|
+
export type Subscription_RootPlans_By_PkArgs = {
|
|
1835
|
+
id: Scalars['uuid']['input'];
|
|
1836
|
+
};
|
|
1837
|
+
export type Subscription_RootPlans_StreamArgs = {
|
|
1838
|
+
batch_size: Scalars['Int']['input'];
|
|
1839
|
+
cursor: Array<InputMaybe<Plans_Stream_Cursor_Input>>;
|
|
1840
|
+
where?: InputMaybe<Plans_Bool_Exp>;
|
|
1841
|
+
};
|
|
1842
|
+
export type Subscription_RootSubscriptionsArgs = {
|
|
1843
|
+
distinct_on?: InputMaybe<Array<Subscriptions_Select_Column>>;
|
|
1844
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1845
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1846
|
+
order_by?: InputMaybe<Array<Subscriptions_Order_By>>;
|
|
1847
|
+
where?: InputMaybe<Subscriptions_Bool_Exp>;
|
|
1848
|
+
};
|
|
1849
|
+
export type Subscription_RootSubscriptions_By_PkArgs = {
|
|
1850
|
+
id: Scalars['uuid']['input'];
|
|
1851
|
+
};
|
|
1852
|
+
export type Subscription_RootSubscriptions_StreamArgs = {
|
|
1853
|
+
batch_size: Scalars['Int']['input'];
|
|
1854
|
+
cursor: Array<InputMaybe<Subscriptions_Stream_Cursor_Input>>;
|
|
1855
|
+
where?: InputMaybe<Subscriptions_Bool_Exp>;
|
|
1856
|
+
};
|
|
1857
|
+
/** columns and relationships of "subscriptions" */
|
|
1858
|
+
export type Subscriptions = {
|
|
1859
|
+
__typename?: 'subscriptions';
|
|
1860
|
+
cancel_at_period_end: Scalars['Boolean']['output'];
|
|
1861
|
+
created_at: Scalars['timestamptz']['output'];
|
|
1862
|
+
id: Scalars['uuid']['output'];
|
|
1863
|
+
period_end: Scalars['timestamptz']['output'];
|
|
1864
|
+
period_start: Scalars['timestamptz']['output'];
|
|
1865
|
+
/** An object relationship */
|
|
1866
|
+
plan: Plans;
|
|
1867
|
+
plan_id: Scalars['uuid']['output'];
|
|
1868
|
+
status: Scalars['String']['output'];
|
|
1869
|
+
};
|
|
1870
|
+
/** Boolean expression to filter rows from the table "subscriptions". All fields are combined with a logical 'AND'. */
|
|
1871
|
+
export type Subscriptions_Bool_Exp = {
|
|
1872
|
+
_and?: InputMaybe<Array<Subscriptions_Bool_Exp>>;
|
|
1873
|
+
_not?: InputMaybe<Subscriptions_Bool_Exp>;
|
|
1874
|
+
_or?: InputMaybe<Array<Subscriptions_Bool_Exp>>;
|
|
1875
|
+
cancel_at_period_end?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1876
|
+
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1877
|
+
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1878
|
+
period_end?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1879
|
+
period_start?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1880
|
+
plan?: InputMaybe<Plans_Bool_Exp>;
|
|
1881
|
+
plan_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1882
|
+
status?: InputMaybe<String_Comparison_Exp>;
|
|
1883
|
+
};
|
|
1884
|
+
/** Ordering options when selecting data from "subscriptions". */
|
|
1885
|
+
export type Subscriptions_Order_By = {
|
|
1886
|
+
cancel_at_period_end?: InputMaybe<Order_By>;
|
|
1887
|
+
created_at?: InputMaybe<Order_By>;
|
|
1888
|
+
id?: InputMaybe<Order_By>;
|
|
1889
|
+
period_end?: InputMaybe<Order_By>;
|
|
1890
|
+
period_start?: InputMaybe<Order_By>;
|
|
1891
|
+
plan?: InputMaybe<Plans_Order_By>;
|
|
1892
|
+
plan_id?: InputMaybe<Order_By>;
|
|
1893
|
+
status?: InputMaybe<Order_By>;
|
|
1894
|
+
};
|
|
1895
|
+
/** select columns of table "subscriptions" */
|
|
1896
|
+
export declare enum Subscriptions_Select_Column {
|
|
1897
|
+
/** column name */
|
|
1898
|
+
CancelAtPeriodEnd = "cancel_at_period_end",
|
|
1899
|
+
/** column name */
|
|
1900
|
+
CreatedAt = "created_at",
|
|
1901
|
+
/** column name */
|
|
1902
|
+
Id = "id",
|
|
1903
|
+
/** column name */
|
|
1904
|
+
PeriodEnd = "period_end",
|
|
1905
|
+
/** column name */
|
|
1906
|
+
PeriodStart = "period_start",
|
|
1907
|
+
/** column name */
|
|
1908
|
+
PlanId = "plan_id",
|
|
1909
|
+
/** column name */
|
|
1910
|
+
Status = "status"
|
|
1911
|
+
}
|
|
1912
|
+
/** Streaming cursor of the table "subscriptions" */
|
|
1913
|
+
export type Subscriptions_Stream_Cursor_Input = {
|
|
1914
|
+
/** Stream column input with initial value */
|
|
1915
|
+
initial_value: Subscriptions_Stream_Cursor_Value_Input;
|
|
1916
|
+
/** cursor ordering */
|
|
1917
|
+
ordering?: InputMaybe<Cursor_Ordering>;
|
|
1918
|
+
};
|
|
1919
|
+
/** Initial value of the column from where the streaming should start */
|
|
1920
|
+
export type Subscriptions_Stream_Cursor_Value_Input = {
|
|
1921
|
+
cancel_at_period_end?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1922
|
+
created_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1923
|
+
id?: InputMaybe<Scalars['uuid']['input']>;
|
|
1924
|
+
period_end?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1925
|
+
period_start?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1926
|
+
plan_id?: InputMaybe<Scalars['uuid']['input']>;
|
|
1927
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
1928
|
+
};
|
|
1929
|
+
/** Boolean expression to compare columns of type "timestamp". All fields are combined with logical 'AND'. */
|
|
1930
|
+
export type Timestamp_Comparison_Exp = {
|
|
1931
|
+
_eq?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1932
|
+
_gt?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1933
|
+
_gte?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1934
|
+
_in?: InputMaybe<Array<Scalars['timestamp']['input']>>;
|
|
1935
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1936
|
+
_lt?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1937
|
+
_lte?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1938
|
+
_neq?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1939
|
+
_nin?: InputMaybe<Array<Scalars['timestamp']['input']>>;
|
|
1940
|
+
};
|
|
1941
|
+
/** Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. */
|
|
1942
|
+
export type Timestamptz_Comparison_Exp = {
|
|
1943
|
+
_eq?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1944
|
+
_gt?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1945
|
+
_gte?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1946
|
+
_in?: InputMaybe<Array<Scalars['timestamptz']['input']>>;
|
|
1947
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1948
|
+
_lt?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1949
|
+
_lte?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1950
|
+
_neq?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
1951
|
+
_nin?: InputMaybe<Array<Scalars['timestamptz']['input']>>;
|
|
1952
|
+
};
|
|
1953
|
+
/** Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'. */
|
|
1954
|
+
export type Uuid_Comparison_Exp = {
|
|
1955
|
+
_eq?: InputMaybe<Scalars['uuid']['input']>;
|
|
1956
|
+
_gt?: InputMaybe<Scalars['uuid']['input']>;
|
|
1957
|
+
_gte?: InputMaybe<Scalars['uuid']['input']>;
|
|
1958
|
+
_in?: InputMaybe<Array<Scalars['uuid']['input']>>;
|
|
1959
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1960
|
+
_lt?: InputMaybe<Scalars['uuid']['input']>;
|
|
1961
|
+
_lte?: InputMaybe<Scalars['uuid']['input']>;
|
|
1962
|
+
_neq?: InputMaybe<Scalars['uuid']['input']>;
|
|
1963
|
+
_nin?: InputMaybe<Array<Scalars['uuid']['input']>>;
|
|
1964
|
+
};
|
|
1965
|
+
export type GetMyAffiliateCodesQueryVariables = Exact<{
|
|
1966
|
+
[key: string]: never;
|
|
1967
|
+
}>;
|
|
1968
|
+
export type GetMyAffiliateCodesQuery = {
|
|
1969
|
+
__typename?: 'query_root';
|
|
1970
|
+
affiliate_codes: Array<{
|
|
1971
|
+
__typename?: 'affiliate_codes';
|
|
1972
|
+
id: any;
|
|
1973
|
+
code: string;
|
|
1974
|
+
is_primary?: boolean | null;
|
|
1975
|
+
redirect_path?: string | null;
|
|
1976
|
+
created_at?: any | null;
|
|
1977
|
+
}>;
|
|
1978
|
+
};
|
|
1979
|
+
export type GetMyAffiliateQueryVariables = Exact<{
|
|
1980
|
+
[key: string]: never;
|
|
1981
|
+
}>;
|
|
1982
|
+
export type GetMyAffiliateQuery = {
|
|
1983
|
+
__typename?: 'query_root';
|
|
1984
|
+
affiliates: Array<{
|
|
1985
|
+
__typename?: 'affiliates';
|
|
1986
|
+
id: any;
|
|
1987
|
+
whop_affiliate_id?: string | null;
|
|
1988
|
+
commission_percent?: number | null;
|
|
1989
|
+
is_active?: boolean | null;
|
|
1990
|
+
codes: Array<{
|
|
1991
|
+
__typename?: 'affiliate_codes';
|
|
1992
|
+
id: any;
|
|
1993
|
+
code: string;
|
|
1994
|
+
is_primary?: boolean | null;
|
|
1995
|
+
redirect_path?: string | null;
|
|
1996
|
+
created_at?: any | null;
|
|
1997
|
+
}>;
|
|
1998
|
+
}>;
|
|
1999
|
+
};
|
|
2000
|
+
export type AddAffiliateCodeMutationVariables = Exact<{
|
|
2001
|
+
code: Scalars['String']['input'];
|
|
2002
|
+
redirect_path?: InputMaybe<Scalars['String']['input']>;
|
|
2003
|
+
}>;
|
|
2004
|
+
export type AddAffiliateCodeMutation = {
|
|
2005
|
+
__typename?: 'mutation_root';
|
|
2006
|
+
add_affiliate_code: {
|
|
2007
|
+
__typename?: 'add_affiliate_code_output';
|
|
2008
|
+
success: boolean;
|
|
2009
|
+
code_id: string;
|
|
2010
|
+
};
|
|
2011
|
+
};
|
|
2012
|
+
export type EnsureAffiliateMutationVariables = Exact<{
|
|
2013
|
+
[key: string]: never;
|
|
2014
|
+
}>;
|
|
2015
|
+
export type EnsureAffiliateMutation = {
|
|
2016
|
+
__typename?: 'mutation_root';
|
|
2017
|
+
ensure_affiliate: {
|
|
2018
|
+
__typename?: 'ensure_affiliate_output';
|
|
2019
|
+
success: boolean;
|
|
2020
|
+
affiliate_id: string;
|
|
2021
|
+
};
|
|
2022
|
+
};
|
|
2023
|
+
export type GetMyReferralsQueryVariables = Exact<{
|
|
2024
|
+
[key: string]: never;
|
|
2025
|
+
}>;
|
|
2026
|
+
export type GetMyReferralsQuery = {
|
|
2027
|
+
__typename?: 'query_root';
|
|
2028
|
+
get_my_referrals: {
|
|
2029
|
+
__typename?: 'get_my_referrals_output';
|
|
2030
|
+
total_referrals: number;
|
|
2031
|
+
active_referrals: number;
|
|
2032
|
+
total_commission_cents: number;
|
|
2033
|
+
referrals: Array<{
|
|
2034
|
+
__typename?: 'referral_entry';
|
|
2035
|
+
user_id: string;
|
|
2036
|
+
email: string;
|
|
2037
|
+
name: string;
|
|
2038
|
+
signed_up_at: string;
|
|
2039
|
+
subscription_status: string;
|
|
2040
|
+
plan_name: string;
|
|
2041
|
+
commission_cents: number;
|
|
2042
|
+
}>;
|
|
2043
|
+
};
|
|
2044
|
+
};
|
|
2045
|
+
export type GetUserAssetsQueryVariables = Exact<{
|
|
2046
|
+
where?: InputMaybe<Assets_Bool_Exp>;
|
|
2047
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2048
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2049
|
+
}>;
|
|
2050
|
+
export type GetUserAssetsQuery = {
|
|
2051
|
+
__typename?: 'query_root';
|
|
2052
|
+
assets: Array<{
|
|
2053
|
+
__typename?: 'assets';
|
|
2054
|
+
id: any;
|
|
2055
|
+
type: string;
|
|
2056
|
+
url: string;
|
|
2057
|
+
thumbnail_url?: string | null;
|
|
2058
|
+
metadata?: any | null;
|
|
2059
|
+
tags: Array<string>;
|
|
2060
|
+
created_at: any;
|
|
2061
|
+
pipeline_run_id?: any | null;
|
|
2062
|
+
}>;
|
|
2063
|
+
assets_aggregate: {
|
|
2064
|
+
__typename?: 'assets_aggregate';
|
|
2065
|
+
aggregate?: {
|
|
2066
|
+
__typename?: 'assets_aggregate_fields';
|
|
2067
|
+
count: number;
|
|
2068
|
+
} | null;
|
|
2069
|
+
};
|
|
2070
|
+
};
|
|
2071
|
+
export type RequestUploadMutationVariables = Exact<{
|
|
2072
|
+
filename: Scalars['String']['input'];
|
|
2073
|
+
content_type: Scalars['String']['input'];
|
|
2074
|
+
}>;
|
|
2075
|
+
export type RequestUploadMutation = {
|
|
2076
|
+
__typename?: 'mutation_root';
|
|
2077
|
+
request_upload: {
|
|
2078
|
+
__typename?: 'request_upload_output';
|
|
2079
|
+
upload_url: string;
|
|
2080
|
+
asset_url: string;
|
|
2081
|
+
key: string;
|
|
2082
|
+
};
|
|
2083
|
+
};
|
|
2084
|
+
export type CreateAssetMutationVariables = Exact<{
|
|
2085
|
+
asset_type: Scalars['String']['input'];
|
|
2086
|
+
url: Scalars['String']['input'];
|
|
2087
|
+
tags?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
2088
|
+
}>;
|
|
2089
|
+
export type CreateAssetMutation = {
|
|
2090
|
+
__typename?: 'mutation_root';
|
|
2091
|
+
create_asset: {
|
|
2092
|
+
__typename?: 'create_asset_output';
|
|
2093
|
+
id: string;
|
|
2094
|
+
type: string;
|
|
2095
|
+
url: string;
|
|
2096
|
+
tags: Array<string>;
|
|
2097
|
+
created_at: string;
|
|
2098
|
+
};
|
|
2099
|
+
};
|
|
2100
|
+
export type DeleteAssetActionMutationVariables = Exact<{
|
|
2101
|
+
id: Scalars['uuid']['input'];
|
|
2102
|
+
}>;
|
|
2103
|
+
export type DeleteAssetActionMutation = {
|
|
2104
|
+
__typename?: 'mutation_root';
|
|
2105
|
+
delete_asset: {
|
|
2106
|
+
__typename?: 'delete_asset_output';
|
|
2107
|
+
success: boolean;
|
|
2108
|
+
};
|
|
2109
|
+
};
|
|
2110
|
+
export type UpdateAssetTagsMutationVariables = Exact<{
|
|
2111
|
+
id: Scalars['uuid']['input'];
|
|
2112
|
+
tags: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
2113
|
+
}>;
|
|
2114
|
+
export type UpdateAssetTagsMutation = {
|
|
2115
|
+
__typename?: 'mutation_root';
|
|
2116
|
+
update_assets_by_pk?: {
|
|
2117
|
+
__typename?: 'assets';
|
|
2118
|
+
id: any;
|
|
2119
|
+
tags: Array<string>;
|
|
2120
|
+
} | null;
|
|
2121
|
+
};
|
|
2122
|
+
export type InitLoginFlowMutationVariables = Exact<{
|
|
2123
|
+
[key: string]: never;
|
|
2124
|
+
}>;
|
|
2125
|
+
export type InitLoginFlowMutation = {
|
|
2126
|
+
__typename?: 'mutation_root';
|
|
2127
|
+
init_login_flow: {
|
|
2128
|
+
__typename?: 'auth_flow';
|
|
2129
|
+
id: string;
|
|
2130
|
+
csrf_token: string;
|
|
2131
|
+
};
|
|
2132
|
+
};
|
|
2133
|
+
export type SubmitLoginFlowMutationVariables = Exact<{
|
|
2134
|
+
flowId: Scalars['String']['input'];
|
|
2135
|
+
email: Scalars['String']['input'];
|
|
2136
|
+
password: Scalars['String']['input'];
|
|
2137
|
+
csrf_token: Scalars['String']['input'];
|
|
2138
|
+
referral_code?: InputMaybe<Scalars['String']['input']>;
|
|
2139
|
+
}>;
|
|
2140
|
+
export type SubmitLoginFlowMutation = {
|
|
2141
|
+
__typename?: 'mutation_root';
|
|
2142
|
+
submit_login_flow: {
|
|
2143
|
+
__typename?: 'auth_result';
|
|
2144
|
+
success: boolean;
|
|
2145
|
+
message: string;
|
|
2146
|
+
token?: string | null;
|
|
2147
|
+
whop_affiliate_id?: string | null;
|
|
2148
|
+
};
|
|
2149
|
+
};
|
|
2150
|
+
export type InitSignupFlowMutationVariables = Exact<{
|
|
2151
|
+
[key: string]: never;
|
|
2152
|
+
}>;
|
|
2153
|
+
export type InitSignupFlowMutation = {
|
|
2154
|
+
__typename?: 'mutation_root';
|
|
2155
|
+
init_signup_flow: {
|
|
2156
|
+
__typename?: 'auth_flow';
|
|
2157
|
+
id: string;
|
|
2158
|
+
csrf_token: string;
|
|
2159
|
+
};
|
|
2160
|
+
};
|
|
2161
|
+
export type SubmitSignupFlowMutationVariables = Exact<{
|
|
2162
|
+
flowId: Scalars['String']['input'];
|
|
2163
|
+
email: Scalars['String']['input'];
|
|
2164
|
+
password: Scalars['String']['input'];
|
|
2165
|
+
name: Scalars['String']['input'];
|
|
2166
|
+
csrf_token: Scalars['String']['input'];
|
|
2167
|
+
}>;
|
|
2168
|
+
export type SubmitSignupFlowMutation = {
|
|
2169
|
+
__typename?: 'mutation_root';
|
|
2170
|
+
submit_signup_flow: {
|
|
2171
|
+
__typename?: 'auth_result';
|
|
2172
|
+
success: boolean;
|
|
2173
|
+
message: string;
|
|
2174
|
+
token?: string | null;
|
|
2175
|
+
};
|
|
2176
|
+
};
|
|
2177
|
+
export type SubmitSocialLoginMutationVariables = Exact<{
|
|
2178
|
+
provider: Scalars['String']['input'];
|
|
2179
|
+
}>;
|
|
2180
|
+
export type SubmitSocialLoginMutation = {
|
|
2181
|
+
__typename?: 'mutation_root';
|
|
2182
|
+
submit_social_login: {
|
|
2183
|
+
__typename?: 'social_login_output';
|
|
2184
|
+
success: boolean;
|
|
2185
|
+
redirect_url: string;
|
|
2186
|
+
};
|
|
2187
|
+
};
|
|
2188
|
+
export type InitVerificationFlowMutationVariables = Exact<{
|
|
2189
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
2190
|
+
}>;
|
|
2191
|
+
export type InitVerificationFlowMutation = {
|
|
2192
|
+
__typename?: 'mutation_root';
|
|
2193
|
+
init_verification_flow: {
|
|
2194
|
+
__typename?: 'auth_flow';
|
|
2195
|
+
id: string;
|
|
2196
|
+
csrf_token: string;
|
|
2197
|
+
};
|
|
2198
|
+
};
|
|
2199
|
+
export type SubmitVerificationCodeMutationVariables = Exact<{
|
|
2200
|
+
flowId: Scalars['String']['input'];
|
|
2201
|
+
code: Scalars['String']['input'];
|
|
2202
|
+
csrf_token: Scalars['String']['input'];
|
|
2203
|
+
}>;
|
|
2204
|
+
export type SubmitVerificationCodeMutation = {
|
|
2205
|
+
__typename?: 'mutation_root';
|
|
2206
|
+
submit_verification_code: {
|
|
2207
|
+
__typename?: 'auth_result';
|
|
2208
|
+
success: boolean;
|
|
2209
|
+
message: string;
|
|
2210
|
+
};
|
|
2211
|
+
};
|
|
2212
|
+
export type InitRecoveryFlowMutationVariables = Exact<{
|
|
2213
|
+
email: Scalars['String']['input'];
|
|
2214
|
+
}>;
|
|
2215
|
+
export type InitRecoveryFlowMutation = {
|
|
2216
|
+
__typename?: 'mutation_root';
|
|
2217
|
+
init_recovery_flow: {
|
|
2218
|
+
__typename?: 'auth_result';
|
|
2219
|
+
success: boolean;
|
|
2220
|
+
message: string;
|
|
2221
|
+
};
|
|
2222
|
+
};
|
|
2223
|
+
export type SubmitRecoveryFlowMutationVariables = Exact<{
|
|
2224
|
+
flowId: Scalars['String']['input'];
|
|
2225
|
+
password: Scalars['String']['input'];
|
|
2226
|
+
csrf_token: Scalars['String']['input'];
|
|
2227
|
+
}>;
|
|
2228
|
+
export type SubmitRecoveryFlowMutation = {
|
|
2229
|
+
__typename?: 'mutation_root';
|
|
2230
|
+
submit_recovery_flow: {
|
|
2231
|
+
__typename?: 'auth_result';
|
|
2232
|
+
success: boolean;
|
|
2233
|
+
message: string;
|
|
2234
|
+
};
|
|
2235
|
+
};
|
|
2236
|
+
export type GetCreditBalanceQueryVariables = Exact<{
|
|
2237
|
+
[key: string]: never;
|
|
2238
|
+
}>;
|
|
2239
|
+
export type GetCreditBalanceQuery = {
|
|
2240
|
+
__typename?: 'query_root';
|
|
2241
|
+
get_credit_balance?: {
|
|
2242
|
+
__typename?: 'credit_balance_output';
|
|
2243
|
+
balance: number;
|
|
2244
|
+
reserved: number;
|
|
2245
|
+
available: number;
|
|
2246
|
+
} | null;
|
|
2247
|
+
};
|
|
2248
|
+
export type GetCreditHistoryQueryVariables = Exact<{
|
|
2249
|
+
[key: string]: never;
|
|
2250
|
+
}>;
|
|
2251
|
+
export type GetCreditHistoryQuery = {
|
|
2252
|
+
__typename?: 'query_root';
|
|
2253
|
+
get_credit_history: Array<{
|
|
2254
|
+
__typename?: 'credit_history_entry';
|
|
2255
|
+
type: string;
|
|
2256
|
+
amount: number;
|
|
2257
|
+
description: string;
|
|
2258
|
+
created_at: string;
|
|
2259
|
+
}>;
|
|
2260
|
+
};
|
|
2261
|
+
export type GetPipelinesQueryVariables = Exact<{
|
|
2262
|
+
[key: string]: never;
|
|
2263
|
+
}>;
|
|
2264
|
+
export type GetPipelinesQuery = {
|
|
2265
|
+
__typename?: 'query_root';
|
|
2266
|
+
pipelines: Array<{
|
|
2267
|
+
__typename?: 'pipelines';
|
|
2268
|
+
id: any;
|
|
2269
|
+
slug: string;
|
|
2270
|
+
name: string;
|
|
2271
|
+
description?: string | null;
|
|
2272
|
+
category: string;
|
|
2273
|
+
icon_url?: string | null;
|
|
2274
|
+
preview_url?: string | null;
|
|
2275
|
+
required_providers: Array<string>;
|
|
2276
|
+
credit_cost: number;
|
|
2277
|
+
input_schema: any;
|
|
2278
|
+
ui_schema: any;
|
|
2279
|
+
output_schema: any;
|
|
2280
|
+
seo_content?: string | null;
|
|
2281
|
+
seo_faq?: any | null;
|
|
2282
|
+
}>;
|
|
2283
|
+
};
|
|
2284
|
+
export type RunPipelineMutationVariables = Exact<{
|
|
2285
|
+
pipeline_slug: Scalars['String']['input'];
|
|
2286
|
+
input: Scalars['jsonb']['input'];
|
|
2287
|
+
}>;
|
|
2288
|
+
export type RunPipelineMutation = {
|
|
2289
|
+
__typename?: 'mutation_root';
|
|
2290
|
+
run_pipeline?: {
|
|
2291
|
+
__typename?: 'run_pipeline_output';
|
|
2292
|
+
run_id: string;
|
|
2293
|
+
workflow_id: string;
|
|
2294
|
+
} | null;
|
|
2295
|
+
};
|
|
2296
|
+
export type GetPipelineRunQueryVariables = Exact<{
|
|
2297
|
+
id: Scalars['uuid']['input'];
|
|
2298
|
+
}>;
|
|
2299
|
+
export type GetPipelineRunQuery = {
|
|
2300
|
+
__typename?: 'query_root';
|
|
2301
|
+
pipeline_runs_by_pk?: {
|
|
2302
|
+
__typename?: 'pipeline_runs';
|
|
2303
|
+
id: any;
|
|
2304
|
+
status: string;
|
|
2305
|
+
output?: any | null;
|
|
2306
|
+
error_message?: string | null;
|
|
2307
|
+
credits_charged?: number | null;
|
|
2308
|
+
created_at: any;
|
|
2309
|
+
completed_at?: any | null;
|
|
2310
|
+
pipeline: {
|
|
2311
|
+
__typename?: 'pipelines';
|
|
2312
|
+
name: string;
|
|
2313
|
+
slug: string;
|
|
2314
|
+
output_schema: any;
|
|
2315
|
+
};
|
|
2316
|
+
assets: Array<{
|
|
2317
|
+
__typename?: 'assets';
|
|
2318
|
+
id: any;
|
|
2319
|
+
type: string;
|
|
2320
|
+
url: string;
|
|
2321
|
+
thumbnail_url?: string | null;
|
|
2322
|
+
created_at: any;
|
|
2323
|
+
}>;
|
|
2324
|
+
workflow_execution?: {
|
|
2325
|
+
__typename?: 'executions_visibility';
|
|
2326
|
+
status: number;
|
|
2327
|
+
start_time: any;
|
|
2328
|
+
close_time?: any | null;
|
|
2329
|
+
} | null;
|
|
2330
|
+
} | null;
|
|
2331
|
+
};
|
|
2332
|
+
export type GetPipelineRunsQueryVariables = Exact<{
|
|
2333
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2334
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2335
|
+
where?: InputMaybe<Pipeline_Runs_Bool_Exp>;
|
|
2336
|
+
}>;
|
|
2337
|
+
export type GetPipelineRunsQuery = {
|
|
2338
|
+
__typename?: 'query_root';
|
|
2339
|
+
pipeline_runs: Array<{
|
|
2340
|
+
__typename?: 'pipeline_runs';
|
|
2341
|
+
id: any;
|
|
2342
|
+
status: string;
|
|
2343
|
+
output?: any | null;
|
|
2344
|
+
error_message?: string | null;
|
|
2345
|
+
credits_charged?: number | null;
|
|
2346
|
+
created_at: any;
|
|
2347
|
+
completed_at?: any | null;
|
|
2348
|
+
pipeline: {
|
|
2349
|
+
__typename?: 'pipelines';
|
|
2350
|
+
name: string;
|
|
2351
|
+
slug: string;
|
|
2352
|
+
output_schema: any;
|
|
2353
|
+
};
|
|
2354
|
+
}>;
|
|
2355
|
+
pipeline_runs_aggregate: {
|
|
2356
|
+
__typename?: 'pipeline_runs_aggregate';
|
|
2357
|
+
aggregate?: {
|
|
2358
|
+
__typename?: 'pipeline_runs_aggregate_fields';
|
|
2359
|
+
count: number;
|
|
2360
|
+
sum?: {
|
|
2361
|
+
__typename?: 'pipeline_runs_sum_fields';
|
|
2362
|
+
credits_charged?: number | null;
|
|
2363
|
+
} | null;
|
|
2364
|
+
} | null;
|
|
2365
|
+
};
|
|
2366
|
+
completed: {
|
|
2367
|
+
__typename?: 'pipeline_runs_aggregate';
|
|
2368
|
+
aggregate?: {
|
|
2369
|
+
__typename?: 'pipeline_runs_aggregate_fields';
|
|
2370
|
+
count: number;
|
|
2371
|
+
} | null;
|
|
2372
|
+
};
|
|
2373
|
+
};
|
|
2374
|
+
export type GetPipelineRunsBySlugQueryVariables = Exact<{
|
|
2375
|
+
slug: Scalars['String']['input'];
|
|
2376
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2377
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2378
|
+
}>;
|
|
2379
|
+
export type GetPipelineRunsBySlugQuery = {
|
|
2380
|
+
__typename?: 'query_root';
|
|
2381
|
+
pipeline_runs: Array<{
|
|
2382
|
+
__typename?: 'pipeline_runs';
|
|
2383
|
+
id: any;
|
|
2384
|
+
status: string;
|
|
2385
|
+
output?: any | null;
|
|
2386
|
+
error_message?: string | null;
|
|
2387
|
+
credits_charged?: number | null;
|
|
2388
|
+
created_at: any;
|
|
2389
|
+
completed_at?: any | null;
|
|
2390
|
+
pipeline: {
|
|
2391
|
+
__typename?: 'pipelines';
|
|
2392
|
+
name: string;
|
|
2393
|
+
slug: string;
|
|
2394
|
+
output_schema: any;
|
|
2395
|
+
};
|
|
2396
|
+
workflow_execution?: {
|
|
2397
|
+
__typename?: 'executions_visibility';
|
|
2398
|
+
status: number;
|
|
2399
|
+
start_time: any;
|
|
2400
|
+
close_time?: any | null;
|
|
2401
|
+
} | null;
|
|
2402
|
+
}>;
|
|
2403
|
+
pipeline_runs_aggregate: {
|
|
2404
|
+
__typename?: 'pipeline_runs_aggregate';
|
|
2405
|
+
aggregate?: {
|
|
2406
|
+
__typename?: 'pipeline_runs_aggregate_fields';
|
|
2407
|
+
count: number;
|
|
2408
|
+
} | null;
|
|
2409
|
+
};
|
|
2410
|
+
};
|
|
2411
|
+
export type GetPlansQueryVariables = Exact<{
|
|
2412
|
+
[key: string]: never;
|
|
2413
|
+
}>;
|
|
2414
|
+
export type GetPlansQuery = {
|
|
2415
|
+
__typename?: 'query_root';
|
|
2416
|
+
plans: Array<{
|
|
2417
|
+
__typename?: 'plans';
|
|
2418
|
+
id: any;
|
|
2419
|
+
slug: string;
|
|
2420
|
+
name: string;
|
|
2421
|
+
description?: string | null;
|
|
2422
|
+
monthly_credits: number;
|
|
2423
|
+
price_cents: number;
|
|
2424
|
+
features: any;
|
|
2425
|
+
sort_order: number;
|
|
2426
|
+
whop_plan_id?: string | null;
|
|
2427
|
+
}>;
|
|
2428
|
+
};
|
|
2429
|
+
export type GetCreditPacksQueryVariables = Exact<{
|
|
2430
|
+
[key: string]: never;
|
|
2431
|
+
}>;
|
|
2432
|
+
export type GetCreditPacksQuery = {
|
|
2433
|
+
__typename?: 'query_root';
|
|
2434
|
+
credit_packs: Array<{
|
|
2435
|
+
__typename?: 'credit_packs';
|
|
2436
|
+
id: any;
|
|
2437
|
+
slug: string;
|
|
2438
|
+
name: string;
|
|
2439
|
+
credits: number;
|
|
2440
|
+
price_cents: number;
|
|
2441
|
+
sort_order: number;
|
|
2442
|
+
whop_plan_id?: string | null;
|
|
2443
|
+
}>;
|
|
2444
|
+
};
|
|
2445
|
+
export type GetSubscriptionQueryVariables = Exact<{
|
|
2446
|
+
[key: string]: never;
|
|
2447
|
+
}>;
|
|
2448
|
+
export type GetSubscriptionQuery = {
|
|
2449
|
+
__typename?: 'query_root';
|
|
2450
|
+
subscriptions: Array<{
|
|
2451
|
+
__typename?: 'subscriptions';
|
|
2452
|
+
id: any;
|
|
2453
|
+
plan_id: any;
|
|
2454
|
+
status: string;
|
|
2455
|
+
period_start: any;
|
|
2456
|
+
period_end: any;
|
|
2457
|
+
cancel_at_period_end: boolean;
|
|
2458
|
+
plan: {
|
|
2459
|
+
__typename?: 'plans';
|
|
2460
|
+
slug: string;
|
|
2461
|
+
name: string;
|
|
2462
|
+
monthly_credits: number;
|
|
2463
|
+
sort_order: number;
|
|
2464
|
+
};
|
|
2465
|
+
}>;
|
|
2466
|
+
};
|
|
2467
|
+
export type WatchPipelineRunSubscriptionVariables = Exact<{
|
|
2468
|
+
run_id: Scalars['uuid']['input'];
|
|
2469
|
+
}>;
|
|
2470
|
+
export type WatchPipelineRunSubscription = {
|
|
2471
|
+
__typename?: 'subscription_root';
|
|
2472
|
+
pipeline_runs_by_pk?: {
|
|
2473
|
+
__typename?: 'pipeline_runs';
|
|
2474
|
+
id: any;
|
|
2475
|
+
status: string;
|
|
2476
|
+
output?: any | null;
|
|
2477
|
+
error_message?: string | null;
|
|
2478
|
+
completed_at?: any | null;
|
|
2479
|
+
pipeline: {
|
|
2480
|
+
__typename?: 'pipelines';
|
|
2481
|
+
name: string;
|
|
2482
|
+
slug: string;
|
|
2483
|
+
};
|
|
2484
|
+
assets: Array<{
|
|
2485
|
+
__typename?: 'assets';
|
|
2486
|
+
id: any;
|
|
2487
|
+
type: string;
|
|
2488
|
+
url: string;
|
|
2489
|
+
thumbnail_url?: string | null;
|
|
2490
|
+
}>;
|
|
2491
|
+
} | null;
|
|
2492
|
+
};
|
|
2493
|
+
export type GetMyApiKeysQueryVariables = Exact<{
|
|
2494
|
+
[key: string]: never;
|
|
2495
|
+
}>;
|
|
2496
|
+
export type GetMyApiKeysQuery = {
|
|
2497
|
+
__typename?: 'query_root';
|
|
2498
|
+
personal_access_tokens: Array<{
|
|
2499
|
+
__typename?: 'personal_access_tokens';
|
|
2500
|
+
id: any;
|
|
2501
|
+
name: string;
|
|
2502
|
+
scopes: Array<string>;
|
|
2503
|
+
last_used_at?: any | null;
|
|
2504
|
+
created_at: any;
|
|
2505
|
+
expires_at: any;
|
|
2506
|
+
revoked_at?: any | null;
|
|
2507
|
+
}>;
|
|
2508
|
+
};
|
|
2509
|
+
export type CreatePersonalAccessTokenMutationVariables = Exact<{
|
|
2510
|
+
name: Scalars['String']['input'];
|
|
2511
|
+
}>;
|
|
2512
|
+
export type CreatePersonalAccessTokenMutation = {
|
|
2513
|
+
__typename?: 'mutation_root';
|
|
2514
|
+
create_personal_access_token: {
|
|
2515
|
+
__typename?: 'create_personal_access_token_output';
|
|
2516
|
+
success: boolean;
|
|
2517
|
+
id: string;
|
|
2518
|
+
token: string;
|
|
2519
|
+
jti: string;
|
|
2520
|
+
expires_at: string;
|
|
2521
|
+
};
|
|
2522
|
+
};
|
|
2523
|
+
export type RevokePersonalAccessTokenMutationVariables = Exact<{
|
|
2524
|
+
id: Scalars['uuid']['input'];
|
|
2525
|
+
}>;
|
|
2526
|
+
export type RevokePersonalAccessTokenMutation = {
|
|
2527
|
+
__typename?: 'mutation_root';
|
|
2528
|
+
revoke_personal_access_token: {
|
|
2529
|
+
__typename?: 'revoke_personal_access_token_output';
|
|
2530
|
+
success: boolean;
|
|
2531
|
+
revoked_at: string;
|
|
2532
|
+
};
|
|
2533
|
+
};
|
|
2534
|
+
export type GetCurrentUserQueryVariables = Exact<{
|
|
2535
|
+
[key: string]: never;
|
|
2536
|
+
}>;
|
|
2537
|
+
export type GetCurrentUserQuery = {
|
|
2538
|
+
__typename?: 'query_root';
|
|
2539
|
+
current_user: {
|
|
2540
|
+
__typename?: 'current_user_output';
|
|
2541
|
+
id: string;
|
|
2542
|
+
email: string;
|
|
2543
|
+
name: string;
|
|
2544
|
+
email_verified: boolean;
|
|
2545
|
+
avatar_url?: string | null;
|
|
2546
|
+
};
|
|
2547
|
+
};
|
|
2548
|
+
export declare const GetMyAffiliateCodesDocument: DocumentNode;
|
|
2549
|
+
export declare const GetMyAffiliateDocument: DocumentNode;
|
|
2550
|
+
export declare const AddAffiliateCodeDocument: DocumentNode;
|
|
2551
|
+
export declare const EnsureAffiliateDocument: DocumentNode;
|
|
2552
|
+
export declare const GetMyReferralsDocument: DocumentNode;
|
|
2553
|
+
export declare const GetUserAssetsDocument: DocumentNode;
|
|
2554
|
+
export declare const RequestUploadDocument: DocumentNode;
|
|
2555
|
+
export declare const CreateAssetDocument: DocumentNode;
|
|
2556
|
+
export declare const DeleteAssetActionDocument: DocumentNode;
|
|
2557
|
+
export declare const UpdateAssetTagsDocument: DocumentNode;
|
|
2558
|
+
export declare const InitLoginFlowDocument: DocumentNode;
|
|
2559
|
+
export declare const SubmitLoginFlowDocument: DocumentNode;
|
|
2560
|
+
export declare const InitSignupFlowDocument: DocumentNode;
|
|
2561
|
+
export declare const SubmitSignupFlowDocument: DocumentNode;
|
|
2562
|
+
export declare const SubmitSocialLoginDocument: DocumentNode;
|
|
2563
|
+
export declare const InitVerificationFlowDocument: DocumentNode;
|
|
2564
|
+
export declare const SubmitVerificationCodeDocument: DocumentNode;
|
|
2565
|
+
export declare const InitRecoveryFlowDocument: DocumentNode;
|
|
2566
|
+
export declare const SubmitRecoveryFlowDocument: DocumentNode;
|
|
2567
|
+
export declare const GetCreditBalanceDocument: DocumentNode;
|
|
2568
|
+
export declare const GetCreditHistoryDocument: DocumentNode;
|
|
2569
|
+
export declare const GetPipelinesDocument: DocumentNode;
|
|
2570
|
+
export declare const RunPipelineDocument: DocumentNode;
|
|
2571
|
+
export declare const GetPipelineRunDocument: DocumentNode;
|
|
2572
|
+
export declare const GetPipelineRunsDocument: DocumentNode;
|
|
2573
|
+
export declare const GetPipelineRunsBySlugDocument: DocumentNode;
|
|
2574
|
+
export declare const GetPlansDocument: DocumentNode;
|
|
2575
|
+
export declare const GetCreditPacksDocument: DocumentNode;
|
|
2576
|
+
export declare const GetSubscriptionDocument: DocumentNode;
|
|
2577
|
+
export declare const WatchPipelineRunDocument: DocumentNode;
|
|
2578
|
+
export declare const GetMyApiKeysDocument: DocumentNode;
|
|
2579
|
+
export declare const CreatePersonalAccessTokenDocument: DocumentNode;
|
|
2580
|
+
export declare const RevokePersonalAccessTokenDocument: DocumentNode;
|
|
2581
|
+
export declare const GetCurrentUserDocument: DocumentNode;
|
|
2582
|
+
export type Requester<C = {}> = <R, V>(doc: DocumentNode, vars?: V, options?: C) => Promise<R> | AsyncIterable<R>;
|
|
2583
|
+
export declare function getSdk<C>(requester: Requester<C>): {
|
|
2584
|
+
GetMyAffiliateCodes(variables?: GetMyAffiliateCodesQueryVariables, options?: C): Promise<GetMyAffiliateCodesQuery>;
|
|
2585
|
+
GetMyAffiliate(variables?: GetMyAffiliateQueryVariables, options?: C): Promise<GetMyAffiliateQuery>;
|
|
2586
|
+
AddAffiliateCode(variables: AddAffiliateCodeMutationVariables, options?: C): Promise<AddAffiliateCodeMutation>;
|
|
2587
|
+
EnsureAffiliate(variables?: EnsureAffiliateMutationVariables, options?: C): Promise<EnsureAffiliateMutation>;
|
|
2588
|
+
GetMyReferrals(variables?: GetMyReferralsQueryVariables, options?: C): Promise<GetMyReferralsQuery>;
|
|
2589
|
+
GetUserAssets(variables?: GetUserAssetsQueryVariables, options?: C): Promise<GetUserAssetsQuery>;
|
|
2590
|
+
RequestUpload(variables: RequestUploadMutationVariables, options?: C): Promise<RequestUploadMutation>;
|
|
2591
|
+
CreateAsset(variables: CreateAssetMutationVariables, options?: C): Promise<CreateAssetMutation>;
|
|
2592
|
+
DeleteAssetAction(variables: DeleteAssetActionMutationVariables, options?: C): Promise<DeleteAssetActionMutation>;
|
|
2593
|
+
UpdateAssetTags(variables: UpdateAssetTagsMutationVariables, options?: C): Promise<UpdateAssetTagsMutation>;
|
|
2594
|
+
InitLoginFlow(variables?: InitLoginFlowMutationVariables, options?: C): Promise<InitLoginFlowMutation>;
|
|
2595
|
+
SubmitLoginFlow(variables: SubmitLoginFlowMutationVariables, options?: C): Promise<SubmitLoginFlowMutation>;
|
|
2596
|
+
InitSignupFlow(variables?: InitSignupFlowMutationVariables, options?: C): Promise<InitSignupFlowMutation>;
|
|
2597
|
+
SubmitSignupFlow(variables: SubmitSignupFlowMutationVariables, options?: C): Promise<SubmitSignupFlowMutation>;
|
|
2598
|
+
SubmitSocialLogin(variables: SubmitSocialLoginMutationVariables, options?: C): Promise<SubmitSocialLoginMutation>;
|
|
2599
|
+
InitVerificationFlow(variables?: InitVerificationFlowMutationVariables, options?: C): Promise<InitVerificationFlowMutation>;
|
|
2600
|
+
SubmitVerificationCode(variables: SubmitVerificationCodeMutationVariables, options?: C): Promise<SubmitVerificationCodeMutation>;
|
|
2601
|
+
InitRecoveryFlow(variables: InitRecoveryFlowMutationVariables, options?: C): Promise<InitRecoveryFlowMutation>;
|
|
2602
|
+
SubmitRecoveryFlow(variables: SubmitRecoveryFlowMutationVariables, options?: C): Promise<SubmitRecoveryFlowMutation>;
|
|
2603
|
+
GetCreditBalance(variables?: GetCreditBalanceQueryVariables, options?: C): Promise<GetCreditBalanceQuery>;
|
|
2604
|
+
GetCreditHistory(variables?: GetCreditHistoryQueryVariables, options?: C): Promise<GetCreditHistoryQuery>;
|
|
2605
|
+
GetPipelines(variables?: GetPipelinesQueryVariables, options?: C): Promise<GetPipelinesQuery>;
|
|
2606
|
+
RunPipeline(variables: RunPipelineMutationVariables, options?: C): Promise<RunPipelineMutation>;
|
|
2607
|
+
GetPipelineRun(variables: GetPipelineRunQueryVariables, options?: C): Promise<GetPipelineRunQuery>;
|
|
2608
|
+
GetPipelineRuns(variables?: GetPipelineRunsQueryVariables, options?: C): Promise<GetPipelineRunsQuery>;
|
|
2609
|
+
GetPipelineRunsBySlug(variables: GetPipelineRunsBySlugQueryVariables, options?: C): Promise<GetPipelineRunsBySlugQuery>;
|
|
2610
|
+
GetPlans(variables?: GetPlansQueryVariables, options?: C): Promise<GetPlansQuery>;
|
|
2611
|
+
GetCreditPacks(variables?: GetCreditPacksQueryVariables, options?: C): Promise<GetCreditPacksQuery>;
|
|
2612
|
+
GetSubscription(variables?: GetSubscriptionQueryVariables, options?: C): Promise<GetSubscriptionQuery>;
|
|
2613
|
+
WatchPipelineRun(variables: WatchPipelineRunSubscriptionVariables, options?: C): AsyncIterable<WatchPipelineRunSubscription>;
|
|
2614
|
+
GetMyApiKeys(variables?: GetMyApiKeysQueryVariables, options?: C): Promise<GetMyApiKeysQuery>;
|
|
2615
|
+
CreatePersonalAccessToken(variables: CreatePersonalAccessTokenMutationVariables, options?: C): Promise<CreatePersonalAccessTokenMutation>;
|
|
2616
|
+
RevokePersonalAccessToken(variables: RevokePersonalAccessTokenMutationVariables, options?: C): Promise<RevokePersonalAccessTokenMutation>;
|
|
2617
|
+
GetCurrentUser(variables?: GetCurrentUserQueryVariables, options?: C): Promise<GetCurrentUserQuery>;
|
|
2618
|
+
};
|
|
2619
|
+
export type Sdk = ReturnType<typeof getSdk>;
|