@forge/cli-shared 3.23.1-next.0-experimental-6adbba3 → 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 +2 -4
- package/out/graphql/graphql-types.d.ts +174 -9
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +16 -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
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 3.23.1-next.
|
|
3
|
+
## 3.23.1-next.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
- @sentry/node
|
|
7
|
+
- c1d7f59: Consistent formatting of forge command suggestions in output
|
|
10
8
|
|
|
11
9
|
## 3.23.1-next.0
|
|
12
10
|
|
|
@@ -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'];
|
|
@@ -7499,9 +7623,11 @@ export declare enum CustomerServiceCustomDetailsEntityType {
|
|
|
7499
7623
|
Organization = "ORGANIZATION"
|
|
7500
7624
|
}
|
|
7501
7625
|
export declare type CustomerServiceCustomDetailsQueryResult = CustomerServiceCustomDetails | QueryError;
|
|
7626
|
+
export declare type CustomerServiceEntitledEntity = CustomerServiceIndividual | CustomerServiceOrganization;
|
|
7502
7627
|
export declare type CustomerServiceEntitlement = Node & {
|
|
7503
7628
|
__typename?: 'CustomerServiceEntitlement';
|
|
7504
7629
|
customDetails: Array<CustomerServiceCustomDetailValue>;
|
|
7630
|
+
entity: CustomerServiceEntitledEntity;
|
|
7505
7631
|
id: Scalars['ID']['output'];
|
|
7506
7632
|
product: CustomerServiceProduct;
|
|
7507
7633
|
};
|
|
@@ -9013,6 +9139,7 @@ export declare type DevOpsPullRequestDetails = {
|
|
|
9013
9139
|
destinationBranch?: Maybe<DevOpsBranchInfo>;
|
|
9014
9140
|
id: Scalars['ID']['output'];
|
|
9015
9141
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
9142
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
9016
9143
|
pullRequestInternalId?: Maybe<Scalars['String']['output']>;
|
|
9017
9144
|
repositoryId?: Maybe<Scalars['ID']['output']>;
|
|
9018
9145
|
repositoryInternalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -9022,6 +9149,7 @@ export declare type DevOpsPullRequestDetails = {
|
|
|
9022
9149
|
sanitizedAuthorId?: Maybe<Scalars['String']['output']>;
|
|
9023
9150
|
sourceBranch?: Maybe<DevOpsBranchInfo>;
|
|
9024
9151
|
status?: Maybe<DevOpsPullRequestStatus>;
|
|
9152
|
+
supportedActions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
9025
9153
|
title?: Maybe<Scalars['String']['output']>;
|
|
9026
9154
|
url?: Maybe<Scalars['String']['output']>;
|
|
9027
9155
|
};
|
|
@@ -24640,6 +24768,10 @@ export declare type JiraAdf = {
|
|
|
24640
24768
|
export declare type JiraAdfConvertedPlainTextArgs = {
|
|
24641
24769
|
firstNCharacters?: InputMaybe<Scalars['Int']['input']>;
|
|
24642
24770
|
};
|
|
24771
|
+
export declare type JiraAdfInput = {
|
|
24772
|
+
jsonValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
24773
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
24774
|
+
};
|
|
24643
24775
|
export declare type JiraAccessAtlassianIntelligenceFeature = {
|
|
24644
24776
|
__typename?: 'JiraAccessAtlassianIntelligenceFeature';
|
|
24645
24777
|
isAccessible?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -26053,6 +26185,7 @@ export declare type JiraDeleteCustomFilterPayload = Payload & {
|
|
|
26053
26185
|
};
|
|
26054
26186
|
export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
26055
26187
|
__typename?: 'JiraDeleteIssueLinkPayload';
|
|
26188
|
+
deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
26056
26189
|
errors?: Maybe<Array<MutationError>>;
|
|
26057
26190
|
id?: Maybe<Scalars['ID']['output']>;
|
|
26058
26191
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -27749,11 +27882,13 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
27749
27882
|
};
|
|
27750
27883
|
export declare type JiraIssueTransitionFieldLevelInput = {
|
|
27751
27884
|
JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
|
|
27885
|
+
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
27752
27886
|
JiraMultipleSelectField?: InputMaybe<Array<JiraUpdateMultipleSelectFieldInput>>;
|
|
27753
27887
|
JiraParentField?: InputMaybe<Array<JiraUpdateParentFieldInput>>;
|
|
27754
27888
|
JiraPriorityField?: InputMaybe<Array<JiraUpdatePriorityFieldInput>>;
|
|
27755
27889
|
JiraRadioSelectField?: InputMaybe<Array<JiraUpdateRadioSelectFieldInput>>;
|
|
27756
27890
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
27891
|
+
JiraRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
|
|
27757
27892
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
27758
27893
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
27759
27894
|
JiraSingleSelectUserPickerField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
@@ -28783,6 +28918,7 @@ export declare type JiraMutation = {
|
|
|
28783
28918
|
updateRadioSelectField?: Maybe<JiraRadioSelectFieldPayload>;
|
|
28784
28919
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
28785
28920
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
28921
|
+
updateRichTextField?: Maybe<JiraRichTextFieldPayload>;
|
|
28786
28922
|
updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
28787
28923
|
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
28788
28924
|
updateSingleSelectUserPickerField?: Maybe<JiraSingleSelectUserPickerFieldPayload>;
|
|
@@ -29042,6 +29178,9 @@ export declare type JiraMutationUpdateReleaseNotesConfigurationArgs = {
|
|
|
29042
29178
|
export declare type JiraMutationUpdateResolutionFieldArgs = {
|
|
29043
29179
|
input: JiraUpdateResolutionFieldInput;
|
|
29044
29180
|
};
|
|
29181
|
+
export declare type JiraMutationUpdateRichTextFieldArgs = {
|
|
29182
|
+
input: JiraUpdateRichTextFieldInput;
|
|
29183
|
+
};
|
|
29045
29184
|
export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
|
|
29046
29185
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
29047
29186
|
};
|
|
@@ -31410,6 +31549,16 @@ export declare type JiraRichTextFieldInput = {
|
|
|
31410
31549
|
fieldId: Scalars['ID']['input'];
|
|
31411
31550
|
richText: JiraRichTextInput;
|
|
31412
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
|
+
};
|
|
31413
31562
|
export declare type JiraRichTextInput = {
|
|
31414
31563
|
adfValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
31415
31564
|
wikiText?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -33210,6 +33359,10 @@ export declare type JiraUpdateResolutionFieldInput = {
|
|
|
33210
33359
|
id: Scalars['ID']['input'];
|
|
33211
33360
|
operation: JiraResolutionFieldOperationInput;
|
|
33212
33361
|
};
|
|
33362
|
+
export declare type JiraUpdateRichTextFieldInput = {
|
|
33363
|
+
id: Scalars['ID']['input'];
|
|
33364
|
+
operation: JiraRichTextFieldOperationInput;
|
|
33365
|
+
};
|
|
33213
33366
|
export declare type JiraUpdateShortcutInput = {
|
|
33214
33367
|
projectId: Scalars['ID']['input'];
|
|
33215
33368
|
shortcutData: JiraShortcutDataInput;
|
|
@@ -35044,6 +35197,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
35044
35197
|
export declare type Mutation = {
|
|
35045
35198
|
__typename?: 'Mutation';
|
|
35046
35199
|
ForgeAi?: Maybe<ForgeAiMutation>;
|
|
35200
|
+
actions?: Maybe<ActionsMutation>;
|
|
35047
35201
|
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
35048
35202
|
admin?: Maybe<AdminMutation>;
|
|
35049
35203
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
@@ -36106,21 +36260,16 @@ export declare type PeapMutationApi = {
|
|
|
36106
36260
|
internal: PeapInternalMutationApi;
|
|
36107
36261
|
};
|
|
36108
36262
|
export declare type PeapNewProgramInput = {
|
|
36109
|
-
cdacGroup?: InputMaybe<Scalars['String']['input']>;
|
|
36110
|
-
changeCategory?: InputMaybe<Scalars['String']['input']>;
|
|
36111
|
-
changeTicket?: InputMaybe<Scalars['String']['input']>;
|
|
36112
36263
|
description: Scalars['String']['input'];
|
|
36113
36264
|
documentationURL: Scalars['String']['input'];
|
|
36114
36265
|
name: Scalars['String']['input'];
|
|
36115
36266
|
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
36116
|
-
team?: InputMaybe<Scalars['String']['input']>;
|
|
36117
36267
|
teamChannel?: InputMaybe<Scalars['String']['input']>;
|
|
36118
36268
|
};
|
|
36119
36269
|
export declare type PeapProgram = {
|
|
36120
36270
|
__typename?: 'PEAPProgram';
|
|
36121
36271
|
activatedAt?: Maybe<Scalars['Date']['output']>;
|
|
36122
|
-
cdacCategory?: Maybe<Scalars['
|
|
36123
|
-
changeCategory?: Maybe<Scalars['String']['output']>;
|
|
36272
|
+
cdacCategory?: Maybe<Scalars['Int']['output']>;
|
|
36124
36273
|
changeTicket?: Maybe<Scalars['String']['output']>;
|
|
36125
36274
|
completedAt?: Maybe<Scalars['Date']['output']>;
|
|
36126
36275
|
createdAt: Scalars['Date']['output'];
|
|
@@ -36147,7 +36296,6 @@ export declare type PeapProgramInternalData = {
|
|
|
36147
36296
|
__typename?: 'PEAPProgramInternalData';
|
|
36148
36297
|
cdacGroup?: Maybe<Scalars['String']['output']>;
|
|
36149
36298
|
owner?: Maybe<User>;
|
|
36150
|
-
team?: Maybe<Scalars['String']['output']>;
|
|
36151
36299
|
teamChannel?: Maybe<Scalars['String']['output']>;
|
|
36152
36300
|
};
|
|
36153
36301
|
export declare type PeapProgramMutationResponse = Payload & {
|
|
@@ -36175,14 +36323,18 @@ export declare type PeapQueryApiProgramArgs = {
|
|
|
36175
36323
|
export declare type PeapQueryApiProgramsArgs = {
|
|
36176
36324
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36177
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>>;
|
|
36178
36332
|
};
|
|
36179
36333
|
export declare type PeapUpdateProgramInput = {
|
|
36180
|
-
changeCategory?: InputMaybe<Scalars['String']['input']>;
|
|
36181
36334
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
36182
36335
|
documentationURL?: InputMaybe<Scalars['String']['input']>;
|
|
36183
36336
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
36184
36337
|
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
36185
|
-
team?: InputMaybe<Scalars['String']['input']>;
|
|
36186
36338
|
teamChannel?: InputMaybe<Scalars['String']['input']>;
|
|
36187
36339
|
};
|
|
36188
36340
|
export declare type PageInfo = {
|
|
@@ -37749,6 +37901,7 @@ export declare type Properties = {
|
|
|
37749
37901
|
};
|
|
37750
37902
|
export declare type Query = {
|
|
37751
37903
|
__typename?: 'Query';
|
|
37904
|
+
actions?: Maybe<Actions>;
|
|
37752
37905
|
activities?: Maybe<Activities>;
|
|
37753
37906
|
activity?: Maybe<Activity>;
|
|
37754
37907
|
admin?: Maybe<AdminQuery>;
|
|
@@ -40139,6 +40292,7 @@ export declare type ShepherdActorSessionInfo = {
|
|
|
40139
40292
|
__typename?: 'ShepherdActorSessionInfo';
|
|
40140
40293
|
authFactors: Array<Scalars['String']['output']>;
|
|
40141
40294
|
ipAddress: Scalars['String']['output'];
|
|
40295
|
+
loginLocation?: Maybe<ShepherdLoginLocation>;
|
|
40142
40296
|
sessionId: Scalars['String']['output'];
|
|
40143
40297
|
userAgent: Scalars['String']['output'];
|
|
40144
40298
|
};
|
|
@@ -40290,6 +40444,7 @@ export declare type ShepherdCreateAlertInput = {
|
|
|
40290
40444
|
status?: InputMaybe<ShepherdAlertStatus>;
|
|
40291
40445
|
template?: InputMaybe<ShepherdAlertTemplateType>;
|
|
40292
40446
|
title: Scalars['String']['input'];
|
|
40447
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
40293
40448
|
};
|
|
40294
40449
|
export declare type ShepherdCreateAlertPayload = Payload & {
|
|
40295
40450
|
__typename?: 'ShepherdCreateAlertPayload';
|
|
@@ -40320,6 +40475,12 @@ export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
|
40320
40475
|
node?: Maybe<ShepherdSubscription>;
|
|
40321
40476
|
success: Scalars['Boolean']['output'];
|
|
40322
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
|
+
};
|
|
40323
40484
|
export declare type ShepherdCreateWebhookInput = {
|
|
40324
40485
|
authToken?: InputMaybe<Scalars['String']['input']>;
|
|
40325
40486
|
callbackURL: Scalars['URL']['input'];
|
|
@@ -40482,6 +40643,7 @@ export declare type ShepherdMutation = {
|
|
|
40482
40643
|
actor?: Maybe<ShepherdActorMutations>;
|
|
40483
40644
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
40484
40645
|
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
40646
|
+
createTestAlert?: Maybe<ShepherdCreateTestAlertPayload>;
|
|
40485
40647
|
deleteAlert?: Maybe<ShepherdDeleteAlertPayload>;
|
|
40486
40648
|
subscription?: Maybe<ShepherdSubscriptionMutations>;
|
|
40487
40649
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
@@ -40494,6 +40656,9 @@ export declare type ShepherdMutationCreateAlertArgs = {
|
|
|
40494
40656
|
export declare type ShepherdMutationCreateExampleAlertArgs = {
|
|
40495
40657
|
input: ShepherdCreateExampleAlertInput;
|
|
40496
40658
|
};
|
|
40659
|
+
export declare type ShepherdMutationCreateTestAlertArgs = {
|
|
40660
|
+
workspaceId: Scalars['ID']['input'];
|
|
40661
|
+
};
|
|
40497
40662
|
export declare type ShepherdMutationDeleteAlertArgs = {
|
|
40498
40663
|
id: Scalars['ID']['input'];
|
|
40499
40664
|
};
|