@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.
@@ -7055,7 +7055,7 @@ export interface paths {
7055
7055
  cookie?: never;
7056
7056
  };
7057
7057
  /**
7058
- * @description Recurring Transaction Template List
7058
+ * @description List recurring transaction templates with server-side search and structured filters.
7059
7059
  *
7060
7060
  * Required scope: transactions:read
7061
7061
  */
@@ -152120,8 +152120,24 @@ export interface operations {
152120
152120
  getTransactionsRecurringTemplates: {
152121
152121
  parameters: {
152122
152122
  query?: {
152123
+ /** @description Comma-separated recurring transaction template unique refs. */
152123
152124
  uniqueRefs?: string;
152124
152125
  search?: string;
152126
+ /** @description Payment account or transaction-line account ID. */
152127
+ accountId?: string;
152128
+ /** @description Vendor/contact ID. */
152129
+ contactId?: string;
152130
+ /** @description Comma-separated listing IDs assigned to template lines. */
152131
+ listingIds?: string;
152132
+ /** @description Controls listingIds filter expansion. withChildren includes direct child listings; exact only matches the supplied listing IDs. */
152133
+ listingScope?: "exact" | "withChildren";
152134
+ frequency?: "daily" | "weekly" | "monthly" | "yearly";
152135
+ /** @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. */
152136
+ dateRange?: string;
152137
+ /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
152138
+ isDateRangeEndInclusive?: boolean;
152139
+ /** @description Filters the returned stored signed amount in integer cents; accepts comparisons and ranges. */
152140
+ amount?: string;
152125
152141
  limit?: number;
152126
152142
  page?: number;
152127
152143
  offset?: number;