@vrplatform/api 1.3.1-stage.6460 → 1.3.1-stage.6463
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/package.json
CHANGED
package/src/generated/v1.ts
CHANGED
|
@@ -7056,7 +7056,7 @@ export interface paths {
|
|
|
7056
7056
|
cookie?: never;
|
|
7057
7057
|
};
|
|
7058
7058
|
/**
|
|
7059
|
-
* @description
|
|
7059
|
+
* @description List recurring transaction templates with server-side search and structured filters.
|
|
7060
7060
|
*
|
|
7061
7061
|
* Required scope: transactions:read
|
|
7062
7062
|
*/
|
|
@@ -152121,8 +152121,24 @@ export interface operations {
|
|
|
152121
152121
|
getTransactionsRecurringTemplates: {
|
|
152122
152122
|
parameters: {
|
|
152123
152123
|
query?: {
|
|
152124
|
+
/** @description Comma-separated recurring transaction template unique refs. */
|
|
152124
152125
|
uniqueRefs?: string;
|
|
152125
152126
|
search?: string;
|
|
152127
|
+
/** @description Payment account or transaction-line account ID. */
|
|
152128
|
+
accountId?: string;
|
|
152129
|
+
/** @description Vendor/contact ID. */
|
|
152130
|
+
contactId?: string;
|
|
152131
|
+
/** @description Comma-separated listing IDs assigned to template lines. */
|
|
152132
|
+
listingIds?: string;
|
|
152133
|
+
/** @description Controls listingIds filter expansion. withChildren includes direct child listings; exact only matches the supplied listing IDs. */
|
|
152134
|
+
listingScope?: "exact" | "withChildren";
|
|
152135
|
+
frequency?: "daily" | "weekly" | "monthly" | "yearly";
|
|
152136
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD` (legacy comma separator also accepted). Single values expand to the full year, month, or day. */
|
|
152137
|
+
dateRange?: string;
|
|
152138
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
152139
|
+
isDateRangeEndInclusive?: boolean;
|
|
152140
|
+
/** @description Filters the returned stored signed amount in integer cents; accepts comparisons and ranges. */
|
|
152141
|
+
amount?: string;
|
|
152126
152142
|
limit?: number;
|
|
152127
152143
|
page?: number;
|
|
152128
152144
|
offset?: number;
|