@vertikalx/vtx-backend-client 1.0.0-dev.18 → 1.0.0-dev.19
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/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-base-api.d.ts +5 -1
- package/src/api/vtx-base-api.js +229 -2
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/schema.d.ts +113 -2
- package/src/client/schema.graphql +58 -1
- package/src/client/schema.js +15 -1
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +68 -1
- package/src/client/types.js +216 -39
- package/src/client/types.js.map +1 -1
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/index.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
|
@@ -200,14 +200,35 @@ type SubscriptionPayment {
|
|
|
200
200
|
subscriber: PlanSubscription!
|
|
201
201
|
}
|
|
202
202
|
|
|
203
|
+
type AWSS3File {
|
|
204
|
+
_id: String!
|
|
205
|
+
name: String
|
|
206
|
+
contentType: String
|
|
207
|
+
size: Float
|
|
208
|
+
useType: String
|
|
209
|
+
url: String!
|
|
210
|
+
key: String!
|
|
211
|
+
pendingDelete: Boolean!
|
|
212
|
+
}
|
|
213
|
+
|
|
203
214
|
type HttpRequestField {
|
|
204
215
|
key: String!
|
|
205
216
|
value: String!
|
|
206
217
|
}
|
|
207
218
|
|
|
208
219
|
type AWSS3UploadUrl {
|
|
209
|
-
|
|
220
|
+
uploadUrl: String!
|
|
210
221
|
fields: [HttpRequestField!]!
|
|
222
|
+
downloadUrl: String!
|
|
223
|
+
bucket: String!
|
|
224
|
+
key: String!
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
type AWSS3CallResult {
|
|
228
|
+
httpStatus: Float!
|
|
229
|
+
result: String!
|
|
230
|
+
message: String!
|
|
231
|
+
errors: [String!]
|
|
211
232
|
}
|
|
212
233
|
|
|
213
234
|
type BrandStatsType {
|
|
@@ -224,6 +245,8 @@ type BrandTranslation {
|
|
|
224
245
|
name: String
|
|
225
246
|
slogan: String
|
|
226
247
|
description: String
|
|
248
|
+
logo: AWSS3File
|
|
249
|
+
banner: AWSS3File
|
|
227
250
|
}
|
|
228
251
|
|
|
229
252
|
type Brand {
|
|
@@ -234,6 +257,8 @@ type Brand {
|
|
|
234
257
|
description: String
|
|
235
258
|
approved: Boolean!
|
|
236
259
|
published: Boolean!
|
|
260
|
+
logo: AWSS3File
|
|
261
|
+
banner: AWSS3File
|
|
237
262
|
stats: BrandStatsType
|
|
238
263
|
operatorIds: [String!]
|
|
239
264
|
translations: [BrandTranslation!]
|
|
@@ -297,8 +322,13 @@ type Mutation {
|
|
|
297
322
|
createTenantWithLogin(tenant: CreateTenantInput!): TenantWithUserLogin!
|
|
298
323
|
createTenantUserToken(requestTokenDto: CreateTenantUserTokenDto!): TenantUserTokenWithInfo!
|
|
299
324
|
createTenantUserTokenFromEmailAndUri(requestTokenInfoDto: CreateTenantUserTokenFromEmailAndUriDto!): TenantUserTokenWithInfo!
|
|
325
|
+
refreshTenantToken(dto: RefreshTokenInput!): UserToken!
|
|
300
326
|
createNonTenantedUserWithLogin(user: CreateActiveUserInput!): UserWithToken!
|
|
301
327
|
createNonTenantUserTokenFromEmail(email: String!): UserToken!
|
|
328
|
+
refreshToken(dto: RefreshTokenInput!): UserToken!
|
|
329
|
+
deleteUploadedUseTypeFile(input: AWSS3DeleteUseTypeFileDto!): AWSS3CallResult!
|
|
330
|
+
deleteUploadedBucketFile(input: AWSS3DeleteBucketFileDto!): AWSS3CallResult!
|
|
331
|
+
registerS3UploadedFile(input: AWSS3UploadedFileDto!): AWSS3File!
|
|
302
332
|
createIndustry(input: CreateIndustryDto!): Industry!
|
|
303
333
|
createBrand(input: CreateBrandDto!): Brand!
|
|
304
334
|
registerSponsor(input: RegisterSponsorInput!): Sponsor!
|
|
@@ -330,11 +360,34 @@ input CreateTenantUserTokenFromEmailAndUriDto {
|
|
|
330
360
|
tenant_uri: String!
|
|
331
361
|
}
|
|
332
362
|
|
|
363
|
+
input RefreshTokenInput {
|
|
364
|
+
refreshToken: String!
|
|
365
|
+
}
|
|
366
|
+
|
|
333
367
|
input CreateActiveUserInput {
|
|
334
368
|
loginEmail: String!
|
|
335
369
|
password: String
|
|
336
370
|
}
|
|
337
371
|
|
|
372
|
+
input AWSS3DeleteUseTypeFileDto {
|
|
373
|
+
name: String!
|
|
374
|
+
useType: String!
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
input AWSS3DeleteBucketFileDto {
|
|
378
|
+
key: String!
|
|
379
|
+
bucket: String!
|
|
380
|
+
credentialsId: String
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
input AWSS3UploadedFileDto {
|
|
384
|
+
key: String!
|
|
385
|
+
useType: String!
|
|
386
|
+
contentType: String!
|
|
387
|
+
originalFileName: String
|
|
388
|
+
fileSize: Float
|
|
389
|
+
}
|
|
390
|
+
|
|
338
391
|
input CreateIndustryDto {
|
|
339
392
|
name: String!
|
|
340
393
|
}
|
|
@@ -344,6 +397,8 @@ input CreateBrandDto {
|
|
|
344
397
|
description: String
|
|
345
398
|
slogan: String
|
|
346
399
|
website: String
|
|
400
|
+
logo: AWSS3UploadedFileDto
|
|
401
|
+
banner: AWSS3UploadedFileDto
|
|
347
402
|
translations: [BrandTranslationDto!]
|
|
348
403
|
}
|
|
349
404
|
|
|
@@ -353,6 +408,8 @@ input BrandTranslationDto {
|
|
|
353
408
|
name: String
|
|
354
409
|
description: String
|
|
355
410
|
slogan: String
|
|
411
|
+
logo: AWSS3UploadedFileDto
|
|
412
|
+
banner: AWSS3UploadedFileDto
|
|
356
413
|
}
|
|
357
414
|
|
|
358
415
|
input RegisterSponsorInput {
|
package/src/client/schema.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
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.isBrandStatsType = exports.isAWSS3UploadUrl = exports.isHttpRequestField = exports.isSubscriptionPayment = exports.isPlanSubscription = exports.isSubscriptionInvoice = exports.isInvoice = exports.isPlanPrice = exports.isPlan = exports.isPlaFeature = exports.isPayment = exports.isInvoiceItem = exports.isBillEntity = exports.isAgreement = exports.isTenantUserTokenWithInfo = exports.isTenantWithUserLogin = exports.isUriAvailableType = exports.isTenant = exports.isUserWithToken = exports.isUser = exports.isDomain = exports.isUserToken = exports.isApiKeyWithValue = exports.isApiKey = void 0;
|
|
3
|
+
exports.isMutation = exports.isQuery = exports.isSport = exports.isAthlete = exports.isIndustry = exports.isSponsor = exports.isBrand = exports.isBrandTranslation = exports.isBrandStatsType = 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.isTenantUserTokenWithInfo = exports.isTenantWithUserLogin = exports.isUriAvailableType = exports.isTenant = exports.isUserWithToken = exports.isUser = exports.isDomain = exports.isUserToken = exports.isApiKeyWithValue = exports.isApiKey = void 0;
|
|
4
4
|
const ApiKey_possibleTypes = ['ApiKey'];
|
|
5
5
|
const isApiKey = (obj) => {
|
|
6
6
|
if (!obj?.__typename)
|
|
@@ -148,6 +148,13 @@ const isSubscriptionPayment = (obj) => {
|
|
|
148
148
|
return SubscriptionPayment_possibleTypes.includes(obj.__typename);
|
|
149
149
|
};
|
|
150
150
|
exports.isSubscriptionPayment = isSubscriptionPayment;
|
|
151
|
+
const AWSS3File_possibleTypes = ['AWSS3File'];
|
|
152
|
+
const isAWSS3File = (obj) => {
|
|
153
|
+
if (!obj?.__typename)
|
|
154
|
+
throw new Error('__typename is missing in "isAWSS3File"');
|
|
155
|
+
return AWSS3File_possibleTypes.includes(obj.__typename);
|
|
156
|
+
};
|
|
157
|
+
exports.isAWSS3File = isAWSS3File;
|
|
151
158
|
const HttpRequestField_possibleTypes = ['HttpRequestField'];
|
|
152
159
|
const isHttpRequestField = (obj) => {
|
|
153
160
|
if (!obj?.__typename)
|
|
@@ -162,6 +169,13 @@ const isAWSS3UploadUrl = (obj) => {
|
|
|
162
169
|
return AWSS3UploadUrl_possibleTypes.includes(obj.__typename);
|
|
163
170
|
};
|
|
164
171
|
exports.isAWSS3UploadUrl = isAWSS3UploadUrl;
|
|
172
|
+
const AWSS3CallResult_possibleTypes = ['AWSS3CallResult'];
|
|
173
|
+
const isAWSS3CallResult = (obj) => {
|
|
174
|
+
if (!obj?.__typename)
|
|
175
|
+
throw new Error('__typename is missing in "isAWSS3CallResult"');
|
|
176
|
+
return AWSS3CallResult_possibleTypes.includes(obj.__typename);
|
|
177
|
+
};
|
|
178
|
+
exports.isAWSS3CallResult = isAWSS3CallResult;
|
|
165
179
|
const BrandStatsType_possibleTypes = ['BrandStatsType'];
|
|
166
180
|
const isBrandStatsType = (obj) => {
|
|
167
181
|
if (!obj?.__typename)
|
package/src/client/schema.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../../libs/vtx-backend-client/src/client/schema.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../../libs/vtx-backend-client/src/client/schema.ts"],"names":[],"mappings":"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"}
|
package/src/client/types.d.ts
CHANGED
|
@@ -202,14 +202,35 @@ declare const _default: {
|
|
|
202
202
|
subscriber: number[];
|
|
203
203
|
__typename: number[];
|
|
204
204
|
};
|
|
205
|
+
AWSS3File: {
|
|
206
|
+
_id: number[];
|
|
207
|
+
name: number[];
|
|
208
|
+
contentType: number[];
|
|
209
|
+
size: number[];
|
|
210
|
+
useType: number[];
|
|
211
|
+
url: number[];
|
|
212
|
+
key: number[];
|
|
213
|
+
pendingDelete: number[];
|
|
214
|
+
__typename: number[];
|
|
215
|
+
};
|
|
205
216
|
HttpRequestField: {
|
|
206
217
|
key: number[];
|
|
207
218
|
value: number[];
|
|
208
219
|
__typename: number[];
|
|
209
220
|
};
|
|
210
221
|
AWSS3UploadUrl: {
|
|
211
|
-
|
|
222
|
+
uploadUrl: number[];
|
|
212
223
|
fields: number[];
|
|
224
|
+
downloadUrl: number[];
|
|
225
|
+
bucket: number[];
|
|
226
|
+
key: number[];
|
|
227
|
+
__typename: number[];
|
|
228
|
+
};
|
|
229
|
+
AWSS3CallResult: {
|
|
230
|
+
httpStatus: number[];
|
|
231
|
+
result: number[];
|
|
232
|
+
message: number[];
|
|
233
|
+
errors: number[];
|
|
213
234
|
__typename: number[];
|
|
214
235
|
};
|
|
215
236
|
BrandStatsType: {
|
|
@@ -226,6 +247,8 @@ declare const _default: {
|
|
|
226
247
|
name: number[];
|
|
227
248
|
slogan: number[];
|
|
228
249
|
description: number[];
|
|
250
|
+
logo: number[];
|
|
251
|
+
banner: number[];
|
|
229
252
|
__typename: number[];
|
|
230
253
|
};
|
|
231
254
|
Brand: {
|
|
@@ -236,6 +259,8 @@ declare const _default: {
|
|
|
236
259
|
description: number[];
|
|
237
260
|
approved: number[];
|
|
238
261
|
published: number[];
|
|
262
|
+
logo: number[];
|
|
263
|
+
banner: number[];
|
|
239
264
|
stats: number[];
|
|
240
265
|
operatorIds: number[];
|
|
241
266
|
translations: number[];
|
|
@@ -337,12 +362,27 @@ declare const _default: {
|
|
|
337
362
|
createTenantUserTokenFromEmailAndUri: (number | {
|
|
338
363
|
requestTokenInfoDto: (string | number)[];
|
|
339
364
|
})[];
|
|
365
|
+
refreshTenantToken: (number | {
|
|
366
|
+
dto: (string | number)[];
|
|
367
|
+
})[];
|
|
340
368
|
createNonTenantedUserWithLogin: (number | {
|
|
341
369
|
user: (string | number)[];
|
|
342
370
|
})[];
|
|
343
371
|
createNonTenantUserTokenFromEmail: (number | {
|
|
344
372
|
email: (string | number)[];
|
|
345
373
|
})[];
|
|
374
|
+
refreshToken: (number | {
|
|
375
|
+
dto: (string | number)[];
|
|
376
|
+
})[];
|
|
377
|
+
deleteUploadedUseTypeFile: (number | {
|
|
378
|
+
input: (string | number)[];
|
|
379
|
+
})[];
|
|
380
|
+
deleteUploadedBucketFile: (number | {
|
|
381
|
+
input: (string | number)[];
|
|
382
|
+
})[];
|
|
383
|
+
registerS3UploadedFile: (number | {
|
|
384
|
+
input: (string | number)[];
|
|
385
|
+
})[];
|
|
346
386
|
createIndustry: (number | {
|
|
347
387
|
input: (string | number)[];
|
|
348
388
|
})[];
|
|
@@ -389,11 +429,34 @@ declare const _default: {
|
|
|
389
429
|
tenant_uri: number[];
|
|
390
430
|
__typename: number[];
|
|
391
431
|
};
|
|
432
|
+
RefreshTokenInput: {
|
|
433
|
+
refreshToken: number[];
|
|
434
|
+
__typename: number[];
|
|
435
|
+
};
|
|
392
436
|
CreateActiveUserInput: {
|
|
393
437
|
loginEmail: number[];
|
|
394
438
|
password: number[];
|
|
395
439
|
__typename: number[];
|
|
396
440
|
};
|
|
441
|
+
AWSS3DeleteUseTypeFileDto: {
|
|
442
|
+
name: number[];
|
|
443
|
+
useType: number[];
|
|
444
|
+
__typename: number[];
|
|
445
|
+
};
|
|
446
|
+
AWSS3DeleteBucketFileDto: {
|
|
447
|
+
key: number[];
|
|
448
|
+
bucket: number[];
|
|
449
|
+
credentialsId: number[];
|
|
450
|
+
__typename: number[];
|
|
451
|
+
};
|
|
452
|
+
AWSS3UploadedFileDto: {
|
|
453
|
+
key: number[];
|
|
454
|
+
useType: number[];
|
|
455
|
+
contentType: number[];
|
|
456
|
+
originalFileName: number[];
|
|
457
|
+
fileSize: number[];
|
|
458
|
+
__typename: number[];
|
|
459
|
+
};
|
|
397
460
|
CreateIndustryDto: {
|
|
398
461
|
name: number[];
|
|
399
462
|
__typename: number[];
|
|
@@ -403,6 +466,8 @@ declare const _default: {
|
|
|
403
466
|
description: number[];
|
|
404
467
|
slogan: number[];
|
|
405
468
|
website: number[];
|
|
469
|
+
logo: number[];
|
|
470
|
+
banner: number[];
|
|
406
471
|
translations: number[];
|
|
407
472
|
__typename: number[];
|
|
408
473
|
};
|
|
@@ -412,6 +477,8 @@ declare const _default: {
|
|
|
412
477
|
name: number[];
|
|
413
478
|
description: number[];
|
|
414
479
|
slogan: number[];
|
|
480
|
+
logo: number[];
|
|
481
|
+
banner: number[];
|
|
415
482
|
__typename: number[];
|
|
416
483
|
};
|
|
417
484
|
RegisterSponsorInput: {
|