sowhat-types 2.0.96 → 2.0.97
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 +13 -11
- package/dist/index.d.ts +13 -11
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -81,11 +81,17 @@ declare enum UserStatusEnum {
|
|
|
81
81
|
BLACK_LISTED = "BLACK_LISTED"
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
+
interface AssetCoOwnerInput {
|
|
85
|
+
id: string;
|
|
86
|
+
coOwnershipShare: number;
|
|
87
|
+
}
|
|
88
|
+
|
|
84
89
|
interface UpdateBankAccountInput {
|
|
85
90
|
id: string;
|
|
86
91
|
name?: string;
|
|
87
92
|
alertThreshold?: number;
|
|
88
93
|
position?: number;
|
|
94
|
+
coOwner?: AssetCoOwnerInput | null;
|
|
89
95
|
}
|
|
90
96
|
|
|
91
97
|
interface AllocateTransactionInput {
|
|
@@ -101,11 +107,6 @@ interface UpdateBankAccountTransactionInput {
|
|
|
101
107
|
newApplicationDate?: Date;
|
|
102
108
|
}
|
|
103
109
|
|
|
104
|
-
interface AssetCoOwnerInput {
|
|
105
|
-
id: string;
|
|
106
|
-
coOwnershipShare: number;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
110
|
interface CreateMobilityInput {
|
|
110
111
|
name: string;
|
|
111
112
|
imageUrl: string | null;
|
|
@@ -319,6 +320,12 @@ interface BankAccountTransactionCounterpartyResponse {
|
|
|
319
320
|
type: string | null;
|
|
320
321
|
}
|
|
321
322
|
|
|
323
|
+
interface AssetCoOwnerResponse {
|
|
324
|
+
id: string;
|
|
325
|
+
name: string;
|
|
326
|
+
coOwnershipShare: number;
|
|
327
|
+
}
|
|
328
|
+
|
|
322
329
|
interface BankAccountResponse {
|
|
323
330
|
id: string;
|
|
324
331
|
powensId: number;
|
|
@@ -333,6 +340,7 @@ interface BankAccountResponse {
|
|
|
333
340
|
position: number;
|
|
334
341
|
deletedByBank: Date | null;
|
|
335
342
|
transactions: BankAccountTransactionResponse[];
|
|
343
|
+
coOwner: AssetCoOwnerResponse | null;
|
|
336
344
|
}
|
|
337
345
|
|
|
338
346
|
interface BudgetIncomesAllocationResponse {
|
|
@@ -441,12 +449,6 @@ interface MobilityUpdatedResponse {
|
|
|
441
449
|
errorMessage: string | null;
|
|
442
450
|
}
|
|
443
451
|
|
|
444
|
-
interface AssetCoOwnerResponse {
|
|
445
|
-
id: string;
|
|
446
|
-
name: string;
|
|
447
|
-
coOwnershipShare: number;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
452
|
interface MobilityResponse {
|
|
451
453
|
id: string;
|
|
452
454
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -81,11 +81,17 @@ declare enum UserStatusEnum {
|
|
|
81
81
|
BLACK_LISTED = "BLACK_LISTED"
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
+
interface AssetCoOwnerInput {
|
|
85
|
+
id: string;
|
|
86
|
+
coOwnershipShare: number;
|
|
87
|
+
}
|
|
88
|
+
|
|
84
89
|
interface UpdateBankAccountInput {
|
|
85
90
|
id: string;
|
|
86
91
|
name?: string;
|
|
87
92
|
alertThreshold?: number;
|
|
88
93
|
position?: number;
|
|
94
|
+
coOwner?: AssetCoOwnerInput | null;
|
|
89
95
|
}
|
|
90
96
|
|
|
91
97
|
interface AllocateTransactionInput {
|
|
@@ -101,11 +107,6 @@ interface UpdateBankAccountTransactionInput {
|
|
|
101
107
|
newApplicationDate?: Date;
|
|
102
108
|
}
|
|
103
109
|
|
|
104
|
-
interface AssetCoOwnerInput {
|
|
105
|
-
id: string;
|
|
106
|
-
coOwnershipShare: number;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
110
|
interface CreateMobilityInput {
|
|
110
111
|
name: string;
|
|
111
112
|
imageUrl: string | null;
|
|
@@ -319,6 +320,12 @@ interface BankAccountTransactionCounterpartyResponse {
|
|
|
319
320
|
type: string | null;
|
|
320
321
|
}
|
|
321
322
|
|
|
323
|
+
interface AssetCoOwnerResponse {
|
|
324
|
+
id: string;
|
|
325
|
+
name: string;
|
|
326
|
+
coOwnershipShare: number;
|
|
327
|
+
}
|
|
328
|
+
|
|
322
329
|
interface BankAccountResponse {
|
|
323
330
|
id: string;
|
|
324
331
|
powensId: number;
|
|
@@ -333,6 +340,7 @@ interface BankAccountResponse {
|
|
|
333
340
|
position: number;
|
|
334
341
|
deletedByBank: Date | null;
|
|
335
342
|
transactions: BankAccountTransactionResponse[];
|
|
343
|
+
coOwner: AssetCoOwnerResponse | null;
|
|
336
344
|
}
|
|
337
345
|
|
|
338
346
|
interface BudgetIncomesAllocationResponse {
|
|
@@ -441,12 +449,6 @@ interface MobilityUpdatedResponse {
|
|
|
441
449
|
errorMessage: string | null;
|
|
442
450
|
}
|
|
443
451
|
|
|
444
|
-
interface AssetCoOwnerResponse {
|
|
445
|
-
id: string;
|
|
446
|
-
name: string;
|
|
447
|
-
coOwnershipShare: number;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
452
|
interface MobilityResponse {
|
|
451
453
|
id: string;
|
|
452
454
|
name: string;
|