@visa-check-r/integrations 0.0.51 → 0.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +256 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +206 -26
- package/dist/index.d.ts +206 -26
- package/dist/index.esm.js +244 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +4 -2
package/dist/index.cjs.js
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
4
|
+
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
5
|
+
}) : x)(function(x) {
|
|
6
|
+
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
7
|
+
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
8
|
+
});
|
|
9
|
+
|
|
3
10
|
// src/auth.ts
|
|
4
11
|
var toAsyncTokenProvider = (p) => {
|
|
5
12
|
if (!p) return async () => null;
|
|
@@ -175,6 +182,20 @@ function gqlQueryStringBuilder(query, nestedValues) {
|
|
|
175
182
|
|
|
176
183
|
// src/services/user/schemas/user.schema.ts
|
|
177
184
|
var userSchema = {
|
|
185
|
+
getUserTypeStatusCount: (query) => `
|
|
186
|
+
query getUserTypeStatusCount($userType: UserTypeEnum!){
|
|
187
|
+
getUserTypeStatusCount(userType: $userType) {
|
|
188
|
+
${query}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
`,
|
|
192
|
+
getUserCount: (query) => `
|
|
193
|
+
query getUserCount {
|
|
194
|
+
getUserCount {
|
|
195
|
+
${query}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
`,
|
|
178
199
|
me: (query) => `
|
|
179
200
|
query me {
|
|
180
201
|
me {
|
|
@@ -222,6 +243,18 @@ var userSchema = {
|
|
|
222
243
|
};
|
|
223
244
|
|
|
224
245
|
// src/services/user/user.entity.ts
|
|
246
|
+
var userTypeStatusCountQuery = [
|
|
247
|
+
"active",
|
|
248
|
+
"inactive",
|
|
249
|
+
"total",
|
|
250
|
+
"userType"
|
|
251
|
+
];
|
|
252
|
+
var userCountQuery = [
|
|
253
|
+
"applications",
|
|
254
|
+
"clients",
|
|
255
|
+
"consultants",
|
|
256
|
+
"partners"
|
|
257
|
+
];
|
|
225
258
|
var consultantInviteQuery = [
|
|
226
259
|
"createdAt",
|
|
227
260
|
"token",
|
|
@@ -291,6 +324,18 @@ var userQuery = [
|
|
|
291
324
|
];
|
|
292
325
|
|
|
293
326
|
// src/services/user/types/user.type.ts
|
|
327
|
+
var getUserTypeStatusCountResponse = [
|
|
328
|
+
"userTypeStatusCount"
|
|
329
|
+
];
|
|
330
|
+
var getUserTypeStatusCountResponseNestedFields = {
|
|
331
|
+
userTypeStatusCount: userTypeStatusCountQuery
|
|
332
|
+
};
|
|
333
|
+
var getUserCountResponse = [
|
|
334
|
+
"userCount"
|
|
335
|
+
];
|
|
336
|
+
var getUserCountResponseNestedFields = {
|
|
337
|
+
userCount: userCountQuery
|
|
338
|
+
};
|
|
294
339
|
var meResponseFields = ["user", "userSetting"];
|
|
295
340
|
var meResponseNestedFields = {
|
|
296
341
|
user: userQuery,
|
|
@@ -312,9 +357,36 @@ var deleteUserResponseFields = ["userId"];
|
|
|
312
357
|
|
|
313
358
|
// src/services/user/user.service.ts
|
|
314
359
|
var createUserService = (client) => ({
|
|
360
|
+
async getUserTypeStatusCount(input, fetchFields, option) {
|
|
361
|
+
var _a, _b, _c;
|
|
362
|
+
const res = await client.request(
|
|
363
|
+
userSchema.getUserTypeStatusCount(
|
|
364
|
+
gqlQueryStringBuilder(
|
|
365
|
+
(_a = fetchFields == null ? void 0 : fetchFields.root) != null ? _a : getUserTypeStatusCountResponse,
|
|
366
|
+
(_b = fetchFields == null ? void 0 : fetchFields.nestedFields) != null ? _b : getUserTypeStatusCountResponseNestedFields
|
|
367
|
+
)
|
|
368
|
+
),
|
|
369
|
+
input,
|
|
370
|
+
option
|
|
371
|
+
);
|
|
372
|
+
return (_c = res.data) == null ? void 0 : _c.getUserTypeStatusCount;
|
|
373
|
+
},
|
|
374
|
+
async getUserCount(fetchFields, option) {
|
|
375
|
+
var _a, _b, _c;
|
|
376
|
+
const res = await client.request(
|
|
377
|
+
userSchema.getUserCount(
|
|
378
|
+
gqlQueryStringBuilder(
|
|
379
|
+
(_a = fetchFields == null ? void 0 : fetchFields.root) != null ? _a : getUserCountResponse,
|
|
380
|
+
(_b = fetchFields == null ? void 0 : fetchFields.nestedFields) != null ? _b : getUserCountResponseNestedFields
|
|
381
|
+
)
|
|
382
|
+
),
|
|
383
|
+
{},
|
|
384
|
+
option
|
|
385
|
+
);
|
|
386
|
+
return (_c = res.data) == null ? void 0 : _c.getUserCount;
|
|
387
|
+
},
|
|
315
388
|
async me(fetchFields, option) {
|
|
316
389
|
var _a, _b, _c;
|
|
317
|
-
console.log({ fetchFields });
|
|
318
390
|
const res = await client.request(
|
|
319
391
|
userSchema.me(
|
|
320
392
|
gqlQueryStringBuilder(
|
|
@@ -1500,6 +1572,13 @@ var createVisaProfileChecklistItemService = (client) => ({
|
|
|
1500
1572
|
});
|
|
1501
1573
|
|
|
1502
1574
|
// src/services/profile/profile.entity.ts
|
|
1575
|
+
var visaProfileCountQuery = [
|
|
1576
|
+
"acceptedByConsultant",
|
|
1577
|
+
"assigned",
|
|
1578
|
+
"consultantRequests",
|
|
1579
|
+
"rejectedByConsultant",
|
|
1580
|
+
"total"
|
|
1581
|
+
];
|
|
1503
1582
|
var jobQuery = [
|
|
1504
1583
|
"createdAt",
|
|
1505
1584
|
"error",
|
|
@@ -1607,6 +1686,10 @@ var visaProfileReviewCommentQuery = [
|
|
|
1607
1686
|
];
|
|
1608
1687
|
|
|
1609
1688
|
// src/services/profile/types/visa-profile.type.ts
|
|
1689
|
+
var getVisaProfileCountResponse = ["visaProfileCount"];
|
|
1690
|
+
var getVisaProfileCountResponseNestedFields = {
|
|
1691
|
+
visaProfileCount: visaProfileCountQuery
|
|
1692
|
+
};
|
|
1610
1693
|
var getJobResponse = ["job"];
|
|
1611
1694
|
var getJobResponseNestedFields = {
|
|
1612
1695
|
job: jobQuery
|
|
@@ -1731,6 +1814,13 @@ var deleteVisaApplicationResponseFields = ["visaApplicationId"];
|
|
|
1731
1814
|
|
|
1732
1815
|
// src/services/profile/schemas/visa-profile.schema.ts
|
|
1733
1816
|
var visaProfileSchema = {
|
|
1817
|
+
getVisaProfileCount: (query) => `
|
|
1818
|
+
query getVisaProfileCount {
|
|
1819
|
+
getVisaProfileCount {
|
|
1820
|
+
${query}
|
|
1821
|
+
}
|
|
1822
|
+
}
|
|
1823
|
+
`,
|
|
1734
1824
|
// get job
|
|
1735
1825
|
getJob: (query) => `
|
|
1736
1826
|
query getJob($job: JobInput!) {
|
|
@@ -1794,6 +1884,19 @@ var visaProfileSchema = {
|
|
|
1794
1884
|
|
|
1795
1885
|
// src/services/profile/visa-profile.service.ts
|
|
1796
1886
|
var createVisaProfileService = (client) => ({
|
|
1887
|
+
async getVisaProfileCount(fetchFields, option) {
|
|
1888
|
+
var _a, _b, _c;
|
|
1889
|
+
const res = await client.request(
|
|
1890
|
+
visaProfileSchema.getVisaProfileCount(
|
|
1891
|
+
gqlQueryStringBuilder(
|
|
1892
|
+
(_a = fetchFields == null ? void 0 : fetchFields.root) != null ? _a : getVisaProfileCountResponse,
|
|
1893
|
+
(_b = fetchFields == null ? void 0 : fetchFields.nestedFields) != null ? _b : getVisaProfileCountResponseNestedFields
|
|
1894
|
+
)
|
|
1895
|
+
),
|
|
1896
|
+
option
|
|
1897
|
+
);
|
|
1898
|
+
return (_c = res.data) == null ? void 0 : _c.getVisaProfileCount;
|
|
1899
|
+
},
|
|
1797
1900
|
// job
|
|
1798
1901
|
async getJob(input, fetchFields, option) {
|
|
1799
1902
|
var _a, _b, _c;
|
|
@@ -2383,6 +2486,145 @@ var createVisaProfileReviewCommentService = (client) => ({
|
|
|
2383
2486
|
}
|
|
2384
2487
|
});
|
|
2385
2488
|
|
|
2489
|
+
// src/services/subscription/types/flutter.ts
|
|
2490
|
+
var createCardObjectResponse = ["cardObjectId", "chargeId"];
|
|
2491
|
+
var getFlutterAccessTokenResponse = ["accessToken"];
|
|
2492
|
+
var createCustomerObjectResponse = ["customerObjectId"];
|
|
2493
|
+
|
|
2494
|
+
// src/services/subscription/types/paystack.ts
|
|
2495
|
+
var paystackInitializePaymentResponse = [
|
|
2496
|
+
"access_code",
|
|
2497
|
+
"authorization_url",
|
|
2498
|
+
"reference"
|
|
2499
|
+
];
|
|
2500
|
+
|
|
2501
|
+
// src/services/subscription/schemas/flutter-customer.schema.ts
|
|
2502
|
+
var flutterSchema = {
|
|
2503
|
+
createCardObject: (query) => `
|
|
2504
|
+
mutation createCardObject($userId: String!, $card: CardInput!) {
|
|
2505
|
+
createCardObject(userId: $userId, card: $card) {
|
|
2506
|
+
${query}
|
|
2507
|
+
}
|
|
2508
|
+
}
|
|
2509
|
+
`,
|
|
2510
|
+
getFlutterAccessToken: (query) => `
|
|
2511
|
+
query getFlutterAccessToken($userId: String!) {
|
|
2512
|
+
getFlutterAccessToken(userId: $userId) {
|
|
2513
|
+
${query}
|
|
2514
|
+
}
|
|
2515
|
+
}
|
|
2516
|
+
`,
|
|
2517
|
+
createCustomerObject: (query) => `
|
|
2518
|
+
mutation createCustomerObject($userId: String!, $customer: CustomerInput!) {
|
|
2519
|
+
createCustomerObject(userId: $userId, customer: $customer) {
|
|
2520
|
+
${query}
|
|
2521
|
+
}
|
|
2522
|
+
}
|
|
2523
|
+
`
|
|
2524
|
+
// GetFlutterAccessToken
|
|
2525
|
+
};
|
|
2526
|
+
|
|
2527
|
+
// src/services/subscription/flutterwave.service.ts
|
|
2528
|
+
var createFlutterwaveService = (client) => ({
|
|
2529
|
+
async getFlutterAccessToken(input, fetchFields, option) {
|
|
2530
|
+
var _a, _b;
|
|
2531
|
+
const res = await client.request(
|
|
2532
|
+
flutterSchema.getFlutterAccessToken(
|
|
2533
|
+
gqlQueryStringBuilder(
|
|
2534
|
+
(_a = fetchFields == null ? void 0 : fetchFields.root) != null ? _a : getFlutterAccessTokenResponse
|
|
2535
|
+
)
|
|
2536
|
+
),
|
|
2537
|
+
input,
|
|
2538
|
+
option
|
|
2539
|
+
);
|
|
2540
|
+
return (_b = res.data) == null ? void 0 : _b.getFlutterAccessToken;
|
|
2541
|
+
},
|
|
2542
|
+
async createCardObject(input, fetchFields, option) {
|
|
2543
|
+
var _a, _b;
|
|
2544
|
+
const res = await client.request(
|
|
2545
|
+
flutterSchema.createCardObject(
|
|
2546
|
+
gqlQueryStringBuilder(
|
|
2547
|
+
(_a = fetchFields == null ? void 0 : fetchFields.root) != null ? _a : createCardObjectResponse
|
|
2548
|
+
)
|
|
2549
|
+
),
|
|
2550
|
+
input,
|
|
2551
|
+
option
|
|
2552
|
+
);
|
|
2553
|
+
return (_b = res.data) == null ? void 0 : _b.createCardObject;
|
|
2554
|
+
},
|
|
2555
|
+
async createCustomerObject(input, fetchFields, option) {
|
|
2556
|
+
var _a, _b;
|
|
2557
|
+
const res = await client.request(
|
|
2558
|
+
flutterSchema.createCustomerObject(
|
|
2559
|
+
gqlQueryStringBuilder(
|
|
2560
|
+
(_a = fetchFields == null ? void 0 : fetchFields.root) != null ? _a : createCustomerObjectResponse
|
|
2561
|
+
)
|
|
2562
|
+
),
|
|
2563
|
+
input,
|
|
2564
|
+
option
|
|
2565
|
+
);
|
|
2566
|
+
return (_b = res.data) == null ? void 0 : _b.createCustomerObject;
|
|
2567
|
+
}
|
|
2568
|
+
});
|
|
2569
|
+
|
|
2570
|
+
// src/services/subscription/encrypt-data.ts
|
|
2571
|
+
async function encryptAES(data, token, nonce) {
|
|
2572
|
+
var _a, _b;
|
|
2573
|
+
if (nonce.length !== 12) {
|
|
2574
|
+
throw new Error("Nonce must be exactly 12 characters long");
|
|
2575
|
+
}
|
|
2576
|
+
const cryptoSubtle = ((_a = globalThis.crypto) == null ? void 0 : _a.subtle) || ((_b = __require("crypto").webcrypto) == null ? void 0 : _b.subtle);
|
|
2577
|
+
if (!cryptoSubtle) {
|
|
2578
|
+
throw new Error("Crypto API is not available in this environment.");
|
|
2579
|
+
}
|
|
2580
|
+
const decodedKeyBytes = Uint8Array.from(atob(token), (c) => c.charCodeAt(0));
|
|
2581
|
+
const key = await cryptoSubtle.importKey(
|
|
2582
|
+
"raw",
|
|
2583
|
+
decodedKeyBytes,
|
|
2584
|
+
{ name: "AES-GCM" },
|
|
2585
|
+
false,
|
|
2586
|
+
["encrypt"]
|
|
2587
|
+
);
|
|
2588
|
+
const iv = new TextEncoder().encode(nonce);
|
|
2589
|
+
const encryptedData = await cryptoSubtle.encrypt(
|
|
2590
|
+
{
|
|
2591
|
+
name: "AES-GCM",
|
|
2592
|
+
iv
|
|
2593
|
+
},
|
|
2594
|
+
key,
|
|
2595
|
+
new TextEncoder().encode(data)
|
|
2596
|
+
);
|
|
2597
|
+
return btoa(String.fromCharCode(...new Uint8Array(encryptedData)));
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2600
|
+
// src/services/subscription/schemas/paystack.ts
|
|
2601
|
+
var paystackSchema = {
|
|
2602
|
+
paystackInitializePayment: (query) => `
|
|
2603
|
+
mutation paystackInitializePayment($userId: String!) {
|
|
2604
|
+
paystackInitializePayment(userId: $userId) {
|
|
2605
|
+
${query}
|
|
2606
|
+
}
|
|
2607
|
+
}
|
|
2608
|
+
`
|
|
2609
|
+
};
|
|
2610
|
+
|
|
2611
|
+
// src/services/subscription/paystack.service.ts
|
|
2612
|
+
var createPaystackService = (client) => ({
|
|
2613
|
+
async paystackInitializePayment(input, fetchFields, option) {
|
|
2614
|
+
var _a, _b;
|
|
2615
|
+
const res = await client.request(
|
|
2616
|
+
paystackSchema.paystackInitializePayment(
|
|
2617
|
+
gqlQueryStringBuilder(
|
|
2618
|
+
(_a = fetchFields == null ? void 0 : fetchFields.root) != null ? _a : paystackInitializePaymentResponse
|
|
2619
|
+
)
|
|
2620
|
+
),
|
|
2621
|
+
input,
|
|
2622
|
+
option
|
|
2623
|
+
);
|
|
2624
|
+
return (_b = res.data) == null ? void 0 : _b.paystackInitializePayment;
|
|
2625
|
+
}
|
|
2626
|
+
});
|
|
2627
|
+
|
|
2386
2628
|
exports.AuthenticationError = AuthenticationError;
|
|
2387
2629
|
exports.GraphQLClient = GraphQLClient;
|
|
2388
2630
|
exports.NetworkError = NetworkError;
|
|
@@ -2395,6 +2637,7 @@ exports._getVisaProfileReviewCommentResponseNestedFields = _getVisaProfileReview
|
|
|
2395
2637
|
exports.compose = compose;
|
|
2396
2638
|
exports.createActivityLogService = createActivityLogService;
|
|
2397
2639
|
exports.createAuthService = createAuthService;
|
|
2640
|
+
exports.createCardObjectResponse = createCardObjectResponse;
|
|
2398
2641
|
exports.createChecklistItemResponse = createChecklistItemResponse;
|
|
2399
2642
|
exports.createChecklistItemResponseNestedFields = createChecklistItemResponseNestedFields;
|
|
2400
2643
|
exports.createChecklistItemService = createChecklistItemService;
|
|
@@ -2402,6 +2645,9 @@ exports.createConsultantAssignmentResponseFields = createConsultantAssignmentRes
|
|
|
2402
2645
|
exports.createConsultantAssignmentResponseNestedFields = createConsultantAssignmentResponseNestedFields;
|
|
2403
2646
|
exports.createConsultantAssignmentService = createConsultantAssignmentService;
|
|
2404
2647
|
exports.createConsultantInviteService = createConsultantInviteService;
|
|
2648
|
+
exports.createCustomerObjectResponse = createCustomerObjectResponse;
|
|
2649
|
+
exports.createFlutterwaveService = createFlutterwaveService;
|
|
2650
|
+
exports.createPaystackService = createPaystackService;
|
|
2405
2651
|
exports.createReadinessScoreReviewResponseFields = createReadinessScoreReviewResponseFields;
|
|
2406
2652
|
exports.createReadinessScoreReviewResponseNestedFields = createReadinessScoreReviewResponseNestedFields;
|
|
2407
2653
|
exports.createReadinessScoreReviewService = createReadinessScoreReviewService;
|
|
@@ -2437,6 +2683,7 @@ exports.deleteVisaApplicationResponseFields = deleteVisaApplicationResponseField
|
|
|
2437
2683
|
exports.deleteVisaProfileChecklistItemResponse = deleteVisaProfileChecklistItemResponse;
|
|
2438
2684
|
exports.deleteVisaProfileResponse = deleteVisaProfileResponse;
|
|
2439
2685
|
exports.deleteVisaProfileReviewCommentResponseFields = deleteVisaProfileReviewCommentResponseFields;
|
|
2686
|
+
exports.encryptAES = encryptAES;
|
|
2440
2687
|
exports.generateSOPResponse = generateSOPResponse;
|
|
2441
2688
|
exports.generateSOPResponseNestedFields = generateSOPResponseNestedFields;
|
|
2442
2689
|
exports.getActivityLogResponseFields = getActivityLogResponseFields;
|
|
@@ -2446,22 +2693,29 @@ exports.getChecklistItemResponseNestedFields = getChecklistItemResponseNestedFie
|
|
|
2446
2693
|
exports.getConsultantAssignmentCountResponseFields = getConsultantAssignmentCountResponseFields;
|
|
2447
2694
|
exports.getConsultantAssignmentResponseFields = getConsultantAssignmentResponseFields;
|
|
2448
2695
|
exports.getConsultantAssignmentResponseNestedFields = getConsultantAssignmentResponseNestedFields;
|
|
2696
|
+
exports.getFlutterAccessTokenResponse = getFlutterAccessTokenResponse;
|
|
2449
2697
|
exports.getGeneratedSOPResponse = getGeneratedSOPResponse;
|
|
2450
2698
|
exports.getGeneratedSOPResponseNestedFields = getGeneratedSOPResponseNestedFields;
|
|
2451
2699
|
exports.getJobResponse = getJobResponse;
|
|
2452
2700
|
exports.getJobResponseNestedFields = getJobResponseNestedFields;
|
|
2453
2701
|
exports.getReadinessScoreReviewResponseFields = getReadinessScoreReviewResponseFields;
|
|
2454
2702
|
exports.getReadinessScoreReviewResponseNestedFields = getReadinessScoreReviewResponseNestedFields;
|
|
2703
|
+
exports.getUserCountResponse = getUserCountResponse;
|
|
2704
|
+
exports.getUserCountResponseNestedFields = getUserCountResponseNestedFields;
|
|
2455
2705
|
exports.getUserResponseFields = getUserResponseFields;
|
|
2456
2706
|
exports.getUserResponseNestedFields = getUserResponseNestedFields;
|
|
2457
2707
|
exports.getUserSettingResponseFields = getUserSettingResponseFields;
|
|
2458
2708
|
exports.getUserSettingResponseNestedFields = getUserSettingResponseNestedFields;
|
|
2709
|
+
exports.getUserTypeStatusCountResponse = getUserTypeStatusCountResponse;
|
|
2710
|
+
exports.getUserTypeStatusCountResponseNestedFields = getUserTypeStatusCountResponseNestedFields;
|
|
2459
2711
|
exports.getVisaApplicationResponseFields = getVisaApplicationResponseFields;
|
|
2460
2712
|
exports.getVisaApplicationResponseNestedFields = getVisaApplicationResponseNestedFields;
|
|
2461
2713
|
exports.getVisaProfileChecklistItemResponse = getVisaProfileChecklistItemResponse;
|
|
2462
2714
|
exports.getVisaProfileChecklistItemResponseNestedFields = getVisaProfileChecklistItemResponseNestedFields;
|
|
2463
2715
|
exports.getVisaProfileChecklistItemsByChecklistResponse = getVisaProfileChecklistItemsByChecklistResponse;
|
|
2464
2716
|
exports.getVisaProfileChecklistItemsByChecklistResponseNestedFields = getVisaProfileChecklistItemsByChecklistResponseNestedFields;
|
|
2717
|
+
exports.getVisaProfileCountResponse = getVisaProfileCountResponse;
|
|
2718
|
+
exports.getVisaProfileCountResponseNestedFields = getVisaProfileCountResponseNestedFields;
|
|
2465
2719
|
exports.getVisaProfileResponse = getVisaProfileResponse;
|
|
2466
2720
|
exports.getVisaProfileResponseNestedFields = getVisaProfileResponseNestedFields;
|
|
2467
2721
|
exports.getVisaProfileReviewCommentResponseFields = getVisaProfileReviewCommentResponseFields;
|
|
@@ -2487,6 +2741,7 @@ exports.listVisaProfilesResponseNestedFields = listVisaProfilesResponseNestedFie
|
|
|
2487
2741
|
exports.loginResponseFields = loginResponseFields;
|
|
2488
2742
|
exports.meResponseFields = meResponseFields;
|
|
2489
2743
|
exports.meResponseNestedFields = meResponseNestedFields;
|
|
2744
|
+
exports.paystackInitializePaymentResponse = paystackInitializePaymentResponse;
|
|
2490
2745
|
exports.resetPasswordResponseFields = resetPasswordResponseFields;
|
|
2491
2746
|
exports.sendOTPResponseFields = sendOTPResponseFields;
|
|
2492
2747
|
exports.signUpResponseFields = signUpResponseFields;
|