@forge/manifest 13.1.1-next.2-experimental-f51f593 → 13.2.0-next.3

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/CHANGELOG.md CHANGED
@@ -1,22 +1,14 @@
1
1
  # @forge/manifest
2
2
 
3
- ## 13.1.1-next.2-experimental-f51f593
3
+ ## 13.2.0-next.3
4
4
 
5
- ### Patch Changes
5
+ ### Minor Changes
6
6
 
7
- - 4c5ba1c: Add `permissions.sandbox` to the manifest schema. When `allow-storage-access-by-user-activation` is included in the `sandbox` array, the app iframe sandbox will include the corresponding token, enabling the app to request third-party storage access (e.g. cookies) via the Storage Access API when triggered by a user gesture.
7
+ - 8826ca3: add personal apps support for Forge app creation
8
8
 
9
- Example usage:
10
-
11
- ```yaml
12
- permissions:
13
- sandbox:
14
- - allow-storage-access-by-user-activation
15
- ```
9
+ ### Patch Changes
16
10
 
17
- - 5abe69e: add support for personal app installation contexts
18
- - 7195f29: Update manifest definitions
19
- - 3252a62: Update manifest definitions
11
+ - c67b720: Update manifest definitions
20
12
 
21
13
  ## 13.1.1-next.2
22
14
 
@@ -327,6 +327,61 @@
327
327
  ]
328
328
  }
329
329
  },
330
+ {
331
+ "productEvent": "avi:jsm-entity:created:request-type",
332
+ "oAuthScopes": {
333
+ "beta": [
334
+ "read:requesttype:jira-service-management"
335
+ ],
336
+ "current": [
337
+ "manage:jira-configuration"
338
+ ]
339
+ }
340
+ },
341
+ {
342
+ "productEvent": "avi:jsm-entity:updated:request-type",
343
+ "oAuthScopes": {
344
+ "beta": [
345
+ "read:requesttype:jira-service-management"
346
+ ],
347
+ "current": [
348
+ "manage:jira-configuration"
349
+ ]
350
+ }
351
+ },
352
+ {
353
+ "productEvent": "avi:jsm-entity:deleted:request-type",
354
+ "oAuthScopes": {
355
+ "beta": [
356
+ "read:requesttype:jira-service-management"
357
+ ],
358
+ "current": [
359
+ "manage:jira-configuration"
360
+ ]
361
+ }
362
+ },
363
+ {
364
+ "productEvent": "avi:jsm-entity:created:portal",
365
+ "oAuthScopes": {
366
+ "beta": [
367
+ "read:servicedesk:jira-service-management"
368
+ ],
369
+ "current": [
370
+ "manage:jira-configuration"
371
+ ]
372
+ }
373
+ },
374
+ {
375
+ "productEvent": "avi:jsm-entity:updated:portal",
376
+ "oAuthScopes": {
377
+ "beta": [
378
+ "read:servicedesk:jira-service-management"
379
+ ],
380
+ "current": [
381
+ "manage:jira-configuration"
382
+ ]
383
+ }
384
+ },
330
385
  {
331
386
  "productEvent": "avi:jira:created:version",
332
387
  "oAuthScopes": {
@@ -2356,6 +2356,40 @@
2356
2356
  "function"
2357
2357
  ]
2358
2358
  },
2359
+ "static": {
2360
+ "anyOf": [
2361
+ {
2362
+ "additionalProperties": false,
2363
+ "type": "object",
2364
+ "properties": {
2365
+ "function": {
2366
+ "type": "string",
2367
+ "minLength": 1,
2368
+ "maxLength": 255,
2369
+ "pattern": "^[a-zA-Z0-9-_]+$"
2370
+ }
2371
+ },
2372
+ "required": [
2373
+ "function"
2374
+ ]
2375
+ },
2376
+ {
2377
+ "additionalProperties": false,
2378
+ "type": "object",
2379
+ "properties": {
2380
+ "endpoint": {
2381
+ "type": "string",
2382
+ "minLength": 1,
2383
+ "maxLength": 255,
2384
+ "pattern": "^[a-zA-Z0-9-_]+$"
2385
+ }
2386
+ },
2387
+ "required": [
2388
+ "endpoint"
2389
+ ]
2390
+ }
2391
+ ]
2392
+ },
2359
2393
  "refDataSchema": {
2360
2394
  "type": "object",
2361
2395
  "additionalProperties": false,
@@ -12726,6 +12726,13 @@ export interface Modules {
12726
12726
  adfExport?: {
12727
12727
  function: string;
12728
12728
  };
12729
+ static?:
12730
+ | {
12731
+ function: string;
12732
+ }
12733
+ | {
12734
+ endpoint: string;
12735
+ };
12729
12736
  refDataSchema?: {
12730
12737
  inputType: string;
12731
12738
  };
@@ -13018,6 +13025,13 @@ export interface Modules {
13018
13025
  adfExport?: {
13019
13026
  function: string;
13020
13027
  };
13028
+ static?:
13029
+ | {
13030
+ function: string;
13031
+ }
13032
+ | {
13033
+ endpoint: string;
13034
+ };
13021
13035
  refDataSchema?: {
13022
13036
  inputType: string;
13023
13037
  };
@@ -13,14 +13,6 @@ const validateGlobalUi = (modules, app, yamlContentByLine) => {
13
13
  if (globalUiModules.length === 0) {
14
14
  return validationErrors;
15
15
  }
16
- if (!app.compatibility) {
17
- validationErrors.push({
18
- message: errorMessages.compatibilityRequired(),
19
- reference: text_1.References.Modules,
20
- level: 'error',
21
- ...(0, utils_1.findPosition)('app', yamlContentByLine)
22
- });
23
- }
24
16
  if (globalUiModules.length > 1) {
25
17
  validationErrors.push({
26
18
  message: text_1.errors.modules.singleEntryOfTheModule(moduleType),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "13.1.1-next.2-experimental-f51f593",
3
+ "version": "13.2.0-next.3",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {