wallet 2.3.2 → 2.4.1

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.
Files changed (67) hide show
  1. package/dist/api/apis.d.ts +3 -1
  2. package/dist/api/apis.js +3 -1
  3. package/dist/api/apis.js.map +1 -1
  4. package/dist/api/billingPaymentsApi.d.ts +10 -0
  5. package/dist/api/billingPaymentsApi.js +61 -0
  6. package/dist/api/billingPaymentsApi.js.map +1 -1
  7. package/dist/api/stripeConnectApi.d.ts +54 -0
  8. package/dist/api/stripeConnectApi.js +247 -0
  9. package/dist/api/stripeConnectApi.js.map +1 -0
  10. package/dist/model/merchant.d.ts +5 -0
  11. package/dist/model/merchant.js +25 -0
  12. package/dist/model/merchant.js.map +1 -1
  13. package/dist/model/models.d.ts +16 -0
  14. package/dist/model/models.js +48 -0
  15. package/dist/model/models.js.map +1 -1
  16. package/dist/model/wTBillingChangePlan.d.ts +2 -0
  17. package/dist/model/wTBillingChangePlan.js +5 -0
  18. package/dist/model/wTBillingChangePlan.js.map +1 -1
  19. package/dist/model/wTBillingChangePlanBillingCadence.d.ts +13 -0
  20. package/dist/model/wTBillingChangePlanBillingCadence.js +12 -0
  21. package/dist/model/wTBillingChangePlanBillingCadence.js.map +1 -0
  22. package/dist/model/wTConnectAccountStatus.d.ts +16 -0
  23. package/dist/model/wTConnectAccountStatus.js +43 -0
  24. package/dist/model/wTConnectAccountStatus.js.map +1 -0
  25. package/dist/model/wTConnectMoney.d.ts +11 -0
  26. package/dist/model/wTConnectMoney.js +23 -0
  27. package/dist/model/wTConnectMoney.js.map +1 -0
  28. package/dist/model/wTConnectOnboardingLinkRequest.d.ts +11 -0
  29. package/dist/model/wTConnectOnboardingLinkRequest.js +23 -0
  30. package/dist/model/wTConnectOnboardingLinkRequest.js.map +1 -0
  31. package/dist/model/wTConnectOnboardingLinkResponse.d.ts +11 -0
  32. package/dist/model/wTConnectOnboardingLinkResponse.js +23 -0
  33. package/dist/model/wTConnectOnboardingLinkResponse.js.map +1 -0
  34. package/dist/model/wTConnectOnboardingStatus.d.ts +13 -0
  35. package/dist/model/wTConnectOnboardingStatus.js +12 -0
  36. package/dist/model/wTConnectOnboardingStatus.js.map +1 -0
  37. package/dist/model/wTConnectPaymentsSummary.d.ts +13 -0
  38. package/dist/model/wTConnectPaymentsSummary.js +28 -0
  39. package/dist/model/wTConnectPaymentsSummary.js.map +1 -0
  40. package/dist/model/wTConnectPaymentsSummaryBalance.d.ts +15 -0
  41. package/dist/model/wTConnectPaymentsSummaryBalance.js +23 -0
  42. package/dist/model/wTConnectPaymentsSummaryBalance.js.map +1 -0
  43. package/dist/model/wTFinancingSoftPullRequest.d.ts +14 -0
  44. package/dist/model/wTFinancingSoftPullRequest.js +38 -0
  45. package/dist/model/wTFinancingSoftPullRequest.js.map +1 -0
  46. package/dist/model/wTFinancingSoftPullResponse.d.ts +15 -0
  47. package/dist/model/wTFinancingSoftPullResponse.js +38 -0
  48. package/dist/model/wTFinancingSoftPullResponse.js.map +1 -0
  49. package/dist/model/wTLeadFiConsumerProfile.d.ts +17 -0
  50. package/dist/model/wTLeadFiConsumerProfile.js +38 -0
  51. package/dist/model/wTLeadFiConsumerProfile.js.map +1 -0
  52. package/dist/model/wTLeadFiConsumerProfileAddress.d.ts +17 -0
  53. package/dist/model/wTLeadFiConsumerProfileAddress.js +33 -0
  54. package/dist/model/wTLeadFiConsumerProfileAddress.js.map +1 -0
  55. package/dist/model/wTLeadFiConsumerProfileAssets.d.ts +15 -0
  56. package/dist/model/wTLeadFiConsumerProfileAssets.js +23 -0
  57. package/dist/model/wTLeadFiConsumerProfileAssets.js.map +1 -0
  58. package/dist/model/wTLeadFiConsumerProfileIncome.d.ts +16 -0
  59. package/dist/model/wTLeadFiConsumerProfileIncome.js +28 -0
  60. package/dist/model/wTLeadFiConsumerProfileIncome.js.map +1 -0
  61. package/dist/model/wTLeadFiCreditOffer.d.ts +16 -0
  62. package/dist/model/wTLeadFiCreditOffer.js +48 -0
  63. package/dist/model/wTLeadFiCreditOffer.js.map +1 -0
  64. package/dist/model/wTLeadFiInquiryResult.d.ts +18 -0
  65. package/dist/model/wTLeadFiInquiryResult.js +48 -0
  66. package/dist/model/wTLeadFiInquiryResult.js.map +1 -0
  67. package/package.json +1 -1
