@forge/cli-shared 2.3.0-next.8 → 2.3.1-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 +56 -0
- package/out/config/config-file.js +8 -8
- package/out/config/config.d.ts +2 -1
- package/out/config/config.d.ts.map +1 -1
- package/out/config/config.js +3 -2
- package/out/graphql/graphql-types.d.ts +85 -61
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -13
- package/out/ui/text.d.ts +1 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,61 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.3.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [54bf134]
|
|
8
|
+
- @forge/manifest@3.3.1-next.0
|
|
9
|
+
|
|
10
|
+
## 2.3.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 949bd40: The @forge/cli will now download templates from a new service (previously bitbucket), old versions of the CLI won't receive template updates
|
|
15
|
+
- cf2420d: Added root package.json and lock files to app bundle.
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 47a71a6: Upgrade graphql-request for node 16 compatibility
|
|
20
|
+
- Updated dependencies [88e57a12]
|
|
21
|
+
- Updated dependencies [fcd9580]
|
|
22
|
+
- Updated dependencies [6c44d2b]
|
|
23
|
+
- Updated dependencies [e95919f]
|
|
24
|
+
- Updated dependencies [e822a8a]
|
|
25
|
+
- Updated dependencies [720953f]
|
|
26
|
+
- Updated dependencies [2420378]
|
|
27
|
+
- Updated dependencies [051ed1f]
|
|
28
|
+
- Updated dependencies [ad94136]
|
|
29
|
+
- Updated dependencies [e65d33e]
|
|
30
|
+
- Updated dependencies [ae111cd]
|
|
31
|
+
- Updated dependencies [8e35955]
|
|
32
|
+
- Updated dependencies [c255b24]
|
|
33
|
+
- Updated dependencies [f894871]
|
|
34
|
+
- @forge/util@1.2.0
|
|
35
|
+
- @forge/manifest@3.3.0
|
|
36
|
+
|
|
37
|
+
## 2.3.0-next.11
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- Updated dependencies [720953f]
|
|
42
|
+
- @forge/manifest@3.3.0-next.9
|
|
43
|
+
|
|
44
|
+
## 2.3.0-next.10
|
|
45
|
+
|
|
46
|
+
### Patch Changes
|
|
47
|
+
|
|
48
|
+
- 47a71a62: Upgrade graphql-request for node 16 compatibility
|
|
49
|
+
- Updated dependencies [fcd95803]
|
|
50
|
+
- Updated dependencies [e65d33e6]
|
|
51
|
+
- @forge/manifest@3.3.0-next.8
|
|
52
|
+
|
|
53
|
+
## 2.3.0-next.9
|
|
54
|
+
|
|
55
|
+
### Minor Changes
|
|
56
|
+
|
|
57
|
+
- cf2420d2: Added root package.json and lock files to app bundle.
|
|
58
|
+
|
|
3
59
|
## 2.3.0-next.8
|
|
4
60
|
|
|
5
61
|
### Patch Changes
|
|
@@ -30,23 +30,23 @@ class ConfigFile {
|
|
|
30
30
|
return functions.map((funcs) => funcs.handler.split('.')[0]);
|
|
31
31
|
}
|
|
32
32
|
async readConfig() {
|
|
33
|
-
const manifestFileContents = this.fileReader.readFile(_1.
|
|
33
|
+
const manifestFileContents = this.fileReader.readFile(_1.manifestFileName);
|
|
34
34
|
try {
|
|
35
35
|
yaml_1.default.scalarOptions.null.nullStr = '';
|
|
36
36
|
return yaml_1.parse(manifestFileContents);
|
|
37
37
|
}
|
|
38
38
|
catch (_a) {
|
|
39
|
-
throw new ui_1.ValidationError(ui_1.Text.artifact.error.invalidYaml(_1.
|
|
39
|
+
throw new ui_1.ValidationError(ui_1.Text.artifact.error.invalidYaml(_1.manifestFileName));
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
async readConfigToDocument() {
|
|
43
|
-
const manifestFileContents = this.fileReader.readFile(_1.
|
|
43
|
+
const manifestFileContents = this.fileReader.readFile(_1.manifestFileName);
|
|
44
44
|
if (manifestFileContents) {
|
|
45
45
|
try {
|
|
46
46
|
return yaml_1.parseDocument(manifestFileContents);
|
|
47
47
|
}
|
|
48
48
|
catch (_a) {
|
|
49
|
-
throw new ui_1.ValidationError(ui_1.Text.artifact.error.invalidYaml(_1.
|
|
49
|
+
throw new ui_1.ValidationError(ui_1.Text.artifact.error.invalidYaml(_1.manifestFileName));
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
}
|
|
@@ -76,18 +76,18 @@ class ConfigFile {
|
|
|
76
76
|
return actualModules;
|
|
77
77
|
}
|
|
78
78
|
async prependAppNameToModules(name) {
|
|
79
|
-
const manifestFileContents = this.fileReader.readFile(_1.
|
|
79
|
+
const manifestFileContents = this.fileReader.readFile(_1.manifestFileName);
|
|
80
80
|
const currentConfigDoc = yaml_1.parseDocument(manifestFileContents || '');
|
|
81
81
|
const modules = currentConfigDoc.get('modules');
|
|
82
82
|
if (modules && modules.type === util_1.Type.MAP) {
|
|
83
83
|
const modulesObject = modules.toJSON();
|
|
84
84
|
const modulesWithUniqueName = this.makeManifestUnique(modulesObject, name);
|
|
85
85
|
currentConfigDoc.set('modules', modulesWithUniqueName);
|
|
86
|
-
this.fileWriter.writeStringToFile(currentConfigDoc.toString(), _1.
|
|
86
|
+
this.fileWriter.writeStringToFile(currentConfigDoc.toString(), _1.manifestFileName);
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
89
|
async writeToConfigFile(configKey, config) {
|
|
90
|
-
const manifestFileContents = this.fileReader.readFile(_1.
|
|
90
|
+
const manifestFileContents = this.fileReader.readFile(_1.manifestFileName);
|
|
91
91
|
const currentConfigDoc = yaml_1.parseDocument(manifestFileContents || '');
|
|
92
92
|
Object.keys(config).forEach((key) => {
|
|
93
93
|
if (config[key] === undefined) {
|
|
@@ -95,7 +95,7 @@ class ConfigFile {
|
|
|
95
95
|
}
|
|
96
96
|
});
|
|
97
97
|
currentConfigDoc.set(configKey, config);
|
|
98
|
-
this.fileWriter.writeStringToFile(currentConfigDoc.toString(), _1.
|
|
98
|
+
this.fileWriter.writeStringToFile(currentConfigDoc.toString(), _1.manifestFileName);
|
|
99
99
|
}
|
|
100
100
|
getHostedResourceKeys(modules) {
|
|
101
101
|
const resourceKeys = [];
|
package/out/config/config.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ManifestSchema, Resources } from '@forge/manifest';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const manifestFileName = "manifest.yml";
|
|
3
|
+
export declare const dependencyFileNames: string[];
|
|
3
4
|
export interface BaseModule {
|
|
4
5
|
key: string;
|
|
5
6
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/config/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5D,eAAO,MAAM,gBAAgB,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/config/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5D,eAAO,MAAM,gBAAgB,iBAAiB,CAAC;AAC/C,eAAO,MAAM,mBAAmB,UAAuE,CAAC;AAExG,MAAM,WAAW,UAAU;IACzB,GAAG,EAAE,MAAM,CAAC;CACb;AAED,MAAM,WAAW,qBAAsB,SAAQ,UAAU;IACvD,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,YAAY;IAC3B,UAAU,IAAI,OAAO,CAAC,cAAc,CAAC,CAAC;CACvC;AAED,MAAM,WAAW,YAAY;IAC3B,iBAAiB,CAAC,CAAC,SAAS,MAAM,EAAE,CAAC,SAAS,MAAM,EAAE,SAAS,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAC9F,uBAAuB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACtD;AAED,eAAO,MAAM,gBAAgB,aAAc,GAAG,0BAG7C,CAAC;AAEF,eAAO,MAAM,sBAAsB,WAAY,GAAG,oCAGjD,CAAC"}
|
package/out/config/config.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.isHostedResourceModule = exports.validateResource = exports.
|
|
4
|
-
exports.
|
|
3
|
+
exports.isHostedResourceModule = exports.validateResource = exports.dependencyFileNames = exports.manifestFileName = void 0;
|
|
4
|
+
exports.manifestFileName = 'manifest.yml';
|
|
5
|
+
exports.dependencyFileNames = [exports.manifestFileName, 'package.json', 'package-lock.json', 'yarn.lock'];
|
|
5
6
|
exports.validateResource = (resource) => {
|
|
6
7
|
const { key, path } = resource;
|
|
7
8
|
return typeof key === 'string' && typeof path === 'string';
|
|
@@ -958,6 +958,7 @@ export declare type AuxEffectsInvocationPayload = {
|
|
|
958
958
|
effects: Array<Scalars['JSON']>;
|
|
959
959
|
context: Scalars['JSON'];
|
|
960
960
|
contextToken?: Maybe<Scalars['String']>;
|
|
961
|
+
extensionPayload?: Maybe<Scalars['JSON']>;
|
|
961
962
|
config?: Maybe<Scalars['JSON']>;
|
|
962
963
|
};
|
|
963
964
|
export declare type AuxEffectsResult = {
|
|
@@ -1000,6 +1001,7 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
1000
1001
|
status?: Maybe<Scalars['String']>;
|
|
1001
1002
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
1002
1003
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
1004
|
+
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
1003
1005
|
imageUri?: Maybe<Scalars['String']>;
|
|
1004
1006
|
};
|
|
1005
1007
|
export declare enum BitbucketPermission {
|
|
@@ -5030,7 +5032,8 @@ export declare type DevOpsThirdPartyRepository = {
|
|
|
5030
5032
|
name?: Maybe<Scalars['String']>;
|
|
5031
5033
|
avatar?: Maybe<DevOpsAvatar>;
|
|
5032
5034
|
};
|
|
5033
|
-
export declare type DevOpsTool = {
|
|
5035
|
+
export declare type DevOpsTool = Node & {
|
|
5036
|
+
__typename?: 'DevOpsTool';
|
|
5034
5037
|
id: Scalars['ID'];
|
|
5035
5038
|
name: Scalars['String'];
|
|
5036
5039
|
productKey: Scalars['String'];
|
|
@@ -5038,7 +5041,6 @@ export declare type DevOpsTool = {
|
|
|
5038
5041
|
group: DevOpsToolGroup;
|
|
5039
5042
|
supportsContainers: Scalars['Boolean'];
|
|
5040
5043
|
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5041
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5042
5044
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5043
5045
|
};
|
|
5044
5046
|
export declare type DevOpsToolNamespacesArgs = {
|
|
@@ -5046,23 +5048,6 @@ export declare type DevOpsToolNamespacesArgs = {
|
|
|
5046
5048
|
first?: Maybe<Scalars['Int']>;
|
|
5047
5049
|
after?: Maybe<Scalars['String']>;
|
|
5048
5050
|
};
|
|
5049
|
-
export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
5050
|
-
__typename?: 'DevOpsToolAvailable';
|
|
5051
|
-
id: Scalars['ID'];
|
|
5052
|
-
name: Scalars['String'];
|
|
5053
|
-
productKey: Scalars['String'];
|
|
5054
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5055
|
-
group: DevOpsToolGroup;
|
|
5056
|
-
supportsContainers: Scalars['Boolean'];
|
|
5057
|
-
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5058
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5059
|
-
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5060
|
-
};
|
|
5061
|
-
export declare type DevOpsToolAvailableNamespacesArgs = {
|
|
5062
|
-
query?: Maybe<Scalars['String']>;
|
|
5063
|
-
first?: Maybe<Scalars['Int']>;
|
|
5064
|
-
after?: Maybe<Scalars['String']>;
|
|
5065
|
-
};
|
|
5066
5051
|
export declare type DevOpsToolAvatar = {
|
|
5067
5052
|
__typename?: 'DevOpsToolAvatar';
|
|
5068
5053
|
url: Scalars['URL'];
|
|
@@ -5075,11 +5060,6 @@ export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpeci
|
|
|
5075
5060
|
name: Scalars['String'];
|
|
5076
5061
|
};
|
|
5077
5062
|
export declare type DevOpsToolCanContainerBeCreated = DevOpsToolContainerCanBeCreated | DevOpsToolContainerNameConflict | DevOpsToolContainerKeyConflict | DevOpsToolContainerKeyCannotBeGenerated | DevOpsToolUnknownTool;
|
|
5078
|
-
export declare enum DevOpsToolCategory {
|
|
5079
|
-
Development = "DEVELOPMENT",
|
|
5080
|
-
Documentation = "DOCUMENTATION",
|
|
5081
|
-
Operations = "OPERATIONS"
|
|
5082
|
-
}
|
|
5083
5063
|
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
5084
5064
|
__typename?: 'DevOpsToolConfluenceCreate';
|
|
5085
5065
|
requestId: Scalars['String'];
|
|
@@ -5154,11 +5134,6 @@ export declare type DevOpsToolContainerNameConflict = {
|
|
|
5154
5134
|
__typename?: 'DevOpsToolContainerNameConflict';
|
|
5155
5135
|
name?: Maybe<Scalars['String']>;
|
|
5156
5136
|
};
|
|
5157
|
-
export declare enum DevOpsToolContainerType {
|
|
5158
|
-
Repository = "REPOSITORY",
|
|
5159
|
-
DocumentsSpace = "DOCUMENTS_SPACE",
|
|
5160
|
-
OnCallSchedule = "ON_CALL_SCHEDULE"
|
|
5161
|
-
}
|
|
5162
5137
|
export declare type DevOpsToolEdge = {
|
|
5163
5138
|
__typename?: 'DevOpsToolEdge';
|
|
5164
5139
|
cursor: Scalars['String'];
|
|
@@ -5181,11 +5156,6 @@ export declare type DevOpsToolGroup = {
|
|
|
5181
5156
|
groupId: Scalars['String'];
|
|
5182
5157
|
groupName: Scalars['String'];
|
|
5183
5158
|
};
|
|
5184
|
-
export declare type DevOpsToolInstallationInfo = {
|
|
5185
|
-
__typename?: 'DevOpsToolInstallationInfo';
|
|
5186
|
-
oauthUrl?: Maybe<Scalars['URL']>;
|
|
5187
|
-
webUrl: Scalars['URL'];
|
|
5188
|
-
};
|
|
5189
5159
|
export declare type DevOpsToolNamespace = Node & {
|
|
5190
5160
|
__typename?: 'DevOpsToolNamespace';
|
|
5191
5161
|
id: Scalars['ID'];
|
|
@@ -5227,29 +5197,6 @@ export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecif
|
|
|
5227
5197
|
requestId: Scalars['String'];
|
|
5228
5198
|
name: Scalars['String'];
|
|
5229
5199
|
};
|
|
5230
|
-
export declare type DevOpsToolSupportedContainerType = {
|
|
5231
|
-
__typename?: 'DevOpsToolSupportedContainerType';
|
|
5232
|
-
category: DevOpsToolCategory;
|
|
5233
|
-
type: DevOpsToolContainerType;
|
|
5234
|
-
};
|
|
5235
|
-
export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
5236
|
-
__typename?: 'DevOpsToolUnavailable';
|
|
5237
|
-
id: Scalars['ID'];
|
|
5238
|
-
name: Scalars['String'];
|
|
5239
|
-
productKey: Scalars['String'];
|
|
5240
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5241
|
-
group: DevOpsToolGroup;
|
|
5242
|
-
supportsContainers: Scalars['Boolean'];
|
|
5243
|
-
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5244
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5245
|
-
install: DevOpsToolInstallationInfo;
|
|
5246
|
-
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5247
|
-
};
|
|
5248
|
-
export declare type DevOpsToolUnavailableNamespacesArgs = {
|
|
5249
|
-
query?: Maybe<Scalars['String']>;
|
|
5250
|
-
first?: Maybe<Scalars['Int']>;
|
|
5251
|
-
after?: Maybe<Scalars['String']>;
|
|
5252
|
-
};
|
|
5253
5200
|
export declare type DevOpsToolUnknownTool = {
|
|
5254
5201
|
__typename?: 'DevOpsToolUnknownTool';
|
|
5255
5202
|
toolId?: Maybe<Scalars['String']>;
|
|
@@ -5399,6 +5346,7 @@ export declare type EstimationBoardFeatureView = Node & {
|
|
|
5399
5346
|
status?: Maybe<Scalars['String']>;
|
|
5400
5347
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
5401
5348
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
5349
|
+
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
5402
5350
|
imageUri?: Maybe<Scalars['String']>;
|
|
5403
5351
|
permissibleEstimationTypes?: Maybe<Array<Maybe<PermissibleEstimationType>>>;
|
|
5404
5352
|
selectedEstimationType?: Maybe<PermissibleEstimationType>;
|
|
@@ -6597,6 +6545,7 @@ export declare type JiraColorField = Node & JiraIssueField & JiraIssueFieldConfi
|
|
|
6597
6545
|
};
|
|
6598
6546
|
export declare type JiraComment = {
|
|
6599
6547
|
commentId: Scalars['ID'];
|
|
6548
|
+
issue?: Maybe<JiraIssue>;
|
|
6600
6549
|
webUrl?: Maybe<Scalars['URL']>;
|
|
6601
6550
|
author?: Maybe<User>;
|
|
6602
6551
|
updateAuthor?: Maybe<User>;
|
|
@@ -6605,6 +6554,10 @@ export declare type JiraComment = {
|
|
|
6605
6554
|
updated?: Maybe<Scalars['DateTime']>;
|
|
6606
6555
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
6607
6556
|
};
|
|
6557
|
+
export declare type JiraCommentByIdInput = {
|
|
6558
|
+
issueId: Scalars['ID'];
|
|
6559
|
+
id: Scalars['ID'];
|
|
6560
|
+
};
|
|
6608
6561
|
export declare type JiraCommentConnection = {
|
|
6609
6562
|
__typename?: 'JiraCommentConnection';
|
|
6610
6563
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
@@ -6787,6 +6740,27 @@ export declare type JiraDefaultGrantTypeValue = Node & {
|
|
|
6787
6740
|
id: Scalars['ID'];
|
|
6788
6741
|
name: Scalars['String'];
|
|
6789
6742
|
};
|
|
6743
|
+
export declare type JiraDevOpsBranchDetails = {
|
|
6744
|
+
__typename?: 'JiraDevOpsBranchDetails';
|
|
6745
|
+
providerBranchId?: Maybe<Scalars['String']>;
|
|
6746
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6747
|
+
name?: Maybe<Scalars['String']>;
|
|
6748
|
+
repositoryName?: Maybe<Scalars['String']>;
|
|
6749
|
+
};
|
|
6750
|
+
export declare type JiraDevOpsCommitDetails = {
|
|
6751
|
+
__typename?: 'JiraDevOpsCommitDetails';
|
|
6752
|
+
providerCommitId?: Maybe<Scalars['String']>;
|
|
6753
|
+
displayCommitId?: Maybe<Scalars['String']>;
|
|
6754
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6755
|
+
name?: Maybe<Scalars['String']>;
|
|
6756
|
+
created?: Maybe<Scalars['DateTime']>;
|
|
6757
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6758
|
+
};
|
|
6759
|
+
export declare type JiraDevOpsEntityAuthor = {
|
|
6760
|
+
__typename?: 'JiraDevOpsEntityAuthor';
|
|
6761
|
+
avatar?: Maybe<JiraAvatar>;
|
|
6762
|
+
name?: Maybe<Scalars['String']>;
|
|
6763
|
+
};
|
|
6790
6764
|
export declare type JiraDevOpsIssuePanel = {
|
|
6791
6765
|
__typename?: 'JiraDevOpsIssuePanel';
|
|
6792
6766
|
panelState?: Maybe<JiraDevOpsIssuePanelState>;
|
|
@@ -6813,6 +6787,17 @@ export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateA
|
|
|
6813
6787
|
export declare type JiraDevOpsMutationDismissDevOpsIssuePanelBannerArgs = {
|
|
6814
6788
|
input: JiraDismissDevOpsIssuePanelBannerInput;
|
|
6815
6789
|
};
|
|
6790
|
+
export declare type JiraDevOpsPullRequestDetails = {
|
|
6791
|
+
__typename?: 'JiraDevOpsPullRequestDetails';
|
|
6792
|
+
providerPullRequestId?: Maybe<Scalars['String']>;
|
|
6793
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6794
|
+
name?: Maybe<Scalars['String']>;
|
|
6795
|
+
branchName?: Maybe<Scalars['String']>;
|
|
6796
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
6797
|
+
status?: Maybe<JiraPullRequestState>;
|
|
6798
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6799
|
+
reviewers?: Maybe<Array<JiraPullRequestReviewer>>;
|
|
6800
|
+
};
|
|
6816
6801
|
export declare type JiraDevOpsQuery = {
|
|
6817
6802
|
__typename?: 'JiraDevOpsQuery';
|
|
6818
6803
|
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
@@ -7184,9 +7169,11 @@ export declare type JiraIssue = Node & {
|
|
|
7184
7169
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
7185
7170
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
7186
7171
|
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
7172
|
+
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
7187
7173
|
childIssues?: Maybe<JiraChildIssues>;
|
|
7188
7174
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
7189
7175
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
7176
|
+
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
7190
7177
|
};
|
|
7191
7178
|
export declare type JiraIssueFieldsArgs = {
|
|
7192
7179
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7233,6 +7220,12 @@ export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
|
7233
7220
|
last?: Maybe<Scalars['Int']>;
|
|
7234
7221
|
before?: Maybe<Scalars['String']>;
|
|
7235
7222
|
};
|
|
7223
|
+
export declare type JiraIssueIssueLinksArgs = {
|
|
7224
|
+
first?: Maybe<Scalars['Int']>;
|
|
7225
|
+
after?: Maybe<Scalars['String']>;
|
|
7226
|
+
last?: Maybe<Scalars['Int']>;
|
|
7227
|
+
before?: Maybe<Scalars['String']>;
|
|
7228
|
+
};
|
|
7236
7229
|
export declare type JiraIssueBranchDevSummary = {
|
|
7237
7230
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
7238
7231
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -7243,6 +7236,10 @@ export declare type JiraIssueBranchDevSummaryContainer = {
|
|
|
7243
7236
|
overall?: Maybe<JiraIssueBranchDevSummary>;
|
|
7244
7237
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7245
7238
|
};
|
|
7239
|
+
export declare type JiraIssueBranches = {
|
|
7240
|
+
__typename?: 'JiraIssueBranches';
|
|
7241
|
+
details?: Maybe<Array<JiraDevOpsBranchDetails>>;
|
|
7242
|
+
};
|
|
7246
7243
|
export declare type JiraIssueBuildDevSummary = {
|
|
7247
7244
|
__typename?: 'JiraIssueBuildDevSummary';
|
|
7248
7245
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -7266,6 +7263,10 @@ export declare type JiraIssueCommitDevSummaryContainer = {
|
|
|
7266
7263
|
overall?: Maybe<JiraIssueCommitDevSummary>;
|
|
7267
7264
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7268
7265
|
};
|
|
7266
|
+
export declare type JiraIssueCommits = {
|
|
7267
|
+
__typename?: 'JiraIssueCommits';
|
|
7268
|
+
details?: Maybe<Array<JiraDevOpsCommitDetails>>;
|
|
7269
|
+
};
|
|
7269
7270
|
export declare type JiraIssueConnection = {
|
|
7270
7271
|
__typename?: 'JiraIssueConnection';
|
|
7271
7272
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -7301,6 +7302,12 @@ export declare enum JiraIssueDeploymentEnvironmentState {
|
|
|
7301
7302
|
NotDeployed = "NOT_DEPLOYED",
|
|
7302
7303
|
Deployed = "DEPLOYED"
|
|
7303
7304
|
}
|
|
7305
|
+
export declare type JiraIssueDevInfoDetails = {
|
|
7306
|
+
__typename?: 'JiraIssueDevInfoDetails';
|
|
7307
|
+
pullRequests?: Maybe<JiraIssuePullRequests>;
|
|
7308
|
+
branches?: Maybe<JiraIssueBranches>;
|
|
7309
|
+
commits?: Maybe<JiraIssueCommits>;
|
|
7310
|
+
};
|
|
7304
7311
|
export declare type JiraIssueDevSummary = {
|
|
7305
7312
|
__typename?: 'JiraIssueDevSummary';
|
|
7306
7313
|
branch?: Maybe<JiraIssueBranchDevSummaryContainer>;
|
|
@@ -7588,6 +7595,10 @@ export declare type JiraIssuePullRequestDevSummaryContainer = {
|
|
|
7588
7595
|
overall?: Maybe<JiraIssuePullRequestDevSummary>;
|
|
7589
7596
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7590
7597
|
};
|
|
7598
|
+
export declare type JiraIssuePullRequests = {
|
|
7599
|
+
__typename?: 'JiraIssuePullRequests';
|
|
7600
|
+
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
7601
|
+
};
|
|
7591
7602
|
export declare type JiraIssueRestrictionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7592
7603
|
__typename?: 'JiraIssueRestrictionField';
|
|
7593
7604
|
id: Scalars['ID'];
|
|
@@ -8828,6 +8839,7 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
8828
8839
|
__typename?: 'JiraPlatformComment';
|
|
8829
8840
|
id: Scalars['ID'];
|
|
8830
8841
|
commentId: Scalars['ID'];
|
|
8842
|
+
issue?: Maybe<JiraIssue>;
|
|
8831
8843
|
webUrl?: Maybe<Scalars['URL']>;
|
|
8832
8844
|
author?: Maybe<User>;
|
|
8833
8845
|
updateAuthor?: Maybe<User>;
|
|
@@ -9144,6 +9156,12 @@ export declare enum JiraProjectType {
|
|
|
9144
9156
|
Business = "BUSINESS",
|
|
9145
9157
|
Software = "SOFTWARE"
|
|
9146
9158
|
}
|
|
9159
|
+
export declare type JiraPullRequestReviewer = {
|
|
9160
|
+
__typename?: 'JiraPullRequestReviewer';
|
|
9161
|
+
avatar?: Maybe<JiraAvatar>;
|
|
9162
|
+
name?: Maybe<Scalars['String']>;
|
|
9163
|
+
hasApproved?: Maybe<Scalars['Boolean']>;
|
|
9164
|
+
};
|
|
9147
9165
|
export declare enum JiraPullRequestState {
|
|
9148
9166
|
Open = "OPEN",
|
|
9149
9167
|
Declined = "DECLINED",
|
|
@@ -9165,8 +9183,10 @@ export declare type JiraQuery = {
|
|
|
9165
9183
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9166
9184
|
issueByKey?: Maybe<JiraIssue>;
|
|
9167
9185
|
issueById?: Maybe<JiraIssue>;
|
|
9186
|
+
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
9168
9187
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
9169
9188
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9189
|
+
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9170
9190
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
9171
9191
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9172
9192
|
filter?: Maybe<JiraFilter>;
|
|
@@ -9242,12 +9262,18 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
9242
9262
|
export declare type JiraQueryIssueByIdArgs = {
|
|
9243
9263
|
id: Scalars['ID'];
|
|
9244
9264
|
};
|
|
9265
|
+
export declare type JiraQueryIssuesByIdArgs = {
|
|
9266
|
+
ids: Array<Scalars['ID']>;
|
|
9267
|
+
};
|
|
9245
9268
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
9246
9269
|
issueId: Scalars['ID'];
|
|
9247
9270
|
};
|
|
9248
9271
|
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
9249
9272
|
issueKey: Scalars['String'];
|
|
9250
9273
|
};
|
|
9274
|
+
export declare type JiraQueryCommentsByIdArgs = {
|
|
9275
|
+
input: Array<JiraCommentByIdInput>;
|
|
9276
|
+
};
|
|
9251
9277
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
9252
9278
|
cloudId: Scalars['ID'];
|
|
9253
9279
|
keys: Array<Scalars['String']>;
|
|
@@ -9728,6 +9754,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
9728
9754
|
__typename?: 'JiraServiceManagementComment';
|
|
9729
9755
|
id: Scalars['ID'];
|
|
9730
9756
|
commentId: Scalars['ID'];
|
|
9757
|
+
issue?: Maybe<JiraIssue>;
|
|
9731
9758
|
webUrl?: Maybe<Scalars['URL']>;
|
|
9732
9759
|
author?: Maybe<User>;
|
|
9733
9760
|
updateAuthor?: Maybe<User>;
|
|
@@ -14697,10 +14724,7 @@ export declare type SupportRequestUsers = {
|
|
|
14697
14724
|
};
|
|
14698
14725
|
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
14699
14726
|
query?: Maybe<Scalars['String']>;
|
|
14700
|
-
|
|
14701
|
-
maxResults?: Maybe<Scalars['Int']>;
|
|
14702
|
-
includeActive?: Maybe<Scalars['Boolean']>;
|
|
14703
|
-
includeInactive?: Maybe<Scalars['Boolean']>;
|
|
14727
|
+
requestKey?: Maybe<Scalars['String']>;
|
|
14704
14728
|
};
|
|
14705
14729
|
export declare type SupportRequests = {
|
|
14706
14730
|
__typename?: 'SupportRequests';
|