@forge/cli-shared 3.19.0-next.10 → 3.19.0-next.12
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
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.19.0-next.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- efffc256: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @types/node
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [efffc256]
|
|
12
|
+
- @forge/manifest@4.20.1-next.6
|
|
13
|
+
|
|
14
|
+
## 3.19.0-next.11
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 641b0551: Bumping dependencies via Renovate:
|
|
19
|
+
|
|
20
|
+
- @types/node-fetch
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [641b0551]
|
|
23
|
+
- @forge/manifest@4.20.1-next.5
|
|
24
|
+
|
|
3
25
|
## 3.19.0-next.10
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -2803,6 +2803,12 @@ export type CompassApplicationManagedComponentsQuery = {
|
|
|
2803
2803
|
after?: Maybe<Scalars['String']>;
|
|
2804
2804
|
};
|
|
2805
2805
|
export type CompassApplicationManagedComponentsResult = CompassApplicationManagedComponentsConnection | QueryError;
|
|
2806
|
+
export type CompassAssistantAnswer = Node & {
|
|
2807
|
+
__typename?: 'CompassAssistantAnswer';
|
|
2808
|
+
id: Scalars['ID'];
|
|
2809
|
+
value?: Maybe<Scalars['String']>;
|
|
2810
|
+
status?: Maybe<Scalars['String']>;
|
|
2811
|
+
};
|
|
2806
2812
|
export type CompassBuildEvent = CompassEvent & {
|
|
2807
2813
|
__typename?: 'CompassBuildEvent';
|
|
2808
2814
|
eventType: CompassEventType;
|
|
@@ -2905,6 +2911,7 @@ export type CompassCatalogMutationApi = {
|
|
|
2905
2911
|
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
2906
2912
|
deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
|
|
2907
2913
|
createWebhook?: Maybe<CompassCreateWebhookPayload>;
|
|
2914
|
+
createAssistantAnswer?: Maybe<CompassCreateAssistantAnswerPayload>;
|
|
2908
2915
|
};
|
|
2909
2916
|
export type CompassCatalogMutationApiCreateComponentArgs = {
|
|
2910
2917
|
cloudId: Scalars['ID'];
|
|
@@ -3085,6 +3092,10 @@ export type CompassCatalogMutationApiDeleteStarredComponentArgs = {
|
|
|
3085
3092
|
export type CompassCatalogMutationApiCreateWebhookArgs = {
|
|
3086
3093
|
input: CompassCreateWebhookInput;
|
|
3087
3094
|
};
|
|
3095
|
+
export type CompassCatalogMutationApiCreateAssistantAnswerArgs = {
|
|
3096
|
+
cloudId: Scalars['ID'];
|
|
3097
|
+
input: CreateCompassAssistantAnswerInput;
|
|
3098
|
+
};
|
|
3088
3099
|
export type CompassCatalogQueryApi = {
|
|
3089
3100
|
__typename?: 'CompassCatalogQueryApi';
|
|
3090
3101
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -3109,6 +3120,7 @@ export type CompassCatalogQueryApi = {
|
|
|
3109
3120
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
3110
3121
|
applicationManagedComponents?: Maybe<CompassApplicationManagedComponentsResult>;
|
|
3111
3122
|
userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
|
|
3123
|
+
assistantAnswer?: Maybe<CompassAssistantAnswer>;
|
|
3112
3124
|
};
|
|
3113
3125
|
export type CompassCatalogQueryApiComponentArgs = {
|
|
3114
3126
|
id: Scalars['ID'];
|
|
@@ -3190,6 +3202,9 @@ export type CompassCatalogQueryApiUserDefinedParametersArgs = {
|
|
|
3190
3202
|
first?: Maybe<Scalars['Int']>;
|
|
3191
3203
|
after?: Maybe<Scalars['String']>;
|
|
3192
3204
|
};
|
|
3205
|
+
export type CompassCatalogQueryApiAssistantAnswerArgs = {
|
|
3206
|
+
answerId: Scalars['ID'];
|
|
3207
|
+
};
|
|
3193
3208
|
export type CompassChangeMetadata = {
|
|
3194
3209
|
__typename?: 'CompassChangeMetadata';
|
|
3195
3210
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -3322,6 +3337,12 @@ export type CompassCreateAnnouncementPayload = Payload & {
|
|
|
3322
3337
|
success: Scalars['Boolean'];
|
|
3323
3338
|
errors?: Maybe<Array<MutationError>>;
|
|
3324
3339
|
};
|
|
3340
|
+
export type CompassCreateAssistantAnswerPayload = Payload & {
|
|
3341
|
+
__typename?: 'CompassCreateAssistantAnswerPayload';
|
|
3342
|
+
success: Scalars['Boolean'];
|
|
3343
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3344
|
+
id?: Maybe<Scalars['ID']>;
|
|
3345
|
+
};
|
|
3325
3346
|
export type CompassCreateBuildEventInput = {
|
|
3326
3347
|
displayName: Scalars['String'];
|
|
3327
3348
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -6341,6 +6362,9 @@ export type CreateColumnOutput = MutationResponse & {
|
|
|
6341
6362
|
success: Scalars['Boolean'];
|
|
6342
6363
|
message: Scalars['String'];
|
|
6343
6364
|
};
|
|
6365
|
+
export type CreateCompassAssistantAnswerInput = {
|
|
6366
|
+
question: Scalars['String'];
|
|
6367
|
+
};
|
|
6344
6368
|
export type CreateCompassComponentExternalAliasInput = {
|
|
6345
6369
|
componentId: Scalars['ID'];
|
|
6346
6370
|
externalAlias: CompassExternalAliasInput;
|
|
@@ -8681,6 +8705,7 @@ export type DevOpsSupportedActions = {
|
|
|
8681
8705
|
associate?: Maybe<Scalars['Boolean']>;
|
|
8682
8706
|
disassociate?: Maybe<Scalars['Boolean']>;
|
|
8683
8707
|
syncStatus?: Maybe<Scalars['Boolean']>;
|
|
8708
|
+
checkAuth?: Maybe<Scalars['Boolean']>;
|
|
8684
8709
|
check3LO?: Maybe<Scalars['Boolean']>;
|
|
8685
8710
|
grant3LO?: Maybe<Scalars['Boolean']>;
|
|
8686
8711
|
};
|
|
@@ -10035,6 +10060,9 @@ export type Graph = {
|
|
|
10035
10060
|
issueAssociatedPrRelationship?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
|
|
10036
10061
|
issueAssociatedPrRelationshipInverse?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
|
|
10037
10062
|
sprintAssociatedBuild?: Maybe<GraphJiraBuildConnection>;
|
|
10063
|
+
sprintAssociatedBuildInverse?: Maybe<GraphJiraSprintConnection>;
|
|
10064
|
+
sprintAssociatedBuildRelationship?: Maybe<GraphSprintAssociatedBuildRelationshipConnection>;
|
|
10065
|
+
sprintAssociatedBuildRelationshipInverse?: Maybe<GraphSprintAssociatedBuildRelationshipConnection>;
|
|
10038
10066
|
sprintAssociatedDeployment?: Maybe<GraphJiraDeploymentConnection>;
|
|
10039
10067
|
sprintAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
10040
10068
|
sprintRetrospectivePage?: Maybe<GraphConfluencePageConnection>;
|
|
@@ -10050,6 +10078,7 @@ export type Graph = {
|
|
|
10050
10078
|
issueAssociatedDesignRelationship?: Maybe<GraphIssueAssociatedDesignRelationshipConnection>;
|
|
10051
10079
|
issueAssociatedDesignRelationshipInverse?: Maybe<GraphIssueAssociatedDesignRelationshipConnection>;
|
|
10052
10080
|
projectAssociatedService?: Maybe<GraphProjectServiceConnection>;
|
|
10081
|
+
serviceLinkedIncident?: Maybe<GraphJiraIssueConnection>;
|
|
10053
10082
|
};
|
|
10054
10083
|
export type GraphFetchAllRelationshipsArgs = {
|
|
10055
10084
|
after?: Maybe<Scalars['String']>;
|
|
@@ -10133,6 +10162,25 @@ export type GraphSprintAssociatedBuildArgs = {
|
|
|
10133
10162
|
after?: Maybe<Scalars['String']>;
|
|
10134
10163
|
first?: Maybe<Scalars['Int']>;
|
|
10135
10164
|
from: Scalars['ID'];
|
|
10165
|
+
filter?: Maybe<GraphQueryMetadataSprintAssociatedBuildInput>;
|
|
10166
|
+
};
|
|
10167
|
+
export type GraphSprintAssociatedBuildInverseArgs = {
|
|
10168
|
+
after?: Maybe<Scalars['String']>;
|
|
10169
|
+
filter?: Maybe<GraphQueryMetadataSprintAssociatedBuildInput>;
|
|
10170
|
+
first?: Maybe<Scalars['Int']>;
|
|
10171
|
+
to: Scalars['ID'];
|
|
10172
|
+
};
|
|
10173
|
+
export type GraphSprintAssociatedBuildRelationshipArgs = {
|
|
10174
|
+
after?: Maybe<Scalars['String']>;
|
|
10175
|
+
filter?: Maybe<GraphQueryMetadataSprintAssociatedBuildInput>;
|
|
10176
|
+
first?: Maybe<Scalars['Int']>;
|
|
10177
|
+
from: Scalars['ID'];
|
|
10178
|
+
};
|
|
10179
|
+
export type GraphSprintAssociatedBuildRelationshipInverseArgs = {
|
|
10180
|
+
after?: Maybe<Scalars['String']>;
|
|
10181
|
+
filter?: Maybe<GraphQueryMetadataSprintAssociatedBuildInput>;
|
|
10182
|
+
first?: Maybe<Scalars['Int']>;
|
|
10183
|
+
to: Scalars['ID'];
|
|
10136
10184
|
};
|
|
10137
10185
|
export type GraphSprintAssociatedDeploymentArgs = {
|
|
10138
10186
|
after?: Maybe<Scalars['String']>;
|
|
@@ -10213,6 +10261,11 @@ export type GraphProjectAssociatedServiceArgs = {
|
|
|
10213
10261
|
first?: Maybe<Scalars['Int']>;
|
|
10214
10262
|
from: Scalars['ID'];
|
|
10215
10263
|
};
|
|
10264
|
+
export type GraphServiceLinkedIncidentArgs = {
|
|
10265
|
+
after?: Maybe<Scalars['String']>;
|
|
10266
|
+
first?: Maybe<Scalars['Int']>;
|
|
10267
|
+
from: Scalars['ID'];
|
|
10268
|
+
};
|
|
10216
10269
|
export type GraphConfluencePage = Node & {
|
|
10217
10270
|
__typename?: 'GraphConfluencePage';
|
|
10218
10271
|
id: Scalars['ID'];
|
|
@@ -10311,6 +10364,19 @@ export declare enum GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnera
|
|
|
10311
10364
|
Sca = "SCA",
|
|
10312
10365
|
Unknown = "UNKNOWN"
|
|
10313
10366
|
}
|
|
10367
|
+
export type GraphCreateMetadataSprintAssociatedBuildJiraBuildOutput = {
|
|
10368
|
+
__typename?: 'GraphCreateMetadataSprintAssociatedBuildJiraBuildOutput';
|
|
10369
|
+
state?: Maybe<GraphCreateMetadataSprintAssociatedBuildJiraBuildOutputBuildStateEnum>;
|
|
10370
|
+
};
|
|
10371
|
+
export declare enum GraphCreateMetadataSprintAssociatedBuildJiraBuildOutputBuildStateEnum {
|
|
10372
|
+
Cancelled = "CANCELLED",
|
|
10373
|
+
Failed = "FAILED",
|
|
10374
|
+
InProgress = "IN_PROGRESS",
|
|
10375
|
+
NotSet = "NOT_SET",
|
|
10376
|
+
Pending = "PENDING",
|
|
10377
|
+
Successful = "SUCCESSFUL",
|
|
10378
|
+
Unknown = "UNKNOWN"
|
|
10379
|
+
}
|
|
10314
10380
|
export type GraphCreateParentDocumentHasChildDocumentInput = {
|
|
10315
10381
|
from: Scalars['ID'];
|
|
10316
10382
|
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
@@ -10881,6 +10947,78 @@ export declare enum GraphQueryMetadataSortEnum {
|
|
|
10881
10947
|
Asc = "ASC",
|
|
10882
10948
|
Desc = "DESC"
|
|
10883
10949
|
}
|
|
10950
|
+
export type GraphQueryMetadataSprintAssociatedBuildInput = {
|
|
10951
|
+
and?: Maybe<Array<GraphQueryMetadataSprintAssociatedBuildInputAnd>>;
|
|
10952
|
+
or?: Maybe<Array<GraphQueryMetadataSprintAssociatedBuildInputOr>>;
|
|
10953
|
+
};
|
|
10954
|
+
export type GraphQueryMetadataSprintAssociatedBuildInputAnd = {
|
|
10955
|
+
createdAt?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputCreatedAt>;
|
|
10956
|
+
lastUpdated?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputLastUpdated>;
|
|
10957
|
+
or?: Maybe<Array<GraphQueryMetadataSprintAssociatedBuildInputOrInner>>;
|
|
10958
|
+
to_state?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputToState>;
|
|
10959
|
+
};
|
|
10960
|
+
export type GraphQueryMetadataSprintAssociatedBuildInputAndInner = {
|
|
10961
|
+
createdAt?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputCreatedAt>;
|
|
10962
|
+
lastUpdated?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputLastUpdated>;
|
|
10963
|
+
to_state?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputToState>;
|
|
10964
|
+
};
|
|
10965
|
+
export type GraphQueryMetadataSprintAssociatedBuildInputCreatedAt = {
|
|
10966
|
+
range?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputCreatedAtRangeField>;
|
|
10967
|
+
sort?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputCreatedAtMetadataSortField>;
|
|
10968
|
+
};
|
|
10969
|
+
export type GraphQueryMetadataSprintAssociatedBuildInputCreatedAtMetadataSortField = {
|
|
10970
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10971
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10972
|
+
};
|
|
10973
|
+
export type GraphQueryMetadataSprintAssociatedBuildInputCreatedAtRangeField = {
|
|
10974
|
+
gt?: Maybe<Scalars['DateTime']>;
|
|
10975
|
+
gte?: Maybe<Scalars['DateTime']>;
|
|
10976
|
+
lt?: Maybe<Scalars['DateTime']>;
|
|
10977
|
+
lte?: Maybe<Scalars['DateTime']>;
|
|
10978
|
+
};
|
|
10979
|
+
export type GraphQueryMetadataSprintAssociatedBuildInputLastUpdated = {
|
|
10980
|
+
range?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputLastUpdatedRangeField>;
|
|
10981
|
+
sort?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputLastUpdatedMetadataSortField>;
|
|
10982
|
+
};
|
|
10983
|
+
export type GraphQueryMetadataSprintAssociatedBuildInputLastUpdatedMetadataSortField = {
|
|
10984
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10985
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10986
|
+
};
|
|
10987
|
+
export type GraphQueryMetadataSprintAssociatedBuildInputLastUpdatedRangeField = {
|
|
10988
|
+
gt?: Maybe<Scalars['DateTime']>;
|
|
10989
|
+
gte?: Maybe<Scalars['DateTime']>;
|
|
10990
|
+
lt?: Maybe<Scalars['DateTime']>;
|
|
10991
|
+
lte?: Maybe<Scalars['DateTime']>;
|
|
10992
|
+
};
|
|
10993
|
+
export type GraphQueryMetadataSprintAssociatedBuildInputOr = {
|
|
10994
|
+
and?: Maybe<Array<GraphQueryMetadataSprintAssociatedBuildInputAndInner>>;
|
|
10995
|
+
createdAt?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputCreatedAt>;
|
|
10996
|
+
lastUpdated?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputLastUpdated>;
|
|
10997
|
+
to_state?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputToState>;
|
|
10998
|
+
};
|
|
10999
|
+
export type GraphQueryMetadataSprintAssociatedBuildInputOrInner = {
|
|
11000
|
+
createdAt?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputCreatedAt>;
|
|
11001
|
+
lastUpdated?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputLastUpdated>;
|
|
11002
|
+
to_state?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputToState>;
|
|
11003
|
+
};
|
|
11004
|
+
export declare enum GraphQueryMetadataSprintAssociatedBuildInputToBuildStateEnum {
|
|
11005
|
+
Cancelled = "CANCELLED",
|
|
11006
|
+
Failed = "FAILED",
|
|
11007
|
+
InProgress = "IN_PROGRESS",
|
|
11008
|
+
NotSet = "NOT_SET",
|
|
11009
|
+
Pending = "PENDING",
|
|
11010
|
+
Successful = "SUCCESSFUL",
|
|
11011
|
+
Unknown = "UNKNOWN"
|
|
11012
|
+
}
|
|
11013
|
+
export type GraphQueryMetadataSprintAssociatedBuildInputToState = {
|
|
11014
|
+
notValues?: Maybe<Array<GraphQueryMetadataSprintAssociatedBuildInputToBuildStateEnum>>;
|
|
11015
|
+
sort?: Maybe<GraphQueryMetadataSprintAssociatedBuildInputToStateMetadataSortField>;
|
|
11016
|
+
values?: Maybe<Array<GraphQueryMetadataSprintAssociatedBuildInputToBuildStateEnum>>;
|
|
11017
|
+
};
|
|
11018
|
+
export type GraphQueryMetadataSprintAssociatedBuildInputToStateMetadataSortField = {
|
|
11019
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
11020
|
+
priority?: Maybe<Scalars['Int']>;
|
|
11021
|
+
};
|
|
10884
11022
|
export type GraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsDocument | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | JiraIssue | JiraProject | JiraVersion | OpsgenieTeam | TownsquareGoal | TownsquareProject | TownsquareComment | DevOpsService;
|
|
10885
11023
|
export type GraphSimpleRelationship = {
|
|
10886
11024
|
__typename?: 'GraphSimpleRelationship';
|
|
@@ -10894,6 +11032,24 @@ export type GraphSimpleRelationshipConnection = {
|
|
|
10894
11032
|
pageInfo: PageInfo;
|
|
10895
11033
|
relationships: Array<Maybe<GraphSimpleRelationship>>;
|
|
10896
11034
|
};
|
|
11035
|
+
export type GraphSprintAssociatedBuildRelationship = Node & {
|
|
11036
|
+
__typename?: 'GraphSprintAssociatedBuildRelationship';
|
|
11037
|
+
from: GraphJiraSprint;
|
|
11038
|
+
id: Scalars['ID'];
|
|
11039
|
+
lastUpdated: Scalars['DateTime'];
|
|
11040
|
+
to: GraphJiraBuild;
|
|
11041
|
+
toMetadata?: Maybe<GraphCreateMetadataSprintAssociatedBuildJiraBuildOutput>;
|
|
11042
|
+
};
|
|
11043
|
+
export type GraphSprintAssociatedBuildRelationshipConnection = {
|
|
11044
|
+
__typename?: 'GraphSprintAssociatedBuildRelationshipConnection';
|
|
11045
|
+
edges: Array<Maybe<GraphSprintAssociatedBuildRelationshipEdge>>;
|
|
11046
|
+
pageInfo: PageInfo;
|
|
11047
|
+
};
|
|
11048
|
+
export type GraphSprintAssociatedBuildRelationshipEdge = {
|
|
11049
|
+
__typename?: 'GraphSprintAssociatedBuildRelationshipEdge';
|
|
11050
|
+
cursor?: Maybe<Scalars['String']>;
|
|
11051
|
+
node: GraphSprintAssociatedBuildRelationship;
|
|
11052
|
+
};
|
|
10897
11053
|
export type GraphSprintRetrospectivePagePayload = Payload & {
|
|
10898
11054
|
__typename?: 'GraphSprintRetrospectivePagePayload';
|
|
10899
11055
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -11038,7 +11194,8 @@ export type HelpCenter = Node & {
|
|
|
11038
11194
|
helpDesks: HelpCenterHelpDeskItemConnection;
|
|
11039
11195
|
};
|
|
11040
11196
|
export type HelpCenterHelpDesksArgs = {
|
|
11041
|
-
|
|
11197
|
+
first?: Maybe<Scalars['Int']>;
|
|
11198
|
+
after?: Maybe<Scalars['String']>;
|
|
11042
11199
|
};
|
|
11043
11200
|
export type HelpCenterBranding = {
|
|
11044
11201
|
__typename?: 'HelpCenterBranding';
|
|
@@ -11690,16 +11847,87 @@ export declare enum HelpObjectStoreJsmEntityType {
|
|
|
11690
11847
|
export type HelpObjectStoreMutationApi = {
|
|
11691
11848
|
__typename?: 'HelpObjectStoreMutationApi';
|
|
11692
11849
|
createEntityMapping?: Maybe<HelpObjectStoreCreateEntityMappingPayload>;
|
|
11850
|
+
createProviderConnections?: Maybe<HelpObjectStoreProviderConnectionPayload>;
|
|
11851
|
+
updateProviderConnection?: Maybe<HelpObjectStoreProviderConnectionUpdateDeletePayload>;
|
|
11852
|
+
deleteProviderConnection?: Maybe<HelpObjectStoreProviderConnectionUpdateDeletePayload>;
|
|
11693
11853
|
};
|
|
11694
11854
|
export type HelpObjectStoreMutationApiCreateEntityMappingArgs = {
|
|
11695
11855
|
input: HelpObjectStoreBulkCreateEntityMappingInput;
|
|
11696
11856
|
};
|
|
11857
|
+
export type HelpObjectStoreMutationApiCreateProviderConnectionsArgs = {
|
|
11858
|
+
input: HelpObjectStoreProviderConnectionsInput;
|
|
11859
|
+
};
|
|
11860
|
+
export type HelpObjectStoreMutationApiUpdateProviderConnectionArgs = {
|
|
11861
|
+
input: HelpObjectStoreProviderConnectionInput;
|
|
11862
|
+
};
|
|
11863
|
+
export type HelpObjectStoreMutationApiDeleteProviderConnectionArgs = {
|
|
11864
|
+
id: Scalars['ID'];
|
|
11865
|
+
};
|
|
11866
|
+
export type HelpObjectStoreProviderConnection = Node & {
|
|
11867
|
+
__typename?: 'HelpObjectStoreProviderConnection';
|
|
11868
|
+
id: Scalars['ID'];
|
|
11869
|
+
teamId: Scalars['String'];
|
|
11870
|
+
providerKey: Scalars['String'];
|
|
11871
|
+
url: Scalars['String'];
|
|
11872
|
+
containerType?: Maybe<Scalars['String']>;
|
|
11873
|
+
containerId?: Maybe<Scalars['String']>;
|
|
11874
|
+
title: Scalars['String'];
|
|
11875
|
+
createdBy: Scalars['String'];
|
|
11876
|
+
updatedBy: Scalars['String'];
|
|
11877
|
+
};
|
|
11878
|
+
export type HelpObjectStoreProviderConnectionEdge = {
|
|
11879
|
+
__typename?: 'HelpObjectStoreProviderConnectionEdge';
|
|
11880
|
+
cursor: Scalars['String'];
|
|
11881
|
+
node: HelpObjectStoreProviderConnection;
|
|
11882
|
+
};
|
|
11883
|
+
export type HelpObjectStoreProviderConnectionError = {
|
|
11884
|
+
__typename?: 'HelpObjectStoreProviderConnectionError';
|
|
11885
|
+
message?: Maybe<Scalars['String']>;
|
|
11886
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
11887
|
+
};
|
|
11888
|
+
export type HelpObjectStoreProviderConnectionInput = {
|
|
11889
|
+
id?: Maybe<Scalars['ID']>;
|
|
11890
|
+
teamId: Scalars['String'];
|
|
11891
|
+
providerKey: Scalars['String'];
|
|
11892
|
+
url: Scalars['String'];
|
|
11893
|
+
};
|
|
11894
|
+
export type HelpObjectStoreProviderConnectionMutationError = {
|
|
11895
|
+
__typename?: 'HelpObjectStoreProviderConnectionMutationError';
|
|
11896
|
+
id?: Maybe<Scalars['ID']>;
|
|
11897
|
+
teamId: Scalars['String'];
|
|
11898
|
+
providerKey: Scalars['String'];
|
|
11899
|
+
url: Scalars['String'];
|
|
11900
|
+
errorMessage: Scalars['String'];
|
|
11901
|
+
};
|
|
11902
|
+
export type HelpObjectStoreProviderConnectionPayload = {
|
|
11903
|
+
__typename?: 'HelpObjectStoreProviderConnectionPayload';
|
|
11904
|
+
success: Scalars['Boolean'];
|
|
11905
|
+
errors?: Maybe<Array<HelpObjectStoreProviderConnectionMutationError>>;
|
|
11906
|
+
providerConnections?: Maybe<Array<HelpObjectStoreProviderConnection>>;
|
|
11907
|
+
};
|
|
11908
|
+
export type HelpObjectStoreProviderConnectionResult = HelpObjectStoreProviderConnections | HelpObjectStoreProviderConnectionError;
|
|
11909
|
+
export type HelpObjectStoreProviderConnectionUpdateDeletePayload = {
|
|
11910
|
+
__typename?: 'HelpObjectStoreProviderConnectionUpdateDeletePayload';
|
|
11911
|
+
success: Scalars['Boolean'];
|
|
11912
|
+
errorMessage?: Maybe<Scalars['String']>;
|
|
11913
|
+
id: Scalars['ID'];
|
|
11914
|
+
};
|
|
11915
|
+
export type HelpObjectStoreProviderConnections = {
|
|
11916
|
+
__typename?: 'HelpObjectStoreProviderConnections';
|
|
11917
|
+
edges: Array<Maybe<HelpObjectStoreProviderConnectionEdge>>;
|
|
11918
|
+
pageInfo: PageInfo;
|
|
11919
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
11920
|
+
};
|
|
11921
|
+
export type HelpObjectStoreProviderConnectionsInput = {
|
|
11922
|
+
providerConnections: Array<HelpObjectStoreProviderConnectionInput>;
|
|
11923
|
+
};
|
|
11697
11924
|
export type HelpObjectStoreQueryApi = {
|
|
11698
11925
|
__typename?: 'HelpObjectStoreQueryApi';
|
|
11699
11926
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
11700
11927
|
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
11701
11928
|
channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
|
|
11702
11929
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
11930
|
+
providerConnections?: Maybe<HelpObjectStoreProviderConnectionResult>;
|
|
11703
11931
|
};
|
|
11704
11932
|
export type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
11705
11933
|
ids: Array<Scalars['ID']>;
|
|
@@ -11713,6 +11941,13 @@ export type HelpObjectStoreQueryApiChannelsArgs = {
|
|
|
11713
11941
|
export type HelpObjectStoreQueryApiSearchHelpObjectsArgs = {
|
|
11714
11942
|
searchInput: HelpObjectStoreSearchInput;
|
|
11715
11943
|
};
|
|
11944
|
+
export type HelpObjectStoreQueryApiProviderConnectionsArgs = {
|
|
11945
|
+
cloudId: Scalars['ID'];
|
|
11946
|
+
teamId: Scalars['String'];
|
|
11947
|
+
providerKey?: Maybe<Scalars['String']>;
|
|
11948
|
+
first?: Maybe<Scalars['Int']>;
|
|
11949
|
+
after?: Maybe<Scalars['String']>;
|
|
11950
|
+
};
|
|
11716
11951
|
export type HelpObjectStoreQueryError = {
|
|
11717
11952
|
__typename?: 'HelpObjectStoreQueryError';
|
|
11718
11953
|
ari: Scalars['ID'];
|
|
@@ -14364,6 +14599,13 @@ export declare enum JiraHomePageType {
|
|
|
14364
14599
|
ProjectsDirectory = "PROJECTS_DIRECTORY",
|
|
14365
14600
|
LoginRedirect = "LOGIN_REDIRECT"
|
|
14366
14601
|
}
|
|
14602
|
+
export declare enum JiraIncidentPriority {
|
|
14603
|
+
P1 = "P1",
|
|
14604
|
+
P2 = "P2",
|
|
14605
|
+
P3 = "P3",
|
|
14606
|
+
P4 = "P4",
|
|
14607
|
+
P5 = "P5"
|
|
14608
|
+
}
|
|
14367
14609
|
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
14368
14610
|
NotAvailable = "NOT_AVAILABLE",
|
|
14369
14611
|
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
@@ -17045,6 +17287,7 @@ export type JiraPriority = Node & {
|
|
|
17045
17287
|
name?: Maybe<Scalars['String']>;
|
|
17046
17288
|
iconUrl?: Maybe<Scalars['URL']>;
|
|
17047
17289
|
color?: Maybe<Scalars['String']>;
|
|
17290
|
+
jsmIncidentPriority?: Maybe<JiraIncidentPriority>;
|
|
17048
17291
|
};
|
|
17049
17292
|
export type JiraPriorityConnection = {
|
|
17050
17293
|
__typename?: 'JiraPriorityConnection';
|
|
@@ -17510,6 +17753,7 @@ export type JiraProjectListViewTemplateEdge = {
|
|
|
17510
17753
|
export type JiraProjectListViewTemplateItem = {
|
|
17511
17754
|
__typename?: 'JiraProjectListViewTemplateItem';
|
|
17512
17755
|
isLastUsed?: Maybe<Scalars['Boolean']>;
|
|
17756
|
+
isPremiumOnly?: Maybe<Scalars['Boolean']>;
|
|
17513
17757
|
iconUrl?: Maybe<Scalars['URL']>;
|
|
17514
17758
|
title?: Maybe<Scalars['String']>;
|
|
17515
17759
|
key?: Maybe<Scalars['String']>;
|
|
@@ -17672,6 +17916,7 @@ export type JiraQuery = {
|
|
|
17672
17916
|
integerUserProperty?: Maybe<JiraEntityPropertyInt>;
|
|
17673
17917
|
jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
|
|
17674
17918
|
filter?: Maybe<JiraFilter>;
|
|
17919
|
+
filters?: Maybe<Array<Maybe<JiraFilter>>>;
|
|
17675
17920
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
17676
17921
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
17677
17922
|
allJiraUserBroadcastMessages?: Maybe<JiraUserBroadcastMessageConnection>;
|
|
@@ -17932,6 +18177,9 @@ export type JiraQueryJsonUserPropertyArgs = {
|
|
|
17932
18177
|
export type JiraQueryFilterArgs = {
|
|
17933
18178
|
id: Scalars['ID'];
|
|
17934
18179
|
};
|
|
18180
|
+
export type JiraQueryFiltersArgs = {
|
|
18181
|
+
ids: Array<Scalars['ID']>;
|
|
18182
|
+
};
|
|
17935
18183
|
export type JiraQueryFavouriteFiltersArgs = {
|
|
17936
18184
|
cloudId: Scalars['ID'];
|
|
17937
18185
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -21740,6 +21988,7 @@ export type Mutation = {
|
|
|
21740
21988
|
updateReleaseNote: ContentPlatformReleaseNote;
|
|
21741
21989
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
21742
21990
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
21991
|
+
partnerEarlyAccess?: Maybe<PeapMutationApi>;
|
|
21743
21992
|
devOps?: Maybe<DevOpsMutation>;
|
|
21744
21993
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
21745
21994
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -21877,6 +22126,7 @@ export type Mutation = {
|
|
|
21877
22126
|
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
21878
22127
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
21879
22128
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
22129
|
+
team?: Maybe<TeamMutation>;
|
|
21880
22130
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
21881
22131
|
createJwmOverview?: Maybe<JiraWorkManagementCreateOverviewPayload>;
|
|
21882
22132
|
updateJwmOverview?: Maybe<JiraWorkManagementUpdateOverviewPayload>;
|
|
@@ -22480,6 +22730,7 @@ export declare enum NlpErrorState {
|
|
|
22480
22730
|
NoAnswerHydration = "NO_ANSWER_HYDRATION",
|
|
22481
22731
|
NoAnswerRelevantContent = "NO_ANSWER_RELEVANT_CONTENT",
|
|
22482
22732
|
NoAnswerOpenAiResponseErr = "NO_ANSWER_OPEN_AI_RESPONSE_ERR",
|
|
22733
|
+
NoAnswerWhoQuestion = "NO_ANSWER_WHO_QUESTION",
|
|
22483
22734
|
SubjectiveQuery = "SUBJECTIVE_QUERY",
|
|
22484
22735
|
AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS"
|
|
22485
22736
|
}
|
|
@@ -22507,7 +22758,8 @@ export type NlpSearchResult = {
|
|
|
22507
22758
|
};
|
|
22508
22759
|
export declare enum NlpSearchResultType {
|
|
22509
22760
|
Page = "page",
|
|
22510
|
-
Blogpost = "blogpost"
|
|
22761
|
+
Blogpost = "blogpost",
|
|
22762
|
+
User = "user"
|
|
22511
22763
|
}
|
|
22512
22764
|
export type NlpSource = {
|
|
22513
22765
|
__typename?: 'NlpSource';
|
|
@@ -22725,6 +22977,58 @@ export type OriginalSplitIssue = {
|
|
|
22725
22977
|
estimateFieldId?: Maybe<Scalars['String']>;
|
|
22726
22978
|
destinationId?: Maybe<Scalars['ID']>;
|
|
22727
22979
|
};
|
|
22980
|
+
export type PeapInternalMutationApi = {
|
|
22981
|
+
__typename?: 'PEAPInternalMutationApi';
|
|
22982
|
+
_module?: Maybe<Scalars['String']>;
|
|
22983
|
+
createProgram: PeapProgramMutationResponse;
|
|
22984
|
+
};
|
|
22985
|
+
export type PeapInternalMutationApiCreateProgramArgs = {
|
|
22986
|
+
program: PeapProgramInput;
|
|
22987
|
+
};
|
|
22988
|
+
export type PeapInternalQueryApi = {
|
|
22989
|
+
__typename?: 'PEAPInternalQueryApi';
|
|
22990
|
+
version?: Maybe<Scalars['String']>;
|
|
22991
|
+
};
|
|
22992
|
+
export type PeapMutationApi = {
|
|
22993
|
+
__typename?: 'PEAPMutationApi';
|
|
22994
|
+
internal: PeapInternalMutationApi;
|
|
22995
|
+
};
|
|
22996
|
+
export type PeapProgram = {
|
|
22997
|
+
__typename?: 'PEAPProgram';
|
|
22998
|
+
description: Scalars['String'];
|
|
22999
|
+
dimensionType: Scalars['String'];
|
|
23000
|
+
id: Scalars['ID'];
|
|
23001
|
+
internal?: Maybe<PeapProgramInternalData>;
|
|
23002
|
+
name: Scalars['String'];
|
|
23003
|
+
product: Scalars['String'];
|
|
23004
|
+
status: Scalars['String'];
|
|
23005
|
+
};
|
|
23006
|
+
export type PeapProgramInput = {
|
|
23007
|
+
description: Scalars['String'];
|
|
23008
|
+
dimensionType: Scalars['String'];
|
|
23009
|
+
name: Scalars['String'];
|
|
23010
|
+
product: Scalars['String'];
|
|
23011
|
+
status: Scalars['String'];
|
|
23012
|
+
};
|
|
23013
|
+
export type PeapProgramInternalData = {
|
|
23014
|
+
__typename?: 'PEAPProgramInternalData';
|
|
23015
|
+
owner?: Maybe<User>;
|
|
23016
|
+
teamChannel?: Maybe<Scalars['String']>;
|
|
23017
|
+
};
|
|
23018
|
+
export type PeapProgramMutationResponse = Payload & {
|
|
23019
|
+
__typename?: 'PEAPProgramMutationResponse';
|
|
23020
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23021
|
+
program?: Maybe<PeapProgram>;
|
|
23022
|
+
success: Scalars['Boolean'];
|
|
23023
|
+
};
|
|
23024
|
+
export type PeapQueryApi = {
|
|
23025
|
+
__typename?: 'PEAPQueryApi';
|
|
23026
|
+
internal: PeapInternalQueryApi;
|
|
23027
|
+
program?: Maybe<PeapProgram>;
|
|
23028
|
+
};
|
|
23029
|
+
export type PeapQueryApiProgramArgs = {
|
|
23030
|
+
id: Scalars['ID'];
|
|
23031
|
+
};
|
|
22728
23032
|
export type PageInfo = {
|
|
22729
23033
|
__typename?: 'PageInfo';
|
|
22730
23034
|
hasNextPage: Scalars['Boolean'];
|
|
@@ -24321,6 +24625,7 @@ export type Query = {
|
|
|
24321
24625
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
24322
24626
|
appRecommendations?: Maybe<AppRecQuery>;
|
|
24323
24627
|
ccp?: Maybe<CcpQueryApi>;
|
|
24628
|
+
partnerEarlyAccess?: Maybe<PeapQueryApi>;
|
|
24324
24629
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
24325
24630
|
atlas?: Maybe<TownsquareQueryApi>;
|
|
24326
24631
|
devOps?: Maybe<DevOps>;
|
|
@@ -24885,6 +25190,10 @@ export type RankingDiffPayload = {
|
|
|
24885
25190
|
changed?: Maybe<Array<RankItem>>;
|
|
24886
25191
|
deleted?: Maybe<Array<RankItem>>;
|
|
24887
25192
|
};
|
|
25193
|
+
export type RateLimitPolicyProperty = {
|
|
25194
|
+
argumentPath: Scalars['String'];
|
|
25195
|
+
useCloudIdFromARI?: Scalars['Boolean'];
|
|
25196
|
+
};
|
|
24888
25197
|
export declare enum RateLimitingCurrency {
|
|
24889
25198
|
TestingService = "TESTING_SERVICE",
|
|
24890
25199
|
TrelloCurrency = "TRELLO_CURRENCY",
|
|
@@ -24937,6 +25246,8 @@ export declare enum RateLimitingCurrency {
|
|
|
24937
25246
|
TeamSearchV2Currency = "TEAM_SEARCH_V2_CURRENCY",
|
|
24938
25247
|
TeamV2Currency = "TEAM_V2_CURRENCY",
|
|
24939
25248
|
TeamMembersV2Currency = "TEAM_MEMBERS_V2_CURRENCY",
|
|
25249
|
+
TeamRoleGrantsQueryPrincipalsCurrency = "TEAM_ROLE_GRANTS_QUERY_PRINCIPALS_CURRENCY",
|
|
25250
|
+
TeamRoleGrantsMutatePrincipalsCurrency = "TEAM_ROLE_GRANTS_MUTATE_PRINCIPALS_CURRENCY",
|
|
24940
25251
|
HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
|
|
24941
25252
|
ForgeAuditLogsCurrency = "FORGE_AUDIT_LOGS_CURRENCY",
|
|
24942
25253
|
ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
|
|
@@ -26306,6 +26617,16 @@ export type SearchResultJiraBoardUserContainer = {
|
|
|
26306
26617
|
userAccountId: Scalars['String'];
|
|
26307
26618
|
userName: Scalars['String'];
|
|
26308
26619
|
};
|
|
26620
|
+
export type SearchResultJiraFilter = SearchResult & {
|
|
26621
|
+
__typename?: 'SearchResultJiraFilter';
|
|
26622
|
+
id: Scalars['ID'];
|
|
26623
|
+
title: Scalars['String'];
|
|
26624
|
+
url: Scalars['URL'];
|
|
26625
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
26626
|
+
type: SearchResultType;
|
|
26627
|
+
description: Scalars['String'];
|
|
26628
|
+
filter?: Maybe<JiraFilter>;
|
|
26629
|
+
};
|
|
26309
26630
|
export type SearchResultJiraIssue = SearchResult & {
|
|
26310
26631
|
__typename?: 'SearchResultJiraIssue';
|
|
26311
26632
|
id: Scalars['ID'];
|
|
@@ -28006,10 +28327,30 @@ export declare enum TeamMembershipState {
|
|
|
28006
28327
|
Alumni = "ALUMNI",
|
|
28007
28328
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
28008
28329
|
}
|
|
28330
|
+
export type TeamMutation = {
|
|
28331
|
+
__typename?: 'TeamMutation';
|
|
28332
|
+
updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
|
|
28333
|
+
};
|
|
28334
|
+
export type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
28335
|
+
role: TeamRole;
|
|
28336
|
+
organizationId: Scalars['ID'];
|
|
28337
|
+
principalsToAdd: Array<Maybe<Scalars['ID']>>;
|
|
28338
|
+
principalsToRemove: Array<Maybe<Scalars['ID']>>;
|
|
28339
|
+
};
|
|
28340
|
+
export type TeamPrincipal = {
|
|
28341
|
+
__typename?: 'TeamPrincipal';
|
|
28342
|
+
principalId?: Maybe<Scalars['ID']>;
|
|
28343
|
+
};
|
|
28344
|
+
export type TeamPrincipalEdge = {
|
|
28345
|
+
__typename?: 'TeamPrincipalEdge';
|
|
28346
|
+
node?: Maybe<TeamPrincipal>;
|
|
28347
|
+
cursor: Scalars['String'];
|
|
28348
|
+
};
|
|
28009
28349
|
export type TeamQuery = {
|
|
28010
28350
|
__typename?: 'TeamQuery';
|
|
28011
28351
|
teamV2?: Maybe<TeamV2>;
|
|
28012
28352
|
teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
|
|
28353
|
+
roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
|
|
28013
28354
|
team?: Maybe<Team>;
|
|
28014
28355
|
teamSearch?: Maybe<TeamSearchResultConnection>;
|
|
28015
28356
|
};
|
|
@@ -28025,6 +28366,12 @@ export type TeamQueryTeamSearchV2Args = {
|
|
|
28025
28366
|
after?: Maybe<Scalars['String']>;
|
|
28026
28367
|
sortBy?: Maybe<Array<Maybe<TeamSort>>>;
|
|
28027
28368
|
};
|
|
28369
|
+
export type TeamQueryRoleAssignmentsArgs = {
|
|
28370
|
+
role: TeamRole;
|
|
28371
|
+
organizationId: Scalars['ID'];
|
|
28372
|
+
first?: Maybe<Scalars['Int']>;
|
|
28373
|
+
after?: Maybe<Scalars['String']>;
|
|
28374
|
+
};
|
|
28028
28375
|
export type TeamQueryTeamArgs = {
|
|
28029
28376
|
id: Scalars['ID'];
|
|
28030
28377
|
};
|
|
@@ -28035,6 +28382,17 @@ export type TeamQueryTeamSearchArgs = {
|
|
|
28035
28382
|
after?: Maybe<Scalars['String']>;
|
|
28036
28383
|
sortBy?: Maybe<Array<Maybe<TeamSort>>>;
|
|
28037
28384
|
};
|
|
28385
|
+
export declare enum TeamRole {
|
|
28386
|
+
TeamsAdmin = "TEAMS_ADMIN",
|
|
28387
|
+
TeamsUser = "TEAMS_USER",
|
|
28388
|
+
TeamsObserver = "TEAMS_OBSERVER"
|
|
28389
|
+
}
|
|
28390
|
+
export type TeamRoleAssignmentsConnection = {
|
|
28391
|
+
__typename?: 'TeamRoleAssignmentsConnection';
|
|
28392
|
+
edges?: Maybe<Array<Maybe<TeamPrincipalEdge>>>;
|
|
28393
|
+
nodes?: Maybe<Array<Maybe<TeamPrincipal>>>;
|
|
28394
|
+
pageInfo: PageInfo;
|
|
28395
|
+
};
|
|
28038
28396
|
export type TeamSearchFilter = {
|
|
28039
28397
|
query?: Maybe<Scalars['String']>;
|
|
28040
28398
|
membership?: Maybe<TeamMembershipFilter>;
|
|
@@ -28095,6 +28453,11 @@ export declare enum TeamStateV2 {
|
|
|
28095
28453
|
Active = "ACTIVE",
|
|
28096
28454
|
Purged = "PURGED"
|
|
28097
28455
|
}
|
|
28456
|
+
export type TeamUpdateRoleAssignmentsResponse = {
|
|
28457
|
+
__typename?: 'TeamUpdateRoleAssignmentsResponse';
|
|
28458
|
+
successfullyAddedPrincipals?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
28459
|
+
successfullyRemovedPrincipals?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
28460
|
+
};
|
|
28098
28461
|
export type TeamV2 = Node & {
|
|
28099
28462
|
__typename?: 'TeamV2';
|
|
28100
28463
|
id: Scalars['ID'];
|
|
@@ -28220,6 +28583,7 @@ export type Toolchain = {
|
|
|
28220
28583
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
28221
28584
|
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
28222
28585
|
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
28586
|
+
checkAuth?: Maybe<ToolchainCheckAuth>;
|
|
28223
28587
|
check3LO?: Maybe<ToolchainCheck3Lo>;
|
|
28224
28588
|
};
|
|
28225
28589
|
export type ToolchainContainersArgs = {
|
|
@@ -28246,6 +28610,11 @@ export type ToolchainSyncStatusArgs = {
|
|
|
28246
28610
|
jiraProjectId: Scalars['ID'];
|
|
28247
28611
|
containerId: Scalars['ID'];
|
|
28248
28612
|
};
|
|
28613
|
+
export type ToolchainCheckAuthArgs = {
|
|
28614
|
+
cloudId: Scalars['ID'];
|
|
28615
|
+
providerId: Scalars['String'];
|
|
28616
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
28617
|
+
};
|
|
28249
28618
|
export type ToolchainCheck3LoArgs = {
|
|
28250
28619
|
cloudId: Scalars['ID'];
|
|
28251
28620
|
providerId: Scalars['String'];
|
|
@@ -28290,6 +28659,18 @@ export type ToolchainCheck3Lo = {
|
|
|
28290
28659
|
__typename?: 'ToolchainCheck3LO';
|
|
28291
28660
|
authorized: Scalars['Boolean'];
|
|
28292
28661
|
};
|
|
28662
|
+
export type ToolchainCheck3LoAuth = ToolchainCheckAuth & {
|
|
28663
|
+
__typename?: 'ToolchainCheck3LOAuth';
|
|
28664
|
+
authorized: Scalars['Boolean'];
|
|
28665
|
+
grant?: Maybe<ToolchainCheck3LoAuthGrant>;
|
|
28666
|
+
};
|
|
28667
|
+
export type ToolchainCheck3LoAuthGrant = {
|
|
28668
|
+
__typename?: 'ToolchainCheck3LOAuthGrant';
|
|
28669
|
+
authorizationEndpoint: Scalars['String'];
|
|
28670
|
+
};
|
|
28671
|
+
export type ToolchainCheckAuth = {
|
|
28672
|
+
authorized: Scalars['Boolean'];
|
|
28673
|
+
};
|
|
28293
28674
|
export type ToolchainContainer = Node & {
|
|
28294
28675
|
__typename?: 'ToolchainContainer';
|
|
28295
28676
|
id: Scalars['ID'];
|