@vertikalx/vtx-backend-client 1.0.0-dev.2 → 1.0.0-dev.21
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 +3 -2
- package/src/api/api-call-headers.d.ts +16 -0
- package/src/api/api-call-headers.js +20 -0
- package/src/api/api-call-headers.js.map +1 -0
- package/src/api/backend-response.d.ts +4 -0
- package/src/api/backend-response.js +3 -0
- package/src/api/backend-response.js.map +1 -0
- package/src/api/response-builder.d.ts +4 -0
- package/src/api/response-builder.js +63 -0
- package/src/api/response-builder.js.map +1 -0
- package/src/api/vtx-apikey-api.d.ts +6 -0
- package/src/api/vtx-apikey-api.js +19 -0
- package/src/api/vtx-apikey-api.js.map +1 -0
- package/src/api/vtx-base-api.d.ts +23 -0
- package/src/api/vtx-base-api.js +752 -0
- package/src/api/vtx-base-api.js.map +1 -0
- package/src/api/vtx-mobile-api.d.ts +6 -0
- package/src/api/vtx-mobile-api.js +27 -0
- package/src/api/vtx-mobile-api.js.map +1 -0
- package/src/api/vtx-web-browser-api.d.ts +7 -0
- package/src/api/vtx-web-browser-api.js +36 -0
- package/src/api/vtx-web-browser-api.js.map +1 -0
- package/src/api/vtx-web-server-api.d.ts +7 -0
- package/src/api/vtx-web-server-api.js +33 -0
- package/src/api/vtx-web-server-api.js.map +1 -0
- package/src/client/index.js.map +1 -0
- package/src/client/runtime/batcher.js.map +1 -0
- package/{runtime → src/client/runtime}/createClient.d.ts +4 -10
- package/src/client/runtime/createClient.js.map +1 -0
- package/src/client/runtime/error.js.map +1 -0
- package/src/client/runtime/fetcher.js.map +1 -0
- package/{runtime → src/client/runtime}/generateGraphqlOperation.d.ts +1 -1
- package/src/client/runtime/generateGraphqlOperation.js.map +1 -0
- package/src/client/runtime/index.js.map +1 -0
- package/src/client/runtime/linkTypeMap.js.map +1 -0
- package/src/client/runtime/typeSelection.js.map +1 -0
- package/src/client/runtime/types.js.map +1 -0
- package/src/client/schema.d.ts +985 -0
- package/src/client/schema.graphql +433 -0
- package/src/client/schema.js +235 -0
- package/src/client/schema.js.map +1 -0
- package/src/client/types.d.ts +499 -0
- package/src/client/types.js +1292 -0
- package/src/client/types.js.map +1 -0
- package/src/index.d.ts +9 -0
- package/src/index.js +26 -0
- package/src/index.js.map +1 -0
- package/tsconfig.lib.tsbuildinfo +1 -1
- package/index.js.map +0 -1
- package/index.ts +0 -65
- package/runtime/batcher.js.map +0 -1
- package/runtime/batcher.ts +0 -275
- package/runtime/createClient.js.map +0 -1
- package/runtime/createClient.ts +0 -68
- package/runtime/error.js.map +0 -1
- package/runtime/error.ts +0 -29
- package/runtime/fetcher.js.map +0 -1
- package/runtime/fetcher.ts +0 -97
- package/runtime/generateGraphqlOperation.js.map +0 -1
- package/runtime/generateGraphqlOperation.ts +0 -225
- package/runtime/index.js.map +0 -1
- package/runtime/index.ts +0 -13
- package/runtime/linkTypeMap.js.map +0 -1
- package/runtime/linkTypeMap.ts +0 -156
- package/runtime/typeSelection.js.map +0 -1
- package/runtime/typeSelection.ts +0 -95
- package/runtime/types.js.map +0 -1
- package/runtime/types.ts +0 -69
- package/schema.d.ts +0 -406
- package/schema.graphql +0 -162
- package/schema.js +0 -109
- package/schema.js.map +0 -1
- package/schema.ts +0 -420
- package/types.d.ts +0 -207
- package/types.js +0 -518
- package/types.js.map +0 -1
- package/types.ts +0 -515
- /package/{index.d.ts → src/client/index.d.ts} +0 -0
- /package/{index.js → src/client/index.js} +0 -0
- /package/{runtime → src/client/runtime}/batcher.d.ts +0 -0
- /package/{runtime → src/client/runtime}/batcher.js +0 -0
- /package/{runtime → src/client/runtime}/createClient.js +0 -0
- /package/{runtime → src/client/runtime}/error.d.ts +0 -0
- /package/{runtime → src/client/runtime}/error.js +0 -0
- /package/{runtime → src/client/runtime}/fetcher.d.ts +0 -0
- /package/{runtime → src/client/runtime}/fetcher.js +0 -0
- /package/{runtime → src/client/runtime}/generateGraphqlOperation.js +0 -0
- /package/{runtime → src/client/runtime}/index.d.ts +0 -0
- /package/{runtime → src/client/runtime}/index.js +0 -0
- /package/{runtime → src/client/runtime}/linkTypeMap.d.ts +0 -0
- /package/{runtime → src/client/runtime}/linkTypeMap.js +0 -0
- /package/{runtime → src/client/runtime}/typeSelection.d.ts +0 -0
- /package/{runtime → src/client/runtime}/typeSelection.js +0 -0
- /package/{runtime → src/client/runtime}/types.d.ts +0 -0
- /package/{runtime → src/client/runtime}/types.js +0 -0
|
@@ -0,0 +1,433 @@
|
|
|
1
|
+
type User {
|
|
2
|
+
_id: String!
|
|
3
|
+
loginEmail: String!
|
|
4
|
+
suspended: Boolean!
|
|
5
|
+
domains: [DomainCredential!]
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
type UserWithToken {
|
|
9
|
+
_id: String!
|
|
10
|
+
loginEmail: String!
|
|
11
|
+
suspended: Boolean!
|
|
12
|
+
domains: [DomainCredential!]
|
|
13
|
+
token: UserToken!
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
type BaseTenant {
|
|
17
|
+
_id: String!
|
|
18
|
+
name: String!
|
|
19
|
+
tenant_uri: String!
|
|
20
|
+
domain: Domain!
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
type Tenant {
|
|
24
|
+
_id: String!
|
|
25
|
+
name: String!
|
|
26
|
+
tenant_uri: String!
|
|
27
|
+
domain: Domain!
|
|
28
|
+
email: String!
|
|
29
|
+
owner: User
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
type Domain {
|
|
33
|
+
_id: String!
|
|
34
|
+
name: String!
|
|
35
|
+
description: String
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
type DomainCredential {
|
|
39
|
+
_id: String!
|
|
40
|
+
name: String!
|
|
41
|
+
description: String
|
|
42
|
+
tenant: BaseTenant
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
type UserToken {
|
|
46
|
+
actualToken: String!
|
|
47
|
+
refreshToken: String!
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
type TenantWithUserLogin {
|
|
51
|
+
_id: String!
|
|
52
|
+
name: String!
|
|
53
|
+
tenant_uri: String!
|
|
54
|
+
domain: Domain!
|
|
55
|
+
email: String!
|
|
56
|
+
owner: User
|
|
57
|
+
user: UserWithToken!
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
type UriAvailableType {
|
|
61
|
+
available: Boolean!
|
|
62
|
+
valid: Boolean!
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
type Agreement {
|
|
66
|
+
_id: String!
|
|
67
|
+
kind: String!
|
|
68
|
+
domain: String!
|
|
69
|
+
isActiveAgreement: Boolean!
|
|
70
|
+
version: String!
|
|
71
|
+
publishedDate: DateTime
|
|
72
|
+
unPublishedDate: DateTime
|
|
73
|
+
locked: Boolean!
|
|
74
|
+
name: String!
|
|
75
|
+
description: String
|
|
76
|
+
content: String
|
|
77
|
+
createdDate: DateTime!
|
|
78
|
+
updatedDate: DateTime!
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
"""
|
|
82
|
+
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
|
|
83
|
+
"""
|
|
84
|
+
scalar DateTime
|
|
85
|
+
|
|
86
|
+
type BillEntity {
|
|
87
|
+
name: String!
|
|
88
|
+
taxId: String
|
|
89
|
+
line1: String
|
|
90
|
+
line2: String
|
|
91
|
+
line3: String
|
|
92
|
+
city: String
|
|
93
|
+
state: String
|
|
94
|
+
country: String
|
|
95
|
+
zip: String
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
type InvoiceItem {
|
|
99
|
+
_id: String!
|
|
100
|
+
unitPrice: Float!
|
|
101
|
+
unitTax: Float!
|
|
102
|
+
quantity: Float!
|
|
103
|
+
unit: String!
|
|
104
|
+
itemPrice: Float!
|
|
105
|
+
itemTotal: Float!
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
type Payment {
|
|
109
|
+
_id: String!
|
|
110
|
+
amount: Float!
|
|
111
|
+
currency: String!
|
|
112
|
+
datePaid: DateTime!
|
|
113
|
+
paymentComment: String
|
|
114
|
+
transactionId: String
|
|
115
|
+
processorType: String
|
|
116
|
+
processorReference: String
|
|
117
|
+
paidItemReference: String
|
|
118
|
+
payeeReference: String
|
|
119
|
+
payorReference: String
|
|
120
|
+
paymentMethodType: String
|
|
121
|
+
paymentMethodReference: String
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
type PlaFeature {
|
|
125
|
+
_id: String!
|
|
126
|
+
title: String!
|
|
127
|
+
description: String
|
|
128
|
+
quantity: Float
|
|
129
|
+
quantityUnit: String
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
type Plan {
|
|
133
|
+
_id: String!
|
|
134
|
+
name: String
|
|
135
|
+
description: String
|
|
136
|
+
prices: [PlanPrice!]!
|
|
137
|
+
features: [PlaFeature!]!
|
|
138
|
+
isPublic: Boolean!
|
|
139
|
+
active: Boolean!
|
|
140
|
+
startOfferingDate: DateTime
|
|
141
|
+
endOfferingDate: DateTime
|
|
142
|
+
termsAndConditions: String
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
type PlanPrice {
|
|
146
|
+
_id: String!
|
|
147
|
+
currency: String!
|
|
148
|
+
price: Float!
|
|
149
|
+
taxMode: String!
|
|
150
|
+
period: String!
|
|
151
|
+
customDays: Float
|
|
152
|
+
plan: Plan
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
type Invoice {
|
|
156
|
+
_id: String!
|
|
157
|
+
invoiceDate: DateTime!
|
|
158
|
+
billedEntity: BillEntity!
|
|
159
|
+
dueDate: DateTime!
|
|
160
|
+
billAmount: Float!
|
|
161
|
+
tax: Float!
|
|
162
|
+
total: Float!
|
|
163
|
+
currency: String!
|
|
164
|
+
items: [InvoiceItem!]
|
|
165
|
+
payment: Payment
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
type SubscriptionInvoice {
|
|
169
|
+
_id: String!
|
|
170
|
+
invoice: Invoice!
|
|
171
|
+
billedPlan: PlanPrice!
|
|
172
|
+
subscriber: PlanSubscription!
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
type PlanSubscription {
|
|
176
|
+
_id: String!
|
|
177
|
+
currentPlan: PlanPrice!
|
|
178
|
+
billPrice: Float!
|
|
179
|
+
billCurrency: String!
|
|
180
|
+
billPriceComment: String
|
|
181
|
+
lastBillDate: DateTime!
|
|
182
|
+
endAccessDate: DateTime!
|
|
183
|
+
autoRenew: Boolean!
|
|
184
|
+
autoRenewPlan: PlanPrice
|
|
185
|
+
autoRenewDate: DateTime!
|
|
186
|
+
payments: [SubscriptionPayment!]!
|
|
187
|
+
invoices: [SubscriptionInvoice!]!
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
type SubscriptionPayment {
|
|
191
|
+
_id: String!
|
|
192
|
+
payment: Payment!
|
|
193
|
+
subscriber: PlanSubscription!
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
type AWSS3File {
|
|
197
|
+
_id: String!
|
|
198
|
+
name: String
|
|
199
|
+
contentType: String
|
|
200
|
+
size: Float
|
|
201
|
+
useType: String
|
|
202
|
+
url: String!
|
|
203
|
+
key: String!
|
|
204
|
+
pendingDelete: Boolean!
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
type HttpRequestField {
|
|
208
|
+
key: String!
|
|
209
|
+
value: String!
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
type AWSS3UploadUrl {
|
|
213
|
+
uploadUrl: String!
|
|
214
|
+
fields: [HttpRequestField!]!
|
|
215
|
+
downloadUrl: String!
|
|
216
|
+
bucket: String!
|
|
217
|
+
key: String!
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
type AWSS3CallResult {
|
|
221
|
+
httpStatus: Float!
|
|
222
|
+
result: String!
|
|
223
|
+
message: String!
|
|
224
|
+
errors: [String!]
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
type BrandStats {
|
|
228
|
+
campaigns: Float
|
|
229
|
+
sponsorships: Float
|
|
230
|
+
sports: Float
|
|
231
|
+
athletes: Float
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
type BrandTranslation {
|
|
235
|
+
_id: String!
|
|
236
|
+
brandId: String!
|
|
237
|
+
language: String!
|
|
238
|
+
name: String
|
|
239
|
+
slogan: String
|
|
240
|
+
description: String
|
|
241
|
+
logo: AWSS3File
|
|
242
|
+
banner: AWSS3File
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
type Brand {
|
|
246
|
+
_id: String!
|
|
247
|
+
name: String!
|
|
248
|
+
slogan: String
|
|
249
|
+
website: String
|
|
250
|
+
description: String
|
|
251
|
+
approved: Boolean!
|
|
252
|
+
published: Boolean!
|
|
253
|
+
logo: AWSS3File
|
|
254
|
+
banner: AWSS3File
|
|
255
|
+
stats: BrandStats
|
|
256
|
+
operatorIds: [String!]
|
|
257
|
+
translations: [BrandTranslation!]
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
type Sponsor {
|
|
261
|
+
_id: String!
|
|
262
|
+
name: String!
|
|
263
|
+
description: String!
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
type Industry {
|
|
267
|
+
_id: String!
|
|
268
|
+
name: String!
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
type Athlete {
|
|
272
|
+
_id: String!
|
|
273
|
+
firstName: String!
|
|
274
|
+
lastName: String!
|
|
275
|
+
screenName: String
|
|
276
|
+
nationalityIso2: String
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
type Sport {
|
|
280
|
+
_id: String!
|
|
281
|
+
name: String!
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
type Query {
|
|
285
|
+
findTenantById(_id: String!): Tenant!
|
|
286
|
+
findTenantByEmail(email: String!, domainId: String!): Tenant!
|
|
287
|
+
getTenants: [Tenant!]!
|
|
288
|
+
isTenantUriAvailable(tenant_uri: String!): UriAvailableType!
|
|
289
|
+
findUserById(_id: String!): User!
|
|
290
|
+
findUserByEmail(email: String!): User!
|
|
291
|
+
getUploadUrl(input: AWSS3GetUploadDto!): AWSS3UploadUrl!
|
|
292
|
+
industries: [Industry!]!
|
|
293
|
+
findIndustryById(industryId: String!): Industry!
|
|
294
|
+
brands: [Brand!]!
|
|
295
|
+
getBrandByName(name: String!, translations: Boolean!): Brand!
|
|
296
|
+
getBrandTranslation(brandId: String!, language: String!): BrandTranslation!
|
|
297
|
+
existsValidSponsorForEmail(loginEmail: String!): Sponsor!
|
|
298
|
+
sponsors: [Sponsor!]!
|
|
299
|
+
athlete: [Athlete!]!
|
|
300
|
+
findAthleteById(athleteId: String!): Athlete!
|
|
301
|
+
sports: [Sport!]!
|
|
302
|
+
findSportById(sportId: String!): Sport!
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
input AWSS3GetUploadDto {
|
|
306
|
+
useType: String!
|
|
307
|
+
name: String
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
type Mutation {
|
|
311
|
+
registerNewDomainTenant(tenant: CreateTenantInput!): Tenant!
|
|
312
|
+
registerNewDomainTenantWithLogin(tenant: CreateTenantInput!): TenantWithUserLogin!
|
|
313
|
+
createUserAndLogin(user: CreateActiveUserInput!): UserWithToken!
|
|
314
|
+
loginUserFromEmail(email: String!): UserToken!
|
|
315
|
+
registerUserToDomainFromEmail(input: RegisterUserToDomainFromEmailInput!): User!
|
|
316
|
+
refreshToken(dto: RefreshTokenInput!): UserToken!
|
|
317
|
+
deleteUploadedUseTypeFile(input: AWSS3DeleteUseTypeFileDto!): AWSS3CallResult!
|
|
318
|
+
deleteUploadedBucketFile(input: AWSS3DeleteBucketFileDto!): AWSS3CallResult!
|
|
319
|
+
registerS3UploadedFile(input: AWSS3UploadedFileDto!): AWSS3File!
|
|
320
|
+
createIndustry(input: CreateIndustryDto!): Industry!
|
|
321
|
+
createBrand(input: CreateBrandDto!): Brand!
|
|
322
|
+
registerSponsor(input: RegisterSponsorInput!): Sponsor!
|
|
323
|
+
createSponsor(input: CreateSponsorDto!): Sponsor!
|
|
324
|
+
registerAthlete(input: RegisterAthleteDto!): Athlete!
|
|
325
|
+
createSport(input: CreateSportDto!): Sport!
|
|
326
|
+
updateSport(sportId: String!, input: UpdateSportDto!): Sport!
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
input CreateTenantInput {
|
|
330
|
+
name: String!
|
|
331
|
+
email: String!
|
|
332
|
+
tenant_uri: String!
|
|
333
|
+
domain: String!
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
input CreateActiveUserInput {
|
|
337
|
+
loginEmail: String!
|
|
338
|
+
password: String
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
input RegisterUserToDomainFromEmailInput {
|
|
342
|
+
email: String!
|
|
343
|
+
domainId: String!
|
|
344
|
+
tenantId: String
|
|
345
|
+
createUserIfNotExist: Boolean = false
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
input RefreshTokenInput {
|
|
349
|
+
refreshToken: String!
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
input AWSS3DeleteUseTypeFileDto {
|
|
353
|
+
name: String!
|
|
354
|
+
useType: String!
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
input AWSS3DeleteBucketFileDto {
|
|
358
|
+
key: String!
|
|
359
|
+
bucket: String!
|
|
360
|
+
credentialsId: String
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
input AWSS3UploadedFileDto {
|
|
364
|
+
key: String!
|
|
365
|
+
useType: String!
|
|
366
|
+
contentType: String!
|
|
367
|
+
originalFileName: String
|
|
368
|
+
fileSize: Float
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
input CreateIndustryDto {
|
|
372
|
+
name: String!
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
input CreateBrandDto {
|
|
376
|
+
name: String!
|
|
377
|
+
description: String
|
|
378
|
+
slogan: String
|
|
379
|
+
website: String
|
|
380
|
+
logo: AWSS3UploadedFileDto
|
|
381
|
+
banner: AWSS3UploadedFileDto
|
|
382
|
+
translations: [BrandTranslationDto!]
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
input BrandTranslationDto {
|
|
386
|
+
brandId: String!
|
|
387
|
+
language: String!
|
|
388
|
+
name: String
|
|
389
|
+
description: String
|
|
390
|
+
slogan: String
|
|
391
|
+
logo: AWSS3UploadedFileDto
|
|
392
|
+
banner: AWSS3UploadedFileDto
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
input RegisterSponsorInput {
|
|
396
|
+
name: String!
|
|
397
|
+
phone: String
|
|
398
|
+
hasWhatsapp: Boolean! = false
|
|
399
|
+
companyName: String
|
|
400
|
+
companyEmail: String!
|
|
401
|
+
industryId: String!
|
|
402
|
+
companySize: String!
|
|
403
|
+
operatorType: String!
|
|
404
|
+
numberOfAthletes: String!
|
|
405
|
+
brands: [String!]!
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
input CreateSponsorDto {
|
|
409
|
+
name: String!
|
|
410
|
+
description: String
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
input RegisterAthleteDto {
|
|
414
|
+
email: String!
|
|
415
|
+
firstName: String!
|
|
416
|
+
lastName: String!
|
|
417
|
+
screenName: String
|
|
418
|
+
nationality: String!
|
|
419
|
+
cityOfResidence: String!
|
|
420
|
+
dateOfBirth: DateTime!
|
|
421
|
+
competitionLevel: Float!
|
|
422
|
+
team: String
|
|
423
|
+
gender: String!
|
|
424
|
+
mainSport: String!
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
input CreateSportDto {
|
|
428
|
+
name: String!
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
input UpdateSportDto {
|
|
432
|
+
name: String!
|
|
433
|
+
}
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isMutation = exports.isQuery = exports.isSport = exports.isAthlete = exports.isIndustry = exports.isSponsor = exports.isBrand = exports.isBrandTranslation = exports.isBrandStats = exports.isAWSS3CallResult = exports.isAWSS3UploadUrl = exports.isHttpRequestField = exports.isAWSS3File = exports.isSubscriptionPayment = exports.isPlanSubscription = exports.isSubscriptionInvoice = exports.isInvoice = exports.isPlanPrice = exports.isPlan = exports.isPlaFeature = exports.isPayment = exports.isInvoiceItem = exports.isBillEntity = exports.isAgreement = exports.isUriAvailableType = exports.isTenantWithUserLogin = exports.isUserToken = exports.isDomainCredential = exports.isDomain = exports.isTenant = exports.isBaseTenant = exports.isUserWithToken = exports.isUser = void 0;
|
|
4
|
+
const User_possibleTypes = ['User'];
|
|
5
|
+
const isUser = (obj) => {
|
|
6
|
+
if (!obj?.__typename)
|
|
7
|
+
throw new Error('__typename is missing in "isUser"');
|
|
8
|
+
return User_possibleTypes.includes(obj.__typename);
|
|
9
|
+
};
|
|
10
|
+
exports.isUser = isUser;
|
|
11
|
+
const UserWithToken_possibleTypes = ['UserWithToken'];
|
|
12
|
+
const isUserWithToken = (obj) => {
|
|
13
|
+
if (!obj?.__typename)
|
|
14
|
+
throw new Error('__typename is missing in "isUserWithToken"');
|
|
15
|
+
return UserWithToken_possibleTypes.includes(obj.__typename);
|
|
16
|
+
};
|
|
17
|
+
exports.isUserWithToken = isUserWithToken;
|
|
18
|
+
const BaseTenant_possibleTypes = ['BaseTenant'];
|
|
19
|
+
const isBaseTenant = (obj) => {
|
|
20
|
+
if (!obj?.__typename)
|
|
21
|
+
throw new Error('__typename is missing in "isBaseTenant"');
|
|
22
|
+
return BaseTenant_possibleTypes.includes(obj.__typename);
|
|
23
|
+
};
|
|
24
|
+
exports.isBaseTenant = isBaseTenant;
|
|
25
|
+
const Tenant_possibleTypes = ['Tenant'];
|
|
26
|
+
const isTenant = (obj) => {
|
|
27
|
+
if (!obj?.__typename)
|
|
28
|
+
throw new Error('__typename is missing in "isTenant"');
|
|
29
|
+
return Tenant_possibleTypes.includes(obj.__typename);
|
|
30
|
+
};
|
|
31
|
+
exports.isTenant = isTenant;
|
|
32
|
+
const Domain_possibleTypes = ['Domain'];
|
|
33
|
+
const isDomain = (obj) => {
|
|
34
|
+
if (!obj?.__typename)
|
|
35
|
+
throw new Error('__typename is missing in "isDomain"');
|
|
36
|
+
return Domain_possibleTypes.includes(obj.__typename);
|
|
37
|
+
};
|
|
38
|
+
exports.isDomain = isDomain;
|
|
39
|
+
const DomainCredential_possibleTypes = ['DomainCredential'];
|
|
40
|
+
const isDomainCredential = (obj) => {
|
|
41
|
+
if (!obj?.__typename)
|
|
42
|
+
throw new Error('__typename is missing in "isDomainCredential"');
|
|
43
|
+
return DomainCredential_possibleTypes.includes(obj.__typename);
|
|
44
|
+
};
|
|
45
|
+
exports.isDomainCredential = isDomainCredential;
|
|
46
|
+
const UserToken_possibleTypes = ['UserToken'];
|
|
47
|
+
const isUserToken = (obj) => {
|
|
48
|
+
if (!obj?.__typename)
|
|
49
|
+
throw new Error('__typename is missing in "isUserToken"');
|
|
50
|
+
return UserToken_possibleTypes.includes(obj.__typename);
|
|
51
|
+
};
|
|
52
|
+
exports.isUserToken = isUserToken;
|
|
53
|
+
const TenantWithUserLogin_possibleTypes = ['TenantWithUserLogin'];
|
|
54
|
+
const isTenantWithUserLogin = (obj) => {
|
|
55
|
+
if (!obj?.__typename)
|
|
56
|
+
throw new Error('__typename is missing in "isTenantWithUserLogin"');
|
|
57
|
+
return TenantWithUserLogin_possibleTypes.includes(obj.__typename);
|
|
58
|
+
};
|
|
59
|
+
exports.isTenantWithUserLogin = isTenantWithUserLogin;
|
|
60
|
+
const UriAvailableType_possibleTypes = ['UriAvailableType'];
|
|
61
|
+
const isUriAvailableType = (obj) => {
|
|
62
|
+
if (!obj?.__typename)
|
|
63
|
+
throw new Error('__typename is missing in "isUriAvailableType"');
|
|
64
|
+
return UriAvailableType_possibleTypes.includes(obj.__typename);
|
|
65
|
+
};
|
|
66
|
+
exports.isUriAvailableType = isUriAvailableType;
|
|
67
|
+
const Agreement_possibleTypes = ['Agreement'];
|
|
68
|
+
const isAgreement = (obj) => {
|
|
69
|
+
if (!obj?.__typename)
|
|
70
|
+
throw new Error('__typename is missing in "isAgreement"');
|
|
71
|
+
return Agreement_possibleTypes.includes(obj.__typename);
|
|
72
|
+
};
|
|
73
|
+
exports.isAgreement = isAgreement;
|
|
74
|
+
const BillEntity_possibleTypes = ['BillEntity'];
|
|
75
|
+
const isBillEntity = (obj) => {
|
|
76
|
+
if (!obj?.__typename)
|
|
77
|
+
throw new Error('__typename is missing in "isBillEntity"');
|
|
78
|
+
return BillEntity_possibleTypes.includes(obj.__typename);
|
|
79
|
+
};
|
|
80
|
+
exports.isBillEntity = isBillEntity;
|
|
81
|
+
const InvoiceItem_possibleTypes = ['InvoiceItem'];
|
|
82
|
+
const isInvoiceItem = (obj) => {
|
|
83
|
+
if (!obj?.__typename)
|
|
84
|
+
throw new Error('__typename is missing in "isInvoiceItem"');
|
|
85
|
+
return InvoiceItem_possibleTypes.includes(obj.__typename);
|
|
86
|
+
};
|
|
87
|
+
exports.isInvoiceItem = isInvoiceItem;
|
|
88
|
+
const Payment_possibleTypes = ['Payment'];
|
|
89
|
+
const isPayment = (obj) => {
|
|
90
|
+
if (!obj?.__typename)
|
|
91
|
+
throw new Error('__typename is missing in "isPayment"');
|
|
92
|
+
return Payment_possibleTypes.includes(obj.__typename);
|
|
93
|
+
};
|
|
94
|
+
exports.isPayment = isPayment;
|
|
95
|
+
const PlaFeature_possibleTypes = ['PlaFeature'];
|
|
96
|
+
const isPlaFeature = (obj) => {
|
|
97
|
+
if (!obj?.__typename)
|
|
98
|
+
throw new Error('__typename is missing in "isPlaFeature"');
|
|
99
|
+
return PlaFeature_possibleTypes.includes(obj.__typename);
|
|
100
|
+
};
|
|
101
|
+
exports.isPlaFeature = isPlaFeature;
|
|
102
|
+
const Plan_possibleTypes = ['Plan'];
|
|
103
|
+
const isPlan = (obj) => {
|
|
104
|
+
if (!obj?.__typename)
|
|
105
|
+
throw new Error('__typename is missing in "isPlan"');
|
|
106
|
+
return Plan_possibleTypes.includes(obj.__typename);
|
|
107
|
+
};
|
|
108
|
+
exports.isPlan = isPlan;
|
|
109
|
+
const PlanPrice_possibleTypes = ['PlanPrice'];
|
|
110
|
+
const isPlanPrice = (obj) => {
|
|
111
|
+
if (!obj?.__typename)
|
|
112
|
+
throw new Error('__typename is missing in "isPlanPrice"');
|
|
113
|
+
return PlanPrice_possibleTypes.includes(obj.__typename);
|
|
114
|
+
};
|
|
115
|
+
exports.isPlanPrice = isPlanPrice;
|
|
116
|
+
const Invoice_possibleTypes = ['Invoice'];
|
|
117
|
+
const isInvoice = (obj) => {
|
|
118
|
+
if (!obj?.__typename)
|
|
119
|
+
throw new Error('__typename is missing in "isInvoice"');
|
|
120
|
+
return Invoice_possibleTypes.includes(obj.__typename);
|
|
121
|
+
};
|
|
122
|
+
exports.isInvoice = isInvoice;
|
|
123
|
+
const SubscriptionInvoice_possibleTypes = ['SubscriptionInvoice'];
|
|
124
|
+
const isSubscriptionInvoice = (obj) => {
|
|
125
|
+
if (!obj?.__typename)
|
|
126
|
+
throw new Error('__typename is missing in "isSubscriptionInvoice"');
|
|
127
|
+
return SubscriptionInvoice_possibleTypes.includes(obj.__typename);
|
|
128
|
+
};
|
|
129
|
+
exports.isSubscriptionInvoice = isSubscriptionInvoice;
|
|
130
|
+
const PlanSubscription_possibleTypes = ['PlanSubscription'];
|
|
131
|
+
const isPlanSubscription = (obj) => {
|
|
132
|
+
if (!obj?.__typename)
|
|
133
|
+
throw new Error('__typename is missing in "isPlanSubscription"');
|
|
134
|
+
return PlanSubscription_possibleTypes.includes(obj.__typename);
|
|
135
|
+
};
|
|
136
|
+
exports.isPlanSubscription = isPlanSubscription;
|
|
137
|
+
const SubscriptionPayment_possibleTypes = ['SubscriptionPayment'];
|
|
138
|
+
const isSubscriptionPayment = (obj) => {
|
|
139
|
+
if (!obj?.__typename)
|
|
140
|
+
throw new Error('__typename is missing in "isSubscriptionPayment"');
|
|
141
|
+
return SubscriptionPayment_possibleTypes.includes(obj.__typename);
|
|
142
|
+
};
|
|
143
|
+
exports.isSubscriptionPayment = isSubscriptionPayment;
|
|
144
|
+
const AWSS3File_possibleTypes = ['AWSS3File'];
|
|
145
|
+
const isAWSS3File = (obj) => {
|
|
146
|
+
if (!obj?.__typename)
|
|
147
|
+
throw new Error('__typename is missing in "isAWSS3File"');
|
|
148
|
+
return AWSS3File_possibleTypes.includes(obj.__typename);
|
|
149
|
+
};
|
|
150
|
+
exports.isAWSS3File = isAWSS3File;
|
|
151
|
+
const HttpRequestField_possibleTypes = ['HttpRequestField'];
|
|
152
|
+
const isHttpRequestField = (obj) => {
|
|
153
|
+
if (!obj?.__typename)
|
|
154
|
+
throw new Error('__typename is missing in "isHttpRequestField"');
|
|
155
|
+
return HttpRequestField_possibleTypes.includes(obj.__typename);
|
|
156
|
+
};
|
|
157
|
+
exports.isHttpRequestField = isHttpRequestField;
|
|
158
|
+
const AWSS3UploadUrl_possibleTypes = ['AWSS3UploadUrl'];
|
|
159
|
+
const isAWSS3UploadUrl = (obj) => {
|
|
160
|
+
if (!obj?.__typename)
|
|
161
|
+
throw new Error('__typename is missing in "isAWSS3UploadUrl"');
|
|
162
|
+
return AWSS3UploadUrl_possibleTypes.includes(obj.__typename);
|
|
163
|
+
};
|
|
164
|
+
exports.isAWSS3UploadUrl = isAWSS3UploadUrl;
|
|
165
|
+
const AWSS3CallResult_possibleTypes = ['AWSS3CallResult'];
|
|
166
|
+
const isAWSS3CallResult = (obj) => {
|
|
167
|
+
if (!obj?.__typename)
|
|
168
|
+
throw new Error('__typename is missing in "isAWSS3CallResult"');
|
|
169
|
+
return AWSS3CallResult_possibleTypes.includes(obj.__typename);
|
|
170
|
+
};
|
|
171
|
+
exports.isAWSS3CallResult = isAWSS3CallResult;
|
|
172
|
+
const BrandStats_possibleTypes = ['BrandStats'];
|
|
173
|
+
const isBrandStats = (obj) => {
|
|
174
|
+
if (!obj?.__typename)
|
|
175
|
+
throw new Error('__typename is missing in "isBrandStats"');
|
|
176
|
+
return BrandStats_possibleTypes.includes(obj.__typename);
|
|
177
|
+
};
|
|
178
|
+
exports.isBrandStats = isBrandStats;
|
|
179
|
+
const BrandTranslation_possibleTypes = ['BrandTranslation'];
|
|
180
|
+
const isBrandTranslation = (obj) => {
|
|
181
|
+
if (!obj?.__typename)
|
|
182
|
+
throw new Error('__typename is missing in "isBrandTranslation"');
|
|
183
|
+
return BrandTranslation_possibleTypes.includes(obj.__typename);
|
|
184
|
+
};
|
|
185
|
+
exports.isBrandTranslation = isBrandTranslation;
|
|
186
|
+
const Brand_possibleTypes = ['Brand'];
|
|
187
|
+
const isBrand = (obj) => {
|
|
188
|
+
if (!obj?.__typename)
|
|
189
|
+
throw new Error('__typename is missing in "isBrand"');
|
|
190
|
+
return Brand_possibleTypes.includes(obj.__typename);
|
|
191
|
+
};
|
|
192
|
+
exports.isBrand = isBrand;
|
|
193
|
+
const Sponsor_possibleTypes = ['Sponsor'];
|
|
194
|
+
const isSponsor = (obj) => {
|
|
195
|
+
if (!obj?.__typename)
|
|
196
|
+
throw new Error('__typename is missing in "isSponsor"');
|
|
197
|
+
return Sponsor_possibleTypes.includes(obj.__typename);
|
|
198
|
+
};
|
|
199
|
+
exports.isSponsor = isSponsor;
|
|
200
|
+
const Industry_possibleTypes = ['Industry'];
|
|
201
|
+
const isIndustry = (obj) => {
|
|
202
|
+
if (!obj?.__typename)
|
|
203
|
+
throw new Error('__typename is missing in "isIndustry"');
|
|
204
|
+
return Industry_possibleTypes.includes(obj.__typename);
|
|
205
|
+
};
|
|
206
|
+
exports.isIndustry = isIndustry;
|
|
207
|
+
const Athlete_possibleTypes = ['Athlete'];
|
|
208
|
+
const isAthlete = (obj) => {
|
|
209
|
+
if (!obj?.__typename)
|
|
210
|
+
throw new Error('__typename is missing in "isAthlete"');
|
|
211
|
+
return Athlete_possibleTypes.includes(obj.__typename);
|
|
212
|
+
};
|
|
213
|
+
exports.isAthlete = isAthlete;
|
|
214
|
+
const Sport_possibleTypes = ['Sport'];
|
|
215
|
+
const isSport = (obj) => {
|
|
216
|
+
if (!obj?.__typename)
|
|
217
|
+
throw new Error('__typename is missing in "isSport"');
|
|
218
|
+
return Sport_possibleTypes.includes(obj.__typename);
|
|
219
|
+
};
|
|
220
|
+
exports.isSport = isSport;
|
|
221
|
+
const Query_possibleTypes = ['Query'];
|
|
222
|
+
const isQuery = (obj) => {
|
|
223
|
+
if (!obj?.__typename)
|
|
224
|
+
throw new Error('__typename is missing in "isQuery"');
|
|
225
|
+
return Query_possibleTypes.includes(obj.__typename);
|
|
226
|
+
};
|
|
227
|
+
exports.isQuery = isQuery;
|
|
228
|
+
const Mutation_possibleTypes = ['Mutation'];
|
|
229
|
+
const isMutation = (obj) => {
|
|
230
|
+
if (!obj?.__typename)
|
|
231
|
+
throw new Error('__typename is missing in "isMutation"');
|
|
232
|
+
return Mutation_possibleTypes.includes(obj.__typename);
|
|
233
|
+
};
|
|
234
|
+
exports.isMutation = isMutation;
|
|
235
|
+
//# sourceMappingURL=schema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../../libs/vtx-backend-client/src/client/schema.ts"],"names":[],"mappings":"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"}
|