@forge/cli-shared 2.3.0-next.6 → 2.3.0-next.9
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 +20 -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 +109 -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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.3.0-next.9
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- cf2420d2: Added root package.json and lock files to app bundle.
|
|
8
|
+
|
|
9
|
+
## 2.3.0-next.8
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [8e35955]
|
|
14
|
+
- @forge/manifest@3.3.0-next.7
|
|
15
|
+
|
|
16
|
+
## 2.3.0-next.7
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [ad94136]
|
|
21
|
+
- @forge/manifest@3.3.0-next.6
|
|
22
|
+
|
|
3
23
|
## 2.3.0-next.6
|
|
4
24
|
|
|
5
25
|
### 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';
|
|
@@ -1569,6 +1569,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1569
1569
|
createMetricSource?: Maybe<CompassCreateMetricSourcePayload>;
|
|
1570
1570
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1571
1571
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1572
|
+
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1572
1573
|
};
|
|
1573
1574
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
1574
1575
|
cloudId: Scalars['ID'];
|
|
@@ -1715,6 +1716,9 @@ export declare type CompassCatalogMutationApiDeleteMetricSourceArgs = {
|
|
|
1715
1716
|
export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
1716
1717
|
input: CompassInsertMetricValueInput;
|
|
1717
1718
|
};
|
|
1719
|
+
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1720
|
+
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1721
|
+
};
|
|
1718
1722
|
export declare type CompassCatalogQueryApi = {
|
|
1719
1723
|
__typename?: 'CompassCatalogQueryApi';
|
|
1720
1724
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -1855,8 +1859,8 @@ export declare type CompassCreateAlertEventInput = {
|
|
|
1855
1859
|
displayName: Scalars['String'];
|
|
1856
1860
|
lastUpdated: Scalars['DateTime'];
|
|
1857
1861
|
updateSequenceNumber: Scalars['Long'];
|
|
1858
|
-
description
|
|
1859
|
-
url
|
|
1862
|
+
description: Scalars['String'];
|
|
1863
|
+
url: Scalars['URL'];
|
|
1860
1864
|
externalEventSourceId: Scalars['ID'];
|
|
1861
1865
|
alertProperties: CompassAlertEventPropertiesInput;
|
|
1862
1866
|
};
|
|
@@ -1876,8 +1880,8 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
1876
1880
|
displayName: Scalars['String'];
|
|
1877
1881
|
lastUpdated: Scalars['DateTime'];
|
|
1878
1882
|
updateSequenceNumber: Scalars['Long'];
|
|
1879
|
-
description
|
|
1880
|
-
url
|
|
1883
|
+
description: Scalars['String'];
|
|
1884
|
+
url: Scalars['URL'];
|
|
1881
1885
|
externalEventSourceId: Scalars['ID'];
|
|
1882
1886
|
buildProperties: CompassBuildEventPropertiesInput;
|
|
1883
1887
|
};
|
|
@@ -1885,8 +1889,8 @@ export declare type CompassCreateCustomEventInput = {
|
|
|
1885
1889
|
displayName: Scalars['String'];
|
|
1886
1890
|
lastUpdated: Scalars['DateTime'];
|
|
1887
1891
|
updateSequenceNumber: Scalars['Long'];
|
|
1888
|
-
description
|
|
1889
|
-
url
|
|
1892
|
+
description: Scalars['String'];
|
|
1893
|
+
url: Scalars['URL'];
|
|
1890
1894
|
externalEventSourceId: Scalars['ID'];
|
|
1891
1895
|
customEventProperties: CompassCustomEventPropertiesInput;
|
|
1892
1896
|
};
|
|
@@ -1918,8 +1922,8 @@ export declare type CompassCreateFlagEventInput = {
|
|
|
1918
1922
|
displayName: Scalars['String'];
|
|
1919
1923
|
lastUpdated: Scalars['DateTime'];
|
|
1920
1924
|
updateSequenceNumber: Scalars['Long'];
|
|
1921
|
-
description
|
|
1922
|
-
url
|
|
1925
|
+
description: Scalars['String'];
|
|
1926
|
+
url: Scalars['URL'];
|
|
1923
1927
|
externalEventSourceId: Scalars['ID'];
|
|
1924
1928
|
flagProperties: CompassCreateFlagEventPropertiesInput;
|
|
1925
1929
|
};
|
|
@@ -1931,8 +1935,8 @@ export declare type CompassCreateIncidentEventInput = {
|
|
|
1931
1935
|
displayName: Scalars['String'];
|
|
1932
1936
|
lastUpdated: Scalars['DateTime'];
|
|
1933
1937
|
updateSequenceNumber: Scalars['Long'];
|
|
1934
|
-
description
|
|
1935
|
-
url
|
|
1938
|
+
description: Scalars['String'];
|
|
1939
|
+
url: Scalars['URL'];
|
|
1936
1940
|
externalEventSourceId: Scalars['ID'];
|
|
1937
1941
|
incidentProperties: CompassCreateIncidentEventPropertiesInput;
|
|
1938
1942
|
};
|
|
@@ -1944,8 +1948,8 @@ export declare type CompassCreateLifecycleEventInput = {
|
|
|
1944
1948
|
displayName: Scalars['String'];
|
|
1945
1949
|
lastUpdated: Scalars['DateTime'];
|
|
1946
1950
|
updateSequenceNumber: Scalars['Long'];
|
|
1947
|
-
description
|
|
1948
|
-
url
|
|
1951
|
+
description: Scalars['String'];
|
|
1952
|
+
url: Scalars['URL'];
|
|
1949
1953
|
externalEventSourceId: Scalars['ID'];
|
|
1950
1954
|
lifecycleProperties: CompassLifecycleEventInputProperties;
|
|
1951
1955
|
};
|
|
@@ -2661,6 +2665,15 @@ export declare type CompassStarredComponentQuery = {
|
|
|
2661
2665
|
after?: Maybe<Scalars['String']>;
|
|
2662
2666
|
};
|
|
2663
2667
|
export declare type CompassStarredComponentQueryResult = CompassStarredComponentConnection | QueryError;
|
|
2668
|
+
export declare type CompassSynchronizeLinkAssociationsInput = {
|
|
2669
|
+
cloudId: Scalars['ID'];
|
|
2670
|
+
forgeAppId: Scalars['ID'];
|
|
2671
|
+
};
|
|
2672
|
+
export declare type CompassSynchronizeLinkAssociationsPayload = Payload & {
|
|
2673
|
+
__typename?: 'CompassSynchronizeLinkAssociationsPayload';
|
|
2674
|
+
success: Scalars['Boolean'];
|
|
2675
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2676
|
+
};
|
|
2664
2677
|
export declare type CompassTeamCheckin = {
|
|
2665
2678
|
__typename?: 'CompassTeamCheckin';
|
|
2666
2679
|
teamId?: Maybe<Scalars['ID']>;
|
|
@@ -5017,7 +5030,8 @@ export declare type DevOpsThirdPartyRepository = {
|
|
|
5017
5030
|
name?: Maybe<Scalars['String']>;
|
|
5018
5031
|
avatar?: Maybe<DevOpsAvatar>;
|
|
5019
5032
|
};
|
|
5020
|
-
export declare type DevOpsTool = {
|
|
5033
|
+
export declare type DevOpsTool = Node & {
|
|
5034
|
+
__typename?: 'DevOpsTool';
|
|
5021
5035
|
id: Scalars['ID'];
|
|
5022
5036
|
name: Scalars['String'];
|
|
5023
5037
|
productKey: Scalars['String'];
|
|
@@ -5025,7 +5039,6 @@ export declare type DevOpsTool = {
|
|
|
5025
5039
|
group: DevOpsToolGroup;
|
|
5026
5040
|
supportsContainers: Scalars['Boolean'];
|
|
5027
5041
|
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5028
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5029
5042
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5030
5043
|
};
|
|
5031
5044
|
export declare type DevOpsToolNamespacesArgs = {
|
|
@@ -5033,23 +5046,6 @@ export declare type DevOpsToolNamespacesArgs = {
|
|
|
5033
5046
|
first?: Maybe<Scalars['Int']>;
|
|
5034
5047
|
after?: Maybe<Scalars['String']>;
|
|
5035
5048
|
};
|
|
5036
|
-
export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
5037
|
-
__typename?: 'DevOpsToolAvailable';
|
|
5038
|
-
id: Scalars['ID'];
|
|
5039
|
-
name: Scalars['String'];
|
|
5040
|
-
productKey: Scalars['String'];
|
|
5041
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5042
|
-
group: DevOpsToolGroup;
|
|
5043
|
-
supportsContainers: Scalars['Boolean'];
|
|
5044
|
-
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5045
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5046
|
-
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5047
|
-
};
|
|
5048
|
-
export declare type DevOpsToolAvailableNamespacesArgs = {
|
|
5049
|
-
query?: Maybe<Scalars['String']>;
|
|
5050
|
-
first?: Maybe<Scalars['Int']>;
|
|
5051
|
-
after?: Maybe<Scalars['String']>;
|
|
5052
|
-
};
|
|
5053
5049
|
export declare type DevOpsToolAvatar = {
|
|
5054
5050
|
__typename?: 'DevOpsToolAvatar';
|
|
5055
5051
|
url: Scalars['URL'];
|
|
@@ -5062,11 +5058,6 @@ export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpeci
|
|
|
5062
5058
|
name: Scalars['String'];
|
|
5063
5059
|
};
|
|
5064
5060
|
export declare type DevOpsToolCanContainerBeCreated = DevOpsToolContainerCanBeCreated | DevOpsToolContainerNameConflict | DevOpsToolContainerKeyConflict | DevOpsToolContainerKeyCannotBeGenerated | DevOpsToolUnknownTool;
|
|
5065
|
-
export declare enum DevOpsToolCategory {
|
|
5066
|
-
Development = "DEVELOPMENT",
|
|
5067
|
-
Documentation = "DOCUMENTATION",
|
|
5068
|
-
Operations = "OPERATIONS"
|
|
5069
|
-
}
|
|
5070
5061
|
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
5071
5062
|
__typename?: 'DevOpsToolConfluenceCreate';
|
|
5072
5063
|
requestId: Scalars['String'];
|
|
@@ -5141,11 +5132,6 @@ export declare type DevOpsToolContainerNameConflict = {
|
|
|
5141
5132
|
__typename?: 'DevOpsToolContainerNameConflict';
|
|
5142
5133
|
name?: Maybe<Scalars['String']>;
|
|
5143
5134
|
};
|
|
5144
|
-
export declare enum DevOpsToolContainerType {
|
|
5145
|
-
Repository = "REPOSITORY",
|
|
5146
|
-
DocumentsSpace = "DOCUMENTS_SPACE",
|
|
5147
|
-
OnCallSchedule = "ON_CALL_SCHEDULE"
|
|
5148
|
-
}
|
|
5149
5135
|
export declare type DevOpsToolEdge = {
|
|
5150
5136
|
__typename?: 'DevOpsToolEdge';
|
|
5151
5137
|
cursor: Scalars['String'];
|
|
@@ -5168,11 +5154,6 @@ export declare type DevOpsToolGroup = {
|
|
|
5168
5154
|
groupId: Scalars['String'];
|
|
5169
5155
|
groupName: Scalars['String'];
|
|
5170
5156
|
};
|
|
5171
|
-
export declare type DevOpsToolInstallationInfo = {
|
|
5172
|
-
__typename?: 'DevOpsToolInstallationInfo';
|
|
5173
|
-
oauthUrl?: Maybe<Scalars['URL']>;
|
|
5174
|
-
webUrl: Scalars['URL'];
|
|
5175
|
-
};
|
|
5176
5157
|
export declare type DevOpsToolNamespace = Node & {
|
|
5177
5158
|
__typename?: 'DevOpsToolNamespace';
|
|
5178
5159
|
id: Scalars['ID'];
|
|
@@ -5214,29 +5195,6 @@ export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecif
|
|
|
5214
5195
|
requestId: Scalars['String'];
|
|
5215
5196
|
name: Scalars['String'];
|
|
5216
5197
|
};
|
|
5217
|
-
export declare type DevOpsToolSupportedContainerType = {
|
|
5218
|
-
__typename?: 'DevOpsToolSupportedContainerType';
|
|
5219
|
-
category: DevOpsToolCategory;
|
|
5220
|
-
type: DevOpsToolContainerType;
|
|
5221
|
-
};
|
|
5222
|
-
export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
5223
|
-
__typename?: 'DevOpsToolUnavailable';
|
|
5224
|
-
id: Scalars['ID'];
|
|
5225
|
-
name: Scalars['String'];
|
|
5226
|
-
productKey: Scalars['String'];
|
|
5227
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5228
|
-
group: DevOpsToolGroup;
|
|
5229
|
-
supportsContainers: Scalars['Boolean'];
|
|
5230
|
-
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5231
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5232
|
-
install: DevOpsToolInstallationInfo;
|
|
5233
|
-
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5234
|
-
};
|
|
5235
|
-
export declare type DevOpsToolUnavailableNamespacesArgs = {
|
|
5236
|
-
query?: Maybe<Scalars['String']>;
|
|
5237
|
-
first?: Maybe<Scalars['Int']>;
|
|
5238
|
-
after?: Maybe<Scalars['String']>;
|
|
5239
|
-
};
|
|
5240
5198
|
export declare type DevOpsToolUnknownTool = {
|
|
5241
5199
|
__typename?: 'DevOpsToolUnknownTool';
|
|
5242
5200
|
toolId?: Maybe<Scalars['String']>;
|
|
@@ -6774,6 +6732,27 @@ export declare type JiraDefaultGrantTypeValue = Node & {
|
|
|
6774
6732
|
id: Scalars['ID'];
|
|
6775
6733
|
name: Scalars['String'];
|
|
6776
6734
|
};
|
|
6735
|
+
export declare type JiraDevOpsBranchDetails = {
|
|
6736
|
+
__typename?: 'JiraDevOpsBranchDetails';
|
|
6737
|
+
providerBranchId?: Maybe<Scalars['String']>;
|
|
6738
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6739
|
+
name?: Maybe<Scalars['String']>;
|
|
6740
|
+
repositoryName?: Maybe<Scalars['String']>;
|
|
6741
|
+
};
|
|
6742
|
+
export declare type JiraDevOpsCommitDetails = {
|
|
6743
|
+
__typename?: 'JiraDevOpsCommitDetails';
|
|
6744
|
+
providerCommitId?: Maybe<Scalars['String']>;
|
|
6745
|
+
displayCommitId?: Maybe<Scalars['String']>;
|
|
6746
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6747
|
+
name?: Maybe<Scalars['String']>;
|
|
6748
|
+
created?: Maybe<Scalars['DateTime']>;
|
|
6749
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6750
|
+
};
|
|
6751
|
+
export declare type JiraDevOpsEntityAuthor = {
|
|
6752
|
+
__typename?: 'JiraDevOpsEntityAuthor';
|
|
6753
|
+
avatar?: Maybe<JiraAvatar>;
|
|
6754
|
+
name?: Maybe<Scalars['String']>;
|
|
6755
|
+
};
|
|
6777
6756
|
export declare type JiraDevOpsIssuePanel = {
|
|
6778
6757
|
__typename?: 'JiraDevOpsIssuePanel';
|
|
6779
6758
|
panelState?: Maybe<JiraDevOpsIssuePanelState>;
|
|
@@ -6800,6 +6779,17 @@ export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateA
|
|
|
6800
6779
|
export declare type JiraDevOpsMutationDismissDevOpsIssuePanelBannerArgs = {
|
|
6801
6780
|
input: JiraDismissDevOpsIssuePanelBannerInput;
|
|
6802
6781
|
};
|
|
6782
|
+
export declare type JiraDevOpsPullRequestDetails = {
|
|
6783
|
+
__typename?: 'JiraDevOpsPullRequestDetails';
|
|
6784
|
+
providerPullRequestId?: Maybe<Scalars['String']>;
|
|
6785
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6786
|
+
name?: Maybe<Scalars['String']>;
|
|
6787
|
+
branchName?: Maybe<Scalars['String']>;
|
|
6788
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
6789
|
+
status?: Maybe<JiraPullRequestState>;
|
|
6790
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6791
|
+
reviewers?: Maybe<Array<JiraPullRequestReviewer>>;
|
|
6792
|
+
};
|
|
6803
6793
|
export declare type JiraDevOpsQuery = {
|
|
6804
6794
|
__typename?: 'JiraDevOpsQuery';
|
|
6805
6795
|
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
@@ -7171,9 +7161,11 @@ export declare type JiraIssue = Node & {
|
|
|
7171
7161
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
7172
7162
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
7173
7163
|
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
7164
|
+
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
7174
7165
|
childIssues?: Maybe<JiraChildIssues>;
|
|
7175
7166
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
7176
7167
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
7168
|
+
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
7177
7169
|
};
|
|
7178
7170
|
export declare type JiraIssueFieldsArgs = {
|
|
7179
7171
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7220,6 +7212,12 @@ export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
|
7220
7212
|
last?: Maybe<Scalars['Int']>;
|
|
7221
7213
|
before?: Maybe<Scalars['String']>;
|
|
7222
7214
|
};
|
|
7215
|
+
export declare type JiraIssueIssueLinksArgs = {
|
|
7216
|
+
first?: Maybe<Scalars['Int']>;
|
|
7217
|
+
after?: Maybe<Scalars['String']>;
|
|
7218
|
+
last?: Maybe<Scalars['Int']>;
|
|
7219
|
+
before?: Maybe<Scalars['String']>;
|
|
7220
|
+
};
|
|
7223
7221
|
export declare type JiraIssueBranchDevSummary = {
|
|
7224
7222
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
7225
7223
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -7230,6 +7228,10 @@ export declare type JiraIssueBranchDevSummaryContainer = {
|
|
|
7230
7228
|
overall?: Maybe<JiraIssueBranchDevSummary>;
|
|
7231
7229
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7232
7230
|
};
|
|
7231
|
+
export declare type JiraIssueBranches = {
|
|
7232
|
+
__typename?: 'JiraIssueBranches';
|
|
7233
|
+
details?: Maybe<Array<JiraDevOpsBranchDetails>>;
|
|
7234
|
+
};
|
|
7233
7235
|
export declare type JiraIssueBuildDevSummary = {
|
|
7234
7236
|
__typename?: 'JiraIssueBuildDevSummary';
|
|
7235
7237
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -7253,6 +7255,10 @@ export declare type JiraIssueCommitDevSummaryContainer = {
|
|
|
7253
7255
|
overall?: Maybe<JiraIssueCommitDevSummary>;
|
|
7254
7256
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7255
7257
|
};
|
|
7258
|
+
export declare type JiraIssueCommits = {
|
|
7259
|
+
__typename?: 'JiraIssueCommits';
|
|
7260
|
+
details?: Maybe<Array<JiraDevOpsCommitDetails>>;
|
|
7261
|
+
};
|
|
7256
7262
|
export declare type JiraIssueConnection = {
|
|
7257
7263
|
__typename?: 'JiraIssueConnection';
|
|
7258
7264
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -7288,6 +7294,12 @@ export declare enum JiraIssueDeploymentEnvironmentState {
|
|
|
7288
7294
|
NotDeployed = "NOT_DEPLOYED",
|
|
7289
7295
|
Deployed = "DEPLOYED"
|
|
7290
7296
|
}
|
|
7297
|
+
export declare type JiraIssueDevInfoDetails = {
|
|
7298
|
+
__typename?: 'JiraIssueDevInfoDetails';
|
|
7299
|
+
pullRequests?: Maybe<JiraIssuePullRequests>;
|
|
7300
|
+
branches?: Maybe<JiraIssueBranches>;
|
|
7301
|
+
commits?: Maybe<JiraIssueCommits>;
|
|
7302
|
+
};
|
|
7291
7303
|
export declare type JiraIssueDevSummary = {
|
|
7292
7304
|
__typename?: 'JiraIssueDevSummary';
|
|
7293
7305
|
branch?: Maybe<JiraIssueBranchDevSummaryContainer>;
|
|
@@ -7575,6 +7587,10 @@ export declare type JiraIssuePullRequestDevSummaryContainer = {
|
|
|
7575
7587
|
overall?: Maybe<JiraIssuePullRequestDevSummary>;
|
|
7576
7588
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7577
7589
|
};
|
|
7590
|
+
export declare type JiraIssuePullRequests = {
|
|
7591
|
+
__typename?: 'JiraIssuePullRequests';
|
|
7592
|
+
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
7593
|
+
};
|
|
7578
7594
|
export declare type JiraIssueRestrictionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7579
7595
|
__typename?: 'JiraIssueRestrictionField';
|
|
7580
7596
|
id: Scalars['ID'];
|
|
@@ -8895,6 +8911,7 @@ export declare type JiraProject = Node & {
|
|
|
8895
8911
|
projectType?: Maybe<JiraProjectType>;
|
|
8896
8912
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
8897
8913
|
status?: Maybe<JiraProjectStatus>;
|
|
8914
|
+
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
8898
8915
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
8899
8916
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
8900
8917
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -9130,6 +9147,12 @@ export declare enum JiraProjectType {
|
|
|
9130
9147
|
Business = "BUSINESS",
|
|
9131
9148
|
Software = "SOFTWARE"
|
|
9132
9149
|
}
|
|
9150
|
+
export declare type JiraPullRequestReviewer = {
|
|
9151
|
+
__typename?: 'JiraPullRequestReviewer';
|
|
9152
|
+
avatar?: Maybe<JiraAvatar>;
|
|
9153
|
+
name?: Maybe<Scalars['String']>;
|
|
9154
|
+
hasApproved?: Maybe<Scalars['Boolean']>;
|
|
9155
|
+
};
|
|
9133
9156
|
export declare enum JiraPullRequestState {
|
|
9134
9157
|
Open = "OPEN",
|
|
9135
9158
|
Declined = "DECLINED",
|
|
@@ -9968,7 +9991,7 @@ export declare type JiraServiceManagementRequestLanguageField = Node & JiraIssue
|
|
|
9968
9991
|
export declare type JiraServiceManagementRequestType = Node & {
|
|
9969
9992
|
__typename?: 'JiraServiceManagementRequestType';
|
|
9970
9993
|
id: Scalars['ID'];
|
|
9971
|
-
requestTypeId: Scalars['
|
|
9994
|
+
requestTypeId: Scalars['String'];
|
|
9972
9995
|
name?: Maybe<Scalars['String']>;
|
|
9973
9996
|
key?: Maybe<Scalars['String']>;
|
|
9974
9997
|
description?: Maybe<Scalars['String']>;
|
|
@@ -10067,6 +10090,10 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
10067
10090
|
key: Scalars['String'];
|
|
10068
10091
|
value: Scalars['String'];
|
|
10069
10092
|
};
|
|
10093
|
+
export declare type JiraSimilarIssues = {
|
|
10094
|
+
__typename?: 'JiraSimilarIssues';
|
|
10095
|
+
featureEnabled: Scalars['Boolean'];
|
|
10096
|
+
};
|
|
10070
10097
|
export declare type JiraSingleGroupPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
10071
10098
|
__typename?: 'JiraSingleGroupPickerField';
|
|
10072
10099
|
id: Scalars['ID'];
|
|
@@ -10454,6 +10481,7 @@ export declare type JiraVersion = Node & {
|
|
|
10454
10481
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
10455
10482
|
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
10456
10483
|
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
10484
|
+
connectAddonIframeData?: Maybe<Array<Maybe<JiraVersionConnectAddonIframeData>>>;
|
|
10457
10485
|
issues?: Maybe<JiraIssueConnection>;
|
|
10458
10486
|
};
|
|
10459
10487
|
export declare type JiraVersionIssuesArgs = {
|
|
@@ -10463,6 +10491,14 @@ export declare type JiraVersionIssuesArgs = {
|
|
|
10463
10491
|
before?: Maybe<Scalars['String']>;
|
|
10464
10492
|
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
10465
10493
|
};
|
|
10494
|
+
export declare type JiraVersionConnectAddonIframeData = {
|
|
10495
|
+
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
10496
|
+
appKey?: Maybe<Scalars['String']>;
|
|
10497
|
+
moduleKey?: Maybe<Scalars['String']>;
|
|
10498
|
+
appName?: Maybe<Scalars['String']>;
|
|
10499
|
+
location?: Maybe<Scalars['String']>;
|
|
10500
|
+
options?: Maybe<Scalars['JSON']>;
|
|
10501
|
+
};
|
|
10466
10502
|
export declare type JiraVersionConnection = {
|
|
10467
10503
|
__typename?: 'JiraVersionConnection';
|
|
10468
10504
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -13706,11 +13742,11 @@ export declare type RoadmapsMutation = {
|
|
|
13706
13742
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13707
13743
|
};
|
|
13708
13744
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13709
|
-
input
|
|
13745
|
+
input: RoadmapFeatureToggleInput;
|
|
13710
13746
|
};
|
|
13711
13747
|
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
13712
|
-
|
|
13713
|
-
|
|
13748
|
+
sourceARI: Scalars['ID'];
|
|
13749
|
+
input: RoadmapAddItemInput;
|
|
13714
13750
|
};
|
|
13715
13751
|
export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
13716
13752
|
sourceARI: Scalars['ID'];
|