You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// @Param date query string false "Date of the transaction. Ignores exact time, matches on the day of the RFC3339 timestamp provided."
116
-
// @Param fromDate query string false "Transactions at and after this date. Ignores exact time, matches on the day of the RFC3339 timestamp provided."
117
-
// @Param untilDate query string false "Transactions before and at this date. Ignores exact time, matches on the day of the RFC3339 timestamp provided."
118
-
// @Param amount query string false "Filter by amount"
119
-
// @Param amountLessOrEqual query string false "Amount less than or equal to this"
120
-
// @Param amountMoreOrEqual query string false "Amount more than or equal to this"
121
-
// @Param note query string false "Filter by note"
122
-
// @Param budget query string false "Filter by budget ID"
123
-
// @Param account query string false "Filter by ID of associated account, regardeless of source or destination"
// @Param envelope query string false "Filter by envelope ID"
127
-
// @Param reconciledSource query bool false "Reconcilication state in source account"
128
-
// @Param reconciledDestination query bool false "Reconcilication state in destination account"
129
-
// @Param offset query uint false "The offset of the first Transaction returned. Defaults to 0."
130
-
// @Param limit query int false "Maximum number of Transactions to return. Defaults to 50."
115
+
// @Param date query string false "Date of the transaction. Ignores exact time, matches on the day of the RFC3339 timestamp provided."
116
+
// @Param fromDate query string false "Transactions at and after this date. Ignores exact time, matches on the day of the RFC3339 timestamp provided."
117
+
// @Param untilDate query string false "Transactions before and at this date. Ignores exact time, matches on the day of the RFC3339 timestamp provided."
118
+
// @Param amount query string false "Filter by amount"
119
+
// @Param amountLessOrEqual query string false "Amount less than or equal to this"
120
+
// @Param amountMoreOrEqual query string false "Amount more than or equal to this"
121
+
// @Param note query string false "Filter by note"
122
+
// @Param budget query string false "Filter by budget ID"
123
+
// @Param account query string false "Filter by ID of associated account, regardeless of source or destination"
{"Not reconciled in destination account", "reconciledDestination=false", 1},
256
-
{"Not reconciled in source account", "reconciledSource=false", 1},
258
+
{"Not reconciled in destination account", "reconciledDestination=false", 2},
259
+
{"Not reconciled in source account", "reconciledSource=false", 2},
257
260
{"Note", "note=Not important", 1},
258
261
{"Offset and Fuzzy Note", "offset=2¬e=important", 0},
259
262
{"Offset higher than number", "offset=5", 0},
260
263
{"Offset positive", "offset=2", 1},
261
264
{"Offset zero", "offset=0", 3},
262
-
{"Reconciled in destination account", "reconciledDestination=true", 2},
263
-
{"Reconciled in source account", "reconciledSource=true", 2},
265
+
{"Reconciled in destination account", "reconciledDestination=true", 1},
266
+
{"Reconciled in source account", "reconciledSource=true", 1},
264
267
{"Regression - For 'account', query needs to be ORed between the accounts and ANDed with all other conditions", fmt.Sprintf("note=&account=%s", a2.Data.ID), 1},
0 commit comments