@@ -0,0 +1,13 @@
1
+ import { WTConnectPaymentsSummaryBalance } from './wTConnectPaymentsSummaryBalance';
2
+ export declare class WTConnectPaymentsSummary extends null<String, any> {
3
+ 'balance': WTConnectPaymentsSummaryBalance;
4
+ 'recentPayouts': any | null;
5
+ 'recentCharges': any | null;
6
+ static discriminator: string | undefined;
7
+ static attributeTypeMap: Array<{
8
+ name: string;
9
+ baseName: string;
10
+ type: string;
11
+ }>;
12
+ static getAttributeTypeMap(): any;
13
+ }
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WTConnectPaymentsSummary = void 0;
4
+ class WTConnectPaymentsSummary extends null {
5
+ static getAttributeTypeMap() {
6
+ return super.getAttributeTypeMap().concat(WTConnectPaymentsSummary.attributeTypeMap);
7
+ }
8
+ }
9
+ exports.WTConnectPaymentsSummary = WTConnectPaymentsSummary;
10
+ WTConnectPaymentsSummary.discriminator = undefined;
11
+ WTConnectPaymentsSummary.attributeTypeMap = [
12
+ {
13
+ "name": "balance",
14
+ "baseName": "balance",
15
+ "type": "WTConnectPaymentsSummaryBalance"
16
+ },
17
+ {
18
+ "name": "recentPayouts",
19
+ "baseName": "recentPayouts",
20
+ "type": "any"
21
+ },
22
+ {
23
+ "name": "recentCharges",
24
+ "baseName": "recentCharges",
25
+ "type": "any"
26
+ }
27
+ ];
28
+ //# sourceMappingURL=wTConnectPaymentsSummary.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wTConnectPaymentsSummary.js","sourceRoot":"","sources":["../../model/wTConnectPaymentsSummary.ts"],"names":[],"mappings":";;;AAeA,MAAa,wBAAyB,SAAQ,IAAiB;IAwB3D,MAAM,CAAC,mBAAmB;QACtB,OAAO,KAAK,CAAC,mBAAmB,EAAE,CAAC,MAAM,CAAC,wBAAwB,CAAC,gBAAgB,CAAC,CAAC;IACzF,CAAC;;AA1BL,4DA2BC;AAtBU,sCAAa,GAAuB,SAAS,CAAC;AAE9C,yCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,KAAK;KAChB;CAAK,CAAC"}
@@ -0,0 +1,15 @@
1
+ export declare class WTConnectPaymentsSummaryBalance {
2
+ 'pending': any | null;
3
+ 'available': any | null;
4
+ static discriminator: string | undefined;
5
+ static attributeTypeMap: Array<{
6
+ name: string;
7
+ baseName: string;
8
+ type: string;
9
+ }>;
10
+ static getAttributeTypeMap(): {
11
+ name: string;
12
+ baseName: string;
13
+ type: string;
14
+ }[];
15
+ }
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WTConnectPaymentsSummaryBalance = void 0;
4
+ class WTConnectPaymentsSummaryBalance {
5
+ static getAttributeTypeMap() {
6
+ return WTConnectPaymentsSummaryBalance.attributeTypeMap;
7
+ }
8
+ }
9
+ exports.WTConnectPaymentsSummaryBalance = WTConnectPaymentsSummaryBalance;
10
+ WTConnectPaymentsSummaryBalance.discriminator = undefined;
11
+ WTConnectPaymentsSummaryBalance.attributeTypeMap = [
12
+ {
13
+ "name": "pending",
14
+ "baseName": "pending",
15
+ "type": "any"
16
+ },
17
+ {
18
+ "name": "available",
19
+ "baseName": "available",
20
+ "type": "any"
21
+ }
22
+ ];
23
+ //# sourceMappingURL=wTConnectPaymentsSummaryBalance.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wTConnectPaymentsSummaryBalance.js","sourceRoot":"","sources":["../../model/wTConnectPaymentsSummaryBalance.ts"],"names":[],"mappings":";;;AAcA,MAAa,+BAA+B;IAkBxC,MAAM,CAAC,mBAAmB;QACtB,OAAO,+BAA+B,CAAC,gBAAgB,CAAC;IAC5D,CAAC;;AApBL,0EAqBC;AAjBU,6CAAa,GAAuB,SAAS,CAAC;AAE9C,gDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,KAAK;KAChB;CAAK,CAAC"}
@@ -0,0 +1,14 @@
1
+ export declare class WTFinancingSoftPullRequest extends null<String, any> {
2
+ 'firstName': any | null;
3
+ 'lastName': any | null;
4
+ 'phoneNumber': any | null;
5
+ 'email': any | null;
6
+ 'disclosureText': any | null;
7
+ static discriminator: string | undefined;
8
+ static attributeTypeMap: Array<{
9
+ name: string;
10
+ baseName: string;
11
+ type: string;
12
+ }>;
13
+ static getAttributeTypeMap(): any;
14
+ }
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WTFinancingSoftPullRequest = void 0;
4
+ class WTFinancingSoftPullRequest extends null {
5
+ static getAttributeTypeMap() {
6
+ return super.getAttributeTypeMap().concat(WTFinancingSoftPullRequest.attributeTypeMap);
7
+ }
8
+ }
9
+ exports.WTFinancingSoftPullRequest = WTFinancingSoftPullRequest;
10
+ WTFinancingSoftPullRequest.discriminator = undefined;
11
+ WTFinancingSoftPullRequest.attributeTypeMap = [
12
+ {
13
+ "name": "firstName",
14
+ "baseName": "firstName",
15
+ "type": "any"
16
+ },
17
+ {
18
+ "name": "lastName",
19
+ "baseName": "lastName",
20
+ "type": "any"
21
+ },
22
+ {
23
+ "name": "phoneNumber",
24
+ "baseName": "phoneNumber",
25
+ "type": "any"
26
+ },
27
+ {
28
+ "name": "email",
29
+ "baseName": "email",
30
+ "type": "any"
31
+ },
32
+ {
33
+ "name": "disclosureText",
34
+ "baseName": "disclosureText",
35
+ "type": "any"
36
+ }
37
+ ];
38
+ //# sourceMappingURL=wTFinancingSoftPullRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wTFinancingSoftPullRequest.js","sourceRoot":"","sources":["../../model/wTFinancingSoftPullRequest.ts"],"names":[],"mappings":";;;AAcA,MAAa,0BAA2B,SAAQ,IAAiB;IAoC7D,MAAM,CAAC,mBAAmB;QACtB,OAAO,KAAK,CAAC,mBAAmB,EAAE,CAAC,MAAM,CAAC,0BAA0B,CAAC,gBAAgB,CAAC,CAAC;IAC3F,CAAC;;AAtCL,gEAuCC;AAhCU,wCAAa,GAAuB,SAAS,CAAC;AAE9C,2CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,gBAAgB;QACxB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,KAAK;KAChB;CAAK,CAAC"}
@@ -0,0 +1,15 @@
1
+ import { WTLeadFiInquiryResult } from './wTLeadFiInquiryResult';
2
+ export declare class WTFinancingSoftPullResponse extends null<String, any> {
3
+ 'authorizationRecordID': any | null;
4
+ 'qualificationTier'?: any | null;
5
+ 'tier'?: any | null;
6
+ 'bureaus': any | null;
7
+ 'result'?: WTLeadFiInquiryResult;
8
+ static discriminator: string | undefined;
9
+ static attributeTypeMap: Array<{
10
+ name: string;
11
+ baseName: string;
12
+ type: string;
13
+ }>;
14
+ static getAttributeTypeMap(): any;
15
+ }
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WTFinancingSoftPullResponse = void 0;
4
+ class WTFinancingSoftPullResponse extends null {
5
+ static getAttributeTypeMap() {
6
+ return super.getAttributeTypeMap().concat(WTFinancingSoftPullResponse.attributeTypeMap);
7
+ }
8
+ }
9
+ exports.WTFinancingSoftPullResponse = WTFinancingSoftPullResponse;
10
+ WTFinancingSoftPullResponse.discriminator = undefined;
11
+ WTFinancingSoftPullResponse.attributeTypeMap = [
12
+ {
13
+ "name": "authorizationRecordID",
14
+ "baseName": "authorizationRecordID",
15
+ "type": "any"
16
+ },
17
+ {
18
+ "name": "qualificationTier",
19
+ "baseName": "qualificationTier",
20
+ "type": "any"
21
+ },
22
+ {
23
+ "name": "tier",
24
+ "baseName": "tier",
25
+ "type": "any"
26
+ },
27
+ {
28
+ "name": "bureaus",
29
+ "baseName": "bureaus",
30
+ "type": "any"
31
+ },
32
+ {
33
+ "name": "result",
34
+ "baseName": "result",
35
+ "type": "WTLeadFiInquiryResult"
36
+ }
37
+ ];
38
+ //# sourceMappingURL=wTFinancingSoftPullResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wTFinancingSoftPullResponse.js","sourceRoot":"","sources":["../../model/wTFinancingSoftPullResponse.ts"],"names":[],"mappings":";;;AAeA,MAAa,2BAA4B,SAAQ,IAAiB;IAoC9D,MAAM,CAAC,mBAAmB;QACtB,OAAO,KAAK,CAAC,mBAAmB,EAAE,CAAC,MAAM,CAAC,2BAA2B,CAAC,gBAAgB,CAAC,CAAC;IAC5F,CAAC;;AAtCL,kEAuCC;AAhCU,yCAAa,GAAuB,SAAS,CAAC;AAE9C,4CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,uBAAuB;QAC/B,UAAU,EAAE,uBAAuB;QACnC,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,uBAAuB;KAClC;CAAK,CAAC"}
@@ -0,0 +1,17 @@
1
+ import { WTLeadFiConsumerProfileAddress } from './wTLeadFiConsumerProfileAddress';
2
+ import { WTLeadFiConsumerProfileAssets } from './wTLeadFiConsumerProfileAssets';
3
+ import { WTLeadFiConsumerProfileIncome } from './wTLeadFiConsumerProfileIncome';
4
+ export declare class WTLeadFiConsumerProfile extends null<String, any> {
5
+ 'age'?: any | null;
6
+ 'phones': any | null;
7
+ 'address'?: WTLeadFiConsumerProfileAddress;
8
+ 'income'?: WTLeadFiConsumerProfileIncome;
9
+ 'assets'?: WTLeadFiConsumerProfileAssets;
10
+ static discriminator: string | undefined;
11
+ static attributeTypeMap: Array<{
12
+ name: string;
13
+ baseName: string;
14
+ type: string;
15
+ }>;
16
+ static getAttributeTypeMap(): any;
17
+ }
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WTLeadFiConsumerProfile = void 0;
4
+ class WTLeadFiConsumerProfile extends null {
5
+ static getAttributeTypeMap() {
6
+ return super.getAttributeTypeMap().concat(WTLeadFiConsumerProfile.attributeTypeMap);
7
+ }
8
+ }
9
+ exports.WTLeadFiConsumerProfile = WTLeadFiConsumerProfile;
10
+ WTLeadFiConsumerProfile.discriminator = undefined;
11
+ WTLeadFiConsumerProfile.attributeTypeMap = [
12
+ {
13
+ "name": "age",
14
+ "baseName": "age",
15
+ "type": "any"
16
+ },
17
+ {
18
+ "name": "phones",
19
+ "baseName": "phones",
20
+ "type": "any"
21
+ },
22
+ {
23
+ "name": "address",
24
+ "baseName": "address",
25
+ "type": "WTLeadFiConsumerProfileAddress"
26
+ },
27
+ {
28
+ "name": "income",
29
+ "baseName": "income",
30
+ "type": "WTLeadFiConsumerProfileIncome"
31
+ },
32
+ {
33
+ "name": "assets",
34
+ "baseName": "assets",
35
+ "type": "WTLeadFiConsumerProfileAssets"
36
+ }
37
+ ];
38
+ //# sourceMappingURL=wTLeadFiConsumerProfile.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wTLeadFiConsumerProfile.js","sourceRoot":"","sources":["../../model/wTLeadFiConsumerProfile.ts"],"names":[],"mappings":";;;AAiBA,MAAa,uBAAwB,SAAQ,IAAiB;IAoC1D,MAAM,CAAC,mBAAmB;QACtB,OAAO,KAAK,CAAC,mBAAmB,EAAE,CAAC,MAAM,CAAC,uBAAuB,CAAC,gBAAgB,CAAC,CAAC;IACxF,CAAC;;AAtCL,0DAuCC;AAhCU,qCAAa,GAAuB,SAAS,CAAC;AAE9C,wCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,gCAAgC;KAC3C;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,+BAA+B;KAC1C;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,+BAA+B;KAC1C;CAAK,CAAC"}
@@ -0,0 +1,17 @@
1
+ export declare class WTLeadFiConsumerProfileAddress {
2
+ 'address'?: any | null;
3
+ 'state'?: any | null;
4
+ 'city'?: any | null;
5
+ 'zip'?: any | null;
6
+ static discriminator: string | undefined;
7
+ static attributeTypeMap: Array<{
8
+ name: string;
9
+ baseName: string;
10
+ type: string;
11
+ }>;
12
+ static getAttributeTypeMap(): {
13
+ name: string;
14
+ baseName: string;
15
+ type: string;
16
+ }[];
17
+ }
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WTLeadFiConsumerProfileAddress = void 0;
4
+ class WTLeadFiConsumerProfileAddress {
5
+ static getAttributeTypeMap() {
6
+ return WTLeadFiConsumerProfileAddress.attributeTypeMap;
7
+ }
8
+ }
9
+ exports.WTLeadFiConsumerProfileAddress = WTLeadFiConsumerProfileAddress;
10
+ WTLeadFiConsumerProfileAddress.discriminator = undefined;
11
+ WTLeadFiConsumerProfileAddress.attributeTypeMap = [
12
+ {
13
+ "name": "address",
14
+ "baseName": "address",
15
+ "type": "any"
16
+ },
17
+ {
18
+ "name": "state",
19
+ "baseName": "state",
20
+ "type": "any"
21
+ },
22
+ {
23
+ "name": "city",
24
+ "baseName": "city",
25
+ "type": "any"
26
+ },
27
+ {
28
+ "name": "zip",
29
+ "baseName": "zip",
30
+ "type": "any"
31
+ }
32
+ ];
33
+ //# sourceMappingURL=wTLeadFiConsumerProfileAddress.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wTLeadFiConsumerProfileAddress.js","sourceRoot":"","sources":["../../model/wTLeadFiConsumerProfileAddress.ts"],"names":[],"mappings":";;;AAcA,MAAa,8BAA8B;IA8BvC,MAAM,CAAC,mBAAmB;QACtB,OAAO,8BAA8B,CAAC,gBAAgB,CAAC;IAC3D,CAAC;;AAhCL,wEAiCC;AA3BU,4CAAa,GAAuB,SAAS,CAAC;AAE9C,+CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,KAAK;KAChB;CAAK,CAAC"}
@@ -0,0 +1,15 @@
1
+ export declare class WTLeadFiConsumerProfileAssets {
2
+ 'retirement'?: any | null;
3
+ 'investable'?: any | null;
4
+ static discriminator: string | undefined;
5
+ static attributeTypeMap: Array<{
6
+ name: string;
7
+ baseName: string;
8
+ type: string;
9
+ }>;
10
+ static getAttributeTypeMap(): {
11
+ name: string;
12
+ baseName: string;
13
+ type: string;
14
+ }[];
15
+ }
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WTLeadFiConsumerProfileAssets = void 0;
4
+ class WTLeadFiConsumerProfileAssets {
5
+ static getAttributeTypeMap() {
6
+ return WTLeadFiConsumerProfileAssets.attributeTypeMap;
7
+ }
8
+ }
9
+ exports.WTLeadFiConsumerProfileAssets = WTLeadFiConsumerProfileAssets;
10
+ WTLeadFiConsumerProfileAssets.discriminator = undefined;
11
+ WTLeadFiConsumerProfileAssets.attributeTypeMap = [
12
+ {
13
+ "name": "retirement",
14
+ "baseName": "retirement",
15
+ "type": "any"
16
+ },
17
+ {
18
+ "name": "investable",
19
+ "baseName": "investable",
20
+ "type": "any"
21
+ }
22
+ ];
23
+ //# sourceMappingURL=wTLeadFiConsumerProfileAssets.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wTLeadFiConsumerProfileAssets.js","sourceRoot":"","sources":["../../model/wTLeadFiConsumerProfileAssets.ts"],"names":[],"mappings":";;;AAcA,MAAa,6BAA6B;IAkBtC,MAAM,CAAC,mBAAmB;QACtB,OAAO,6BAA6B,CAAC,gBAAgB,CAAC;IAC1D,CAAC;;AApBL,sEAqBC;AAjBU,2CAAa,GAAuB,SAAS,CAAC;AAE9C,8CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,KAAK;KAChB;CAAK,CAAC"}
@@ -0,0 +1,16 @@
1
+ export declare class WTLeadFiConsumerProfileIncome {
2
+ 'household'?: any | null;
3
+ 'personal'?: any | null;
4
+ 'estimate'?: any | null;
5
+ static discriminator: string | undefined;
6
+ static attributeTypeMap: Array<{
7
+ name: string;
8
+ baseName: string;
9
+ type: string;
10
+ }>;
11
+ static getAttributeTypeMap(): {
12
+ name: string;
13
+ baseName: string;
14
+ type: string;
15
+ }[];
16
+ }
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WTLeadFiConsumerProfileIncome = void 0;
4
+ class WTLeadFiConsumerProfileIncome {
5
+ static getAttributeTypeMap() {
6
+ return WTLeadFiConsumerProfileIncome.attributeTypeMap;
7
+ }
8
+ }
9
+ exports.WTLeadFiConsumerProfileIncome = WTLeadFiConsumerProfileIncome;
10
+ WTLeadFiConsumerProfileIncome.discriminator = undefined;
11
+ WTLeadFiConsumerProfileIncome.attributeTypeMap = [
12
+ {
13
+ "name": "household",
14
+ "baseName": "household",
15
+ "type": "any"
16
+ },
17
+ {
18
+ "name": "personal",
19
+ "baseName": "personal",
20
+ "type": "any"
21
+ },
22
+ {
23
+ "name": "estimate",
24
+ "baseName": "estimate",
25
+ "type": "any"
26
+ }
27
+ ];
28
+ //# sourceMappingURL=wTLeadFiConsumerProfileIncome.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wTLeadFiConsumerProfileIncome.js","sourceRoot":"","sources":["../../model/wTLeadFiConsumerProfileIncome.ts"],"names":[],"mappings":";;;AAcA,MAAa,6BAA6B;IAwBtC,MAAM,CAAC,mBAAmB;QACtB,OAAO,6BAA6B,CAAC,gBAAgB,CAAC;IAC1D,CAAC;;AA1BL,sEA2BC;AAtBU,2CAAa,GAAuB,SAAS,CAAC;AAE9C,8CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,KAAK;KAChB;CAAK,CAAC"}
@@ -0,0 +1,16 @@
1
+ export declare class WTLeadFiCreditOffer extends null<String, any> {
2
+ 'name'?: any | null;
3
+ 'details'?: any | null;
4
+ 'status'?: any | null;
5
+ 'amount'?: any | null;
6
+ 'contingencies'?: any | null;
7
+ 'debtToIncome'?: any | null;
8
+ 'monthlyPayments'?: any | null;
9
+ static discriminator: string | undefined;
10
+ static attributeTypeMap: Array<{
11
+ name: string;
12
+ baseName: string;
13
+ type: string;
14
+ }>;
15
+ static getAttributeTypeMap(): any;
16
+ }
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WTLeadFiCreditOffer = void 0;
4
+ class WTLeadFiCreditOffer extends null {
5
+ static getAttributeTypeMap() {
6
+ return super.getAttributeTypeMap().concat(WTLeadFiCreditOffer.attributeTypeMap);
7
+ }
8
+ }
9
+ exports.WTLeadFiCreditOffer = WTLeadFiCreditOffer;
10
+ WTLeadFiCreditOffer.discriminator = undefined;
11
+ WTLeadFiCreditOffer.attributeTypeMap = [
12
+ {
13
+ "name": "name",
14
+ "baseName": "name",
15
+ "type": "any"
16
+ },
17
+ {
18
+ "name": "details",
19
+ "baseName": "details",
20
+ "type": "any"
21
+ },
22
+ {
23
+ "name": "status",
24
+ "baseName": "status",
25
+ "type": "any"
26
+ },
27
+ {
28
+ "name": "amount",
29
+ "baseName": "amount",
30
+ "type": "any"
31
+ },
32
+ {
33
+ "name": "contingencies",
34
+ "baseName": "contingencies",
35
+ "type": "any"
36
+ },
37
+ {
38
+ "name": "debtToIncome",
39
+ "baseName": "debtToIncome",
40
+ "type": "any"
41
+ },
42
+ {
43
+ "name": "monthlyPayments",
44
+ "baseName": "monthlyPayments",
45
+ "type": "any"
46
+ }
47
+ ];
48
+ //# sourceMappingURL=wTLeadFiCreditOffer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wTLeadFiCreditOffer.js","sourceRoot":"","sources":["../../model/wTLeadFiCreditOffer.ts"],"names":[],"mappings":";;;AAcA,MAAa,mBAAoB,SAAQ,IAAiB;IAgDtD,MAAM,CAAC,mBAAmB;QACtB,OAAO,KAAK,CAAC,mBAAmB,EAAE,CAAC,MAAM,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,CAAC;IACpF,CAAC;;AAlDL,kDAmDC;AA1CU,iCAAa,GAAuB,SAAS,CAAC;AAE9C,oCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,KAAK;KAChB;CAAK,CAAC"}
@@ -0,0 +1,18 @@
1
+ import { WTLeadFiConsumerProfile } from './wTLeadFiConsumerProfile';
2
+ import { WTLeadFiCreditOffer } from './wTLeadFiCreditOffer';
3
+ export declare class WTLeadFiInquiryResult extends null<String, any> {
4
+ 'code': any | null;
5
+ 'preQualification'?: any | null;
6
+ 'tier'?: any | null;
7
+ 'creditScore'?: any | null;
8
+ 'creditLimit': WTLeadFiCreditOffer;
9
+ 'creditPreApproval': WTLeadFiCreditOffer;
10
+ 'consumerProfile': WTLeadFiConsumerProfile;
11
+ static discriminator: string | undefined;
12
+ static attributeTypeMap: Array<{
13
+ name: string;
14
+ baseName: string;
15
+ type: string;
16
+ }>;
17
+ static getAttributeTypeMap(): any;
18
+ }
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WTLeadFiInquiryResult = void 0;
4
+ class WTLeadFiInquiryResult extends null {
5
+ static getAttributeTypeMap() {
6
+ return super.getAttributeTypeMap().concat(WTLeadFiInquiryResult.attributeTypeMap);
7
+ }
8
+ }
9
+ exports.WTLeadFiInquiryResult = WTLeadFiInquiryResult;
10
+ WTLeadFiInquiryResult.discriminator = undefined;
11
+ WTLeadFiInquiryResult.attributeTypeMap = [
12
+ {
13
+ "name": "code",
14
+ "baseName": "code",
15
+ "type": "any"
16
+ },
17
+ {
18
+ "name": "preQualification",
19
+ "baseName": "preQualification",
20
+ "type": "any"
21
+ },
22
+ {
23
+ "name": "tier",
24
+ "baseName": "tier",
25
+ "type": "any"
26
+ },
27
+ {
28
+ "name": "creditScore",
29
+ "baseName": "creditScore",
30
+ "type": "any"
31
+ },
32
+ {
33
+ "name": "creditLimit",
34
+ "baseName": "creditLimit",
35
+ "type": "WTLeadFiCreditOffer"
36
+ },
37
+ {
38
+ "name": "creditPreApproval",
39
+ "baseName": "creditPreApproval",
40
+ "type": "WTLeadFiCreditOffer"
41
+ },
42
+ {
43
+ "name": "consumerProfile",
44
+ "baseName": "consumerProfile",
45
+ "type": "WTLeadFiConsumerProfile"
46
+ }
47
+ ];
48
+ //# sourceMappingURL=wTLeadFiInquiryResult.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wTLeadFiInquiryResult.js","sourceRoot":"","sources":["../../model/wTLeadFiInquiryResult.ts"],"names":[],"mappings":";;;AAgBA,MAAa,qBAAsB,SAAQ,IAAiB;IAgDxD,MAAM,CAAC,mBAAmB;QACtB,OAAO,KAAK,CAAC,mBAAmB,EAAE,CAAC,MAAM,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,CAAC;IACtF,CAAC;;AAlDL,sDAmDC;AA1CU,mCAAa,GAAuB,SAAS,CAAC;AAE9C,sCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,KAAK;KAChB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,qBAAqB;KAChC;IACD;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,qBAAqB;KAChC;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,yBAAyB;KACpC;CAAK,CAAC"}
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name": "wallet", "version": "2.3.2", "description": "Official server-side TypeScript / Node.js SDK for the Wallet Inc CRM & Digital Payments platform.", "repository": "git://github.com/WalletInc/sdk-ts.git", "main": "dist/api.js", "types": "dist/api.d.ts", "scripts": {"clean": "rm -Rf node_modules/ *.js", "build": "tsc", "test": "npm run build && node dist/client.js"}, "author": "Wallet Inc Development Team", "license": "Apache-2.0", "dependencies": {"bluebird": "^3.5.0", "request": "^2.81.0", "rewire": "^3.0.2"}, "devDependencies": {"@types/bluebird": "^3.5.33", "@types/node": "^12", "@types/request": "^2.48.8", "typescript": "^4.0"}, "publishConfig": {"registry": "https://registry.npmjs.org"}, "homepage": "https://wallet.dev", "bugs": {"url": "https://github.com/WalletInc/sdk-ts/issues"}, "files": ["dist", "LICENSE", "NOTICE", "README.md"], "keywords": ["wallet", "wallet-inc", "sdk", "api", "crm", "payments", "rewards", "vouchers", "loyalty", "membership", "sms"]}
1
+ {"name": "wallet", "version": "2.4.1", "description": "Official server-side TypeScript / Node.js SDK for the Wallet Inc CRM & Digital Payments platform.", "repository": "git://github.com/WalletInc/sdk-ts.git", "main": "dist/api.js", "types": "dist/api.d.ts", "scripts": {"clean": "rm -Rf node_modules/ *.js", "build": "tsc", "test": "npm run build && node dist/client.js"}, "author": "Wallet Inc Development Team", "license": "Apache-2.0", "dependencies": {"bluebird": "^3.5.0", "request": "^2.81.0", "rewire": "^3.0.2"}, "devDependencies": {"@types/bluebird": "^3.5.33", "@types/node": "^12", "@types/request": "^2.48.8", "typescript": "^4.0"}, "publishConfig": {"registry": "https://registry.npmjs.org"}, "homepage": "https://wallet.dev", "bugs": {"url": "https://github.com/WalletInc/sdk-ts/issues"}, "files": ["dist", "LICENSE", "NOTICE", "README.md"], "keywords": ["wallet", "wallet-inc", "sdk", "api", "crm", "payments", "rewards", "vouchers", "loyalty", "membership", "sms"]}