@forge/cli-shared 3.12.0 → 3.13.0-next.1
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 +13 -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 +126 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +11 -4
- 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 +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.13.0-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [5d8a7a49]
|
|
8
|
+
- @forge/manifest@4.14.0-next.0
|
|
9
|
+
|
|
10
|
+
## 3.13.0-next.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- e49e46d0: Use default environment from forge settings
|
|
15
|
+
|
|
3
16
|
## 3.12.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -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);
|
|
@@ -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
|
};
|
|
@@ -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",
|
|
@@ -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']>;
|
|
@@ -16488,6 +16540,7 @@ export declare type JiraVersion = Node & {
|
|
|
16488
16540
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
16489
16541
|
relatedWorkV2?: Maybe<JiraVersionRelatedWorkV2Connection>;
|
|
16490
16542
|
suggestedRelatedWorkCategories?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
16543
|
+
approvers?: Maybe<JiraVersionApproverConnection>;
|
|
16491
16544
|
};
|
|
16492
16545
|
export declare type JiraVersionIssuesArgs = {
|
|
16493
16546
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -16552,6 +16605,35 @@ export declare type JiraVersionRelatedWorkV2Args = {
|
|
|
16552
16605
|
last?: Maybe<Scalars['Int']>;
|
|
16553
16606
|
before?: Maybe<Scalars['String']>;
|
|
16554
16607
|
};
|
|
16608
|
+
export declare type JiraVersionApproversArgs = {
|
|
16609
|
+
first?: Maybe<Scalars['Int']>;
|
|
16610
|
+
after?: Maybe<Scalars['String']>;
|
|
16611
|
+
last?: Maybe<Scalars['Int']>;
|
|
16612
|
+
before?: Maybe<Scalars['String']>;
|
|
16613
|
+
};
|
|
16614
|
+
export declare type JiraVersionApprover = Node & {
|
|
16615
|
+
__typename?: 'JiraVersionApprover';
|
|
16616
|
+
id: Scalars['ID'];
|
|
16617
|
+
user?: Maybe<User>;
|
|
16618
|
+
description?: Maybe<Scalars['String']>;
|
|
16619
|
+
declineReason?: Maybe<Scalars['String']>;
|
|
16620
|
+
status?: Maybe<JiraVersionApproverStatus>;
|
|
16621
|
+
};
|
|
16622
|
+
export declare type JiraVersionApproverConnection = {
|
|
16623
|
+
__typename?: 'JiraVersionApproverConnection';
|
|
16624
|
+
pageInfo: PageInfo;
|
|
16625
|
+
edges?: Maybe<Array<Maybe<JiraVersionApproverEdge>>>;
|
|
16626
|
+
};
|
|
16627
|
+
export declare type JiraVersionApproverEdge = {
|
|
16628
|
+
__typename?: 'JiraVersionApproverEdge';
|
|
16629
|
+
node?: Maybe<JiraVersionApprover>;
|
|
16630
|
+
cursor: Scalars['String'];
|
|
16631
|
+
};
|
|
16632
|
+
export declare enum JiraVersionApproverStatus {
|
|
16633
|
+
Pending = "PENDING",
|
|
16634
|
+
Approved = "APPROVED",
|
|
16635
|
+
Declined = "DECLINED"
|
|
16636
|
+
}
|
|
16555
16637
|
export declare type JiraVersionConnectAddonIframeData = {
|
|
16556
16638
|
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
16557
16639
|
appKey?: Maybe<Scalars['String']>;
|
|
@@ -16791,6 +16873,16 @@ export declare enum JiraVersionStatus {
|
|
|
16791
16873
|
Unreleased = "UNRELEASED",
|
|
16792
16874
|
Archived = "ARCHIVED"
|
|
16793
16875
|
}
|
|
16876
|
+
export declare type JiraVersionSuggestedApproverConnection = {
|
|
16877
|
+
__typename?: 'JiraVersionSuggestedApproverConnection';
|
|
16878
|
+
pageInfo: PageInfo;
|
|
16879
|
+
edges?: Maybe<Array<Maybe<JiraVersionSuggestedApproverEdge>>>;
|
|
16880
|
+
};
|
|
16881
|
+
export declare type JiraVersionSuggestedApproverEdge = {
|
|
16882
|
+
__typename?: 'JiraVersionSuggestedApproverEdge';
|
|
16883
|
+
node?: Maybe<User>;
|
|
16884
|
+
cursor: Scalars['String'];
|
|
16885
|
+
};
|
|
16794
16886
|
export declare type JiraVersionUpdateMutationInput = {
|
|
16795
16887
|
id: Scalars['ID'];
|
|
16796
16888
|
name: Scalars['String'];
|
|
@@ -23628,6 +23720,7 @@ export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
|
23628
23720
|
export declare type Toolchain = {
|
|
23629
23721
|
__typename?: 'Toolchain';
|
|
23630
23722
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
23723
|
+
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
23631
23724
|
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
23632
23725
|
};
|
|
23633
23726
|
export declare type ToolchainContainersArgs = {
|
|
@@ -23638,6 +23731,13 @@ export declare type ToolchainContainersArgs = {
|
|
|
23638
23731
|
first?: Maybe<Scalars['Int']>;
|
|
23639
23732
|
after?: Maybe<Scalars['String']>;
|
|
23640
23733
|
};
|
|
23734
|
+
export declare type ToolchainWorkspacesArgs = {
|
|
23735
|
+
cloudId: Scalars['ID'];
|
|
23736
|
+
providerId: Scalars['String'];
|
|
23737
|
+
query?: Maybe<Scalars['String']>;
|
|
23738
|
+
first?: Maybe<Scalars['Int']>;
|
|
23739
|
+
after?: Maybe<Scalars['String']>;
|
|
23740
|
+
};
|
|
23641
23741
|
export declare type ToolchainSyncStatusArgs = {
|
|
23642
23742
|
cloudId: Scalars['ID'];
|
|
23643
23743
|
providerId: Scalars['String'];
|
|
@@ -23727,6 +23827,23 @@ export declare type ToolchainSyncStatus = {
|
|
|
23727
23827
|
__typename?: 'ToolchainSyncStatus';
|
|
23728
23828
|
state: ToolchainSyncState;
|
|
23729
23829
|
};
|
|
23830
|
+
export declare type ToolchainWorkspace = Node & {
|
|
23831
|
+
__typename?: 'ToolchainWorkspace';
|
|
23832
|
+
id: Scalars['ID'];
|
|
23833
|
+
name: Scalars['String'];
|
|
23834
|
+
canCreateContainer: Scalars['Boolean'];
|
|
23835
|
+
};
|
|
23836
|
+
export declare type ToolchainWorkspaceConnection = {
|
|
23837
|
+
__typename?: 'ToolchainWorkspaceConnection';
|
|
23838
|
+
edges?: Maybe<Array<Maybe<ToolchainWorkspaceEdge>>>;
|
|
23839
|
+
nodes?: Maybe<Array<Maybe<ToolchainWorkspace>>>;
|
|
23840
|
+
pageInfo: PageInfo;
|
|
23841
|
+
};
|
|
23842
|
+
export declare type ToolchainWorkspaceEdge = {
|
|
23843
|
+
__typename?: 'ToolchainWorkspaceEdge';
|
|
23844
|
+
cursor: Scalars['String'];
|
|
23845
|
+
node?: Maybe<ToolchainWorkspace>;
|
|
23846
|
+
};
|
|
23730
23847
|
export declare type TownsquareComment = Node & {
|
|
23731
23848
|
__typename?: 'TownsquareComment';
|
|
23732
23849
|
creator?: Maybe<User>;
|
|
@@ -25342,9 +25459,11 @@ export declare type VirtualAgentMutationApiUpdateChatChannelArgs = {
|
|
|
25342
25459
|
export declare type VirtualAgentProperties = {
|
|
25343
25460
|
__typename?: 'VirtualAgentProperties';
|
|
25344
25461
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
|
|
25462
|
+
isAiResponsesEnabled?: Maybe<Scalars['Boolean']>;
|
|
25345
25463
|
};
|
|
25346
25464
|
export declare type VirtualAgentPropertiesInput = {
|
|
25347
25465
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
|
|
25466
|
+
isAiResponsesEnabled?: Maybe<Scalars['Boolean']>;
|
|
25348
25467
|
};
|
|
25349
25468
|
export declare type VirtualAgentQueryApi = {
|
|
25350
25469
|
__typename?: 'VirtualAgentQueryApi';
|
|
@@ -25391,6 +25510,7 @@ export declare type VirtualAgentSlackChannel = {
|
|
|
25391
25510
|
isVirtualAgentChannel?: Maybe<Scalars['Boolean']>;
|
|
25392
25511
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']>;
|
|
25393
25512
|
channelLink?: Maybe<Scalars['String']>;
|
|
25513
|
+
isAiResponsesChannel?: Maybe<Scalars['Boolean']>;
|
|
25394
25514
|
};
|
|
25395
25515
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
25396
25516
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
@@ -25407,6 +25527,7 @@ export declare type VirtualAgentStatisticsProjection = {
|
|
|
25407
25527
|
export declare type VirtualAgentUpdateChatChannelInput = {
|
|
25408
25528
|
halpChannelId: Scalars['String'];
|
|
25409
25529
|
isVirtualAgentChannel: Scalars['Boolean'];
|
|
25530
|
+
isAiResponsesChannel?: Maybe<Scalars['Boolean']>;
|
|
25410
25531
|
};
|
|
25411
25532
|
export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
|
|
25412
25533
|
__typename?: 'VirtualAgentUpdateChatChannelPayload';
|