@forge/manifest 7.2.2 → 7.2.3-next.1
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 +12 -0
- package/out/schema/manifest-schema.json +29 -0
- package/out/schema/manifest.d.ts +34 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 7.2.3-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f04a310: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 7.2.3-next.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 77d16a9: Add manifest validation for adfExport entrypoint in macro module
|
|
14
|
+
|
|
3
15
|
## 7.2.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -754,6 +754,35 @@
|
|
|
754
754
|
},
|
|
755
755
|
"minItems": 1
|
|
756
756
|
},
|
|
757
|
+
"auth": {
|
|
758
|
+
"type": "object",
|
|
759
|
+
"properties": {
|
|
760
|
+
"appUserToken": {
|
|
761
|
+
"type": "object",
|
|
762
|
+
"properties": {
|
|
763
|
+
"enabled": {
|
|
764
|
+
"type": "boolean",
|
|
765
|
+
"description": "Enable sharing user token with the remote"
|
|
766
|
+
}
|
|
767
|
+
},
|
|
768
|
+
"required": [
|
|
769
|
+
"enabled"
|
|
770
|
+
]
|
|
771
|
+
},
|
|
772
|
+
"appSystemToken": {
|
|
773
|
+
"type": "object",
|
|
774
|
+
"properties": {
|
|
775
|
+
"enabled": {
|
|
776
|
+
"type": "boolean",
|
|
777
|
+
"description": "Enable sharing app token with the remote"
|
|
778
|
+
}
|
|
779
|
+
},
|
|
780
|
+
"required": [
|
|
781
|
+
"enabled"
|
|
782
|
+
]
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
},
|
|
757
786
|
"storage": {
|
|
758
787
|
"type": "object",
|
|
759
788
|
"properties": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -828,6 +828,23 @@ export interface Modules {
|
|
|
828
828
|
{
|
|
829
829
|
baseUrl: string;
|
|
830
830
|
operations?: ['storage' | 'other' | 'compute' | 'fetch', ...('storage' | 'other' | 'compute' | 'fetch')[]];
|
|
831
|
+
auth?: {
|
|
832
|
+
appUserToken?: {
|
|
833
|
+
/**
|
|
834
|
+
* Enable sharing user token with the remote
|
|
835
|
+
*/
|
|
836
|
+
enabled: boolean;
|
|
837
|
+
[k: string]: unknown;
|
|
838
|
+
};
|
|
839
|
+
appSystemToken?: {
|
|
840
|
+
/**
|
|
841
|
+
* Enable sharing app token with the remote
|
|
842
|
+
*/
|
|
843
|
+
enabled: boolean;
|
|
844
|
+
[k: string]: unknown;
|
|
845
|
+
};
|
|
846
|
+
[k: string]: unknown;
|
|
847
|
+
};
|
|
831
848
|
storage?: {
|
|
832
849
|
inScopeEUD?: boolean;
|
|
833
850
|
[k: string]: unknown;
|
|
@@ -838,6 +855,23 @@ export interface Modules {
|
|
|
838
855
|
...{
|
|
839
856
|
baseUrl: string;
|
|
840
857
|
operations?: ['storage' | 'other' | 'compute' | 'fetch', ...('storage' | 'other' | 'compute' | 'fetch')[]];
|
|
858
|
+
auth?: {
|
|
859
|
+
appUserToken?: {
|
|
860
|
+
/**
|
|
861
|
+
* Enable sharing user token with the remote
|
|
862
|
+
*/
|
|
863
|
+
enabled: boolean;
|
|
864
|
+
[k: string]: unknown;
|
|
865
|
+
};
|
|
866
|
+
appSystemToken?: {
|
|
867
|
+
/**
|
|
868
|
+
* Enable sharing app token with the remote
|
|
869
|
+
*/
|
|
870
|
+
enabled: boolean;
|
|
871
|
+
[k: string]: unknown;
|
|
872
|
+
};
|
|
873
|
+
[k: string]: unknown;
|
|
874
|
+
};
|
|
841
875
|
storage?: {
|
|
842
876
|
inScopeEUD?: boolean;
|
|
843
877
|
[k: string]: unknown;
|