@forge/cli-shared 7.0.0-next.2 → 7.0.0-next.2-experimental-f44d099
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 +19 -0
- package/out/graphql/graphql-types.d.ts +148 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +25 -12
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 7.0.0-next.2-experimental-f44d099
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 3b2ffa9: updated the type of appVersion
|
|
8
|
+
- 3b2ffa9: update appVersion type in logs command
|
|
9
|
+
|
|
10
|
+
### Minor Changes
|
|
11
|
+
|
|
12
|
+
- 30d2f61: Add forge container tunnel MVP
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- a23892e: Update the variable name
|
|
17
|
+
- b011fe9: Add Forge container docker registry authentication
|
|
18
|
+
- 7c02425: Unhide forge build commands
|
|
19
|
+
- Updated dependencies [35165ba]
|
|
20
|
+
- @forge/manifest@9.4.0-next.0-experimental-f44d099
|
|
21
|
+
|
|
3
22
|
## 7.0.0-next.2
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
|
@@ -5523,6 +5523,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
5523
5523
|
createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
|
|
5524
5524
|
createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
|
|
5525
5525
|
createComponentScorecardJiraIssue?: Maybe<CompassCreateComponentScorecardJiraIssuePayload>;
|
|
5526
|
+
createComponentScorecardWorkItem?: Maybe<CompassCreateComponentScorecardWorkItemPayload>;
|
|
5526
5527
|
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
5527
5528
|
createComponentType?: Maybe<CreateCompassComponentTypePayload>;
|
|
5528
5529
|
createCriterionExemption?: Maybe<CompassCreateCriterionExemptionPayload>;
|
|
@@ -5581,6 +5582,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
5581
5582
|
updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
|
|
5582
5583
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
5583
5584
|
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
5585
|
+
updateComponentScorecardWorkItem?: Maybe<CompassUpdateComponentScorecardWorkItemPayload>;
|
|
5584
5586
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
5585
5587
|
updateComponentTypeMetadata?: Maybe<UpdateCompassComponentTypeMetadataPayload>;
|
|
5586
5588
|
updateComponents?: Maybe<BulkUpdateCompassComponentsPayload>;
|
|
@@ -5654,6 +5656,10 @@ export declare type CompassCatalogMutationApiCreateComponentLinkArgs = {
|
|
|
5654
5656
|
export declare type CompassCatalogMutationApiCreateComponentScorecardJiraIssueArgs = {
|
|
5655
5657
|
input: CompassCreateComponentScorecardJiraIssueInput;
|
|
5656
5658
|
};
|
|
5659
|
+
export declare type CompassCatalogMutationApiCreateComponentScorecardWorkItemArgs = {
|
|
5660
|
+
cloudId: Scalars['ID']['input'];
|
|
5661
|
+
input: CompassCreateComponentScorecardWorkItemInput;
|
|
5662
|
+
};
|
|
5657
5663
|
export declare type CompassCatalogMutationApiCreateComponentSubscriptionArgs = {
|
|
5658
5664
|
input: CompassCreateComponentSubscriptionInput;
|
|
5659
5665
|
};
|
|
@@ -5838,6 +5844,10 @@ export declare type CompassCatalogMutationApiUpdateComponentLinkArgs = {
|
|
|
5838
5844
|
export declare type CompassCatalogMutationApiUpdateComponentScorecardJiraIssueArgs = {
|
|
5839
5845
|
input: CompassUpdateComponentScorecardJiraIssueInput;
|
|
5840
5846
|
};
|
|
5847
|
+
export declare type CompassCatalogMutationApiUpdateComponentScorecardWorkItemArgs = {
|
|
5848
|
+
cloudId: Scalars['ID']['input'];
|
|
5849
|
+
input: CompassUpdateComponentScorecardWorkItemInput;
|
|
5850
|
+
};
|
|
5841
5851
|
export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
5842
5852
|
input: UpdateCompassComponentTypeInput;
|
|
5843
5853
|
};
|
|
@@ -6347,6 +6357,7 @@ export declare type CompassComponentHasScorecardsAppliedConnection = {
|
|
|
6347
6357
|
export declare type CompassComponentHasScorecardsAppliedEdge = {
|
|
6348
6358
|
__typename?: 'CompassComponentHasScorecardsAppliedEdge';
|
|
6349
6359
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
6360
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
6350
6361
|
cursor: Scalars['String']['output'];
|
|
6351
6362
|
node?: Maybe<CompassScorecard>;
|
|
6352
6363
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
@@ -6354,6 +6365,9 @@ export declare type CompassComponentHasScorecardsAppliedEdge = {
|
|
|
6354
6365
|
export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
|
|
6355
6366
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
6356
6367
|
};
|
|
6368
|
+
export declare type CompassComponentHasScorecardsAppliedEdgeActiveWorkItemsArgs = {
|
|
6369
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
6370
|
+
};
|
|
6357
6371
|
export declare type CompassComponentInstancePermissions = {
|
|
6358
6372
|
__typename?: 'CompassComponentInstancePermissions';
|
|
6359
6373
|
applyScorecard?: Maybe<CompassPermissionResult>;
|
|
@@ -6441,6 +6455,7 @@ export declare type CompassComponentScorecardJiraIssuesQueryResult = CompassComp
|
|
|
6441
6455
|
export declare type CompassComponentScorecardRelationship = {
|
|
6442
6456
|
__typename?: 'CompassComponentScorecardRelationship';
|
|
6443
6457
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
6458
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
6444
6459
|
appliedSince: Scalars['DateTime']['output'];
|
|
6445
6460
|
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
6446
6461
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
@@ -6450,6 +6465,9 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
6450
6465
|
export declare type CompassComponentScorecardRelationshipActiveIssuesArgs = {
|
|
6451
6466
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
6452
6467
|
};
|
|
6468
|
+
export declare type CompassComponentScorecardRelationshipActiveWorkItemsArgs = {
|
|
6469
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
6470
|
+
};
|
|
6453
6471
|
export declare type CompassComponentScorecardRelationshipCriteriaScoreHistoriesArgs = {
|
|
6454
6472
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6455
6473
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -6463,12 +6481,30 @@ export declare type CompassComponentScorecardRelationshipScorecardScoreHistories
|
|
|
6463
6481
|
export declare type CompassComponentScorecardRelationshipInstancePermissions = {
|
|
6464
6482
|
__typename?: 'CompassComponentScorecardRelationshipInstancePermissions';
|
|
6465
6483
|
createJiraIssueForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
6484
|
+
createWorkItemForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
6466
6485
|
removeScorecard?: Maybe<CompassPermissionResult>;
|
|
6467
6486
|
};
|
|
6468
6487
|
export declare type CompassComponentScorecardRelationshipResult = CompassComponentScorecardRelationship | QueryError;
|
|
6469
6488
|
export declare type CompassComponentScorecardScoreQuery = {
|
|
6470
6489
|
scorecardId: Scalars['ID']['input'];
|
|
6471
6490
|
};
|
|
6491
|
+
export declare type CompassComponentScorecardWorkItemConnection = {
|
|
6492
|
+
__typename?: 'CompassComponentScorecardWorkItemConnection';
|
|
6493
|
+
edges?: Maybe<Array<Maybe<CompassComponentScorecardWorkItemEdge>>>;
|
|
6494
|
+
nodes?: Maybe<Array<Maybe<CompassWorkItem>>>;
|
|
6495
|
+
pageInfo: PageInfo;
|
|
6496
|
+
};
|
|
6497
|
+
export declare type CompassComponentScorecardWorkItemEdge = CompassWorkItemEdge & {
|
|
6498
|
+
__typename?: 'CompassComponentScorecardWorkItemEdge';
|
|
6499
|
+
cursor: Scalars['String']['output'];
|
|
6500
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
6501
|
+
node?: Maybe<CompassWorkItem>;
|
|
6502
|
+
};
|
|
6503
|
+
export declare type CompassComponentScorecardWorkItemsQuery = {
|
|
6504
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
6505
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6506
|
+
};
|
|
6507
|
+
export declare type CompassComponentScorecardWorkItemsQueryResult = CompassComponentScorecardWorkItemConnection | QueryError;
|
|
6472
6508
|
export declare type CompassComponentSpec = {
|
|
6473
6509
|
__typename?: 'CompassComponentSpec';
|
|
6474
6510
|
api?: Maybe<CompassComponentApi>;
|
|
@@ -6631,6 +6667,17 @@ export declare type CompassCreateComponentScorecardJiraIssuePayload = Payload &
|
|
|
6631
6667
|
errors?: Maybe<Array<MutationError>>;
|
|
6632
6668
|
success: Scalars['Boolean']['output'];
|
|
6633
6669
|
};
|
|
6670
|
+
export declare type CompassCreateComponentScorecardWorkItemInput = {
|
|
6671
|
+
componentId: Scalars['ID']['input'];
|
|
6672
|
+
scorecardId: Scalars['ID']['input'];
|
|
6673
|
+
url: Scalars['URL']['input'];
|
|
6674
|
+
workItemId: Scalars['ID']['input'];
|
|
6675
|
+
};
|
|
6676
|
+
export declare type CompassCreateComponentScorecardWorkItemPayload = Payload & {
|
|
6677
|
+
__typename?: 'CompassCreateComponentScorecardWorkItemPayload';
|
|
6678
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6679
|
+
success: Scalars['Boolean']['output'];
|
|
6680
|
+
};
|
|
6634
6681
|
export declare type CompassCreateComponentSubscriptionInput = {
|
|
6635
6682
|
componentId: Scalars['ID']['input'];
|
|
6636
6683
|
};
|
|
@@ -7440,6 +7487,7 @@ export declare type CompassDeactivateScorecardForComponentPayload = Payload & {
|
|
|
7440
7487
|
export declare type CompassDeactivatedScorecard = {
|
|
7441
7488
|
__typename?: 'CompassDeactivatedScorecard';
|
|
7442
7489
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
7490
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
7443
7491
|
applicationModel: CompassScorecardApplicationModel;
|
|
7444
7492
|
description?: Maybe<Scalars['String']['output']>;
|
|
7445
7493
|
id: Scalars['ID']['output'];
|
|
@@ -7451,6 +7499,9 @@ export declare type CompassDeactivatedScorecard = {
|
|
|
7451
7499
|
export declare type CompassDeactivatedScorecardActiveIssuesArgs = {
|
|
7452
7500
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
7453
7501
|
};
|
|
7502
|
+
export declare type CompassDeactivatedScorecardActiveWorkItemsArgs = {
|
|
7503
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
7504
|
+
};
|
|
7454
7505
|
export declare type CompassDeactivatedScorecardsConnection = {
|
|
7455
7506
|
__typename?: 'CompassDeactivatedScorecardsConnection';
|
|
7456
7507
|
edges?: Maybe<Array<CompassComponentDeactivatedScorecardsEdge>>;
|
|
@@ -8846,6 +8897,7 @@ export declare type CompassScorecardAppliedToComponentsCriteriaFilter = {
|
|
|
8846
8897
|
export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
8847
8898
|
__typename?: 'CompassScorecardAppliedToComponentsEdge';
|
|
8848
8899
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
8900
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
8849
8901
|
cursor: Scalars['String']['output'];
|
|
8850
8902
|
node?: Maybe<CompassComponent>;
|
|
8851
8903
|
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
@@ -8853,6 +8905,9 @@ export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
|
8853
8905
|
export declare type CompassScorecardAppliedToComponentsEdgeActiveIssuesArgs = {
|
|
8854
8906
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
8855
8907
|
};
|
|
8908
|
+
export declare type CompassScorecardAppliedToComponentsEdgeActiveWorkItemsArgs = {
|
|
8909
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
8910
|
+
};
|
|
8856
8911
|
export declare type CompassScorecardAppliedToComponentsFieldFilter = {
|
|
8857
8912
|
definition: Scalars['ID']['input'];
|
|
8858
8913
|
in: Array<CompassFieldValueInput>;
|
|
@@ -9191,6 +9246,7 @@ export declare type CompassScorecardDeactivatedComponentsConnection = {
|
|
|
9191
9246
|
export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
9192
9247
|
__typename?: 'CompassScorecardDeactivatedComponentsEdge';
|
|
9193
9248
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
9249
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
9194
9250
|
cursor: Scalars['String']['output'];
|
|
9195
9251
|
deactivatedBy?: Maybe<User>;
|
|
9196
9252
|
deactivatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -9200,6 +9256,9 @@ export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
|
9200
9256
|
export declare type CompassScorecardDeactivatedComponentsEdgeActiveIssuesArgs = {
|
|
9201
9257
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
9202
9258
|
};
|
|
9259
|
+
export declare type CompassScorecardDeactivatedComponentsEdgeActiveWorkItemsArgs = {
|
|
9260
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
9261
|
+
};
|
|
9203
9262
|
export declare type CompassScorecardDeactivatedComponentsQuery = {
|
|
9204
9263
|
filter?: InputMaybe<CompassScorecardDeactivatedComponentsQueryFilter>;
|
|
9205
9264
|
sort?: InputMaybe<CompassScorecardDeactivatedComponentsQuerySort>;
|
|
@@ -9677,6 +9736,17 @@ export declare type CompassUpdateComponentScorecardJiraIssuePayload = Payload &
|
|
|
9677
9736
|
errors?: Maybe<Array<MutationError>>;
|
|
9678
9737
|
success: Scalars['Boolean']['output'];
|
|
9679
9738
|
};
|
|
9739
|
+
export declare type CompassUpdateComponentScorecardWorkItemInput = {
|
|
9740
|
+
componentId: Scalars['ID']['input'];
|
|
9741
|
+
isActive: Scalars['Boolean']['input'];
|
|
9742
|
+
scorecardId: Scalars['ID']['input'];
|
|
9743
|
+
workItemId: Scalars['ID']['input'];
|
|
9744
|
+
};
|
|
9745
|
+
export declare type CompassUpdateComponentScorecardWorkItemPayload = Payload & {
|
|
9746
|
+
__typename?: 'CompassUpdateComponentScorecardWorkItemPayload';
|
|
9747
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9748
|
+
success: Scalars['Boolean']['output'];
|
|
9749
|
+
};
|
|
9680
9750
|
export declare type CompassUpdateCustomBooleanFieldDefinitionInput = {
|
|
9681
9751
|
componentTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
9682
9752
|
componentTypes?: InputMaybe<Array<CompassComponentType>>;
|
|
@@ -10042,6 +10112,18 @@ export declare type CompassWebhook = {
|
|
|
10042
10112
|
id: Scalars['ID']['output'];
|
|
10043
10113
|
url: Scalars['String']['output'];
|
|
10044
10114
|
};
|
|
10115
|
+
export declare type CompassWorkItem = {
|
|
10116
|
+
__typename?: 'CompassWorkItem';
|
|
10117
|
+
changeMetadata: CompassChangeMetadata;
|
|
10118
|
+
id: Scalars['ID']['output'];
|
|
10119
|
+
url: Scalars['URL']['output'];
|
|
10120
|
+
workItemId?: Maybe<Scalars['ID']['output']>;
|
|
10121
|
+
};
|
|
10122
|
+
export declare type CompassWorkItemEdge = {
|
|
10123
|
+
cursor: Scalars['String']['output'];
|
|
10124
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
10125
|
+
node?: Maybe<CompassWorkItem>;
|
|
10126
|
+
};
|
|
10045
10127
|
export declare type CompatibleAtlassianCloudProduct = CompatibleAtlassianProduct & {
|
|
10046
10128
|
__typename?: 'CompatibleAtlassianCloudProduct';
|
|
10047
10129
|
atlassianProduct?: Maybe<MarketplaceSupportedAtlassianProduct>;
|
|
@@ -22064,6 +22146,7 @@ export declare type CustomerServiceTemplateForm = Node & {
|
|
|
22064
22146
|
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
22065
22147
|
helpCenterId: Scalars['ID']['output'];
|
|
22066
22148
|
id: Scalars['ID']['output'];
|
|
22149
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
22067
22150
|
name?: Maybe<Scalars['String']['output']>;
|
|
22068
22151
|
};
|
|
22069
22152
|
export declare type CustomerServiceTemplateFormConnection = {
|
|
@@ -38899,10 +38982,14 @@ export declare type GraphStoreCreateTeamConnectedToContainerPayload = Payload &
|
|
|
38899
38982
|
};
|
|
38900
38983
|
export declare type GraphStoreCreateTeamConnectedToContainerRelationshipInput = {
|
|
38901
38984
|
from: Scalars['ID']['input'];
|
|
38985
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateTeamConnectedToContainerRelationshipMetadataInput>;
|
|
38902
38986
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
38903
38987
|
to: Scalars['ID']['input'];
|
|
38904
38988
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
38905
38989
|
};
|
|
38990
|
+
export declare type GraphStoreCreateTeamConnectedToContainerRelationshipMetadataInput = {
|
|
38991
|
+
createdFromAutocreate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38992
|
+
};
|
|
38906
38993
|
export declare type GraphStoreCreateTestPerfhammerRelationshipInput = {
|
|
38907
38994
|
relationships: Array<GraphStoreCreateTestPerfhammerRelationshipRelationshipInput>;
|
|
38908
38995
|
};
|
|
@@ -52327,6 +52414,7 @@ export declare type GraphStoreTeamConnectedToContainerSortInput = {
|
|
|
52327
52414
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
52328
52415
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
52329
52416
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52417
|
+
relationship_createdFromAutocreate?: InputMaybe<GraphStoreSortInput>;
|
|
52330
52418
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
52331
52419
|
};
|
|
52332
52420
|
export declare type GraphStoreTeamOwnsComponentSortInput = {
|
|
@@ -58287,6 +58375,13 @@ export declare type JiraCmdbStatusType = {
|
|
|
58287
58375
|
name?: Maybe<Scalars['String']['output']>;
|
|
58288
58376
|
objectSchemaId?: Maybe<Scalars['String']['output']>;
|
|
58289
58377
|
};
|
|
58378
|
+
export declare enum JiraCollapsibleSection {
|
|
58379
|
+
Activity = "ACTIVITY",
|
|
58380
|
+
Attachments = "ATTACHMENTS",
|
|
58381
|
+
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
58382
|
+
Description = "DESCRIPTION",
|
|
58383
|
+
LinkedWorkItem = "LINKED_WORK_ITEM"
|
|
58384
|
+
}
|
|
58290
58385
|
export declare type JiraColor = {
|
|
58291
58386
|
__typename?: 'JiraColor';
|
|
58292
58387
|
colorKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -59203,6 +59298,7 @@ export declare type JiraCustomBackgroundEdge = {
|
|
|
59203
59298
|
node?: Maybe<JiraCustomBackground>;
|
|
59204
59299
|
};
|
|
59205
59300
|
export declare type JiraCustomFieldOptionInput = {
|
|
59301
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
59206
59302
|
externalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
59207
59303
|
optionId?: InputMaybe<Scalars['Long']['input']>;
|
|
59208
59304
|
parentExternalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -60395,6 +60491,7 @@ export declare type JiraFieldOperation = {
|
|
|
60395
60491
|
};
|
|
60396
60492
|
export declare type JiraFieldOption = {
|
|
60397
60493
|
__typename?: 'JiraFieldOption';
|
|
60494
|
+
color?: Maybe<JiraColor>;
|
|
60398
60495
|
optionId?: Maybe<Scalars['Long']['output']>;
|
|
60399
60496
|
parentOptionId?: Maybe<Scalars['Long']['output']>;
|
|
60400
60497
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -62894,6 +62991,10 @@ export declare type JiraIssueSearchViewInput = {
|
|
|
62894
62991
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
62895
62992
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
62896
62993
|
};
|
|
62994
|
+
export declare enum JiraIssueSearchViewLayout {
|
|
62995
|
+
Detail = "DETAIL",
|
|
62996
|
+
List = "LIST"
|
|
62997
|
+
}
|
|
62897
62998
|
export declare type JiraIssueSearchViewMetadata = {
|
|
62898
62999
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
62899
63000
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
@@ -63129,6 +63230,15 @@ export declare enum JiraIssueViewAttachmentPanelViewMode {
|
|
|
63129
63230
|
ListView = "LIST_VIEW",
|
|
63130
63231
|
StripView = "STRIP_VIEW"
|
|
63131
63232
|
}
|
|
63233
|
+
export declare type JiraIssueViewCollapsibleSection = {
|
|
63234
|
+
__typename?: 'JiraIssueViewCollapsibleSection';
|
|
63235
|
+
isCollapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
63236
|
+
section?: Maybe<JiraCollapsibleSection>;
|
|
63237
|
+
};
|
|
63238
|
+
export declare type JiraIssueViewCollapsibleSections = {
|
|
63239
|
+
__typename?: 'JiraIssueViewCollapsibleSections';
|
|
63240
|
+
sections?: Maybe<Array<Maybe<JiraIssueViewCollapsibleSection>>>;
|
|
63241
|
+
};
|
|
63132
63242
|
export declare type JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType = {
|
|
63133
63243
|
__typename?: 'JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType';
|
|
63134
63244
|
dismissUntilDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -63241,6 +63351,7 @@ export declare type JiraJourneyConfiguration = Node & {
|
|
|
63241
63351
|
triggerConfiguration?: Maybe<JiraJourneyTriggerConfiguration>;
|
|
63242
63352
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
63243
63353
|
updatedBy?: Maybe<User>;
|
|
63354
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63244
63355
|
version?: Maybe<Scalars['Long']['output']>;
|
|
63245
63356
|
};
|
|
63246
63357
|
export declare type JiraJourneyConfigurationConnection = {
|
|
@@ -63259,6 +63370,7 @@ export declare type JiraJourneyItem = JiraJourneyStatusDependency | JiraJourneyW
|
|
|
63259
63370
|
export declare type JiraJourneyItemCommon = {
|
|
63260
63371
|
id: Scalars['ID']['output'];
|
|
63261
63372
|
name?: Maybe<Scalars['String']['output']>;
|
|
63373
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63262
63374
|
};
|
|
63263
63375
|
export declare type JiraJourneyItemConfigurationInput = {
|
|
63264
63376
|
statusDependencyConfiguration?: InputMaybe<JiraJourneyStatusDependencyConfigurationInput>;
|
|
@@ -63267,6 +63379,7 @@ export declare type JiraJourneyItemConfigurationInput = {
|
|
|
63267
63379
|
export declare type JiraJourneyParentIssue = {
|
|
63268
63380
|
__typename?: 'JiraJourneyParentIssue';
|
|
63269
63381
|
project?: Maybe<JiraProject>;
|
|
63382
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63270
63383
|
value?: Maybe<JiraJourneyParentIssueValueType>;
|
|
63271
63384
|
};
|
|
63272
63385
|
export declare type JiraJourneyParentIssueInput = {
|
|
@@ -63308,6 +63421,7 @@ export declare type JiraJourneyStatusDependency = JiraJourneyItemCommon & {
|
|
|
63308
63421
|
statusIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
63309
63422
|
statusType?: Maybe<JiraJourneyStatusDependencyType>;
|
|
63310
63423
|
statuses?: Maybe<Array<JiraJourneyStatusDependencyStatus>>;
|
|
63424
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63311
63425
|
workItemIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
63312
63426
|
workItems?: Maybe<Array<JiraJourneyWorkItem>>;
|
|
63313
63427
|
};
|
|
@@ -63345,6 +63459,10 @@ export declare enum JiraJourneyTriggerType {
|
|
|
63345
63459
|
ParentIssueCreated = "PARENT_ISSUE_CREATED",
|
|
63346
63460
|
WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
|
|
63347
63461
|
}
|
|
63462
|
+
export declare type JiraJourneyValidationError = {
|
|
63463
|
+
__typename?: 'JiraJourneyValidationError';
|
|
63464
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
63465
|
+
};
|
|
63348
63466
|
export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
63349
63467
|
__typename?: 'JiraJourneyWorkItem';
|
|
63350
63468
|
associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
|
|
@@ -63354,6 +63472,7 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
|
63354
63472
|
name?: Maybe<Scalars['String']['output']>;
|
|
63355
63473
|
project?: Maybe<JiraProject>;
|
|
63356
63474
|
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
63475
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63357
63476
|
};
|
|
63358
63477
|
export declare type JiraJourneyWorkItemConfigurationInput = {
|
|
63359
63478
|
fieldValues?: InputMaybe<Array<InputMaybe<JiraJourneyWorkItemFieldValueKeyValuePairInput>>>;
|
|
@@ -70922,6 +71041,15 @@ export declare type JiraSetIssueSearchHideDoneItemsPayload = Payload & {
|
|
|
70922
71041
|
errors?: Maybe<Array<MutationError>>;
|
|
70923
71042
|
success: Scalars['Boolean']['output'];
|
|
70924
71043
|
};
|
|
71044
|
+
export declare type JiraSetIssueSearchViewLayoutInput = {
|
|
71045
|
+
viewId: Scalars['ID']['input'];
|
|
71046
|
+
viewLayout: JiraIssueSearchViewLayout;
|
|
71047
|
+
};
|
|
71048
|
+
export declare type JiraSetIssueSearchViewLayoutPayload = Payload & {
|
|
71049
|
+
__typename?: 'JiraSetIssueSearchViewLayoutPayload';
|
|
71050
|
+
errors?: Maybe<Array<MutationError>>;
|
|
71051
|
+
success: Scalars['Boolean']['output'];
|
|
71052
|
+
};
|
|
70925
71053
|
export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
|
|
70926
71054
|
__typename?: 'JiraSetMostRecentlyViewedBoardPayload';
|
|
70927
71055
|
board?: Maybe<JiraBoard>;
|
|
@@ -72862,6 +72990,7 @@ export declare type JiraUserPreferences = {
|
|
|
72862
72990
|
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
72863
72991
|
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
72864
72992
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
72993
|
+
issueViewCollapsibleSectionsState?: Maybe<JiraIssueViewCollapsibleSections>;
|
|
72865
72994
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
72866
72995
|
issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
|
|
72867
72996
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
@@ -72880,6 +73009,9 @@ export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplat
|
|
|
72880
73009
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
72881
73010
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72882
73011
|
};
|
|
73012
|
+
export declare type JiraUserPreferencesIssueViewCollapsibleSectionsStateArgs = {
|
|
73013
|
+
projectKey: Scalars['String']['input'];
|
|
73014
|
+
};
|
|
72883
73015
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
72884
73016
|
projectKey: Scalars['String']['input'];
|
|
72885
73017
|
};
|
|
@@ -75492,6 +75624,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
75492
75624
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
75493
75625
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
75494
75626
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
75627
|
+
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
75495
75628
|
};
|
|
75496
75629
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
75497
75630
|
cloudId: Scalars['ID']['input'];
|
|
@@ -75591,6 +75724,9 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
75591
75724
|
id: Scalars['String']['input'];
|
|
75592
75725
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
75593
75726
|
};
|
|
75727
|
+
export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
75728
|
+
cloudId: Scalars['String']['input'];
|
|
75729
|
+
};
|
|
75594
75730
|
export declare type KnowledgeDiscoveryRelatedEntitiesResult = KnowledgeDiscoveryRelatedEntityConnection | QueryError;
|
|
75595
75731
|
export declare type KnowledgeDiscoveryRelatedEntityAction = {
|
|
75596
75732
|
action?: InputMaybe<KnowledgeDiscoveryRelatedEntityActionType>;
|
|
@@ -75727,6 +75863,11 @@ export declare type KnowledgeDiscoveryUsers = {
|
|
|
75727
75863
|
__typename?: 'KnowledgeDiscoveryUsers';
|
|
75728
75864
|
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
|
|
75729
75865
|
};
|
|
75866
|
+
export declare type KnowledgeDiscoveryZeroQueries = {
|
|
75867
|
+
__typename?: 'KnowledgeDiscoveryZeroQueries';
|
|
75868
|
+
zeroQueries?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
75869
|
+
};
|
|
75870
|
+
export declare type KnowledgeDiscoveryZeroQueriesResult = KnowledgeDiscoveryZeroQueries | QueryError;
|
|
75730
75871
|
export declare enum KnowledgeGraphContentType {
|
|
75731
75872
|
Blogpost = "BLOGPOST",
|
|
75732
75873
|
Page = "PAGE"
|
|
@@ -76698,8 +76839,8 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
76698
76839
|
appKey: Scalars['ID']['output'];
|
|
76699
76840
|
appSoftwareId: Scalars['ID']['output'];
|
|
76700
76841
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
76842
|
+
hasActiveCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76701
76843
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76702
|
-
hasCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76703
76844
|
hasDecoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76704
76845
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76705
76846
|
hosting: MarketplaceConsoleHosting;
|
|
@@ -77435,6 +77576,7 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
|
77435
77576
|
canViewPartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
77436
77577
|
canViewSalesReport: Scalars['Boolean']['output'];
|
|
77437
77578
|
canViewUsageReports: Scalars['Boolean']['output'];
|
|
77579
|
+
hasPartnerAdminRole: Scalars['Boolean']['output'];
|
|
77438
77580
|
isMarketplaceReader: Scalars['Boolean']['output'];
|
|
77439
77581
|
isPartnerAdmin: Scalars['Boolean']['output'];
|
|
77440
77582
|
isSiteAdmin: Scalars['Boolean']['output'];
|
|
@@ -81831,6 +81973,7 @@ export declare type Mutation = {
|
|
|
81831
81973
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
81832
81974
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
81833
81975
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
81976
|
+
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
81834
81977
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
81835
81978
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
81836
81979
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
@@ -83320,6 +83463,9 @@ export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
|
83320
83463
|
export declare type MutationJira_SetIssueSearchHideDoneItemsArgs = {
|
|
83321
83464
|
input: JiraSetIssueSearchHideDoneItemsInput;
|
|
83322
83465
|
};
|
|
83466
|
+
export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
|
|
83467
|
+
input: JiraSetIssueSearchViewLayoutInput;
|
|
83468
|
+
};
|
|
83323
83469
|
export declare type MutationJira_SetViewFilterArgs = {
|
|
83324
83470
|
input: JiraSetViewFilterInput;
|
|
83325
83471
|
};
|
|
@@ -92791,6 +92937,7 @@ export declare type SearchL2FeatureProvider = {
|
|
|
92791
92937
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
92792
92938
|
};
|
|
92793
92939
|
export declare type SearchLayerDefinition = {
|
|
92940
|
+
abTestId?: InputMaybe<Scalars['String']['input']>;
|
|
92794
92941
|
entity?: InputMaybe<Scalars['String']['input']>;
|
|
92795
92942
|
layerId?: InputMaybe<Scalars['String']['input']>;
|
|
92796
92943
|
shadowId?: InputMaybe<Scalars['String']['input']>;
|