sowhat-types 2.0.11 → 2.0.12
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 +17 -40
- package/dist/index.d.ts +17 -40
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -76,45 +76,6 @@ interface CreateAssetDateOfAcquisitionInput {
|
|
|
76
76
|
year: number;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
interface PaginationInput {
|
|
80
|
-
offset: number;
|
|
81
|
-
limit: number;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
interface FetchBankAccountTransactionsInput {
|
|
85
|
-
accountId: string;
|
|
86
|
-
pagination: PaginationInput;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
interface UpdateBankAccountTransactionInput {
|
|
90
|
-
id: string;
|
|
91
|
-
newName?: string;
|
|
92
|
-
newApplicationDate?: Date;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
interface CreateMobilityInput {
|
|
96
|
-
customTitle: string;
|
|
97
|
-
customImage: string | null;
|
|
98
|
-
price: number;
|
|
99
|
-
licenceNumber: string | null;
|
|
100
|
-
dateOfAcquisition: CreateAssetDateOfAcquisitionInput | null;
|
|
101
|
-
mobilityType: MobilityTypeEnum;
|
|
102
|
-
mileage: number | null;
|
|
103
|
-
note: string | null;
|
|
104
|
-
gotLoan: boolean;
|
|
105
|
-
coOwner: CreateAssetCoOwnerInput | null;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
interface CreateRealEstateInput {
|
|
109
|
-
gotLoan: boolean;
|
|
110
|
-
customTitle: string;
|
|
111
|
-
customImage: string | null;
|
|
112
|
-
price: number;
|
|
113
|
-
note: string | null;
|
|
114
|
-
isMainResidence: boolean;
|
|
115
|
-
coOwner: CreateAssetCoOwnerInput | null;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
79
|
interface LogoutUserInput {
|
|
119
80
|
userId: string;
|
|
120
81
|
}
|
|
@@ -135,6 +96,11 @@ interface FetchUserCoOwnerInput {
|
|
|
135
96
|
coOwnerId: string;
|
|
136
97
|
}
|
|
137
98
|
|
|
99
|
+
interface PaginationInput {
|
|
100
|
+
offset: number;
|
|
101
|
+
limit: number;
|
|
102
|
+
}
|
|
103
|
+
|
|
138
104
|
interface BankAccountBalancesResponse {
|
|
139
105
|
/**
|
|
140
106
|
* total balance for checking type accounts
|
|
@@ -272,8 +238,19 @@ interface MobilityResponse {
|
|
|
272
238
|
updatedAt: Date;
|
|
273
239
|
}
|
|
274
240
|
|
|
241
|
+
interface OtherAssetDeletedResponse {
|
|
242
|
+
deleted: boolean;
|
|
243
|
+
errorMessage: string | null;
|
|
244
|
+
}
|
|
245
|
+
|
|
275
246
|
interface OtherAssetResponse {
|
|
276
247
|
id: string;
|
|
248
|
+
name: string;
|
|
249
|
+
value: number;
|
|
250
|
+
imageUrl: string | null;
|
|
251
|
+
note: string | null;
|
|
252
|
+
createdAt: Date;
|
|
253
|
+
updatedAt: Date;
|
|
277
254
|
}
|
|
278
255
|
|
|
279
256
|
interface RealEstateDeletedResponse {
|
|
@@ -366,4 +343,4 @@ declare class FilterArgs {
|
|
|
366
343
|
take: number;
|
|
367
344
|
}
|
|
368
345
|
|
|
369
|
-
export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionExtraDataResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionWordingResponse, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type
|
|
346
|
+
export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionExtraDataResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionWordingResponse, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, type FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type StockExchangeResponse, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -76,45 +76,6 @@ interface CreateAssetDateOfAcquisitionInput {
|
|
|
76
76
|
year: number;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
interface PaginationInput {
|
|
80
|
-
offset: number;
|
|
81
|
-
limit: number;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
interface FetchBankAccountTransactionsInput {
|
|
85
|
-
accountId: string;
|
|
86
|
-
pagination: PaginationInput;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
interface UpdateBankAccountTransactionInput {
|
|
90
|
-
id: string;
|
|
91
|
-
newName?: string;
|
|
92
|
-
newApplicationDate?: Date;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
interface CreateMobilityInput {
|
|
96
|
-
customTitle: string;
|
|
97
|
-
customImage: string | null;
|
|
98
|
-
price: number;
|
|
99
|
-
licenceNumber: string | null;
|
|
100
|
-
dateOfAcquisition: CreateAssetDateOfAcquisitionInput | null;
|
|
101
|
-
mobilityType: MobilityTypeEnum;
|
|
102
|
-
mileage: number | null;
|
|
103
|
-
note: string | null;
|
|
104
|
-
gotLoan: boolean;
|
|
105
|
-
coOwner: CreateAssetCoOwnerInput | null;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
interface CreateRealEstateInput {
|
|
109
|
-
gotLoan: boolean;
|
|
110
|
-
customTitle: string;
|
|
111
|
-
customImage: string | null;
|
|
112
|
-
price: number;
|
|
113
|
-
note: string | null;
|
|
114
|
-
isMainResidence: boolean;
|
|
115
|
-
coOwner: CreateAssetCoOwnerInput | null;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
79
|
interface LogoutUserInput {
|
|
119
80
|
userId: string;
|
|
120
81
|
}
|
|
@@ -135,6 +96,11 @@ interface FetchUserCoOwnerInput {
|
|
|
135
96
|
coOwnerId: string;
|
|
136
97
|
}
|
|
137
98
|
|
|
99
|
+
interface PaginationInput {
|
|
100
|
+
offset: number;
|
|
101
|
+
limit: number;
|
|
102
|
+
}
|
|
103
|
+
|
|
138
104
|
interface BankAccountBalancesResponse {
|
|
139
105
|
/**
|
|
140
106
|
* total balance for checking type accounts
|
|
@@ -272,8 +238,19 @@ interface MobilityResponse {
|
|
|
272
238
|
updatedAt: Date;
|
|
273
239
|
}
|
|
274
240
|
|
|
241
|
+
interface OtherAssetDeletedResponse {
|
|
242
|
+
deleted: boolean;
|
|
243
|
+
errorMessage: string | null;
|
|
244
|
+
}
|
|
245
|
+
|
|
275
246
|
interface OtherAssetResponse {
|
|
276
247
|
id: string;
|
|
248
|
+
name: string;
|
|
249
|
+
value: number;
|
|
250
|
+
imageUrl: string | null;
|
|
251
|
+
note: string | null;
|
|
252
|
+
createdAt: Date;
|
|
253
|
+
updatedAt: Date;
|
|
277
254
|
}
|
|
278
255
|
|
|
279
256
|
interface RealEstateDeletedResponse {
|
|
@@ -366,4 +343,4 @@ declare class FilterArgs {
|
|
|
366
343
|
take: number;
|
|
367
344
|
}
|
|
368
345
|
|
|
369
|
-
export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionExtraDataResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionWordingResponse, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type
|
|
346
|
+
export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionExtraDataResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionWordingResponse, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, type FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type StockExchangeResponse, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
|