@forge/cli-shared 3.23.1-next.0 → 3.23.1-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 +6 -0
- package/out/graphql/graphql-types.d.ts +282 -68
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +25 -11
- package/out/ui/text.d.ts +0 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +53 -52
- package/package.json +1 -1
|
@@ -111,6 +111,113 @@ export declare enum AccountStatus {
|
|
|
111
111
|
Closed = "closed",
|
|
112
112
|
Inactive = "inactive"
|
|
113
113
|
}
|
|
114
|
+
export declare type Actions = {
|
|
115
|
+
__typename?: 'Actions';
|
|
116
|
+
actionableApps?: Maybe<ActionsActionableAppConnection>;
|
|
117
|
+
};
|
|
118
|
+
export declare type ActionsActionableAppsArgs = {
|
|
119
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
120
|
+
filter?: InputMaybe<ActionsActionableAppsFilter>;
|
|
121
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122
|
+
workspace?: InputMaybe<Scalars['String']['input']>;
|
|
123
|
+
};
|
|
124
|
+
export declare type ActionsAction = {
|
|
125
|
+
__typename?: 'ActionsAction';
|
|
126
|
+
actionType: Scalars['String']['output'];
|
|
127
|
+
auth: Array<ActionsAuthType>;
|
|
128
|
+
};
|
|
129
|
+
export declare type ActionsActionType = {
|
|
130
|
+
__typename?: 'ActionsActionType';
|
|
131
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
132
|
+
displayName: Scalars['String']['output'];
|
|
133
|
+
entityType?: Maybe<Scalars['String']['output']>;
|
|
134
|
+
inputs?: Maybe<Array<ActionsActionTypeInputTuple>>;
|
|
135
|
+
key: Scalars['String']['output'];
|
|
136
|
+
outputs?: Maybe<Array<ActionsActionTypeOutputTuple>>;
|
|
137
|
+
};
|
|
138
|
+
export declare type ActionsActionTypeInput = {
|
|
139
|
+
__typename?: 'ActionsActionTypeInput';
|
|
140
|
+
defaultValue?: Maybe<Scalars['JSON']['output']>;
|
|
141
|
+
description: Scalars['String']['output'];
|
|
142
|
+
pattern?: Maybe<Scalars['String']['output']>;
|
|
143
|
+
required: Scalars['Boolean']['output'];
|
|
144
|
+
type: Scalars['String']['output'];
|
|
145
|
+
};
|
|
146
|
+
export declare type ActionsActionTypeInputTuple = {
|
|
147
|
+
__typename?: 'ActionsActionTypeInputTuple';
|
|
148
|
+
key: Scalars['String']['output'];
|
|
149
|
+
value: ActionsActionTypeInput;
|
|
150
|
+
};
|
|
151
|
+
export declare type ActionsActionTypeOutput = {
|
|
152
|
+
__typename?: 'ActionsActionTypeOutput';
|
|
153
|
+
description: Scalars['String']['output'];
|
|
154
|
+
nullable: Scalars['Boolean']['output'];
|
|
155
|
+
type: Scalars['String']['output'];
|
|
156
|
+
};
|
|
157
|
+
export declare type ActionsActionTypeOutputTuple = {
|
|
158
|
+
__typename?: 'ActionsActionTypeOutputTuple';
|
|
159
|
+
key: Scalars['String']['output'];
|
|
160
|
+
value: ActionsActionTypeOutput;
|
|
161
|
+
};
|
|
162
|
+
export declare type ActionsActionableApp = {
|
|
163
|
+
__typename?: 'ActionsActionableApp';
|
|
164
|
+
actions?: Maybe<Array<Maybe<ActionsAction>>>;
|
|
165
|
+
appId: Scalars['String']['output'];
|
|
166
|
+
name: Scalars['String']['output'];
|
|
167
|
+
oauthClientId: Scalars['String']['output'];
|
|
168
|
+
};
|
|
169
|
+
export declare type ActionsActionableAppConnection = {
|
|
170
|
+
__typename?: 'ActionsActionableAppConnection';
|
|
171
|
+
actionTypes?: Maybe<Array<ActionsActionType>>;
|
|
172
|
+
edges?: Maybe<Array<Maybe<ActionsActionableAppEdge>>>;
|
|
173
|
+
pageInfo: PageInfo;
|
|
174
|
+
};
|
|
175
|
+
export declare type ActionsActionableAppEdge = {
|
|
176
|
+
__typename?: 'ActionsActionableAppEdge';
|
|
177
|
+
cursor: Scalars['String']['output'];
|
|
178
|
+
node?: Maybe<ActionsActionableApp>;
|
|
179
|
+
};
|
|
180
|
+
export declare type ActionsActionableAppsFilter = {
|
|
181
|
+
byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
182
|
+
byEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
183
|
+
byProviderID?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
184
|
+
};
|
|
185
|
+
export declare enum ActionsAuthType {
|
|
186
|
+
ThreeLegged = "THREE_LEGGED",
|
|
187
|
+
TwoLegged = "TWO_LEGGED"
|
|
188
|
+
}
|
|
189
|
+
export declare type ActionsExecuteActionFilter = {
|
|
190
|
+
oauthClientId?: InputMaybe<Scalars['String']['input']>;
|
|
191
|
+
providerAri?: InputMaybe<Scalars['String']['input']>;
|
|
192
|
+
};
|
|
193
|
+
export declare type ActionsExecuteActionInput = {
|
|
194
|
+
inputs?: InputMaybe<Array<InputMaybe<ActionsExecuteActionInputTuple>>>;
|
|
195
|
+
targetUrl: Scalars['String']['input'];
|
|
196
|
+
};
|
|
197
|
+
export declare type ActionsExecuteActionInputTuple = {
|
|
198
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
199
|
+
value?: InputMaybe<Scalars['JSON']['input']>;
|
|
200
|
+
};
|
|
201
|
+
export declare type ActionsExecuteResponse = {
|
|
202
|
+
__typename?: 'ActionsExecuteResponse';
|
|
203
|
+
outputs?: Maybe<Array<Maybe<ActionsExecuteResponseOutputTuple>>>;
|
|
204
|
+
status?: Maybe<Scalars['Int']['output']>;
|
|
205
|
+
};
|
|
206
|
+
export declare type ActionsExecuteResponseOutputTuple = {
|
|
207
|
+
__typename?: 'ActionsExecuteResponseOutputTuple';
|
|
208
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
209
|
+
value?: Maybe<Scalars['JSON']['output']>;
|
|
210
|
+
};
|
|
211
|
+
export declare type ActionsMutation = {
|
|
212
|
+
__typename?: 'ActionsMutation';
|
|
213
|
+
execute?: Maybe<ActionsExecuteResponse>;
|
|
214
|
+
};
|
|
215
|
+
export declare type ActionsMutationExecuteArgs = {
|
|
216
|
+
actionInput: ActionsExecuteActionInput;
|
|
217
|
+
actionTypeKey: Scalars['String']['input'];
|
|
218
|
+
filter: ActionsExecuteActionFilter;
|
|
219
|
+
workspace?: InputMaybe<Scalars['String']['input']>;
|
|
220
|
+
};
|
|
114
221
|
export declare type Activities = {
|
|
115
222
|
__typename?: 'Activities';
|
|
116
223
|
all: ActivitiesConnection;
|
|
@@ -4720,6 +4827,7 @@ export declare type CompassScorecard = Node & {
|
|
|
4720
4827
|
name: Scalars['String']['output'];
|
|
4721
4828
|
owner?: Maybe<User>;
|
|
4722
4829
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
4830
|
+
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
4723
4831
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
4724
4832
|
type: Scalars['String']['output'];
|
|
4725
4833
|
};
|
|
@@ -4910,6 +5018,22 @@ export declare type CompassScorecardScore = {
|
|
|
4910
5018
|
statusDuration?: Maybe<CompassScorecardScoreStatusDuration>;
|
|
4911
5019
|
totalScore: Scalars['Int']['output'];
|
|
4912
5020
|
};
|
|
5021
|
+
export declare type CompassScorecardScoreDurationRange = {
|
|
5022
|
+
__typename?: 'CompassScorecardScoreDurationRange';
|
|
5023
|
+
lowerBound: Scalars['Int']['output'];
|
|
5024
|
+
upperBound?: Maybe<Scalars['Int']['output']>;
|
|
5025
|
+
};
|
|
5026
|
+
export declare type CompassScorecardScoreDurationStatistic = {
|
|
5027
|
+
__typename?: 'CompassScorecardScoreDurationStatistic';
|
|
5028
|
+
durationRange: CompassScorecardScoreDurationRange;
|
|
5029
|
+
statistics?: Maybe<Array<CompassScorecardScoreStatistic>>;
|
|
5030
|
+
totalCount: Scalars['Int']['output'];
|
|
5031
|
+
};
|
|
5032
|
+
export declare type CompassScorecardScoreDurationStatistics = {
|
|
5033
|
+
__typename?: 'CompassScorecardScoreDurationStatistics';
|
|
5034
|
+
durationStatistics?: Maybe<Array<CompassScorecardScoreDurationStatistic>>;
|
|
5035
|
+
};
|
|
5036
|
+
export declare type CompassScorecardScoreDurationStatisticsResult = CompassScorecardScoreDurationStatistics | QueryError;
|
|
4913
5037
|
export declare type CompassScorecardScoreHistory = {
|
|
4914
5038
|
__typename?: 'CompassScorecardScoreHistory';
|
|
4915
5039
|
date: Scalars['DateTime']['output'];
|
|
@@ -5632,17 +5756,6 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
5632
5756
|
space?: Maybe<ConfluenceSpace>;
|
|
5633
5757
|
success: Scalars['Boolean']['output'];
|
|
5634
5758
|
};
|
|
5635
|
-
export declare type ConfluenceCreateUserPropertyInput = {
|
|
5636
|
-
key: Scalars['String']['input'];
|
|
5637
|
-
userId: Scalars['String']['input'];
|
|
5638
|
-
value: Scalars['String']['input'];
|
|
5639
|
-
};
|
|
5640
|
-
export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
5641
|
-
__typename?: 'ConfluenceCreateUserPropertyPayload';
|
|
5642
|
-
errors?: Maybe<Array<MutationError>>;
|
|
5643
|
-
success: Scalars['Boolean']['output'];
|
|
5644
|
-
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
5645
|
-
};
|
|
5646
5759
|
export declare type ConfluenceDatabase = {
|
|
5647
5760
|
__typename?: 'ConfluenceDatabase';
|
|
5648
5761
|
databaseId: Scalars['ID']['output'];
|
|
@@ -5691,14 +5804,6 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
5691
5804
|
errors?: Maybe<Array<MutationError>>;
|
|
5692
5805
|
success: Scalars['Boolean']['output'];
|
|
5693
5806
|
};
|
|
5694
|
-
export declare type ConfluenceDeleteUserPropertyInput = {
|
|
5695
|
-
id: Scalars['ID']['input'];
|
|
5696
|
-
};
|
|
5697
|
-
export declare type ConfluenceDeleteUserPropertyPayload = Payload & {
|
|
5698
|
-
__typename?: 'ConfluenceDeleteUserPropertyPayload';
|
|
5699
|
-
errors?: Maybe<Array<MutationError>>;
|
|
5700
|
-
success: Scalars['Boolean']['output'];
|
|
5701
|
-
};
|
|
5702
5807
|
export declare type ConfluenceFavoritedSummary = {
|
|
5703
5808
|
__typename?: 'ConfluenceFavoritedSummary';
|
|
5704
5809
|
favoritedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -5805,13 +5910,11 @@ export declare type ConfluenceMutationApi = {
|
|
|
5805
5910
|
createPage?: Maybe<ConfluenceCreatePagePayload>;
|
|
5806
5911
|
createPageProperty?: Maybe<ConfluenceCreatePagePropertyPayload>;
|
|
5807
5912
|
createSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
5808
|
-
createUserProperty?: Maybe<ConfluenceCreateUserPropertyPayload>;
|
|
5809
5913
|
deleteBlogPostProperty?: Maybe<ConfluenceDeleteBlogPostPropertyPayload>;
|
|
5810
5914
|
deleteComment?: Maybe<ConfluenceDeleteCommentPayload>;
|
|
5811
5915
|
deleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
5812
5916
|
deleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
5813
5917
|
deletePageProperty?: Maybe<ConfluenceDeletePagePropertyPayload>;
|
|
5814
|
-
deleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
5815
5918
|
publishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
5816
5919
|
publishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
5817
5920
|
purgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
@@ -5830,7 +5933,6 @@ export declare type ConfluenceMutationApi = {
|
|
|
5830
5933
|
updateSpaceSettings?: Maybe<ConfluenceUpdateSpaceSettingsPayload>;
|
|
5831
5934
|
updateValueBlogPostProperty?: Maybe<ConfluenceUpdateValueBlogPostPropertyPayload>;
|
|
5832
5935
|
updateValuePageProperty?: Maybe<ConfluenceUpdateValuePagePropertyPayload>;
|
|
5833
|
-
updateValueUserProperty?: Maybe<ConfluenceUpdateValueUserPropertyPayload>;
|
|
5834
5936
|
};
|
|
5835
5937
|
export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
5836
5938
|
input: ConfluenceCreateBlogPostInput;
|
|
@@ -5854,10 +5956,6 @@ export declare type ConfluenceMutationApiCreateSpaceArgs = {
|
|
|
5854
5956
|
cloudId: Scalars['ID']['input'];
|
|
5855
5957
|
input: ConfluenceCreateSpaceInput;
|
|
5856
5958
|
};
|
|
5857
|
-
export declare type ConfluenceMutationApiCreateUserPropertyArgs = {
|
|
5858
|
-
cloudId: Scalars['String']['input'];
|
|
5859
|
-
input: ConfluenceCreateUserPropertyInput;
|
|
5860
|
-
};
|
|
5861
5959
|
export declare type ConfluenceMutationApiDeleteBlogPostPropertyArgs = {
|
|
5862
5960
|
input: ConfluenceDeleteBlogPostPropertyInput;
|
|
5863
5961
|
};
|
|
@@ -5873,9 +5971,6 @@ export declare type ConfluenceMutationApiDeleteDraftPageArgs = {
|
|
|
5873
5971
|
export declare type ConfluenceMutationApiDeletePagePropertyArgs = {
|
|
5874
5972
|
input: ConfluenceDeletePagePropertyInput;
|
|
5875
5973
|
};
|
|
5876
|
-
export declare type ConfluenceMutationApiDeleteUserPropertyArgs = {
|
|
5877
|
-
input: ConfluenceDeleteUserPropertyInput;
|
|
5878
|
-
};
|
|
5879
5974
|
export declare type ConfluenceMutationApiPublishBlogPostArgs = {
|
|
5880
5975
|
input: ConfluencePublishBlogPostInput;
|
|
5881
5976
|
};
|
|
@@ -5930,9 +6025,6 @@ export declare type ConfluenceMutationApiUpdateValueBlogPostPropertyArgs = {
|
|
|
5930
6025
|
export declare type ConfluenceMutationApiUpdateValuePagePropertyArgs = {
|
|
5931
6026
|
input: ConfluenceUpdateValuePagePropertyInput;
|
|
5932
6027
|
};
|
|
5933
|
-
export declare type ConfluenceMutationApiUpdateValueUserPropertyArgs = {
|
|
5934
|
-
input: ConfluenceUpdateValueUserPropertyInput;
|
|
5935
|
-
};
|
|
5936
6028
|
export declare enum ConfluenceMutationContentStatus {
|
|
5937
6029
|
Current = "CURRENT",
|
|
5938
6030
|
Draft = "DRAFT"
|
|
@@ -6081,8 +6173,6 @@ export declare type ConfluenceQueryApi = {
|
|
|
6081
6173
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
6082
6174
|
space?: Maybe<ConfluenceSpace>;
|
|
6083
6175
|
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
6084
|
-
userProperties?: Maybe<Array<Maybe<ConfluenceUserProperty>>>;
|
|
6085
|
-
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
6086
6176
|
validateSpaceKey?: Maybe<ConfluenceValidateSpaceKeyResponse>;
|
|
6087
6177
|
whiteboard?: Maybe<ConfluenceWhiteboard>;
|
|
6088
6178
|
whiteboards?: Maybe<Array<Maybe<ConfluenceWhiteboard>>>;
|
|
@@ -6129,12 +6219,6 @@ export declare type ConfluenceQueryApiSpaceArgs = {
|
|
|
6129
6219
|
export declare type ConfluenceQueryApiSpacesArgs = {
|
|
6130
6220
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
6131
6221
|
};
|
|
6132
|
-
export declare type ConfluenceQueryApiUserPropertiesArgs = {
|
|
6133
|
-
ids: Array<Scalars['ID']['input']>;
|
|
6134
|
-
};
|
|
6135
|
-
export declare type ConfluenceQueryApiUserPropertyArgs = {
|
|
6136
|
-
id: Scalars['ID']['input'];
|
|
6137
|
-
};
|
|
6138
6222
|
export declare type ConfluenceQueryApiValidateSpaceKeyArgs = {
|
|
6139
6223
|
cloudId: Scalars['ID']['input'];
|
|
6140
6224
|
generateUniqueKey?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -6368,30 +6452,11 @@ export declare type ConfluenceUpdateValuePagePropertyPayload = Payload & {
|
|
|
6368
6452
|
pageProperty?: Maybe<ConfluencePageProperty>;
|
|
6369
6453
|
success: Scalars['Boolean']['output'];
|
|
6370
6454
|
};
|
|
6371
|
-
export declare type ConfluenceUpdateValueUserPropertyInput = {
|
|
6372
|
-
id: Scalars['ID']['input'];
|
|
6373
|
-
value: Scalars['String']['input'];
|
|
6374
|
-
};
|
|
6375
|
-
export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
6376
|
-
__typename?: 'ConfluenceUpdateValueUserPropertyPayload';
|
|
6377
|
-
errors?: Maybe<Array<MutationError>>;
|
|
6378
|
-
success: Scalars['Boolean']['output'];
|
|
6379
|
-
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
6380
|
-
};
|
|
6381
6455
|
export declare type ConfluenceUserInfo = {
|
|
6382
6456
|
__typename?: 'ConfluenceUserInfo';
|
|
6383
6457
|
type: ConfluenceUserType;
|
|
6384
6458
|
user?: Maybe<User>;
|
|
6385
6459
|
};
|
|
6386
|
-
export declare type ConfluenceUserProperty = {
|
|
6387
|
-
__typename?: 'ConfluenceUserProperty';
|
|
6388
|
-
createdDate: Scalars['String']['output'];
|
|
6389
|
-
id: Scalars['ID']['output'];
|
|
6390
|
-
key: Scalars['String']['output'];
|
|
6391
|
-
lastModifiedDate: Scalars['String']['output'];
|
|
6392
|
-
propertyId: Scalars['ID']['output'];
|
|
6393
|
-
value: Scalars['String']['output'];
|
|
6394
|
-
};
|
|
6395
6460
|
export declare enum ConfluenceUserType {
|
|
6396
6461
|
Anonymous = "ANONYMOUS",
|
|
6397
6462
|
Known = "KNOWN"
|
|
@@ -7558,9 +7623,11 @@ export declare enum CustomerServiceCustomDetailsEntityType {
|
|
|
7558
7623
|
Organization = "ORGANIZATION"
|
|
7559
7624
|
}
|
|
7560
7625
|
export declare type CustomerServiceCustomDetailsQueryResult = CustomerServiceCustomDetails | QueryError;
|
|
7626
|
+
export declare type CustomerServiceEntitledEntity = CustomerServiceIndividual | CustomerServiceOrganization;
|
|
7561
7627
|
export declare type CustomerServiceEntitlement = Node & {
|
|
7562
7628
|
__typename?: 'CustomerServiceEntitlement';
|
|
7563
7629
|
customDetails: Array<CustomerServiceCustomDetailValue>;
|
|
7630
|
+
entity: CustomerServiceEntitledEntity;
|
|
7564
7631
|
id: Scalars['ID']['output'];
|
|
7565
7632
|
product: CustomerServiceProduct;
|
|
7566
7633
|
};
|
|
@@ -9072,6 +9139,7 @@ export declare type DevOpsPullRequestDetails = {
|
|
|
9072
9139
|
destinationBranch?: Maybe<DevOpsBranchInfo>;
|
|
9073
9140
|
id: Scalars['ID']['output'];
|
|
9074
9141
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
9142
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
9075
9143
|
pullRequestInternalId?: Maybe<Scalars['String']['output']>;
|
|
9076
9144
|
repositoryId?: Maybe<Scalars['ID']['output']>;
|
|
9077
9145
|
repositoryInternalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -9081,6 +9149,7 @@ export declare type DevOpsPullRequestDetails = {
|
|
|
9081
9149
|
sanitizedAuthorId?: Maybe<Scalars['String']['output']>;
|
|
9082
9150
|
sourceBranch?: Maybe<DevOpsBranchInfo>;
|
|
9083
9151
|
status?: Maybe<DevOpsPullRequestStatus>;
|
|
9152
|
+
supportedActions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
9084
9153
|
title?: Maybe<Scalars['String']['output']>;
|
|
9085
9154
|
url?: Maybe<Scalars['String']['output']>;
|
|
9086
9155
|
};
|
|
@@ -22885,9 +22954,18 @@ export declare type HelpCenterHelpDesksArgs = {
|
|
|
22885
22954
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
22886
22955
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
22887
22956
|
};
|
|
22957
|
+
export declare type HelpCenterBanner = {
|
|
22958
|
+
__typename?: 'HelpCenterBanner';
|
|
22959
|
+
fileId?: Maybe<Scalars['String']['output']>;
|
|
22960
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
22961
|
+
};
|
|
22962
|
+
export declare type HelpCenterBannerInput = {
|
|
22963
|
+
filedId?: InputMaybe<Scalars['String']['input']>;
|
|
22964
|
+
};
|
|
22888
22965
|
export declare type HelpCenterBranding = {
|
|
22889
22966
|
__typename?: 'HelpCenterBranding';
|
|
22890
22967
|
colors?: Maybe<HelpCenterBrandingColors>;
|
|
22968
|
+
helpCenterBanner?: Maybe<HelpCenterBanner>;
|
|
22891
22969
|
logo?: Maybe<HelpCenterLogo>;
|
|
22892
22970
|
};
|
|
22893
22971
|
export declare type HelpCenterBrandingColors = {
|
|
@@ -22898,6 +22976,7 @@ export declare type HelpCenterBrandingColorsInput = {
|
|
|
22898
22976
|
primary?: InputMaybe<Scalars['String']['input']>;
|
|
22899
22977
|
};
|
|
22900
22978
|
export declare type HelpCenterBrandingInput = {
|
|
22979
|
+
banner?: InputMaybe<HelpCenterBannerInput>;
|
|
22901
22980
|
colors?: InputMaybe<HelpCenterBrandingColorsInput>;
|
|
22902
22981
|
logo?: InputMaybe<HelpCenterLogoInput>;
|
|
22903
22982
|
};
|
|
@@ -22948,15 +23027,33 @@ export declare type HelpCenterDeleteUpdateTopicPayload = Payload & {
|
|
|
22948
23027
|
};
|
|
22949
23028
|
export declare type HelpCenterHelpDesk = Node & {
|
|
22950
23029
|
__typename?: 'HelpCenterHelpDesk';
|
|
23030
|
+
announcement?: Maybe<Array<HelpCenterHelpDeskAnnouncement>>;
|
|
22951
23031
|
contactInfo: Scalars['String']['output'];
|
|
22952
23032
|
description: Scalars['String']['output'];
|
|
22953
23033
|
id: Scalars['ID']['output'];
|
|
23034
|
+
logo?: Maybe<HelpCenterHelpDeskLogo>;
|
|
22954
23035
|
name: Scalars['String']['output'];
|
|
22955
23036
|
};
|
|
23037
|
+
export declare type HelpCenterHelpDeskAnnouncement = {
|
|
23038
|
+
__typename?: 'HelpCenterHelpDeskAnnouncement';
|
|
23039
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
23040
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
23041
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
23042
|
+
linkText?: Maybe<Scalars['String']['output']>;
|
|
23043
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
23044
|
+
};
|
|
23045
|
+
export declare type HelpCenterHelpDeskAnnouncementInput = {
|
|
23046
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
23047
|
+
link?: InputMaybe<Scalars['String']['input']>;
|
|
23048
|
+
linkDescription?: InputMaybe<Scalars['String']['input']>;
|
|
23049
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
23050
|
+
};
|
|
22956
23051
|
export declare type HelpCenterHelpDeskCreateInput = {
|
|
23052
|
+
announcement?: InputMaybe<Array<HelpCenterHelpDeskAnnouncementInput>>;
|
|
22957
23053
|
contactInfo: Scalars['String']['input'];
|
|
22958
23054
|
description: Scalars['String']['input'];
|
|
22959
23055
|
helpCenterAri: Scalars['String']['input'];
|
|
23056
|
+
logo?: InputMaybe<HelpCenterHelpDeskLogoInput>;
|
|
22960
23057
|
name: Scalars['String']['input'];
|
|
22961
23058
|
};
|
|
22962
23059
|
export declare type HelpCenterHelpDeskDeleteInput = {
|
|
@@ -22974,6 +23071,14 @@ export declare type HelpCenterHelpDeskItemEdge = {
|
|
|
22974
23071
|
cursor: Scalars['String']['output'];
|
|
22975
23072
|
node?: Maybe<HelpCenterHelpDesk>;
|
|
22976
23073
|
};
|
|
23074
|
+
export declare type HelpCenterHelpDeskLogo = {
|
|
23075
|
+
__typename?: 'HelpCenterHelpDeskLogo';
|
|
23076
|
+
fileId?: Maybe<Scalars['String']['output']>;
|
|
23077
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
23078
|
+
};
|
|
23079
|
+
export declare type HelpCenterHelpDeskLogoInput = {
|
|
23080
|
+
fileId?: InputMaybe<Scalars['String']['input']>;
|
|
23081
|
+
};
|
|
22977
23082
|
export declare type HelpCenterHelpDeskPayload = Payload & {
|
|
22978
23083
|
__typename?: 'HelpCenterHelpDeskPayload';
|
|
22979
23084
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -22982,10 +23087,12 @@ export declare type HelpCenterHelpDeskPayload = Payload & {
|
|
|
22982
23087
|
};
|
|
22983
23088
|
export declare type HelpCenterHelpDeskQueryResult = HelpCenterHelpDesk | QueryError;
|
|
22984
23089
|
export declare type HelpCenterHelpDeskUpdateInput = {
|
|
23090
|
+
announcement?: InputMaybe<HelpCenterHelpDeskAnnouncementInput>;
|
|
22985
23091
|
contactInfo: Scalars['String']['input'];
|
|
22986
23092
|
description: Scalars['String']['input'];
|
|
22987
23093
|
helpCenterAri?: InputMaybe<Scalars['String']['input']>;
|
|
22988
23094
|
helpDeskId: Scalars['String']['input'];
|
|
23095
|
+
logo?: InputMaybe<HelpCenterHelpDeskLogoInput>;
|
|
22989
23096
|
name: Scalars['String']['input'];
|
|
22990
23097
|
};
|
|
22991
23098
|
export declare type HelpCenterHelpObject = HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError | HelpObjectStoreRequestForm;
|
|
@@ -24661,6 +24768,10 @@ export declare type JiraAdf = {
|
|
|
24661
24768
|
export declare type JiraAdfConvertedPlainTextArgs = {
|
|
24662
24769
|
firstNCharacters?: InputMaybe<Scalars['Int']['input']>;
|
|
24663
24770
|
};
|
|
24771
|
+
export declare type JiraAdfInput = {
|
|
24772
|
+
jsonValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
24773
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
24774
|
+
};
|
|
24664
24775
|
export declare type JiraAccessAtlassianIntelligenceFeature = {
|
|
24665
24776
|
__typename?: 'JiraAccessAtlassianIntelligenceFeature';
|
|
24666
24777
|
isAccessible?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -26072,6 +26183,14 @@ export declare type JiraDeleteCustomFilterPayload = Payload & {
|
|
|
26072
26183
|
errors?: Maybe<Array<MutationError>>;
|
|
26073
26184
|
success: Scalars['Boolean']['output'];
|
|
26074
26185
|
};
|
|
26186
|
+
export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
26187
|
+
__typename?: 'JiraDeleteIssueLinkPayload';
|
|
26188
|
+
deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
26189
|
+
errors?: Maybe<Array<MutationError>>;
|
|
26190
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
26191
|
+
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
26192
|
+
success: Scalars['Boolean']['output'];
|
|
26193
|
+
};
|
|
26075
26194
|
export declare type JiraDeleteProjectNotificationPreferencesInput = {
|
|
26076
26195
|
projectId: Scalars['ID']['input'];
|
|
26077
26196
|
};
|
|
@@ -27763,11 +27882,13 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
27763
27882
|
};
|
|
27764
27883
|
export declare type JiraIssueTransitionFieldLevelInput = {
|
|
27765
27884
|
JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
|
|
27885
|
+
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
27766
27886
|
JiraMultipleSelectField?: InputMaybe<Array<JiraUpdateMultipleSelectFieldInput>>;
|
|
27767
27887
|
JiraParentField?: InputMaybe<Array<JiraUpdateParentFieldInput>>;
|
|
27768
27888
|
JiraPriorityField?: InputMaybe<Array<JiraUpdatePriorityFieldInput>>;
|
|
27769
27889
|
JiraRadioSelectField?: InputMaybe<Array<JiraUpdateRadioSelectFieldInput>>;
|
|
27770
27890
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
27891
|
+
JiraRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
|
|
27771
27892
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
27772
27893
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
27773
27894
|
JiraSingleSelectUserPickerField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
@@ -28738,6 +28859,7 @@ export declare type JiraMutation = {
|
|
|
28738
28859
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
28739
28860
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
28740
28861
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
28862
|
+
deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
|
|
28741
28863
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
28742
28864
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
28743
28865
|
deleteJwmOverview?: Maybe<JiraWorkManagementGiraDeleteOverviewPayload>;
|
|
@@ -28796,6 +28918,7 @@ export declare type JiraMutation = {
|
|
|
28796
28918
|
updateRadioSelectField?: Maybe<JiraRadioSelectFieldPayload>;
|
|
28797
28919
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
28798
28920
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
28921
|
+
updateRichTextField?: Maybe<JiraRichTextFieldPayload>;
|
|
28799
28922
|
updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
28800
28923
|
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
28801
28924
|
updateSingleSelectUserPickerField?: Maybe<JiraSingleSelectUserPickerFieldPayload>;
|
|
@@ -28872,6 +28995,10 @@ export declare type JiraMutationDeleteGlobalPermissionGrantArgs = {
|
|
|
28872
28995
|
cloudId: Scalars['ID']['input'];
|
|
28873
28996
|
input: JiraGlobalPermissionDeleteGroupGrantInput;
|
|
28874
28997
|
};
|
|
28998
|
+
export declare type JiraMutationDeleteIssueLinkArgs = {
|
|
28999
|
+
cloudId: Scalars['ID']['input'];
|
|
29000
|
+
issueLinkId: Scalars['ID']['input'];
|
|
29001
|
+
};
|
|
28875
29002
|
export declare type JiraMutationDeleteIssueNavigatorJqlHistoryArgs = {
|
|
28876
29003
|
cloudId: Scalars['ID']['input'];
|
|
28877
29004
|
};
|
|
@@ -29051,6 +29178,9 @@ export declare type JiraMutationUpdateReleaseNotesConfigurationArgs = {
|
|
|
29051
29178
|
export declare type JiraMutationUpdateResolutionFieldArgs = {
|
|
29052
29179
|
input: JiraUpdateResolutionFieldInput;
|
|
29053
29180
|
};
|
|
29181
|
+
export declare type JiraMutationUpdateRichTextFieldArgs = {
|
|
29182
|
+
input: JiraUpdateRichTextFieldInput;
|
|
29183
|
+
};
|
|
29054
29184
|
export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
|
|
29055
29185
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
29056
29186
|
};
|
|
@@ -31419,6 +31549,16 @@ export declare type JiraRichTextFieldInput = {
|
|
|
31419
31549
|
fieldId: Scalars['ID']['input'];
|
|
31420
31550
|
richText: JiraRichTextInput;
|
|
31421
31551
|
};
|
|
31552
|
+
export declare type JiraRichTextFieldOperationInput = {
|
|
31553
|
+
document: JiraAdfInput;
|
|
31554
|
+
operation: JiraSingleValueFieldOperations;
|
|
31555
|
+
};
|
|
31556
|
+
export declare type JiraRichTextFieldPayload = Payload & {
|
|
31557
|
+
__typename?: 'JiraRichTextFieldPayload';
|
|
31558
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31559
|
+
field?: Maybe<JiraRichTextField>;
|
|
31560
|
+
success: Scalars['Boolean']['output'];
|
|
31561
|
+
};
|
|
31422
31562
|
export declare type JiraRichTextInput = {
|
|
31423
31563
|
adfValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
31424
31564
|
wikiText?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -32968,6 +33108,7 @@ export declare type JiraTeamViewField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
32968
33108
|
export declare type JiraTeamViewFieldTeamsArgs = {
|
|
32969
33109
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32970
33110
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
33111
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
32971
33112
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32972
33113
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32973
33114
|
organisationId: Scalars['ID']['input'];
|
|
@@ -33218,6 +33359,10 @@ export declare type JiraUpdateResolutionFieldInput = {
|
|
|
33218
33359
|
id: Scalars['ID']['input'];
|
|
33219
33360
|
operation: JiraResolutionFieldOperationInput;
|
|
33220
33361
|
};
|
|
33362
|
+
export declare type JiraUpdateRichTextFieldInput = {
|
|
33363
|
+
id: Scalars['ID']['input'];
|
|
33364
|
+
operation: JiraRichTextFieldOperationInput;
|
|
33365
|
+
};
|
|
33221
33366
|
export declare type JiraUpdateShortcutInput = {
|
|
33222
33367
|
projectId: Scalars['ID']['input'];
|
|
33223
33368
|
shortcutData: JiraShortcutDataInput;
|
|
@@ -34862,6 +35007,58 @@ export declare enum MarketplaceProgramStatus {
|
|
|
34862
35007
|
NotAParticipant = "NOT_A_PARTICIPANT",
|
|
34863
35008
|
Rejected = "REJECTED"
|
|
34864
35009
|
}
|
|
35010
|
+
export declare type MarketplaceStoreAlgoliaQueryFilter = {
|
|
35011
|
+
__typename?: 'MarketplaceStoreAlgoliaQueryFilter';
|
|
35012
|
+
marketingLabels: Array<Scalars['String']['output']>;
|
|
35013
|
+
};
|
|
35014
|
+
export declare type MarketplaceStoreAlgoliaQueryMetadata = {
|
|
35015
|
+
__typename?: 'MarketplaceStoreAlgoliaQueryMetadata';
|
|
35016
|
+
filter: MarketplaceStoreAlgoliaQueryFilter;
|
|
35017
|
+
sort?: Maybe<MarketplaceStoreAlgoliaQuerySort>;
|
|
35018
|
+
};
|
|
35019
|
+
export declare type MarketplaceStoreAlgoliaQuerySort = {
|
|
35020
|
+
__typename?: 'MarketplaceStoreAlgoliaQuerySort';
|
|
35021
|
+
criteria?: Maybe<Scalars['String']['output']>;
|
|
35022
|
+
};
|
|
35023
|
+
export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
|
|
35024
|
+
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
35025
|
+
description: Scalars['String']['output'];
|
|
35026
|
+
id: Scalars['ID']['output'];
|
|
35027
|
+
tagline: Scalars['String']['output'];
|
|
35028
|
+
title: Scalars['String']['output'];
|
|
35029
|
+
};
|
|
35030
|
+
export declare type MarketplaceStoreHomePageHighlightedSection = MarketplaceStoreHomePageSection & {
|
|
35031
|
+
__typename?: 'MarketplaceStoreHomePageHighlightedSection';
|
|
35032
|
+
algoliaQueryMetadata: MarketplaceStoreAlgoliaQueryMetadata;
|
|
35033
|
+
description: Scalars['String']['output'];
|
|
35034
|
+
hightlightVariation: MarketplaceStoreHomePageHighlightedSectionVariation;
|
|
35035
|
+
id: Scalars['ID']['output'];
|
|
35036
|
+
tagline: Scalars['String']['output'];
|
|
35037
|
+
tilesVariation: MarketplaceStoreTilesVariation;
|
|
35038
|
+
title: Scalars['String']['output'];
|
|
35039
|
+
};
|
|
35040
|
+
export declare enum MarketplaceStoreHomePageHighlightedSectionVariation {
|
|
35041
|
+
Prominent = "PROMINENT"
|
|
35042
|
+
}
|
|
35043
|
+
export declare type MarketplaceStoreHomePageRegularSection = MarketplaceStoreHomePageSection & {
|
|
35044
|
+
__typename?: 'MarketplaceStoreHomePageRegularSection';
|
|
35045
|
+
algoliaQueryMetadata: MarketplaceStoreAlgoliaQueryMetadata;
|
|
35046
|
+
description: Scalars['String']['output'];
|
|
35047
|
+
id: Scalars['ID']['output'];
|
|
35048
|
+
tagline: Scalars['String']['output'];
|
|
35049
|
+
tilesVariation: MarketplaceStoreTilesVariation;
|
|
35050
|
+
title: Scalars['String']['output'];
|
|
35051
|
+
};
|
|
35052
|
+
export declare type MarketplaceStoreHomePageResponse = {
|
|
35053
|
+
__typename?: 'MarketplaceStoreHomePageResponse';
|
|
35054
|
+
sections: Array<MarketplaceStoreHomePageSection>;
|
|
35055
|
+
};
|
|
35056
|
+
export declare type MarketplaceStoreHomePageSection = {
|
|
35057
|
+
description: Scalars['String']['output'];
|
|
35058
|
+
id: Scalars['ID']['output'];
|
|
35059
|
+
tagline: Scalars['String']['output'];
|
|
35060
|
+
title: Scalars['String']['output'];
|
|
35061
|
+
};
|
|
34865
35062
|
export declare type MarketplaceStoreInstallAppInput = {
|
|
34866
35063
|
appKey: Scalars['String']['input'];
|
|
34867
35064
|
target: MarketplaceStoreInstallAppTargetInput;
|
|
@@ -34895,11 +35092,16 @@ export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
|
34895
35092
|
};
|
|
34896
35093
|
export declare type MarketplaceStoreQueryApi = {
|
|
34897
35094
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
35095
|
+
homePage: MarketplaceStoreHomePageResponse;
|
|
34898
35096
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
34899
35097
|
};
|
|
34900
35098
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
34901
35099
|
id: Scalars['ID']['input'];
|
|
34902
35100
|
};
|
|
35101
|
+
export declare enum MarketplaceStoreTilesVariation {
|
|
35102
|
+
Large = "LARGE",
|
|
35103
|
+
Small = "SMALL"
|
|
35104
|
+
}
|
|
34903
35105
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
34904
35106
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
34905
35107
|
hostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -34995,6 +35197,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
34995
35197
|
export declare type Mutation = {
|
|
34996
35198
|
__typename?: 'Mutation';
|
|
34997
35199
|
ForgeAi?: Maybe<ForgeAiMutation>;
|
|
35200
|
+
actions?: Maybe<ActionsMutation>;
|
|
34998
35201
|
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
34999
35202
|
admin?: Maybe<AdminMutation>;
|
|
35000
35203
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
@@ -36057,21 +36260,16 @@ export declare type PeapMutationApi = {
|
|
|
36057
36260
|
internal: PeapInternalMutationApi;
|
|
36058
36261
|
};
|
|
36059
36262
|
export declare type PeapNewProgramInput = {
|
|
36060
|
-
cdacGroup?: InputMaybe<Scalars['String']['input']>;
|
|
36061
|
-
changeCategory?: InputMaybe<Scalars['String']['input']>;
|
|
36062
|
-
changeTicket?: InputMaybe<Scalars['String']['input']>;
|
|
36063
36263
|
description: Scalars['String']['input'];
|
|
36064
36264
|
documentationURL: Scalars['String']['input'];
|
|
36065
36265
|
name: Scalars['String']['input'];
|
|
36066
36266
|
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
36067
|
-
team?: InputMaybe<Scalars['String']['input']>;
|
|
36068
36267
|
teamChannel?: InputMaybe<Scalars['String']['input']>;
|
|
36069
36268
|
};
|
|
36070
36269
|
export declare type PeapProgram = {
|
|
36071
36270
|
__typename?: 'PEAPProgram';
|
|
36072
36271
|
activatedAt?: Maybe<Scalars['Date']['output']>;
|
|
36073
|
-
cdacCategory?: Maybe<Scalars['
|
|
36074
|
-
changeCategory?: Maybe<Scalars['String']['output']>;
|
|
36272
|
+
cdacCategory?: Maybe<Scalars['Int']['output']>;
|
|
36075
36273
|
changeTicket?: Maybe<Scalars['String']['output']>;
|
|
36076
36274
|
completedAt?: Maybe<Scalars['Date']['output']>;
|
|
36077
36275
|
createdAt: Scalars['Date']['output'];
|
|
@@ -36098,7 +36296,6 @@ export declare type PeapProgramInternalData = {
|
|
|
36098
36296
|
__typename?: 'PEAPProgramInternalData';
|
|
36099
36297
|
cdacGroup?: Maybe<Scalars['String']['output']>;
|
|
36100
36298
|
owner?: Maybe<User>;
|
|
36101
|
-
team?: Maybe<Scalars['String']['output']>;
|
|
36102
36299
|
teamChannel?: Maybe<Scalars['String']['output']>;
|
|
36103
36300
|
};
|
|
36104
36301
|
export declare type PeapProgramMutationResponse = Payload & {
|
|
@@ -36126,14 +36323,18 @@ export declare type PeapQueryApiProgramArgs = {
|
|
|
36126
36323
|
export declare type PeapQueryApiProgramsArgs = {
|
|
36127
36324
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36128
36325
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36326
|
+
params?: InputMaybe<PeapQueryParams>;
|
|
36327
|
+
};
|
|
36328
|
+
export declare type PeapQueryParams = {
|
|
36329
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
36330
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
36331
|
+
status?: InputMaybe<Array<PeapProgramStatus>>;
|
|
36129
36332
|
};
|
|
36130
36333
|
export declare type PeapUpdateProgramInput = {
|
|
36131
|
-
changeCategory?: InputMaybe<Scalars['String']['input']>;
|
|
36132
36334
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
36133
36335
|
documentationURL?: InputMaybe<Scalars['String']['input']>;
|
|
36134
36336
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
36135
36337
|
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
36136
|
-
team?: InputMaybe<Scalars['String']['input']>;
|
|
36137
36338
|
teamChannel?: InputMaybe<Scalars['String']['input']>;
|
|
36138
36339
|
};
|
|
36139
36340
|
export declare type PageInfo = {
|
|
@@ -37700,6 +37901,7 @@ export declare type Properties = {
|
|
|
37700
37901
|
};
|
|
37701
37902
|
export declare type Query = {
|
|
37702
37903
|
__typename?: 'Query';
|
|
37904
|
+
actions?: Maybe<Actions>;
|
|
37703
37905
|
activities?: Maybe<Activities>;
|
|
37704
37906
|
activity?: Maybe<Activity>;
|
|
37705
37907
|
admin?: Maybe<AdminQuery>;
|
|
@@ -40090,6 +40292,7 @@ export declare type ShepherdActorSessionInfo = {
|
|
|
40090
40292
|
__typename?: 'ShepherdActorSessionInfo';
|
|
40091
40293
|
authFactors: Array<Scalars['String']['output']>;
|
|
40092
40294
|
ipAddress: Scalars['String']['output'];
|
|
40295
|
+
loginLocation?: Maybe<ShepherdLoginLocation>;
|
|
40093
40296
|
sessionId: Scalars['String']['output'];
|
|
40094
40297
|
userAgent: Scalars['String']['output'];
|
|
40095
40298
|
};
|
|
@@ -40241,6 +40444,7 @@ export declare type ShepherdCreateAlertInput = {
|
|
|
40241
40444
|
status?: InputMaybe<ShepherdAlertStatus>;
|
|
40242
40445
|
template?: InputMaybe<ShepherdAlertTemplateType>;
|
|
40243
40446
|
title: Scalars['String']['input'];
|
|
40447
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
40244
40448
|
};
|
|
40245
40449
|
export declare type ShepherdCreateAlertPayload = Payload & {
|
|
40246
40450
|
__typename?: 'ShepherdCreateAlertPayload';
|
|
@@ -40271,6 +40475,12 @@ export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
|
40271
40475
|
node?: Maybe<ShepherdSubscription>;
|
|
40272
40476
|
success: Scalars['Boolean']['output'];
|
|
40273
40477
|
};
|
|
40478
|
+
export declare type ShepherdCreateTestAlertPayload = Payload & {
|
|
40479
|
+
__typename?: 'ShepherdCreateTestAlertPayload';
|
|
40480
|
+
errors?: Maybe<Array<MutationError>>;
|
|
40481
|
+
node?: Maybe<ShepherdAlert>;
|
|
40482
|
+
success: Scalars['Boolean']['output'];
|
|
40483
|
+
};
|
|
40274
40484
|
export declare type ShepherdCreateWebhookInput = {
|
|
40275
40485
|
authToken?: InputMaybe<Scalars['String']['input']>;
|
|
40276
40486
|
callbackURL: Scalars['URL']['input'];
|
|
@@ -40433,6 +40643,7 @@ export declare type ShepherdMutation = {
|
|
|
40433
40643
|
actor?: Maybe<ShepherdActorMutations>;
|
|
40434
40644
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
40435
40645
|
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
40646
|
+
createTestAlert?: Maybe<ShepherdCreateTestAlertPayload>;
|
|
40436
40647
|
deleteAlert?: Maybe<ShepherdDeleteAlertPayload>;
|
|
40437
40648
|
subscription?: Maybe<ShepherdSubscriptionMutations>;
|
|
40438
40649
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
@@ -40445,6 +40656,9 @@ export declare type ShepherdMutationCreateAlertArgs = {
|
|
|
40445
40656
|
export declare type ShepherdMutationCreateExampleAlertArgs = {
|
|
40446
40657
|
input: ShepherdCreateExampleAlertInput;
|
|
40447
40658
|
};
|
|
40659
|
+
export declare type ShepherdMutationCreateTestAlertArgs = {
|
|
40660
|
+
workspaceId: Scalars['ID']['input'];
|
|
40661
|
+
};
|
|
40448
40662
|
export declare type ShepherdMutationDeleteAlertArgs = {
|
|
40449
40663
|
id: Scalars['ID']['input'];
|
|
40450
40664
|
};
|