sowhat-types 2.0.53 → 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 +43 -46
- package/dist/index.d.ts +43 -46
- 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,29 @@ 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;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
interface UpdateMobilityInput {
|
|
120
|
+
id: string;
|
|
121
|
+
name?: string;
|
|
122
|
+
imageUrl?: string | null;
|
|
123
|
+
value?: number;
|
|
124
|
+
currency?: string;
|
|
125
|
+
coOwner?: AssetCoOwnerInput | null;
|
|
126
|
+
gotLoan?: boolean;
|
|
134
127
|
}
|
|
135
128
|
|
|
136
129
|
interface CreateRealEstateInput {
|
|
@@ -138,10 +131,8 @@ interface CreateRealEstateInput {
|
|
|
138
131
|
imageUrl: string | null;
|
|
139
132
|
value: number;
|
|
140
133
|
currency: string;
|
|
141
|
-
note: string | null;
|
|
142
|
-
isMainResidence: boolean;
|
|
143
|
-
coOwner: CreateAssetCoOwnerInput | null;
|
|
144
134
|
gotLoan: boolean;
|
|
135
|
+
coOwner: AssetCoOwnerInput | null;
|
|
145
136
|
}
|
|
146
137
|
|
|
147
138
|
interface UpdateRealEstateInput {
|
|
@@ -150,11 +141,7 @@ interface UpdateRealEstateInput {
|
|
|
150
141
|
imageUrl?: string | null;
|
|
151
142
|
value?: number;
|
|
152
143
|
currency?: string;
|
|
153
|
-
|
|
154
|
-
isMainResidence?: boolean;
|
|
155
|
-
coOwnerId?: string | null;
|
|
156
|
-
coOwnershipShare?: number;
|
|
157
|
-
coOwnerFinancialShare?: number;
|
|
144
|
+
coOwner?: AssetCoOwnerInput | null;
|
|
158
145
|
gotLoan?: boolean;
|
|
159
146
|
}
|
|
160
147
|
|
|
@@ -163,7 +150,18 @@ interface CreateOtherAssetInput {
|
|
|
163
150
|
imageUrl: string | null;
|
|
164
151
|
value: number;
|
|
165
152
|
currency: string;
|
|
166
|
-
|
|
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;
|
|
167
165
|
}
|
|
168
166
|
|
|
169
167
|
interface LogoutUserInput {
|
|
@@ -382,6 +380,11 @@ interface MobilityDeletedResponse {
|
|
|
382
380
|
errorMessage: string | null;
|
|
383
381
|
}
|
|
384
382
|
|
|
383
|
+
interface MobilityUpdatedResponse {
|
|
384
|
+
updated: boolean;
|
|
385
|
+
errorMessage: string | null;
|
|
386
|
+
}
|
|
387
|
+
|
|
385
388
|
interface AssetCoOwnerResponse {
|
|
386
389
|
id: string;
|
|
387
390
|
customName: string;
|
|
@@ -389,26 +392,16 @@ interface AssetCoOwnerResponse {
|
|
|
389
392
|
coOwnerFinancialShare: number;
|
|
390
393
|
}
|
|
391
394
|
|
|
392
|
-
interface AssetDateOfAcquisitionResponse {
|
|
393
|
-
month: number;
|
|
394
|
-
year: number;
|
|
395
|
-
}
|
|
396
|
-
|
|
397
395
|
interface MobilityResponse {
|
|
398
396
|
id: string;
|
|
399
397
|
name: string;
|
|
400
398
|
imageUrl: string | null;
|
|
401
399
|
value: number;
|
|
402
400
|
currency: string;
|
|
403
|
-
licenceNumber: string | null;
|
|
404
|
-
dateOfAcquisition: AssetDateOfAcquisitionResponse | null;
|
|
405
|
-
mobilityType: MobilityTypeEnum;
|
|
406
|
-
mileage: number | null;
|
|
407
|
-
note: string | null;
|
|
408
401
|
gotLoan: boolean;
|
|
409
402
|
coOwner: AssetCoOwnerResponse | null;
|
|
410
|
-
createdAt: Date;
|
|
411
403
|
updatedAt: Date;
|
|
404
|
+
createdAt: Date;
|
|
412
405
|
}
|
|
413
406
|
|
|
414
407
|
interface OtherAssetDeletedResponse {
|
|
@@ -416,15 +409,21 @@ interface OtherAssetDeletedResponse {
|
|
|
416
409
|
errorMessage: string | null;
|
|
417
410
|
}
|
|
418
411
|
|
|
412
|
+
interface OtherAssetUpdatedResponse {
|
|
413
|
+
updated: boolean;
|
|
414
|
+
errorMessage: string | null;
|
|
415
|
+
}
|
|
416
|
+
|
|
419
417
|
interface OtherAssetResponse {
|
|
420
418
|
id: string;
|
|
421
419
|
name: string;
|
|
422
420
|
imageUrl: string | null;
|
|
423
421
|
value: number;
|
|
424
422
|
currency: string;
|
|
425
|
-
|
|
426
|
-
|
|
423
|
+
gotLoan: boolean;
|
|
424
|
+
coOwner: AssetCoOwnerResponse | null;
|
|
427
425
|
updatedAt: Date;
|
|
426
|
+
createdAt: Date;
|
|
428
427
|
}
|
|
429
428
|
|
|
430
429
|
interface RealEstateDeletedResponse {
|
|
@@ -443,12 +442,10 @@ interface RealEstateResponse {
|
|
|
443
442
|
imageUrl: string | null;
|
|
444
443
|
value: number;
|
|
445
444
|
currency: string;
|
|
446
|
-
note: string | null;
|
|
447
|
-
isMainResidence: boolean;
|
|
448
|
-
coOwner: AssetCoOwnerResponse | null;
|
|
449
445
|
gotLoan: boolean;
|
|
450
|
-
|
|
446
|
+
coOwner: AssetCoOwnerResponse | null;
|
|
451
447
|
updatedAt: Date;
|
|
448
|
+
createdAt: Date;
|
|
452
449
|
}
|
|
453
450
|
|
|
454
451
|
interface StockExchangeResponse {
|
|
@@ -634,4 +631,4 @@ declare class FilterArgs {
|
|
|
634
631
|
take: number;
|
|
635
632
|
}
|
|
636
633
|
|
|
637
|
-
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,29 @@ 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;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
interface UpdateMobilityInput {
|
|
120
|
+
id: string;
|
|
121
|
+
name?: string;
|
|
122
|
+
imageUrl?: string | null;
|
|
123
|
+
value?: number;
|
|
124
|
+
currency?: string;
|
|
125
|
+
coOwner?: AssetCoOwnerInput | null;
|
|
126
|
+
gotLoan?: boolean;
|
|
134
127
|
}
|
|
135
128
|
|
|
136
129
|
interface CreateRealEstateInput {
|
|
@@ -138,10 +131,8 @@ interface CreateRealEstateInput {
|
|
|
138
131
|
imageUrl: string | null;
|
|
139
132
|
value: number;
|
|
140
133
|
currency: string;
|
|
141
|
-
note: string | null;
|
|
142
|
-
isMainResidence: boolean;
|
|
143
|
-
coOwner: CreateAssetCoOwnerInput | null;
|
|
144
134
|
gotLoan: boolean;
|
|
135
|
+
coOwner: AssetCoOwnerInput | null;
|
|
145
136
|
}
|
|
146
137
|
|
|
147
138
|
interface UpdateRealEstateInput {
|
|
@@ -150,11 +141,7 @@ interface UpdateRealEstateInput {
|
|
|
150
141
|
imageUrl?: string | null;
|
|
151
142
|
value?: number;
|
|
152
143
|
currency?: string;
|
|
153
|
-
|
|
154
|
-
isMainResidence?: boolean;
|
|
155
|
-
coOwnerId?: string | null;
|
|
156
|
-
coOwnershipShare?: number;
|
|
157
|
-
coOwnerFinancialShare?: number;
|
|
144
|
+
coOwner?: AssetCoOwnerInput | null;
|
|
158
145
|
gotLoan?: boolean;
|
|
159
146
|
}
|
|
160
147
|
|
|
@@ -163,7 +150,18 @@ interface CreateOtherAssetInput {
|
|
|
163
150
|
imageUrl: string | null;
|
|
164
151
|
value: number;
|
|
165
152
|
currency: string;
|
|
166
|
-
|
|
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;
|
|
167
165
|
}
|
|
168
166
|
|
|
169
167
|
interface LogoutUserInput {
|
|
@@ -382,6 +380,11 @@ interface MobilityDeletedResponse {
|
|
|
382
380
|
errorMessage: string | null;
|
|
383
381
|
}
|
|
384
382
|
|
|
383
|
+
interface MobilityUpdatedResponse {
|
|
384
|
+
updated: boolean;
|
|
385
|
+
errorMessage: string | null;
|
|
386
|
+
}
|
|
387
|
+
|
|
385
388
|
interface AssetCoOwnerResponse {
|
|
386
389
|
id: string;
|
|
387
390
|
customName: string;
|
|
@@ -389,26 +392,16 @@ interface AssetCoOwnerResponse {
|
|
|
389
392
|
coOwnerFinancialShare: number;
|
|
390
393
|
}
|
|
391
394
|
|
|
392
|
-
interface AssetDateOfAcquisitionResponse {
|
|
393
|
-
month: number;
|
|
394
|
-
year: number;
|
|
395
|
-
}
|
|
396
|
-
|
|
397
395
|
interface MobilityResponse {
|
|
398
396
|
id: string;
|
|
399
397
|
name: string;
|
|
400
398
|
imageUrl: string | null;
|
|
401
399
|
value: number;
|
|
402
400
|
currency: string;
|
|
403
|
-
licenceNumber: string | null;
|
|
404
|
-
dateOfAcquisition: AssetDateOfAcquisitionResponse | null;
|
|
405
|
-
mobilityType: MobilityTypeEnum;
|
|
406
|
-
mileage: number | null;
|
|
407
|
-
note: string | null;
|
|
408
401
|
gotLoan: boolean;
|
|
409
402
|
coOwner: AssetCoOwnerResponse | null;
|
|
410
|
-
createdAt: Date;
|
|
411
403
|
updatedAt: Date;
|
|
404
|
+
createdAt: Date;
|
|
412
405
|
}
|
|
413
406
|
|
|
414
407
|
interface OtherAssetDeletedResponse {
|
|
@@ -416,15 +409,21 @@ interface OtherAssetDeletedResponse {
|
|
|
416
409
|
errorMessage: string | null;
|
|
417
410
|
}
|
|
418
411
|
|
|
412
|
+
interface OtherAssetUpdatedResponse {
|
|
413
|
+
updated: boolean;
|
|
414
|
+
errorMessage: string | null;
|
|
415
|
+
}
|
|
416
|
+
|
|
419
417
|
interface OtherAssetResponse {
|
|
420
418
|
id: string;
|
|
421
419
|
name: string;
|
|
422
420
|
imageUrl: string | null;
|
|
423
421
|
value: number;
|
|
424
422
|
currency: string;
|
|
425
|
-
|
|
426
|
-
|
|
423
|
+
gotLoan: boolean;
|
|
424
|
+
coOwner: AssetCoOwnerResponse | null;
|
|
427
425
|
updatedAt: Date;
|
|
426
|
+
createdAt: Date;
|
|
428
427
|
}
|
|
429
428
|
|
|
430
429
|
interface RealEstateDeletedResponse {
|
|
@@ -443,12 +442,10 @@ interface RealEstateResponse {
|
|
|
443
442
|
imageUrl: string | null;
|
|
444
443
|
value: number;
|
|
445
444
|
currency: string;
|
|
446
|
-
note: string | null;
|
|
447
|
-
isMainResidence: boolean;
|
|
448
|
-
coOwner: AssetCoOwnerResponse | null;
|
|
449
445
|
gotLoan: boolean;
|
|
450
|
-
|
|
446
|
+
coOwner: AssetCoOwnerResponse | null;
|
|
451
447
|
updatedAt: Date;
|
|
448
|
+
createdAt: Date;
|
|
452
449
|
}
|
|
453
450
|
|
|
454
451
|
interface StockExchangeResponse {
|
|
@@ -634,4 +631,4 @@ declare class FilterArgs {
|
|
|
634
631
|
take: number;
|
|
635
632
|
}
|
|
636
633
|
|
|
637
|
-
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"]}
|