@firela/api-types 0.0.0-canary.fb3ac1dd → 0.0.0-canary.feeae929
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
|
@@ -3517,13 +3517,13 @@ type ProviderSyncConfigDto = {
|
|
|
3517
3517
|
*/
|
|
3518
3518
|
defaultCurrency: string;
|
|
3519
3519
|
/**
|
|
3520
|
-
* Default expense account for the second posting
|
|
3520
|
+
* Default expense account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3521
3521
|
*/
|
|
3522
|
-
defaultExpenseAccount
|
|
3522
|
+
defaultExpenseAccount?: string;
|
|
3523
3523
|
/**
|
|
3524
|
-
* Default income account for the second posting
|
|
3524
|
+
* Default income account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3525
3525
|
*/
|
|
3526
|
-
defaultIncomeAccount
|
|
3526
|
+
defaultIncomeAccount?: string;
|
|
3527
3527
|
/**
|
|
3528
3528
|
* Filter pending transactions
|
|
3529
3529
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -3517,13 +3517,13 @@ type ProviderSyncConfigDto = {
|
|
|
3517
3517
|
*/
|
|
3518
3518
|
defaultCurrency: string;
|
|
3519
3519
|
/**
|
|
3520
|
-
* Default expense account for the second posting
|
|
3520
|
+
* Default expense account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3521
3521
|
*/
|
|
3522
|
-
defaultExpenseAccount
|
|
3522
|
+
defaultExpenseAccount?: string;
|
|
3523
3523
|
/**
|
|
3524
|
-
* Default income account for the second posting
|
|
3524
|
+
* Default income account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
3525
3525
|
*/
|
|
3526
|
-
defaultIncomeAccount
|
|
3526
|
+
defaultIncomeAccount?: string;
|
|
3527
3527
|
/**
|
|
3528
3528
|
* Filter pending transactions
|
|
3529
3529
|
*/
|
package/package.json
CHANGED
|
@@ -5747,12 +5747,14 @@ export const $ProviderSyncConfigDto = {
|
|
|
5747
5747
|
},
|
|
5748
5748
|
defaultExpenseAccount: {
|
|
5749
5749
|
type: 'string',
|
|
5750
|
-
description:
|
|
5750
|
+
description:
|
|
5751
|
+
'Default expense account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).',
|
|
5751
5752
|
example: 'Expenses:Unknown'
|
|
5752
5753
|
},
|
|
5753
5754
|
defaultIncomeAccount: {
|
|
5754
5755
|
type: 'string',
|
|
5755
|
-
description:
|
|
5756
|
+
description:
|
|
5757
|
+
'Default income account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).',
|
|
5756
5758
|
example: 'Income:Unknown'
|
|
5757
5759
|
},
|
|
5758
5760
|
filterPending: {
|
|
@@ -5767,12 +5769,7 @@ export const $ProviderSyncConfigDto = {
|
|
|
5767
5769
|
example: 'acc_gocardless_001'
|
|
5768
5770
|
}
|
|
5769
5771
|
},
|
|
5770
|
-
required: [
|
|
5771
|
-
'sourceAccount',
|
|
5772
|
-
'defaultCurrency',
|
|
5773
|
-
'defaultExpenseAccount',
|
|
5774
|
-
'defaultIncomeAccount'
|
|
5775
|
-
]
|
|
5772
|
+
required: ['sourceAccount', 'defaultCurrency']
|
|
5776
5773
|
} as const;
|
|
5777
5774
|
|
|
5778
5775
|
export const $ProviderSyncDto = {
|
|
@@ -4054,13 +4054,13 @@ export type ProviderSyncConfigDto = {
|
|
|
4054
4054
|
*/
|
|
4055
4055
|
defaultCurrency: string;
|
|
4056
4056
|
/**
|
|
4057
|
-
* Default expense account for the second posting
|
|
4057
|
+
* Default expense account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
4058
4058
|
*/
|
|
4059
|
-
defaultExpenseAccount
|
|
4059
|
+
defaultExpenseAccount?: string;
|
|
4060
4060
|
/**
|
|
4061
|
-
* Default income account for the second posting
|
|
4061
|
+
* Default income account for the second posting. Omit when no real default exists; the pipeline routes to Review via the Uncategorized sentinel (#618).
|
|
4062
4062
|
*/
|
|
4063
|
-
defaultIncomeAccount
|
|
4063
|
+
defaultIncomeAccount?: string;
|
|
4064
4064
|
/**
|
|
4065
4065
|
* Filter pending transactions
|
|
4066
4066
|
*/
|