@forge/cli-shared 3.25.2 → 3.26.0-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/out/apps/create-an-app.js +1 -1
- package/out/apps/register-app.d.ts +1 -1
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/apps/register-app.js +3 -5
- package/out/graphql/graphql-types.d.ts +368 -4
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +42 -12
- package/out/index.d.ts +1 -0
- package/out/index.d.ts.map +1 -1
- package/out/index.js +1 -0
- package/out/tunnel/index.d.ts +2 -0
- package/out/tunnel/index.d.ts.map +1 -0
- package/out/tunnel/index.js +4 -0
- package/out/tunnel/tunnel-options.d.ts +10 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -0
- package/out/tunnel/tunnel-options.js +2 -0
- package/out/ui/text.d.ts +4 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -1
- package/package.json +2 -2
|
@@ -48,6 +48,10 @@ export declare type Scalars = {
|
|
|
48
48
|
input: any;
|
|
49
49
|
output: any;
|
|
50
50
|
};
|
|
51
|
+
BigDecimal: {
|
|
52
|
+
input: any;
|
|
53
|
+
output: any;
|
|
54
|
+
};
|
|
51
55
|
CardPaletteColor: {
|
|
52
56
|
input: any;
|
|
53
57
|
output: any;
|
|
@@ -770,6 +774,19 @@ export declare type AdminWorkspacesMeta = {
|
|
|
770
774
|
startIndex?: Maybe<Scalars['Int']['output']>;
|
|
771
775
|
total?: Maybe<Scalars['Int']['output']>;
|
|
772
776
|
};
|
|
777
|
+
export declare enum AlertEventStatus {
|
|
778
|
+
Acknowledged = "ACKNOWLEDGED",
|
|
779
|
+
Closed = "CLOSED",
|
|
780
|
+
Opened = "OPENED",
|
|
781
|
+
Snoozed = "SNOOZED"
|
|
782
|
+
}
|
|
783
|
+
export declare enum AlertPriority {
|
|
784
|
+
P1 = "P1",
|
|
785
|
+
P2 = "P2",
|
|
786
|
+
P3 = "P3",
|
|
787
|
+
P4 = "P4",
|
|
788
|
+
P5 = "P5"
|
|
789
|
+
}
|
|
773
790
|
export declare enum ApiContext {
|
|
774
791
|
Devops = "DEVOPS"
|
|
775
792
|
}
|
|
@@ -3119,10 +3136,22 @@ export declare type CompassAlertEvent = CompassEvent & {
|
|
|
3119
3136
|
};
|
|
3120
3137
|
export declare type CompassAlertEventProperties = {
|
|
3121
3138
|
__typename?: 'CompassAlertEventProperties';
|
|
3139
|
+
acknowledgedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3140
|
+
closedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3141
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3122
3142
|
id: Scalars['ID']['output'];
|
|
3143
|
+
priority?: Maybe<Scalars['String']['output']>;
|
|
3144
|
+
snoozedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3145
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
3123
3146
|
};
|
|
3124
3147
|
export declare type CompassAlertEventPropertiesInput = {
|
|
3148
|
+
acknowledgedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3149
|
+
closedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3150
|
+
createdAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3125
3151
|
id: Scalars['ID']['input'];
|
|
3152
|
+
priority?: InputMaybe<AlertPriority>;
|
|
3153
|
+
snoozedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3154
|
+
status?: InputMaybe<AlertEventStatus>;
|
|
3126
3155
|
};
|
|
3127
3156
|
export declare type CompassAnnouncement = {
|
|
3128
3157
|
__typename?: 'CompassAnnouncement';
|
|
@@ -3290,6 +3319,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3290
3319
|
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
3291
3320
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
3292
3321
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
3322
|
+
updateDocument?: Maybe<CompassUpdateDocumentPayload>;
|
|
3293
3323
|
updateMetricDefinition?: Maybe<CompassUpdateMetricDefinitionPayload>;
|
|
3294
3324
|
updateScorecard?: Maybe<UpdateCompassScorecardPayload>;
|
|
3295
3325
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
@@ -3474,6 +3504,9 @@ export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
|
3474
3504
|
export declare type CompassCatalogMutationApiUpdateCustomFieldDefinitionArgs = {
|
|
3475
3505
|
input: CompassUpdateCustomFieldDefinitionInput;
|
|
3476
3506
|
};
|
|
3507
|
+
export declare type CompassCatalogMutationApiUpdateDocumentArgs = {
|
|
3508
|
+
input: CompassUpdateDocumentInput;
|
|
3509
|
+
};
|
|
3477
3510
|
export declare type CompassCatalogMutationApiUpdateMetricDefinitionArgs = {
|
|
3478
3511
|
input: CompassUpdateMetricDefinitionInput;
|
|
3479
3512
|
};
|
|
@@ -4024,7 +4057,6 @@ export declare type CompassCreateMetricSourcePayload = Payload & {
|
|
|
4024
4057
|
success: Scalars['Boolean']['output'];
|
|
4025
4058
|
};
|
|
4026
4059
|
export declare type CompassCreatePullRequestEventInput = {
|
|
4027
|
-
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
4028
4060
|
lastUpdated: Scalars['DateTime']['input'];
|
|
4029
4061
|
pullRequestProperties: CompassPullRequestInputProperties;
|
|
4030
4062
|
};
|
|
@@ -5721,6 +5753,18 @@ export declare type CompassUpdateCustomUserFieldDefinitionInput = {
|
|
|
5721
5753
|
id: Scalars['ID']['input'];
|
|
5722
5754
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5723
5755
|
};
|
|
5756
|
+
export declare type CompassUpdateDocumentInput = {
|
|
5757
|
+
documentCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
5758
|
+
id: Scalars['ID']['input'];
|
|
5759
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
5760
|
+
url?: InputMaybe<Scalars['URL']['input']>;
|
|
5761
|
+
};
|
|
5762
|
+
export declare type CompassUpdateDocumentPayload = Payload & {
|
|
5763
|
+
__typename?: 'CompassUpdateDocumentPayload';
|
|
5764
|
+
documentDetails: CompassDocument;
|
|
5765
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5766
|
+
success: Scalars['Boolean']['output'];
|
|
5767
|
+
};
|
|
5724
5768
|
export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
5725
5769
|
booleanComparator?: InputMaybe<CompassCriteriaBooleanComparatorOptions>;
|
|
5726
5770
|
booleanComparatorValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -6500,6 +6544,11 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
6500
6544
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
6501
6545
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
6502
6546
|
};
|
|
6547
|
+
export declare type ConfluencePublicLinkPage = {
|
|
6548
|
+
__typename?: 'ConfluencePublicLinkPage';
|
|
6549
|
+
body?: Maybe<ConfluenceBodies>;
|
|
6550
|
+
type?: Maybe<ConfluenceContentType>;
|
|
6551
|
+
};
|
|
6503
6552
|
export declare type ConfluencePublishBlogPostInput = {
|
|
6504
6553
|
id: Scalars['ID']['input'];
|
|
6505
6554
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6549,6 +6598,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
6549
6598
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
6550
6599
|
page?: Maybe<ConfluencePage>;
|
|
6551
6600
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
6601
|
+
publicLink?: Maybe<ConfluencePublicLinkPage>;
|
|
6552
6602
|
space?: Maybe<ConfluenceSpace>;
|
|
6553
6603
|
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
6554
6604
|
validateSpaceKey?: Maybe<ConfluenceValidateSpaceKeyResponse>;
|
|
@@ -6591,6 +6641,9 @@ export declare type ConfluenceQueryApiPageArgs = {
|
|
|
6591
6641
|
export declare type ConfluenceQueryApiPagesArgs = {
|
|
6592
6642
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
6593
6643
|
};
|
|
6644
|
+
export declare type ConfluenceQueryApiPublicLinkArgs = {
|
|
6645
|
+
id: Scalars['ID']['input'];
|
|
6646
|
+
};
|
|
6594
6647
|
export declare type ConfluenceQueryApiSpaceArgs = {
|
|
6595
6648
|
id: Scalars['ID']['input'];
|
|
6596
6649
|
};
|
|
@@ -10083,7 +10136,6 @@ export declare type DevOpsOperationsComponentDetails = {
|
|
|
10083
10136
|
id: Scalars['ID']['output'];
|
|
10084
10137
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
10085
10138
|
name?: Maybe<Scalars['String']['output']>;
|
|
10086
|
-
providerAri?: Maybe<Scalars['String']['output']>;
|
|
10087
10139
|
providerComponentId?: Maybe<Scalars['String']['output']>;
|
|
10088
10140
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
10089
10141
|
tier?: Maybe<DevOpsComponentTier>;
|
|
@@ -29384,6 +29436,13 @@ export declare type JiraConfigurableNavigationItemInput = {
|
|
|
29384
29436
|
isVisible: Scalars['Boolean']['input'];
|
|
29385
29437
|
menuId: Scalars['String']['input'];
|
|
29386
29438
|
};
|
|
29439
|
+
export declare type JiraConfiguratorIssueTypeScheme = {
|
|
29440
|
+
__typename?: 'JiraConfiguratorIssueTypeScheme';
|
|
29441
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
29442
|
+
id: Scalars['ID']['output'];
|
|
29443
|
+
issueTypes?: Maybe<Array<JiraIssueType>>;
|
|
29444
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
29445
|
+
};
|
|
29387
29446
|
export declare type JiraConfluenceRemoteIssueLink = {
|
|
29388
29447
|
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
29389
29448
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -30666,6 +30725,55 @@ export declare type JiraGlobalTimeTrackingSettings = {
|
|
|
30666
30725
|
hoursPerDay: Scalars['Float']['output'];
|
|
30667
30726
|
isTimeTrackingEnabled: Scalars['Boolean']['output'];
|
|
30668
30727
|
};
|
|
30728
|
+
export declare type JiraGoal = Node & {
|
|
30729
|
+
__typename?: 'JiraGoal';
|
|
30730
|
+
id: Scalars['ID']['output'];
|
|
30731
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
30732
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
30733
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
30734
|
+
status?: Maybe<JiraGoalStatus>;
|
|
30735
|
+
targetDate?: Maybe<Scalars['Date']['output']>;
|
|
30736
|
+
};
|
|
30737
|
+
export declare type JiraGoalConnection = {
|
|
30738
|
+
__typename?: 'JiraGoalConnection';
|
|
30739
|
+
edges?: Maybe<Array<Maybe<JiraGoalEdge>>>;
|
|
30740
|
+
errors?: Maybe<Array<QueryError>>;
|
|
30741
|
+
pageInfo: PageInfo;
|
|
30742
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
30743
|
+
};
|
|
30744
|
+
export declare type JiraGoalEdge = {
|
|
30745
|
+
__typename?: 'JiraGoalEdge';
|
|
30746
|
+
cursor: Scalars['String']['output'];
|
|
30747
|
+
node?: Maybe<JiraGoal>;
|
|
30748
|
+
};
|
|
30749
|
+
export declare enum JiraGoalStatus {
|
|
30750
|
+
AtRisk = "AT_RISK",
|
|
30751
|
+
Cancelled = "CANCELLED",
|
|
30752
|
+
Completed = "COMPLETED",
|
|
30753
|
+
OffTrack = "OFF_TRACK",
|
|
30754
|
+
OnTrack = "ON_TRACK",
|
|
30755
|
+
Paused = "PAUSED",
|
|
30756
|
+
Pending = "PENDING"
|
|
30757
|
+
}
|
|
30758
|
+
export declare type JiraGoalsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
30759
|
+
__typename?: 'JiraGoalsField';
|
|
30760
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
30761
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
30762
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
30763
|
+
fieldId: Scalars['String']['output'];
|
|
30764
|
+
id: Scalars['ID']['output'];
|
|
30765
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
30766
|
+
name: Scalars['String']['output'];
|
|
30767
|
+
selectedGoals?: Maybe<JiraGoalConnection>;
|
|
30768
|
+
type: Scalars['String']['output'];
|
|
30769
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
30770
|
+
};
|
|
30771
|
+
export declare type JiraGoalsFieldSelectedGoalsArgs = {
|
|
30772
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30773
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
30774
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30775
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30776
|
+
};
|
|
30669
30777
|
export declare type JiraGrantTypeKey = {
|
|
30670
30778
|
__typename?: 'JiraGrantTypeKey';
|
|
30671
30779
|
key: JiraGrantTypeKeyEnum;
|
|
@@ -30811,9 +30919,11 @@ export declare type JiraIssue = Node & {
|
|
|
30811
30919
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
30812
30920
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
30813
30921
|
childIssues?: Maybe<JiraChildIssues>;
|
|
30922
|
+
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
30814
30923
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
30815
30924
|
comments?: Maybe<JiraCommentConnection>;
|
|
30816
30925
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
30926
|
+
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
30817
30927
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
30818
30928
|
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
30819
30929
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
@@ -30845,6 +30955,7 @@ export declare type JiraIssue = Node & {
|
|
|
30845
30955
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
30846
30956
|
linkedDesigns?: Maybe<GraphJiraDesignConnection>;
|
|
30847
30957
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
30958
|
+
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
30848
30959
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
30849
30960
|
shadowFieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
30850
30961
|
smartSummary?: Maybe<JiraAdf>;
|
|
@@ -30862,6 +30973,12 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
30862
30973
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30863
30974
|
sortBy?: InputMaybe<JiraAttachmentSortInput>;
|
|
30864
30975
|
};
|
|
30976
|
+
export declare type JiraIssueCommandPaletteActionsArgs = {
|
|
30977
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30978
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
30979
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30980
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30981
|
+
};
|
|
30865
30982
|
export declare type JiraIssueCommandPaletteFieldsArgs = {
|
|
30866
30983
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30867
30984
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30874,8 +30991,12 @@ export declare type JiraIssueCommentsArgs = {
|
|
|
30874
30991
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30875
30992
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30876
30993
|
};
|
|
30994
|
+
export declare type JiraIssueDesignsArgs = {
|
|
30995
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30996
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30997
|
+
};
|
|
30877
30998
|
export declare type JiraIssueFieldByIdOrAliasArgs = {
|
|
30878
|
-
|
|
30999
|
+
idOrAlias?: InputMaybe<Scalars['String']['input']>;
|
|
30879
31000
|
ignoreMissingField?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30880
31001
|
};
|
|
30881
31002
|
export declare type JiraIssueFieldSetsArgs = {
|
|
@@ -30933,6 +31054,12 @@ export declare type JiraIssueLinkedDesignsArgs = {
|
|
|
30933
31054
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30934
31055
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30935
31056
|
};
|
|
31057
|
+
export declare type JiraIssueProjectRoleCommentVisibilitiesArgs = {
|
|
31058
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31059
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
31060
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31061
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31062
|
+
};
|
|
30936
31063
|
export declare type JiraIssueShadowFieldSetsForIssueSearchViewArgs = {
|
|
30937
31064
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30938
31065
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31035,6 +31162,28 @@ export declare type JiraIssueBulkOperationsMetadata = {
|
|
|
31035
31162
|
__typename?: 'JiraIssueBulkOperationsMetadata';
|
|
31036
31163
|
maxNumberOfIssues?: Maybe<Scalars['Long']['output']>;
|
|
31037
31164
|
};
|
|
31165
|
+
export declare type JiraIssueCommandPaletteAction = JiraIssueCommandPaletteUpdateFieldAction | JiraIssueGenericCommandPaletteAction;
|
|
31166
|
+
export declare type JiraIssueCommandPaletteActionConnection = {
|
|
31167
|
+
__typename?: 'JiraIssueCommandPaletteActionConnection';
|
|
31168
|
+
edges?: Maybe<Array<Maybe<JiraIssueCommandPaletteActionEdge>>>;
|
|
31169
|
+
pageInfo: PageInfo;
|
|
31170
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
31171
|
+
};
|
|
31172
|
+
export declare type JiraIssueCommandPaletteActionConnectionResult = JiraIssueCommandPaletteActionConnection | QueryError;
|
|
31173
|
+
export declare type JiraIssueCommandPaletteActionEdge = {
|
|
31174
|
+
__typename?: 'JiraIssueCommandPaletteActionEdge';
|
|
31175
|
+
cursor: Scalars['String']['output'];
|
|
31176
|
+
node?: Maybe<JiraIssueCommandPaletteAction>;
|
|
31177
|
+
};
|
|
31178
|
+
export declare type JiraIssueCommandPaletteActionUnsupportedErrorExtension = QueryErrorExtension & {
|
|
31179
|
+
__typename?: 'JiraIssueCommandPaletteActionUnsupportedErrorExtension';
|
|
31180
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
31181
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
31182
|
+
};
|
|
31183
|
+
export declare type JiraIssueCommandPaletteUpdateFieldAction = {
|
|
31184
|
+
__typename?: 'JiraIssueCommandPaletteUpdateFieldAction';
|
|
31185
|
+
field: JiraIssueField;
|
|
31186
|
+
};
|
|
31038
31187
|
export declare type JiraIssueCommitDevSummary = {
|
|
31039
31188
|
__typename?: 'JiraIssueCommitDevSummary';
|
|
31040
31189
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -31241,6 +31390,10 @@ export declare type JiraIssueFieldsInput = {
|
|
|
31241
31390
|
timeTrackingField?: InputMaybe<JiraTimeTrackingFieldInput>;
|
|
31242
31391
|
urlFields?: InputMaybe<Array<JiraUrlFieldInput>>;
|
|
31243
31392
|
};
|
|
31393
|
+
export declare type JiraIssueGenericCommandPaletteAction = {
|
|
31394
|
+
__typename?: 'JiraIssueGenericCommandPaletteAction';
|
|
31395
|
+
actionName: Scalars['String']['output'];
|
|
31396
|
+
};
|
|
31244
31397
|
export declare type JiraIssueHierarchyConfigData = {
|
|
31245
31398
|
__typename?: 'JiraIssueHierarchyConfigData';
|
|
31246
31399
|
cmpIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -31440,6 +31593,7 @@ export declare type JiraIssueLinkFieldIssueLinkConnectionArgs = {
|
|
|
31440
31593
|
export declare type JiraIssueLinkFieldIssueLinkTypeRelationsArgs = {
|
|
31441
31594
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31442
31595
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
31596
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
31443
31597
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31444
31598
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31445
31599
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31456,6 +31610,11 @@ export declare type JiraIssueLinkFieldIssuesArgs = {
|
|
|
31456
31610
|
showSubTaskParent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31457
31611
|
showSubTasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31458
31612
|
};
|
|
31613
|
+
export declare type JiraIssueLinkFieldOperationInputForIssueTransitions = {
|
|
31614
|
+
inwardIssue: Array<Scalars['ID']['input']>;
|
|
31615
|
+
linkType: Scalars['ID']['input'];
|
|
31616
|
+
operation: JiraAddValueFieldOperations;
|
|
31617
|
+
};
|
|
31459
31618
|
export declare type JiraIssueLinkType = Node & {
|
|
31460
31619
|
__typename?: 'JiraIssueLinkType';
|
|
31461
31620
|
id: Scalars['ID']['output'];
|
|
@@ -31741,6 +31900,10 @@ export declare type JiraIssueTransitionComment = {
|
|
|
31741
31900
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
31742
31901
|
types?: Maybe<Array<Maybe<JiraIssueTransitionCommentType>>>;
|
|
31743
31902
|
};
|
|
31903
|
+
export declare type JiraIssueTransitionCommentInput = {
|
|
31904
|
+
body: JiraAdfInput;
|
|
31905
|
+
operation: JiraAddValueFieldOperations;
|
|
31906
|
+
};
|
|
31744
31907
|
export declare enum JiraIssueTransitionCommentType {
|
|
31745
31908
|
InternalNote = "INTERNAL_NOTE",
|
|
31746
31909
|
ReplyToCustomer = "REPLY_TO_CUSTOMER"
|
|
@@ -31752,6 +31915,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
31752
31915
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
31753
31916
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
31754
31917
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
31918
|
+
JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
|
|
31755
31919
|
JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
|
|
31756
31920
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
31757
31921
|
JiraMultipleGroupPickerField?: InputMaybe<Array<JiraUpdateMultipleGroupPickerFieldInput>>;
|
|
@@ -31764,6 +31928,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
31764
31928
|
JiraRadioSelectField?: InputMaybe<Array<JiraUpdateRadioSelectFieldInput>>;
|
|
31765
31929
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
31766
31930
|
JiraRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
|
|
31931
|
+
JiraSingleGroupPickerField?: InputMaybe<Array<JiraUpdateSingleGroupPickerFieldInput>>;
|
|
31767
31932
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
31768
31933
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
31769
31934
|
JiraSingleSelectUserPickerField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
@@ -31831,6 +31996,7 @@ export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
31831
31996
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
31832
31997
|
issueType?: Maybe<JiraIssueType>;
|
|
31833
31998
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
31999
|
+
issueTypesForTransition?: Maybe<JiraIssueTypeConnection>;
|
|
31834
32000
|
name: Scalars['String']['output'];
|
|
31835
32001
|
type: Scalars['String']['output'];
|
|
31836
32002
|
};
|
|
@@ -31843,6 +32009,15 @@ export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
|
31843
32009
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
31844
32010
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31845
32011
|
};
|
|
32012
|
+
export declare type JiraIssueTypeFieldIssueTypesForTransitionArgs = {
|
|
32013
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32014
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
32015
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
32016
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32017
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32018
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
32019
|
+
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32020
|
+
};
|
|
31846
32021
|
export declare type JiraIssueTypeFieldOperationInput = {
|
|
31847
32022
|
id: Scalars['ID']['input'];
|
|
31848
32023
|
operation: JiraSingleValueFieldOperations;
|
|
@@ -32139,6 +32314,13 @@ export declare enum JiraJqlFunctionStatus {
|
|
|
32139
32314
|
Processing = "PROCESSING",
|
|
32140
32315
|
Unknown = "UNKNOWN"
|
|
32141
32316
|
}
|
|
32317
|
+
export declare type JiraJqlGoalsFieldValue = JiraJqlFieldValue & {
|
|
32318
|
+
__typename?: 'JiraJqlGoalsFieldValue';
|
|
32319
|
+
displayName: Scalars['String']['output'];
|
|
32320
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
32321
|
+
goal: JiraGoal;
|
|
32322
|
+
jqlTerm: Scalars['String']['output'];
|
|
32323
|
+
};
|
|
32142
32324
|
export declare type JiraJqlGroupFieldValue = JiraJqlFieldValue & {
|
|
32143
32325
|
__typename?: 'JiraJqlGroupFieldValue';
|
|
32144
32326
|
displayName: Scalars['String']['output'];
|
|
@@ -32958,6 +33140,7 @@ export declare type JiraMutation = {
|
|
|
32958
33140
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
32959
33141
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
32960
33142
|
updateRichTextField?: Maybe<JiraRichTextFieldPayload>;
|
|
33143
|
+
updateSingleGroupPickerField?: Maybe<JiraSingleGroupPickerFieldPayload>;
|
|
32961
33144
|
updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
32962
33145
|
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
32963
33146
|
updateSingleSelectUserPickerField?: Maybe<JiraSingleSelectUserPickerFieldPayload>;
|
|
@@ -33302,6 +33485,9 @@ export declare type JiraMutationUpdateResolutionFieldArgs = {
|
|
|
33302
33485
|
export declare type JiraMutationUpdateRichTextFieldArgs = {
|
|
33303
33486
|
input: JiraUpdateRichTextFieldInput;
|
|
33304
33487
|
};
|
|
33488
|
+
export declare type JiraMutationUpdateSingleGroupPickerFieldArgs = {
|
|
33489
|
+
input: JiraUpdateSingleGroupPickerFieldInput;
|
|
33490
|
+
};
|
|
33305
33491
|
export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
|
|
33306
33492
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
33307
33493
|
};
|
|
@@ -34672,6 +34858,25 @@ export declare enum JiraProjectPermissionCategoryEnum {
|
|
|
34672
34858
|
TimeTracking = "TIME_TRACKING",
|
|
34673
34859
|
VotersAndWatchers = "VOTERS_AND_WATCHERS"
|
|
34674
34860
|
}
|
|
34861
|
+
export declare type JiraProjectRoleActorLogTableEntry = {
|
|
34862
|
+
__typename?: 'JiraProjectRoleActorLogTableEntry';
|
|
34863
|
+
executedBy?: Maybe<User>;
|
|
34864
|
+
executedGroupId?: Maybe<Scalars['String']['output']>;
|
|
34865
|
+
numberOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
34866
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
34867
|
+
};
|
|
34868
|
+
export declare type JiraProjectRoleActorLogTableEntryConnection = {
|
|
34869
|
+
__typename?: 'JiraProjectRoleActorLogTableEntryConnection';
|
|
34870
|
+
edges?: Maybe<Array<Maybe<JiraProjectRoleActorLogTableEntryEdge>>>;
|
|
34871
|
+
nodes?: Maybe<Array<Maybe<JiraProjectRoleActorLogTableEntry>>>;
|
|
34872
|
+
pageInfo: PageInfo;
|
|
34873
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
34874
|
+
};
|
|
34875
|
+
export declare type JiraProjectRoleActorLogTableEntryEdge = {
|
|
34876
|
+
__typename?: 'JiraProjectRoleActorLogTableEntryEdge';
|
|
34877
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34878
|
+
node?: Maybe<JiraProjectRoleActorLogTableEntry>;
|
|
34879
|
+
};
|
|
34675
34880
|
export declare type JiraProjectRoleActorRecommendation = Node & {
|
|
34676
34881
|
__typename?: 'JiraProjectRoleActorRecommendation';
|
|
34677
34882
|
executedBy?: Maybe<User>;
|
|
@@ -34827,6 +35032,7 @@ export declare type JiraQuery = {
|
|
|
34827
35032
|
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
34828
35033
|
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
34829
35034
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
35035
|
+
groupCommentVisibilities?: Maybe<JiraGroupConnection>;
|
|
34830
35036
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
34831
35037
|
integerUserProperty?: Maybe<JiraEntityPropertyInt>;
|
|
34832
35038
|
isIssueViewEditorAiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -34896,6 +35102,7 @@ export declare type JiraQuery = {
|
|
|
34896
35102
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
34897
35103
|
projectListViewTemplates?: Maybe<JiraProjectListViewTemplateConnection>;
|
|
34898
35104
|
projectRequestTypesFromTemplate?: Maybe<Array<JiraServiceManagementRequestTypeFromTemplate>>;
|
|
35105
|
+
projectRoleActorLogTableEntries?: Maybe<JiraProjectRoleActorLogTableEntryConnection>;
|
|
34899
35106
|
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
34900
35107
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
34901
35108
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
@@ -35119,6 +35326,13 @@ export declare type JiraQueryGrantTypeValuesArgs = {
|
|
|
35119
35326
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35120
35327
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
35121
35328
|
};
|
|
35329
|
+
export declare type JiraQueryGroupCommentVisibilitiesArgs = {
|
|
35330
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35331
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35332
|
+
cloudId: Scalars['ID']['input'];
|
|
35333
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35334
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35335
|
+
};
|
|
35122
35336
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
35123
35337
|
projectId: Scalars['ID']['input'];
|
|
35124
35338
|
};
|
|
@@ -35416,6 +35630,13 @@ export declare type JiraQueryProjectRequestTypesFromTemplateArgs = {
|
|
|
35416
35630
|
cloudId: Scalars['ID']['input'];
|
|
35417
35631
|
projectId: Scalars['ID']['input'];
|
|
35418
35632
|
};
|
|
35633
|
+
export declare type JiraQueryProjectRoleActorLogTableEntriesArgs = {
|
|
35634
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35635
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35636
|
+
cloudId: Scalars['ID']['input'];
|
|
35637
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35638
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35639
|
+
};
|
|
35419
35640
|
export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
35420
35641
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35421
35642
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -36094,10 +36315,12 @@ export declare type JiraSafeBoard = {
|
|
|
36094
36315
|
export declare type JiraSafeConfiguration = {
|
|
36095
36316
|
__typename?: 'JiraSafeConfiguration';
|
|
36096
36317
|
agileReleaseTrains?: Maybe<JiraAgileReleaseTrainConnection>;
|
|
36318
|
+
artIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
36097
36319
|
capability?: Maybe<JiraIssueType>;
|
|
36098
36320
|
feature?: Maybe<JiraIssueType>;
|
|
36099
36321
|
id: Scalars['ID']['output'];
|
|
36100
36322
|
jobSize?: Maybe<JiraNumberField>;
|
|
36323
|
+
largeSolutionIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
36101
36324
|
largeSolutions?: Maybe<JiraLargeSolutionConnection>;
|
|
36102
36325
|
plan?: Maybe<JiraPlan>;
|
|
36103
36326
|
riskReduction?: Maybe<JiraNumberField>;
|
|
@@ -37285,6 +37508,16 @@ export declare type JiraSingleGroupPickerFieldInput = {
|
|
|
37285
37508
|
fieldId: Scalars['ID']['input'];
|
|
37286
37509
|
group: JiraGroupInput;
|
|
37287
37510
|
};
|
|
37511
|
+
export declare type JiraSingleGroupPickerFieldOperationInput = {
|
|
37512
|
+
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
37513
|
+
operation: JiraSingleValueFieldOperations;
|
|
37514
|
+
};
|
|
37515
|
+
export declare type JiraSingleGroupPickerFieldPayload = Payload & {
|
|
37516
|
+
__typename?: 'JiraSingleGroupPickerFieldPayload';
|
|
37517
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37518
|
+
field?: Maybe<JiraSingleGroupPickerField>;
|
|
37519
|
+
success: Scalars['Boolean']['output'];
|
|
37520
|
+
};
|
|
37288
37521
|
export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
37289
37522
|
__typename?: 'JiraSingleLineTextField';
|
|
37290
37523
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -38114,7 +38347,12 @@ export declare type JiraUpdateGlobalPreferencesPayload = Payload & {
|
|
|
38114
38347
|
preferences?: Maybe<JiraNotificationPreferences>;
|
|
38115
38348
|
success: Scalars['Boolean']['output'];
|
|
38116
38349
|
};
|
|
38350
|
+
export declare type JiraUpdateIssueLinkFieldInputForIssueTransitions = {
|
|
38351
|
+
id: Scalars['ID']['input'];
|
|
38352
|
+
operation: JiraIssueLinkFieldOperationInputForIssueTransitions;
|
|
38353
|
+
};
|
|
38117
38354
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
38355
|
+
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
38118
38356
|
fieldInputs?: InputMaybe<JiraIssueTransitionFieldLevelInput>;
|
|
38119
38357
|
issueId: Scalars['ID']['input'];
|
|
38120
38358
|
transitionId: Scalars['Int']['input'];
|
|
@@ -38223,6 +38461,10 @@ export declare type JiraUpdateShortcutInput = {
|
|
|
38223
38461
|
shortcutData: JiraShortcutDataInput;
|
|
38224
38462
|
shortcutId: Scalars['ID']['input'];
|
|
38225
38463
|
};
|
|
38464
|
+
export declare type JiraUpdateSingleGroupPickerFieldInput = {
|
|
38465
|
+
id: Scalars['ID']['input'];
|
|
38466
|
+
operation: JiraSingleGroupPickerFieldOperationInput;
|
|
38467
|
+
};
|
|
38226
38468
|
export declare type JiraUpdateSingleLineTextFieldInput = {
|
|
38227
38469
|
id: Scalars['ID']['input'];
|
|
38228
38470
|
operation: JiraSingleLineTextFieldOperationInput;
|
|
@@ -38777,6 +39019,7 @@ export declare type JiraVersionFilterInput = {
|
|
|
38777
39019
|
activeWithin?: InputMaybe<JiraDateTimeWindow>;
|
|
38778
39020
|
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38779
39021
|
projectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
39022
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
38780
39023
|
statuses?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
38781
39024
|
};
|
|
38782
39025
|
export declare type JiraVersionInput = {
|
|
@@ -39623,11 +39866,16 @@ export declare type KnowledgeDiscoveryCreateDefinitionPayload = Payload & {
|
|
|
39623
39866
|
export declare type KnowledgeDiscoveryDefinition = {
|
|
39624
39867
|
__typename?: 'KnowledgeDiscoveryDefinition';
|
|
39625
39868
|
accountId: Scalars['String']['output'];
|
|
39626
|
-
createdAt: Scalars['
|
|
39869
|
+
createdAt: Scalars['String']['output'];
|
|
39627
39870
|
definition: Scalars['String']['output'];
|
|
39628
39871
|
keyPhrase: Scalars['String']['output'];
|
|
39629
39872
|
references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
39630
39873
|
};
|
|
39874
|
+
export declare type KnowledgeDiscoveryDefinitionHistoryResult = KnowledgeDiscoveryDefinitionList | QueryError;
|
|
39875
|
+
export declare type KnowledgeDiscoveryDefinitionList = {
|
|
39876
|
+
__typename?: 'KnowledgeDiscoveryDefinitionList';
|
|
39877
|
+
definitions?: Maybe<Array<Maybe<KnowledgeDiscoveryDefinition>>>;
|
|
39878
|
+
};
|
|
39631
39879
|
export declare type KnowledgeDiscoveryDefinitionResult = KnowledgeDiscoveryDefinition | QueryError;
|
|
39632
39880
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
39633
39881
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
@@ -39639,6 +39887,7 @@ export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
|
|
|
39639
39887
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
39640
39888
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
39641
39889
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
39890
|
+
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
39642
39891
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
39643
39892
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
39644
39893
|
};
|
|
@@ -39646,6 +39895,10 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
|
39646
39895
|
keyPhrase: Scalars['String']['input'];
|
|
39647
39896
|
workspaceId: Scalars['String']['input'];
|
|
39648
39897
|
};
|
|
39898
|
+
export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
39899
|
+
keyPhrase: Scalars['String']['input'];
|
|
39900
|
+
workspaceId: Scalars['String']['input'];
|
|
39901
|
+
};
|
|
39649
39902
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
39650
39903
|
locale: Scalars['String']['input'];
|
|
39651
39904
|
query: Scalars['String']['input'];
|
|
@@ -41369,6 +41622,44 @@ export declare type OriginalSplitIssue = {
|
|
|
41369
41622
|
id: Scalars['ID']['input'];
|
|
41370
41623
|
summary: Scalars['String']['input'];
|
|
41371
41624
|
};
|
|
41625
|
+
export declare type PeapdcpEnrollmentInput = {
|
|
41626
|
+
cloudId: Scalars['ID']['input'];
|
|
41627
|
+
desiredStatus: Scalars['Boolean']['input'];
|
|
41628
|
+
product: PeapdcpProduct;
|
|
41629
|
+
};
|
|
41630
|
+
export declare type PeapdcpEnrollmentStatus = {
|
|
41631
|
+
__typename?: 'PEAPDCPEnrollmentStatus';
|
|
41632
|
+
cloudId: Scalars['ID']['output'];
|
|
41633
|
+
enrollmentStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
41634
|
+
error?: Maybe<Array<Scalars['String']['output']>>;
|
|
41635
|
+
product: PeapdcpProduct;
|
|
41636
|
+
success: Scalars['Boolean']['output'];
|
|
41637
|
+
};
|
|
41638
|
+
export declare type PeapdcpEnrollmentStatusInput = {
|
|
41639
|
+
cloudId: Scalars['ID']['input'];
|
|
41640
|
+
product: PeapdcpProduct;
|
|
41641
|
+
};
|
|
41642
|
+
export declare enum PeapdcpProduct {
|
|
41643
|
+
Confluence = "CONFLUENCE",
|
|
41644
|
+
Jira = "JIRA"
|
|
41645
|
+
}
|
|
41646
|
+
export declare type PeapEnrollmentInput = {
|
|
41647
|
+
cloudId: Scalars['ID']['input'];
|
|
41648
|
+
desiredStatus: Scalars['Boolean']['input'];
|
|
41649
|
+
programId: Scalars['ID']['input'];
|
|
41650
|
+
};
|
|
41651
|
+
export declare type PeapEnrollmentStatus = {
|
|
41652
|
+
__typename?: 'PEAPEnrollmentStatus';
|
|
41653
|
+
cloudId: Scalars['ID']['output'];
|
|
41654
|
+
enrollmentStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
41655
|
+
error?: Maybe<Array<Scalars['String']['output']>>;
|
|
41656
|
+
programId: Scalars['ID']['output'];
|
|
41657
|
+
success: Scalars['Boolean']['output'];
|
|
41658
|
+
};
|
|
41659
|
+
export declare type PeapEnrollmentStatusInput = {
|
|
41660
|
+
cloudId: Scalars['ID']['input'];
|
|
41661
|
+
programId: Scalars['ID']['input'];
|
|
41662
|
+
};
|
|
41372
41663
|
export declare type PeapInternalMutationApi = {
|
|
41373
41664
|
__typename?: 'PEAPInternalMutationApi';
|
|
41374
41665
|
_module?: Maybe<Scalars['String']['output']>;
|
|
@@ -41394,6 +41685,10 @@ export declare type PeapInternalQueryApi = {
|
|
|
41394
41685
|
export declare type PeapMutationApi = {
|
|
41395
41686
|
__typename?: 'PEAPMutationApi';
|
|
41396
41687
|
internal: PeapInternalMutationApi;
|
|
41688
|
+
programEnrollment: PeapProgramEnrollmentStatus;
|
|
41689
|
+
};
|
|
41690
|
+
export declare type PeapMutationApiProgramEnrollmentArgs = {
|
|
41691
|
+
input: PeapProgramEnrollmentInput;
|
|
41397
41692
|
};
|
|
41398
41693
|
export declare type PeapNewProgramInput = {
|
|
41399
41694
|
description: Scalars['String']['input'];
|
|
@@ -41428,6 +41723,15 @@ export declare type PeapProgramEdge = {
|
|
|
41428
41723
|
cursor: Scalars['String']['output'];
|
|
41429
41724
|
node: PeapProgram;
|
|
41430
41725
|
};
|
|
41726
|
+
export declare type PeapProgramEnrollmentInput = {
|
|
41727
|
+
dcp?: InputMaybe<PeapdcpEnrollmentInput>;
|
|
41728
|
+
peap?: InputMaybe<PeapEnrollmentInput>;
|
|
41729
|
+
};
|
|
41730
|
+
export declare type PeapProgramEnrollmentStatus = PeapdcpEnrollmentStatus | PeapEnrollmentStatus;
|
|
41731
|
+
export declare type PeapProgramEnrollmentStatusInput = {
|
|
41732
|
+
dcp?: InputMaybe<PeapdcpEnrollmentStatusInput>;
|
|
41733
|
+
peap?: InputMaybe<PeapEnrollmentStatusInput>;
|
|
41734
|
+
};
|
|
41431
41735
|
export declare type PeapProgramInternalData = {
|
|
41432
41736
|
__typename?: 'PEAPProgramInternalData';
|
|
41433
41737
|
cdacGroup?: Maybe<Scalars['String']['output']>;
|
|
@@ -41451,11 +41755,15 @@ export declare type PeapQueryApi = {
|
|
|
41451
41755
|
__typename?: 'PEAPQueryApi';
|
|
41452
41756
|
internal: PeapInternalQueryApi;
|
|
41453
41757
|
program?: Maybe<PeapProgram>;
|
|
41758
|
+
programEnrollment: PeapProgramEnrollmentStatus;
|
|
41454
41759
|
programs?: Maybe<PeapProgramConnection>;
|
|
41455
41760
|
};
|
|
41456
41761
|
export declare type PeapQueryApiProgramArgs = {
|
|
41457
41762
|
id: Scalars['ID']['input'];
|
|
41458
41763
|
};
|
|
41764
|
+
export declare type PeapQueryApiProgramEnrollmentArgs = {
|
|
41765
|
+
input: PeapProgramEnrollmentStatusInput;
|
|
41766
|
+
};
|
|
41459
41767
|
export declare type PeapQueryApiProgramsArgs = {
|
|
41460
41768
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41461
41769
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -42802,6 +43110,7 @@ export declare type PolarisTimelineConfig = {
|
|
|
42802
43110
|
mode: PolarisTimelineMode;
|
|
42803
43111
|
startDateField?: Maybe<PolarisIdeaField>;
|
|
42804
43112
|
startTimestamp?: Maybe<Scalars['String']['output']>;
|
|
43113
|
+
summaryCardField?: Maybe<PolarisIdeaField>;
|
|
42805
43114
|
};
|
|
42806
43115
|
export declare enum PolarisTimelineMode {
|
|
42807
43116
|
Months = "MONTHS",
|
|
@@ -43187,6 +43496,7 @@ export declare type Query = {
|
|
|
43187
43496
|
sandbox: SandboxQuery;
|
|
43188
43497
|
search?: Maybe<SearchQueryApi>;
|
|
43189
43498
|
shepherd?: Maybe<ShepherdQuery>;
|
|
43499
|
+
signup?: Maybe<SignupQueryApi>;
|
|
43190
43500
|
smarts?: Maybe<SmartsQueryApi>;
|
|
43191
43501
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
43192
43502
|
suggestions?: Maybe<AutoSuggestionApi>;
|
|
@@ -45164,6 +45474,7 @@ export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
|
45164
45474
|
};
|
|
45165
45475
|
export declare type SearchResultGoogleDocument = SearchResult & {
|
|
45166
45476
|
__typename?: 'SearchResultGoogleDocument';
|
|
45477
|
+
bodyText: Scalars['String']['output'];
|
|
45167
45478
|
description: Scalars['String']['output'];
|
|
45168
45479
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
45169
45480
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -45231,10 +45542,16 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
45231
45542
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
45232
45543
|
id: Scalars['ID']['output'];
|
|
45233
45544
|
issue?: Maybe<JiraIssue>;
|
|
45545
|
+
status?: Maybe<SearchResultJiraIssueStatus>;
|
|
45234
45546
|
title: Scalars['String']['output'];
|
|
45235
45547
|
type: SearchResultType;
|
|
45236
45548
|
url: Scalars['URL']['output'];
|
|
45237
45549
|
};
|
|
45550
|
+
export declare type SearchResultJiraIssueStatus = {
|
|
45551
|
+
__typename?: 'SearchResultJiraIssueStatus';
|
|
45552
|
+
id: Scalars['ID']['output'];
|
|
45553
|
+
name: Scalars['String']['output'];
|
|
45554
|
+
};
|
|
45238
45555
|
export declare type SearchResultJiraProject = SearchResult & {
|
|
45239
45556
|
__typename?: 'SearchResultJiraProject';
|
|
45240
45557
|
canView: Scalars['Boolean']['output'];
|
|
@@ -45253,6 +45570,7 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
45253
45570
|
};
|
|
45254
45571
|
export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
45255
45572
|
__typename?: 'SearchResultMicrosoftDocument';
|
|
45573
|
+
bodyText: Scalars['String']['output'];
|
|
45256
45574
|
description: Scalars['String']['output'];
|
|
45257
45575
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
45258
45576
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -45525,6 +45843,7 @@ export declare type ShepherdActivityHighlight = {
|
|
|
45525
45843
|
categorizedMetadata?: Maybe<Array<ShepherdCategorizedAlertMetadata>>;
|
|
45526
45844
|
eventIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
45527
45845
|
histogram?: Maybe<Array<ShepherdActivityHistogramBucket>>;
|
|
45846
|
+
metadata?: Maybe<ShepherdAlertMetaData>;
|
|
45528
45847
|
resourceEvents?: Maybe<Array<ShepherdResourceEvent>>;
|
|
45529
45848
|
subject?: Maybe<ShepherdSubject>;
|
|
45530
45849
|
time?: Maybe<ShepherdTime>;
|
|
@@ -45657,6 +45976,10 @@ export declare type ShepherdAlertEdge = {
|
|
|
45657
45976
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
45658
45977
|
node?: Maybe<ShepherdAlert>;
|
|
45659
45978
|
};
|
|
45979
|
+
export declare type ShepherdAlertMetaData = {
|
|
45980
|
+
__typename?: 'ShepherdAlertMetaData';
|
|
45981
|
+
siteContainerResourceCount?: Maybe<Scalars['Int']['output']>;
|
|
45982
|
+
};
|
|
45660
45983
|
export declare type ShepherdAlertQueries = {
|
|
45661
45984
|
__typename?: 'ShepherdAlertQueries';
|
|
45662
45985
|
byAri?: Maybe<ShepherdAlertResult>;
|
|
@@ -46019,6 +46342,8 @@ export declare type ShepherdDetectionRemoveSettingValuePayload = Payload & {
|
|
|
46019
46342
|
export declare type ShepherdDetectionResourceExclusion = {
|
|
46020
46343
|
__typename?: 'ShepherdDetectionResourceExclusion';
|
|
46021
46344
|
ari: Scalars['ID']['output'];
|
|
46345
|
+
createdBy?: Maybe<Scalars['ID']['output']>;
|
|
46346
|
+
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
46022
46347
|
};
|
|
46023
46348
|
export declare enum ShepherdDetectionScanningFrequency {
|
|
46024
46349
|
RealTime = "REAL_TIME",
|
|
@@ -46067,18 +46392,26 @@ export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
|
46067
46392
|
};
|
|
46068
46393
|
export declare type ShepherdExclusionContentInfo = {
|
|
46069
46394
|
__typename?: 'ShepherdExclusionContentInfo';
|
|
46395
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
46070
46396
|
classification?: Maybe<Scalars['String']['output']>;
|
|
46071
46397
|
owner?: Maybe<Scalars['ID']['output']>;
|
|
46072
46398
|
product?: Maybe<ShepherdAtlassianProduct>;
|
|
46073
46399
|
site?: Maybe<ShepherdSite>;
|
|
46074
46400
|
space?: Maybe<Scalars['String']['output']>;
|
|
46075
46401
|
title?: Maybe<Scalars['String']['output']>;
|
|
46402
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
46076
46403
|
};
|
|
46077
46404
|
export declare type ShepherdExclusionContentInfoResult = QueryError | ShepherdExclusionContentInfo;
|
|
46078
46405
|
export declare type ShepherdExclusionsQueries = {
|
|
46079
46406
|
__typename?: 'ShepherdExclusionsQueries';
|
|
46407
|
+
contentInfo?: Maybe<ShepherdExclusionContentInfoResult>;
|
|
46080
46408
|
contentInfoFromUrl?: Maybe<ShepherdExclusionContentInfoResult>;
|
|
46081
46409
|
};
|
|
46410
|
+
export declare type ShepherdExclusionsQueriesContentInfoArgs = {
|
|
46411
|
+
contentUrlOrAri: Scalars['String']['input'];
|
|
46412
|
+
productAti: Scalars['String']['input'];
|
|
46413
|
+
workspaceId: Scalars['ID']['input'];
|
|
46414
|
+
};
|
|
46082
46415
|
export declare type ShepherdExclusionsQueriesContentInfoFromUrlArgs = {
|
|
46083
46416
|
contentUrl: Scalars['URL']['input'];
|
|
46084
46417
|
productAti: Scalars['String']['input'];
|
|
@@ -46279,6 +46612,7 @@ export declare type ShepherdResourceActivity = {
|
|
|
46279
46612
|
actor: ShepherdActor;
|
|
46280
46613
|
context: Array<ShepherdAuditLogContext>;
|
|
46281
46614
|
id: Scalars['String']['output'];
|
|
46615
|
+
message?: Maybe<Scalars['JSON']['output']>;
|
|
46282
46616
|
resourceAri: Scalars['String']['output'];
|
|
46283
46617
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
46284
46618
|
time: Scalars['DateTime']['output'];
|
|
@@ -46566,6 +46900,19 @@ export declare type ShepherdWorkspaceUpdateCustomDetectionInput = {
|
|
|
46566
46900
|
export declare type ShepherdWorkspaceUpdateInput = {
|
|
46567
46901
|
shouldOnboard: Scalars['Boolean']['input'];
|
|
46568
46902
|
};
|
|
46903
|
+
export declare type SignupProvisioningStatus = {
|
|
46904
|
+
__typename?: 'SignupProvisioningStatus';
|
|
46905
|
+
orchestrationId: Scalars['String']['output'];
|
|
46906
|
+
provisionComplete: Scalars['Boolean']['output'];
|
|
46907
|
+
};
|
|
46908
|
+
export declare type SignupQueryApi = {
|
|
46909
|
+
__typename?: 'SignupQueryApi';
|
|
46910
|
+
getSample: SignupProvisioningStatus;
|
|
46911
|
+
};
|
|
46912
|
+
export declare type SignupSubscriptionApi = {
|
|
46913
|
+
__typename?: 'SignupSubscriptionApi';
|
|
46914
|
+
signupProvisioningStatus?: Maybe<SignupProvisioningStatus>;
|
|
46915
|
+
};
|
|
46569
46916
|
export declare type SmartsContext = {
|
|
46570
46917
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
46571
46918
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46875,6 +47222,7 @@ export declare type Subscription = {
|
|
|
46875
47222
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
46876
47223
|
jira?: Maybe<JiraSubscription>;
|
|
46877
47224
|
sandbox: SandboxSubscription;
|
|
47225
|
+
signup?: Maybe<SignupSubscriptionApi>;
|
|
46878
47226
|
testing?: Maybe<TestingSubscription>;
|
|
46879
47227
|
trello: TrelloSubscriptionApi;
|
|
46880
47228
|
};
|
|
@@ -48541,6 +48889,7 @@ export declare type TrelloBoardUpdatedDeltas = {
|
|
|
48541
48889
|
};
|
|
48542
48890
|
export declare type TrelloBoardViewer = {
|
|
48543
48891
|
__typename?: 'TrelloBoardViewer';
|
|
48892
|
+
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48544
48893
|
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
48545
48894
|
email?: Maybe<TrelloBoardViewerEmail>;
|
|
48546
48895
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -49095,6 +49444,7 @@ export declare type TrelloMutationApi = {
|
|
|
49095
49444
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
49096
49445
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
49097
49446
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
49447
|
+
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
49098
49448
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
49099
49449
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
49100
49450
|
};
|
|
@@ -49122,6 +49472,9 @@ export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
|
49122
49472
|
export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
49123
49473
|
input: TrelloUpdateBoardNameInput;
|
|
49124
49474
|
};
|
|
49475
|
+
export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
49476
|
+
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
49477
|
+
};
|
|
49125
49478
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
49126
49479
|
input: TrelloUpdateCardNameInput;
|
|
49127
49480
|
};
|
|
@@ -49360,6 +49713,16 @@ export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
|
49360
49713
|
errors?: Maybe<Array<MutationError>>;
|
|
49361
49714
|
success: Scalars['Boolean']['output'];
|
|
49362
49715
|
};
|
|
49716
|
+
export declare type TrelloUpdateBoardViewerAiEmailInput = {
|
|
49717
|
+
boardId: Scalars['ID']['input'];
|
|
49718
|
+
value: Scalars['Boolean']['input'];
|
|
49719
|
+
};
|
|
49720
|
+
export declare type TrelloUpdateBoardViewerAiEmailPayload = Payload & {
|
|
49721
|
+
__typename?: 'TrelloUpdateBoardViewerAIEmailPayload';
|
|
49722
|
+
errors?: Maybe<Array<MutationError>>;
|
|
49723
|
+
success: Scalars['Boolean']['output'];
|
|
49724
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
49725
|
+
};
|
|
49363
49726
|
export declare type TrelloUpdateCardNameInput = {
|
|
49364
49727
|
cardId: Scalars['ID']['input'];
|
|
49365
49728
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -49914,6 +50277,7 @@ export declare type UpdatePolarisTimelineConfig = {
|
|
|
49914
50277
|
mode?: InputMaybe<PolarisTimelineMode>;
|
|
49915
50278
|
startDateField?: InputMaybe<Scalars['ID']['input']>;
|
|
49916
50279
|
startTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
50280
|
+
summaryCardField?: InputMaybe<Scalars['ID']['input']>;
|
|
49917
50281
|
};
|
|
49918
50282
|
export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
49919
50283
|
__typename?: 'UpdatePolarisViewArrangementInfoPayload';
|