@forge/cli-shared 3.8.0-next.5 → 3.8.0-next.7
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 +17 -0
- package/out/graphql/app-oauth-client-id-graphql-client.d.ts +18 -0
- package/out/graphql/app-oauth-client-id-graphql-client.d.ts.map +1 -0
- package/out/graphql/app-oauth-client-id-graphql-client.js +44 -0
- package/out/graphql/graphql-types.d.ts +175 -60
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +11 -4
- package/out/graphql/index.d.ts +1 -0
- package/out/graphql/index.d.ts.map +1 -1
- package/out/graphql/index.js +1 -0
- package/out/service/feature-flag-service.d.ts +2 -0
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +4 -0
- package/out/ui/text.d.ts +23 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +24 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.8.0-next.7
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9614f64: Add warning to Forge linter for scopes that require interactive user consent
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [9614f64]
|
|
12
|
+
- @forge/manifest@4.8.0-next.3
|
|
13
|
+
|
|
14
|
+
## 3.8.0-next.6
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 149ebb5: Introduced command to list custom entities indexes
|
|
19
|
+
|
|
3
20
|
## 3.8.0-next.5
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AppEnvironmentType, GraphQLClient } from './index';
|
|
2
|
+
export interface AppOauthClientDetails {
|
|
3
|
+
appAri: string;
|
|
4
|
+
name: string;
|
|
5
|
+
environmentType: AppEnvironmentType;
|
|
6
|
+
environmentKey: string;
|
|
7
|
+
oauthClientId: string;
|
|
8
|
+
environmentId: string;
|
|
9
|
+
}
|
|
10
|
+
export interface AppOauthClientIdClient {
|
|
11
|
+
getAppOauthClientIdDetails: (appId: string, environmentKey: string) => Promise<AppOauthClientDetails>;
|
|
12
|
+
}
|
|
13
|
+
export declare class AppOauthClientGraphqlClient implements AppOauthClientIdClient {
|
|
14
|
+
private readonly graphqlClient;
|
|
15
|
+
constructor(graphqlClient: GraphQLClient);
|
|
16
|
+
getAppOauthClientIdDetails(appAri: string, environmentKey: string): Promise<AppOauthClientDetails>;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=app-oauth-client-id-graphql-client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-oauth-client-id-graphql-client.d.ts","sourceRoot":"","sources":["../../src/graphql/app-oauth-client-id-graphql-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,aAAa,EAA+C,MAAM,SAAS,CAAC;AAEzG,MAAM,WAAW,qBAAqB;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,eAAe,EAAE,kBAAkB,CAAC;IACpC,cAAc,EAAE,MAAM,CAAC;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,sBAAsB;IACrC,0BAA0B,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,KAAK,OAAO,CAAC,qBAAqB,CAAC,CAAC;CACvG;AAED,qBAAa,2BAA4B,YAAW,sBAAsB;IAC5D,OAAO,CAAC,QAAQ,CAAC,aAAa;gBAAb,aAAa,EAAE,aAAa;IAE5C,0BAA0B,CAAC,MAAM,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,qBAAqB,CAAC;CAsChH"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AppOauthClientGraphqlClient = void 0;
|
|
4
|
+
const index_1 = require("./index");
|
|
5
|
+
class AppOauthClientGraphqlClient {
|
|
6
|
+
constructor(graphqlClient) {
|
|
7
|
+
this.graphqlClient = graphqlClient;
|
|
8
|
+
}
|
|
9
|
+
async getAppOauthClientIdDetails(appAri, environmentKey) {
|
|
10
|
+
const query = `
|
|
11
|
+
query forge_cli_getAppOauthClientIdDetails($id: ID!, $key: String!) {
|
|
12
|
+
app(id: $id) {
|
|
13
|
+
name
|
|
14
|
+
environmentByKey(key: $key) {
|
|
15
|
+
id
|
|
16
|
+
type
|
|
17
|
+
oauthClient {
|
|
18
|
+
clientID
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
`;
|
|
24
|
+
const result = await this.graphqlClient.query(query, {
|
|
25
|
+
id: appAri,
|
|
26
|
+
key: environmentKey
|
|
27
|
+
});
|
|
28
|
+
if (!result.app) {
|
|
29
|
+
throw new index_1.MissingAppError();
|
|
30
|
+
}
|
|
31
|
+
if (!result.app.environmentByKey) {
|
|
32
|
+
throw new index_1.MissingAppEnvironmentError(environmentKey);
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
name: result.app.name,
|
|
36
|
+
appAri,
|
|
37
|
+
environmentKey,
|
|
38
|
+
environmentType: result.app.environmentByKey.type,
|
|
39
|
+
environmentId: result.app.environmentByKey.id,
|
|
40
|
+
oauthClientId: result.app.environmentByKey.oauthClient.clientID
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.AppOauthClientGraphqlClient = AppOauthClientGraphqlClient;
|
|
@@ -5353,12 +5353,6 @@ export declare type CreateJiraProjectAndRepositoryRelationshipPayload = Payload
|
|
|
5353
5353
|
errors?: Maybe<Array<MutationError>>;
|
|
5354
5354
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
5355
5355
|
};
|
|
5356
|
-
export declare type CreatePolarisAnonymousVisitorHashPayload = Payload & {
|
|
5357
|
-
__typename?: 'CreatePolarisAnonymousVisitorHashPayload';
|
|
5358
|
-
success: Scalars['Boolean'];
|
|
5359
|
-
errors?: Maybe<Array<MutationError>>;
|
|
5360
|
-
node?: Maybe<PolarisAnonymousVisitorHash>;
|
|
5361
|
-
};
|
|
5362
5356
|
export declare type CreatePolarisCalculatedField = {
|
|
5363
5357
|
project: Scalars['ID'];
|
|
5364
5358
|
label: Scalars['String'];
|
|
@@ -5981,11 +5975,6 @@ export declare type DeleteJiraProjectAndRepositoryRelationshipPayload = Payload
|
|
|
5981
5975
|
success: Scalars['Boolean'];
|
|
5982
5976
|
errors?: Maybe<Array<MutationError>>;
|
|
5983
5977
|
};
|
|
5984
|
-
export declare type DeletePolarisAnonymousVisitorHashPayload = Payload & {
|
|
5985
|
-
__typename?: 'DeletePolarisAnonymousVisitorHashPayload';
|
|
5986
|
-
success: Scalars['Boolean'];
|
|
5987
|
-
errors?: Maybe<Array<MutationError>>;
|
|
5988
|
-
};
|
|
5989
5978
|
export declare type DeletePolarisDecorationInput = {
|
|
5990
5979
|
emoji?: Maybe<Scalars['Boolean']>;
|
|
5991
5980
|
backgroundColor?: Maybe<Scalars['Boolean']>;
|
|
@@ -7325,6 +7314,7 @@ export declare type EcosystemQuery = {
|
|
|
7325
7314
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
7326
7315
|
appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
|
|
7327
7316
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
7317
|
+
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
7328
7318
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
7329
7319
|
};
|
|
7330
7320
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -7362,6 +7352,9 @@ export declare type EcosystemQueryAppEnvironmentsByOAuthClientIdsArgs = {
|
|
|
7362
7352
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
7363
7353
|
appId: Scalars['ID'];
|
|
7364
7354
|
};
|
|
7355
|
+
export declare type EcosystemQueryForgeAuditLogsArgs = {
|
|
7356
|
+
appId: Scalars['ID'];
|
|
7357
|
+
};
|
|
7365
7358
|
export declare type EcosystemQueryForgeAlertsArgs = {
|
|
7366
7359
|
appId: Scalars['ID'];
|
|
7367
7360
|
};
|
|
@@ -7656,6 +7649,46 @@ export declare type ForgeAlertsUpdateConfigInput = {
|
|
|
7656
7649
|
alertName?: Maybe<Scalars['String']>;
|
|
7657
7650
|
triggerValue?: Maybe<Scalars['Float']>;
|
|
7658
7651
|
};
|
|
7652
|
+
export declare type ForgeAuditLog = {
|
|
7653
|
+
__typename?: 'ForgeAuditLog';
|
|
7654
|
+
action: ForgeAuditLogsActionType;
|
|
7655
|
+
actorId: Scalars['ID'];
|
|
7656
|
+
actorName: Scalars['String'];
|
|
7657
|
+
contributor?: Maybe<User>;
|
|
7658
|
+
timestamp: Scalars['String'];
|
|
7659
|
+
};
|
|
7660
|
+
export declare type ForgeAuditLogEdge = {
|
|
7661
|
+
__typename?: 'ForgeAuditLogEdge';
|
|
7662
|
+
cursor: Scalars['String'];
|
|
7663
|
+
node?: Maybe<ForgeAuditLog>;
|
|
7664
|
+
};
|
|
7665
|
+
export declare enum ForgeAuditLogsActionType {
|
|
7666
|
+
ContributorAdded = "CONTRIBUTOR_ADDED",
|
|
7667
|
+
ContributorRemoved = "CONTRIBUTOR_REMOVED"
|
|
7668
|
+
}
|
|
7669
|
+
export declare type ForgeAuditLogsConnection = {
|
|
7670
|
+
__typename?: 'ForgeAuditLogsConnection';
|
|
7671
|
+
edges: Array<ForgeAuditLogEdge>;
|
|
7672
|
+
nodes: Array<ForgeAuditLog>;
|
|
7673
|
+
pageInfo: PageInfo;
|
|
7674
|
+
};
|
|
7675
|
+
export declare type ForgeAuditLogsQuery = {
|
|
7676
|
+
__typename?: 'ForgeAuditLogsQuery';
|
|
7677
|
+
appId: Scalars['ID'];
|
|
7678
|
+
auditLogs?: Maybe<ForgeAuditLogsResult>;
|
|
7679
|
+
};
|
|
7680
|
+
export declare type ForgeAuditLogsQueryAuditLogsArgs = {
|
|
7681
|
+
input: ForgeAuditLogsQueryInput;
|
|
7682
|
+
};
|
|
7683
|
+
export declare type ForgeAuditLogsQueryInput = {
|
|
7684
|
+
startTime?: Maybe<Scalars['String']>;
|
|
7685
|
+
endTime?: Maybe<Scalars['String']>;
|
|
7686
|
+
contributorIds?: Maybe<Array<Scalars['ID']>>;
|
|
7687
|
+
actions?: Maybe<Array<ForgeAuditLogsActionType>>;
|
|
7688
|
+
after?: Maybe<Scalars['String']>;
|
|
7689
|
+
first?: Maybe<Scalars['Int']>;
|
|
7690
|
+
};
|
|
7691
|
+
export declare type ForgeAuditLogsResult = ForgeAuditLogsConnection | QueryError;
|
|
7659
7692
|
export declare type ForgeContextToken = {
|
|
7660
7693
|
__typename?: 'ForgeContextToken';
|
|
7661
7694
|
jwt: Scalars['String'];
|
|
@@ -11293,6 +11326,7 @@ export declare type JiraJqlField = {
|
|
|
11293
11326
|
__typename?: 'JiraJqlField';
|
|
11294
11327
|
jqlTerm: Scalars['ID'];
|
|
11295
11328
|
displayName?: Maybe<Scalars['String']>;
|
|
11329
|
+
type?: Maybe<Scalars['String']>;
|
|
11296
11330
|
dataTypes?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
11297
11331
|
allowedClauseTypes: Array<JiraJqlClauseType>;
|
|
11298
11332
|
operators: Array<JiraJqlOperator>;
|
|
@@ -11870,7 +11904,11 @@ export declare type JiraMutation = {
|
|
|
11870
11904
|
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
11871
11905
|
updateVersionStartDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11872
11906
|
updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11907
|
+
updateVersionReleasedStatus?: Maybe<JiraUpdateVersionPayload>;
|
|
11908
|
+
updateVersionArchivedStatus?: Maybe<JiraUpdateVersionPayload>;
|
|
11873
11909
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
11910
|
+
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
11911
|
+
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
11874
11912
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
11875
11913
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
11876
11914
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
@@ -11942,9 +11980,21 @@ export declare type JiraMutationUpdateVersionStartDateArgs = {
|
|
|
11942
11980
|
export declare type JiraMutationUpdateVersionReleaseDateArgs = {
|
|
11943
11981
|
input: JiraUpdateVersionReleaseDateInput;
|
|
11944
11982
|
};
|
|
11983
|
+
export declare type JiraMutationUpdateVersionReleasedStatusArgs = {
|
|
11984
|
+
input: JiraUpdateVersionReleasedStatusInput;
|
|
11985
|
+
};
|
|
11986
|
+
export declare type JiraMutationUpdateVersionArchivedStatusArgs = {
|
|
11987
|
+
input: JiraUpdateVersionArchivedStatusInput;
|
|
11988
|
+
};
|
|
11945
11989
|
export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
|
|
11946
11990
|
input: JiraVersionIssueTableColumnHiddenStateInput;
|
|
11947
11991
|
};
|
|
11992
|
+
export declare type JiraMutationCreateJiraVersionArgs = {
|
|
11993
|
+
input: JiraVersionCreateMutationInput;
|
|
11994
|
+
};
|
|
11995
|
+
export declare type JiraMutationUpdateJiraVersionArgs = {
|
|
11996
|
+
input: JiraVersionUpdateMutationInput;
|
|
11997
|
+
};
|
|
11948
11998
|
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
11949
11999
|
id: Scalars['ID'];
|
|
11950
12000
|
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
@@ -12496,7 +12546,8 @@ export declare enum JiraPermissionTagEnum {
|
|
|
12496
12546
|
New = "NEW"
|
|
12497
12547
|
}
|
|
12498
12548
|
export declare enum JiraPermissionType {
|
|
12499
|
-
BrowseProjects = "BROWSE_PROJECTS"
|
|
12549
|
+
BrowseProjects = "BROWSE_PROJECTS",
|
|
12550
|
+
BulkChange = "BULK_CHANGE"
|
|
12500
12551
|
}
|
|
12501
12552
|
export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
12502
12553
|
__typename?: 'JiraPlatformAttachment';
|
|
@@ -12614,6 +12665,7 @@ export declare type JiraProject = Node & {
|
|
|
12614
12665
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
12615
12666
|
action?: Maybe<JiraProjectAction>;
|
|
12616
12667
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
12668
|
+
virtualAgentProjectSettings?: Maybe<VirtualAgentProjectSettingsResult>;
|
|
12617
12669
|
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
12618
12670
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
12619
12671
|
lead?: Maybe<User>;
|
|
@@ -13085,6 +13137,7 @@ export declare type JiraQuery = {
|
|
|
13085
13137
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
13086
13138
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
13087
13139
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
13140
|
+
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
13088
13141
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
13089
13142
|
filter?: Maybe<JiraFilter>;
|
|
13090
13143
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
@@ -13267,6 +13320,9 @@ export declare type JiraQueryResourceUsageMetricsArgs = {
|
|
|
13267
13320
|
export declare type JiraQueryUserPreferencesArgs = {
|
|
13268
13321
|
cloudId: Scalars['ID'];
|
|
13269
13322
|
};
|
|
13323
|
+
export declare type JiraQueryJsmProjectTeamTypeArgs = {
|
|
13324
|
+
projectId: Scalars['ID'];
|
|
13325
|
+
};
|
|
13270
13326
|
export declare type JiraQueryTimeTrackingSettingsArgs = {
|
|
13271
13327
|
cloudId: Scalars['ID'];
|
|
13272
13328
|
};
|
|
@@ -14261,6 +14317,10 @@ export declare type JiraServiceManagementProjectNavigationMetadata = {
|
|
|
14261
14317
|
queueId: Scalars['ID'];
|
|
14262
14318
|
queueName: Scalars['String'];
|
|
14263
14319
|
};
|
|
14320
|
+
export declare type JiraServiceManagementProjectTeamType = {
|
|
14321
|
+
__typename?: 'JiraServiceManagementProjectTeamType';
|
|
14322
|
+
teamType?: Maybe<Scalars['String']>;
|
|
14323
|
+
};
|
|
14264
14324
|
export declare type JiraServiceManagementRequestFeedbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
14265
14325
|
__typename?: 'JiraServiceManagementRequestFeedbackField';
|
|
14266
14326
|
id: Scalars['ID'];
|
|
@@ -15064,6 +15124,10 @@ export declare type JiraUpdateUrlFieldInput = {
|
|
|
15064
15124
|
id: Scalars['ID'];
|
|
15065
15125
|
operation: JiraUrlFieldOperationInput;
|
|
15066
15126
|
};
|
|
15127
|
+
export declare type JiraUpdateVersionArchivedStatusInput = {
|
|
15128
|
+
id: Scalars['ID'];
|
|
15129
|
+
isArchived: Scalars['Boolean'];
|
|
15130
|
+
};
|
|
15067
15131
|
export declare type JiraUpdateVersionDescriptionInput = {
|
|
15068
15132
|
id: Scalars['ID'];
|
|
15069
15133
|
description?: Maybe<Scalars['String']>;
|
|
@@ -15095,6 +15159,10 @@ export declare type JiraUpdateVersionReleaseDateInput = {
|
|
|
15095
15159
|
id: Scalars['ID'];
|
|
15096
15160
|
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
15097
15161
|
};
|
|
15162
|
+
export declare type JiraUpdateVersionReleasedStatusInput = {
|
|
15163
|
+
id: Scalars['ID'];
|
|
15164
|
+
isReleased: Scalars['Boolean'];
|
|
15165
|
+
};
|
|
15098
15166
|
export declare type JiraUpdateVersionStartDateInput = {
|
|
15099
15167
|
id: Scalars['ID'];
|
|
15100
15168
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -15237,6 +15305,7 @@ export declare type JiraVersion = Node & {
|
|
|
15237
15305
|
epicsForFilter?: Maybe<JiraIssueConnection>;
|
|
15238
15306
|
canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
|
|
15239
15307
|
warningsCount?: Maybe<Scalars['Long']>;
|
|
15308
|
+
contributors?: Maybe<JiraVersionContributorConnection>;
|
|
15240
15309
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
15241
15310
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
15242
15311
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
@@ -15278,6 +15347,12 @@ export declare type JiraVersionReleaseNotesArgs = {
|
|
|
15278
15347
|
export declare type JiraVersionEpicsForFilterArgs = {
|
|
15279
15348
|
searchStr?: Maybe<Scalars['String']>;
|
|
15280
15349
|
};
|
|
15350
|
+
export declare type JiraVersionContributorsArgs = {
|
|
15351
|
+
first?: Maybe<Scalars['Int']>;
|
|
15352
|
+
after?: Maybe<Scalars['String']>;
|
|
15353
|
+
last?: Maybe<Scalars['Int']>;
|
|
15354
|
+
before?: Maybe<Scalars['String']>;
|
|
15355
|
+
};
|
|
15281
15356
|
export declare type JiraVersionAvailableSitesArgs = {
|
|
15282
15357
|
first?: Maybe<Scalars['Int']>;
|
|
15283
15358
|
after?: Maybe<Scalars['String']>;
|
|
@@ -15312,6 +15387,24 @@ export declare type JiraVersionConnection = {
|
|
|
15312
15387
|
edges?: Maybe<Array<Maybe<JiraVersionEdge>>>;
|
|
15313
15388
|
errors?: Maybe<Array<QueryError>>;
|
|
15314
15389
|
};
|
|
15390
|
+
export declare type JiraVersionContributorConnection = {
|
|
15391
|
+
__typename?: 'JiraVersionContributorConnection';
|
|
15392
|
+
pageInfo: PageInfo;
|
|
15393
|
+
edges?: Maybe<Array<Maybe<JiraVersionContributorEdge>>>;
|
|
15394
|
+
};
|
|
15395
|
+
export declare type JiraVersionContributorEdge = {
|
|
15396
|
+
__typename?: 'JiraVersionContributorEdge';
|
|
15397
|
+
node?: Maybe<User>;
|
|
15398
|
+
cursor: Scalars['String'];
|
|
15399
|
+
};
|
|
15400
|
+
export declare type JiraVersionCreateMutationInput = {
|
|
15401
|
+
projectId: Scalars['ID'];
|
|
15402
|
+
name: Scalars['String'];
|
|
15403
|
+
description?: Maybe<Scalars['String']>;
|
|
15404
|
+
startDate?: Maybe<Scalars['DateTime']>;
|
|
15405
|
+
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
15406
|
+
driver?: Maybe<Scalars['ID']>;
|
|
15407
|
+
};
|
|
15315
15408
|
export declare type JiraVersionDetailPage = {
|
|
15316
15409
|
__typename?: 'JiraVersionDetailPage';
|
|
15317
15410
|
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
@@ -15474,6 +15567,14 @@ export declare enum JiraVersionStatus {
|
|
|
15474
15567
|
Unreleased = "UNRELEASED",
|
|
15475
15568
|
Archived = "ARCHIVED"
|
|
15476
15569
|
}
|
|
15570
|
+
export declare type JiraVersionUpdateMutationInput = {
|
|
15571
|
+
id: Scalars['ID'];
|
|
15572
|
+
name: Scalars['String'];
|
|
15573
|
+
description?: Maybe<Scalars['String']>;
|
|
15574
|
+
startDate?: Maybe<Scalars['DateTime']>;
|
|
15575
|
+
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
15576
|
+
driver?: Maybe<Scalars['ID']>;
|
|
15577
|
+
};
|
|
15477
15578
|
export declare type JiraVersionUpdatedWarningConfigInput = {
|
|
15478
15579
|
isOpenPullRequestEnabled?: Maybe<Scalars['Boolean']>;
|
|
15479
15580
|
isOpenReviewEnabled?: Maybe<Scalars['Boolean']>;
|
|
@@ -16286,8 +16387,6 @@ export declare type Mutation = {
|
|
|
16286
16387
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
16287
16388
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
16288
16389
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
16289
|
-
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
16290
|
-
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
16291
16390
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
16292
16391
|
invokePolarisObject?: Maybe<InvokePolarisObjectPayload>;
|
|
16293
16392
|
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
@@ -16519,12 +16618,6 @@ export declare type MutationDeleteJiraProjectAndRepositoryRelationshipArgs = {
|
|
|
16519
16618
|
export declare type MutationUpdatePolarisTermsConsentArgs = {
|
|
16520
16619
|
input: UpdatePolarisTermsConsentInput;
|
|
16521
16620
|
};
|
|
16522
|
-
export declare type MutationCreatePolarisAnonymousVisitorHashArgs = {
|
|
16523
|
-
id: Scalars['ID'];
|
|
16524
|
-
};
|
|
16525
|
-
export declare type MutationDeletePolarisAnonymousVisitorHashArgs = {
|
|
16526
|
-
hash: Scalars['String'];
|
|
16527
|
-
};
|
|
16528
16621
|
export declare type MutationResolvePolarisObjectArgs = {
|
|
16529
16622
|
input: ResolvePolarisObjectInput;
|
|
16530
16623
|
};
|
|
@@ -17452,15 +17545,6 @@ export declare type PolarisAddReactionPayload = Payload & {
|
|
|
17452
17545
|
errors?: Maybe<Array<MutationError>>;
|
|
17453
17546
|
node: Array<PolarisReactionSummary>;
|
|
17454
17547
|
};
|
|
17455
|
-
export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
|
|
17456
|
-
export declare type PolarisAnonymousVisitorViewHash = {
|
|
17457
|
-
__typename?: 'PolarisAnonymousVisitorViewHash';
|
|
17458
|
-
cloudId: Scalars['String'];
|
|
17459
|
-
projectId: Scalars['Int'];
|
|
17460
|
-
projectKey: Scalars['String'];
|
|
17461
|
-
viewId: Scalars['Int'];
|
|
17462
|
-
hash: Scalars['String'];
|
|
17463
|
-
};
|
|
17464
17548
|
export declare type PolarisComment = {
|
|
17465
17549
|
__typename?: 'PolarisComment';
|
|
17466
17550
|
id: Scalars['ID'];
|
|
@@ -18708,7 +18792,6 @@ export declare type Query = {
|
|
|
18708
18792
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
18709
18793
|
polarisProject?: Maybe<PolarisProject>;
|
|
18710
18794
|
polarisView?: Maybe<PolarisView>;
|
|
18711
|
-
polarisAPIVersion?: Maybe<Scalars['String']>;
|
|
18712
18795
|
polarisInsights?: Maybe<Array<PolarisInsight>>;
|
|
18713
18796
|
polarisInsight?: Maybe<PolarisInsight>;
|
|
18714
18797
|
polarisInsightsWithErrors?: Maybe<Array<PolarisInsight>>;
|
|
@@ -18716,11 +18799,7 @@ export declare type Query = {
|
|
|
18716
18799
|
polarisLabels?: Maybe<Array<LabelUsage>>;
|
|
18717
18800
|
polarisTermsConsent?: Maybe<PolarisTermsConsent>;
|
|
18718
18801
|
polarisSnippetPropertiesConfig?: Maybe<PolarisSnippetPropertiesConfig>;
|
|
18719
|
-
polarisIdeas?: Maybe<PolarisIdeas>;
|
|
18720
|
-
polarisAnonymousVisitorHash?: Maybe<PolarisAnonymousVisitorHash>;
|
|
18721
18802
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
18722
|
-
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
18723
|
-
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
18724
18803
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
18725
18804
|
polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
|
|
18726
18805
|
polarisViewArrangementInfo?: Maybe<Scalars['JSON']>;
|
|
@@ -18968,25 +19047,9 @@ export declare type QueryPolarisSnippetPropertiesConfigArgs = {
|
|
|
18968
19047
|
oauthClientId: Scalars['String'];
|
|
18969
19048
|
groupId: Scalars['String'];
|
|
18970
19049
|
};
|
|
18971
|
-
export declare type QueryPolarisIdeasArgs = {
|
|
18972
|
-
project: Scalars['ID'];
|
|
18973
|
-
fieldKeys?: Maybe<Array<Scalars['String']>>;
|
|
18974
|
-
expand?: Maybe<Array<Scalars['String']>>;
|
|
18975
|
-
jql?: Maybe<Scalars['String']>;
|
|
18976
|
-
};
|
|
18977
|
-
export declare type QueryPolarisAnonymousVisitorHashArgs = {
|
|
18978
|
-
hash: Scalars['String'];
|
|
18979
|
-
};
|
|
18980
19050
|
export declare type QueryPolarisCollabTokenArgs = {
|
|
18981
19051
|
viewID: Scalars['ID'];
|
|
18982
19052
|
};
|
|
18983
|
-
export declare type QueryPolarisAnonymousVisitorHashByIdArgs = {
|
|
18984
|
-
id: Scalars['ID'];
|
|
18985
|
-
};
|
|
18986
|
-
export declare type QueryPolarisLinkedDeliveryTicketsArgs = {
|
|
18987
|
-
project: Scalars['ID'];
|
|
18988
|
-
issueIds?: Maybe<Array<Scalars['Int']>>;
|
|
18989
|
-
};
|
|
18990
19053
|
export declare type QueryPolarisIdeaTemplatesArgs = {
|
|
18991
19054
|
project: Scalars['ID'];
|
|
18992
19055
|
};
|
|
@@ -19215,6 +19278,7 @@ export declare enum RateLimitingCurrency {
|
|
|
19215
19278
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
19216
19279
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
19217
19280
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
19281
|
+
ForgeAuditLogsCurrency = "FORGE_AUDIT_LOGS_CURRENCY",
|
|
19218
19282
|
HelpCenterCurrency = "HELP_CENTER_CURRENCY",
|
|
19219
19283
|
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY"
|
|
19220
19284
|
}
|
|
@@ -22378,7 +22442,9 @@ export declare type Toolchain = {
|
|
|
22378
22442
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
22379
22443
|
};
|
|
22380
22444
|
export declare type ToolchainContainersArgs = {
|
|
22381
|
-
|
|
22445
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
22446
|
+
providerId?: Maybe<Scalars['String']>;
|
|
22447
|
+
workspaceId?: Maybe<Scalars['ID']>;
|
|
22382
22448
|
query?: Maybe<Scalars['String']>;
|
|
22383
22449
|
first?: Maybe<Scalars['Int']>;
|
|
22384
22450
|
after?: Maybe<Scalars['String']>;
|
|
@@ -22540,9 +22606,7 @@ export declare type TownsquareQueryApi = {
|
|
|
22540
22606
|
project?: Maybe<TownsquareProject>;
|
|
22541
22607
|
goal?: Maybe<TownsquareGoal>;
|
|
22542
22608
|
projectsByAri?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
22543
|
-
projectByKey?: Maybe<TownsquareProject>;
|
|
22544
22609
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
22545
|
-
goalByKey?: Maybe<TownsquareGoal>;
|
|
22546
22610
|
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
22547
22611
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
22548
22612
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
@@ -22558,15 +22622,9 @@ export declare type TownsquareQueryApiGoalArgs = {
|
|
|
22558
22622
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
22559
22623
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
22560
22624
|
};
|
|
22561
|
-
export declare type TownsquareQueryApiProjectByKeyArgs = {
|
|
22562
|
-
key: Scalars['String'];
|
|
22563
|
-
};
|
|
22564
22625
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
22565
22626
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
22566
22627
|
};
|
|
22567
|
-
export declare type TownsquareQueryApiGoalByKeyArgs = {
|
|
22568
|
-
key: Scalars['String'];
|
|
22569
|
-
};
|
|
22570
22628
|
export declare type TownsquareQueryApiCommentsByAriArgs = {
|
|
22571
22629
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
22572
22630
|
};
|
|
@@ -22649,7 +22707,7 @@ export declare type TrelloBoard = {
|
|
|
22649
22707
|
id: Scalars['ID'];
|
|
22650
22708
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
22651
22709
|
name: Scalars['String'];
|
|
22652
|
-
objectId: Scalars['
|
|
22710
|
+
objectId: Scalars['ID'];
|
|
22653
22711
|
prefs: TrelloBoardPrefs;
|
|
22654
22712
|
shortLink: Scalars['TrelloShortLink'];
|
|
22655
22713
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
@@ -22702,10 +22760,37 @@ export declare type TrelloBoardViewer = {
|
|
|
22702
22760
|
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
22703
22761
|
starred: Scalars['Boolean'];
|
|
22704
22762
|
};
|
|
22763
|
+
export declare type TrelloLimitProps = {
|
|
22764
|
+
__typename?: 'TrelloLimitProps';
|
|
22765
|
+
disableAt: Scalars['Int'];
|
|
22766
|
+
status: Scalars['String'];
|
|
22767
|
+
warnAt: Scalars['Int'];
|
|
22768
|
+
};
|
|
22769
|
+
export declare type TrelloList = {
|
|
22770
|
+
__typename?: 'TrelloList';
|
|
22771
|
+
closed: Scalars['Boolean'];
|
|
22772
|
+
creationMethod: Scalars['String'];
|
|
22773
|
+
id: Scalars['ID'];
|
|
22774
|
+
limits?: Maybe<TrelloListLimits>;
|
|
22775
|
+
name: Scalars['String'];
|
|
22776
|
+
objectId: Scalars['String'];
|
|
22777
|
+
position: Scalars['Int'];
|
|
22778
|
+
softLimit?: Maybe<Scalars['Int']>;
|
|
22779
|
+
};
|
|
22780
|
+
export declare type TrelloListCardLimits = {
|
|
22781
|
+
__typename?: 'TrelloListCardLimits';
|
|
22782
|
+
openPerList?: Maybe<TrelloLimitProps>;
|
|
22783
|
+
totalPerList?: Maybe<TrelloLimitProps>;
|
|
22784
|
+
};
|
|
22785
|
+
export declare type TrelloListLimits = {
|
|
22786
|
+
__typename?: 'TrelloListLimits';
|
|
22787
|
+
cards?: Maybe<TrelloListCardLimits>;
|
|
22788
|
+
};
|
|
22705
22789
|
export declare type TrelloQueryApi = {
|
|
22706
22790
|
__typename?: 'TrelloQueryApi';
|
|
22707
22791
|
board?: Maybe<TrelloBoard>;
|
|
22708
22792
|
echo: Scalars['String'];
|
|
22793
|
+
list?: Maybe<TrelloList>;
|
|
22709
22794
|
recentBoardsByIds: Array<Maybe<TrelloBoard>>;
|
|
22710
22795
|
templateCategories: Array<TrelloTemplateGalleryCategory>;
|
|
22711
22796
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
@@ -22714,6 +22799,9 @@ export declare type TrelloQueryApi = {
|
|
|
22714
22799
|
export declare type TrelloQueryApiBoardArgs = {
|
|
22715
22800
|
id: Scalars['ID'];
|
|
22716
22801
|
};
|
|
22802
|
+
export declare type TrelloQueryApiListArgs = {
|
|
22803
|
+
id: Scalars['ID'];
|
|
22804
|
+
};
|
|
22717
22805
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
22718
22806
|
ids: Array<Scalars['ID']>;
|
|
22719
22807
|
};
|
|
@@ -23613,14 +23701,32 @@ export declare type VirtualAgentMutationApiHandleFlowEditorActionsArgs = {
|
|
|
23613
23701
|
virtualAgentFlowEditorId: Scalars['ID'];
|
|
23614
23702
|
input: VirtualAgentFlowEditorActionInput;
|
|
23615
23703
|
};
|
|
23704
|
+
export declare type VirtualAgentProjectSettings = {
|
|
23705
|
+
__typename?: 'VirtualAgentProjectSettings';
|
|
23706
|
+
halpConnectivityState?: Maybe<Scalars['String']>;
|
|
23707
|
+
setupLink?: Maybe<Scalars['String']>;
|
|
23708
|
+
triageChannel?: Maybe<VirtualAgentSlackChannel>;
|
|
23709
|
+
testChannel?: Maybe<VirtualAgentSlackChannel>;
|
|
23710
|
+
errorMessage?: Maybe<Scalars['String']>;
|
|
23711
|
+
};
|
|
23712
|
+
export declare type VirtualAgentProjectSettingsQueryError = {
|
|
23713
|
+
__typename?: 'VirtualAgentProjectSettingsQueryError';
|
|
23714
|
+
message?: Maybe<Scalars['String']>;
|
|
23715
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
23716
|
+
};
|
|
23717
|
+
export declare type VirtualAgentProjectSettingsResult = VirtualAgentProjectSettings | VirtualAgentProjectSettingsQueryError;
|
|
23616
23718
|
export declare type VirtualAgentQueryApi = {
|
|
23617
23719
|
__typename?: 'VirtualAgentQueryApi';
|
|
23618
23720
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
23721
|
+
virtualAgentProjectSettingsByProjectId?: Maybe<VirtualAgentProjectSettingsResult>;
|
|
23619
23722
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
23620
23723
|
};
|
|
23621
23724
|
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
23622
23725
|
jiraProjectId: Scalars['ID'];
|
|
23623
23726
|
};
|
|
23727
|
+
export declare type VirtualAgentQueryApiVirtualAgentProjectSettingsByProjectIdArgs = {
|
|
23728
|
+
jiraProjectId: Scalars['ID'];
|
|
23729
|
+
};
|
|
23624
23730
|
export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
|
|
23625
23731
|
first?: Maybe<Scalars['Int']>;
|
|
23626
23732
|
after?: Maybe<Scalars['String']>;
|
|
@@ -23632,6 +23738,15 @@ export declare type VirtualAgentQueryError = {
|
|
|
23632
23738
|
message?: Maybe<Scalars['String']>;
|
|
23633
23739
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
23634
23740
|
};
|
|
23741
|
+
export declare type VirtualAgentSlackChannel = {
|
|
23742
|
+
__typename?: 'VirtualAgentSlackChannel';
|
|
23743
|
+
id?: Maybe<Scalars['ID']>;
|
|
23744
|
+
slackChannelId?: Maybe<Scalars['String']>;
|
|
23745
|
+
channelName?: Maybe<Scalars['String']>;
|
|
23746
|
+
isVirtualAgentChannel?: Maybe<Scalars['Boolean']>;
|
|
23747
|
+
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']>;
|
|
23748
|
+
channelLink?: Maybe<Scalars['String']>;
|
|
23749
|
+
};
|
|
23635
23750
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
23636
23751
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
23637
23752
|
traffic?: Maybe<Scalars['Float']>;
|