@vertikalx/vtx-backend-client 1.0.0-dev.14 → 1.0.0-dev.16
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/package.json +1 -1
- package/src/api/vtx-base-api.d.ts +2 -1
- package/src/api/vtx-base-api.js +90 -0
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/runtime/createClient.d.ts +10 -4
- package/src/client/runtime/generateGraphqlOperation.d.ts +1 -1
- package/src/client/schema.d.ts +414 -1
- package/src/client/schema.graphql +185 -6
- package/src/client/schema.js +106 -1
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +189 -2
- package/src/client/types.js +526 -31
- package/src/client/types.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/src/client/schema.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
export type Scalars = {
|
|
2
2
|
String: string;
|
|
3
3
|
Boolean: boolean;
|
|
4
|
-
Float: number;
|
|
5
4
|
DateTime: any;
|
|
5
|
+
Float: number;
|
|
6
6
|
};
|
|
7
7
|
export interface ApiKey {
|
|
8
8
|
_id: Scalars['String'];
|
|
9
9
|
keyName: Scalars['String'];
|
|
10
|
+
keyType: Scalars['String'];
|
|
10
11
|
readAccess: Scalars['Boolean'];
|
|
11
12
|
writeAccess: Scalars['Boolean'];
|
|
12
13
|
__typename: 'ApiKey';
|
|
@@ -14,6 +15,7 @@ export interface ApiKey {
|
|
|
14
15
|
export interface ApiKeyWithValue {
|
|
15
16
|
_id: Scalars['String'];
|
|
16
17
|
keyName: Scalars['String'];
|
|
18
|
+
keyType: Scalars['String'];
|
|
17
19
|
readAccess: Scalars['Boolean'];
|
|
18
20
|
writeAccess: Scalars['Boolean'];
|
|
19
21
|
actualKey: Scalars['String'];
|
|
@@ -73,12 +75,169 @@ export interface TenantUserTokenWithInfo {
|
|
|
73
75
|
loginEmail: Scalars['String'];
|
|
74
76
|
__typename: 'TenantUserTokenWithInfo';
|
|
75
77
|
}
|
|
78
|
+
export interface Agreement {
|
|
79
|
+
_id: Scalars['String'];
|
|
80
|
+
kind: Scalars['String'];
|
|
81
|
+
domain: Scalars['String'];
|
|
82
|
+
isActiveAgreement: Scalars['Boolean'];
|
|
83
|
+
version: Scalars['String'];
|
|
84
|
+
publishedDate: (Scalars['DateTime'] | null);
|
|
85
|
+
unPublishedDate: (Scalars['DateTime'] | null);
|
|
86
|
+
locked: Scalars['Boolean'];
|
|
87
|
+
name: Scalars['String'];
|
|
88
|
+
description: (Scalars['String'] | null);
|
|
89
|
+
content: (Scalars['String'] | null);
|
|
90
|
+
createdDate: Scalars['DateTime'];
|
|
91
|
+
updatedDate: Scalars['DateTime'];
|
|
92
|
+
__typename: 'Agreement';
|
|
93
|
+
}
|
|
94
|
+
export interface BillEntity {
|
|
95
|
+
name: Scalars['String'];
|
|
96
|
+
taxId: (Scalars['String'] | null);
|
|
97
|
+
line1: (Scalars['String'] | null);
|
|
98
|
+
line2: (Scalars['String'] | null);
|
|
99
|
+
line3: (Scalars['String'] | null);
|
|
100
|
+
city: (Scalars['String'] | null);
|
|
101
|
+
state: (Scalars['String'] | null);
|
|
102
|
+
country: (Scalars['String'] | null);
|
|
103
|
+
zip: (Scalars['String'] | null);
|
|
104
|
+
__typename: 'BillEntity';
|
|
105
|
+
}
|
|
106
|
+
export interface InvoiceItem {
|
|
107
|
+
_id: Scalars['String'];
|
|
108
|
+
unitPrice: Scalars['Float'];
|
|
109
|
+
unitTax: Scalars['Float'];
|
|
110
|
+
quantity: Scalars['Float'];
|
|
111
|
+
unit: Scalars['String'];
|
|
112
|
+
itemPrice: Scalars['Float'];
|
|
113
|
+
itemTotal: Scalars['Float'];
|
|
114
|
+
__typename: 'InvoiceItem';
|
|
115
|
+
}
|
|
116
|
+
export interface Payment {
|
|
117
|
+
_id: Scalars['String'];
|
|
118
|
+
amount: Scalars['Float'];
|
|
119
|
+
currency: Scalars['String'];
|
|
120
|
+
datePaid: Scalars['DateTime'];
|
|
121
|
+
paymentComment: (Scalars['String'] | null);
|
|
122
|
+
transactionId: (Scalars['String'] | null);
|
|
123
|
+
processorType: (Scalars['String'] | null);
|
|
124
|
+
processorReference: (Scalars['String'] | null);
|
|
125
|
+
paidItemReference: (Scalars['String'] | null);
|
|
126
|
+
payeeReference: (Scalars['String'] | null);
|
|
127
|
+
payorReference: (Scalars['String'] | null);
|
|
128
|
+
paymentMethodType: (Scalars['String'] | null);
|
|
129
|
+
paymentMethodReference: (Scalars['String'] | null);
|
|
130
|
+
__typename: 'Payment';
|
|
131
|
+
}
|
|
132
|
+
export interface PlaFeature {
|
|
133
|
+
_id: Scalars['String'];
|
|
134
|
+
title: Scalars['String'];
|
|
135
|
+
description: (Scalars['String'] | null);
|
|
136
|
+
quantity: (Scalars['Float'] | null);
|
|
137
|
+
quantityUnit: (Scalars['String'] | null);
|
|
138
|
+
__typename: 'PlaFeature';
|
|
139
|
+
}
|
|
140
|
+
export interface Plan {
|
|
141
|
+
_id: Scalars['String'];
|
|
142
|
+
name: (Scalars['String'] | null);
|
|
143
|
+
description: (Scalars['String'] | null);
|
|
144
|
+
prices: PlanPrice[];
|
|
145
|
+
features: PlaFeature[];
|
|
146
|
+
isPublic: Scalars['Boolean'];
|
|
147
|
+
active: Scalars['Boolean'];
|
|
148
|
+
startOfferingDate: (Scalars['DateTime'] | null);
|
|
149
|
+
endOfferingDate: (Scalars['DateTime'] | null);
|
|
150
|
+
termsAndConditions: (Scalars['String'] | null);
|
|
151
|
+
__typename: 'Plan';
|
|
152
|
+
}
|
|
153
|
+
export interface PlanPrice {
|
|
154
|
+
_id: Scalars['String'];
|
|
155
|
+
currency: Scalars['String'];
|
|
156
|
+
price: Scalars['Float'];
|
|
157
|
+
taxMode: Scalars['String'];
|
|
158
|
+
period: Scalars['String'];
|
|
159
|
+
customDays: (Scalars['Float'] | null);
|
|
160
|
+
plan: (Plan | null);
|
|
161
|
+
__typename: 'PlanPrice';
|
|
162
|
+
}
|
|
163
|
+
export interface Invoice {
|
|
164
|
+
_id: Scalars['String'];
|
|
165
|
+
invoiceDate: Scalars['DateTime'];
|
|
166
|
+
billedEntity: BillEntity;
|
|
167
|
+
dueDate: Scalars['DateTime'];
|
|
168
|
+
billAmount: Scalars['Float'];
|
|
169
|
+
tax: Scalars['Float'];
|
|
170
|
+
total: Scalars['Float'];
|
|
171
|
+
currency: Scalars['String'];
|
|
172
|
+
items: (InvoiceItem[] | null);
|
|
173
|
+
payment: (Payment | null);
|
|
174
|
+
__typename: 'Invoice';
|
|
175
|
+
}
|
|
176
|
+
export interface SubscriptionInvoice {
|
|
177
|
+
_id: Scalars['String'];
|
|
178
|
+
invoice: Invoice;
|
|
179
|
+
billedPlan: PlanPrice;
|
|
180
|
+
subscriber: PlanSubscription;
|
|
181
|
+
__typename: 'SubscriptionInvoice';
|
|
182
|
+
}
|
|
183
|
+
export interface PlanSubscription {
|
|
184
|
+
_id: Scalars['String'];
|
|
185
|
+
currentPlan: PlanPrice;
|
|
186
|
+
billPrice: Scalars['Float'];
|
|
187
|
+
billCurrency: Scalars['String'];
|
|
188
|
+
billPriceComment: (Scalars['String'] | null);
|
|
189
|
+
lastBillDate: Scalars['DateTime'];
|
|
190
|
+
endAccessDate: Scalars['DateTime'];
|
|
191
|
+
autoRenew: Scalars['Boolean'];
|
|
192
|
+
autoRenewPlan: (PlanPrice | null);
|
|
193
|
+
autoRenewDate: Scalars['DateTime'];
|
|
194
|
+
payments: SubscriptionPayment[];
|
|
195
|
+
invoices: SubscriptionInvoice[];
|
|
196
|
+
__typename: 'PlanSubscription';
|
|
197
|
+
}
|
|
198
|
+
export interface SubscriptionPayment {
|
|
199
|
+
_id: Scalars['String'];
|
|
200
|
+
payment: Payment;
|
|
201
|
+
subscriber: PlanSubscription;
|
|
202
|
+
__typename: 'SubscriptionPayment';
|
|
203
|
+
}
|
|
204
|
+
export interface HttpRequestField {
|
|
205
|
+
key: Scalars['String'];
|
|
206
|
+
value: Scalars['String'];
|
|
207
|
+
__typename: 'HttpRequestField';
|
|
208
|
+
}
|
|
209
|
+
export interface AWSS3UploadUrl {
|
|
210
|
+
url: Scalars['String'];
|
|
211
|
+
fields: HttpRequestField[];
|
|
212
|
+
__typename: 'AWSS3UploadUrl';
|
|
213
|
+
}
|
|
214
|
+
export interface BrandStatsType {
|
|
215
|
+
campaigns: (Scalars['Float'] | null);
|
|
216
|
+
sponsorships: (Scalars['Float'] | null);
|
|
217
|
+
sports: (Scalars['Float'] | null);
|
|
218
|
+
athletes: (Scalars['Float'] | null);
|
|
219
|
+
__typename: 'BrandStatsType';
|
|
220
|
+
}
|
|
221
|
+
export interface BrandTranslation {
|
|
222
|
+
_id: Scalars['String'];
|
|
223
|
+
brandId: Scalars['String'];
|
|
224
|
+
language: Scalars['String'];
|
|
225
|
+
name: (Scalars['String'] | null);
|
|
226
|
+
slogan: (Scalars['String'] | null);
|
|
227
|
+
description: (Scalars['String'] | null);
|
|
228
|
+
__typename: 'BrandTranslation';
|
|
229
|
+
}
|
|
76
230
|
export interface Brand {
|
|
77
231
|
_id: Scalars['String'];
|
|
78
232
|
name: Scalars['String'];
|
|
233
|
+
slogan: (Scalars['String'] | null);
|
|
234
|
+
website: (Scalars['String'] | null);
|
|
79
235
|
description: (Scalars['String'] | null);
|
|
80
236
|
approved: Scalars['Boolean'];
|
|
81
237
|
published: Scalars['Boolean'];
|
|
238
|
+
stats: (BrandStatsType | null);
|
|
239
|
+
operatorIds: (Scalars['String'][] | null);
|
|
240
|
+
translations: (BrandTranslation[] | null);
|
|
82
241
|
__typename: 'Brand';
|
|
83
242
|
}
|
|
84
243
|
export interface Sponsor {
|
|
@@ -108,9 +267,12 @@ export interface Query {
|
|
|
108
267
|
tenantApiKeys: ApiKey[];
|
|
109
268
|
nontenantedUserById: User;
|
|
110
269
|
nontenantedUserByEmail: User;
|
|
270
|
+
getUploadUrl: AWSS3UploadUrl;
|
|
111
271
|
industries: Industry[];
|
|
112
272
|
findIndustryById: Industry;
|
|
113
273
|
brands: Brand[];
|
|
274
|
+
getBrandByName: Brand;
|
|
275
|
+
getBrandTranslation: BrandTranslation;
|
|
114
276
|
existsValidSponsorForEmail: Sponsor;
|
|
115
277
|
sponsors: Sponsor[];
|
|
116
278
|
athlete: Athlete[];
|
|
@@ -136,6 +298,7 @@ export interface Mutation {
|
|
|
136
298
|
export interface ApiKeyGenqlSelection {
|
|
137
299
|
_id?: boolean | number;
|
|
138
300
|
keyName?: boolean | number;
|
|
301
|
+
keyType?: boolean | number;
|
|
139
302
|
readAccess?: boolean | number;
|
|
140
303
|
writeAccess?: boolean | number;
|
|
141
304
|
__typename?: boolean | number;
|
|
@@ -144,6 +307,7 @@ export interface ApiKeyGenqlSelection {
|
|
|
144
307
|
export interface ApiKeyWithValueGenqlSelection {
|
|
145
308
|
_id?: boolean | number;
|
|
146
309
|
keyName?: boolean | number;
|
|
310
|
+
keyType?: boolean | number;
|
|
147
311
|
readAccess?: boolean | number;
|
|
148
312
|
writeAccess?: boolean | number;
|
|
149
313
|
actualKey?: boolean | number;
|
|
@@ -212,12 +376,184 @@ export interface TenantUserTokenWithInfoGenqlSelection {
|
|
|
212
376
|
__typename?: boolean | number;
|
|
213
377
|
__scalar?: boolean | number;
|
|
214
378
|
}
|
|
379
|
+
export interface AgreementGenqlSelection {
|
|
380
|
+
_id?: boolean | number;
|
|
381
|
+
kind?: boolean | number;
|
|
382
|
+
domain?: boolean | number;
|
|
383
|
+
isActiveAgreement?: boolean | number;
|
|
384
|
+
version?: boolean | number;
|
|
385
|
+
publishedDate?: boolean | number;
|
|
386
|
+
unPublishedDate?: boolean | number;
|
|
387
|
+
locked?: boolean | number;
|
|
388
|
+
name?: boolean | number;
|
|
389
|
+
description?: boolean | number;
|
|
390
|
+
content?: boolean | number;
|
|
391
|
+
createdDate?: boolean | number;
|
|
392
|
+
updatedDate?: boolean | number;
|
|
393
|
+
__typename?: boolean | number;
|
|
394
|
+
__scalar?: boolean | number;
|
|
395
|
+
}
|
|
396
|
+
export interface BillEntityGenqlSelection {
|
|
397
|
+
name?: boolean | number;
|
|
398
|
+
taxId?: boolean | number;
|
|
399
|
+
line1?: boolean | number;
|
|
400
|
+
line2?: boolean | number;
|
|
401
|
+
line3?: boolean | number;
|
|
402
|
+
city?: boolean | number;
|
|
403
|
+
state?: boolean | number;
|
|
404
|
+
country?: boolean | number;
|
|
405
|
+
zip?: boolean | number;
|
|
406
|
+
__typename?: boolean | number;
|
|
407
|
+
__scalar?: boolean | number;
|
|
408
|
+
}
|
|
409
|
+
export interface InvoiceItemGenqlSelection {
|
|
410
|
+
_id?: boolean | number;
|
|
411
|
+
unitPrice?: boolean | number;
|
|
412
|
+
unitTax?: boolean | number;
|
|
413
|
+
quantity?: boolean | number;
|
|
414
|
+
unit?: boolean | number;
|
|
415
|
+
itemPrice?: boolean | number;
|
|
416
|
+
itemTotal?: boolean | number;
|
|
417
|
+
__typename?: boolean | number;
|
|
418
|
+
__scalar?: boolean | number;
|
|
419
|
+
}
|
|
420
|
+
export interface PaymentGenqlSelection {
|
|
421
|
+
_id?: boolean | number;
|
|
422
|
+
amount?: boolean | number;
|
|
423
|
+
currency?: boolean | number;
|
|
424
|
+
datePaid?: boolean | number;
|
|
425
|
+
paymentComment?: boolean | number;
|
|
426
|
+
transactionId?: boolean | number;
|
|
427
|
+
processorType?: boolean | number;
|
|
428
|
+
processorReference?: boolean | number;
|
|
429
|
+
paidItemReference?: boolean | number;
|
|
430
|
+
payeeReference?: boolean | number;
|
|
431
|
+
payorReference?: boolean | number;
|
|
432
|
+
paymentMethodType?: boolean | number;
|
|
433
|
+
paymentMethodReference?: boolean | number;
|
|
434
|
+
__typename?: boolean | number;
|
|
435
|
+
__scalar?: boolean | number;
|
|
436
|
+
}
|
|
437
|
+
export interface PlaFeatureGenqlSelection {
|
|
438
|
+
_id?: boolean | number;
|
|
439
|
+
title?: boolean | number;
|
|
440
|
+
description?: boolean | number;
|
|
441
|
+
quantity?: boolean | number;
|
|
442
|
+
quantityUnit?: boolean | number;
|
|
443
|
+
__typename?: boolean | number;
|
|
444
|
+
__scalar?: boolean | number;
|
|
445
|
+
}
|
|
446
|
+
export interface PlanGenqlSelection {
|
|
447
|
+
_id?: boolean | number;
|
|
448
|
+
name?: boolean | number;
|
|
449
|
+
description?: boolean | number;
|
|
450
|
+
prices?: PlanPriceGenqlSelection;
|
|
451
|
+
features?: PlaFeatureGenqlSelection;
|
|
452
|
+
isPublic?: boolean | number;
|
|
453
|
+
active?: boolean | number;
|
|
454
|
+
startOfferingDate?: boolean | number;
|
|
455
|
+
endOfferingDate?: boolean | number;
|
|
456
|
+
termsAndConditions?: boolean | number;
|
|
457
|
+
__typename?: boolean | number;
|
|
458
|
+
__scalar?: boolean | number;
|
|
459
|
+
}
|
|
460
|
+
export interface PlanPriceGenqlSelection {
|
|
461
|
+
_id?: boolean | number;
|
|
462
|
+
currency?: boolean | number;
|
|
463
|
+
price?: boolean | number;
|
|
464
|
+
taxMode?: boolean | number;
|
|
465
|
+
period?: boolean | number;
|
|
466
|
+
customDays?: boolean | number;
|
|
467
|
+
plan?: PlanGenqlSelection;
|
|
468
|
+
__typename?: boolean | number;
|
|
469
|
+
__scalar?: boolean | number;
|
|
470
|
+
}
|
|
471
|
+
export interface InvoiceGenqlSelection {
|
|
472
|
+
_id?: boolean | number;
|
|
473
|
+
invoiceDate?: boolean | number;
|
|
474
|
+
billedEntity?: BillEntityGenqlSelection;
|
|
475
|
+
dueDate?: boolean | number;
|
|
476
|
+
billAmount?: boolean | number;
|
|
477
|
+
tax?: boolean | number;
|
|
478
|
+
total?: boolean | number;
|
|
479
|
+
currency?: boolean | number;
|
|
480
|
+
items?: InvoiceItemGenqlSelection;
|
|
481
|
+
payment?: PaymentGenqlSelection;
|
|
482
|
+
__typename?: boolean | number;
|
|
483
|
+
__scalar?: boolean | number;
|
|
484
|
+
}
|
|
485
|
+
export interface SubscriptionInvoiceGenqlSelection {
|
|
486
|
+
_id?: boolean | number;
|
|
487
|
+
invoice?: InvoiceGenqlSelection;
|
|
488
|
+
billedPlan?: PlanPriceGenqlSelection;
|
|
489
|
+
subscriber?: PlanSubscriptionGenqlSelection;
|
|
490
|
+
__typename?: boolean | number;
|
|
491
|
+
__scalar?: boolean | number;
|
|
492
|
+
}
|
|
493
|
+
export interface PlanSubscriptionGenqlSelection {
|
|
494
|
+
_id?: boolean | number;
|
|
495
|
+
currentPlan?: PlanPriceGenqlSelection;
|
|
496
|
+
billPrice?: boolean | number;
|
|
497
|
+
billCurrency?: boolean | number;
|
|
498
|
+
billPriceComment?: boolean | number;
|
|
499
|
+
lastBillDate?: boolean | number;
|
|
500
|
+
endAccessDate?: boolean | number;
|
|
501
|
+
autoRenew?: boolean | number;
|
|
502
|
+
autoRenewPlan?: PlanPriceGenqlSelection;
|
|
503
|
+
autoRenewDate?: boolean | number;
|
|
504
|
+
payments?: SubscriptionPaymentGenqlSelection;
|
|
505
|
+
invoices?: SubscriptionInvoiceGenqlSelection;
|
|
506
|
+
__typename?: boolean | number;
|
|
507
|
+
__scalar?: boolean | number;
|
|
508
|
+
}
|
|
509
|
+
export interface SubscriptionPaymentGenqlSelection {
|
|
510
|
+
_id?: boolean | number;
|
|
511
|
+
payment?: PaymentGenqlSelection;
|
|
512
|
+
subscriber?: PlanSubscriptionGenqlSelection;
|
|
513
|
+
__typename?: boolean | number;
|
|
514
|
+
__scalar?: boolean | number;
|
|
515
|
+
}
|
|
516
|
+
export interface HttpRequestFieldGenqlSelection {
|
|
517
|
+
key?: boolean | number;
|
|
518
|
+
value?: boolean | number;
|
|
519
|
+
__typename?: boolean | number;
|
|
520
|
+
__scalar?: boolean | number;
|
|
521
|
+
}
|
|
522
|
+
export interface AWSS3UploadUrlGenqlSelection {
|
|
523
|
+
url?: boolean | number;
|
|
524
|
+
fields?: HttpRequestFieldGenqlSelection;
|
|
525
|
+
__typename?: boolean | number;
|
|
526
|
+
__scalar?: boolean | number;
|
|
527
|
+
}
|
|
528
|
+
export interface BrandStatsTypeGenqlSelection {
|
|
529
|
+
campaigns?: boolean | number;
|
|
530
|
+
sponsorships?: boolean | number;
|
|
531
|
+
sports?: boolean | number;
|
|
532
|
+
athletes?: boolean | number;
|
|
533
|
+
__typename?: boolean | number;
|
|
534
|
+
__scalar?: boolean | number;
|
|
535
|
+
}
|
|
536
|
+
export interface BrandTranslationGenqlSelection {
|
|
537
|
+
_id?: boolean | number;
|
|
538
|
+
brandId?: boolean | number;
|
|
539
|
+
language?: boolean | number;
|
|
540
|
+
name?: boolean | number;
|
|
541
|
+
slogan?: boolean | number;
|
|
542
|
+
description?: boolean | number;
|
|
543
|
+
__typename?: boolean | number;
|
|
544
|
+
__scalar?: boolean | number;
|
|
545
|
+
}
|
|
215
546
|
export interface BrandGenqlSelection {
|
|
216
547
|
_id?: boolean | number;
|
|
217
548
|
name?: boolean | number;
|
|
549
|
+
slogan?: boolean | number;
|
|
550
|
+
website?: boolean | number;
|
|
218
551
|
description?: boolean | number;
|
|
219
552
|
approved?: boolean | number;
|
|
220
553
|
published?: boolean | number;
|
|
554
|
+
stats?: BrandStatsTypeGenqlSelection;
|
|
555
|
+
operatorIds?: boolean | number;
|
|
556
|
+
translations?: BrandTranslationGenqlSelection;
|
|
221
557
|
__typename?: boolean | number;
|
|
222
558
|
__scalar?: boolean | number;
|
|
223
559
|
}
|
|
@@ -271,6 +607,11 @@ export interface QueryGenqlSelection {
|
|
|
271
607
|
email: Scalars['String'];
|
|
272
608
|
};
|
|
273
609
|
});
|
|
610
|
+
getUploadUrl?: (AWSS3UploadUrlGenqlSelection & {
|
|
611
|
+
__args: {
|
|
612
|
+
input: AWSS3GetUploadDto;
|
|
613
|
+
};
|
|
614
|
+
});
|
|
274
615
|
industries?: IndustryGenqlSelection;
|
|
275
616
|
findIndustryById?: (IndustryGenqlSelection & {
|
|
276
617
|
__args: {
|
|
@@ -278,6 +619,18 @@ export interface QueryGenqlSelection {
|
|
|
278
619
|
};
|
|
279
620
|
});
|
|
280
621
|
brands?: BrandGenqlSelection;
|
|
622
|
+
getBrandByName?: (BrandGenqlSelection & {
|
|
623
|
+
__args: {
|
|
624
|
+
name: Scalars['String'];
|
|
625
|
+
translations: Scalars['Boolean'];
|
|
626
|
+
};
|
|
627
|
+
});
|
|
628
|
+
getBrandTranslation?: (BrandTranslationGenqlSelection & {
|
|
629
|
+
__args: {
|
|
630
|
+
brandId: Scalars['String'];
|
|
631
|
+
language: Scalars['String'];
|
|
632
|
+
};
|
|
633
|
+
});
|
|
281
634
|
existsValidSponsorForEmail?: (SponsorGenqlSelection & {
|
|
282
635
|
__args: {
|
|
283
636
|
loginEmail: Scalars['String'];
|
|
@@ -293,6 +646,10 @@ export interface QueryGenqlSelection {
|
|
|
293
646
|
__typename?: boolean | number;
|
|
294
647
|
__scalar?: boolean | number;
|
|
295
648
|
}
|
|
649
|
+
export interface AWSS3GetUploadDto {
|
|
650
|
+
useType: Scalars['String'];
|
|
651
|
+
name?: (Scalars['String'] | null);
|
|
652
|
+
}
|
|
296
653
|
export interface MutationGenqlSelection {
|
|
297
654
|
createTenant?: (TenantGenqlSelection & {
|
|
298
655
|
__args: {
|
|
@@ -369,6 +726,7 @@ export interface CreateTenantInput {
|
|
|
369
726
|
}
|
|
370
727
|
export interface CreateApiKeyInput {
|
|
371
728
|
keyName: Scalars['String'];
|
|
729
|
+
keyType?: Scalars['String'];
|
|
372
730
|
readAccess: Scalars['Boolean'];
|
|
373
731
|
writeAccess: Scalars['Boolean'];
|
|
374
732
|
}
|
|
@@ -389,6 +747,16 @@ export interface CreateIndustryDto {
|
|
|
389
747
|
export interface CreateBrandDto {
|
|
390
748
|
name: Scalars['String'];
|
|
391
749
|
description?: (Scalars['String'] | null);
|
|
750
|
+
slogan?: (Scalars['String'] | null);
|
|
751
|
+
website?: (Scalars['String'] | null);
|
|
752
|
+
translations?: (BrandTranslationDto[] | null);
|
|
753
|
+
}
|
|
754
|
+
export interface BrandTranslationDto {
|
|
755
|
+
brandId: Scalars['String'];
|
|
756
|
+
language: Scalars['String'];
|
|
757
|
+
name?: (Scalars['String'] | null);
|
|
758
|
+
description?: (Scalars['String'] | null);
|
|
759
|
+
slogan?: (Scalars['String'] | null);
|
|
392
760
|
}
|
|
393
761
|
export interface RegisterSponsorInput {
|
|
394
762
|
name: Scalars['String'];
|
|
@@ -449,6 +817,51 @@ export declare const isTenantWithUserLogin: (obj?: {
|
|
|
449
817
|
export declare const isTenantUserTokenWithInfo: (obj?: {
|
|
450
818
|
__typename?: any;
|
|
451
819
|
} | null) => obj is TenantUserTokenWithInfo;
|
|
820
|
+
export declare const isAgreement: (obj?: {
|
|
821
|
+
__typename?: any;
|
|
822
|
+
} | null) => obj is Agreement;
|
|
823
|
+
export declare const isBillEntity: (obj?: {
|
|
824
|
+
__typename?: any;
|
|
825
|
+
} | null) => obj is BillEntity;
|
|
826
|
+
export declare const isInvoiceItem: (obj?: {
|
|
827
|
+
__typename?: any;
|
|
828
|
+
} | null) => obj is InvoiceItem;
|
|
829
|
+
export declare const isPayment: (obj?: {
|
|
830
|
+
__typename?: any;
|
|
831
|
+
} | null) => obj is Payment;
|
|
832
|
+
export declare const isPlaFeature: (obj?: {
|
|
833
|
+
__typename?: any;
|
|
834
|
+
} | null) => obj is PlaFeature;
|
|
835
|
+
export declare const isPlan: (obj?: {
|
|
836
|
+
__typename?: any;
|
|
837
|
+
} | null) => obj is Plan;
|
|
838
|
+
export declare const isPlanPrice: (obj?: {
|
|
839
|
+
__typename?: any;
|
|
840
|
+
} | null) => obj is PlanPrice;
|
|
841
|
+
export declare const isInvoice: (obj?: {
|
|
842
|
+
__typename?: any;
|
|
843
|
+
} | null) => obj is Invoice;
|
|
844
|
+
export declare const isSubscriptionInvoice: (obj?: {
|
|
845
|
+
__typename?: any;
|
|
846
|
+
} | null) => obj is SubscriptionInvoice;
|
|
847
|
+
export declare const isPlanSubscription: (obj?: {
|
|
848
|
+
__typename?: any;
|
|
849
|
+
} | null) => obj is PlanSubscription;
|
|
850
|
+
export declare const isSubscriptionPayment: (obj?: {
|
|
851
|
+
__typename?: any;
|
|
852
|
+
} | null) => obj is SubscriptionPayment;
|
|
853
|
+
export declare const isHttpRequestField: (obj?: {
|
|
854
|
+
__typename?: any;
|
|
855
|
+
} | null) => obj is HttpRequestField;
|
|
856
|
+
export declare const isAWSS3UploadUrl: (obj?: {
|
|
857
|
+
__typename?: any;
|
|
858
|
+
} | null) => obj is AWSS3UploadUrl;
|
|
859
|
+
export declare const isBrandStatsType: (obj?: {
|
|
860
|
+
__typename?: any;
|
|
861
|
+
} | null) => obj is BrandStatsType;
|
|
862
|
+
export declare const isBrandTranslation: (obj?: {
|
|
863
|
+
__typename?: any;
|
|
864
|
+
} | null) => obj is BrandTranslation;
|
|
452
865
|
export declare const isBrand: (obj?: {
|
|
453
866
|
__typename?: any;
|
|
454
867
|
} | null) => obj is Brand;
|