@forge/manifest 8.7.1-next.0 → 8.7.1-next.2
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 +23 -0
- package/out/schema/manifest.d.ts +16 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -706,6 +706,21 @@
|
|
|
706
706
|
"title": "timeoutSeconds",
|
|
707
707
|
"type": "number"
|
|
708
708
|
},
|
|
709
|
+
"runtime": {
|
|
710
|
+
"type": "object",
|
|
711
|
+
"additionalProperties": false,
|
|
712
|
+
"description": "Function Runtime configuration",
|
|
713
|
+
"title": "runtime",
|
|
714
|
+
"properties": {
|
|
715
|
+
"memoryMB": {
|
|
716
|
+
"type": "number",
|
|
717
|
+
"title": "memoryMB",
|
|
718
|
+
"description": "The amount of memory available to this function at runtime. Increasing the function memory also increases its CPU allocation. You can configure memory between 128 MB and 512 MB in 1-MB increments. The default value is 512 MB.",
|
|
719
|
+
"minimum": 128,
|
|
720
|
+
"maximum": 1769
|
|
721
|
+
}
|
|
722
|
+
}
|
|
723
|
+
},
|
|
709
724
|
"key": {
|
|
710
725
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
711
726
|
}
|
|
@@ -11463,6 +11478,10 @@
|
|
|
11463
11478
|
]
|
|
11464
11479
|
}
|
|
11465
11480
|
},
|
|
11481
|
+
"migratedFromConnect": {
|
|
11482
|
+
"default": false,
|
|
11483
|
+
"type": "boolean"
|
|
11484
|
+
},
|
|
11466
11485
|
"key": {
|
|
11467
11486
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
11468
11487
|
}
|
|
@@ -11559,6 +11578,10 @@
|
|
|
11559
11578
|
],
|
|
11560
11579
|
"type": "string"
|
|
11561
11580
|
},
|
|
11581
|
+
"migratedFromConnect": {
|
|
11582
|
+
"default": false,
|
|
11583
|
+
"type": "boolean"
|
|
11584
|
+
},
|
|
11562
11585
|
"key": {
|
|
11563
11586
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
11564
11587
|
}
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -135,6 +135,10 @@ export type Cleanup = boolean;
|
|
|
135
135
|
* The maximum amount of time the function is allowed to run, in seconds. Must be between 1 and 900.
|
|
136
136
|
*/
|
|
137
137
|
export type TimeoutSeconds = number;
|
|
138
|
+
/**
|
|
139
|
+
* The amount of memory available to this function at runtime. Increasing the function memory also increases its CPU allocation. You can configure memory between 128 MB and 512 MB in 1-MB increments. The default value is 512 MB.
|
|
140
|
+
*/
|
|
141
|
+
export type MemoryMB = number;
|
|
138
142
|
/**
|
|
139
143
|
* Name of the key of the function that will handle this action.
|
|
140
144
|
*/
|
|
@@ -1001,6 +1005,7 @@ export interface Modules {
|
|
|
1001
1005
|
};
|
|
1002
1006
|
providers?: ExternalAuthFunctionProviders;
|
|
1003
1007
|
timeoutSeconds?: TimeoutSeconds;
|
|
1008
|
+
runtime?: Runtime1;
|
|
1004
1009
|
key: ModuleKeySchema;
|
|
1005
1010
|
},
|
|
1006
1011
|
...{
|
|
@@ -1022,6 +1027,7 @@ export interface Modules {
|
|
|
1022
1027
|
};
|
|
1023
1028
|
providers?: ExternalAuthFunctionProviders;
|
|
1024
1029
|
timeoutSeconds?: TimeoutSeconds;
|
|
1030
|
+
runtime?: Runtime1;
|
|
1025
1031
|
key: ModuleKeySchema;
|
|
1026
1032
|
}[]
|
|
1027
1033
|
];
|
|
@@ -6155,6 +6161,7 @@ export interface Modules {
|
|
|
6155
6161
|
description__i18n?: string;
|
|
6156
6162
|
anonymousAllowed: boolean;
|
|
6157
6163
|
defaultGrants?: ('none' | 'all' | 'jira-administrators')[];
|
|
6164
|
+
migratedFromConnect?: boolean;
|
|
6158
6165
|
key: ModuleKeySchema;
|
|
6159
6166
|
[k: string]: unknown;
|
|
6160
6167
|
},
|
|
@@ -6173,6 +6180,7 @@ export interface Modules {
|
|
|
6173
6180
|
description__i18n?: string;
|
|
6174
6181
|
anonymousAllowed: boolean;
|
|
6175
6182
|
defaultGrants?: ('none' | 'all' | 'jira-administrators')[];
|
|
6183
|
+
migratedFromConnect?: boolean;
|
|
6176
6184
|
key: ModuleKeySchema;
|
|
6177
6185
|
[k: string]: unknown;
|
|
6178
6186
|
}[]
|
|
@@ -6192,6 +6200,7 @@ export interface Modules {
|
|
|
6192
6200
|
};
|
|
6193
6201
|
description__i18n?: string;
|
|
6194
6202
|
category?: 'attachments' | 'comments' | 'issues' | 'other' | 'projects' | 'time_tracking' | 'voters_and_watchers';
|
|
6203
|
+
migratedFromConnect?: boolean;
|
|
6195
6204
|
key: ModuleKeySchema;
|
|
6196
6205
|
[k: string]: unknown;
|
|
6197
6206
|
},
|
|
@@ -6209,6 +6218,7 @@ export interface Modules {
|
|
|
6209
6218
|
};
|
|
6210
6219
|
description__i18n?: string;
|
|
6211
6220
|
category?: 'attachments' | 'comments' | 'issues' | 'other' | 'projects' | 'time_tracking' | 'voters_and_watchers';
|
|
6221
|
+
migratedFromConnect?: boolean;
|
|
6212
6222
|
key: ModuleKeySchema;
|
|
6213
6223
|
[k: string]: unknown;
|
|
6214
6224
|
}[]
|
|
@@ -12098,6 +12108,12 @@ export interface ExternalAuthFunctionProvider {
|
|
|
12098
12108
|
*/
|
|
12099
12109
|
requestAllScopes?: boolean;
|
|
12100
12110
|
}
|
|
12111
|
+
/**
|
|
12112
|
+
* Function Runtime configuration
|
|
12113
|
+
*/
|
|
12114
|
+
export interface Runtime1 {
|
|
12115
|
+
memoryMB?: MemoryMB;
|
|
12116
|
+
}
|
|
12101
12117
|
export interface ActionInput {
|
|
12102
12118
|
title: string;
|
|
12103
12119
|
/**
|