@vrplatform/api 1.3.1-stage.4930 → 1.3.1-stage.4939

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.4930",
6
+ "version": "1.3.1-stage.4939",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1239,6 +1239,23 @@ export interface paths {
1239
1239
  patch?: never;
1240
1240
  trace?: never;
1241
1241
  };
1242
+ "/embed-sessions/frame-ancestor-policy": {
1243
+ parameters: {
1244
+ query?: never;
1245
+ header?: never;
1246
+ path?: never;
1247
+ cookie?: never;
1248
+ };
1249
+ get?: never;
1250
+ put?: never;
1251
+ /** @description Resolve a short-lived session-bound policy token so the embedded application host can emit one exact frame-ancestors origin before serving HTML. Successful responses use Cache-Control: no-store. */
1252
+ post: operations["getEmbedSessionFrameAncestorPolicy"];
1253
+ delete?: never;
1254
+ options?: never;
1255
+ head?: never;
1256
+ patch?: never;
1257
+ trace?: never;
1258
+ };
1242
1259
  "/files": {
1243
1260
  parameters: {
1244
1261
  query?: never;
@@ -12085,8 +12102,8 @@ export interface operations {
12085
12102
  }[];
12086
12103
  extractors: {
12087
12104
  name: string;
12088
- /** @constant */
12089
- sync: "full";
12105
+ /** @enum {string} */
12106
+ sync: "full" | "cursor";
12090
12107
  visible?: boolean;
12091
12108
  isDateRangeFetchable?: boolean;
12092
12109
  /** @enum {string} */
@@ -12390,8 +12407,8 @@ export interface operations {
12390
12407
  }[];
12391
12408
  extractors: {
12392
12409
  name: string;
12393
- /** @constant */
12394
- sync: "full";
12410
+ /** @enum {string} */
12411
+ sync: "full" | "cursor";
12395
12412
  visible?: boolean;
12396
12413
  isDateRangeFetchable?: boolean;
12397
12414
  /** @enum {string} */
@@ -29026,6 +29043,271 @@ export interface operations {
29026
29043
  };
29027
29044
  };
29028
29045
  };
29046
+ getEmbedSessionFrameAncestorPolicy: {
29047
+ parameters: {
29048
+ query?: never;
29049
+ header?: never;
29050
+ path?: never;
29051
+ cookie?: never;
29052
+ };
29053
+ requestBody?: {
29054
+ content: {
29055
+ "application/json": {
29056
+ /** @description Short-lived opaque policy token from the issued embed URL query. */
29057
+ frameAncestorToken: string;
29058
+ };
29059
+ };
29060
+ };
29061
+ responses: {
29062
+ /** @description Successful response */
29063
+ 200: {
29064
+ headers: {
29065
+ /** @description Prevents storage of the short-lived ancestor policy. */
29066
+ "Cache-Control"?: "no-store";
29067
+ [name: string]: unknown;
29068
+ };
29069
+ content: {
29070
+ "application/json": {
29071
+ /**
29072
+ * Format: uri
29073
+ * @description Exact embedded-application origin allowed to use this policy.
29074
+ */
29075
+ embedOrigin: string;
29076
+ /**
29077
+ * Format: uri
29078
+ * @description Exact parent-page origin allowed to frame the embedded application.
29079
+ */
29080
+ parentOrigin: string;
29081
+ };
29082
+ };
29083
+ };
29084
+ /** @description Bad request */
29085
+ 400: {
29086
+ headers: {
29087
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
29088
+ "Retry-After"?: number;
29089
+ [name: string]: unknown;
29090
+ };
29091
+ content: {
29092
+ "application/json": {
29093
+ code: string;
29094
+ message: string;
29095
+ links?: {
29096
+ docs: string;
29097
+ schema: string;
29098
+ };
29099
+ issues?: {
29100
+ message: string;
29101
+ path?: (string | number)[];
29102
+ schema?: string;
29103
+ }[];
29104
+ retryable?: boolean;
29105
+ context?: unknown;
29106
+ };
29107
+ };
29108
+ };
29109
+ /** @description Unauthorized */
29110
+ 401: {
29111
+ headers: {
29112
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
29113
+ "Retry-After"?: number;
29114
+ [name: string]: unknown;
29115
+ };
29116
+ content: {
29117
+ "application/json": {
29118
+ code: string;
29119
+ message: string;
29120
+ links?: {
29121
+ docs: string;
29122
+ schema: string;
29123
+ };
29124
+ issues?: {
29125
+ message: string;
29126
+ path?: (string | number)[];
29127
+ schema?: string;
29128
+ }[];
29129
+ retryable?: boolean;
29130
+ context?: unknown;
29131
+ };
29132
+ };
29133
+ };
29134
+ /** @description Forbidden */
29135
+ 403: {
29136
+ headers: {
29137
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
29138
+ "Retry-After"?: number;
29139
+ [name: string]: unknown;
29140
+ };
29141
+ content: {
29142
+ "application/json": {
29143
+ code: string;
29144
+ message: string;
29145
+ links?: {
29146
+ docs: string;
29147
+ schema: string;
29148
+ };
29149
+ issues?: {
29150
+ message: string;
29151
+ path?: (string | number)[];
29152
+ schema?: string;
29153
+ }[];
29154
+ retryable?: boolean;
29155
+ context?: unknown;
29156
+ };
29157
+ };
29158
+ };
29159
+ /** @description Not found */
29160
+ 404: {
29161
+ headers: {
29162
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
29163
+ "Retry-After"?: number;
29164
+ [name: string]: unknown;
29165
+ };
29166
+ content: {
29167
+ "application/json": {
29168
+ code: string;
29169
+ message: string;
29170
+ links?: {
29171
+ docs: string;
29172
+ schema: string;
29173
+ };
29174
+ issues?: {
29175
+ message: string;
29176
+ path?: (string | number)[];
29177
+ schema?: string;
29178
+ }[];
29179
+ retryable?: boolean;
29180
+ context?: unknown;
29181
+ };
29182
+ };
29183
+ };
29184
+ /** @description Conflict */
29185
+ 409: {
29186
+ headers: {
29187
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
29188
+ "Retry-After"?: number;
29189
+ [name: string]: unknown;
29190
+ };
29191
+ content: {
29192
+ "application/json": {
29193
+ code: string;
29194
+ message: string;
29195
+ links?: {
29196
+ docs: string;
29197
+ schema: string;
29198
+ };
29199
+ issues?: {
29200
+ message: string;
29201
+ path?: (string | number)[];
29202
+ schema?: string;
29203
+ }[];
29204
+ retryable?: boolean;
29205
+ context?: unknown;
29206
+ };
29207
+ };
29208
+ };
29209
+ /** @description Gone */
29210
+ 410: {
29211
+ headers: {
29212
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
29213
+ "Retry-After"?: number;
29214
+ [name: string]: unknown;
29215
+ };
29216
+ content: {
29217
+ "application/json": {
29218
+ code: string;
29219
+ message: string;
29220
+ links?: {
29221
+ docs: string;
29222
+ schema: string;
29223
+ };
29224
+ issues?: {
29225
+ message: string;
29226
+ path?: (string | number)[];
29227
+ schema?: string;
29228
+ }[];
29229
+ retryable?: boolean;
29230
+ context?: unknown;
29231
+ };
29232
+ };
29233
+ };
29234
+ /** @description Unprocessable content */
29235
+ 422: {
29236
+ headers: {
29237
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
29238
+ "Retry-After"?: number;
29239
+ [name: string]: unknown;
29240
+ };
29241
+ content: {
29242
+ "application/json": {
29243
+ code: string;
29244
+ message: string;
29245
+ links?: {
29246
+ docs: string;
29247
+ schema: string;
29248
+ };
29249
+ issues?: {
29250
+ message: string;
29251
+ path?: (string | number)[];
29252
+ schema?: string;
29253
+ }[];
29254
+ retryable?: boolean;
29255
+ context?: unknown;
29256
+ };
29257
+ };
29258
+ };
29259
+ /** @description Internal server error */
29260
+ 500: {
29261
+ headers: {
29262
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
29263
+ "Retry-After"?: number;
29264
+ [name: string]: unknown;
29265
+ };
29266
+ content: {
29267
+ "application/json": {
29268
+ code: string;
29269
+ message: string;
29270
+ links?: {
29271
+ docs: string;
29272
+ schema: string;
29273
+ };
29274
+ issues?: {
29275
+ message: string;
29276
+ path?: (string | number)[];
29277
+ schema?: string;
29278
+ }[];
29279
+ retryable?: boolean;
29280
+ context?: unknown;
29281
+ };
29282
+ };
29283
+ };
29284
+ /** @description Service unavailable */
29285
+ 503: {
29286
+ headers: {
29287
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
29288
+ "Retry-After"?: number;
29289
+ [name: string]: unknown;
29290
+ };
29291
+ content: {
29292
+ "application/json": {
29293
+ code: string;
29294
+ message: string;
29295
+ links?: {
29296
+ docs: string;
29297
+ schema: string;
29298
+ };
29299
+ issues?: {
29300
+ message: string;
29301
+ path?: (string | number)[];
29302
+ schema?: string;
29303
+ }[];
29304
+ retryable?: boolean;
29305
+ context?: unknown;
29306
+ };
29307
+ };
29308
+ };
29309
+ };
29310
+ };
29029
29311
  getFiles: {
29030
29312
  parameters: {
29031
29313
  query?: {
@@ -61465,7 +61747,7 @@ export interface operations {
61465
61747
  channelId: string;
61466
61748
  /**
61467
61749
  * Format: uri
61468
- * @description Ready-to-mount embedded application URL.
61750
+ * @description Ready-to-mount embedded application URL containing a short-lived frame-ancestor policy token in the query and a one-time bootstrap code in the fragment.
61469
61751
  */
61470
61752
  embedUrl: string;
61471
61753
  /**
@@ -62009,7 +62291,7 @@ export interface operations {
62009
62291
  channelId: string;
62010
62292
  /**
62011
62293
  * Format: uri
62012
- * @description Ready-to-mount embedded application URL.
62294
+ * @description Ready-to-mount embedded application URL containing a short-lived frame-ancestor policy token in the query and a one-time bootstrap code in the fragment.
62013
62295
  */
62014
62296
  embedUrl: string;
62015
62297
  /**