@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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.1-stage.4994",
6
+ "version": "1.3.1-stage.5003",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -320,7 +320,7 @@ export interface paths {
320
320
  cookie?: never;
321
321
  };
322
322
  /**
323
- * @description Get apps
323
+ * @description List apps. Legacy uncategorized apps return category as null.
324
324
  *
325
325
  * Required scope: integrations:read
326
326
  */
@@ -341,7 +341,7 @@ export interface paths {
341
341
  cookie?: never;
342
342
  };
343
343
  /**
344
- * @description Get app by ID
344
+ * @description Get an app by ID. Legacy uncategorized apps return category as null.
345
345
  *
346
346
  * Required scope: integrations:read
347
347
  */
@@ -761,7 +761,7 @@ export interface paths {
761
761
  get?: never;
762
762
  put?: never;
763
763
  /**
764
- * @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.
764
+ * @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.
765
765
  *
766
766
  * Required scope: integrations:write
767
767
  */
@@ -918,7 +918,7 @@ export interface paths {
918
918
  get?: never;
919
919
  put?: never;
920
920
  /**
921
- * @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.
921
+ * @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.
922
922
  *
923
923
  * Required scope: integrations:write
924
924
  */
@@ -4720,7 +4720,7 @@ export interface paths {
4720
4720
  get?: never;
4721
4721
  put?: never;
4722
4722
  /**
4723
- * @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
+ * @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.
4724
4724
  *
4725
4725
  * Required scope: statements:pay
4726
4726
  */
@@ -12332,7 +12332,8 @@ export interface operations {
12332
12332
  name: string;
12333
12333
  icon?: string;
12334
12334
  type: string;
12335
- category: string;
12335
+ /** @description App category, or null for legacy uncategorized apps */
12336
+ category: string | null;
12336
12337
  description?: string | null;
12337
12338
  extension?: {
12338
12339
  url: string;
@@ -12637,7 +12638,8 @@ export interface operations {
12637
12638
  name: string;
12638
12639
  icon?: string;
12639
12640
  type: string;
12640
- category: string;
12641
+ /** @description App category, or null for legacy uncategorized apps */
12642
+ category: string | null;
12641
12643
  description?: string | null;
12642
12644
  extension?: {
12643
12645
  url: string;