@vertikalx/vtx-backend-client 1.0.0-dev.14 → 1.0.0-dev.15
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/client/runtime/createClient.d.ts +10 -4
- package/src/client/runtime/generateGraphqlOperation.d.ts +1 -1
- package/src/client/schema.d.ts +302 -1
- package/src/client/schema.graphql +135 -6
- package/src/client/schema.js +78 -1
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +131 -2
- package/src/client/types.js +374 -31
- package/src/client/types.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -10,8 +10,14 @@ export type ClientOptions = Omit<RequestInit, 'body' | 'headers'> & {
|
|
|
10
10
|
fetch?: Function;
|
|
11
11
|
headers?: Headers;
|
|
12
12
|
};
|
|
13
|
-
export declare const createClient: ({ queryRoot, mutationRoot, subscriptionRoot, ...options }:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
export declare const createClient: ({ queryRoot, mutationRoot, subscriptionRoot, ...options }: Omit<RequestInit, "body" | "headers"> & {
|
|
14
|
+
url?: string | undefined;
|
|
15
|
+
batch?: boolean | BatchOptions | undefined;
|
|
16
|
+
fetcher?: BaseFetcher | undefined;
|
|
17
|
+
fetch?: Function | undefined;
|
|
18
|
+
headers?: Headers | undefined;
|
|
19
|
+
} & {
|
|
20
|
+
queryRoot?: LinkedType | undefined;
|
|
21
|
+
mutationRoot?: LinkedType | undefined;
|
|
22
|
+
subscriptionRoot?: LinkedType | undefined;
|
|
17
23
|
}) => any;
|
|
@@ -26,5 +26,5 @@ export interface GraphqlOperation {
|
|
|
26
26
|
};
|
|
27
27
|
operationName?: string;
|
|
28
28
|
}
|
|
29
|
-
export declare const generateGraphqlOperation: (operation:
|
|
29
|
+
export declare const generateGraphqlOperation: (operation: 'query' | 'mutation' | 'subscription', root: LinkedType, fields?: Fields) => GraphqlOperation;
|
|
30
30
|
export declare const getFieldFromPath: (root: LinkedType | undefined, path: string[]) => LinkedField;
|
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,6 +75,132 @@ 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
|
+
}
|
|
76
204
|
export interface Brand {
|
|
77
205
|
_id: Scalars['String'];
|
|
78
206
|
name: Scalars['String'];
|
|
@@ -136,6 +264,7 @@ export interface Mutation {
|
|
|
136
264
|
export interface ApiKeyGenqlSelection {
|
|
137
265
|
_id?: boolean | number;
|
|
138
266
|
keyName?: boolean | number;
|
|
267
|
+
keyType?: boolean | number;
|
|
139
268
|
readAccess?: boolean | number;
|
|
140
269
|
writeAccess?: boolean | number;
|
|
141
270
|
__typename?: boolean | number;
|
|
@@ -144,6 +273,7 @@ export interface ApiKeyGenqlSelection {
|
|
|
144
273
|
export interface ApiKeyWithValueGenqlSelection {
|
|
145
274
|
_id?: boolean | number;
|
|
146
275
|
keyName?: boolean | number;
|
|
276
|
+
keyType?: boolean | number;
|
|
147
277
|
readAccess?: boolean | number;
|
|
148
278
|
writeAccess?: boolean | number;
|
|
149
279
|
actualKey?: boolean | number;
|
|
@@ -212,6 +342,143 @@ export interface TenantUserTokenWithInfoGenqlSelection {
|
|
|
212
342
|
__typename?: boolean | number;
|
|
213
343
|
__scalar?: boolean | number;
|
|
214
344
|
}
|
|
345
|
+
export interface AgreementGenqlSelection {
|
|
346
|
+
_id?: boolean | number;
|
|
347
|
+
kind?: boolean | number;
|
|
348
|
+
domain?: boolean | number;
|
|
349
|
+
isActiveAgreement?: boolean | number;
|
|
350
|
+
version?: boolean | number;
|
|
351
|
+
publishedDate?: boolean | number;
|
|
352
|
+
unPublishedDate?: boolean | number;
|
|
353
|
+
locked?: boolean | number;
|
|
354
|
+
name?: boolean | number;
|
|
355
|
+
description?: boolean | number;
|
|
356
|
+
content?: boolean | number;
|
|
357
|
+
createdDate?: boolean | number;
|
|
358
|
+
updatedDate?: boolean | number;
|
|
359
|
+
__typename?: boolean | number;
|
|
360
|
+
__scalar?: boolean | number;
|
|
361
|
+
}
|
|
362
|
+
export interface BillEntityGenqlSelection {
|
|
363
|
+
name?: boolean | number;
|
|
364
|
+
taxId?: boolean | number;
|
|
365
|
+
line1?: boolean | number;
|
|
366
|
+
line2?: boolean | number;
|
|
367
|
+
line3?: boolean | number;
|
|
368
|
+
city?: boolean | number;
|
|
369
|
+
state?: boolean | number;
|
|
370
|
+
country?: boolean | number;
|
|
371
|
+
zip?: boolean | number;
|
|
372
|
+
__typename?: boolean | number;
|
|
373
|
+
__scalar?: boolean | number;
|
|
374
|
+
}
|
|
375
|
+
export interface InvoiceItemGenqlSelection {
|
|
376
|
+
_id?: boolean | number;
|
|
377
|
+
unitPrice?: boolean | number;
|
|
378
|
+
unitTax?: boolean | number;
|
|
379
|
+
quantity?: boolean | number;
|
|
380
|
+
unit?: boolean | number;
|
|
381
|
+
itemPrice?: boolean | number;
|
|
382
|
+
itemTotal?: boolean | number;
|
|
383
|
+
__typename?: boolean | number;
|
|
384
|
+
__scalar?: boolean | number;
|
|
385
|
+
}
|
|
386
|
+
export interface PaymentGenqlSelection {
|
|
387
|
+
_id?: boolean | number;
|
|
388
|
+
amount?: boolean | number;
|
|
389
|
+
currency?: boolean | number;
|
|
390
|
+
datePaid?: boolean | number;
|
|
391
|
+
paymentComment?: boolean | number;
|
|
392
|
+
transactionId?: boolean | number;
|
|
393
|
+
processorType?: boolean | number;
|
|
394
|
+
processorReference?: boolean | number;
|
|
395
|
+
paidItemReference?: boolean | number;
|
|
396
|
+
payeeReference?: boolean | number;
|
|
397
|
+
payorReference?: boolean | number;
|
|
398
|
+
paymentMethodType?: boolean | number;
|
|
399
|
+
paymentMethodReference?: boolean | number;
|
|
400
|
+
__typename?: boolean | number;
|
|
401
|
+
__scalar?: boolean | number;
|
|
402
|
+
}
|
|
403
|
+
export interface PlaFeatureGenqlSelection {
|
|
404
|
+
_id?: boolean | number;
|
|
405
|
+
title?: boolean | number;
|
|
406
|
+
description?: boolean | number;
|
|
407
|
+
quantity?: boolean | number;
|
|
408
|
+
quantityUnit?: boolean | number;
|
|
409
|
+
__typename?: boolean | number;
|
|
410
|
+
__scalar?: boolean | number;
|
|
411
|
+
}
|
|
412
|
+
export interface PlanGenqlSelection {
|
|
413
|
+
_id?: boolean | number;
|
|
414
|
+
name?: boolean | number;
|
|
415
|
+
description?: boolean | number;
|
|
416
|
+
prices?: PlanPriceGenqlSelection;
|
|
417
|
+
features?: PlaFeatureGenqlSelection;
|
|
418
|
+
isPublic?: boolean | number;
|
|
419
|
+
active?: boolean | number;
|
|
420
|
+
startOfferingDate?: boolean | number;
|
|
421
|
+
endOfferingDate?: boolean | number;
|
|
422
|
+
termsAndConditions?: boolean | number;
|
|
423
|
+
__typename?: boolean | number;
|
|
424
|
+
__scalar?: boolean | number;
|
|
425
|
+
}
|
|
426
|
+
export interface PlanPriceGenqlSelection {
|
|
427
|
+
_id?: boolean | number;
|
|
428
|
+
currency?: boolean | number;
|
|
429
|
+
price?: boolean | number;
|
|
430
|
+
taxMode?: boolean | number;
|
|
431
|
+
period?: boolean | number;
|
|
432
|
+
customDays?: boolean | number;
|
|
433
|
+
plan?: PlanGenqlSelection;
|
|
434
|
+
__typename?: boolean | number;
|
|
435
|
+
__scalar?: boolean | number;
|
|
436
|
+
}
|
|
437
|
+
export interface InvoiceGenqlSelection {
|
|
438
|
+
_id?: boolean | number;
|
|
439
|
+
invoiceDate?: boolean | number;
|
|
440
|
+
billedEntity?: BillEntityGenqlSelection;
|
|
441
|
+
dueDate?: boolean | number;
|
|
442
|
+
billAmount?: boolean | number;
|
|
443
|
+
tax?: boolean | number;
|
|
444
|
+
total?: boolean | number;
|
|
445
|
+
currency?: boolean | number;
|
|
446
|
+
items?: InvoiceItemGenqlSelection;
|
|
447
|
+
payment?: PaymentGenqlSelection;
|
|
448
|
+
__typename?: boolean | number;
|
|
449
|
+
__scalar?: boolean | number;
|
|
450
|
+
}
|
|
451
|
+
export interface SubscriptionInvoiceGenqlSelection {
|
|
452
|
+
_id?: boolean | number;
|
|
453
|
+
invoice?: InvoiceGenqlSelection;
|
|
454
|
+
billedPlan?: PlanPriceGenqlSelection;
|
|
455
|
+
subscriber?: PlanSubscriptionGenqlSelection;
|
|
456
|
+
__typename?: boolean | number;
|
|
457
|
+
__scalar?: boolean | number;
|
|
458
|
+
}
|
|
459
|
+
export interface PlanSubscriptionGenqlSelection {
|
|
460
|
+
_id?: boolean | number;
|
|
461
|
+
currentPlan?: PlanPriceGenqlSelection;
|
|
462
|
+
billPrice?: boolean | number;
|
|
463
|
+
billCurrency?: boolean | number;
|
|
464
|
+
billPriceComment?: boolean | number;
|
|
465
|
+
lastBillDate?: boolean | number;
|
|
466
|
+
endAccessDate?: boolean | number;
|
|
467
|
+
autoRenew?: boolean | number;
|
|
468
|
+
autoRenewPlan?: PlanPriceGenqlSelection;
|
|
469
|
+
autoRenewDate?: boolean | number;
|
|
470
|
+
payments?: SubscriptionPaymentGenqlSelection;
|
|
471
|
+
invoices?: SubscriptionInvoiceGenqlSelection;
|
|
472
|
+
__typename?: boolean | number;
|
|
473
|
+
__scalar?: boolean | number;
|
|
474
|
+
}
|
|
475
|
+
export interface SubscriptionPaymentGenqlSelection {
|
|
476
|
+
_id?: boolean | number;
|
|
477
|
+
payment?: PaymentGenqlSelection;
|
|
478
|
+
subscriber?: PlanSubscriptionGenqlSelection;
|
|
479
|
+
__typename?: boolean | number;
|
|
480
|
+
__scalar?: boolean | number;
|
|
481
|
+
}
|
|
215
482
|
export interface BrandGenqlSelection {
|
|
216
483
|
_id?: boolean | number;
|
|
217
484
|
name?: boolean | number;
|
|
@@ -369,6 +636,7 @@ export interface CreateTenantInput {
|
|
|
369
636
|
}
|
|
370
637
|
export interface CreateApiKeyInput {
|
|
371
638
|
keyName: Scalars['String'];
|
|
639
|
+
keyType?: Scalars['String'];
|
|
372
640
|
readAccess: Scalars['Boolean'];
|
|
373
641
|
writeAccess: Scalars['Boolean'];
|
|
374
642
|
}
|
|
@@ -449,6 +717,39 @@ export declare const isTenantWithUserLogin: (obj?: {
|
|
|
449
717
|
export declare const isTenantUserTokenWithInfo: (obj?: {
|
|
450
718
|
__typename?: any;
|
|
451
719
|
} | null) => obj is TenantUserTokenWithInfo;
|
|
720
|
+
export declare const isAgreement: (obj?: {
|
|
721
|
+
__typename?: any;
|
|
722
|
+
} | null) => obj is Agreement;
|
|
723
|
+
export declare const isBillEntity: (obj?: {
|
|
724
|
+
__typename?: any;
|
|
725
|
+
} | null) => obj is BillEntity;
|
|
726
|
+
export declare const isInvoiceItem: (obj?: {
|
|
727
|
+
__typename?: any;
|
|
728
|
+
} | null) => obj is InvoiceItem;
|
|
729
|
+
export declare const isPayment: (obj?: {
|
|
730
|
+
__typename?: any;
|
|
731
|
+
} | null) => obj is Payment;
|
|
732
|
+
export declare const isPlaFeature: (obj?: {
|
|
733
|
+
__typename?: any;
|
|
734
|
+
} | null) => obj is PlaFeature;
|
|
735
|
+
export declare const isPlan: (obj?: {
|
|
736
|
+
__typename?: any;
|
|
737
|
+
} | null) => obj is Plan;
|
|
738
|
+
export declare const isPlanPrice: (obj?: {
|
|
739
|
+
__typename?: any;
|
|
740
|
+
} | null) => obj is PlanPrice;
|
|
741
|
+
export declare const isInvoice: (obj?: {
|
|
742
|
+
__typename?: any;
|
|
743
|
+
} | null) => obj is Invoice;
|
|
744
|
+
export declare const isSubscriptionInvoice: (obj?: {
|
|
745
|
+
__typename?: any;
|
|
746
|
+
} | null) => obj is SubscriptionInvoice;
|
|
747
|
+
export declare const isPlanSubscription: (obj?: {
|
|
748
|
+
__typename?: any;
|
|
749
|
+
} | null) => obj is PlanSubscription;
|
|
750
|
+
export declare const isSubscriptionPayment: (obj?: {
|
|
751
|
+
__typename?: any;
|
|
752
|
+
} | null) => obj is SubscriptionPayment;
|
|
452
753
|
export declare const isBrand: (obj?: {
|
|
453
754
|
__typename?: any;
|
|
454
755
|
} | null) => obj is Brand;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type ApiKey {
|
|
2
2
|
_id: String!
|
|
3
3
|
keyName: String!
|
|
4
|
+
keyType: String!
|
|
4
5
|
readAccess: Boolean!
|
|
5
6
|
writeAccess: Boolean!
|
|
6
7
|
}
|
|
@@ -8,6 +9,7 @@ type ApiKey {
|
|
|
8
9
|
type ApiKeyWithValue {
|
|
9
10
|
_id: String!
|
|
10
11
|
keyName: String!
|
|
12
|
+
keyType: String!
|
|
11
13
|
readAccess: Boolean!
|
|
12
14
|
writeAccess: Boolean!
|
|
13
15
|
actualKey: String!
|
|
@@ -67,6 +69,137 @@ type TenantUserTokenWithInfo {
|
|
|
67
69
|
loginEmail: String!
|
|
68
70
|
}
|
|
69
71
|
|
|
72
|
+
type Agreement {
|
|
73
|
+
_id: String!
|
|
74
|
+
kind: String!
|
|
75
|
+
domain: String!
|
|
76
|
+
isActiveAgreement: Boolean!
|
|
77
|
+
version: String!
|
|
78
|
+
publishedDate: DateTime
|
|
79
|
+
unPublishedDate: DateTime
|
|
80
|
+
locked: Boolean!
|
|
81
|
+
name: String!
|
|
82
|
+
description: String
|
|
83
|
+
content: String
|
|
84
|
+
createdDate: DateTime!
|
|
85
|
+
updatedDate: DateTime!
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
"""
|
|
89
|
+
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
|
|
90
|
+
"""
|
|
91
|
+
scalar DateTime
|
|
92
|
+
|
|
93
|
+
type BillEntity {
|
|
94
|
+
name: String!
|
|
95
|
+
taxId: String
|
|
96
|
+
line1: String
|
|
97
|
+
line2: String
|
|
98
|
+
line3: String
|
|
99
|
+
city: String
|
|
100
|
+
state: String
|
|
101
|
+
country: String
|
|
102
|
+
zip: String
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
type InvoiceItem {
|
|
106
|
+
_id: String!
|
|
107
|
+
unitPrice: Float!
|
|
108
|
+
unitTax: Float!
|
|
109
|
+
quantity: Float!
|
|
110
|
+
unit: String!
|
|
111
|
+
itemPrice: Float!
|
|
112
|
+
itemTotal: Float!
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
type Payment {
|
|
116
|
+
_id: String!
|
|
117
|
+
amount: Float!
|
|
118
|
+
currency: String!
|
|
119
|
+
datePaid: DateTime!
|
|
120
|
+
paymentComment: String
|
|
121
|
+
transactionId: String
|
|
122
|
+
processorType: String
|
|
123
|
+
processorReference: String
|
|
124
|
+
paidItemReference: String
|
|
125
|
+
payeeReference: String
|
|
126
|
+
payorReference: String
|
|
127
|
+
paymentMethodType: String
|
|
128
|
+
paymentMethodReference: String
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
type PlaFeature {
|
|
132
|
+
_id: String!
|
|
133
|
+
title: String!
|
|
134
|
+
description: String
|
|
135
|
+
quantity: Float
|
|
136
|
+
quantityUnit: String
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
type Plan {
|
|
140
|
+
_id: String!
|
|
141
|
+
name: String
|
|
142
|
+
description: String
|
|
143
|
+
prices: [PlanPrice!]!
|
|
144
|
+
features: [PlaFeature!]!
|
|
145
|
+
isPublic: Boolean!
|
|
146
|
+
active: Boolean!
|
|
147
|
+
startOfferingDate: DateTime
|
|
148
|
+
endOfferingDate: DateTime
|
|
149
|
+
termsAndConditions: String
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
type PlanPrice {
|
|
153
|
+
_id: String!
|
|
154
|
+
currency: String!
|
|
155
|
+
price: Float!
|
|
156
|
+
taxMode: String!
|
|
157
|
+
period: String!
|
|
158
|
+
customDays: Float
|
|
159
|
+
plan: Plan
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
type Invoice {
|
|
163
|
+
_id: String!
|
|
164
|
+
invoiceDate: DateTime!
|
|
165
|
+
billedEntity: BillEntity!
|
|
166
|
+
dueDate: DateTime!
|
|
167
|
+
billAmount: Float!
|
|
168
|
+
tax: Float!
|
|
169
|
+
total: Float!
|
|
170
|
+
currency: String!
|
|
171
|
+
items: [InvoiceItem!]
|
|
172
|
+
payment: Payment
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
type SubscriptionInvoice {
|
|
176
|
+
_id: String!
|
|
177
|
+
invoice: Invoice!
|
|
178
|
+
billedPlan: PlanPrice!
|
|
179
|
+
subscriber: PlanSubscription!
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
type PlanSubscription {
|
|
183
|
+
_id: String!
|
|
184
|
+
currentPlan: PlanPrice!
|
|
185
|
+
billPrice: Float!
|
|
186
|
+
billCurrency: String!
|
|
187
|
+
billPriceComment: String
|
|
188
|
+
lastBillDate: DateTime!
|
|
189
|
+
endAccessDate: DateTime!
|
|
190
|
+
autoRenew: Boolean!
|
|
191
|
+
autoRenewPlan: PlanPrice
|
|
192
|
+
autoRenewDate: DateTime!
|
|
193
|
+
payments: [SubscriptionPayment!]!
|
|
194
|
+
invoices: [SubscriptionInvoice!]!
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
type SubscriptionPayment {
|
|
198
|
+
_id: String!
|
|
199
|
+
payment: Payment!
|
|
200
|
+
subscriber: PlanSubscription!
|
|
201
|
+
}
|
|
202
|
+
|
|
70
203
|
type Brand {
|
|
71
204
|
_id: String!
|
|
72
205
|
name: String!
|
|
@@ -135,6 +268,7 @@ input CreateTenantInput {
|
|
|
135
268
|
|
|
136
269
|
input CreateApiKeyInput {
|
|
137
270
|
keyName: String!
|
|
271
|
+
keyType: String! = "common"
|
|
138
272
|
readAccess: Boolean!
|
|
139
273
|
writeAccess: Boolean!
|
|
140
274
|
}
|
|
@@ -192,9 +326,4 @@ input RegisterAthleteDto {
|
|
|
192
326
|
team: String
|
|
193
327
|
gender: String!
|
|
194
328
|
mainSport: String!
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
"""
|
|
198
|
-
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
|
|
199
|
-
"""
|
|
200
|
-
scalar DateTime
|
|
329
|
+
}
|
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.isAthlete = exports.isIndustry = exports.isSponsor = exports.isBrand = 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.isAthlete = exports.isIndustry = exports.isSponsor = exports.isBrand = 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)
|
|
@@ -71,6 +71,83 @@ const isTenantUserTokenWithInfo = (obj) => {
|
|
|
71
71
|
return TenantUserTokenWithInfo_possibleTypes.includes(obj.__typename);
|
|
72
72
|
};
|
|
73
73
|
exports.isTenantUserTokenWithInfo = isTenantUserTokenWithInfo;
|
|
74
|
+
const Agreement_possibleTypes = ['Agreement'];
|
|
75
|
+
const isAgreement = (obj) => {
|
|
76
|
+
if (!obj?.__typename)
|
|
77
|
+
throw new Error('__typename is missing in "isAgreement"');
|
|
78
|
+
return Agreement_possibleTypes.includes(obj.__typename);
|
|
79
|
+
};
|
|
80
|
+
exports.isAgreement = isAgreement;
|
|
81
|
+
const BillEntity_possibleTypes = ['BillEntity'];
|
|
82
|
+
const isBillEntity = (obj) => {
|
|
83
|
+
if (!obj?.__typename)
|
|
84
|
+
throw new Error('__typename is missing in "isBillEntity"');
|
|
85
|
+
return BillEntity_possibleTypes.includes(obj.__typename);
|
|
86
|
+
};
|
|
87
|
+
exports.isBillEntity = isBillEntity;
|
|
88
|
+
const InvoiceItem_possibleTypes = ['InvoiceItem'];
|
|
89
|
+
const isInvoiceItem = (obj) => {
|
|
90
|
+
if (!obj?.__typename)
|
|
91
|
+
throw new Error('__typename is missing in "isInvoiceItem"');
|
|
92
|
+
return InvoiceItem_possibleTypes.includes(obj.__typename);
|
|
93
|
+
};
|
|
94
|
+
exports.isInvoiceItem = isInvoiceItem;
|
|
95
|
+
const Payment_possibleTypes = ['Payment'];
|
|
96
|
+
const isPayment = (obj) => {
|
|
97
|
+
if (!obj?.__typename)
|
|
98
|
+
throw new Error('__typename is missing in "isPayment"');
|
|
99
|
+
return Payment_possibleTypes.includes(obj.__typename);
|
|
100
|
+
};
|
|
101
|
+
exports.isPayment = isPayment;
|
|
102
|
+
const PlaFeature_possibleTypes = ['PlaFeature'];
|
|
103
|
+
const isPlaFeature = (obj) => {
|
|
104
|
+
if (!obj?.__typename)
|
|
105
|
+
throw new Error('__typename is missing in "isPlaFeature"');
|
|
106
|
+
return PlaFeature_possibleTypes.includes(obj.__typename);
|
|
107
|
+
};
|
|
108
|
+
exports.isPlaFeature = isPlaFeature;
|
|
109
|
+
const Plan_possibleTypes = ['Plan'];
|
|
110
|
+
const isPlan = (obj) => {
|
|
111
|
+
if (!obj?.__typename)
|
|
112
|
+
throw new Error('__typename is missing in "isPlan"');
|
|
113
|
+
return Plan_possibleTypes.includes(obj.__typename);
|
|
114
|
+
};
|
|
115
|
+
exports.isPlan = isPlan;
|
|
116
|
+
const PlanPrice_possibleTypes = ['PlanPrice'];
|
|
117
|
+
const isPlanPrice = (obj) => {
|
|
118
|
+
if (!obj?.__typename)
|
|
119
|
+
throw new Error('__typename is missing in "isPlanPrice"');
|
|
120
|
+
return PlanPrice_possibleTypes.includes(obj.__typename);
|
|
121
|
+
};
|
|
122
|
+
exports.isPlanPrice = isPlanPrice;
|
|
123
|
+
const Invoice_possibleTypes = ['Invoice'];
|
|
124
|
+
const isInvoice = (obj) => {
|
|
125
|
+
if (!obj?.__typename)
|
|
126
|
+
throw new Error('__typename is missing in "isInvoice"');
|
|
127
|
+
return Invoice_possibleTypes.includes(obj.__typename);
|
|
128
|
+
};
|
|
129
|
+
exports.isInvoice = isInvoice;
|
|
130
|
+
const SubscriptionInvoice_possibleTypes = ['SubscriptionInvoice'];
|
|
131
|
+
const isSubscriptionInvoice = (obj) => {
|
|
132
|
+
if (!obj?.__typename)
|
|
133
|
+
throw new Error('__typename is missing in "isSubscriptionInvoice"');
|
|
134
|
+
return SubscriptionInvoice_possibleTypes.includes(obj.__typename);
|
|
135
|
+
};
|
|
136
|
+
exports.isSubscriptionInvoice = isSubscriptionInvoice;
|
|
137
|
+
const PlanSubscription_possibleTypes = ['PlanSubscription'];
|
|
138
|
+
const isPlanSubscription = (obj) => {
|
|
139
|
+
if (!obj?.__typename)
|
|
140
|
+
throw new Error('__typename is missing in "isPlanSubscription"');
|
|
141
|
+
return PlanSubscription_possibleTypes.includes(obj.__typename);
|
|
142
|
+
};
|
|
143
|
+
exports.isPlanSubscription = isPlanSubscription;
|
|
144
|
+
const SubscriptionPayment_possibleTypes = ['SubscriptionPayment'];
|
|
145
|
+
const isSubscriptionPayment = (obj) => {
|
|
146
|
+
if (!obj?.__typename)
|
|
147
|
+
throw new Error('__typename is missing in "isSubscriptionPayment"');
|
|
148
|
+
return SubscriptionPayment_possibleTypes.includes(obj.__typename);
|
|
149
|
+
};
|
|
150
|
+
exports.isSubscriptionPayment = isSubscriptionPayment;
|
|
74
151
|
const Brand_possibleTypes = ['Brand'];
|
|
75
152
|
const isBrand = (obj) => {
|
|
76
153
|
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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"}
|