@vrplatform/api 1.3.1-stage.6470 → 1.3.1-stage.6478

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.
@@ -4135,7 +4135,7 @@ export interface paths {
4135
4135
  cookie?: never;
4136
4136
  };
4137
4137
  /**
4138
- * @description Get the normalized lifecycle status of one asynchronous operation owned by the requesting tenant. Payloads, errors, effect details, and runtime identifiers remain private. See https://docs.vrplatform.app/api/operation-status.
4138
+ * @description Get the normalized lifecycle status of one public asynchronous operation owned by the requesting tenant, including provider-payment recovery. Payloads, errors, sync details, effect details, and runtime identifiers remain private. See https://docs.vrplatform.app/api/operation-status.
4139
4139
  *
4140
4140
  * Required scope: operations:read
4141
4141
  */
@@ -7251,7 +7251,7 @@ export interface paths {
7251
7251
  get?: never;
7252
7252
  put?: never;
7253
7253
  /**
7254
- * @description Archive a failed, returned, or canceled Ramp bill and then archive the payout accounting. Paid payouts cannot be archived. The provider mutation completes before journal entries are made inactive.
7254
+ * @description Archive a failed, returned, or canceled Ramp bill before archiving payout accounting. Poll the returned operationId through GET /operations/{id}; paid payouts cannot be archived.
7255
7255
  *
7256
7256
  * Required scope: transactions:write, ach-payments:execute
7257
7257
  */
@@ -7272,7 +7272,7 @@ export interface paths {
7272
7272
  get?: never;
7273
7273
  put?: never;
7274
7274
  /**
7275
- * @description Request cancellation of a requested or processing Ramp payment. Ramp is authoritative about cancellation eligibility. archivePayout=true first validates local accounting, then archives the payout only after the Ramp bill archive is durable. archivePayout=false stops money movement without changing payout accounting.
7275
+ * @description Request cancellation of a requested or processing Ramp payment, optionally followed by payout accounting archive. Poll the returned operationId through GET /operations/{id}; Ramp remains authoritative about cancellation eligibility.
7276
7276
  *
7277
7277
  * Required scope: transactions:mark-paid, ach-payments:execute
7278
7278
  */
@@ -87693,9 +87693,9 @@ export interface operations {
87693
87693
  /** Format: uuid */
87694
87694
  id: string;
87695
87695
  /** @enum {string} */
87696
- type: "vri-statement-import";
87696
+ type: "vri-statement-import" | "provider-payment-recovery";
87697
87697
  /** @enum {string} */
87698
- status: "queued" | "running" | "completed" | "failed";
87698
+ status: "queued" | "running" | "completed" | "failed" | "canceled";
87699
87699
  /**
87700
87700
  * Format: date-time
87701
87701
  * @description Timestamp string with date, time, milliseconds, and timezone.
@@ -157533,15 +157533,16 @@ export interface operations {
157533
157533
  };
157534
157534
  content: {
157535
157535
  "application/json": {
157536
- /** Format: uuid */
157537
- providerPaymentId: string;
157538
- /** Format: uuid */
157539
- syncId: string;
157540
- /** @enum {string} */
157541
- operation: "cancel" | "archive";
157542
- archivePayout: boolean;
157543
- /** @constant */
157544
- status: "requested";
157536
+ /**
157537
+ * Format: uuid
157538
+ * @description Public operation ID for GET /operations/{id} polling.
157539
+ */
157540
+ operationId: string;
157541
+ /**
157542
+ * @description Current asynchronous operation status.
157543
+ * @enum {string}
157544
+ */
157545
+ status: "queued" | "running";
157545
157546
  };
157546
157547
  };
157547
157548
  };
@@ -157797,15 +157798,16 @@ export interface operations {
157797
157798
  };
157798
157799
  content: {
157799
157800
  "application/json": {
157800
- /** Format: uuid */
157801
- providerPaymentId: string;
157802
- /** Format: uuid */
157803
- syncId: string;
157804
- /** @enum {string} */
157805
- operation: "cancel" | "archive";
157806
- archivePayout: boolean;
157807
- /** @constant */
157808
- status: "requested";
157801
+ /**
157802
+ * Format: uuid
157803
+ * @description Public operation ID for GET /operations/{id} polling.
157804
+ */
157805
+ operationId: string;
157806
+ /**
157807
+ * @description Current asynchronous operation status.
157808
+ * @enum {string}
157809
+ */
157810
+ status: "queued" | "running";
157809
157811
  };
157810
157812
  };
157811
157813
  };