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

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
  */
@@ -760,7 +760,7 @@ export interface paths {
760
760
  get?: never;
761
761
  put?: never;
762
762
  /**
763
- * @description Connect an app and create the connection. OAuth defaults to https://portal.vrplatform.app/callback/ when redirectTo is omitted. The legacy production /callback path is normalized to /callback/. Provider integrations must return stable account identity. The built-in API app receives server-generated connection identity. PMS connections queue durable reservation line-mapping initialization.
763
+ * @description Connect an app and create the connection. OAuth defaults to https://portal.vrplatform.app/callback/ when redirectTo is omitted. The legacy production /callback path is normalized to /callback/. Provider integrations must return stable account identity. The built-in API app receives server-generated connection identity. PMS connections queue durable reservation line-mapping initialization. Hostaway webhook reconciliation runs after credentials are stored. Provider tasks that do not finish within 15 seconds return ERROR_TIMEOUT.
764
764
  *
765
765
  * Required scope: integrations:write
766
766
  */
@@ -917,7 +917,7 @@ export interface paths {
917
917
  get?: never;
918
918
  put?: never;
919
919
  /**
920
- * @description Reconnect an existing app connection. OAuth defaults to https://portal.vrplatform.app/callback/ when redirectTo is omitted. The legacy production /callback path is normalized to /callback/. The built-in API app preserves its existing server-generated identity. PMS reconnections queue durable reservation line-mapping initialization.
920
+ * @description Reconnect an existing app connection. OAuth defaults to https://portal.vrplatform.app/callback/ when redirectTo is omitted. The legacy production /callback path is normalized to /callback/. The built-in API app preserves its existing server-generated identity. PMS reconnections queue durable reservation line-mapping initialization. Hostaway webhook reconciliation runs after credentials are stored. Provider tasks that do not finish within 15 seconds return ERROR_TIMEOUT.
921
921
  *
922
922
  * Required scope: integrations:write
923
923
  */
@@ -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;