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

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
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.1-stage.6470",
6
+ "version": "1.3.1-stage.6477",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -4136,7 +4136,7 @@ export interface paths {
4136
4136
  cookie?: never;
4137
4137
  };
4138
4138
  /**
4139
- * @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.
4139
+ * @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.
4140
4140
  *
4141
4141
  * Required scope: operations:read
4142
4142
  */
@@ -7252,7 +7252,7 @@ export interface paths {
7252
7252
  get?: never;
7253
7253
  put?: never;
7254
7254
  /**
7255
- * @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.
7255
+ * @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.
7256
7256
  *
7257
7257
  * Required scope: transactions:write, ach-payments:execute
7258
7258
  */
@@ -7273,7 +7273,7 @@ export interface paths {
7273
7273
  get?: never;
7274
7274
  put?: never;
7275
7275
  /**
7276
- * @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.
7276
+ * @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.
7277
7277
  *
7278
7278
  * Required scope: transactions:mark-paid, ach-payments:execute
7279
7279
  */
@@ -87694,9 +87694,9 @@ export interface operations {
87694
87694
  /** Format: uuid */
87695
87695
  id: string;
87696
87696
  /** @enum {string} */
87697
- type: "vri-statement-import";
87697
+ type: "vri-statement-import" | "provider-payment-recovery";
87698
87698
  /** @enum {string} */
87699
- status: "queued" | "running" | "completed" | "failed";
87699
+ status: "queued" | "running" | "completed" | "failed" | "canceled";
87700
87700
  /**
87701
87701
  * Format: date-time
87702
87702
  * @description Timestamp string with date, time, milliseconds, and timezone.
@@ -157534,15 +157534,16 @@ export interface operations {
157534
157534
  };
157535
157535
  content: {
157536
157536
  "application/json": {
157537
- /** Format: uuid */
157538
- providerPaymentId: string;
157539
- /** Format: uuid */
157540
- syncId: string;
157541
- /** @enum {string} */
157542
- operation: "cancel" | "archive";
157543
- archivePayout: boolean;
157544
- /** @constant */
157545
- status: "requested";
157537
+ /**
157538
+ * Format: uuid
157539
+ * @description Public operation ID for GET /operations/{id} polling.
157540
+ */
157541
+ operationId: string;
157542
+ /**
157543
+ * @description Current asynchronous operation status.
157544
+ * @enum {string}
157545
+ */
157546
+ status: "queued" | "running";
157546
157547
  };
157547
157548
  };
157548
157549
  };
@@ -157798,15 +157799,16 @@ export interface operations {
157798
157799
  };
157799
157800
  content: {
157800
157801
  "application/json": {
157801
- /** Format: uuid */
157802
- providerPaymentId: string;
157803
- /** Format: uuid */
157804
- syncId: string;
157805
- /** @enum {string} */
157806
- operation: "cancel" | "archive";
157807
- archivePayout: boolean;
157808
- /** @constant */
157809
- status: "requested";
157802
+ /**
157803
+ * Format: uuid
157804
+ * @description Public operation ID for GET /operations/{id} polling.
157805
+ */
157806
+ operationId: string;
157807
+ /**
157808
+ * @description Current asynchronous operation status.
157809
+ * @enum {string}
157810
+ */
157811
+ status: "queued" | "running";
157810
157812
  };
157811
157813
  };
157812
157814
  };