@vrplatform/api 1.3.1-stage.6221 → 1.3.1-stage.6229

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.6221",
6
+ "version": "1.3.1-stage.6229",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1385,6 +1385,27 @@ export interface paths {
1385
1385
  patch?: never;
1386
1386
  trace?: never;
1387
1387
  };
1388
+ "/email-templates/test": {
1389
+ parameters: {
1390
+ query?: never;
1391
+ header?: never;
1392
+ path?: never;
1393
+ cookie?: never;
1394
+ };
1395
+ get?: never;
1396
+ put?: never;
1397
+ /**
1398
+ * @description Send unsaved email-template content to the authenticated user's email address through the API Trigger project. The recipient cannot be supplied by the caller.
1399
+ *
1400
+ * Required scope: team-settings:write
1401
+ */
1402
+ post: operations["sendTestEmail"];
1403
+ delete?: never;
1404
+ options?: never;
1405
+ head?: never;
1406
+ patch?: never;
1407
+ trace?: never;
1408
+ };
1388
1409
  "/email-templates/{type}": {
1389
1410
  parameters: {
1390
1411
  query?: never;
@@ -32136,6 +32157,262 @@ export interface operations {
32136
32157
  };
32137
32158
  };
32138
32159
  };
32160
+ sendTestEmail: {
32161
+ parameters: {
32162
+ query?: never;
32163
+ header?: never;
32164
+ path?: never;
32165
+ cookie?: never;
32166
+ };
32167
+ requestBody?: {
32168
+ content: {
32169
+ "application/json": {
32170
+ html: string;
32171
+ subject: string;
32172
+ text: string;
32173
+ };
32174
+ };
32175
+ };
32176
+ responses: {
32177
+ /** @description Successful response */
32178
+ 200: {
32179
+ headers: {
32180
+ [name: string]: unknown;
32181
+ };
32182
+ content: {
32183
+ "application/json": {
32184
+ /** @constant */
32185
+ ok: true;
32186
+ };
32187
+ };
32188
+ };
32189
+ /** @description Bad request */
32190
+ 400: {
32191
+ headers: {
32192
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
32193
+ "Retry-After"?: number;
32194
+ [name: string]: unknown;
32195
+ };
32196
+ content: {
32197
+ "application/json": {
32198
+ code: string;
32199
+ message: string;
32200
+ links?: {
32201
+ docs: string;
32202
+ schema: string;
32203
+ };
32204
+ issues?: {
32205
+ message: string;
32206
+ path?: (string | number)[];
32207
+ schema?: string;
32208
+ }[];
32209
+ retryable?: boolean;
32210
+ context?: unknown;
32211
+ };
32212
+ };
32213
+ };
32214
+ /** @description Unauthorized */
32215
+ 401: {
32216
+ headers: {
32217
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
32218
+ "Retry-After"?: number;
32219
+ [name: string]: unknown;
32220
+ };
32221
+ content: {
32222
+ "application/json": {
32223
+ code: string;
32224
+ message: string;
32225
+ links?: {
32226
+ docs: string;
32227
+ schema: string;
32228
+ };
32229
+ issues?: {
32230
+ message: string;
32231
+ path?: (string | number)[];
32232
+ schema?: string;
32233
+ }[];
32234
+ retryable?: boolean;
32235
+ context?: unknown;
32236
+ };
32237
+ };
32238
+ };
32239
+ /** @description Forbidden */
32240
+ 403: {
32241
+ headers: {
32242
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
32243
+ "Retry-After"?: number;
32244
+ [name: string]: unknown;
32245
+ };
32246
+ content: {
32247
+ "application/json": {
32248
+ code: string;
32249
+ message: string;
32250
+ links?: {
32251
+ docs: string;
32252
+ schema: string;
32253
+ };
32254
+ issues?: {
32255
+ message: string;
32256
+ path?: (string | number)[];
32257
+ schema?: string;
32258
+ }[];
32259
+ retryable?: boolean;
32260
+ context?: unknown;
32261
+ };
32262
+ };
32263
+ };
32264
+ /** @description Not found */
32265
+ 404: {
32266
+ headers: {
32267
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
32268
+ "Retry-After"?: number;
32269
+ [name: string]: unknown;
32270
+ };
32271
+ content: {
32272
+ "application/json": {
32273
+ code: string;
32274
+ message: string;
32275
+ links?: {
32276
+ docs: string;
32277
+ schema: string;
32278
+ };
32279
+ issues?: {
32280
+ message: string;
32281
+ path?: (string | number)[];
32282
+ schema?: string;
32283
+ }[];
32284
+ retryable?: boolean;
32285
+ context?: unknown;
32286
+ };
32287
+ };
32288
+ };
32289
+ /** @description Conflict */
32290
+ 409: {
32291
+ headers: {
32292
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
32293
+ "Retry-After"?: number;
32294
+ [name: string]: unknown;
32295
+ };
32296
+ content: {
32297
+ "application/json": {
32298
+ code: string;
32299
+ message: string;
32300
+ links?: {
32301
+ docs: string;
32302
+ schema: string;
32303
+ };
32304
+ issues?: {
32305
+ message: string;
32306
+ path?: (string | number)[];
32307
+ schema?: string;
32308
+ }[];
32309
+ retryable?: boolean;
32310
+ context?: unknown;
32311
+ };
32312
+ };
32313
+ };
32314
+ /** @description Gone */
32315
+ 410: {
32316
+ headers: {
32317
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
32318
+ "Retry-After"?: number;
32319
+ [name: string]: unknown;
32320
+ };
32321
+ content: {
32322
+ "application/json": {
32323
+ code: string;
32324
+ message: string;
32325
+ links?: {
32326
+ docs: string;
32327
+ schema: string;
32328
+ };
32329
+ issues?: {
32330
+ message: string;
32331
+ path?: (string | number)[];
32332
+ schema?: string;
32333
+ }[];
32334
+ retryable?: boolean;
32335
+ context?: unknown;
32336
+ };
32337
+ };
32338
+ };
32339
+ /** @description Unprocessable content */
32340
+ 422: {
32341
+ headers: {
32342
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
32343
+ "Retry-After"?: number;
32344
+ [name: string]: unknown;
32345
+ };
32346
+ content: {
32347
+ "application/json": {
32348
+ code: string;
32349
+ message: string;
32350
+ links?: {
32351
+ docs: string;
32352
+ schema: string;
32353
+ };
32354
+ issues?: {
32355
+ message: string;
32356
+ path?: (string | number)[];
32357
+ schema?: string;
32358
+ }[];
32359
+ retryable?: boolean;
32360
+ context?: unknown;
32361
+ };
32362
+ };
32363
+ };
32364
+ /** @description Internal server error */
32365
+ 500: {
32366
+ headers: {
32367
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
32368
+ "Retry-After"?: number;
32369
+ [name: string]: unknown;
32370
+ };
32371
+ content: {
32372
+ "application/json": {
32373
+ code: string;
32374
+ message: string;
32375
+ links?: {
32376
+ docs: string;
32377
+ schema: string;
32378
+ };
32379
+ issues?: {
32380
+ message: string;
32381
+ path?: (string | number)[];
32382
+ schema?: string;
32383
+ }[];
32384
+ retryable?: boolean;
32385
+ context?: unknown;
32386
+ };
32387
+ };
32388
+ };
32389
+ /** @description Service unavailable */
32390
+ 503: {
32391
+ headers: {
32392
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
32393
+ "Retry-After"?: number;
32394
+ [name: string]: unknown;
32395
+ };
32396
+ content: {
32397
+ "application/json": {
32398
+ code: string;
32399
+ message: string;
32400
+ links?: {
32401
+ docs: string;
32402
+ schema: string;
32403
+ };
32404
+ issues?: {
32405
+ message: string;
32406
+ path?: (string | number)[];
32407
+ schema?: string;
32408
+ }[];
32409
+ retryable?: boolean;
32410
+ context?: unknown;
32411
+ };
32412
+ };
32413
+ };
32414
+ };
32415
+ };
32139
32416
  upsertEmailTemplate: {
32140
32417
  parameters: {
32141
32418
  query?: never;