@forge/cli-shared 2.3.0-next.7 → 2.3.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 +89 -73
- 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.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 949bd40: The @forge/cli will now download templates from a new service (previously bitbucket), old versions of the CLI won't receive template updates
|
|
8
|
+
- cf2420d: Added root package.json and lock files to app bundle.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 47a71a6: Upgrade graphql-request for node 16 compatibility
|
|
13
|
+
- Updated dependencies [88e57a12]
|
|
14
|
+
- Updated dependencies [fcd9580]
|
|
15
|
+
- Updated dependencies [6c44d2b]
|
|
16
|
+
- Updated dependencies [e95919f]
|
|
17
|
+
- Updated dependencies [e822a8a]
|
|
18
|
+
- Updated dependencies [720953f]
|
|
19
|
+
- Updated dependencies [2420378]
|
|
20
|
+
- Updated dependencies [051ed1f]
|
|
21
|
+
- Updated dependencies [ad94136]
|
|
22
|
+
- Updated dependencies [e65d33e]
|
|
23
|
+
- Updated dependencies [ae111cd]
|
|
24
|
+
- Updated dependencies [8e35955]
|
|
25
|
+
- Updated dependencies [c255b24]
|
|
26
|
+
- Updated dependencies [f894871]
|
|
27
|
+
- @forge/util@1.2.0
|
|
28
|
+
- @forge/manifest@3.3.0
|
|
29
|
+
|
|
30
|
+
## 2.3.0-next.11
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- Updated dependencies [720953f]
|
|
35
|
+
- @forge/manifest@3.3.0-next.9
|
|
36
|
+
|
|
37
|
+
## 2.3.0-next.10
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- 47a71a62: Upgrade graphql-request for node 16 compatibility
|
|
42
|
+
- Updated dependencies [fcd95803]
|
|
43
|
+
- Updated dependencies [e65d33e6]
|
|
44
|
+
- @forge/manifest@3.3.0-next.8
|
|
45
|
+
|
|
46
|
+
## 2.3.0-next.9
|
|
47
|
+
|
|
48
|
+
### Minor Changes
|
|
49
|
+
|
|
50
|
+
- cf2420d2: Added root package.json and lock files to app bundle.
|
|
51
|
+
|
|
52
|
+
## 2.3.0-next.8
|
|
53
|
+
|
|
54
|
+
### Patch Changes
|
|
55
|
+
|
|
56
|
+
- Updated dependencies [8e35955]
|
|
57
|
+
- @forge/manifest@3.3.0-next.7
|
|
58
|
+
|
|
3
59
|
## 2.3.0-next.7
|
|
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 = {
|
|
@@ -1859,8 +1860,8 @@ export declare type CompassCreateAlertEventInput = {
|
|
|
1859
1860
|
displayName: Scalars['String'];
|
|
1860
1861
|
lastUpdated: Scalars['DateTime'];
|
|
1861
1862
|
updateSequenceNumber: Scalars['Long'];
|
|
1862
|
-
description
|
|
1863
|
-
url
|
|
1863
|
+
description: Scalars['String'];
|
|
1864
|
+
url: Scalars['URL'];
|
|
1864
1865
|
externalEventSourceId: Scalars['ID'];
|
|
1865
1866
|
alertProperties: CompassAlertEventPropertiesInput;
|
|
1866
1867
|
};
|
|
@@ -1880,8 +1881,8 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
1880
1881
|
displayName: Scalars['String'];
|
|
1881
1882
|
lastUpdated: Scalars['DateTime'];
|
|
1882
1883
|
updateSequenceNumber: Scalars['Long'];
|
|
1883
|
-
description
|
|
1884
|
-
url
|
|
1884
|
+
description: Scalars['String'];
|
|
1885
|
+
url: Scalars['URL'];
|
|
1885
1886
|
externalEventSourceId: Scalars['ID'];
|
|
1886
1887
|
buildProperties: CompassBuildEventPropertiesInput;
|
|
1887
1888
|
};
|
|
@@ -1889,8 +1890,8 @@ export declare type CompassCreateCustomEventInput = {
|
|
|
1889
1890
|
displayName: Scalars['String'];
|
|
1890
1891
|
lastUpdated: Scalars['DateTime'];
|
|
1891
1892
|
updateSequenceNumber: Scalars['Long'];
|
|
1892
|
-
description
|
|
1893
|
-
url
|
|
1893
|
+
description: Scalars['String'];
|
|
1894
|
+
url: Scalars['URL'];
|
|
1894
1895
|
externalEventSourceId: Scalars['ID'];
|
|
1895
1896
|
customEventProperties: CompassCustomEventPropertiesInput;
|
|
1896
1897
|
};
|
|
@@ -1922,8 +1923,8 @@ export declare type CompassCreateFlagEventInput = {
|
|
|
1922
1923
|
displayName: Scalars['String'];
|
|
1923
1924
|
lastUpdated: Scalars['DateTime'];
|
|
1924
1925
|
updateSequenceNumber: Scalars['Long'];
|
|
1925
|
-
description
|
|
1926
|
-
url
|
|
1926
|
+
description: Scalars['String'];
|
|
1927
|
+
url: Scalars['URL'];
|
|
1927
1928
|
externalEventSourceId: Scalars['ID'];
|
|
1928
1929
|
flagProperties: CompassCreateFlagEventPropertiesInput;
|
|
1929
1930
|
};
|
|
@@ -1935,8 +1936,8 @@ export declare type CompassCreateIncidentEventInput = {
|
|
|
1935
1936
|
displayName: Scalars['String'];
|
|
1936
1937
|
lastUpdated: Scalars['DateTime'];
|
|
1937
1938
|
updateSequenceNumber: Scalars['Long'];
|
|
1938
|
-
description
|
|
1939
|
-
url
|
|
1939
|
+
description: Scalars['String'];
|
|
1940
|
+
url: Scalars['URL'];
|
|
1940
1941
|
externalEventSourceId: Scalars['ID'];
|
|
1941
1942
|
incidentProperties: CompassCreateIncidentEventPropertiesInput;
|
|
1942
1943
|
};
|
|
@@ -1948,8 +1949,8 @@ export declare type CompassCreateLifecycleEventInput = {
|
|
|
1948
1949
|
displayName: Scalars['String'];
|
|
1949
1950
|
lastUpdated: Scalars['DateTime'];
|
|
1950
1951
|
updateSequenceNumber: Scalars['Long'];
|
|
1951
|
-
description
|
|
1952
|
-
url
|
|
1952
|
+
description: Scalars['String'];
|
|
1953
|
+
url: Scalars['URL'];
|
|
1953
1954
|
externalEventSourceId: Scalars['ID'];
|
|
1954
1955
|
lifecycleProperties: CompassLifecycleEventInputProperties;
|
|
1955
1956
|
};
|
|
@@ -5030,7 +5031,8 @@ export declare type DevOpsThirdPartyRepository = {
|
|
|
5030
5031
|
name?: Maybe<Scalars['String']>;
|
|
5031
5032
|
avatar?: Maybe<DevOpsAvatar>;
|
|
5032
5033
|
};
|
|
5033
|
-
export declare type DevOpsTool = {
|
|
5034
|
+
export declare type DevOpsTool = Node & {
|
|
5035
|
+
__typename?: 'DevOpsTool';
|
|
5034
5036
|
id: Scalars['ID'];
|
|
5035
5037
|
name: Scalars['String'];
|
|
5036
5038
|
productKey: Scalars['String'];
|
|
@@ -5038,7 +5040,6 @@ export declare type DevOpsTool = {
|
|
|
5038
5040
|
group: DevOpsToolGroup;
|
|
5039
5041
|
supportsContainers: Scalars['Boolean'];
|
|
5040
5042
|
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5041
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5042
5043
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5043
5044
|
};
|
|
5044
5045
|
export declare type DevOpsToolNamespacesArgs = {
|
|
@@ -5046,23 +5047,6 @@ export declare type DevOpsToolNamespacesArgs = {
|
|
|
5046
5047
|
first?: Maybe<Scalars['Int']>;
|
|
5047
5048
|
after?: Maybe<Scalars['String']>;
|
|
5048
5049
|
};
|
|
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
5050
|
export declare type DevOpsToolAvatar = {
|
|
5067
5051
|
__typename?: 'DevOpsToolAvatar';
|
|
5068
5052
|
url: Scalars['URL'];
|
|
@@ -5075,11 +5059,6 @@ export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpeci
|
|
|
5075
5059
|
name: Scalars['String'];
|
|
5076
5060
|
};
|
|
5077
5061
|
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
5062
|
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
5084
5063
|
__typename?: 'DevOpsToolConfluenceCreate';
|
|
5085
5064
|
requestId: Scalars['String'];
|
|
@@ -5154,11 +5133,6 @@ export declare type DevOpsToolContainerNameConflict = {
|
|
|
5154
5133
|
__typename?: 'DevOpsToolContainerNameConflict';
|
|
5155
5134
|
name?: Maybe<Scalars['String']>;
|
|
5156
5135
|
};
|
|
5157
|
-
export declare enum DevOpsToolContainerType {
|
|
5158
|
-
Repository = "REPOSITORY",
|
|
5159
|
-
DocumentsSpace = "DOCUMENTS_SPACE",
|
|
5160
|
-
OnCallSchedule = "ON_CALL_SCHEDULE"
|
|
5161
|
-
}
|
|
5162
5136
|
export declare type DevOpsToolEdge = {
|
|
5163
5137
|
__typename?: 'DevOpsToolEdge';
|
|
5164
5138
|
cursor: Scalars['String'];
|
|
@@ -5181,11 +5155,6 @@ export declare type DevOpsToolGroup = {
|
|
|
5181
5155
|
groupId: Scalars['String'];
|
|
5182
5156
|
groupName: Scalars['String'];
|
|
5183
5157
|
};
|
|
5184
|
-
export declare type DevOpsToolInstallationInfo = {
|
|
5185
|
-
__typename?: 'DevOpsToolInstallationInfo';
|
|
5186
|
-
oauthUrl?: Maybe<Scalars['URL']>;
|
|
5187
|
-
webUrl: Scalars['URL'];
|
|
5188
|
-
};
|
|
5189
5158
|
export declare type DevOpsToolNamespace = Node & {
|
|
5190
5159
|
__typename?: 'DevOpsToolNamespace';
|
|
5191
5160
|
id: Scalars['ID'];
|
|
@@ -5227,29 +5196,6 @@ export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecif
|
|
|
5227
5196
|
requestId: Scalars['String'];
|
|
5228
5197
|
name: Scalars['String'];
|
|
5229
5198
|
};
|
|
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
5199
|
export declare type DevOpsToolUnknownTool = {
|
|
5254
5200
|
__typename?: 'DevOpsToolUnknownTool';
|
|
5255
5201
|
toolId?: Maybe<Scalars['String']>;
|
|
@@ -6787,6 +6733,27 @@ export declare type JiraDefaultGrantTypeValue = Node & {
|
|
|
6787
6733
|
id: Scalars['ID'];
|
|
6788
6734
|
name: Scalars['String'];
|
|
6789
6735
|
};
|
|
6736
|
+
export declare type JiraDevOpsBranchDetails = {
|
|
6737
|
+
__typename?: 'JiraDevOpsBranchDetails';
|
|
6738
|
+
providerBranchId?: Maybe<Scalars['String']>;
|
|
6739
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6740
|
+
name?: Maybe<Scalars['String']>;
|
|
6741
|
+
repositoryName?: Maybe<Scalars['String']>;
|
|
6742
|
+
};
|
|
6743
|
+
export declare type JiraDevOpsCommitDetails = {
|
|
6744
|
+
__typename?: 'JiraDevOpsCommitDetails';
|
|
6745
|
+
providerCommitId?: Maybe<Scalars['String']>;
|
|
6746
|
+
displayCommitId?: Maybe<Scalars['String']>;
|
|
6747
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6748
|
+
name?: Maybe<Scalars['String']>;
|
|
6749
|
+
created?: Maybe<Scalars['DateTime']>;
|
|
6750
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6751
|
+
};
|
|
6752
|
+
export declare type JiraDevOpsEntityAuthor = {
|
|
6753
|
+
__typename?: 'JiraDevOpsEntityAuthor';
|
|
6754
|
+
avatar?: Maybe<JiraAvatar>;
|
|
6755
|
+
name?: Maybe<Scalars['String']>;
|
|
6756
|
+
};
|
|
6790
6757
|
export declare type JiraDevOpsIssuePanel = {
|
|
6791
6758
|
__typename?: 'JiraDevOpsIssuePanel';
|
|
6792
6759
|
panelState?: Maybe<JiraDevOpsIssuePanelState>;
|
|
@@ -6813,6 +6780,17 @@ export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateA
|
|
|
6813
6780
|
export declare type JiraDevOpsMutationDismissDevOpsIssuePanelBannerArgs = {
|
|
6814
6781
|
input: JiraDismissDevOpsIssuePanelBannerInput;
|
|
6815
6782
|
};
|
|
6783
|
+
export declare type JiraDevOpsPullRequestDetails = {
|
|
6784
|
+
__typename?: 'JiraDevOpsPullRequestDetails';
|
|
6785
|
+
providerPullRequestId?: Maybe<Scalars['String']>;
|
|
6786
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6787
|
+
name?: Maybe<Scalars['String']>;
|
|
6788
|
+
branchName?: Maybe<Scalars['String']>;
|
|
6789
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
6790
|
+
status?: Maybe<JiraPullRequestState>;
|
|
6791
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6792
|
+
reviewers?: Maybe<Array<JiraPullRequestReviewer>>;
|
|
6793
|
+
};
|
|
6816
6794
|
export declare type JiraDevOpsQuery = {
|
|
6817
6795
|
__typename?: 'JiraDevOpsQuery';
|
|
6818
6796
|
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
@@ -7184,9 +7162,11 @@ export declare type JiraIssue = Node & {
|
|
|
7184
7162
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
7185
7163
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
7186
7164
|
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
7165
|
+
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
7187
7166
|
childIssues?: Maybe<JiraChildIssues>;
|
|
7188
7167
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
7189
7168
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
7169
|
+
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
7190
7170
|
};
|
|
7191
7171
|
export declare type JiraIssueFieldsArgs = {
|
|
7192
7172
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7233,6 +7213,12 @@ export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
|
7233
7213
|
last?: Maybe<Scalars['Int']>;
|
|
7234
7214
|
before?: Maybe<Scalars['String']>;
|
|
7235
7215
|
};
|
|
7216
|
+
export declare type JiraIssueIssueLinksArgs = {
|
|
7217
|
+
first?: Maybe<Scalars['Int']>;
|
|
7218
|
+
after?: Maybe<Scalars['String']>;
|
|
7219
|
+
last?: Maybe<Scalars['Int']>;
|
|
7220
|
+
before?: Maybe<Scalars['String']>;
|
|
7221
|
+
};
|
|
7236
7222
|
export declare type JiraIssueBranchDevSummary = {
|
|
7237
7223
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
7238
7224
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -7243,6 +7229,10 @@ export declare type JiraIssueBranchDevSummaryContainer = {
|
|
|
7243
7229
|
overall?: Maybe<JiraIssueBranchDevSummary>;
|
|
7244
7230
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7245
7231
|
};
|
|
7232
|
+
export declare type JiraIssueBranches = {
|
|
7233
|
+
__typename?: 'JiraIssueBranches';
|
|
7234
|
+
details?: Maybe<Array<JiraDevOpsBranchDetails>>;
|
|
7235
|
+
};
|
|
7246
7236
|
export declare type JiraIssueBuildDevSummary = {
|
|
7247
7237
|
__typename?: 'JiraIssueBuildDevSummary';
|
|
7248
7238
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -7266,6 +7256,10 @@ export declare type JiraIssueCommitDevSummaryContainer = {
|
|
|
7266
7256
|
overall?: Maybe<JiraIssueCommitDevSummary>;
|
|
7267
7257
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7268
7258
|
};
|
|
7259
|
+
export declare type JiraIssueCommits = {
|
|
7260
|
+
__typename?: 'JiraIssueCommits';
|
|
7261
|
+
details?: Maybe<Array<JiraDevOpsCommitDetails>>;
|
|
7262
|
+
};
|
|
7269
7263
|
export declare type JiraIssueConnection = {
|
|
7270
7264
|
__typename?: 'JiraIssueConnection';
|
|
7271
7265
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -7301,6 +7295,12 @@ export declare enum JiraIssueDeploymentEnvironmentState {
|
|
|
7301
7295
|
NotDeployed = "NOT_DEPLOYED",
|
|
7302
7296
|
Deployed = "DEPLOYED"
|
|
7303
7297
|
}
|
|
7298
|
+
export declare type JiraIssueDevInfoDetails = {
|
|
7299
|
+
__typename?: 'JiraIssueDevInfoDetails';
|
|
7300
|
+
pullRequests?: Maybe<JiraIssuePullRequests>;
|
|
7301
|
+
branches?: Maybe<JiraIssueBranches>;
|
|
7302
|
+
commits?: Maybe<JiraIssueCommits>;
|
|
7303
|
+
};
|
|
7304
7304
|
export declare type JiraIssueDevSummary = {
|
|
7305
7305
|
__typename?: 'JiraIssueDevSummary';
|
|
7306
7306
|
branch?: Maybe<JiraIssueBranchDevSummaryContainer>;
|
|
@@ -7588,6 +7588,10 @@ export declare type JiraIssuePullRequestDevSummaryContainer = {
|
|
|
7588
7588
|
overall?: Maybe<JiraIssuePullRequestDevSummary>;
|
|
7589
7589
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7590
7590
|
};
|
|
7591
|
+
export declare type JiraIssuePullRequests = {
|
|
7592
|
+
__typename?: 'JiraIssuePullRequests';
|
|
7593
|
+
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
7594
|
+
};
|
|
7591
7595
|
export declare type JiraIssueRestrictionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7592
7596
|
__typename?: 'JiraIssueRestrictionField';
|
|
7593
7597
|
id: Scalars['ID'];
|
|
@@ -9144,6 +9148,12 @@ export declare enum JiraProjectType {
|
|
|
9144
9148
|
Business = "BUSINESS",
|
|
9145
9149
|
Software = "SOFTWARE"
|
|
9146
9150
|
}
|
|
9151
|
+
export declare type JiraPullRequestReviewer = {
|
|
9152
|
+
__typename?: 'JiraPullRequestReviewer';
|
|
9153
|
+
avatar?: Maybe<JiraAvatar>;
|
|
9154
|
+
name?: Maybe<Scalars['String']>;
|
|
9155
|
+
hasApproved?: Maybe<Scalars['Boolean']>;
|
|
9156
|
+
};
|
|
9147
9157
|
export declare enum JiraPullRequestState {
|
|
9148
9158
|
Open = "OPEN",
|
|
9149
9159
|
Declined = "DECLINED",
|
|
@@ -10472,6 +10482,7 @@ export declare type JiraVersion = Node & {
|
|
|
10472
10482
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
10473
10483
|
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
10474
10484
|
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
10485
|
+
connectAddonIframeData?: Maybe<Array<Maybe<JiraVersionConnectAddonIframeData>>>;
|
|
10475
10486
|
issues?: Maybe<JiraIssueConnection>;
|
|
10476
10487
|
};
|
|
10477
10488
|
export declare type JiraVersionIssuesArgs = {
|
|
@@ -10481,6 +10492,14 @@ export declare type JiraVersionIssuesArgs = {
|
|
|
10481
10492
|
before?: Maybe<Scalars['String']>;
|
|
10482
10493
|
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
10483
10494
|
};
|
|
10495
|
+
export declare type JiraVersionConnectAddonIframeData = {
|
|
10496
|
+
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
10497
|
+
appKey?: Maybe<Scalars['String']>;
|
|
10498
|
+
moduleKey?: Maybe<Scalars['String']>;
|
|
10499
|
+
appName?: Maybe<Scalars['String']>;
|
|
10500
|
+
location?: Maybe<Scalars['String']>;
|
|
10501
|
+
options?: Maybe<Scalars['JSON']>;
|
|
10502
|
+
};
|
|
10484
10503
|
export declare type JiraVersionConnection = {
|
|
10485
10504
|
__typename?: 'JiraVersionConnection';
|
|
10486
10505
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -14688,10 +14707,7 @@ export declare type SupportRequestUsers = {
|
|
|
14688
14707
|
};
|
|
14689
14708
|
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
14690
14709
|
query?: Maybe<Scalars['String']>;
|
|
14691
|
-
|
|
14692
|
-
maxResults?: Maybe<Scalars['Int']>;
|
|
14693
|
-
includeActive?: Maybe<Scalars['Boolean']>;
|
|
14694
|
-
includeInactive?: Maybe<Scalars['Boolean']>;
|
|
14710
|
+
requestKey?: Maybe<Scalars['String']>;
|
|
14695
14711
|
};
|
|
14696
14712
|
export declare type SupportRequests = {
|
|
14697
14713
|
__typename?: 'SupportRequests';
|