sowhat-types 2.0.54 → 2.0.55
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.d.mts +29 -54
- package/dist/index.d.ts +29 -54
- package/dist/index.js +0 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +0 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -53,13 +53,6 @@ declare enum BudgetTypeEnum {
|
|
|
53
53
|
EXPENDITURE = "EXPENDITURE"
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
declare enum MobilityTypeEnum {
|
|
57
|
-
CAR = "CAR",
|
|
58
|
-
MOTORCYCLE = "MOTORCYCLE",
|
|
59
|
-
BICYCLE = "BICYCLE",
|
|
60
|
-
OTHER = "OTHER"
|
|
61
|
-
}
|
|
62
|
-
|
|
63
56
|
declare enum PowensUserStatusEnum {
|
|
64
57
|
REGISTERED = "REGISTERED",
|
|
65
58
|
ATTEMPTING_NEW_CONNECTION = "ATTEMPTING_NEW_CONNECTION",
|
|
@@ -108,29 +101,19 @@ interface UpdateBankAccountTransactionInput {
|
|
|
108
101
|
newApplicationDate?: Date;
|
|
109
102
|
}
|
|
110
103
|
|
|
111
|
-
interface
|
|
104
|
+
interface AssetCoOwnerInput {
|
|
112
105
|
id: string;
|
|
113
106
|
coOwnershipShare: number;
|
|
114
107
|
coOwnerFinancialShare: number;
|
|
115
108
|
}
|
|
116
109
|
|
|
117
|
-
interface CreateAssetDateOfAcquisitionInput {
|
|
118
|
-
month: number;
|
|
119
|
-
year: number;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
110
|
interface CreateMobilityInput {
|
|
123
111
|
name: string;
|
|
124
112
|
imageUrl: string | null;
|
|
125
113
|
value: number;
|
|
126
114
|
currency: string;
|
|
127
|
-
licenceNumber: string | null;
|
|
128
|
-
dateOfAcquisition: CreateAssetDateOfAcquisitionInput | null;
|
|
129
|
-
mobilityType: MobilityTypeEnum;
|
|
130
|
-
mileage: number | null;
|
|
131
|
-
note: string | null;
|
|
132
115
|
gotLoan: boolean;
|
|
133
|
-
coOwner:
|
|
116
|
+
coOwner: AssetCoOwnerInput | null;
|
|
134
117
|
}
|
|
135
118
|
|
|
136
119
|
interface UpdateMobilityInput {
|
|
@@ -139,14 +122,7 @@ interface UpdateMobilityInput {
|
|
|
139
122
|
imageUrl?: string | null;
|
|
140
123
|
value?: number;
|
|
141
124
|
currency?: string;
|
|
142
|
-
|
|
143
|
-
licenceNumber?: string | null;
|
|
144
|
-
dateOfAcquisition?: CreateAssetDateOfAcquisitionInput | null;
|
|
145
|
-
type?: MobilityTypeEnum;
|
|
146
|
-
mileage?: number | null;
|
|
147
|
-
coOwnerId?: string | null;
|
|
148
|
-
coOwnershipShare?: number;
|
|
149
|
-
coOwnerFinancialShare?: number;
|
|
125
|
+
coOwner?: AssetCoOwnerInput | null;
|
|
150
126
|
gotLoan?: boolean;
|
|
151
127
|
}
|
|
152
128
|
|
|
@@ -155,10 +131,8 @@ interface CreateRealEstateInput {
|
|
|
155
131
|
imageUrl: string | null;
|
|
156
132
|
value: number;
|
|
157
133
|
currency: string;
|
|
158
|
-
note: string | null;
|
|
159
|
-
isMainResidence: boolean;
|
|
160
|
-
coOwner: CreateAssetCoOwnerInput | null;
|
|
161
134
|
gotLoan: boolean;
|
|
135
|
+
coOwner: AssetCoOwnerInput | null;
|
|
162
136
|
}
|
|
163
137
|
|
|
164
138
|
interface UpdateRealEstateInput {
|
|
@@ -167,11 +141,7 @@ interface UpdateRealEstateInput {
|
|
|
167
141
|
imageUrl?: string | null;
|
|
168
142
|
value?: number;
|
|
169
143
|
currency?: string;
|
|
170
|
-
|
|
171
|
-
isMainResidence?: boolean;
|
|
172
|
-
coOwnerId?: string | null;
|
|
173
|
-
coOwnershipShare?: number;
|
|
174
|
-
coOwnerFinancialShare?: number;
|
|
144
|
+
coOwner?: AssetCoOwnerInput | null;
|
|
175
145
|
gotLoan?: boolean;
|
|
176
146
|
}
|
|
177
147
|
|
|
@@ -180,7 +150,18 @@ interface CreateOtherAssetInput {
|
|
|
180
150
|
imageUrl: string | null;
|
|
181
151
|
value: number;
|
|
182
152
|
currency: string;
|
|
183
|
-
|
|
153
|
+
gotLoan: boolean;
|
|
154
|
+
coOwner: AssetCoOwnerInput | null;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
interface UpdateOtherAssetInput {
|
|
158
|
+
id: string;
|
|
159
|
+
name?: string;
|
|
160
|
+
imageUrl?: string | null;
|
|
161
|
+
value?: number;
|
|
162
|
+
currency?: string;
|
|
163
|
+
coOwner?: AssetCoOwnerInput | null;
|
|
164
|
+
gotLoan?: boolean;
|
|
184
165
|
}
|
|
185
166
|
|
|
186
167
|
interface LogoutUserInput {
|
|
@@ -411,26 +392,16 @@ interface AssetCoOwnerResponse {
|
|
|
411
392
|
coOwnerFinancialShare: number;
|
|
412
393
|
}
|
|
413
394
|
|
|
414
|
-
interface AssetDateOfAcquisitionResponse {
|
|
415
|
-
month: number;
|
|
416
|
-
year: number;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
395
|
interface MobilityResponse {
|
|
420
396
|
id: string;
|
|
421
397
|
name: string;
|
|
422
398
|
imageUrl: string | null;
|
|
423
399
|
value: number;
|
|
424
400
|
currency: string;
|
|
425
|
-
licenceNumber: string | null;
|
|
426
|
-
dateOfAcquisition: AssetDateOfAcquisitionResponse | null;
|
|
427
|
-
mobilityType: MobilityTypeEnum;
|
|
428
|
-
mileage: number | null;
|
|
429
|
-
note: string | null;
|
|
430
401
|
gotLoan: boolean;
|
|
431
402
|
coOwner: AssetCoOwnerResponse | null;
|
|
432
|
-
createdAt: Date;
|
|
433
403
|
updatedAt: Date;
|
|
404
|
+
createdAt: Date;
|
|
434
405
|
}
|
|
435
406
|
|
|
436
407
|
interface OtherAssetDeletedResponse {
|
|
@@ -438,15 +409,21 @@ interface OtherAssetDeletedResponse {
|
|
|
438
409
|
errorMessage: string | null;
|
|
439
410
|
}
|
|
440
411
|
|
|
412
|
+
interface OtherAssetUpdatedResponse {
|
|
413
|
+
updated: boolean;
|
|
414
|
+
errorMessage: string | null;
|
|
415
|
+
}
|
|
416
|
+
|
|
441
417
|
interface OtherAssetResponse {
|
|
442
418
|
id: string;
|
|
443
419
|
name: string;
|
|
444
420
|
imageUrl: string | null;
|
|
445
421
|
value: number;
|
|
446
422
|
currency: string;
|
|
447
|
-
|
|
448
|
-
|
|
423
|
+
gotLoan: boolean;
|
|
424
|
+
coOwner: AssetCoOwnerResponse | null;
|
|
449
425
|
updatedAt: Date;
|
|
426
|
+
createdAt: Date;
|
|
450
427
|
}
|
|
451
428
|
|
|
452
429
|
interface RealEstateDeletedResponse {
|
|
@@ -465,12 +442,10 @@ interface RealEstateResponse {
|
|
|
465
442
|
imageUrl: string | null;
|
|
466
443
|
value: number;
|
|
467
444
|
currency: string;
|
|
468
|
-
note: string | null;
|
|
469
|
-
isMainResidence: boolean;
|
|
470
|
-
coOwner: AssetCoOwnerResponse | null;
|
|
471
445
|
gotLoan: boolean;
|
|
472
|
-
|
|
446
|
+
coOwner: AssetCoOwnerResponse | null;
|
|
473
447
|
updatedAt: Date;
|
|
448
|
+
createdAt: Date;
|
|
474
449
|
}
|
|
475
450
|
|
|
476
451
|
interface StockExchangeResponse {
|
|
@@ -656,4 +631,4 @@ declare class FilterArgs {
|
|
|
656
631
|
take: number;
|
|
657
632
|
}
|
|
658
633
|
|
|
659
|
-
export { type AccessTokensResponse, type AllocateTransactionInput, type
|
|
634
|
+
export { type AccessTokensResponse, type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationsResponse, type BudgetOperationResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
package/dist/index.d.ts
CHANGED
|
@@ -53,13 +53,6 @@ declare enum BudgetTypeEnum {
|
|
|
53
53
|
EXPENDITURE = "EXPENDITURE"
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
declare enum MobilityTypeEnum {
|
|
57
|
-
CAR = "CAR",
|
|
58
|
-
MOTORCYCLE = "MOTORCYCLE",
|
|
59
|
-
BICYCLE = "BICYCLE",
|
|
60
|
-
OTHER = "OTHER"
|
|
61
|
-
}
|
|
62
|
-
|
|
63
56
|
declare enum PowensUserStatusEnum {
|
|
64
57
|
REGISTERED = "REGISTERED",
|
|
65
58
|
ATTEMPTING_NEW_CONNECTION = "ATTEMPTING_NEW_CONNECTION",
|
|
@@ -108,29 +101,19 @@ interface UpdateBankAccountTransactionInput {
|
|
|
108
101
|
newApplicationDate?: Date;
|
|
109
102
|
}
|
|
110
103
|
|
|
111
|
-
interface
|
|
104
|
+
interface AssetCoOwnerInput {
|
|
112
105
|
id: string;
|
|
113
106
|
coOwnershipShare: number;
|
|
114
107
|
coOwnerFinancialShare: number;
|
|
115
108
|
}
|
|
116
109
|
|
|
117
|
-
interface CreateAssetDateOfAcquisitionInput {
|
|
118
|
-
month: number;
|
|
119
|
-
year: number;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
110
|
interface CreateMobilityInput {
|
|
123
111
|
name: string;
|
|
124
112
|
imageUrl: string | null;
|
|
125
113
|
value: number;
|
|
126
114
|
currency: string;
|
|
127
|
-
licenceNumber: string | null;
|
|
128
|
-
dateOfAcquisition: CreateAssetDateOfAcquisitionInput | null;
|
|
129
|
-
mobilityType: MobilityTypeEnum;
|
|
130
|
-
mileage: number | null;
|
|
131
|
-
note: string | null;
|
|
132
115
|
gotLoan: boolean;
|
|
133
|
-
coOwner:
|
|
116
|
+
coOwner: AssetCoOwnerInput | null;
|
|
134
117
|
}
|
|
135
118
|
|
|
136
119
|
interface UpdateMobilityInput {
|
|
@@ -139,14 +122,7 @@ interface UpdateMobilityInput {
|
|
|
139
122
|
imageUrl?: string | null;
|
|
140
123
|
value?: number;
|
|
141
124
|
currency?: string;
|
|
142
|
-
|
|
143
|
-
licenceNumber?: string | null;
|
|
144
|
-
dateOfAcquisition?: CreateAssetDateOfAcquisitionInput | null;
|
|
145
|
-
type?: MobilityTypeEnum;
|
|
146
|
-
mileage?: number | null;
|
|
147
|
-
coOwnerId?: string | null;
|
|
148
|
-
coOwnershipShare?: number;
|
|
149
|
-
coOwnerFinancialShare?: number;
|
|
125
|
+
coOwner?: AssetCoOwnerInput | null;
|
|
150
126
|
gotLoan?: boolean;
|
|
151
127
|
}
|
|
152
128
|
|
|
@@ -155,10 +131,8 @@ interface CreateRealEstateInput {
|
|
|
155
131
|
imageUrl: string | null;
|
|
156
132
|
value: number;
|
|
157
133
|
currency: string;
|
|
158
|
-
note: string | null;
|
|
159
|
-
isMainResidence: boolean;
|
|
160
|
-
coOwner: CreateAssetCoOwnerInput | null;
|
|
161
134
|
gotLoan: boolean;
|
|
135
|
+
coOwner: AssetCoOwnerInput | null;
|
|
162
136
|
}
|
|
163
137
|
|
|
164
138
|
interface UpdateRealEstateInput {
|
|
@@ -167,11 +141,7 @@ interface UpdateRealEstateInput {
|
|
|
167
141
|
imageUrl?: string | null;
|
|
168
142
|
value?: number;
|
|
169
143
|
currency?: string;
|
|
170
|
-
|
|
171
|
-
isMainResidence?: boolean;
|
|
172
|
-
coOwnerId?: string | null;
|
|
173
|
-
coOwnershipShare?: number;
|
|
174
|
-
coOwnerFinancialShare?: number;
|
|
144
|
+
coOwner?: AssetCoOwnerInput | null;
|
|
175
145
|
gotLoan?: boolean;
|
|
176
146
|
}
|
|
177
147
|
|
|
@@ -180,7 +150,18 @@ interface CreateOtherAssetInput {
|
|
|
180
150
|
imageUrl: string | null;
|
|
181
151
|
value: number;
|
|
182
152
|
currency: string;
|
|
183
|
-
|
|
153
|
+
gotLoan: boolean;
|
|
154
|
+
coOwner: AssetCoOwnerInput | null;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
interface UpdateOtherAssetInput {
|
|
158
|
+
id: string;
|
|
159
|
+
name?: string;
|
|
160
|
+
imageUrl?: string | null;
|
|
161
|
+
value?: number;
|
|
162
|
+
currency?: string;
|
|
163
|
+
coOwner?: AssetCoOwnerInput | null;
|
|
164
|
+
gotLoan?: boolean;
|
|
184
165
|
}
|
|
185
166
|
|
|
186
167
|
interface LogoutUserInput {
|
|
@@ -411,26 +392,16 @@ interface AssetCoOwnerResponse {
|
|
|
411
392
|
coOwnerFinancialShare: number;
|
|
412
393
|
}
|
|
413
394
|
|
|
414
|
-
interface AssetDateOfAcquisitionResponse {
|
|
415
|
-
month: number;
|
|
416
|
-
year: number;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
395
|
interface MobilityResponse {
|
|
420
396
|
id: string;
|
|
421
397
|
name: string;
|
|
422
398
|
imageUrl: string | null;
|
|
423
399
|
value: number;
|
|
424
400
|
currency: string;
|
|
425
|
-
licenceNumber: string | null;
|
|
426
|
-
dateOfAcquisition: AssetDateOfAcquisitionResponse | null;
|
|
427
|
-
mobilityType: MobilityTypeEnum;
|
|
428
|
-
mileage: number | null;
|
|
429
|
-
note: string | null;
|
|
430
401
|
gotLoan: boolean;
|
|
431
402
|
coOwner: AssetCoOwnerResponse | null;
|
|
432
|
-
createdAt: Date;
|
|
433
403
|
updatedAt: Date;
|
|
404
|
+
createdAt: Date;
|
|
434
405
|
}
|
|
435
406
|
|
|
436
407
|
interface OtherAssetDeletedResponse {
|
|
@@ -438,15 +409,21 @@ interface OtherAssetDeletedResponse {
|
|
|
438
409
|
errorMessage: string | null;
|
|
439
410
|
}
|
|
440
411
|
|
|
412
|
+
interface OtherAssetUpdatedResponse {
|
|
413
|
+
updated: boolean;
|
|
414
|
+
errorMessage: string | null;
|
|
415
|
+
}
|
|
416
|
+
|
|
441
417
|
interface OtherAssetResponse {
|
|
442
418
|
id: string;
|
|
443
419
|
name: string;
|
|
444
420
|
imageUrl: string | null;
|
|
445
421
|
value: number;
|
|
446
422
|
currency: string;
|
|
447
|
-
|
|
448
|
-
|
|
423
|
+
gotLoan: boolean;
|
|
424
|
+
coOwner: AssetCoOwnerResponse | null;
|
|
449
425
|
updatedAt: Date;
|
|
426
|
+
createdAt: Date;
|
|
450
427
|
}
|
|
451
428
|
|
|
452
429
|
interface RealEstateDeletedResponse {
|
|
@@ -465,12 +442,10 @@ interface RealEstateResponse {
|
|
|
465
442
|
imageUrl: string | null;
|
|
466
443
|
value: number;
|
|
467
444
|
currency: string;
|
|
468
|
-
note: string | null;
|
|
469
|
-
isMainResidence: boolean;
|
|
470
|
-
coOwner: AssetCoOwnerResponse | null;
|
|
471
445
|
gotLoan: boolean;
|
|
472
|
-
|
|
446
|
+
coOwner: AssetCoOwnerResponse | null;
|
|
473
447
|
updatedAt: Date;
|
|
448
|
+
createdAt: Date;
|
|
474
449
|
}
|
|
475
450
|
|
|
476
451
|
interface StockExchangeResponse {
|
|
@@ -656,4 +631,4 @@ declare class FilterArgs {
|
|
|
656
631
|
take: number;
|
|
657
632
|
}
|
|
658
633
|
|
|
659
|
-
export { type AccessTokensResponse, type AllocateTransactionInput, type
|
|
634
|
+
export { type AccessTokensResponse, type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationsResponse, type BudgetOperationResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
package/dist/index.js
CHANGED
|
@@ -28,7 +28,6 @@ __export(src_exports, {
|
|
|
28
28
|
BankAccountTypeEnum: () => BankAccountTypeEnum,
|
|
29
29
|
BudgetTypeEnum: () => BudgetTypeEnum,
|
|
30
30
|
FilterArgs: () => FilterArgs,
|
|
31
|
-
MobilityTypeEnum: () => MobilityTypeEnum,
|
|
32
31
|
PowensUserStatusEnum: () => PowensUserStatusEnum,
|
|
33
32
|
SupportedCurrencyEnum: () => SupportedCurrencyEnum,
|
|
34
33
|
UserStatusEnum: () => UserStatusEnum
|
|
@@ -104,15 +103,6 @@ var BudgetTypeEnum = /* @__PURE__ */ ((BudgetTypeEnum2) => {
|
|
|
104
103
|
return BudgetTypeEnum2;
|
|
105
104
|
})(BudgetTypeEnum || {});
|
|
106
105
|
|
|
107
|
-
// src/enums/mobility-type.enum.ts
|
|
108
|
-
var MobilityTypeEnum = /* @__PURE__ */ ((MobilityTypeEnum2) => {
|
|
109
|
-
MobilityTypeEnum2["CAR"] = "CAR";
|
|
110
|
-
MobilityTypeEnum2["MOTORCYCLE"] = "MOTORCYCLE";
|
|
111
|
-
MobilityTypeEnum2["BICYCLE"] = "BICYCLE";
|
|
112
|
-
MobilityTypeEnum2["OTHER"] = "OTHER";
|
|
113
|
-
return MobilityTypeEnum2;
|
|
114
|
-
})(MobilityTypeEnum || {});
|
|
115
|
-
|
|
116
106
|
// src/enums/powens-user-status.enum.ts
|
|
117
107
|
var PowensUserStatusEnum = /* @__PURE__ */ ((PowensUserStatusEnum2) => {
|
|
118
108
|
PowensUserStatusEnum2["REGISTERED"] = "REGISTERED";
|
|
@@ -156,7 +146,6 @@ var FilterArgs = class {
|
|
|
156
146
|
BankAccountTypeEnum,
|
|
157
147
|
BudgetTypeEnum,
|
|
158
148
|
FilterArgs,
|
|
159
|
-
MobilityTypeEnum,
|
|
160
149
|
PowensUserStatusEnum,
|
|
161
150
|
SupportedCurrencyEnum,
|
|
162
151
|
UserStatusEnum
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/enums/asset-type.enum.ts","../src/enums/authentication-method.enum.ts","../src/enums/available-currency.enum.ts","../src/enums/bank-account-scheme-name.ts","../src/enums/bank-account-transaction-type.enum.ts","../src/enums/bank-account-type.enum.ts","../src/enums/budget-type.enum.ts","../src/enums/
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../src/enums/asset-type.enum.ts","../src/enums/authentication-method.enum.ts","../src/enums/available-currency.enum.ts","../src/enums/bank-account-scheme-name.ts","../src/enums/bank-account-transaction-type.enum.ts","../src/enums/bank-account-type.enum.ts","../src/enums/budget-type.enum.ts","../src/enums/powens-user-status.enum.ts","../src/enums/supported-currency-symbol.enum.ts","../src/enums/user-status.enum.ts","../src/args/filter.args.ts"],"sourcesContent":["export * from './enums';\nexport * from './inputs';\nexport * from './responses';\nexport * from './exact-match';\nexport * from './args';\n","export enum AssetTypeEnum {\n REAL_ESTATE = \"REAL_ESTATE\",\n MOBILITY = \"MOBILITY\",\n STOCK_EXCHANGE = \"STOCK_EXCHANGE\",\n CRYPTOCURRENCY = \"CRYPTOCURRENCY\",\n OTHER = \"OTHER\",\n}\n","export enum AuthenticationMethodEnum {\n PHONE = \"PHONE\",\n EMAIL = \"EMAIL\",\n}\n","export enum AvailableCurrencyEnum {\n EUR = \"€\",\n // USD = \"$\",\n}\n","export enum BankAccountSchemeNameEnum {\n IBAN = \"IBAN\",\n BBAN = \"BBAN\",\n SORT_CODE_ACCOUNT_NUMBER = \"SORT_CODE_ACCOUNT_NUMBER\",\n CPAN = \"CPAN\",\n TPAN = \"TPAN\",\n}\n","export enum BankAccountTransactionTypeEnum {\n TRANSFER = \"TRANSFER\", // Transfer\n ORDER = \"ORDER\", // Order\n CHECK = \"CHECK\", // Check\n DEPOSIT = \"DEPOSIT\", // Mandatory/voluntary deposits, contributions, money transfers\n PAYBACK = \"PAYBACK\", // Payback\n WITHDRAWAL = \"WITHDRAWAL\", // Withdrawal\n LOAN_REPAYMENT = \"LOAN_REPAYMENT\", // Loan payment\n BANK = \"BANK\", // Bank fees\n CARD = \"CARD\", // Card operation\n DEFERRED_CARD = \"DEFERRED_CARD\", // Deferred card operation\n SUMMARY_CARD = \"SUMMARY_CARD\", // Monthly debit of a deferred card\n UNKNOWN = \"UNKNOWN\", //Unknown transaction type\n MARKET_ORDER = \"MARKET_ORDER\", // Market order\n MARKET_FEE = \"MARKET_FEE\", // Fees regarding a market order\n ARBITRAGE = \"ARBITRAGE\", // Arbitrage\n PROFIT = \"PROFIT\", // Positive earnings from interests/coupons/dividends\n}\n","export enum BankAccountTypeEnum {\n CHECKING = \"CHECKING\",\n SAVINGS = \"SAVINGS\",\n OTHER = \"OTHER\",\n}\n","export enum BudgetTypeEnum {\n INCOME = 'INCOME',\n EXPENDITURE = 'EXPENDITURE',\n}\n","export enum PowensUserStatusEnum {\n // User is registered on Powens and got a powens ID and a unique access token\n REGISTERED = 'REGISTERED',\n\n // User is currently trying to make a new connection to their bank account (transition state)\n ATTEMPTING_NEW_CONNECTION = 'ATTEMPTING_NEW_CONNECTION',\n\n // On error in Powens administration console\n ON_ERROR = 'ON_ERROR',\n\n // Powens administration console deleted the user\n DELETED = 'DELETED',\n}\n","export enum SupportedCurrencyEnum {\n EUR = '€',\n USD = '$',\n GBP = '£',\n}\n","export enum UserStatusEnum {\n // Anonymous, does not have a real account on sowhat (= a simple co-owner with no Clerk ID)\n ANONYMOUS = 'ANONYMOUS',\n\n // Real user, got a Clerk account.\n // note: Being registered on clerk first is mandatory to be registered on Powens.\n REGISTERED = 'REGISTERED',\n\n // The user is deleted and can't be used anymore\n DELETED = 'DELETED',\n\n // The user's email and/or phone are black-listed from the sowhat app\n BLACK_LISTED = 'BLACK_LISTED',\n}\n","export class FilterArgs {\n skip = 0;\n take = 25;\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAO,IAAK,gBAAL,kBAAKA,mBAAL;AACL,EAAAA,eAAA,iBAAc;AACd,EAAAA,eAAA,cAAW;AACX,EAAAA,eAAA,oBAAiB;AACjB,EAAAA,eAAA,oBAAiB;AACjB,EAAAA,eAAA,WAAQ;AALE,SAAAA;AAAA,GAAA;;;ACAL,IAAK,2BAAL,kBAAKC,8BAAL;AACL,EAAAA,0BAAA,WAAQ;AACR,EAAAA,0BAAA,WAAQ;AAFE,SAAAA;AAAA,GAAA;;;ACAL,IAAK,wBAAL,kBAAKC,2BAAL;AACL,EAAAA,uBAAA,SAAM;AADI,SAAAA;AAAA,GAAA;;;ACAL,IAAK,4BAAL,kBAAKC,+BAAL;AACL,EAAAA,2BAAA,UAAO;AACP,EAAAA,2BAAA,UAAO;AACP,EAAAA,2BAAA,8BAA2B;AAC3B,EAAAA,2BAAA,UAAO;AACP,EAAAA,2BAAA,UAAO;AALG,SAAAA;AAAA,GAAA;;;ACAL,IAAK,iCAAL,kBAAKC,oCAAL;AACL,EAAAA,gCAAA,cAAW;AACX,EAAAA,gCAAA,WAAQ;AACR,EAAAA,gCAAA,WAAQ;AACR,EAAAA,gCAAA,aAAU;AACV,EAAAA,gCAAA,aAAU;AACV,EAAAA,gCAAA,gBAAa;AACb,EAAAA,gCAAA,oBAAiB;AACjB,EAAAA,gCAAA,UAAO;AACP,EAAAA,gCAAA,UAAO;AACP,EAAAA,gCAAA,mBAAgB;AAChB,EAAAA,gCAAA,kBAAe;AACf,EAAAA,gCAAA,aAAU;AACV,EAAAA,gCAAA,kBAAe;AACf,EAAAA,gCAAA,gBAAa;AACb,EAAAA,gCAAA,eAAY;AACZ,EAAAA,gCAAA,YAAS;AAhBC,SAAAA;AAAA,GAAA;;;ACAL,IAAK,sBAAL,kBAAKC,yBAAL;AACL,EAAAA,qBAAA,cAAW;AACX,EAAAA,qBAAA,aAAU;AACV,EAAAA,qBAAA,WAAQ;AAHE,SAAAA;AAAA,GAAA;;;ACAL,IAAK,iBAAL,kBAAKC,oBAAL;AACL,EAAAA,gBAAA,YAAS;AACT,EAAAA,gBAAA,iBAAc;AAFJ,SAAAA;AAAA,GAAA;;;ACAL,IAAK,uBAAL,kBAAKC,0BAAL;AAEL,EAAAA,sBAAA,gBAAa;AAGb,EAAAA,sBAAA,+BAA4B;AAG5B,EAAAA,sBAAA,cAAW;AAGX,EAAAA,sBAAA,aAAU;AAXA,SAAAA;AAAA,GAAA;;;ACAL,IAAK,wBAAL,kBAAKC,2BAAL;AACL,EAAAA,uBAAA,SAAM;AACN,EAAAA,uBAAA,SAAM;AACN,EAAAA,uBAAA,SAAM;AAHI,SAAAA;AAAA,GAAA;;;ACAL,IAAK,iBAAL,kBAAKC,oBAAL;AAEL,EAAAA,gBAAA,eAAY;AAIZ,EAAAA,gBAAA,gBAAa;AAGb,EAAAA,gBAAA,aAAU;AAGV,EAAAA,gBAAA,kBAAe;AAZL,SAAAA;AAAA,GAAA;;;ACAL,IAAM,aAAN,MAAiB;AAAA,EAAjB;AACL,gBAAO;AACP,gBAAO;AAAA;AACT;","names":["AssetTypeEnum","AuthenticationMethodEnum","AvailableCurrencyEnum","BankAccountSchemeNameEnum","BankAccountTransactionTypeEnum","BankAccountTypeEnum","BudgetTypeEnum","PowensUserStatusEnum","SupportedCurrencyEnum","UserStatusEnum"]}
|
package/dist/index.mjs
CHANGED
|
@@ -67,15 +67,6 @@ var BudgetTypeEnum = /* @__PURE__ */ ((BudgetTypeEnum2) => {
|
|
|
67
67
|
return BudgetTypeEnum2;
|
|
68
68
|
})(BudgetTypeEnum || {});
|
|
69
69
|
|
|
70
|
-
// src/enums/mobility-type.enum.ts
|
|
71
|
-
var MobilityTypeEnum = /* @__PURE__ */ ((MobilityTypeEnum2) => {
|
|
72
|
-
MobilityTypeEnum2["CAR"] = "CAR";
|
|
73
|
-
MobilityTypeEnum2["MOTORCYCLE"] = "MOTORCYCLE";
|
|
74
|
-
MobilityTypeEnum2["BICYCLE"] = "BICYCLE";
|
|
75
|
-
MobilityTypeEnum2["OTHER"] = "OTHER";
|
|
76
|
-
return MobilityTypeEnum2;
|
|
77
|
-
})(MobilityTypeEnum || {});
|
|
78
|
-
|
|
79
70
|
// src/enums/powens-user-status.enum.ts
|
|
80
71
|
var PowensUserStatusEnum = /* @__PURE__ */ ((PowensUserStatusEnum2) => {
|
|
81
72
|
PowensUserStatusEnum2["REGISTERED"] = "REGISTERED";
|
|
@@ -118,7 +109,6 @@ export {
|
|
|
118
109
|
BankAccountTypeEnum,
|
|
119
110
|
BudgetTypeEnum,
|
|
120
111
|
FilterArgs,
|
|
121
|
-
MobilityTypeEnum,
|
|
122
112
|
PowensUserStatusEnum,
|
|
123
113
|
SupportedCurrencyEnum,
|
|
124
114
|
UserStatusEnum
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/enums/asset-type.enum.ts","../src/enums/authentication-method.enum.ts","../src/enums/available-currency.enum.ts","../src/enums/bank-account-scheme-name.ts","../src/enums/bank-account-transaction-type.enum.ts","../src/enums/bank-account-type.enum.ts","../src/enums/budget-type.enum.ts","../src/enums/
|
|
1
|
+
{"version":3,"sources":["../src/enums/asset-type.enum.ts","../src/enums/authentication-method.enum.ts","../src/enums/available-currency.enum.ts","../src/enums/bank-account-scheme-name.ts","../src/enums/bank-account-transaction-type.enum.ts","../src/enums/bank-account-type.enum.ts","../src/enums/budget-type.enum.ts","../src/enums/powens-user-status.enum.ts","../src/enums/supported-currency-symbol.enum.ts","../src/enums/user-status.enum.ts","../src/args/filter.args.ts"],"sourcesContent":["export enum AssetTypeEnum {\n REAL_ESTATE = \"REAL_ESTATE\",\n MOBILITY = \"MOBILITY\",\n STOCK_EXCHANGE = \"STOCK_EXCHANGE\",\n CRYPTOCURRENCY = \"CRYPTOCURRENCY\",\n OTHER = \"OTHER\",\n}\n","export enum AuthenticationMethodEnum {\n PHONE = \"PHONE\",\n EMAIL = \"EMAIL\",\n}\n","export enum AvailableCurrencyEnum {\n EUR = \"€\",\n // USD = \"$\",\n}\n","export enum BankAccountSchemeNameEnum {\n IBAN = \"IBAN\",\n BBAN = \"BBAN\",\n SORT_CODE_ACCOUNT_NUMBER = \"SORT_CODE_ACCOUNT_NUMBER\",\n CPAN = \"CPAN\",\n TPAN = \"TPAN\",\n}\n","export enum BankAccountTransactionTypeEnum {\n TRANSFER = \"TRANSFER\", // Transfer\n ORDER = \"ORDER\", // Order\n CHECK = \"CHECK\", // Check\n DEPOSIT = \"DEPOSIT\", // Mandatory/voluntary deposits, contributions, money transfers\n PAYBACK = \"PAYBACK\", // Payback\n WITHDRAWAL = \"WITHDRAWAL\", // Withdrawal\n LOAN_REPAYMENT = \"LOAN_REPAYMENT\", // Loan payment\n BANK = \"BANK\", // Bank fees\n CARD = \"CARD\", // Card operation\n DEFERRED_CARD = \"DEFERRED_CARD\", // Deferred card operation\n SUMMARY_CARD = \"SUMMARY_CARD\", // Monthly debit of a deferred card\n UNKNOWN = \"UNKNOWN\", //Unknown transaction type\n MARKET_ORDER = \"MARKET_ORDER\", // Market order\n MARKET_FEE = \"MARKET_FEE\", // Fees regarding a market order\n ARBITRAGE = \"ARBITRAGE\", // Arbitrage\n PROFIT = \"PROFIT\", // Positive earnings from interests/coupons/dividends\n}\n","export enum BankAccountTypeEnum {\n CHECKING = \"CHECKING\",\n SAVINGS = \"SAVINGS\",\n OTHER = \"OTHER\",\n}\n","export enum BudgetTypeEnum {\n INCOME = 'INCOME',\n EXPENDITURE = 'EXPENDITURE',\n}\n","export enum PowensUserStatusEnum {\n // User is registered on Powens and got a powens ID and a unique access token\n REGISTERED = 'REGISTERED',\n\n // User is currently trying to make a new connection to their bank account (transition state)\n ATTEMPTING_NEW_CONNECTION = 'ATTEMPTING_NEW_CONNECTION',\n\n // On error in Powens administration console\n ON_ERROR = 'ON_ERROR',\n\n // Powens administration console deleted the user\n DELETED = 'DELETED',\n}\n","export enum SupportedCurrencyEnum {\n EUR = '€',\n USD = '$',\n GBP = '£',\n}\n","export enum UserStatusEnum {\n // Anonymous, does not have a real account on sowhat (= a simple co-owner with no Clerk ID)\n ANONYMOUS = 'ANONYMOUS',\n\n // Real user, got a Clerk account.\n // note: Being registered on clerk first is mandatory to be registered on Powens.\n REGISTERED = 'REGISTERED',\n\n // The user is deleted and can't be used anymore\n DELETED = 'DELETED',\n\n // The user's email and/or phone are black-listed from the sowhat app\n BLACK_LISTED = 'BLACK_LISTED',\n}\n","export class FilterArgs {\n skip = 0;\n take = 25;\n}\n"],"mappings":";AAAO,IAAK,gBAAL,kBAAKA,mBAAL;AACL,EAAAA,eAAA,iBAAc;AACd,EAAAA,eAAA,cAAW;AACX,EAAAA,eAAA,oBAAiB;AACjB,EAAAA,eAAA,oBAAiB;AACjB,EAAAA,eAAA,WAAQ;AALE,SAAAA;AAAA,GAAA;;;ACAL,IAAK,2BAAL,kBAAKC,8BAAL;AACL,EAAAA,0BAAA,WAAQ;AACR,EAAAA,0BAAA,WAAQ;AAFE,SAAAA;AAAA,GAAA;;;ACAL,IAAK,wBAAL,kBAAKC,2BAAL;AACL,EAAAA,uBAAA,SAAM;AADI,SAAAA;AAAA,GAAA;;;ACAL,IAAK,4BAAL,kBAAKC,+BAAL;AACL,EAAAA,2BAAA,UAAO;AACP,EAAAA,2BAAA,UAAO;AACP,EAAAA,2BAAA,8BAA2B;AAC3B,EAAAA,2BAAA,UAAO;AACP,EAAAA,2BAAA,UAAO;AALG,SAAAA;AAAA,GAAA;;;ACAL,IAAK,iCAAL,kBAAKC,oCAAL;AACL,EAAAA,gCAAA,cAAW;AACX,EAAAA,gCAAA,WAAQ;AACR,EAAAA,gCAAA,WAAQ;AACR,EAAAA,gCAAA,aAAU;AACV,EAAAA,gCAAA,aAAU;AACV,EAAAA,gCAAA,gBAAa;AACb,EAAAA,gCAAA,oBAAiB;AACjB,EAAAA,gCAAA,UAAO;AACP,EAAAA,gCAAA,UAAO;AACP,EAAAA,gCAAA,mBAAgB;AAChB,EAAAA,gCAAA,kBAAe;AACf,EAAAA,gCAAA,aAAU;AACV,EAAAA,gCAAA,kBAAe;AACf,EAAAA,gCAAA,gBAAa;AACb,EAAAA,gCAAA,eAAY;AACZ,EAAAA,gCAAA,YAAS;AAhBC,SAAAA;AAAA,GAAA;;;ACAL,IAAK,sBAAL,kBAAKC,yBAAL;AACL,EAAAA,qBAAA,cAAW;AACX,EAAAA,qBAAA,aAAU;AACV,EAAAA,qBAAA,WAAQ;AAHE,SAAAA;AAAA,GAAA;;;ACAL,IAAK,iBAAL,kBAAKC,oBAAL;AACL,EAAAA,gBAAA,YAAS;AACT,EAAAA,gBAAA,iBAAc;AAFJ,SAAAA;AAAA,GAAA;;;ACAL,IAAK,uBAAL,kBAAKC,0BAAL;AAEL,EAAAA,sBAAA,gBAAa;AAGb,EAAAA,sBAAA,+BAA4B;AAG5B,EAAAA,sBAAA,cAAW;AAGX,EAAAA,sBAAA,aAAU;AAXA,SAAAA;AAAA,GAAA;;;ACAL,IAAK,wBAAL,kBAAKC,2BAAL;AACL,EAAAA,uBAAA,SAAM;AACN,EAAAA,uBAAA,SAAM;AACN,EAAAA,uBAAA,SAAM;AAHI,SAAAA;AAAA,GAAA;;;ACAL,IAAK,iBAAL,kBAAKC,oBAAL;AAEL,EAAAA,gBAAA,eAAY;AAIZ,EAAAA,gBAAA,gBAAa;AAGb,EAAAA,gBAAA,aAAU;AAGV,EAAAA,gBAAA,kBAAe;AAZL,SAAAA;AAAA,GAAA;;;ACAL,IAAM,aAAN,MAAiB;AAAA,EAAjB;AACL,gBAAO;AACP,gBAAO;AAAA;AACT;","names":["AssetTypeEnum","AuthenticationMethodEnum","AvailableCurrencyEnum","BankAccountSchemeNameEnum","BankAccountTransactionTypeEnum","BankAccountTypeEnum","BudgetTypeEnum","PowensUserStatusEnum","SupportedCurrencyEnum","UserStatusEnum"]}
|