@forge/cli-shared 3.13.0-next.9 → 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 CHANGED
@@ -1,5 +1,50 @@
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
+
3
48
  ## 3.13.0-next.9
4
49
 
5
50
  ### 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<HelpLayout>;
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 HelpLayoutCell = {
9146
- __typename?: 'HelpLayoutCell';
9147
- span: Scalars['Int'];
9148
- elements?: Maybe<Array<Maybe<HelpLayoutElement>>>;
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 type HelpLayoutCellElementsArgs = {
9151
- supported: Array<HelpLayoutElementTypeName>;
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 HelpLayoutCellInput = {
9154
- span: Scalars['Int'];
9155
- elements: Array<HelpLayoutElementInput>;
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 = HelpLayoutTextElement | HelpLayoutImageElement | HelpLayoutHeroElement;
9241
+ export declare type HelpLayoutElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement | HelpLayoutLinkCardCompositeElement;
9161
9242
  export declare type HelpLayoutElementInput = {
9162
- elementType: HelpLayoutElementTypeInput;
9243
+ elementTypeKey: HelpLayoutElementKey;
9163
9244
  imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
9164
- textConfigInput?: Maybe<HelpLayoutTextConfigInput>;
9165
- };
9166
- export declare type HelpLayoutElementType = {
9167
- name?: Maybe<HelpLayoutElementTypeName>;
9168
- displayName?: Maybe<Scalars['String']>;
9169
- iconUrl?: Maybe<Scalars['String']>;
9245
+ headingConfigInput?: Maybe<HelpLayoutHeadingConfigInput>;
9246
+ paragraphConfigInput?: Maybe<HelpLayoutParagraphConfigInput>;
9247
+ searchConfigInput?: Maybe<HelpLayoutSearchConfigInput>;
9248
+ linkCardInput?: Maybe<HelpLayoutLinkCardInput>;
9170
9249
  };
9171
- export declare enum HelpLayoutElementTypeInput {
9250
+ export declare enum HelpLayoutElementKey {
9172
9251
  Image = "IMAGE",
9173
- Text = "TEXT"
9252
+ Heading = "HEADING",
9253
+ Paragraph = "PARAGRAPH",
9254
+ Search = "SEARCH",
9255
+ LinkCard = "LINK_CARD"
9174
9256
  }
9175
- export declare enum HelpLayoutElementTypeName {
9176
- Image = "IMAGE",
9177
- Text = "TEXT",
9178
- Hero = "HERO"
9179
- }
9180
- export declare type HelpLayoutHeroElement = {
9181
- __typename?: 'HelpLayoutHeroElement';
9182
- config?: Maybe<HelpLayoutHeroElementConfig>;
9183
- };
9184
- export declare type HelpLayoutHeroElementConfig = {
9185
- __typename?: 'HelpLayoutHeroElementConfig';
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 HelpLayoutHeroElementType = HelpLayoutElementType & {
9191
- __typename?: 'HelpLayoutHeroElementType';
9192
- name?: Maybe<HelpLayoutElementTypeName>;
9193
- displayName?: Maybe<Scalars['String']>;
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 HelpLayoutImageConfigInput = {
9197
- fileId?: Maybe<Scalars['String']>;
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
- };
9201
- export declare type HelpLayoutImageElement = {
9202
- __typename?: 'HelpLayoutImageElement';
9203
- config?: Maybe<HelpLayoutImageElementConfig>;
9204
9293
  };
9205
- export declare type HelpLayoutImageElementConfig = {
9206
- __typename?: 'HelpLayoutImageElementConfig';
9207
- fileId?: Maybe<Scalars['String']>;
9208
- altText?: Maybe<Scalars['String']>;
9209
- caption?: Maybe<Scalars['String']>;
9294
+ export declare type HelpLayoutImageAtomicElementData = {
9295
+ __typename?: 'HelpLayoutImageAtomicElementData';
9296
+ imageUrl?: Maybe<Scalars['String']>;
9210
9297
  };
9211
- export declare type HelpLayoutImageElementType = HelpLayoutElementType & {
9212
- __typename?: 'HelpLayoutImageElementType';
9213
- name?: Maybe<HelpLayoutElementTypeName>;
9214
- displayName?: Maybe<Scalars['String']>;
9215
- iconUrl?: Maybe<Scalars['String']>;
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: Scalars['ID'];
9220
- deleteLayout?: Maybe<Scalars['Boolean']>;
9221
- updateLayout?: Maybe<Scalars['Boolean']>;
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
- layoutId: Scalars['ID'];
9231
- input: HelpLayoutCreationInput;
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<HelpLayout>;
9236
- elementTypes?: Maybe<Array<Maybe<HelpLayoutElementType>>>;
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<HelpLayoutSectionNode>;
9388
+ node?: Maybe<HelpLayoutSection>;
9250
9389
  };
9251
9390
  export declare type HelpLayoutSectionInput = {
9252
- cells: Array<HelpLayoutCellInput>;
9391
+ subsections: Array<HelpLayoutSubsectionInput>;
9392
+ };
9393
+ export declare type HelpLayoutSubsection = Node & {
9394
+ __typename?: 'HelpLayoutSubsection';
9395
+ id: Scalars['ID'];
9396
+ config?: Maybe<HelpLayoutSubsectionConfig>;
9397
+ elements?: Maybe<Array<Maybe<HelpLayoutElement>>>;
9253
9398
  };
9254
- export declare type HelpLayoutSectionNode = {
9255
- __typename?: 'HelpLayoutSectionNode';
9256
- cells?: Maybe<Array<Maybe<HelpLayoutCell>>>;
9399
+ export declare type HelpLayoutSubsectionConfig = {
9400
+ __typename?: 'HelpLayoutSubsectionConfig';
9401
+ span?: Maybe<Scalars['Int']>;
9257
9402
  };
9258
- export declare type HelpLayoutTextConfigInput = {
9259
- adf?: Maybe<Scalars['String']>;
9403
+ export declare type HelpLayoutSubsectionConfigInput = {
9404
+ span: Scalars['Int'];
9260
9405
  };
9261
- export declare type HelpLayoutTextElement = {
9262
- __typename?: 'HelpLayoutTextElement';
9263
- config?: Maybe<HelpLayoutTextElementConfig>;
9406
+ export declare type HelpLayoutSubsectionInput = {
9407
+ config: HelpLayoutSubsectionConfigInput;
9408
+ elements: Array<HelpLayoutElementInput>;
9264
9409
  };
9265
- export declare type HelpLayoutTextElementConfig = {
9266
- __typename?: 'HelpLayoutTextElementConfig';
9267
- adf?: Maybe<Scalars['String']>;
9410
+ export declare type HelpLayoutUpdateInput = {
9411
+ layoutId: Scalars['ID'];
9412
+ layout: HelpLayoutCreationInput;
9268
9413
  };
9269
- export declare type HelpLayoutTextElementType = HelpLayoutElementType & {
9270
- __typename?: 'HelpLayoutTextElementType';
9271
- name?: Maybe<HelpLayoutElementTypeName>;
9272
- displayName?: Maybe<Scalars['String']>;
9273
- iconUrl?: Maybe<Scalars['String']>;
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'];
@@ -13300,7 +13438,6 @@ export declare type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload
13300
13438
  export declare type JiraNaturalLanguageToJqlInput = {
13301
13439
  naturalLanguageInput: Scalars['String'];
13302
13440
  iteration?: Maybe<JiraIteration>;
13303
- initMessages?: Maybe<Array<JiraCcMessage>>;
13304
13441
  };
13305
13442
  export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
13306
13443
  __typename?: 'JiraNumberField';