@forge/manifest 3.8.1 → 3.8.2-next.0
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 +6 -0
- package/out/schema/manifest-schema.json +2 -22
- package/out/schema/manifest.d.ts +4 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1402,7 +1402,7 @@
|
|
|
1402
1402
|
"type": "string",
|
|
1403
1403
|
"enum": [
|
|
1404
1404
|
"read",
|
|
1405
|
-
"
|
|
1405
|
+
"create",
|
|
1406
1406
|
"delete"
|
|
1407
1407
|
]
|
|
1408
1408
|
}
|
|
@@ -1413,16 +1413,6 @@
|
|
|
1413
1413
|
"preventDuplicateTitle": {
|
|
1414
1414
|
"type": "boolean"
|
|
1415
1415
|
},
|
|
1416
|
-
"breadcrumbs": {
|
|
1417
|
-
"type": "array",
|
|
1418
|
-
"minItems": 1,
|
|
1419
|
-
"uniqueItems": true,
|
|
1420
|
-
"items": {
|
|
1421
|
-
"type": "string",
|
|
1422
|
-
"maxLength": 100,
|
|
1423
|
-
"minLength": 1
|
|
1424
|
-
}
|
|
1425
|
-
},
|
|
1426
1416
|
"function": {
|
|
1427
1417
|
"type": "string",
|
|
1428
1418
|
"minLength": 1,
|
|
@@ -1496,7 +1486,7 @@
|
|
|
1496
1486
|
"type": "string",
|
|
1497
1487
|
"enum": [
|
|
1498
1488
|
"read",
|
|
1499
|
-
"
|
|
1489
|
+
"create",
|
|
1500
1490
|
"delete"
|
|
1501
1491
|
]
|
|
1502
1492
|
}
|
|
@@ -1507,16 +1497,6 @@
|
|
|
1507
1497
|
"preventDuplicateTitle": {
|
|
1508
1498
|
"type": "boolean"
|
|
1509
1499
|
},
|
|
1510
|
-
"breadcrumbs": {
|
|
1511
|
-
"type": "array",
|
|
1512
|
-
"minItems": 1,
|
|
1513
|
-
"uniqueItems": true,
|
|
1514
|
-
"items": {
|
|
1515
|
-
"type": "string",
|
|
1516
|
-
"maxLength": 100,
|
|
1517
|
-
"minLength": 1
|
|
1518
|
-
}
|
|
1519
|
-
},
|
|
1520
1500
|
"resolver": {
|
|
1521
1501
|
"additionalProperties": false,
|
|
1522
1502
|
"type": "object",
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -820,10 +820,9 @@ export interface Modules {
|
|
|
820
820
|
bodyType?: 'raw' | 'storage';
|
|
821
821
|
supportedContainerTypes: [string, ...string[]];
|
|
822
822
|
supportedChildTypes?: [string, ...string[]];
|
|
823
|
-
supportedSpacePermissions?: ['read' | '
|
|
823
|
+
supportedSpacePermissions?: ['read' | 'create' | 'delete', ...('read' | 'create' | 'delete')[]];
|
|
824
824
|
indexing?: boolean;
|
|
825
825
|
preventDuplicateTitle?: boolean;
|
|
826
|
-
breadcrumbs?: [string, ...string[]];
|
|
827
826
|
function: string;
|
|
828
827
|
key: ModuleKeySchema;
|
|
829
828
|
}
|
|
@@ -834,10 +833,9 @@ export interface Modules {
|
|
|
834
833
|
bodyType?: 'raw' | 'storage';
|
|
835
834
|
supportedContainerTypes: [string, ...string[]];
|
|
836
835
|
supportedChildTypes?: [string, ...string[]];
|
|
837
|
-
supportedSpacePermissions?: ['read' | '
|
|
836
|
+
supportedSpacePermissions?: ['read' | 'create' | 'delete', ...('read' | 'create' | 'delete')[]];
|
|
838
837
|
indexing?: boolean;
|
|
839
838
|
preventDuplicateTitle?: boolean;
|
|
840
|
-
breadcrumbs?: [string, ...string[]];
|
|
841
839
|
resolver?: {
|
|
842
840
|
function: string;
|
|
843
841
|
};
|
|
@@ -854,10 +852,9 @@ export interface Modules {
|
|
|
854
852
|
bodyType?: 'raw' | 'storage';
|
|
855
853
|
supportedContainerTypes: [string, ...string[]];
|
|
856
854
|
supportedChildTypes?: [string, ...string[]];
|
|
857
|
-
supportedSpacePermissions?: ['read' | '
|
|
855
|
+
supportedSpacePermissions?: ['read' | 'create' | 'delete', ...('read' | 'create' | 'delete')[]];
|
|
858
856
|
indexing?: boolean;
|
|
859
857
|
preventDuplicateTitle?: boolean;
|
|
860
|
-
breadcrumbs?: [string, ...string[]];
|
|
861
858
|
function: string;
|
|
862
859
|
key: ModuleKeySchema;
|
|
863
860
|
}
|
|
@@ -868,10 +865,9 @@ export interface Modules {
|
|
|
868
865
|
bodyType?: 'raw' | 'storage';
|
|
869
866
|
supportedContainerTypes: [string, ...string[]];
|
|
870
867
|
supportedChildTypes?: [string, ...string[]];
|
|
871
|
-
supportedSpacePermissions?: ['read' | '
|
|
868
|
+
supportedSpacePermissions?: ['read' | 'create' | 'delete', ...('read' | 'create' | 'delete')[]];
|
|
872
869
|
indexing?: boolean;
|
|
873
870
|
preventDuplicateTitle?: boolean;
|
|
874
|
-
breadcrumbs?: [string, ...string[]];
|
|
875
871
|
resolver?: {
|
|
876
872
|
function: string;
|
|
877
873
|
};
|