@vrplatform/api 1.3.1-stage.4994 → 1.3.1-stage.4999

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.
@@ -319,7 +319,7 @@ export interface paths {
319
319
  cookie?: never;
320
320
  };
321
321
  /**
322
- * @description Get apps
322
+ * @description List apps. Legacy uncategorized apps return category as null.
323
323
  *
324
324
  * Required scope: integrations:read
325
325
  */
@@ -340,7 +340,7 @@ export interface paths {
340
340
  cookie?: never;
341
341
  };
342
342
  /**
343
- * @description Get app by ID
343
+ * @description Get an app by ID. Legacy uncategorized apps return category as null.
344
344
  *
345
345
  * Required scope: integrations:read
346
346
  */
@@ -4719,7 +4719,7 @@ export interface paths {
4719
4719
  get?: never;
4720
4720
  put?: never;
4721
4721
  /**
4722
- * @description Request selected Ramp owner payouts. Each statement succeeds or is skipped independently, so one blocked selection never rolls back successful requests. Only first payouts are supported: statements that already have a payout are skipped, and additional partial payments go through POST /statements/{id}/pay. An explicit amount overrides the full net income and therefore requires exactly one selection.
4722
+ * @description Request selected Ramp owner payouts. Each statement succeeds or is skipped independently, so one blocked selection never rolls back successful requests. Only first payouts are supported: statements that already have a payout are skipped, and additional partial payments go through `POST /statements/{id}/pay`. An explicit amount overrides the full net income and therefore requires exactly one selection.
4723
4723
  *
4724
4724
  * Required scope: statements:pay
4725
4725
  */
@@ -12331,7 +12331,8 @@ export interface operations {
12331
12331
  name: string;
12332
12332
  icon?: string;
12333
12333
  type: string;
12334
- category: string;
12334
+ /** @description App category, or null for legacy uncategorized apps */
12335
+ category: string | null;
12335
12336
  description?: string | null;
12336
12337
  extension?: {
12337
12338
  url: string;
@@ -12636,7 +12637,8 @@ export interface operations {
12636
12637
  name: string;
12637
12638
  icon?: string;
12638
12639
  type: string;
12639
- category: string;
12640
+ /** @description App category, or null for legacy uncategorized apps */
12641
+ category: string | null;
12640
12642
  description?: string | null;
12641
12643
  extension?: {
12642
12644
  url: string;