@forge/cli-shared 3.13.0-next.9 → 3.14.0-next.0
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 +51 -0
- package/out/config/config-file.d.ts +2 -0
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +7 -0
- package/out/graphql/graphql-types.d.ts +257 -124
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +34 -16
- package/out/index.d.ts +1 -0
- package/out/index.d.ts.map +1 -1
- package/out/index.js +1 -0
- package/out/runtimes/helper.d.ts +6 -0
- package/out/runtimes/helper.d.ts.map +1 -0
- package/out/runtimes/helper.js +18 -0
- package/out/runtimes/index.d.ts +2 -0
- package/out/runtimes/index.d.ts.map +1 -0
- package/out/runtimes/index.js +4 -0
- package/out/service/feature-flag-service.d.ts +0 -2
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +0 -4
- package/package.json +2 -2
|
@@ -5179,6 +5179,46 @@ export declare type ConnectAppScope = {
|
|
|
5179
5179
|
capability: Scalars['String'];
|
|
5180
5180
|
atlassianProductName: Scalars['String'];
|
|
5181
5181
|
};
|
|
5182
|
+
export declare type ConnectedAppsAppVersion = {
|
|
5183
|
+
__typename?: 'ConnectedAppsAppVersion';
|
|
5184
|
+
id: Scalars['ID'];
|
|
5185
|
+
version?: Maybe<Scalars['String']>;
|
|
5186
|
+
permissions?: Maybe<ConnectedAppsPermissions>;
|
|
5187
|
+
};
|
|
5188
|
+
export declare type ConnectedAppsConnectApp = {
|
|
5189
|
+
__typename?: 'ConnectedAppsConnectApp';
|
|
5190
|
+
id: Scalars['ID'];
|
|
5191
|
+
name?: Maybe<Scalars['String']>;
|
|
5192
|
+
description?: Maybe<Scalars['String']>;
|
|
5193
|
+
vendorName?: Maybe<Scalars['String']>;
|
|
5194
|
+
installationsByContext?: Maybe<Array<ConnectedAppsConnectInstallations>>;
|
|
5195
|
+
};
|
|
5196
|
+
export declare type ConnectedAppsConnectAppInstallationsByContextArgs = {
|
|
5197
|
+
contexts: Array<Scalars['ID']>;
|
|
5198
|
+
};
|
|
5199
|
+
export declare type ConnectedAppsConnectInstallations = {
|
|
5200
|
+
__typename?: 'ConnectedAppsConnectInstallations';
|
|
5201
|
+
id: Scalars['String'];
|
|
5202
|
+
appId: Scalars['String'];
|
|
5203
|
+
context: Scalars['String'];
|
|
5204
|
+
appVersion?: Maybe<ConnectedAppsAppVersion>;
|
|
5205
|
+
};
|
|
5206
|
+
export declare type ConnectedAppsPermissions = {
|
|
5207
|
+
__typename?: 'ConnectedAppsPermissions';
|
|
5208
|
+
scopes?: Maybe<Array<ConnectedAppsScope>>;
|
|
5209
|
+
egress?: Maybe<Array<ConnectedAppsScopeAppNetworkEgressPermission>>;
|
|
5210
|
+
};
|
|
5211
|
+
export declare type ConnectedAppsScope = {
|
|
5212
|
+
__typename?: 'ConnectedAppsScope';
|
|
5213
|
+
key: Scalars['String'];
|
|
5214
|
+
name?: Maybe<Scalars['String']>;
|
|
5215
|
+
description?: Maybe<Scalars['String']>;
|
|
5216
|
+
};
|
|
5217
|
+
export declare type ConnectedAppsScopeAppNetworkEgressPermission = {
|
|
5218
|
+
__typename?: 'ConnectedAppsScopeAppNetworkEgressPermission';
|
|
5219
|
+
type?: Maybe<Scalars['String']>;
|
|
5220
|
+
addresses?: Maybe<Array<Scalars['String']>>;
|
|
5221
|
+
};
|
|
5182
5222
|
export declare type ContainerEventObject = {
|
|
5183
5223
|
__typename?: 'ContainerEventObject';
|
|
5184
5224
|
id: Scalars['ID'];
|
|
@@ -7927,6 +7967,7 @@ export declare type EcosystemQuery = {
|
|
|
7927
7967
|
appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
|
|
7928
7968
|
appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
|
|
7929
7969
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
7970
|
+
connectApps?: Maybe<Array<ConnectedAppsConnectApp>>;
|
|
7930
7971
|
appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
|
|
7931
7972
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
7932
7973
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
@@ -7961,6 +8002,10 @@ export declare type EcosystemQueryAppInstallationsByAppArgs = {
|
|
|
7961
8002
|
export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
7962
8003
|
appKey: Scalars['ID'];
|
|
7963
8004
|
};
|
|
8005
|
+
export declare type EcosystemQueryConnectAppsArgs = {
|
|
8006
|
+
appIds: Array<Scalars['String']>;
|
|
8007
|
+
contextIds: Array<Scalars['String']>;
|
|
8008
|
+
};
|
|
7964
8009
|
export declare type EcosystemQueryAppEnvironmentsByOAuthClientIdsArgs = {
|
|
7965
8010
|
oauthClientIds: Array<Scalars['ID']>;
|
|
7966
8011
|
};
|
|
@@ -7994,11 +8039,15 @@ export declare type ErsLifecycleMutation = {
|
|
|
7994
8039
|
export declare type ErsLifecycleQuery = {
|
|
7995
8040
|
__typename?: 'ErsLifecycleQuery';
|
|
7996
8041
|
customEntityDefinitions?: Maybe<Array<Maybe<CustomEntityDefinition>>>;
|
|
8042
|
+
doneEntitiesFromERS?: Maybe<Array<Maybe<CustomEntityDefinition>>>;
|
|
7997
8043
|
};
|
|
7998
8044
|
export declare type ErsLifecycleQueryCustomEntityDefinitionsArgs = {
|
|
7999
8045
|
entities: Array<Scalars['String']>;
|
|
8000
8046
|
oauthClientId: Scalars['String'];
|
|
8001
8047
|
};
|
|
8048
|
+
export declare type ErsLifecycleQueryDoneEntitiesFromErsArgs = {
|
|
8049
|
+
oauthClientId: Scalars['String'];
|
|
8050
|
+
};
|
|
8002
8051
|
export declare type Estimate = {
|
|
8003
8052
|
__typename?: 'Estimate';
|
|
8004
8053
|
storyPoints?: Maybe<Scalars['Float']>;
|
|
@@ -8285,7 +8334,8 @@ export declare type ForgeAuditLogEdge = {
|
|
|
8285
8334
|
};
|
|
8286
8335
|
export declare enum ForgeAuditLogsActionType {
|
|
8287
8336
|
ContributorAdded = "CONTRIBUTOR_ADDED",
|
|
8288
|
-
ContributorRemoved = "CONTRIBUTOR_REMOVED"
|
|
8337
|
+
ContributorRemoved = "CONTRIBUTOR_REMOVED",
|
|
8338
|
+
OwnershipTransferred = "OWNERSHIP_TRANSFERRED"
|
|
8289
8339
|
}
|
|
8290
8340
|
export declare type ForgeAuditLogsAppContributor = {
|
|
8291
8341
|
__typename?: 'ForgeAuditLogsAppContributor';
|
|
@@ -8999,7 +9049,7 @@ export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObje
|
|
|
8999
9049
|
export declare type HelpCenterHomePageLayout = {
|
|
9000
9050
|
__typename?: 'HelpCenterHomePageLayout';
|
|
9001
9051
|
layoutId: Scalars['ID'];
|
|
9002
|
-
data?: Maybe<
|
|
9052
|
+
data?: Maybe<HelpLayoutResult>;
|
|
9003
9053
|
};
|
|
9004
9054
|
export declare type HelpCenterMutationApi = {
|
|
9005
9055
|
__typename?: 'HelpCenterMutationApi';
|
|
@@ -9142,83 +9192,140 @@ export declare type HelpLayoutSectionsArgs = {
|
|
|
9142
9192
|
first?: Maybe<Scalars['Int']>;
|
|
9143
9193
|
after?: Maybe<Scalars['String']>;
|
|
9144
9194
|
};
|
|
9145
|
-
export declare type
|
|
9146
|
-
|
|
9147
|
-
|
|
9148
|
-
|
|
9195
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement;
|
|
9196
|
+
export declare type HelpLayoutAtomicElementInput = {
|
|
9197
|
+
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
9198
|
+
imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
|
|
9199
|
+
headingConfigInput?: Maybe<HelpLayoutHeadingConfigInput>;
|
|
9200
|
+
searchConfigInput?: Maybe<HelpLayoutSearchConfigInput>;
|
|
9201
|
+
paragraphConfigInput?: Maybe<HelpLayoutParagraphConfigInput>;
|
|
9202
|
+
};
|
|
9203
|
+
export declare enum HelpLayoutAtomicElementKey {
|
|
9204
|
+
Image = "IMAGE",
|
|
9205
|
+
Heading = "HEADING",
|
|
9206
|
+
Paragraph = "PARAGRAPH",
|
|
9207
|
+
Search = "SEARCH"
|
|
9208
|
+
}
|
|
9209
|
+
export declare type HelpLayoutAtomicElementType = {
|
|
9210
|
+
__typename?: 'HelpLayoutAtomicElementType';
|
|
9211
|
+
key?: Maybe<HelpLayoutAtomicElementKey>;
|
|
9212
|
+
displayName?: Maybe<Scalars['String']>;
|
|
9213
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
9214
|
+
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
9149
9215
|
};
|
|
9150
|
-
export declare type
|
|
9151
|
-
|
|
9216
|
+
export declare type HelpLayoutCompositeElement = {
|
|
9217
|
+
id: Scalars['ID'];
|
|
9218
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9219
|
+
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
9220
|
+
type?: Maybe<HelpLayoutCompositeElementType>;
|
|
9152
9221
|
};
|
|
9153
|
-
export declare
|
|
9154
|
-
|
|
9155
|
-
|
|
9222
|
+
export declare enum HelpLayoutCompositeElementKey {
|
|
9223
|
+
LinkCard = "LINK_CARD"
|
|
9224
|
+
}
|
|
9225
|
+
export declare type HelpLayoutCompositeElementType = {
|
|
9226
|
+
__typename?: 'HelpLayoutCompositeElementType';
|
|
9227
|
+
key?: Maybe<HelpLayoutCompositeElementKey>;
|
|
9228
|
+
displayName?: Maybe<Scalars['String']>;
|
|
9229
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
9230
|
+
allowedElements?: Maybe<Array<Maybe<HelpLayoutAtomicElementKey>>>;
|
|
9231
|
+
};
|
|
9232
|
+
export declare type HelpLayoutCreatePayload = Payload & {
|
|
9233
|
+
__typename?: 'HelpLayoutCreatePayload';
|
|
9234
|
+
success: Scalars['Boolean'];
|
|
9235
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9236
|
+
layoutId?: Maybe<Scalars['ID']>;
|
|
9156
9237
|
};
|
|
9157
9238
|
export declare type HelpLayoutCreationInput = {
|
|
9239
|
+
parentId: Scalars['ID'];
|
|
9158
9240
|
sections: Array<HelpLayoutSectionInput>;
|
|
9159
9241
|
};
|
|
9160
|
-
export declare type HelpLayoutElement =
|
|
9242
|
+
export declare type HelpLayoutElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement | HelpLayoutLinkCardCompositeElement;
|
|
9161
9243
|
export declare type HelpLayoutElementInput = {
|
|
9162
|
-
|
|
9244
|
+
elementTypeKey: HelpLayoutElementKey;
|
|
9163
9245
|
imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
|
|
9164
|
-
|
|
9246
|
+
headingConfigInput?: Maybe<HelpLayoutHeadingConfigInput>;
|
|
9247
|
+
paragraphConfigInput?: Maybe<HelpLayoutParagraphConfigInput>;
|
|
9248
|
+
searchConfigInput?: Maybe<HelpLayoutSearchConfigInput>;
|
|
9249
|
+
linkCardInput?: Maybe<HelpLayoutLinkCardInput>;
|
|
9165
9250
|
};
|
|
9166
|
-
export declare
|
|
9167
|
-
name?: Maybe<HelpLayoutElementTypeName>;
|
|
9168
|
-
displayName?: Maybe<Scalars['String']>;
|
|
9169
|
-
iconUrl?: Maybe<Scalars['String']>;
|
|
9170
|
-
};
|
|
9171
|
-
export declare enum HelpLayoutElementTypeInput {
|
|
9172
|
-
Image = "IMAGE",
|
|
9173
|
-
Text = "TEXT"
|
|
9174
|
-
}
|
|
9175
|
-
export declare enum HelpLayoutElementTypeName {
|
|
9251
|
+
export declare enum HelpLayoutElementKey {
|
|
9176
9252
|
Image = "IMAGE",
|
|
9177
|
-
|
|
9178
|
-
|
|
9253
|
+
Heading = "HEADING",
|
|
9254
|
+
Paragraph = "PARAGRAPH",
|
|
9255
|
+
Search = "SEARCH",
|
|
9256
|
+
LinkCard = "LINK_CARD"
|
|
9179
9257
|
}
|
|
9180
|
-
export declare type
|
|
9181
|
-
|
|
9182
|
-
|
|
9183
|
-
|
|
9184
|
-
|
|
9185
|
-
|
|
9186
|
-
header?: Maybe<Scalars['String']>;
|
|
9187
|
-
isSearchBarShown?: Maybe<Scalars['Boolean']>;
|
|
9188
|
-
backgroundImageUrl?: Maybe<Scalars['String']>;
|
|
9258
|
+
export declare type HelpLayoutElementTypes = HelpLayoutAtomicElementType | HelpLayoutCompositeElementType;
|
|
9259
|
+
export declare type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
9260
|
+
__typename?: 'HelpLayoutHeadingAtomicElement';
|
|
9261
|
+
id: Scalars['ID'];
|
|
9262
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9263
|
+
config?: Maybe<HelpLayoutHeadingAtomicElementConfig>;
|
|
9189
9264
|
};
|
|
9190
|
-
export declare type
|
|
9191
|
-
__typename?: '
|
|
9192
|
-
|
|
9193
|
-
|
|
9194
|
-
iconUrl?: Maybe<Scalars['String']>;
|
|
9265
|
+
export declare type HelpLayoutHeadingAtomicElementConfig = {
|
|
9266
|
+
__typename?: 'HelpLayoutHeadingAtomicElementConfig';
|
|
9267
|
+
text?: Maybe<Scalars['String']>;
|
|
9268
|
+
headingType?: Maybe<HelpLayoutHeadingType>;
|
|
9195
9269
|
};
|
|
9196
|
-
export declare type
|
|
9197
|
-
|
|
9270
|
+
export declare type HelpLayoutHeadingConfigInput = {
|
|
9271
|
+
text: Scalars['String'];
|
|
9272
|
+
headingType: HelpLayoutHeadingType;
|
|
9273
|
+
visualConfig: Scalars['String'];
|
|
9274
|
+
};
|
|
9275
|
+
export declare enum HelpLayoutHeadingType {
|
|
9276
|
+
H1 = "h1",
|
|
9277
|
+
H2 = "h2",
|
|
9278
|
+
H3 = "h3",
|
|
9279
|
+
H4 = "h4",
|
|
9280
|
+
H5 = "h5",
|
|
9281
|
+
H6 = "h6"
|
|
9282
|
+
}
|
|
9283
|
+
export declare type HelpLayoutImageAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
9284
|
+
__typename?: 'HelpLayoutImageAtomicElement';
|
|
9285
|
+
id: Scalars['ID'];
|
|
9286
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9287
|
+
config?: Maybe<HelpLayoutImageAtomicElementConfig>;
|
|
9288
|
+
data?: Maybe<HelpLayoutImageAtomicElementData>;
|
|
9289
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
9290
|
+
};
|
|
9291
|
+
export declare type HelpLayoutImageAtomicElementConfig = {
|
|
9292
|
+
__typename?: 'HelpLayoutImageAtomicElementConfig';
|
|
9198
9293
|
altText?: Maybe<Scalars['String']>;
|
|
9199
|
-
caption?: Maybe<Scalars['String']>;
|
|
9200
|
-
};
|
|
9201
|
-
export declare type HelpLayoutImageElement = {
|
|
9202
|
-
__typename?: 'HelpLayoutImageElement';
|
|
9203
|
-
config?: Maybe<HelpLayoutImageElementConfig>;
|
|
9204
9294
|
};
|
|
9205
|
-
export declare type
|
|
9206
|
-
__typename?: '
|
|
9207
|
-
|
|
9208
|
-
altText?: Maybe<Scalars['String']>;
|
|
9209
|
-
caption?: Maybe<Scalars['String']>;
|
|
9295
|
+
export declare type HelpLayoutImageAtomicElementData = {
|
|
9296
|
+
__typename?: 'HelpLayoutImageAtomicElementData';
|
|
9297
|
+
imageUrl?: Maybe<Scalars['String']>;
|
|
9210
9298
|
};
|
|
9211
|
-
export declare type
|
|
9212
|
-
|
|
9213
|
-
|
|
9214
|
-
|
|
9215
|
-
|
|
9299
|
+
export declare type HelpLayoutImageConfigInput = {
|
|
9300
|
+
fileId: Scalars['String'];
|
|
9301
|
+
altText: Scalars['String'];
|
|
9302
|
+
visualConfig: Scalars['String'];
|
|
9303
|
+
};
|
|
9304
|
+
export declare type HelpLayoutLinkCardCompositeElement = HelpLayoutVisualEntity & HelpLayoutCompositeElement & Node & {
|
|
9305
|
+
__typename?: 'HelpLayoutLinkCardCompositeElement';
|
|
9306
|
+
id: Scalars['ID'];
|
|
9307
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9308
|
+
config?: Maybe<Scalars['String']>;
|
|
9309
|
+
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
9310
|
+
type?: Maybe<HelpLayoutCompositeElementType>;
|
|
9311
|
+
};
|
|
9312
|
+
export declare type HelpLayoutLinkCardInput = {
|
|
9313
|
+
children: Array<HelpLayoutAtomicElementInput>;
|
|
9314
|
+
type: HelpLayoutCompositeElementKey;
|
|
9315
|
+
visualConfig: Scalars['String'];
|
|
9316
|
+
config: Scalars['String'];
|
|
9317
|
+
};
|
|
9318
|
+
export declare type HelpLayoutMediaConfig = {
|
|
9319
|
+
__typename?: 'HelpLayoutMediaConfig';
|
|
9320
|
+
mediaUrl?: Maybe<Scalars['String']>;
|
|
9321
|
+
mediaToken?: Maybe<Scalars['String']>;
|
|
9322
|
+
mediaCollectionName?: Maybe<Scalars['String']>;
|
|
9216
9323
|
};
|
|
9217
9324
|
export declare type HelpLayoutMutationApi = {
|
|
9218
9325
|
__typename?: 'HelpLayoutMutationApi';
|
|
9219
|
-
createLayout:
|
|
9220
|
-
deleteLayout?: Maybe<
|
|
9221
|
-
updateLayout?: Maybe<
|
|
9326
|
+
createLayout: HelpLayoutCreatePayload;
|
|
9327
|
+
deleteLayout?: Maybe<Payload>;
|
|
9328
|
+
updateLayout?: Maybe<Payload>;
|
|
9222
9329
|
};
|
|
9223
9330
|
export declare type HelpLayoutMutationApiCreateLayoutArgs = {
|
|
9224
9331
|
input: HelpLayoutCreationInput;
|
|
@@ -9227,17 +9334,50 @@ export declare type HelpLayoutMutationApiDeleteLayoutArgs = {
|
|
|
9227
9334
|
layoutId: Scalars['ID'];
|
|
9228
9335
|
};
|
|
9229
9336
|
export declare type HelpLayoutMutationApiUpdateLayoutArgs = {
|
|
9230
|
-
|
|
9231
|
-
|
|
9337
|
+
input: HelpLayoutUpdateInput;
|
|
9338
|
+
};
|
|
9339
|
+
export declare type HelpLayoutParagraphAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
9340
|
+
__typename?: 'HelpLayoutParagraphAtomicElement';
|
|
9341
|
+
id: Scalars['ID'];
|
|
9342
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9343
|
+
config?: Maybe<HelpLayoutParagraphAtomicElementConfig>;
|
|
9344
|
+
};
|
|
9345
|
+
export declare type HelpLayoutParagraphAtomicElementConfig = {
|
|
9346
|
+
__typename?: 'HelpLayoutParagraphAtomicElementConfig';
|
|
9347
|
+
adf?: Maybe<Scalars['String']>;
|
|
9348
|
+
};
|
|
9349
|
+
export declare type HelpLayoutParagraphConfigInput = {
|
|
9350
|
+
adf: Scalars['String'];
|
|
9351
|
+
visualConfig: Scalars['String'];
|
|
9232
9352
|
};
|
|
9233
9353
|
export declare type HelpLayoutQueryApi = {
|
|
9234
9354
|
__typename?: 'HelpLayoutQueryApi';
|
|
9235
|
-
layout?: Maybe<
|
|
9236
|
-
elementTypes?: Maybe<Array<Maybe<
|
|
9355
|
+
layout?: Maybe<HelpLayoutResult>;
|
|
9356
|
+
elementTypes?: Maybe<Array<Maybe<HelpLayoutElementTypes>>>;
|
|
9237
9357
|
};
|
|
9238
9358
|
export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
9239
9359
|
id: Scalars['ID'];
|
|
9240
9360
|
};
|
|
9361
|
+
export declare type HelpLayoutResult = HelpLayout | QueryError;
|
|
9362
|
+
export declare type HelpLayoutSearchAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
9363
|
+
__typename?: 'HelpLayoutSearchAtomicElement';
|
|
9364
|
+
id: Scalars['ID'];
|
|
9365
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9366
|
+
config?: Maybe<HelpLayoutSearchAtomicElementConfig>;
|
|
9367
|
+
};
|
|
9368
|
+
export declare type HelpLayoutSearchAtomicElementConfig = {
|
|
9369
|
+
__typename?: 'HelpLayoutSearchAtomicElementConfig';
|
|
9370
|
+
placeHolderText?: Maybe<Scalars['String']>;
|
|
9371
|
+
};
|
|
9372
|
+
export declare type HelpLayoutSearchConfigInput = {
|
|
9373
|
+
placeHolderText: Scalars['String'];
|
|
9374
|
+
visualConfig: Scalars['String'];
|
|
9375
|
+
};
|
|
9376
|
+
export declare type HelpLayoutSection = Node & {
|
|
9377
|
+
__typename?: 'HelpLayoutSection';
|
|
9378
|
+
id: Scalars['ID'];
|
|
9379
|
+
subsections?: Maybe<Array<Maybe<HelpLayoutSubsection>>>;
|
|
9380
|
+
};
|
|
9241
9381
|
export declare type HelpLayoutSectionConnection = {
|
|
9242
9382
|
__typename?: 'HelpLayoutSectionConnection';
|
|
9243
9383
|
edges?: Maybe<Array<Maybe<HelpLayoutSectionEdge>>>;
|
|
@@ -9246,31 +9386,34 @@ export declare type HelpLayoutSectionConnection = {
|
|
|
9246
9386
|
export declare type HelpLayoutSectionEdge = {
|
|
9247
9387
|
__typename?: 'HelpLayoutSectionEdge';
|
|
9248
9388
|
cursor: Scalars['String'];
|
|
9249
|
-
node?: Maybe<
|
|
9389
|
+
node?: Maybe<HelpLayoutSection>;
|
|
9250
9390
|
};
|
|
9251
9391
|
export declare type HelpLayoutSectionInput = {
|
|
9252
|
-
|
|
9392
|
+
subsections: Array<HelpLayoutSubsectionInput>;
|
|
9253
9393
|
};
|
|
9254
|
-
export declare type
|
|
9255
|
-
__typename?: '
|
|
9256
|
-
|
|
9394
|
+
export declare type HelpLayoutSubsection = Node & {
|
|
9395
|
+
__typename?: 'HelpLayoutSubsection';
|
|
9396
|
+
id: Scalars['ID'];
|
|
9397
|
+
config?: Maybe<HelpLayoutSubsectionConfig>;
|
|
9398
|
+
elements?: Maybe<Array<Maybe<HelpLayoutElement>>>;
|
|
9257
9399
|
};
|
|
9258
|
-
export declare type
|
|
9259
|
-
|
|
9400
|
+
export declare type HelpLayoutSubsectionConfig = {
|
|
9401
|
+
__typename?: 'HelpLayoutSubsectionConfig';
|
|
9402
|
+
span?: Maybe<Scalars['Int']>;
|
|
9260
9403
|
};
|
|
9261
|
-
export declare type
|
|
9262
|
-
|
|
9263
|
-
config?: Maybe<HelpLayoutTextElementConfig>;
|
|
9404
|
+
export declare type HelpLayoutSubsectionConfigInput = {
|
|
9405
|
+
span: Scalars['Int'];
|
|
9264
9406
|
};
|
|
9265
|
-
export declare type
|
|
9266
|
-
|
|
9267
|
-
|
|
9407
|
+
export declare type HelpLayoutSubsectionInput = {
|
|
9408
|
+
config: HelpLayoutSubsectionConfigInput;
|
|
9409
|
+
elements: Array<HelpLayoutElementInput>;
|
|
9268
9410
|
};
|
|
9269
|
-
export declare type
|
|
9270
|
-
|
|
9271
|
-
|
|
9272
|
-
|
|
9273
|
-
|
|
9411
|
+
export declare type HelpLayoutUpdateInput = {
|
|
9412
|
+
layoutId: Scalars['ID'];
|
|
9413
|
+
layout: HelpLayoutCreationInput;
|
|
9414
|
+
};
|
|
9415
|
+
export declare type HelpLayoutVisualEntity = {
|
|
9416
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9274
9417
|
};
|
|
9275
9418
|
export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
9276
9419
|
__typename?: 'HelpObjectStoreArticle';
|
|
@@ -10145,10 +10288,6 @@ export declare type JiraBulkEditResponseBulkEditFieldsArgs = {
|
|
|
10145
10288
|
last?: Maybe<Scalars['Int']>;
|
|
10146
10289
|
before?: Maybe<Scalars['String']>;
|
|
10147
10290
|
};
|
|
10148
|
-
export declare type JiraCcMessage = {
|
|
10149
|
-
role: Scalars['String'];
|
|
10150
|
-
content: Scalars['String'];
|
|
10151
|
-
};
|
|
10152
10291
|
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
10153
10292
|
__typename?: 'JiraCMDBField';
|
|
10154
10293
|
id: Scalars['ID'];
|
|
@@ -10938,6 +11077,13 @@ export declare type JiraDeleteShortcutInput = {
|
|
|
10938
11077
|
projectId: Scalars['ID'];
|
|
10939
11078
|
shortcutId: Scalars['ID'];
|
|
10940
11079
|
};
|
|
11080
|
+
export declare type JiraDeploymentApp = {
|
|
11081
|
+
__typename?: 'JiraDeploymentApp';
|
|
11082
|
+
appKey: Scalars['String'];
|
|
11083
|
+
};
|
|
11084
|
+
export declare type JiraDeploymentAppInput = {
|
|
11085
|
+
appKey: Scalars['String'];
|
|
11086
|
+
};
|
|
10941
11087
|
export declare enum JiraDeploymentsFeaturePrecondition {
|
|
10942
11088
|
NotAvailable = "NOT_AVAILABLE",
|
|
10943
11089
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
@@ -11005,6 +11151,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
11005
11151
|
__typename?: 'JiraDevOpsMutation';
|
|
11006
11152
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
11007
11153
|
dismissDevOpsIssuePanelBanner?: Maybe<JiraDismissDevOpsIssuePanelBannerPayload>;
|
|
11154
|
+
setProjectSelectedDeploymentAppsProperty?: Maybe<JiraSetProjectSelectedDeploymentAppsPropertyPayload>;
|
|
11008
11155
|
};
|
|
11009
11156
|
export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateArgs = {
|
|
11010
11157
|
input: JiraOptoutDevOpsIssuePanelNotConnectedInput;
|
|
@@ -11012,6 +11159,9 @@ export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateA
|
|
|
11012
11159
|
export declare type JiraDevOpsMutationDismissDevOpsIssuePanelBannerArgs = {
|
|
11013
11160
|
input: JiraDismissDevOpsIssuePanelBannerInput;
|
|
11014
11161
|
};
|
|
11162
|
+
export declare type JiraDevOpsMutationSetProjectSelectedDeploymentAppsPropertyArgs = {
|
|
11163
|
+
input: JiraSetProjectSelectedDeploymentAppsPropertyInput;
|
|
11164
|
+
};
|
|
11015
11165
|
export declare type JiraDevOpsProvider = {
|
|
11016
11166
|
displayName?: Maybe<Scalars['String']>;
|
|
11017
11167
|
webUrl?: Maybe<Scalars['URL']>;
|
|
@@ -13090,7 +13240,6 @@ export declare type JiraMutation = {
|
|
|
13090
13240
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
13091
13241
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
13092
13242
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
13093
|
-
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
13094
13243
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
13095
13244
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
13096
13245
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
@@ -13201,10 +13350,6 @@ export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
|
13201
13350
|
export declare type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
|
|
13202
13351
|
input: JiraLinkIssueToVersionRelatedWorkInput;
|
|
13203
13352
|
};
|
|
13204
|
-
export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
|
|
13205
|
-
cloudId: Scalars['ID'];
|
|
13206
|
-
id: Scalars['ID'];
|
|
13207
|
-
};
|
|
13208
13353
|
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
13209
13354
|
input: JiraSetIsFavouriteInput;
|
|
13210
13355
|
};
|
|
@@ -13300,7 +13445,6 @@ export declare type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload
|
|
|
13300
13445
|
export declare type JiraNaturalLanguageToJqlInput = {
|
|
13301
13446
|
naturalLanguageInput: Scalars['String'];
|
|
13302
13447
|
iteration?: Maybe<JiraIteration>;
|
|
13303
|
-
initMessages?: Maybe<Array<JiraCcMessage>>;
|
|
13304
13448
|
};
|
|
13305
13449
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
13306
13450
|
__typename?: 'JiraNumberField';
|
|
@@ -13902,6 +14046,7 @@ export declare type JiraProject = Node & {
|
|
|
13902
14046
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
13903
14047
|
suggestedDriversForJiraVersion?: Maybe<JiraVersionDriverConnection>;
|
|
13904
14048
|
suggestedApproversForJiraVersion?: Maybe<JiraVersionSuggestedApproverConnection>;
|
|
14049
|
+
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
13905
14050
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
13906
14051
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
13907
14052
|
};
|
|
@@ -14377,7 +14522,6 @@ export declare type JiraQuery = {
|
|
|
14377
14522
|
filter?: Maybe<JiraFilter>;
|
|
14378
14523
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
14379
14524
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
14380
|
-
allJiraUserBroadcastMessages?: Maybe<JiraUserBroadcastMessageConnection>;
|
|
14381
14525
|
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
14382
14526
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
14383
14527
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
@@ -14597,13 +14741,6 @@ export declare type JiraQuerySystemFiltersArgs = {
|
|
|
14597
14741
|
last?: Maybe<Scalars['Int']>;
|
|
14598
14742
|
before?: Maybe<Scalars['String']>;
|
|
14599
14743
|
};
|
|
14600
|
-
export declare type JiraQueryAllJiraUserBroadcastMessagesArgs = {
|
|
14601
|
-
cloudId: Scalars['ID'];
|
|
14602
|
-
first?: Maybe<Scalars['Int']>;
|
|
14603
|
-
last?: Maybe<Scalars['Int']>;
|
|
14604
|
-
after?: Maybe<Scalars['String']>;
|
|
14605
|
-
before?: Maybe<Scalars['String']>;
|
|
14606
|
-
};
|
|
14607
14744
|
export declare type JiraQueryDevOpsProvidersArgs = {
|
|
14608
14745
|
cloudId: Scalars['ID'];
|
|
14609
14746
|
filter?: Maybe<Array<JiraDevOpsCapability>>;
|
|
@@ -15782,6 +15919,16 @@ export declare type JiraSetIsFavouritePayload = Payload & {
|
|
|
15782
15919
|
errors?: Maybe<Array<MutationError>>;
|
|
15783
15920
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
15784
15921
|
};
|
|
15922
|
+
export declare type JiraSetProjectSelectedDeploymentAppsPropertyInput = {
|
|
15923
|
+
projectId: Scalars['ID'];
|
|
15924
|
+
deploymentApps?: Maybe<Array<JiraDeploymentAppInput>>;
|
|
15925
|
+
};
|
|
15926
|
+
export declare type JiraSetProjectSelectedDeploymentAppsPropertyPayload = Payload & {
|
|
15927
|
+
__typename?: 'JiraSetProjectSelectedDeploymentAppsPropertyPayload';
|
|
15928
|
+
success: Scalars['Boolean'];
|
|
15929
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15930
|
+
deploymentApps?: Maybe<Array<JiraDeploymentApp>>;
|
|
15931
|
+
};
|
|
15785
15932
|
export declare type JiraShareableEntityAnonymousAccessGrant = {
|
|
15786
15933
|
__typename?: 'JiraShareableEntityAnonymousAccessGrant';
|
|
15787
15934
|
type?: Maybe<JiraShareableEntityGrant>;
|
|
@@ -16500,30 +16647,6 @@ export declare type JiraUser = {
|
|
|
16500
16647
|
avatarUrl?: Maybe<Scalars['String']>;
|
|
16501
16648
|
email?: Maybe<Scalars['String']>;
|
|
16502
16649
|
};
|
|
16503
|
-
export declare type JiraUserBroadcastMessage = Node & {
|
|
16504
|
-
__typename?: 'JiraUserBroadcastMessage';
|
|
16505
|
-
id: Scalars['ID'];
|
|
16506
|
-
shouldDisplay?: Maybe<Scalars['Boolean']>;
|
|
16507
|
-
isDismissed?: Maybe<Scalars['Boolean']>;
|
|
16508
|
-
isUserTargeted?: Maybe<Scalars['Boolean']>;
|
|
16509
|
-
};
|
|
16510
|
-
export declare type JiraUserBroadcastMessageActionPayload = Payload & {
|
|
16511
|
-
__typename?: 'JiraUserBroadcastMessageActionPayload';
|
|
16512
|
-
userBroadcastMessage?: Maybe<JiraUserBroadcastMessage>;
|
|
16513
|
-
success: Scalars['Boolean'];
|
|
16514
|
-
errors?: Maybe<Array<MutationError>>;
|
|
16515
|
-
};
|
|
16516
|
-
export declare type JiraUserBroadcastMessageConnection = HasTotal & HasPageInfo & {
|
|
16517
|
-
__typename?: 'JiraUserBroadcastMessageConnection';
|
|
16518
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
16519
|
-
pageInfo: PageInfo;
|
|
16520
|
-
edges?: Maybe<Array<Maybe<JiraUserBroadcastMessageEdge>>>;
|
|
16521
|
-
};
|
|
16522
|
-
export declare type JiraUserBroadcastMessageEdge = {
|
|
16523
|
-
__typename?: 'JiraUserBroadcastMessageEdge';
|
|
16524
|
-
node?: Maybe<JiraUserBroadcastMessage>;
|
|
16525
|
-
cursor: Scalars['String'];
|
|
16526
|
-
};
|
|
16527
16650
|
export declare type JiraUserConnection = {
|
|
16528
16651
|
__typename?: 'JiraUserConnection';
|
|
16529
16652
|
pageInfo: PageInfo;
|
|
@@ -25410,6 +25533,12 @@ export declare type VirtualAgentDeleteIntentRuleProjectionPayload = Payload & {
|
|
|
25410
25533
|
success: Scalars['Boolean'];
|
|
25411
25534
|
errors?: Maybe<Array<MutationError>>;
|
|
25412
25535
|
};
|
|
25536
|
+
export declare type VirtualAgentFeatures = {
|
|
25537
|
+
__typename?: 'VirtualAgentFeatures';
|
|
25538
|
+
isVirtualAgentAvailable?: Maybe<Scalars['Boolean']>;
|
|
25539
|
+
isAiEnabledInAdminHub?: Maybe<Scalars['Boolean']>;
|
|
25540
|
+
};
|
|
25541
|
+
export declare type VirtualAgentFeaturesResult = VirtualAgentFeatures | VirtualAgentQueryError;
|
|
25413
25542
|
export declare type VirtualAgentFlowEditor = Node & {
|
|
25414
25543
|
__typename?: 'VirtualAgentFlowEditor';
|
|
25415
25544
|
id: Scalars['ID'];
|
|
@@ -25621,6 +25750,7 @@ export declare type VirtualAgentQueryApi = {
|
|
|
25621
25750
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
25622
25751
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
25623
25752
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
25753
|
+
virtualAgentFeatures?: Maybe<VirtualAgentFeaturesResult>;
|
|
25624
25754
|
intentTemplatesByProjectId?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
25625
25755
|
};
|
|
25626
25756
|
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
@@ -25635,6 +25765,9 @@ export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
|
25635
25765
|
jiraProjectId: Scalars['ID'];
|
|
25636
25766
|
requestTypeId: Scalars['String'];
|
|
25637
25767
|
};
|
|
25768
|
+
export declare type VirtualAgentQueryApiVirtualAgentFeaturesArgs = {
|
|
25769
|
+
cloudId: Scalars['ID'];
|
|
25770
|
+
};
|
|
25638
25771
|
export declare type VirtualAgentQueryApiIntentTemplatesByProjectIdArgs = {
|
|
25639
25772
|
jiraProjectId: Scalars['ID'];
|
|
25640
25773
|
first?: Maybe<Scalars['Int']>;
|