@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
package/src/generated/v1.ts
CHANGED
|
@@ -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
|
|
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
|
|
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
|
-
/**
|
|
157538
|
-
|
|
157539
|
-
|
|
157540
|
-
|
|
157541
|
-
|
|
157542
|
-
|
|
157543
|
-
|
|
157544
|
-
|
|
157545
|
-
|
|
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
|
-
/**
|
|
157802
|
-
|
|
157803
|
-
|
|
157804
|
-
|
|
157805
|
-
|
|
157806
|
-
|
|
157807
|
-
|
|
157808
|
-
|
|
157809
|
-
|
|
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
|
};
|