sowhat-types 2.0.14 → 2.0.16

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 CHANGED
@@ -65,26 +65,6 @@ declare enum UserStatusEnum {
65
65
  BLACK_LISTED = "BLACK_LISTED"
66
66
  }
67
67
 
68
- interface LogoutUserInput {
69
- userId: string;
70
- }
71
-
72
- interface CreateUserCoOwnerInput {
73
- userId: string;
74
- customName: string;
75
- email: string | null;
76
- phone: string | null;
77
- customImage: string | null;
78
- }
79
-
80
- interface DeleteUserCoOwnerInput {
81
- coOwnerId: string;
82
- }
83
-
84
- interface FetchUserCoOwnerInput {
85
- coOwnerId: string;
86
- }
87
-
88
68
  interface PaginationInput {
89
69
  offset: number;
90
70
  limit: number;
@@ -142,6 +122,38 @@ interface CreateOtherAssetInput {
142
122
  note: string | null;
143
123
  }
144
124
 
125
+ interface LogoutUserInput {
126
+ userId: string;
127
+ }
128
+
129
+ interface CreateBudgetExpensesAllocationInput {
130
+ name: string;
131
+ theoricalValuePerMonth: number;
132
+ color: string;
133
+ icon: string;
134
+ note: string | null;
135
+ }
136
+
137
+ interface DeleteBudgetExpensesAllocationInput {
138
+ id: string;
139
+ }
140
+
141
+ interface CreateUserCoOwnerInput {
142
+ userId: string;
143
+ customName: string;
144
+ email: string | null;
145
+ phone: string | null;
146
+ customImage: string | null;
147
+ }
148
+
149
+ interface DeleteUserCoOwnerInput {
150
+ coOwnerId: string;
151
+ }
152
+
153
+ interface FetchUserCoOwnerInput {
154
+ coOwnerId: string;
155
+ }
156
+
145
157
  interface BankAccountBalancesResponse {
146
158
  /**
147
159
  * total balance for checking type accounts
@@ -333,6 +345,23 @@ interface LogoutUserResponse {
333
345
  isLoggedOut: boolean;
334
346
  }
335
347
 
348
+ interface BudgetExpensesAllocationDeletedOutput {
349
+ deleted: boolean;
350
+ errorMessage: string | null;
351
+ }
352
+
353
+ interface BudgetExpensesAllocationResponse {
354
+ id: string;
355
+ userId: string;
356
+ name: string;
357
+ icon: string;
358
+ color: string;
359
+ theoricalValuePerMonth: number;
360
+ note: string | null;
361
+ updatedAt: Date | null;
362
+ createdAt: Date;
363
+ }
364
+
336
365
  interface CoOwnerDeletedResponse {
337
366
  deleted: boolean;
338
367
  errorMessage: string | null;
@@ -384,4 +413,4 @@ declare class FilterArgs {
384
413
  take: number;
385
414
  }
386
415
 
387
- 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 CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, 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 UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
416
+ 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 BudgetExpensesAllocationDeletedOutput, type BudgetExpensesAllocationResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateBudgetExpensesAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, 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 UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
package/dist/index.d.ts CHANGED
@@ -65,26 +65,6 @@ declare enum UserStatusEnum {
65
65
  BLACK_LISTED = "BLACK_LISTED"
66
66
  }
67
67
 
68
- interface LogoutUserInput {
69
- userId: string;
70
- }
71
-
72
- interface CreateUserCoOwnerInput {
73
- userId: string;
74
- customName: string;
75
- email: string | null;
76
- phone: string | null;
77
- customImage: string | null;
78
- }
79
-
80
- interface DeleteUserCoOwnerInput {
81
- coOwnerId: string;
82
- }
83
-
84
- interface FetchUserCoOwnerInput {
85
- coOwnerId: string;
86
- }
87
-
88
68
  interface PaginationInput {
89
69
  offset: number;
90
70
  limit: number;
@@ -142,6 +122,38 @@ interface CreateOtherAssetInput {
142
122
  note: string | null;
143
123
  }
144
124
 
125
+ interface LogoutUserInput {
126
+ userId: string;
127
+ }
128
+
129
+ interface CreateBudgetExpensesAllocationInput {
130
+ name: string;
131
+ theoricalValuePerMonth: number;
132
+ color: string;
133
+ icon: string;
134
+ note: string | null;
135
+ }
136
+
137
+ interface DeleteBudgetExpensesAllocationInput {
138
+ id: string;
139
+ }
140
+
141
+ interface CreateUserCoOwnerInput {
142
+ userId: string;
143
+ customName: string;
144
+ email: string | null;
145
+ phone: string | null;
146
+ customImage: string | null;
147
+ }
148
+
149
+ interface DeleteUserCoOwnerInput {
150
+ coOwnerId: string;
151
+ }
152
+
153
+ interface FetchUserCoOwnerInput {
154
+ coOwnerId: string;
155
+ }
156
+
145
157
  interface BankAccountBalancesResponse {
146
158
  /**
147
159
  * total balance for checking type accounts
@@ -333,6 +345,23 @@ interface LogoutUserResponse {
333
345
  isLoggedOut: boolean;
334
346
  }
335
347
 
348
+ interface BudgetExpensesAllocationDeletedOutput {
349
+ deleted: boolean;
350
+ errorMessage: string | null;
351
+ }
352
+
353
+ interface BudgetExpensesAllocationResponse {
354
+ id: string;
355
+ userId: string;
356
+ name: string;
357
+ icon: string;
358
+ color: string;
359
+ theoricalValuePerMonth: number;
360
+ note: string | null;
361
+ updatedAt: Date | null;
362
+ createdAt: Date;
363
+ }
364
+
336
365
  interface CoOwnerDeletedResponse {
337
366
  deleted: boolean;
338
367
  errorMessage: string | null;
@@ -384,4 +413,4 @@ declare class FilterArgs {
384
413
  take: number;
385
414
  }
386
415
 
387
- 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 CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, 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 UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
416
+ 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 BudgetExpensesAllocationDeletedOutput, type BudgetExpensesAllocationResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateBudgetExpensesAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, 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 UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.14",
3
+ "version": "2.0.16",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",