@forge/cli-shared 3.13.0-next.8 → 3.13.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 +52 -0
- package/out/graphql/graphql-types.d.ts +288 -86
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +33 -16
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8ee1a0dc: Create environment on deploy
|
|
8
|
+
- e49e46d0: Use default environment from forge settings
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- cf453494: Bumping dependencies via Renovate:
|
|
13
|
+
|
|
14
|
+
- node-fetch
|
|
15
|
+
- @types/node-fetch
|
|
16
|
+
|
|
17
|
+
- efc1b01c: Bumping dependencies via Renovate:
|
|
18
|
+
|
|
19
|
+
- yaml
|
|
20
|
+
|
|
21
|
+
- 13af085d: Bumping dependencies via Renovate:
|
|
22
|
+
|
|
23
|
+
- @graphql-codegen/add
|
|
24
|
+
- @graphql-codegen/cli
|
|
25
|
+
- @graphql-codegen/typescript
|
|
26
|
+
- @graphql-codegen/typescript-operations
|
|
27
|
+
|
|
28
|
+
- 710816a9: Bumping dependencies via Renovate:
|
|
29
|
+
|
|
30
|
+
- unzipper
|
|
31
|
+
- @types/unzipper
|
|
32
|
+
|
|
33
|
+
- Updated dependencies [5d8a7a49]
|
|
34
|
+
- Updated dependencies [44042371]
|
|
35
|
+
- Updated dependencies [9477f538]
|
|
36
|
+
- Updated dependencies [cf453494]
|
|
37
|
+
- Updated dependencies [bb7b824d]
|
|
38
|
+
- Updated dependencies [00f194a9]
|
|
39
|
+
- @forge/manifest@4.14.0
|
|
40
|
+
|
|
41
|
+
## 3.13.0-next.10
|
|
42
|
+
|
|
43
|
+
### Patch Changes
|
|
44
|
+
|
|
45
|
+
- Updated dependencies [9477f538]
|
|
46
|
+
- @forge/manifest@4.14.0-next.5
|
|
47
|
+
|
|
48
|
+
## 3.13.0-next.9
|
|
49
|
+
|
|
50
|
+
### Patch Changes
|
|
51
|
+
|
|
52
|
+
- Updated dependencies [00f194a]
|
|
53
|
+
- @forge/manifest@4.14.0-next.4
|
|
54
|
+
|
|
3
55
|
## 3.13.0-next.8
|
|
4
56
|
|
|
5
57
|
### Patch Changes
|
|
@@ -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']>;
|
|
@@ -8999,7 +9048,7 @@ export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObje
|
|
|
8999
9048
|
export declare type HelpCenterHomePageLayout = {
|
|
9000
9049
|
__typename?: 'HelpCenterHomePageLayout';
|
|
9001
9050
|
layoutId: Scalars['ID'];
|
|
9002
|
-
data?: Maybe<
|
|
9051
|
+
data?: Maybe<HelpLayoutResult>;
|
|
9003
9052
|
};
|
|
9004
9053
|
export declare type HelpCenterMutationApi = {
|
|
9005
9054
|
__typename?: 'HelpCenterMutationApi';
|
|
@@ -9142,83 +9191,140 @@ export declare type HelpLayoutSectionsArgs = {
|
|
|
9142
9191
|
first?: Maybe<Scalars['Int']>;
|
|
9143
9192
|
after?: Maybe<Scalars['String']>;
|
|
9144
9193
|
};
|
|
9145
|
-
export declare type
|
|
9146
|
-
|
|
9147
|
-
|
|
9148
|
-
|
|
9194
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement;
|
|
9195
|
+
export declare type HelpLayoutAtomicElementInput = {
|
|
9196
|
+
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
9197
|
+
imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
|
|
9198
|
+
headingConfigInput?: Maybe<HelpLayoutHeadingConfigInput>;
|
|
9199
|
+
searchConfigInput?: Maybe<HelpLayoutSearchConfigInput>;
|
|
9200
|
+
paragraphConfigInput?: Maybe<HelpLayoutParagraphConfigInput>;
|
|
9149
9201
|
};
|
|
9150
|
-
export declare
|
|
9151
|
-
|
|
9202
|
+
export declare enum HelpLayoutAtomicElementKey {
|
|
9203
|
+
Image = "IMAGE",
|
|
9204
|
+
Heading = "HEADING",
|
|
9205
|
+
Paragraph = "PARAGRAPH",
|
|
9206
|
+
Search = "SEARCH"
|
|
9207
|
+
}
|
|
9208
|
+
export declare type HelpLayoutAtomicElementType = {
|
|
9209
|
+
__typename?: 'HelpLayoutAtomicElementType';
|
|
9210
|
+
key?: Maybe<HelpLayoutAtomicElementKey>;
|
|
9211
|
+
displayName?: Maybe<Scalars['String']>;
|
|
9212
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
9213
|
+
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
9152
9214
|
};
|
|
9153
|
-
export declare type
|
|
9154
|
-
|
|
9155
|
-
|
|
9215
|
+
export declare type HelpLayoutCompositeElement = {
|
|
9216
|
+
id: Scalars['ID'];
|
|
9217
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9218
|
+
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
9219
|
+
type?: Maybe<HelpLayoutCompositeElementType>;
|
|
9220
|
+
};
|
|
9221
|
+
export declare enum HelpLayoutCompositeElementKey {
|
|
9222
|
+
LinkCard = "LINK_CARD"
|
|
9223
|
+
}
|
|
9224
|
+
export declare type HelpLayoutCompositeElementType = {
|
|
9225
|
+
__typename?: 'HelpLayoutCompositeElementType';
|
|
9226
|
+
key?: Maybe<HelpLayoutCompositeElementKey>;
|
|
9227
|
+
displayName?: Maybe<Scalars['String']>;
|
|
9228
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
9229
|
+
allowedElements?: Maybe<Array<Maybe<HelpLayoutAtomicElementKey>>>;
|
|
9230
|
+
};
|
|
9231
|
+
export declare type HelpLayoutCreatePayload = Payload & {
|
|
9232
|
+
__typename?: 'HelpLayoutCreatePayload';
|
|
9233
|
+
success: Scalars['Boolean'];
|
|
9234
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9235
|
+
layoutId?: Maybe<Scalars['ID']>;
|
|
9156
9236
|
};
|
|
9157
9237
|
export declare type HelpLayoutCreationInput = {
|
|
9238
|
+
parentId: Scalars['ID'];
|
|
9158
9239
|
sections: Array<HelpLayoutSectionInput>;
|
|
9159
9240
|
};
|
|
9160
|
-
export declare type HelpLayoutElement =
|
|
9241
|
+
export declare type HelpLayoutElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement | HelpLayoutLinkCardCompositeElement;
|
|
9161
9242
|
export declare type HelpLayoutElementInput = {
|
|
9162
|
-
|
|
9243
|
+
elementTypeKey: HelpLayoutElementKey;
|
|
9163
9244
|
imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
|
|
9164
|
-
|
|
9245
|
+
headingConfigInput?: Maybe<HelpLayoutHeadingConfigInput>;
|
|
9246
|
+
paragraphConfigInput?: Maybe<HelpLayoutParagraphConfigInput>;
|
|
9247
|
+
searchConfigInput?: Maybe<HelpLayoutSearchConfigInput>;
|
|
9248
|
+
linkCardInput?: Maybe<HelpLayoutLinkCardInput>;
|
|
9165
9249
|
};
|
|
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 {
|
|
9250
|
+
export declare enum HelpLayoutElementKey {
|
|
9176
9251
|
Image = "IMAGE",
|
|
9177
|
-
|
|
9178
|
-
|
|
9252
|
+
Heading = "HEADING",
|
|
9253
|
+
Paragraph = "PARAGRAPH",
|
|
9254
|
+
Search = "SEARCH",
|
|
9255
|
+
LinkCard = "LINK_CARD"
|
|
9179
9256
|
}
|
|
9180
|
-
export declare type
|
|
9181
|
-
|
|
9182
|
-
|
|
9183
|
-
|
|
9184
|
-
|
|
9185
|
-
|
|
9186
|
-
header?: Maybe<Scalars['String']>;
|
|
9187
|
-
isSearchBarShown?: Maybe<Scalars['Boolean']>;
|
|
9188
|
-
backgroundImageUrl?: Maybe<Scalars['String']>;
|
|
9257
|
+
export declare type HelpLayoutElementTypes = HelpLayoutAtomicElementType | HelpLayoutCompositeElementType;
|
|
9258
|
+
export declare type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
9259
|
+
__typename?: 'HelpLayoutHeadingAtomicElement';
|
|
9260
|
+
id: Scalars['ID'];
|
|
9261
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9262
|
+
config?: Maybe<HelpLayoutHeadingAtomicElementConfig>;
|
|
9189
9263
|
};
|
|
9190
|
-
export declare type
|
|
9191
|
-
__typename?: '
|
|
9192
|
-
|
|
9193
|
-
|
|
9194
|
-
iconUrl?: Maybe<Scalars['String']>;
|
|
9264
|
+
export declare type HelpLayoutHeadingAtomicElementConfig = {
|
|
9265
|
+
__typename?: 'HelpLayoutHeadingAtomicElementConfig';
|
|
9266
|
+
text?: Maybe<Scalars['String']>;
|
|
9267
|
+
headingType?: Maybe<HelpLayoutHeadingType>;
|
|
9195
9268
|
};
|
|
9196
|
-
export declare type
|
|
9197
|
-
|
|
9269
|
+
export declare type HelpLayoutHeadingConfigInput = {
|
|
9270
|
+
text: Scalars['String'];
|
|
9271
|
+
headingType: HelpLayoutHeadingType;
|
|
9272
|
+
visualConfig: Scalars['String'];
|
|
9273
|
+
};
|
|
9274
|
+
export declare enum HelpLayoutHeadingType {
|
|
9275
|
+
H1 = "h1",
|
|
9276
|
+
H2 = "h2",
|
|
9277
|
+
H3 = "h3",
|
|
9278
|
+
H4 = "h4",
|
|
9279
|
+
H5 = "h5",
|
|
9280
|
+
H6 = "h6"
|
|
9281
|
+
}
|
|
9282
|
+
export declare type HelpLayoutImageAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
9283
|
+
__typename?: 'HelpLayoutImageAtomicElement';
|
|
9284
|
+
id: Scalars['ID'];
|
|
9285
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9286
|
+
config?: Maybe<HelpLayoutImageAtomicElementConfig>;
|
|
9287
|
+
data?: Maybe<HelpLayoutImageAtomicElementData>;
|
|
9288
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
9289
|
+
};
|
|
9290
|
+
export declare type HelpLayoutImageAtomicElementConfig = {
|
|
9291
|
+
__typename?: 'HelpLayoutImageAtomicElementConfig';
|
|
9198
9292
|
altText?: Maybe<Scalars['String']>;
|
|
9199
|
-
caption?: Maybe<Scalars['String']>;
|
|
9200
9293
|
};
|
|
9201
|
-
export declare type
|
|
9202
|
-
__typename?: '
|
|
9203
|
-
|
|
9294
|
+
export declare type HelpLayoutImageAtomicElementData = {
|
|
9295
|
+
__typename?: 'HelpLayoutImageAtomicElementData';
|
|
9296
|
+
imageUrl?: Maybe<Scalars['String']>;
|
|
9204
9297
|
};
|
|
9205
|
-
export declare type
|
|
9206
|
-
|
|
9207
|
-
|
|
9208
|
-
|
|
9209
|
-
|
|
9210
|
-
|
|
9211
|
-
|
|
9212
|
-
|
|
9213
|
-
|
|
9214
|
-
|
|
9215
|
-
|
|
9298
|
+
export declare type HelpLayoutImageConfigInput = {
|
|
9299
|
+
fileId: Scalars['String'];
|
|
9300
|
+
altText: Scalars['String'];
|
|
9301
|
+
visualConfig: Scalars['String'];
|
|
9302
|
+
};
|
|
9303
|
+
export declare type HelpLayoutLinkCardCompositeElement = HelpLayoutVisualEntity & HelpLayoutCompositeElement & Node & {
|
|
9304
|
+
__typename?: 'HelpLayoutLinkCardCompositeElement';
|
|
9305
|
+
id: Scalars['ID'];
|
|
9306
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9307
|
+
config?: Maybe<Scalars['String']>;
|
|
9308
|
+
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
9309
|
+
type?: Maybe<HelpLayoutCompositeElementType>;
|
|
9310
|
+
};
|
|
9311
|
+
export declare type HelpLayoutLinkCardInput = {
|
|
9312
|
+
children: Array<HelpLayoutAtomicElementInput>;
|
|
9313
|
+
type: HelpLayoutCompositeElementKey;
|
|
9314
|
+
visualConfig: Scalars['String'];
|
|
9315
|
+
config: Scalars['String'];
|
|
9316
|
+
};
|
|
9317
|
+
export declare type HelpLayoutMediaConfig = {
|
|
9318
|
+
__typename?: 'HelpLayoutMediaConfig';
|
|
9319
|
+
mediaUrl?: Maybe<Scalars['String']>;
|
|
9320
|
+
mediaToken?: Maybe<Scalars['String']>;
|
|
9321
|
+
mediaCollectionName?: Maybe<Scalars['String']>;
|
|
9216
9322
|
};
|
|
9217
9323
|
export declare type HelpLayoutMutationApi = {
|
|
9218
9324
|
__typename?: 'HelpLayoutMutationApi';
|
|
9219
|
-
createLayout:
|
|
9220
|
-
deleteLayout?: Maybe<
|
|
9221
|
-
updateLayout?: Maybe<
|
|
9325
|
+
createLayout: HelpLayoutCreatePayload;
|
|
9326
|
+
deleteLayout?: Maybe<Payload>;
|
|
9327
|
+
updateLayout?: Maybe<Payload>;
|
|
9222
9328
|
};
|
|
9223
9329
|
export declare type HelpLayoutMutationApiCreateLayoutArgs = {
|
|
9224
9330
|
input: HelpLayoutCreationInput;
|
|
@@ -9227,17 +9333,50 @@ export declare type HelpLayoutMutationApiDeleteLayoutArgs = {
|
|
|
9227
9333
|
layoutId: Scalars['ID'];
|
|
9228
9334
|
};
|
|
9229
9335
|
export declare type HelpLayoutMutationApiUpdateLayoutArgs = {
|
|
9230
|
-
|
|
9231
|
-
|
|
9336
|
+
input: HelpLayoutUpdateInput;
|
|
9337
|
+
};
|
|
9338
|
+
export declare type HelpLayoutParagraphAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
9339
|
+
__typename?: 'HelpLayoutParagraphAtomicElement';
|
|
9340
|
+
id: Scalars['ID'];
|
|
9341
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9342
|
+
config?: Maybe<HelpLayoutParagraphAtomicElementConfig>;
|
|
9343
|
+
};
|
|
9344
|
+
export declare type HelpLayoutParagraphAtomicElementConfig = {
|
|
9345
|
+
__typename?: 'HelpLayoutParagraphAtomicElementConfig';
|
|
9346
|
+
adf?: Maybe<Scalars['String']>;
|
|
9347
|
+
};
|
|
9348
|
+
export declare type HelpLayoutParagraphConfigInput = {
|
|
9349
|
+
adf: Scalars['String'];
|
|
9350
|
+
visualConfig: Scalars['String'];
|
|
9232
9351
|
};
|
|
9233
9352
|
export declare type HelpLayoutQueryApi = {
|
|
9234
9353
|
__typename?: 'HelpLayoutQueryApi';
|
|
9235
|
-
layout?: Maybe<
|
|
9236
|
-
elementTypes?: Maybe<Array<Maybe<
|
|
9354
|
+
layout?: Maybe<HelpLayoutResult>;
|
|
9355
|
+
elementTypes?: Maybe<Array<Maybe<HelpLayoutElementTypes>>>;
|
|
9237
9356
|
};
|
|
9238
9357
|
export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
9239
9358
|
id: Scalars['ID'];
|
|
9240
9359
|
};
|
|
9360
|
+
export declare type HelpLayoutResult = HelpLayout | QueryError;
|
|
9361
|
+
export declare type HelpLayoutSearchAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
9362
|
+
__typename?: 'HelpLayoutSearchAtomicElement';
|
|
9363
|
+
id: Scalars['ID'];
|
|
9364
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9365
|
+
config?: Maybe<HelpLayoutSearchAtomicElementConfig>;
|
|
9366
|
+
};
|
|
9367
|
+
export declare type HelpLayoutSearchAtomicElementConfig = {
|
|
9368
|
+
__typename?: 'HelpLayoutSearchAtomicElementConfig';
|
|
9369
|
+
placeHolderText?: Maybe<Scalars['String']>;
|
|
9370
|
+
};
|
|
9371
|
+
export declare type HelpLayoutSearchConfigInput = {
|
|
9372
|
+
placeHolderText: Scalars['String'];
|
|
9373
|
+
visualConfig: Scalars['String'];
|
|
9374
|
+
};
|
|
9375
|
+
export declare type HelpLayoutSection = Node & {
|
|
9376
|
+
__typename?: 'HelpLayoutSection';
|
|
9377
|
+
id: Scalars['ID'];
|
|
9378
|
+
subsections?: Maybe<Array<Maybe<HelpLayoutSubsection>>>;
|
|
9379
|
+
};
|
|
9241
9380
|
export declare type HelpLayoutSectionConnection = {
|
|
9242
9381
|
__typename?: 'HelpLayoutSectionConnection';
|
|
9243
9382
|
edges?: Maybe<Array<Maybe<HelpLayoutSectionEdge>>>;
|
|
@@ -9246,31 +9385,34 @@ export declare type HelpLayoutSectionConnection = {
|
|
|
9246
9385
|
export declare type HelpLayoutSectionEdge = {
|
|
9247
9386
|
__typename?: 'HelpLayoutSectionEdge';
|
|
9248
9387
|
cursor: Scalars['String'];
|
|
9249
|
-
node?: Maybe<
|
|
9388
|
+
node?: Maybe<HelpLayoutSection>;
|
|
9250
9389
|
};
|
|
9251
9390
|
export declare type HelpLayoutSectionInput = {
|
|
9252
|
-
|
|
9391
|
+
subsections: Array<HelpLayoutSubsectionInput>;
|
|
9253
9392
|
};
|
|
9254
|
-
export declare type
|
|
9255
|
-
__typename?: '
|
|
9256
|
-
|
|
9393
|
+
export declare type HelpLayoutSubsection = Node & {
|
|
9394
|
+
__typename?: 'HelpLayoutSubsection';
|
|
9395
|
+
id: Scalars['ID'];
|
|
9396
|
+
config?: Maybe<HelpLayoutSubsectionConfig>;
|
|
9397
|
+
elements?: Maybe<Array<Maybe<HelpLayoutElement>>>;
|
|
9257
9398
|
};
|
|
9258
|
-
export declare type
|
|
9259
|
-
|
|
9399
|
+
export declare type HelpLayoutSubsectionConfig = {
|
|
9400
|
+
__typename?: 'HelpLayoutSubsectionConfig';
|
|
9401
|
+
span?: Maybe<Scalars['Int']>;
|
|
9260
9402
|
};
|
|
9261
|
-
export declare type
|
|
9262
|
-
|
|
9263
|
-
config?: Maybe<HelpLayoutTextElementConfig>;
|
|
9403
|
+
export declare type HelpLayoutSubsectionConfigInput = {
|
|
9404
|
+
span: Scalars['Int'];
|
|
9264
9405
|
};
|
|
9265
|
-
export declare type
|
|
9266
|
-
|
|
9267
|
-
|
|
9406
|
+
export declare type HelpLayoutSubsectionInput = {
|
|
9407
|
+
config: HelpLayoutSubsectionConfigInput;
|
|
9408
|
+
elements: Array<HelpLayoutElementInput>;
|
|
9268
9409
|
};
|
|
9269
|
-
export declare type
|
|
9270
|
-
|
|
9271
|
-
|
|
9272
|
-
|
|
9273
|
-
|
|
9410
|
+
export declare type HelpLayoutUpdateInput = {
|
|
9411
|
+
layoutId: Scalars['ID'];
|
|
9412
|
+
layout: HelpLayoutCreationInput;
|
|
9413
|
+
};
|
|
9414
|
+
export declare type HelpLayoutVisualEntity = {
|
|
9415
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
9274
9416
|
};
|
|
9275
9417
|
export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
9276
9418
|
__typename?: 'HelpObjectStoreArticle';
|
|
@@ -10145,10 +10287,6 @@ export declare type JiraBulkEditResponseBulkEditFieldsArgs = {
|
|
|
10145
10287
|
last?: Maybe<Scalars['Int']>;
|
|
10146
10288
|
before?: Maybe<Scalars['String']>;
|
|
10147
10289
|
};
|
|
10148
|
-
export declare type JiraCcMessage = {
|
|
10149
|
-
role: Scalars['String'];
|
|
10150
|
-
content: Scalars['String'];
|
|
10151
|
-
};
|
|
10152
10290
|
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
10153
10291
|
__typename?: 'JiraCMDBField';
|
|
10154
10292
|
id: Scalars['ID'];
|
|
@@ -13090,6 +13228,7 @@ export declare type JiraMutation = {
|
|
|
13090
13228
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
13091
13229
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
13092
13230
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
13231
|
+
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
13093
13232
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
13094
13233
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
13095
13234
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
@@ -13200,6 +13339,10 @@ export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
|
13200
13339
|
export declare type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
|
|
13201
13340
|
input: JiraLinkIssueToVersionRelatedWorkInput;
|
|
13202
13341
|
};
|
|
13342
|
+
export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
|
|
13343
|
+
cloudId: Scalars['ID'];
|
|
13344
|
+
id: Scalars['ID'];
|
|
13345
|
+
};
|
|
13203
13346
|
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
13204
13347
|
input: JiraSetIsFavouriteInput;
|
|
13205
13348
|
};
|
|
@@ -13295,7 +13438,6 @@ export declare type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload
|
|
|
13295
13438
|
export declare type JiraNaturalLanguageToJqlInput = {
|
|
13296
13439
|
naturalLanguageInput: Scalars['String'];
|
|
13297
13440
|
iteration?: Maybe<JiraIteration>;
|
|
13298
|
-
initMessages?: Maybe<Array<JiraCcMessage>>;
|
|
13299
13441
|
};
|
|
13300
13442
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
13301
13443
|
__typename?: 'JiraNumberField';
|
|
@@ -14372,6 +14514,7 @@ export declare type JiraQuery = {
|
|
|
14372
14514
|
filter?: Maybe<JiraFilter>;
|
|
14373
14515
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
14374
14516
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
14517
|
+
allJiraUserBroadcastMessages?: Maybe<JiraUserBroadcastMessageConnection>;
|
|
14375
14518
|
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
14376
14519
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
14377
14520
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
@@ -14591,6 +14734,13 @@ export declare type JiraQuerySystemFiltersArgs = {
|
|
|
14591
14734
|
last?: Maybe<Scalars['Int']>;
|
|
14592
14735
|
before?: Maybe<Scalars['String']>;
|
|
14593
14736
|
};
|
|
14737
|
+
export declare type JiraQueryAllJiraUserBroadcastMessagesArgs = {
|
|
14738
|
+
cloudId: Scalars['ID'];
|
|
14739
|
+
first?: Maybe<Scalars['Int']>;
|
|
14740
|
+
last?: Maybe<Scalars['Int']>;
|
|
14741
|
+
after?: Maybe<Scalars['String']>;
|
|
14742
|
+
before?: Maybe<Scalars['String']>;
|
|
14743
|
+
};
|
|
14594
14744
|
export declare type JiraQueryDevOpsProvidersArgs = {
|
|
14595
14745
|
cloudId: Scalars['ID'];
|
|
14596
14746
|
filter?: Maybe<Array<JiraDevOpsCapability>>;
|
|
@@ -16487,6 +16637,30 @@ export declare type JiraUser = {
|
|
|
16487
16637
|
avatarUrl?: Maybe<Scalars['String']>;
|
|
16488
16638
|
email?: Maybe<Scalars['String']>;
|
|
16489
16639
|
};
|
|
16640
|
+
export declare type JiraUserBroadcastMessage = Node & {
|
|
16641
|
+
__typename?: 'JiraUserBroadcastMessage';
|
|
16642
|
+
id: Scalars['ID'];
|
|
16643
|
+
shouldDisplay?: Maybe<Scalars['Boolean']>;
|
|
16644
|
+
isDismissed?: Maybe<Scalars['Boolean']>;
|
|
16645
|
+
isUserTargeted?: Maybe<Scalars['Boolean']>;
|
|
16646
|
+
};
|
|
16647
|
+
export declare type JiraUserBroadcastMessageActionPayload = Payload & {
|
|
16648
|
+
__typename?: 'JiraUserBroadcastMessageActionPayload';
|
|
16649
|
+
userBroadcastMessage?: Maybe<JiraUserBroadcastMessage>;
|
|
16650
|
+
success: Scalars['Boolean'];
|
|
16651
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16652
|
+
};
|
|
16653
|
+
export declare type JiraUserBroadcastMessageConnection = HasTotal & HasPageInfo & {
|
|
16654
|
+
__typename?: 'JiraUserBroadcastMessageConnection';
|
|
16655
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
16656
|
+
pageInfo: PageInfo;
|
|
16657
|
+
edges?: Maybe<Array<Maybe<JiraUserBroadcastMessageEdge>>>;
|
|
16658
|
+
};
|
|
16659
|
+
export declare type JiraUserBroadcastMessageEdge = {
|
|
16660
|
+
__typename?: 'JiraUserBroadcastMessageEdge';
|
|
16661
|
+
node?: Maybe<JiraUserBroadcastMessage>;
|
|
16662
|
+
cursor: Scalars['String'];
|
|
16663
|
+
};
|
|
16490
16664
|
export declare type JiraUserConnection = {
|
|
16491
16665
|
__typename?: 'JiraUserConnection';
|
|
16492
16666
|
pageInfo: PageInfo;
|
|
@@ -22444,6 +22618,9 @@ export declare type ShepherdCurrentUser = {
|
|
|
22444
22618
|
};
|
|
22445
22619
|
export declare type ShepherdDescriptionTemplate = {
|
|
22446
22620
|
__typename?: 'ShepherdDescriptionTemplate';
|
|
22621
|
+
extendedText?: Maybe<Scalars['JSON']>;
|
|
22622
|
+
investigationText?: Maybe<Scalars['JSON']>;
|
|
22623
|
+
remediationText?: Maybe<Scalars['JSON']>;
|
|
22447
22624
|
text?: Maybe<Scalars['JSON']>;
|
|
22448
22625
|
type?: Maybe<ShepherdAlertTemplateType>;
|
|
22449
22626
|
};
|
|
@@ -24142,7 +24319,27 @@ export declare type TransitionFilter = {
|
|
|
24142
24319
|
};
|
|
24143
24320
|
export declare type TrelloAttachment = {
|
|
24144
24321
|
__typename?: 'TrelloAttachment';
|
|
24322
|
+
bytes?: Maybe<Scalars['Float']>;
|
|
24323
|
+
date?: Maybe<Scalars['DateTime']>;
|
|
24324
|
+
edgeColor?: Maybe<Scalars['String']>;
|
|
24325
|
+
fileName?: Maybe<Scalars['String']>;
|
|
24326
|
+
isUpload?: Maybe<Scalars['Boolean']>;
|
|
24327
|
+
mimeType?: Maybe<Scalars['String']>;
|
|
24328
|
+
name?: Maybe<Scalars['String']>;
|
|
24145
24329
|
objectId: Scalars['ID'];
|
|
24330
|
+
position?: Maybe<Scalars['Float']>;
|
|
24331
|
+
url?: Maybe<Scalars['URL']>;
|
|
24332
|
+
};
|
|
24333
|
+
export declare type TrelloAttachmentConnection = {
|
|
24334
|
+
__typename?: 'TrelloAttachmentConnection';
|
|
24335
|
+
edges?: Maybe<Array<TrelloAttachmentEdge>>;
|
|
24336
|
+
nodes?: Maybe<Array<TrelloAttachment>>;
|
|
24337
|
+
pageInfo: PageInfo;
|
|
24338
|
+
};
|
|
24339
|
+
export declare type TrelloAttachmentEdge = {
|
|
24340
|
+
__typename?: 'TrelloAttachmentEdge';
|
|
24341
|
+
cursor: Scalars['String'];
|
|
24342
|
+
node: TrelloAttachment;
|
|
24146
24343
|
};
|
|
24147
24344
|
export declare type TrelloBoard = Node & {
|
|
24148
24345
|
__typename?: 'TrelloBoard';
|
|
@@ -24224,6 +24421,7 @@ export declare type TrelloBoardViewer = {
|
|
|
24224
24421
|
};
|
|
24225
24422
|
export declare type TrelloCard = Node & {
|
|
24226
24423
|
__typename?: 'TrelloCard';
|
|
24424
|
+
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
24227
24425
|
badges?: Maybe<TrelloCardBadges>;
|
|
24228
24426
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24229
24427
|
cover?: Maybe<TrelloCardCover>;
|
|
@@ -24247,6 +24445,10 @@ export declare type TrelloCard = Node & {
|
|
|
24247
24445
|
stickers?: Maybe<TrelloStickerConnection>;
|
|
24248
24446
|
url?: Maybe<Scalars['URL']>;
|
|
24249
24447
|
};
|
|
24448
|
+
export declare type TrelloCardAttachmentsArgs = {
|
|
24449
|
+
after?: Maybe<Scalars['String']>;
|
|
24450
|
+
first?: Maybe<Scalars['Int']>;
|
|
24451
|
+
};
|
|
24250
24452
|
export declare type TrelloCardLabelsArgs = {
|
|
24251
24453
|
after?: Maybe<Scalars['String']>;
|
|
24252
24454
|
first?: Maybe<Scalars['Int']>;
|