@forge/cli-shared 3.12.0 → 3.13.0-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 +6 -0
- package/out/apps/get-app-owner.d.ts +13 -0
- package/out/apps/get-app-owner.d.ts.map +1 -0
- package/out/apps/get-app-owner.js +44 -0
- package/out/apps/index.d.ts +1 -0
- package/out/apps/index.d.ts.map +1 -1
- package/out/apps/index.js +1 -0
- package/out/graphql/graphql-types.d.ts +116 -25
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -0
- package/out/ui/text.d.ts +10 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +10 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { GraphQLClient, User } from '../graphql';
|
|
2
|
+
import { AppConfigProvider } from './app-config';
|
|
3
|
+
export declare class MissingAppOwnerError extends Error {
|
|
4
|
+
constructor();
|
|
5
|
+
}
|
|
6
|
+
export declare class GetAppOwnerQuery {
|
|
7
|
+
private readonly graphqlClient;
|
|
8
|
+
private readonly getAppConfig;
|
|
9
|
+
constructor(graphqlClient: GraphQLClient, getAppConfig: AppConfigProvider);
|
|
10
|
+
execute(): Promise<User>;
|
|
11
|
+
private getAppOwner;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=get-app-owner.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-app-owner.d.ts","sourceRoot":"","sources":["../../src/apps/get-app-owner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAiC,IAAI,EAAE,MAAM,YAAY,CAAC;AAEhF,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEjD,qBAAa,oBAAqB,SAAQ,KAAK;;CAI9C;AAED,qBAAa,gBAAgB;IACf,OAAO,CAAC,QAAQ,CAAC,aAAa;IAAiB,OAAO,CAAC,QAAQ,CAAC,YAAY;gBAA3D,aAAa,EAAE,aAAa,EAAmB,YAAY,EAAE,iBAAiB;IAE9F,OAAO;YAMN,WAAW;CA0B1B"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetAppOwnerQuery = exports.MissingAppOwnerError = void 0;
|
|
4
|
+
const graphql_1 = require("../graphql");
|
|
5
|
+
const ui_1 = require("../ui");
|
|
6
|
+
class MissingAppOwnerError extends Error {
|
|
7
|
+
constructor() {
|
|
8
|
+
super(ui_1.Text.env.error.appOwnerNotExist);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.MissingAppOwnerError = MissingAppOwnerError;
|
|
12
|
+
class GetAppOwnerQuery {
|
|
13
|
+
constructor(graphqlClient, getAppConfig) {
|
|
14
|
+
this.graphqlClient = graphqlClient;
|
|
15
|
+
this.getAppConfig = getAppConfig;
|
|
16
|
+
}
|
|
17
|
+
async execute() {
|
|
18
|
+
const { id: appId } = await this.getAppConfig();
|
|
19
|
+
return this.getAppOwner(appId);
|
|
20
|
+
}
|
|
21
|
+
async getAppOwner(appId) {
|
|
22
|
+
const query = `
|
|
23
|
+
query forge_cli_getAppOwner($id: ID!) {
|
|
24
|
+
app(id: $id) {
|
|
25
|
+
createdBy {
|
|
26
|
+
name
|
|
27
|
+
accountId
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
`;
|
|
32
|
+
const { app } = await this.graphqlClient.query(query, {
|
|
33
|
+
id: appId
|
|
34
|
+
});
|
|
35
|
+
if (!app) {
|
|
36
|
+
throw new graphql_1.MissingAppError();
|
|
37
|
+
}
|
|
38
|
+
if (!app.createdBy) {
|
|
39
|
+
throw new MissingAppOwnerError();
|
|
40
|
+
}
|
|
41
|
+
return app.createdBy;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.GetAppOwnerQuery = GetAppOwnerQuery;
|
package/out/apps/index.d.ts
CHANGED
package/out/apps/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/apps/index.ts"],"names":[],"mappings":"AAEA,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/apps/index.ts"],"names":[],"mappings":"AAEA,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC"}
|
package/out/apps/index.js
CHANGED
|
@@ -8,3 +8,4 @@ tslib_1.__exportStar(require("./package-installer"), exports);
|
|
|
8
8
|
tslib_1.__exportStar(require("./register-app"), exports);
|
|
9
9
|
tslib_1.__exportStar(require("./sites"), exports);
|
|
10
10
|
tslib_1.__exportStar(require("./template"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./get-app-owner"), exports);
|
|
@@ -1243,7 +1243,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
1243
1243
|
id: Scalars['ID'];
|
|
1244
1244
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
1245
1245
|
};
|
|
1246
|
-
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer |
|
|
1246
|
+
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsDocumentDetails | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue | OpsgenieTeam | TownsquareGoal | TownsquareProject | TownsquareComment;
|
|
1247
1247
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
1248
1248
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
1249
1249
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -1886,8 +1886,8 @@ export declare type CcpBillEstimate = {
|
|
|
1886
1886
|
};
|
|
1887
1887
|
export declare type CcpBillingPeriodDetails = {
|
|
1888
1888
|
__typename?: 'CcpBillingPeriodDetails';
|
|
1889
|
-
|
|
1890
|
-
|
|
1889
|
+
billingAnchorTimestamp?: Maybe<Scalars['Float']>;
|
|
1890
|
+
nextBillingTimestamp?: Maybe<Scalars['Float']>;
|
|
1891
1891
|
};
|
|
1892
1892
|
export declare type CcpChargeDetails = {
|
|
1893
1893
|
__typename?: 'CcpChargeDetails';
|
|
@@ -1931,7 +1931,6 @@ export declare type CcpEntitlement = Node & {
|
|
|
1931
1931
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
1932
1932
|
featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
1933
1933
|
featureVariables?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
1934
|
-
parentEntitlementId?: Maybe<Scalars['String']>;
|
|
1935
1934
|
parentId?: Maybe<Scalars['ID']>;
|
|
1936
1935
|
childrenIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1937
1936
|
transactionAccountId?: Maybe<Scalars['ID']>;
|
|
@@ -2032,7 +2031,7 @@ export declare type CcpSubscriptionV2 = {
|
|
|
2032
2031
|
trial?: Maybe<CcpTrial>;
|
|
2033
2032
|
billingPeriodDetails?: Maybe<CcpBillingPeriodDetails>;
|
|
2034
2033
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2035
|
-
|
|
2034
|
+
subscriptionSchedule?: Maybe<CcpSubscriptionSchedule>;
|
|
2036
2035
|
status?: Maybe<CcpSubscriptionStatus>;
|
|
2037
2036
|
startTimestamp?: Maybe<Scalars['Float']>;
|
|
2038
2037
|
};
|
|
@@ -6043,6 +6042,20 @@ export declare type CustomerServiceAttribute = {
|
|
|
6043
6042
|
__typename?: 'CustomerServiceAttribute';
|
|
6044
6043
|
id: Scalars['ID'];
|
|
6045
6044
|
name: Scalars['String'];
|
|
6045
|
+
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
6046
|
+
};
|
|
6047
|
+
export declare type CustomerServiceAttributeConfigMetadata = {
|
|
6048
|
+
__typename?: 'CustomerServiceAttributeConfigMetadata';
|
|
6049
|
+
position?: Maybe<Scalars['Int']>;
|
|
6050
|
+
};
|
|
6051
|
+
export declare type CustomerServiceAttributeConfigMetadataUpdateInput = {
|
|
6052
|
+
id: Scalars['ID'];
|
|
6053
|
+
position?: Maybe<Scalars['Int']>;
|
|
6054
|
+
};
|
|
6055
|
+
export declare type CustomerServiceAttributeConfigMetadataUpdatePayload = Payload & {
|
|
6056
|
+
__typename?: 'CustomerServiceAttributeConfigMetadataUpdatePayload';
|
|
6057
|
+
success: Scalars['Boolean'];
|
|
6058
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6046
6059
|
};
|
|
6047
6060
|
export declare type CustomerServiceAttributeCreateInput = {
|
|
6048
6061
|
name: Scalars['String'];
|
|
@@ -6076,6 +6089,7 @@ export declare type CustomerServiceAttributeValue = {
|
|
|
6076
6089
|
id: Scalars['ID'];
|
|
6077
6090
|
name: Scalars['String'];
|
|
6078
6091
|
value?: Maybe<Scalars['String']>;
|
|
6092
|
+
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
6079
6093
|
};
|
|
6080
6094
|
export declare type CustomerServiceAttributes = {
|
|
6081
6095
|
__typename?: 'CustomerServiceAttributes';
|
|
@@ -6118,11 +6132,13 @@ export declare type CustomerServiceMutationApi = {
|
|
|
6118
6132
|
createOrganizationAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
6119
6133
|
updateOrganizationAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
6120
6134
|
deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
6135
|
+
updateOrganizationAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
|
|
6121
6136
|
updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
6122
6137
|
updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
6123
6138
|
createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
6124
6139
|
updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
6125
6140
|
deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
6141
|
+
updateIndividualAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
|
|
6126
6142
|
updateIndividualAttributeValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
6127
6143
|
};
|
|
6128
6144
|
export declare type CustomerServiceMutationApiCreateOrganizationArgs = {
|
|
@@ -6143,6 +6159,9 @@ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeArgs =
|
|
|
6143
6159
|
export declare type CustomerServiceMutationApiDeleteOrganizationAttributeArgs = {
|
|
6144
6160
|
input: CustomerServiceAttributeDeleteInput;
|
|
6145
6161
|
};
|
|
6162
|
+
export declare type CustomerServiceMutationApiUpdateOrganizationAttributeConfigArgs = {
|
|
6163
|
+
input: CustomerServiceAttributeConfigMetadataUpdateInput;
|
|
6164
|
+
};
|
|
6146
6165
|
export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueArgs = {
|
|
6147
6166
|
input: CustomerServiceOrganizationUpdateAttributeInput;
|
|
6148
6167
|
};
|
|
@@ -6158,6 +6177,9 @@ export declare type CustomerServiceMutationApiUpdateIndividualAttributeArgs = {
|
|
|
6158
6177
|
export declare type CustomerServiceMutationApiDeleteIndividualAttributeArgs = {
|
|
6159
6178
|
input: CustomerServiceAttributeDeleteInput;
|
|
6160
6179
|
};
|
|
6180
|
+
export declare type CustomerServiceMutationApiUpdateIndividualAttributeConfigArgs = {
|
|
6181
|
+
input: CustomerServiceAttributeConfigMetadataUpdateInput;
|
|
6182
|
+
};
|
|
6161
6183
|
export declare type CustomerServiceMutationApiUpdateIndividualAttributeValueByNameArgs = {
|
|
6162
6184
|
input: CustomerServiceIndividualUpdateAttributeByNameInput;
|
|
6163
6185
|
};
|
|
@@ -6719,23 +6741,6 @@ export declare type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
6719
6741
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6720
6742
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6721
6743
|
};
|
|
6722
|
-
export declare type DevOpsDocument = {
|
|
6723
|
-
__typename?: 'DevOpsDocument';
|
|
6724
|
-
id: Scalars['ID'];
|
|
6725
|
-
parentId?: Maybe<Scalars['ID']>;
|
|
6726
|
-
providerId?: Maybe<Scalars['String']>;
|
|
6727
|
-
displayName?: Maybe<Scalars['String']>;
|
|
6728
|
-
type?: Maybe<DevOpsDocumentType>;
|
|
6729
|
-
url?: Maybe<Scalars['URL']>;
|
|
6730
|
-
createdAt?: Maybe<Scalars['DateTime']>;
|
|
6731
|
-
createdBy?: Maybe<User>;
|
|
6732
|
-
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
6733
|
-
lastUpdatedBy?: Maybe<User>;
|
|
6734
|
-
collaborators?: Maybe<Array<Maybe<User>>>;
|
|
6735
|
-
byteSize?: Maybe<Scalars['Long']>;
|
|
6736
|
-
exportLinks?: Maybe<Array<Maybe<DevOpsDocumentExportLink>>>;
|
|
6737
|
-
hasChildren?: Maybe<Scalars['Boolean']>;
|
|
6738
|
-
};
|
|
6739
6744
|
export declare enum DevOpsDocumentCategory {
|
|
6740
6745
|
Folder = "FOLDER",
|
|
6741
6746
|
Document = "DOCUMENT",
|
|
@@ -6751,6 +6756,23 @@ export declare enum DevOpsDocumentCategory {
|
|
|
6751
6756
|
Form = "FORM",
|
|
6752
6757
|
Other = "OTHER"
|
|
6753
6758
|
}
|
|
6759
|
+
export declare type DevOpsDocumentDetails = {
|
|
6760
|
+
__typename?: 'DevOpsDocumentDetails';
|
|
6761
|
+
id: Scalars['ID'];
|
|
6762
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
6763
|
+
providerId?: Maybe<Scalars['String']>;
|
|
6764
|
+
displayName?: Maybe<Scalars['String']>;
|
|
6765
|
+
type?: Maybe<DevOpsDocumentType>;
|
|
6766
|
+
url?: Maybe<Scalars['URL']>;
|
|
6767
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
6768
|
+
createdBy?: Maybe<User>;
|
|
6769
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
6770
|
+
lastUpdatedBy?: Maybe<User>;
|
|
6771
|
+
collaborators?: Maybe<Array<Maybe<User>>>;
|
|
6772
|
+
byteSize?: Maybe<Scalars['Long']>;
|
|
6773
|
+
exportLinks?: Maybe<Array<Maybe<DevOpsDocumentExportLink>>>;
|
|
6774
|
+
hasChildren?: Maybe<Scalars['Boolean']>;
|
|
6775
|
+
};
|
|
6754
6776
|
export declare type DevOpsDocumentExportLink = {
|
|
6755
6777
|
__typename?: 'DevOpsDocumentExportLink';
|
|
6756
6778
|
mimeType?: Maybe<Scalars['String']>;
|
|
@@ -7978,7 +8000,8 @@ export declare type EstimationConfig = {
|
|
|
7978
8000
|
export declare enum EstimationType {
|
|
7979
8001
|
StoryPoints = "STORY_POINTS",
|
|
7980
8002
|
OriginalEstimate = "ORIGINAL_ESTIMATE",
|
|
7981
|
-
IssueCount = "ISSUE_COUNT"
|
|
8003
|
+
IssueCount = "ISSUE_COUNT",
|
|
8004
|
+
CustomNumberField = "CUSTOM_NUMBER_FIELD"
|
|
7982
8005
|
}
|
|
7983
8006
|
export declare enum EventKnownAvIs {
|
|
7984
8007
|
AviJiraIssueCreated = "AVI_JIRA_ISSUE_CREATED",
|
|
@@ -8792,7 +8815,7 @@ export declare type GraphJiraDeploymentEdge = {
|
|
|
8792
8815
|
export declare type GraphJiraDocument = Node & {
|
|
8793
8816
|
__typename?: 'GraphJiraDocument';
|
|
8794
8817
|
id: Scalars['ID'];
|
|
8795
|
-
document?: Maybe<
|
|
8818
|
+
document?: Maybe<DevOpsDocumentDetails>;
|
|
8796
8819
|
};
|
|
8797
8820
|
export declare type GraphJiraDocumentConnection = {
|
|
8798
8821
|
__typename?: 'GraphJiraDocumentConnection';
|
|
@@ -9774,6 +9797,10 @@ export declare type IssueDevOpsTestSummary = {
|
|
|
9774
9797
|
export declare type JiraAdf = {
|
|
9775
9798
|
__typename?: 'JiraADF';
|
|
9776
9799
|
json?: Maybe<Scalars['JSON']>;
|
|
9800
|
+
convertedPlainText?: Maybe<JiraAdfToConvertedPlainText>;
|
|
9801
|
+
};
|
|
9802
|
+
export declare type JiraAdfConvertedPlainTextArgs = {
|
|
9803
|
+
firstNCharacters?: Maybe<Scalars['Int']>;
|
|
9777
9804
|
};
|
|
9778
9805
|
export declare enum JiraActionType {
|
|
9779
9806
|
CreateProject = "CREATE_PROJECT",
|
|
@@ -9806,6 +9833,11 @@ export declare type JiraAddRelatedWorkToVersionPayload = Payload & {
|
|
|
9806
9833
|
relatedWorkEdge?: Maybe<JiraVersionRelatedWorkEdge>;
|
|
9807
9834
|
relatedWorkV2Edge?: Maybe<JiraVersionRelatedWorkV2Edge>;
|
|
9808
9835
|
};
|
|
9836
|
+
export declare type JiraAdfToConvertedPlainText = {
|
|
9837
|
+
__typename?: 'JiraAdfToConvertedPlainText';
|
|
9838
|
+
plainText?: Maybe<Scalars['String']>;
|
|
9839
|
+
isTruncated?: Maybe<Scalars['Boolean']>;
|
|
9840
|
+
};
|
|
9809
9841
|
export declare type JiraAffectedService = {
|
|
9810
9842
|
__typename?: 'JiraAffectedService';
|
|
9811
9843
|
serviceId: Scalars['ID'];
|
|
@@ -13207,6 +13239,11 @@ export declare type JiraMutationUpdateProjectShortcutArgs = {
|
|
|
13207
13239
|
export declare type JiraMutationDeleteProjectShortcutArgs = {
|
|
13208
13240
|
input: JiraDeleteShortcutInput;
|
|
13209
13241
|
};
|
|
13242
|
+
export declare type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload = Payload & {
|
|
13243
|
+
__typename?: 'JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload';
|
|
13244
|
+
success: Scalars['Boolean'];
|
|
13245
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13246
|
+
};
|
|
13210
13247
|
export declare type JiraNaturalLanguageToJqlInput = {
|
|
13211
13248
|
naturalLanguageInput: Scalars['String'];
|
|
13212
13249
|
iteration?: Maybe<JiraIteration>;
|
|
@@ -13811,6 +13848,7 @@ export declare type JiraProject = Node & {
|
|
|
13811
13848
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
13812
13849
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
13813
13850
|
suggestedDriversForJiraVersion?: Maybe<JiraVersionDriverConnection>;
|
|
13851
|
+
suggestedApproversForJiraVersion?: Maybe<JiraVersionSuggestedApproverConnection>;
|
|
13814
13852
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
13815
13853
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
13816
13854
|
};
|
|
@@ -13880,6 +13918,10 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
|
13880
13918
|
export declare type JiraProjectSuggestedDriversForJiraVersionArgs = {
|
|
13881
13919
|
searchText?: Maybe<Scalars['String']>;
|
|
13882
13920
|
};
|
|
13921
|
+
export declare type JiraProjectSuggestedApproversForJiraVersionArgs = {
|
|
13922
|
+
searchText?: Maybe<Scalars['String']>;
|
|
13923
|
+
excludedAccountIds?: Maybe<Array<Scalars['String']>>;
|
|
13924
|
+
};
|
|
13883
13925
|
export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
13884
13926
|
first?: Maybe<Scalars['Int']>;
|
|
13885
13927
|
after?: Maybe<Scalars['String']>;
|
|
@@ -14268,6 +14310,7 @@ export declare type JiraQuery = {
|
|
|
14268
14310
|
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
14269
14311
|
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
14270
14312
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
14313
|
+
isNaturalLanguageSearchEnabled?: Maybe<Scalars['Boolean']>;
|
|
14271
14314
|
permission?: Maybe<JiraPermission>;
|
|
14272
14315
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
14273
14316
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -14441,6 +14484,9 @@ export declare type JiraQueryNaturalLanguageToJqlArgs = {
|
|
|
14441
14484
|
cloudId: Scalars['ID'];
|
|
14442
14485
|
input: JiraNaturalLanguageToJqlInput;
|
|
14443
14486
|
};
|
|
14487
|
+
export declare type JiraQueryIsNaturalLanguageSearchEnabledArgs = {
|
|
14488
|
+
cloudId: Scalars['ID'];
|
|
14489
|
+
};
|
|
14444
14490
|
export declare type JiraQueryPermissionArgs = {
|
|
14445
14491
|
cloudId: Scalars['ID'];
|
|
14446
14492
|
type: JiraPermissionType;
|
|
@@ -15265,6 +15311,7 @@ export declare type JiraServiceManagementCreateRequestTypeFromTemplateRequestTyp
|
|
|
15265
15311
|
export declare type JiraServiceManagementCreateRequestTypeFromTemplateResult = Payload & {
|
|
15266
15312
|
__typename?: 'JiraServiceManagementCreateRequestTypeFromTemplateResult';
|
|
15267
15313
|
clientMutationId: Scalars['String'];
|
|
15314
|
+
result?: Maybe<JiraServiceManagementRequestType>;
|
|
15268
15315
|
success: Scalars['Boolean'];
|
|
15269
15316
|
errors?: Maybe<Array<MutationError>>;
|
|
15270
15317
|
};
|
|
@@ -16431,6 +16478,7 @@ export declare type JiraUserPreferences = {
|
|
|
16431
16478
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
16432
16479
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
16433
16480
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
16481
|
+
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']>;
|
|
16434
16482
|
};
|
|
16435
16483
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
16436
16484
|
projectKey: Scalars['String'];
|
|
@@ -16439,6 +16487,7 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
16439
16487
|
__typename?: 'JiraUserPreferencesMutation';
|
|
16440
16488
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
16441
16489
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
16490
|
+
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
16442
16491
|
};
|
|
16443
16492
|
export declare type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
16444
16493
|
searchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
@@ -16446,6 +16495,9 @@ export declare type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
|
16446
16495
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
16447
16496
|
searchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
16448
16497
|
};
|
|
16498
|
+
export declare type JiraUserPreferencesMutationSetNaturalLanguageSpotlightTourEnabledArgs = {
|
|
16499
|
+
isEnabled: Scalars['Boolean'];
|
|
16500
|
+
};
|
|
16449
16501
|
export declare type JiraUserSegmentation = {
|
|
16450
16502
|
__typename?: 'JiraUserSegmentation';
|
|
16451
16503
|
role?: Maybe<Scalars['String']>;
|
|
@@ -16791,6 +16843,16 @@ export declare enum JiraVersionStatus {
|
|
|
16791
16843
|
Unreleased = "UNRELEASED",
|
|
16792
16844
|
Archived = "ARCHIVED"
|
|
16793
16845
|
}
|
|
16846
|
+
export declare type JiraVersionSuggestedApproverConnection = {
|
|
16847
|
+
__typename?: 'JiraVersionSuggestedApproverConnection';
|
|
16848
|
+
pageInfo: PageInfo;
|
|
16849
|
+
edges?: Maybe<Array<Maybe<JiraVersionSuggestedApproverEdge>>>;
|
|
16850
|
+
};
|
|
16851
|
+
export declare type JiraVersionSuggestedApproverEdge = {
|
|
16852
|
+
__typename?: 'JiraVersionSuggestedApproverEdge';
|
|
16853
|
+
node?: Maybe<User>;
|
|
16854
|
+
cursor: Scalars['String'];
|
|
16855
|
+
};
|
|
16794
16856
|
export declare type JiraVersionUpdateMutationInput = {
|
|
16795
16857
|
id: Scalars['ID'];
|
|
16796
16858
|
name: Scalars['String'];
|
|
@@ -23628,6 +23690,7 @@ export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
|
23628
23690
|
export declare type Toolchain = {
|
|
23629
23691
|
__typename?: 'Toolchain';
|
|
23630
23692
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
23693
|
+
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
23631
23694
|
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
23632
23695
|
};
|
|
23633
23696
|
export declare type ToolchainContainersArgs = {
|
|
@@ -23638,6 +23701,13 @@ export declare type ToolchainContainersArgs = {
|
|
|
23638
23701
|
first?: Maybe<Scalars['Int']>;
|
|
23639
23702
|
after?: Maybe<Scalars['String']>;
|
|
23640
23703
|
};
|
|
23704
|
+
export declare type ToolchainWorkspacesArgs = {
|
|
23705
|
+
cloudId: Scalars['ID'];
|
|
23706
|
+
providerId: Scalars['String'];
|
|
23707
|
+
query?: Maybe<Scalars['String']>;
|
|
23708
|
+
first?: Maybe<Scalars['Int']>;
|
|
23709
|
+
after?: Maybe<Scalars['String']>;
|
|
23710
|
+
};
|
|
23641
23711
|
export declare type ToolchainSyncStatusArgs = {
|
|
23642
23712
|
cloudId: Scalars['ID'];
|
|
23643
23713
|
providerId: Scalars['String'];
|
|
@@ -23660,7 +23730,7 @@ export declare type ToolchainAssociateContainersPayload = Payload & {
|
|
|
23660
23730
|
errors?: Maybe<Array<MutationError>>;
|
|
23661
23731
|
containers?: Maybe<Array<ToolchainAssociatedContainer>>;
|
|
23662
23732
|
};
|
|
23663
|
-
export declare type ToolchainAssociatedContainer =
|
|
23733
|
+
export declare type ToolchainAssociatedContainer = DevOpsDocumentDetails;
|
|
23664
23734
|
export declare type ToolchainContainer = Node & {
|
|
23665
23735
|
__typename?: 'ToolchainContainer';
|
|
23666
23736
|
id: Scalars['ID'];
|
|
@@ -23727,6 +23797,23 @@ export declare type ToolchainSyncStatus = {
|
|
|
23727
23797
|
__typename?: 'ToolchainSyncStatus';
|
|
23728
23798
|
state: ToolchainSyncState;
|
|
23729
23799
|
};
|
|
23800
|
+
export declare type ToolchainWorkspace = Node & {
|
|
23801
|
+
__typename?: 'ToolchainWorkspace';
|
|
23802
|
+
id: Scalars['ID'];
|
|
23803
|
+
name: Scalars['String'];
|
|
23804
|
+
canCreateContainer: Scalars['Boolean'];
|
|
23805
|
+
};
|
|
23806
|
+
export declare type ToolchainWorkspaceConnection = {
|
|
23807
|
+
__typename?: 'ToolchainWorkspaceConnection';
|
|
23808
|
+
edges?: Maybe<Array<Maybe<ToolchainWorkspaceEdge>>>;
|
|
23809
|
+
nodes?: Maybe<Array<Maybe<ToolchainWorkspace>>>;
|
|
23810
|
+
pageInfo: PageInfo;
|
|
23811
|
+
};
|
|
23812
|
+
export declare type ToolchainWorkspaceEdge = {
|
|
23813
|
+
__typename?: 'ToolchainWorkspaceEdge';
|
|
23814
|
+
cursor: Scalars['String'];
|
|
23815
|
+
node?: Maybe<ToolchainWorkspace>;
|
|
23816
|
+
};
|
|
23730
23817
|
export declare type TownsquareComment = Node & {
|
|
23731
23818
|
__typename?: 'TownsquareComment';
|
|
23732
23819
|
creator?: Maybe<User>;
|
|
@@ -25342,9 +25429,11 @@ export declare type VirtualAgentMutationApiUpdateChatChannelArgs = {
|
|
|
25342
25429
|
export declare type VirtualAgentProperties = {
|
|
25343
25430
|
__typename?: 'VirtualAgentProperties';
|
|
25344
25431
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
|
|
25432
|
+
isAiResponsesEnabled?: Maybe<Scalars['Boolean']>;
|
|
25345
25433
|
};
|
|
25346
25434
|
export declare type VirtualAgentPropertiesInput = {
|
|
25347
25435
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
|
|
25436
|
+
isAiResponsesEnabled?: Maybe<Scalars['Boolean']>;
|
|
25348
25437
|
};
|
|
25349
25438
|
export declare type VirtualAgentQueryApi = {
|
|
25350
25439
|
__typename?: 'VirtualAgentQueryApi';
|
|
@@ -25391,6 +25480,7 @@ export declare type VirtualAgentSlackChannel = {
|
|
|
25391
25480
|
isVirtualAgentChannel?: Maybe<Scalars['Boolean']>;
|
|
25392
25481
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']>;
|
|
25393
25482
|
channelLink?: Maybe<Scalars['String']>;
|
|
25483
|
+
isAiResponsesChannel?: Maybe<Scalars['Boolean']>;
|
|
25394
25484
|
};
|
|
25395
25485
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
25396
25486
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
@@ -25407,6 +25497,7 @@ export declare type VirtualAgentStatisticsProjection = {
|
|
|
25407
25497
|
export declare type VirtualAgentUpdateChatChannelInput = {
|
|
25408
25498
|
halpChannelId: Scalars['String'];
|
|
25409
25499
|
isVirtualAgentChannel: Scalars['Boolean'];
|
|
25500
|
+
isAiResponsesChannel?: Maybe<Scalars['Boolean']>;
|
|
25410
25501
|
};
|
|
25411
25502
|
export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
|
|
25412
25503
|
__typename?: 'VirtualAgentUpdateChatChannelPayload';
|