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