@forge/cli-shared 3.25.2 → 3.26.0-experimental-6835792
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 +37 -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 +1034 -338
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +129 -109
- 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 +13 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -0
- package/out/tunnel/tunnel-options.js +9 -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;
|
|
@@ -128,9 +132,7 @@ export declare type ActionsAction = {
|
|
|
128
132
|
};
|
|
129
133
|
export declare type ActionsActionType = {
|
|
130
134
|
__typename?: 'ActionsActionType';
|
|
131
|
-
|
|
132
|
-
aiPromptAdditional?: Maybe<Scalars['String']['output']>;
|
|
133
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
135
|
+
description?: Maybe<ActionsDescription>;
|
|
134
136
|
displayName: Scalars['String']['output'];
|
|
135
137
|
entityType?: Maybe<Scalars['String']['output']>;
|
|
136
138
|
inputs?: Maybe<Array<ActionsActionTypeInputTuple>>;
|
|
@@ -139,10 +141,8 @@ export declare type ActionsActionType = {
|
|
|
139
141
|
};
|
|
140
142
|
export declare type ActionsActionTypeInput = {
|
|
141
143
|
__typename?: 'ActionsActionTypeInput';
|
|
142
|
-
aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
143
|
-
aiPromptAdditional?: Maybe<Scalars['String']['output']>;
|
|
144
144
|
default?: Maybe<Scalars['JSON']['output']>;
|
|
145
|
-
description
|
|
145
|
+
description?: Maybe<ActionsDescription>;
|
|
146
146
|
pattern?: Maybe<Scalars['String']['output']>;
|
|
147
147
|
required: Scalars['Boolean']['output'];
|
|
148
148
|
type: Scalars['String']['output'];
|
|
@@ -154,7 +154,7 @@ export declare type ActionsActionTypeInputTuple = {
|
|
|
154
154
|
};
|
|
155
155
|
export declare type ActionsActionTypeOutput = {
|
|
156
156
|
__typename?: 'ActionsActionTypeOutput';
|
|
157
|
-
description
|
|
157
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
158
158
|
nullable: Scalars['Boolean']['output'];
|
|
159
159
|
type: Scalars['String']['output'];
|
|
160
160
|
};
|
|
@@ -167,10 +167,10 @@ export declare type ActionsActionableApp = {
|
|
|
167
167
|
__typename?: 'ActionsActionableApp';
|
|
168
168
|
actions?: Maybe<Array<Maybe<ActionsAction>>>;
|
|
169
169
|
appDefinitionId?: Maybe<Scalars['String']['output']>;
|
|
170
|
-
appId
|
|
170
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
171
171
|
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
172
172
|
name: Scalars['String']['output'];
|
|
173
|
-
oauthClientId
|
|
173
|
+
oauthClientId?: Maybe<Scalars['String']['output']>;
|
|
174
174
|
};
|
|
175
175
|
export declare type ActionsActionableAppConnection = {
|
|
176
176
|
__typename?: 'ActionsActionableAppConnection';
|
|
@@ -185,6 +185,7 @@ export declare type ActionsActionableAppEdge = {
|
|
|
185
185
|
};
|
|
186
186
|
export declare type ActionsActionableAppsFilter = {
|
|
187
187
|
byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
188
|
+
byCapability?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
188
189
|
byEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
189
190
|
byProviderID?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190
191
|
};
|
|
@@ -192,14 +193,19 @@ export declare enum ActionsAuthType {
|
|
|
192
193
|
ThreeLegged = "THREE_LEGGED",
|
|
193
194
|
TwoLegged = "TWO_LEGGED"
|
|
194
195
|
}
|
|
196
|
+
export declare type ActionsDescription = {
|
|
197
|
+
__typename?: 'ActionsDescription';
|
|
198
|
+
ai?: Maybe<Scalars['String']['output']>;
|
|
199
|
+
default: Scalars['String']['output'];
|
|
200
|
+
};
|
|
195
201
|
export declare type ActionsExecuteActionFilter = {
|
|
196
202
|
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
197
203
|
oauthClientId?: InputMaybe<Scalars['String']['input']>;
|
|
198
204
|
providerAri?: InputMaybe<Scalars['String']['input']>;
|
|
199
205
|
};
|
|
200
206
|
export declare type ActionsExecuteActionInput = {
|
|
207
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
201
208
|
inputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
202
|
-
targetUrl?: InputMaybe<Scalars['String']['input']>;
|
|
203
209
|
};
|
|
204
210
|
export declare type ActionsExecuteResponse = {
|
|
205
211
|
__typename?: 'ActionsExecuteResponse';
|
|
@@ -432,7 +438,7 @@ export declare type ActivityObject = {
|
|
|
432
438
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
433
439
|
type: Scalars['String']['output'];
|
|
434
440
|
};
|
|
435
|
-
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
441
|
+
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
436
442
|
export declare enum ActivityObjectType {
|
|
437
443
|
Blogpost = "BLOGPOST",
|
|
438
444
|
Comment = "COMMENT",
|
|
@@ -449,8 +455,10 @@ export declare enum ActivityObjectType {
|
|
|
449
455
|
}
|
|
450
456
|
export declare type ActivityPageInfo = {
|
|
451
457
|
__typename?: 'ActivityPageInfo';
|
|
458
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
452
459
|
hasNextPage: Scalars['Boolean']['output'];
|
|
453
460
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
461
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
454
462
|
};
|
|
455
463
|
export declare enum ActivityProduct {
|
|
456
464
|
Confluence = "CONFLUENCE",
|
|
@@ -517,265 +525,24 @@ export declare type AddPolarisColumnInput = {
|
|
|
517
525
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
518
526
|
};
|
|
519
527
|
export declare type Admin = JiraUser | JiraUserGroup;
|
|
520
|
-
export declare
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
AdminActivity = "ADMIN_ACTIVITY",
|
|
526
|
-
UserActivity = "USER_ACTIVITY"
|
|
527
|
-
}
|
|
528
|
-
export declare type AdminAuditLogFeature = {
|
|
529
|
-
__typename?: 'AdminAuditLogFeature';
|
|
530
|
-
allInclusive: Scalars['Boolean']['output'];
|
|
531
|
-
events: Array<Maybe<AdminAuditLogEventTypes>>;
|
|
532
|
-
};
|
|
533
|
-
export declare type AdminByokPolicy = {
|
|
534
|
-
__typename?: 'AdminByokPolicy';
|
|
535
|
-
awsAccount: Scalars['String']['output'];
|
|
536
|
-
policyId: Scalars['String']['output'];
|
|
537
|
-
policyName: Scalars['String']['output'];
|
|
538
|
-
};
|
|
539
|
-
export declare type AdminCheckWorkflowStatusOutput = {
|
|
540
|
-
__typename?: 'AdminCheckWorkflowStatusOutput';
|
|
541
|
-
status: AdminCheckWorkflowStatusResult;
|
|
542
|
-
};
|
|
543
|
-
export declare enum AdminCheckWorkflowStatusResult {
|
|
544
|
-
Executing = "EXECUTING",
|
|
545
|
-
Failure = "FAILURE",
|
|
546
|
-
Success = "SUCCESS"
|
|
547
|
-
}
|
|
548
|
-
export declare type AdminCreateWorkspaceInputAttributes = {
|
|
549
|
-
name: Scalars['String']['input'];
|
|
550
|
-
productKey: Scalars['String']['input'];
|
|
551
|
-
slug: Scalars['String']['input'];
|
|
552
|
-
type: Scalars['String']['input'];
|
|
553
|
-
};
|
|
554
|
-
export declare type AdminCreateWorkspaceOutput = {
|
|
555
|
-
__typename?: 'AdminCreateWorkspaceOutput';
|
|
556
|
-
id: Scalars['String']['output'];
|
|
557
|
-
workflowId: Scalars['String']['output'];
|
|
558
|
-
};
|
|
559
|
-
export declare type AdminDataResidencyFeature = {
|
|
560
|
-
__typename?: 'AdminDataResidencyFeature';
|
|
561
|
-
realms: Array<AdminRealmTypes>;
|
|
562
|
-
};
|
|
563
|
-
export declare type AdminEntitlementFeatures = {
|
|
564
|
-
__typename?: 'AdminEntitlementFeatures';
|
|
565
|
-
allowlisting?: Maybe<AdminAllowlistFeature>;
|
|
566
|
-
auditLog?: Maybe<AdminAuditLogFeature>;
|
|
567
|
-
dataResidency?: Maybe<AdminDataResidencyFeature>;
|
|
568
|
-
mobileDevicePolicy?: Maybe<AdminMobileDevicePolicyFeature>;
|
|
569
|
-
releaseTrack?: Maybe<AdminReleaseTrackFeature>;
|
|
570
|
-
sandbox?: Maybe<AdminSandboxFeature>;
|
|
571
|
-
};
|
|
572
|
-
export declare enum AdminFeatureType {
|
|
573
|
-
Allowlisting = "ALLOWLISTING",
|
|
574
|
-
AtlassianIntelligence = "ATLASSIAN_INTELLIGENCE"
|
|
575
|
-
}
|
|
576
|
-
export declare type AdminMobileDevicePolicyFeature = {
|
|
577
|
-
__typename?: 'AdminMobileDevicePolicyFeature';
|
|
578
|
-
enabled: Scalars['Boolean']['output'];
|
|
579
|
-
};
|
|
580
|
-
export declare type AdminMutation = {
|
|
581
|
-
__typename?: 'AdminMutation';
|
|
582
|
-
createWorkspace: AdminCreateWorkspaceOutput;
|
|
583
|
-
linkWorkspaceToOrg: Scalars['Boolean']['output'];
|
|
584
|
-
};
|
|
585
|
-
export declare type AdminMutationCreateWorkspaceArgs = {
|
|
586
|
-
attributes: AdminCreateWorkspaceInputAttributes;
|
|
587
|
-
orgId: Scalars['String']['input'];
|
|
588
|
-
};
|
|
589
|
-
export declare type AdminMutationLinkWorkspaceToOrgArgs = {
|
|
590
|
-
orgId: Scalars['String']['input'];
|
|
591
|
-
workspaceAri: Scalars['String']['input'];
|
|
592
|
-
};
|
|
593
|
-
export declare type AdminOrganization = {
|
|
594
|
-
__typename?: 'AdminOrganization';
|
|
595
|
-
checkWorkflowStatus: AdminCheckWorkflowStatusOutput;
|
|
596
|
-
id: Scalars['ID']['output'];
|
|
597
|
-
workspace: AdminWorkspace;
|
|
598
|
-
workspaceByUserContext: AdminWorkspace;
|
|
599
|
-
workspacePlans: Array<AdminWorkspacePlan>;
|
|
600
|
-
workspaceTypes: Array<AdminUiProductType>;
|
|
601
|
-
workspaces: AdminWorkspaces;
|
|
602
|
-
workspacesTotalCount: Scalars['Int']['output'];
|
|
603
|
-
};
|
|
604
|
-
export declare type AdminOrganizationCheckWorkflowStatusArgs = {
|
|
605
|
-
workflowId: Scalars['String']['input'];
|
|
606
|
-
};
|
|
607
|
-
export declare type AdminOrganizationWorkspaceArgs = {
|
|
608
|
-
id: Scalars['String']['input'];
|
|
609
|
-
};
|
|
610
|
-
export declare type AdminOrganizationWorkspaceByUserContextArgs = {
|
|
611
|
-
id: Scalars['String']['input'];
|
|
612
|
-
};
|
|
613
|
-
export declare type AdminOrganizationWorkspacesArgs = {
|
|
614
|
-
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
615
|
-
excludeSandboxes?: InputMaybe<Scalars['Boolean']['input']>;
|
|
616
|
-
features?: InputMaybe<Array<AdminFeatureType>>;
|
|
617
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
618
|
-
plans?: InputMaybe<Array<AdminWorkspacePlan>>;
|
|
619
|
-
policies?: InputMaybe<Array<AdminPolicyType>>;
|
|
620
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
621
|
-
shouldNotQueryAdminPortfolio?: InputMaybe<Scalars['Boolean']['input']>;
|
|
622
|
-
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
623
|
-
sortOrder?: InputMaybe<AdminSortOrder>;
|
|
624
|
-
types?: InputMaybe<Array<AdminUiProductType>>;
|
|
625
|
-
};
|
|
626
|
-
export declare enum AdminPolicyType {
|
|
627
|
-
CustomDomains = "CUSTOM_DOMAINS"
|
|
628
|
-
}
|
|
629
|
-
export declare type AdminProductEntitlements = {
|
|
630
|
-
__typename?: 'AdminProductEntitlements';
|
|
631
|
-
edition?: Maybe<Scalars['String']['output']>;
|
|
632
|
-
features: AdminEntitlementFeatures;
|
|
633
|
-
};
|
|
634
|
-
export declare type AdminProductLinks = {
|
|
635
|
-
__typename?: 'AdminProductLinks';
|
|
636
|
-
self?: Maybe<Scalars['String']['output']>;
|
|
637
|
-
};
|
|
638
|
-
export declare type AdminProductOffline = {
|
|
639
|
-
__typename?: 'AdminProductOffline';
|
|
640
|
-
reason: AdminProductOfflineReason;
|
|
641
|
-
};
|
|
642
|
-
export declare enum AdminProductOfflineReason {
|
|
643
|
-
Maintenance = "maintenance",
|
|
644
|
-
Migration = "migration",
|
|
645
|
-
Other = "other",
|
|
646
|
-
SandboxDataClone = "sandbox_data_clone",
|
|
647
|
-
SandboxDelete = "sandbox_delete",
|
|
648
|
-
SandboxReset = "sandbox_reset",
|
|
649
|
-
SandboxSoftDelete = "sandbox_soft_delete",
|
|
650
|
-
Support = "support",
|
|
651
|
-
SuspendedForDestruction = "suspended_for_destruction",
|
|
652
|
-
SuspendedPayment = "suspended_payment",
|
|
653
|
-
SuspendedSecurity = "suspended_security"
|
|
654
|
-
}
|
|
655
|
-
export declare type AdminQuery = {
|
|
656
|
-
__typename?: 'AdminQuery';
|
|
657
|
-
organization: AdminOrganization;
|
|
658
|
-
};
|
|
659
|
-
export declare type AdminQueryOrganizationArgs = {
|
|
660
|
-
id: Scalars['String']['input'];
|
|
661
|
-
};
|
|
662
|
-
export declare enum AdminRealmTypes {
|
|
663
|
-
Au = "au",
|
|
664
|
-
De = "de",
|
|
665
|
-
Eu = "eu",
|
|
666
|
-
Global = "global",
|
|
667
|
-
Sg = "sg",
|
|
668
|
-
Us = "us"
|
|
669
|
-
}
|
|
670
|
-
export declare type AdminReleaseTrackFeature = {
|
|
671
|
-
__typename?: 'AdminReleaseTrackFeature';
|
|
672
|
-
tracks: Array<AdminReleaseTrackTracks>;
|
|
673
|
-
};
|
|
674
|
-
export declare enum AdminReleaseTrackTracks {
|
|
675
|
-
FastTrack = "fastTrack",
|
|
676
|
-
PreviewTrack = "previewTrack",
|
|
677
|
-
ScheduledTrack = "scheduledTrack"
|
|
678
|
-
}
|
|
679
|
-
export declare type AdminSandboxFeature = {
|
|
680
|
-
__typename?: 'AdminSandboxFeature';
|
|
681
|
-
limit: Scalars['Int']['output'];
|
|
682
|
-
};
|
|
683
|
-
export declare enum AdminSandboxTypes {
|
|
684
|
-
Child = "CHILD",
|
|
685
|
-
None = "NONE"
|
|
528
|
+
export declare enum AlertEventStatus {
|
|
529
|
+
Acknowledged = "ACKNOWLEDGED",
|
|
530
|
+
Closed = "CLOSED",
|
|
531
|
+
Opened = "OPENED",
|
|
532
|
+
Snoozed = "SNOOZED"
|
|
686
533
|
}
|
|
687
|
-
export declare
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
Asc = "asc",
|
|
694
|
-
Desc = "desc"
|
|
534
|
+
export declare enum AlertPriority {
|
|
535
|
+
P1 = "P1",
|
|
536
|
+
P2 = "P2",
|
|
537
|
+
P3 = "P3",
|
|
538
|
+
P4 = "P4",
|
|
539
|
+
P5 = "P5"
|
|
695
540
|
}
|
|
696
|
-
export declare enum AdminUiProductType {
|
|
697
|
-
Analytics = "ANALYTICS",
|
|
698
|
-
Avocado = "AVOCADO",
|
|
699
|
-
Beacon = "BEACON",
|
|
700
|
-
Bitbucket = "BITBUCKET",
|
|
701
|
-
CloudAdmin = "CLOUD_ADMIN",
|
|
702
|
-
Compass = "COMPASS",
|
|
703
|
-
Confluence = "CONFLUENCE",
|
|
704
|
-
Fabric = "FABRIC",
|
|
705
|
-
JiraAdmin = "JIRA_ADMIN",
|
|
706
|
-
JiraCore = "JIRA_CORE",
|
|
707
|
-
JiraIncidentManager = "JIRA_INCIDENT_MANAGER",
|
|
708
|
-
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
709
|
-
JiraServiceDesk = "JIRA_SERVICE_DESK",
|
|
710
|
-
JiraSoftware = "JIRA_SOFTWARE",
|
|
711
|
-
Mercury = "MERCURY",
|
|
712
|
-
Opsgenie = "OPSGENIE",
|
|
713
|
-
Statuspage = "STATUSPAGE",
|
|
714
|
-
Stride = "STRIDE",
|
|
715
|
-
Teamcentral = "TEAMCENTRAL",
|
|
716
|
-
Trello = "TRELLO"
|
|
717
|
-
}
|
|
718
|
-
export declare type AdminWorkspace = {
|
|
719
|
-
__typename?: 'AdminWorkspace';
|
|
720
|
-
byok?: Maybe<AdminByokPolicy>;
|
|
721
|
-
capacity?: Maybe<Scalars['Int']['output']>;
|
|
722
|
-
entitlements?: Maybe<AdminProductEntitlements>;
|
|
723
|
-
id: Scalars['ID']['output'];
|
|
724
|
-
isCurrentUserPermittedToMutateRole?: Maybe<Scalars['Boolean']['output']>;
|
|
725
|
-
key: Scalars['String']['output'];
|
|
726
|
-
links?: Maybe<AdminProductLinks>;
|
|
727
|
-
name: Scalars['String']['output'];
|
|
728
|
-
offline?: Maybe<Array<AdminProductOffline>>;
|
|
729
|
-
provisionedDate?: Maybe<Scalars['String']['output']>;
|
|
730
|
-
realm?: Maybe<AdminRealmTypes>;
|
|
731
|
-
sandbox?: Maybe<AdminSiteSandbox>;
|
|
732
|
-
siteAvatarUrl?: Maybe<Scalars['String']['output']>;
|
|
733
|
-
siteDisplayName?: Maybe<Scalars['String']['output']>;
|
|
734
|
-
siteId?: Maybe<Scalars['String']['output']>;
|
|
735
|
-
type: AdminUiProductType;
|
|
736
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
737
|
-
usage?: Maybe<Scalars['Int']['output']>;
|
|
738
|
-
};
|
|
739
|
-
export declare type AdminWorkspaceIsCurrentUserPermittedToMutateRoleArgs = {
|
|
740
|
-
orgId: Scalars['String']['input'];
|
|
741
|
-
};
|
|
742
|
-
export declare type AdminWorkspaceAriArgs = {
|
|
743
|
-
__typename?: 'AdminWorkspaceAriArgs';
|
|
744
|
-
id: Scalars['String']['output'];
|
|
745
|
-
orgId: Scalars['String']['output'];
|
|
746
|
-
};
|
|
747
|
-
export declare enum AdminWorkspacePlan {
|
|
748
|
-
AtlassianTeams = "AtlassianTeams",
|
|
749
|
-
Beta = "Beta",
|
|
750
|
-
Bitbucket100UsersPremium = "Bitbucket100UsersPremium",
|
|
751
|
-
Enterprise = "Enterprise",
|
|
752
|
-
Essentials = "Essentials",
|
|
753
|
-
Free = "Free",
|
|
754
|
-
None = "None",
|
|
755
|
-
Premium = "Premium",
|
|
756
|
-
Standard = "Standard",
|
|
757
|
-
Unknown = "Unknown"
|
|
758
|
-
}
|
|
759
|
-
export declare type AdminWorkspaces = {
|
|
760
|
-
__typename?: 'AdminWorkspaces';
|
|
761
|
-
meta: AdminWorkspacesMeta;
|
|
762
|
-
products: Array<AdminWorkspace>;
|
|
763
|
-
};
|
|
764
|
-
export declare type AdminWorkspacesMeta = {
|
|
765
|
-
__typename?: 'AdminWorkspacesMeta';
|
|
766
|
-
endIndex?: Maybe<Scalars['Int']['output']>;
|
|
767
|
-
next?: Maybe<Scalars['String']['output']>;
|
|
768
|
-
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
769
|
-
prev?: Maybe<Scalars['String']['output']>;
|
|
770
|
-
startIndex?: Maybe<Scalars['Int']['output']>;
|
|
771
|
-
total?: Maybe<Scalars['Int']['output']>;
|
|
772
|
-
};
|
|
773
541
|
export declare enum ApiContext {
|
|
774
542
|
Devops = "DEVOPS"
|
|
775
543
|
}
|
|
776
544
|
export declare enum ApiGroup {
|
|
777
545
|
Actions = "ACTIONS",
|
|
778
|
-
AdminGraphqlServer = "ADMIN_GRAPHQL_SERVER",
|
|
779
546
|
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
780
547
|
Caas = "CAAS",
|
|
781
548
|
CloudAdmin = "CLOUD_ADMIN",
|
|
@@ -796,6 +563,7 @@ export declare enum ApiGroup {
|
|
|
796
563
|
Forge = "FORGE",
|
|
797
564
|
Help = "HELP",
|
|
798
565
|
Identity = "IDENTITY",
|
|
566
|
+
InsightsXperienceService = "INSIGHTS_XPERIENCE_SERVICE",
|
|
799
567
|
Jira = "JIRA",
|
|
800
568
|
Papi = "PAPI",
|
|
801
569
|
Polaris = "POLARIS",
|
|
@@ -1057,6 +825,7 @@ export declare type AppInstallation = {
|
|
|
1057
825
|
appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
|
|
1058
826
|
createdAt: Scalars['DateTime']['output'];
|
|
1059
827
|
createdBy?: Maybe<User>;
|
|
828
|
+
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
1060
829
|
id: Scalars['ID']['output'];
|
|
1061
830
|
installationContext: Scalars['ID']['output'];
|
|
1062
831
|
license?: Maybe<AppInstallationLicense>;
|
|
@@ -1644,7 +1413,9 @@ export declare type AquaOutgoingEmailLogItem = {
|
|
|
1644
1413
|
__typename?: 'AquaOutgoingEmailLogItem';
|
|
1645
1414
|
actionTimestamp: Scalars['DateTime']['output'];
|
|
1646
1415
|
author?: Maybe<User>;
|
|
1416
|
+
deliveryType?: Maybe<Scalars['String']['output']>;
|
|
1647
1417
|
issueContext?: Maybe<AquaIssueContext>;
|
|
1418
|
+
notificationActionSubType?: Maybe<Scalars['String']['output']>;
|
|
1648
1419
|
notificationActionType?: Maybe<Scalars['String']['output']>;
|
|
1649
1420
|
notificationDetails?: Maybe<AquaNotificationDetails>;
|
|
1650
1421
|
notificationType?: Maybe<Scalars['String']['output']>;
|
|
@@ -1665,6 +1436,7 @@ export declare type AquaOutgoingEmailLogsQueryApiGetNotificationLogsArgs = {
|
|
|
1665
1436
|
notificationActionType?: InputMaybe<Scalars['String']['input']>;
|
|
1666
1437
|
notificationType?: InputMaybe<Scalars['String']['input']>;
|
|
1667
1438
|
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
1439
|
+
recipientId?: InputMaybe<Scalars['String']['input']>;
|
|
1668
1440
|
toTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1669
1441
|
};
|
|
1670
1442
|
export declare type AquaOutgoingEmailLogsQueryResult = AquaOutgoingEmailLog | QueryError;
|
|
@@ -1885,6 +1657,7 @@ export declare type AtlassianAccountUserExtendedProfile = {
|
|
|
1885
1657
|
export declare type AtlassianOAuthClient = {
|
|
1886
1658
|
__typename?: 'AtlassianOAuthClient';
|
|
1887
1659
|
callbacks?: Maybe<Array<Scalars['String']['output']>>;
|
|
1660
|
+
clientARI: Scalars['ID']['output'];
|
|
1888
1661
|
clientID: Scalars['ID']['output'];
|
|
1889
1662
|
refreshToken?: Maybe<RefreshToken>;
|
|
1890
1663
|
};
|
|
@@ -3119,10 +2892,22 @@ export declare type CompassAlertEvent = CompassEvent & {
|
|
|
3119
2892
|
};
|
|
3120
2893
|
export declare type CompassAlertEventProperties = {
|
|
3121
2894
|
__typename?: 'CompassAlertEventProperties';
|
|
2895
|
+
acknowledgedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2896
|
+
closedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2897
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3122
2898
|
id: Scalars['ID']['output'];
|
|
2899
|
+
priority?: Maybe<Scalars['String']['output']>;
|
|
2900
|
+
snoozedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2901
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
3123
2902
|
};
|
|
3124
2903
|
export declare type CompassAlertEventPropertiesInput = {
|
|
2904
|
+
acknowledgedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2905
|
+
closedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2906
|
+
createdAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3125
2907
|
id: Scalars['ID']['input'];
|
|
2908
|
+
priority?: InputMaybe<AlertPriority>;
|
|
2909
|
+
snoozedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2910
|
+
status?: InputMaybe<AlertEventStatus>;
|
|
3126
2911
|
};
|
|
3127
2912
|
export declare type CompassAnnouncement = {
|
|
3128
2913
|
__typename?: 'CompassAnnouncement';
|
|
@@ -3290,6 +3075,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3290
3075
|
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
3291
3076
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
3292
3077
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
3078
|
+
updateDocument?: Maybe<CompassUpdateDocumentPayload>;
|
|
3293
3079
|
updateMetricDefinition?: Maybe<CompassUpdateMetricDefinitionPayload>;
|
|
3294
3080
|
updateScorecard?: Maybe<UpdateCompassScorecardPayload>;
|
|
3295
3081
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
@@ -3474,6 +3260,9 @@ export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
|
3474
3260
|
export declare type CompassCatalogMutationApiUpdateCustomFieldDefinitionArgs = {
|
|
3475
3261
|
input: CompassUpdateCustomFieldDefinitionInput;
|
|
3476
3262
|
};
|
|
3263
|
+
export declare type CompassCatalogMutationApiUpdateDocumentArgs = {
|
|
3264
|
+
input: CompassUpdateDocumentInput;
|
|
3265
|
+
};
|
|
3477
3266
|
export declare type CompassCatalogMutationApiUpdateMetricDefinitionArgs = {
|
|
3478
3267
|
input: CompassUpdateMetricDefinitionInput;
|
|
3479
3268
|
};
|
|
@@ -3492,17 +3281,20 @@ export declare type CompassCatalogQueryApi = {
|
|
|
3492
3281
|
applicationManagedComponents?: Maybe<CompassApplicationManagedComponentsResult>;
|
|
3493
3282
|
assistantAnswer?: Maybe<CompassAssistantAnswer>;
|
|
3494
3283
|
attentionItems?: Maybe<CompassAttentionItemQueryResult>;
|
|
3284
|
+
attentionItemsConnection?: Maybe<CompassAttentionItemConnection>;
|
|
3495
3285
|
component?: Maybe<CompassComponentResult>;
|
|
3496
3286
|
componentByExternalAlias?: Maybe<CompassComponentResult>;
|
|
3497
3287
|
componentScorecardRelationship?: Maybe<CompassComponentScorecardRelationshipResult>;
|
|
3498
3288
|
componentType?: Maybe<CompassComponentTypeResult>;
|
|
3499
3289
|
componentTypes?: Maybe<CompassComponentTypesQueryResult>;
|
|
3290
|
+
components?: Maybe<Array<CompassComponent>>;
|
|
3500
3291
|
customFieldDefinition?: Maybe<CompassCustomFieldDefinitionResult>;
|
|
3501
3292
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
3502
3293
|
documentationCategories?: Maybe<CompassDocumentationCategoriesConnection>;
|
|
3294
|
+
documents?: Maybe<CompassDocumentConnection>;
|
|
3503
3295
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
3504
3296
|
fieldDefinitionsByComponentType?: Maybe<CompassFieldDefinitionsResult>;
|
|
3505
|
-
|
|
3297
|
+
filteredComponentsCount?: Maybe<CompassFilteredComponentsCountResult>;
|
|
3506
3298
|
incomingWebhooks?: Maybe<CompassIncomingWebhooksConnection>;
|
|
3507
3299
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
3508
3300
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
@@ -3527,6 +3319,11 @@ export declare type CompassCatalogQueryApiAssistantAnswerArgs = {
|
|
|
3527
3319
|
export declare type CompassCatalogQueryApiAttentionItemsArgs = {
|
|
3528
3320
|
query: CompassAttentionItemQuery;
|
|
3529
3321
|
};
|
|
3322
|
+
export declare type CompassCatalogQueryApiAttentionItemsConnectionArgs = {
|
|
3323
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3324
|
+
cloudId: Scalars['ID']['input'];
|
|
3325
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3326
|
+
};
|
|
3530
3327
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
3531
3328
|
id: Scalars['ID']['input'];
|
|
3532
3329
|
};
|
|
@@ -3548,6 +3345,9 @@ export declare type CompassCatalogQueryApiComponentTypesArgs = {
|
|
|
3548
3345
|
cloudId: Scalars['ID']['input'];
|
|
3549
3346
|
query?: InputMaybe<CompassComponentTypeQueryInput>;
|
|
3550
3347
|
};
|
|
3348
|
+
export declare type CompassCatalogQueryApiComponentsArgs = {
|
|
3349
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3350
|
+
};
|
|
3551
3351
|
export declare type CompassCatalogQueryApiCustomFieldDefinitionArgs = {
|
|
3552
3352
|
query: CompassCustomFieldDefinitionQuery;
|
|
3553
3353
|
};
|
|
@@ -3559,6 +3359,11 @@ export declare type CompassCatalogQueryApiDocumentationCategoriesArgs = {
|
|
|
3559
3359
|
cloudId: Scalars['ID']['input'];
|
|
3560
3360
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3561
3361
|
};
|
|
3362
|
+
export declare type CompassCatalogQueryApiDocumentsArgs = {
|
|
3363
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3364
|
+
componentId: Scalars['ID']['input'];
|
|
3365
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3366
|
+
};
|
|
3562
3367
|
export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
3563
3368
|
cloudId: Scalars['ID']['input'];
|
|
3564
3369
|
eventType: CompassEventType;
|
|
@@ -3568,10 +3373,9 @@ export declare type CompassCatalogQueryApiFieldDefinitionsByComponentTypeArgs =
|
|
|
3568
3373
|
cloudId: Scalars['ID']['input'];
|
|
3569
3374
|
input: CompassComponentType;
|
|
3570
3375
|
};
|
|
3571
|
-
export declare type
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3376
|
+
export declare type CompassCatalogQueryApiFilteredComponentsCountArgs = {
|
|
3377
|
+
cloudId: Scalars['ID']['input'];
|
|
3378
|
+
query: CompassFilteredComponentsCountQuery;
|
|
3575
3379
|
};
|
|
3576
3380
|
export declare type CompassCatalogQueryApiIncomingWebhooksArgs = {
|
|
3577
3381
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4024,7 +3828,6 @@ export declare type CompassCreateMetricSourcePayload = Payload & {
|
|
|
4024
3828
|
success: Scalars['Boolean']['output'];
|
|
4025
3829
|
};
|
|
4026
3830
|
export declare type CompassCreatePullRequestEventInput = {
|
|
4027
|
-
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
4028
3831
|
lastUpdated: Scalars['DateTime']['input'];
|
|
4029
3832
|
pullRequestProperties: CompassPullRequestInputProperties;
|
|
4030
3833
|
};
|
|
@@ -4573,6 +4376,16 @@ export declare enum CompassFieldType {
|
|
|
4573
4376
|
export declare type CompassFieldValueInput = {
|
|
4574
4377
|
enum?: InputMaybe<CompassEnumFieldValueInput>;
|
|
4575
4378
|
};
|
|
4379
|
+
export declare type CompassFilteredComponentsCount = {
|
|
4380
|
+
__typename?: 'CompassFilteredComponentsCount';
|
|
4381
|
+
count: Scalars['Int']['output'];
|
|
4382
|
+
};
|
|
4383
|
+
export declare type CompassFilteredComponentsCountQuery = {
|
|
4384
|
+
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
4385
|
+
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
4386
|
+
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
4387
|
+
};
|
|
4388
|
+
export declare type CompassFilteredComponentsCountResult = CompassFilteredComponentsCount | QueryError;
|
|
4576
4389
|
export declare type CompassFlagEvent = CompassEvent & {
|
|
4577
4390
|
__typename?: 'CompassFlagEvent';
|
|
4578
4391
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -5148,6 +4961,9 @@ export declare type CompassScorecardAppliedToComponentsFieldFilter = {
|
|
|
5148
4961
|
definition: Scalars['ID']['input'];
|
|
5149
4962
|
in: Array<CompassFieldValueInput>;
|
|
5150
4963
|
};
|
|
4964
|
+
export declare type CompassScorecardAppliedToComponentsLabelsFilter = {
|
|
4965
|
+
in: Array<Scalars['String']['input']>;
|
|
4966
|
+
};
|
|
5151
4967
|
export declare type CompassScorecardAppliedToComponentsOwnerFilter = {
|
|
5152
4968
|
in: Array<Scalars['ID']['input']>;
|
|
5153
4969
|
};
|
|
@@ -5721,6 +5537,18 @@ export declare type CompassUpdateCustomUserFieldDefinitionInput = {
|
|
|
5721
5537
|
id: Scalars['ID']['input'];
|
|
5722
5538
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5723
5539
|
};
|
|
5540
|
+
export declare type CompassUpdateDocumentInput = {
|
|
5541
|
+
documentCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
5542
|
+
id: Scalars['ID']['input'];
|
|
5543
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
5544
|
+
url?: InputMaybe<Scalars['URL']['input']>;
|
|
5545
|
+
};
|
|
5546
|
+
export declare type CompassUpdateDocumentPayload = Payload & {
|
|
5547
|
+
__typename?: 'CompassUpdateDocumentPayload';
|
|
5548
|
+
documentDetails?: Maybe<CompassDocument>;
|
|
5549
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5550
|
+
success: Scalars['Boolean']['output'];
|
|
5551
|
+
};
|
|
5724
5552
|
export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
5725
5553
|
booleanComparator?: InputMaybe<CompassCriteriaBooleanComparatorOptions>;
|
|
5726
5554
|
booleanComparatorValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -5888,6 +5716,7 @@ export declare type ConfluenceBlogPost = {
|
|
|
5888
5716
|
body?: Maybe<ConfluenceBodies>;
|
|
5889
5717
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
5890
5718
|
id: Scalars['ID']['output'];
|
|
5719
|
+
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
5891
5720
|
latestVersion?: Maybe<ConfluenceBlogPostVersion>;
|
|
5892
5721
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
5893
5722
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
@@ -6446,6 +6275,7 @@ export declare type ConfluencePage = {
|
|
|
6446
6275
|
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
6447
6276
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
6448
6277
|
id: Scalars['ID']['output'];
|
|
6278
|
+
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
6449
6279
|
latestVersion?: Maybe<ConfluencePageVersion>;
|
|
6450
6280
|
likesSummary?: Maybe<ConfluenceLikesSummary>;
|
|
6451
6281
|
links?: Maybe<ConfluencePageLinks>;
|
|
@@ -6500,6 +6330,11 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
6500
6330
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
6501
6331
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
6502
6332
|
};
|
|
6333
|
+
export declare type ConfluencePublicLinkPage = {
|
|
6334
|
+
__typename?: 'ConfluencePublicLinkPage';
|
|
6335
|
+
body?: Maybe<ConfluenceBodies>;
|
|
6336
|
+
type?: Maybe<ConfluenceContentType>;
|
|
6337
|
+
};
|
|
6503
6338
|
export declare type ConfluencePublishBlogPostInput = {
|
|
6504
6339
|
id: Scalars['ID']['input'];
|
|
6505
6340
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6549,6 +6384,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
6549
6384
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
6550
6385
|
page?: Maybe<ConfluencePage>;
|
|
6551
6386
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
6387
|
+
publicLink?: Maybe<ConfluencePublicLinkPage>;
|
|
6552
6388
|
space?: Maybe<ConfluenceSpace>;
|
|
6553
6389
|
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
6554
6390
|
validateSpaceKey?: Maybe<ConfluenceValidateSpaceKeyResponse>;
|
|
@@ -6591,6 +6427,9 @@ export declare type ConfluenceQueryApiPageArgs = {
|
|
|
6591
6427
|
export declare type ConfluenceQueryApiPagesArgs = {
|
|
6592
6428
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
6593
6429
|
};
|
|
6430
|
+
export declare type ConfluenceQueryApiPublicLinkArgs = {
|
|
6431
|
+
id: Scalars['ID']['input'];
|
|
6432
|
+
};
|
|
6594
6433
|
export declare type ConfluenceQueryApiSpaceArgs = {
|
|
6595
6434
|
id: Scalars['ID']['input'];
|
|
6596
6435
|
};
|
|
@@ -8563,6 +8402,11 @@ export declare type CustomerServiceCustomDetailValue = Node & {
|
|
|
8563
8402
|
value?: Maybe<Scalars['String']['output']>;
|
|
8564
8403
|
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
8565
8404
|
};
|
|
8405
|
+
export declare type CustomerServiceCustomDetailValues = {
|
|
8406
|
+
__typename?: 'CustomerServiceCustomDetailValues';
|
|
8407
|
+
results: Array<CustomerServiceCustomDetailValue>;
|
|
8408
|
+
};
|
|
8409
|
+
export declare type CustomerServiceCustomDetailValuesQueryResult = CustomerServiceCustomDetailValues | QueryError;
|
|
8566
8410
|
export declare type CustomerServiceCustomDetails = {
|
|
8567
8411
|
__typename?: 'CustomerServiceCustomDetails';
|
|
8568
8412
|
customDetails: Array<CustomerServiceCustomDetail>;
|
|
@@ -8578,6 +8422,7 @@ export declare type CustomerServiceEntitledEntity = CustomerServiceIndividual |
|
|
|
8578
8422
|
export declare type CustomerServiceEntitlement = Node & {
|
|
8579
8423
|
__typename?: 'CustomerServiceEntitlement';
|
|
8580
8424
|
customDetails: Array<CustomerServiceCustomDetailValue>;
|
|
8425
|
+
details: CustomerServiceCustomDetailValuesQueryResult;
|
|
8581
8426
|
entity: CustomerServiceEntitledEntity;
|
|
8582
8427
|
id: Scalars['ID']['output'];
|
|
8583
8428
|
product: CustomerServiceProduct;
|
|
@@ -8624,6 +8469,7 @@ export declare type CustomerServiceFilterInput = {
|
|
|
8624
8469
|
export declare type CustomerServiceIndividual = Node & {
|
|
8625
8470
|
__typename?: 'CustomerServiceIndividual';
|
|
8626
8471
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
8472
|
+
details: CustomerServiceCustomDetailValuesQueryResult;
|
|
8627
8473
|
entitlementList: Array<CustomerServiceEntitlement>;
|
|
8628
8474
|
entitlements?: Maybe<CustomerServiceEntitlementConnection>;
|
|
8629
8475
|
id: Scalars['ID']['output'];
|
|
@@ -8900,6 +8746,7 @@ export declare type CustomerServiceNotesQueryResult = CustomerServiceNotes | Que
|
|
|
8900
8746
|
export declare type CustomerServiceOrganization = Node & {
|
|
8901
8747
|
__typename?: 'CustomerServiceOrganization';
|
|
8902
8748
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
8749
|
+
details: CustomerServiceCustomDetailValuesQueryResult;
|
|
8903
8750
|
entitlementList: Array<CustomerServiceEntitlement>;
|
|
8904
8751
|
entitlements?: Maybe<CustomerServiceEntitlementConnection>;
|
|
8905
8752
|
id: Scalars['ID']['output'];
|
|
@@ -9677,7 +9524,6 @@ export declare type DevOpsDesignProvider = DevOpsDataProvider & {
|
|
|
9677
9524
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
9678
9525
|
configState?: Maybe<JiraAppConfigState>;
|
|
9679
9526
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
9680
|
-
grant3LOUrl?: Maybe<Scalars['String']['output']>;
|
|
9681
9527
|
handledDomainName?: Maybe<Scalars['String']['output']>;
|
|
9682
9528
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
9683
9529
|
id: Scalars['ID']['output'];
|
|
@@ -9771,7 +9617,6 @@ export declare type DevOpsDocumentationProvider = DevOpsDataProvider & {
|
|
|
9771
9617
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
9772
9618
|
configState?: Maybe<JiraAppConfigState>;
|
|
9773
9619
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
9774
|
-
grant3LOUrl?: Maybe<Scalars['String']['output']>;
|
|
9775
9620
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
9776
9621
|
id: Scalars['ID']['output'];
|
|
9777
9622
|
linkedContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
@@ -10083,7 +9928,6 @@ export declare type DevOpsOperationsComponentDetails = {
|
|
|
10083
9928
|
id: Scalars['ID']['output'];
|
|
10084
9929
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
10085
9930
|
name?: Maybe<Scalars['String']['output']>;
|
|
10086
|
-
providerAri?: Maybe<Scalars['String']['output']>;
|
|
10087
9931
|
providerComponentId?: Maybe<Scalars['String']['output']>;
|
|
10088
9932
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
10089
9933
|
tier?: Maybe<DevOpsComponentTier>;
|
|
@@ -10660,10 +10504,8 @@ export declare type DevOpsSummarisedFeatureFlags = {
|
|
|
10660
10504
|
export declare type DevOpsSupportedActions = {
|
|
10661
10505
|
__typename?: 'DevOpsSupportedActions';
|
|
10662
10506
|
associate?: Maybe<Scalars['Boolean']['output']>;
|
|
10663
|
-
check3LO?: Maybe<Scalars['Boolean']['output']>;
|
|
10664
10507
|
checkAuth?: Maybe<Scalars['Boolean']['output']>;
|
|
10665
10508
|
disassociate?: Maybe<Scalars['Boolean']['output']>;
|
|
10666
|
-
grant3LO?: Maybe<Scalars['Boolean']['output']>;
|
|
10667
10509
|
listContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
10668
10510
|
searchConnectedWorkspaces?: Maybe<Scalars['Boolean']['output']>;
|
|
10669
10511
|
searchContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -11421,7 +11263,9 @@ export declare type ExtensionContextsFilter = {
|
|
|
11421
11263
|
value: Array<Scalars['String']['input']>;
|
|
11422
11264
|
};
|
|
11423
11265
|
export declare enum ExtensionContextsFilterType {
|
|
11266
|
+
AppIdEnvironmentId = "APP_ID_ENVIRONMENT_ID",
|
|
11424
11267
|
DataClassificationTag = "DATA_CLASSIFICATION_TAG",
|
|
11268
|
+
DefinitionId = "DEFINITION_ID",
|
|
11425
11269
|
ExtensionType = "EXTENSION_TYPE",
|
|
11426
11270
|
PrincipalType = "PRINCIPAL_TYPE"
|
|
11427
11271
|
}
|
|
@@ -16080,6 +15924,8 @@ export declare type GraphStore = {
|
|
|
16080
15924
|
projectHasIssueInverse?: Maybe<GraphStoreSimplifiedProjectHasIssueInverseConnection>;
|
|
16081
15925
|
projectHasIssueInverseRelationship?: Maybe<GraphStoreFullProjectHasIssueConnection>;
|
|
16082
15926
|
projectHasIssueRelationship?: Maybe<GraphStoreFullProjectHasIssueConnection>;
|
|
15927
|
+
projectHasRelatedWorkWithProject?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectConnection>;
|
|
15928
|
+
projectHasRelatedWorkWithProjectInverse?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseConnection>;
|
|
16083
15929
|
projectHasSharedVersionWith?: Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithConnection>;
|
|
16084
15930
|
projectHasSharedVersionWithInverse?: Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithInverseConnection>;
|
|
16085
15931
|
projectHasSharedVersionWithInverseRelationship?: Maybe<GraphStoreFullProjectHasSharedVersionWithConnection>;
|
|
@@ -17392,6 +17238,16 @@ export declare type GraphStoreProjectHasIssueRelationshipArgs = {
|
|
|
17392
17238
|
id: Scalars['ID']['input'];
|
|
17393
17239
|
sort?: InputMaybe<GraphStoreProjectHasIssueSortInput>;
|
|
17394
17240
|
};
|
|
17241
|
+
export declare type GraphStoreProjectHasRelatedWorkWithProjectArgs = {
|
|
17242
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17243
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17244
|
+
id: Scalars['ID']['input'];
|
|
17245
|
+
};
|
|
17246
|
+
export declare type GraphStoreProjectHasRelatedWorkWithProjectInverseArgs = {
|
|
17247
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17248
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17249
|
+
id: Scalars['ID']['input'];
|
|
17250
|
+
};
|
|
17395
17251
|
export declare type GraphStoreProjectHasSharedVersionWithArgs = {
|
|
17396
17252
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17397
17253
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -18364,6 +18220,46 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipStartUnion = JiraIs
|
|
|
18364
18220
|
export declare type GraphStoreBooleanFilterInput = {
|
|
18365
18221
|
is?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18366
18222
|
};
|
|
18223
|
+
export declare type GraphStoreCreateComponentImpactedByIncidentInput = {
|
|
18224
|
+
relationships: Array<GraphStoreCreateComponentImpactedByIncidentRelationshipInput>;
|
|
18225
|
+
};
|
|
18226
|
+
export declare enum GraphStoreCreateComponentImpactedByIncidentJiraIncidentPriorityInput {
|
|
18227
|
+
NotSet = "NOT_SET",
|
|
18228
|
+
P1 = "P1",
|
|
18229
|
+
P2 = "P2",
|
|
18230
|
+
P3 = "P3",
|
|
18231
|
+
P4 = "P4",
|
|
18232
|
+
P5 = "P5",
|
|
18233
|
+
Pending = "PENDING",
|
|
18234
|
+
Unknown = "UNKNOWN"
|
|
18235
|
+
}
|
|
18236
|
+
export declare enum GraphStoreCreateComponentImpactedByIncidentJiraIncidentStatusInput {
|
|
18237
|
+
Done = "DONE",
|
|
18238
|
+
Indeterminate = "INDETERMINATE",
|
|
18239
|
+
New = "NEW",
|
|
18240
|
+
NotSet = "NOT_SET",
|
|
18241
|
+
Undefined = "UNDEFINED"
|
|
18242
|
+
}
|
|
18243
|
+
export declare type GraphStoreCreateComponentImpactedByIncidentPayload = Payload & {
|
|
18244
|
+
__typename?: 'GraphStoreCreateComponentImpactedByIncidentPayload';
|
|
18245
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18246
|
+
success: Scalars['Boolean']['output'];
|
|
18247
|
+
};
|
|
18248
|
+
export declare type GraphStoreCreateComponentImpactedByIncidentRelationshipInput = {
|
|
18249
|
+
from: Scalars['ID']['input'];
|
|
18250
|
+
objectMetadata?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentRelationshipObjectMetadataInput>;
|
|
18251
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
18252
|
+
to: Scalars['ID']['input'];
|
|
18253
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18254
|
+
};
|
|
18255
|
+
export declare type GraphStoreCreateComponentImpactedByIncidentRelationshipObjectMetadataInput = {
|
|
18256
|
+
affectedServiceAris?: InputMaybe<Scalars['String']['input']>;
|
|
18257
|
+
assigneeAri?: InputMaybe<Scalars['String']['input']>;
|
|
18258
|
+
majorIncident?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18259
|
+
priority?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentJiraIncidentPriorityInput>;
|
|
18260
|
+
reporterAri?: InputMaybe<Scalars['String']['input']>;
|
|
18261
|
+
status?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentJiraIncidentStatusInput>;
|
|
18262
|
+
};
|
|
18367
18263
|
export declare type GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
18368
18264
|
relationships: Array<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
18369
18265
|
};
|
|
@@ -18518,6 +18414,20 @@ export declare type GraphStoreCreateProjectDocumentationSpaceRelationshipInput =
|
|
|
18518
18414
|
to: Scalars['ID']['input'];
|
|
18519
18415
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18520
18416
|
};
|
|
18417
|
+
export declare type GraphStoreCreateProjectHasRelatedWorkWithProjectInput = {
|
|
18418
|
+
relationships: Array<GraphStoreCreateProjectHasRelatedWorkWithProjectRelationshipInput>;
|
|
18419
|
+
};
|
|
18420
|
+
export declare type GraphStoreCreateProjectHasRelatedWorkWithProjectPayload = Payload & {
|
|
18421
|
+
__typename?: 'GraphStoreCreateProjectHasRelatedWorkWithProjectPayload';
|
|
18422
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18423
|
+
success: Scalars['Boolean']['output'];
|
|
18424
|
+
};
|
|
18425
|
+
export declare type GraphStoreCreateProjectHasRelatedWorkWithProjectRelationshipInput = {
|
|
18426
|
+
from: Scalars['ID']['input'];
|
|
18427
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
18428
|
+
to: Scalars['ID']['input'];
|
|
18429
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18430
|
+
};
|
|
18521
18431
|
export declare type GraphStoreCreateProjectHasSharedVersionWithInput = {
|
|
18522
18432
|
relationships: Array<GraphStoreCreateProjectHasSharedVersionWithRelationshipInput>;
|
|
18523
18433
|
};
|
|
@@ -18658,6 +18568,18 @@ export declare type GraphStoreDateFilterInput = {
|
|
|
18658
18568
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18659
18569
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18660
18570
|
};
|
|
18571
|
+
export declare type GraphStoreDeleteComponentImpactedByIncidentInput = {
|
|
18572
|
+
relationships: Array<GraphStoreDeleteComponentImpactedByIncidentRelationshipInput>;
|
|
18573
|
+
};
|
|
18574
|
+
export declare type GraphStoreDeleteComponentImpactedByIncidentPayload = Payload & {
|
|
18575
|
+
__typename?: 'GraphStoreDeleteComponentImpactedByIncidentPayload';
|
|
18576
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18577
|
+
success: Scalars['Boolean']['output'];
|
|
18578
|
+
};
|
|
18579
|
+
export declare type GraphStoreDeleteComponentImpactedByIncidentRelationshipInput = {
|
|
18580
|
+
from: Scalars['ID']['input'];
|
|
18581
|
+
to: Scalars['ID']['input'];
|
|
18582
|
+
};
|
|
18661
18583
|
export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
18662
18584
|
relationships: Array<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
18663
18585
|
};
|
|
@@ -18790,6 +18712,18 @@ export declare type GraphStoreDeleteProjectDocumentationSpaceRelationshipInput =
|
|
|
18790
18712
|
from: Scalars['ID']['input'];
|
|
18791
18713
|
to: Scalars['ID']['input'];
|
|
18792
18714
|
};
|
|
18715
|
+
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectInput = {
|
|
18716
|
+
relationships: Array<GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationshipInput>;
|
|
18717
|
+
};
|
|
18718
|
+
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload = Payload & {
|
|
18719
|
+
__typename?: 'GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload';
|
|
18720
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18721
|
+
success: Scalars['Boolean']['output'];
|
|
18722
|
+
};
|
|
18723
|
+
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationshipInput = {
|
|
18724
|
+
from: Scalars['ID']['input'];
|
|
18725
|
+
to: Scalars['ID']['input'];
|
|
18726
|
+
};
|
|
18793
18727
|
export declare type GraphStoreDeleteProjectHasSharedVersionWithInput = {
|
|
18794
18728
|
relationships: Array<GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput>;
|
|
18795
18729
|
};
|
|
@@ -22361,6 +22295,7 @@ export declare type GraphStoreLongFilterInput = {
|
|
|
22361
22295
|
};
|
|
22362
22296
|
export declare type GraphStoreMutation = {
|
|
22363
22297
|
__typename?: 'GraphStoreMutation';
|
|
22298
|
+
createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
|
|
22364
22299
|
createIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
22365
22300
|
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
22366
22301
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
@@ -22372,6 +22307,7 @@ export declare type GraphStoreMutation = {
|
|
|
22372
22307
|
createProjectDocumentationEntity?: Maybe<GraphStoreCreateProjectDocumentationEntityPayload>;
|
|
22373
22308
|
createProjectDocumentationPage?: Maybe<GraphStoreCreateProjectDocumentationPagePayload>;
|
|
22374
22309
|
createProjectDocumentationSpace?: Maybe<GraphStoreCreateProjectDocumentationSpacePayload>;
|
|
22310
|
+
createProjectHasRelatedWorkWithProject?: Maybe<GraphStoreCreateProjectHasRelatedWorkWithProjectPayload>;
|
|
22375
22311
|
createProjectHasSharedVersionWith?: Maybe<GraphStoreCreateProjectHasSharedVersionWithPayload>;
|
|
22376
22312
|
createProjectHasVersion?: Maybe<GraphStoreCreateProjectHasVersionPayload>;
|
|
22377
22313
|
createSprintRetrospectivePage?: Maybe<GraphStoreCreateSprintRetrospectivePagePayload>;
|
|
@@ -22379,6 +22315,7 @@ export declare type GraphStoreMutation = {
|
|
|
22379
22315
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
22380
22316
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
22381
22317
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
22318
|
+
deleteComponentImpactedByIncident?: Maybe<GraphStoreDeleteComponentImpactedByIncidentPayload>;
|
|
22382
22319
|
deleteIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
22383
22320
|
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
22384
22321
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
@@ -22390,6 +22327,7 @@ export declare type GraphStoreMutation = {
|
|
|
22390
22327
|
deleteProjectDocumentationEntity?: Maybe<GraphStoreDeleteProjectDocumentationEntityPayload>;
|
|
22391
22328
|
deleteProjectDocumentationPage?: Maybe<GraphStoreDeleteProjectDocumentationPagePayload>;
|
|
22392
22329
|
deleteProjectDocumentationSpace?: Maybe<GraphStoreDeleteProjectDocumentationSpacePayload>;
|
|
22330
|
+
deleteProjectHasRelatedWorkWithProject?: Maybe<GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload>;
|
|
22393
22331
|
deleteProjectHasSharedVersionWith?: Maybe<GraphStoreDeleteProjectHasSharedVersionWithPayload>;
|
|
22394
22332
|
deleteProjectHasVersion?: Maybe<GraphStoreDeleteProjectHasVersionPayload>;
|
|
22395
22333
|
deleteSprintRetrospectivePage?: Maybe<GraphStoreDeleteSprintRetrospectivePagePayload>;
|
|
@@ -22398,6 +22336,9 @@ export declare type GraphStoreMutation = {
|
|
|
22398
22336
|
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
22399
22337
|
deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
|
|
22400
22338
|
};
|
|
22339
|
+
export declare type GraphStoreMutationCreateComponentImpactedByIncidentArgs = {
|
|
22340
|
+
input?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentInput>;
|
|
22341
|
+
};
|
|
22401
22342
|
export declare type GraphStoreMutationCreateIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
22402
22343
|
input?: InputMaybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
22403
22344
|
};
|
|
@@ -22431,6 +22372,9 @@ export declare type GraphStoreMutationCreateProjectDocumentationPageArgs = {
|
|
|
22431
22372
|
export declare type GraphStoreMutationCreateProjectDocumentationSpaceArgs = {
|
|
22432
22373
|
input?: InputMaybe<GraphStoreCreateProjectDocumentationSpaceInput>;
|
|
22433
22374
|
};
|
|
22375
|
+
export declare type GraphStoreMutationCreateProjectHasRelatedWorkWithProjectArgs = {
|
|
22376
|
+
input?: InputMaybe<GraphStoreCreateProjectHasRelatedWorkWithProjectInput>;
|
|
22377
|
+
};
|
|
22434
22378
|
export declare type GraphStoreMutationCreateProjectHasSharedVersionWithArgs = {
|
|
22435
22379
|
input?: InputMaybe<GraphStoreCreateProjectHasSharedVersionWithInput>;
|
|
22436
22380
|
};
|
|
@@ -22452,6 +22396,9 @@ export declare type GraphStoreMutationCreateVersionUserAssociatedFeatureFlagArgs
|
|
|
22452
22396
|
export declare type GraphStoreMutationCreateVulnerabilityAssociatedIssueArgs = {
|
|
22453
22397
|
input?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueInput>;
|
|
22454
22398
|
};
|
|
22399
|
+
export declare type GraphStoreMutationDeleteComponentImpactedByIncidentArgs = {
|
|
22400
|
+
input?: InputMaybe<GraphStoreDeleteComponentImpactedByIncidentInput>;
|
|
22401
|
+
};
|
|
22455
22402
|
export declare type GraphStoreMutationDeleteIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
22456
22403
|
input?: InputMaybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
22457
22404
|
};
|
|
@@ -22485,6 +22432,9 @@ export declare type GraphStoreMutationDeleteProjectDocumentationPageArgs = {
|
|
|
22485
22432
|
export declare type GraphStoreMutationDeleteProjectDocumentationSpaceArgs = {
|
|
22486
22433
|
input?: InputMaybe<GraphStoreDeleteProjectDocumentationSpaceInput>;
|
|
22487
22434
|
};
|
|
22435
|
+
export declare type GraphStoreMutationDeleteProjectHasRelatedWorkWithProjectArgs = {
|
|
22436
|
+
input?: InputMaybe<GraphStoreDeleteProjectHasRelatedWorkWithProjectInput>;
|
|
22437
|
+
};
|
|
22488
22438
|
export declare type GraphStoreMutationDeleteProjectHasSharedVersionWithArgs = {
|
|
22489
22439
|
input?: InputMaybe<GraphStoreDeleteProjectHasSharedVersionWithInput>;
|
|
22490
22440
|
};
|
|
@@ -24328,6 +24278,36 @@ export declare type GraphStoreSimplifiedProjectHasIssueInverseEdge = {
|
|
|
24328
24278
|
};
|
|
24329
24279
|
export declare type GraphStoreSimplifiedProjectHasIssueInverseUnion = JiraProject;
|
|
24330
24280
|
export declare type GraphStoreSimplifiedProjectHasIssueUnion = JiraIssue;
|
|
24281
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectConnection = HasPageInfo & HasTotal & {
|
|
24282
|
+
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectConnection';
|
|
24283
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge>>>;
|
|
24284
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
24285
|
+
pageInfo: PageInfo;
|
|
24286
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
24287
|
+
};
|
|
24288
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge = {
|
|
24289
|
+
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge';
|
|
24290
|
+
createdAt: Scalars['DateTime']['output'];
|
|
24291
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
24292
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
24293
|
+
node?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectUnion>;
|
|
24294
|
+
};
|
|
24295
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
24296
|
+
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseConnection';
|
|
24297
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseEdge>>>;
|
|
24298
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
24299
|
+
pageInfo: PageInfo;
|
|
24300
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
24301
|
+
};
|
|
24302
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseEdge = {
|
|
24303
|
+
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseEdge';
|
|
24304
|
+
createdAt: Scalars['DateTime']['output'];
|
|
24305
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
24306
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
24307
|
+
node?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseUnion>;
|
|
24308
|
+
};
|
|
24309
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseUnion = JiraProject;
|
|
24310
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectUnion = JiraProject;
|
|
24331
24311
|
export declare type GraphStoreSimplifiedProjectHasSharedVersionWithConnection = HasPageInfo & HasTotal & {
|
|
24332
24312
|
__typename?: 'GraphStoreSimplifiedProjectHasSharedVersionWithConnection';
|
|
24333
24313
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithEdge>>>;
|
|
@@ -26166,17 +26146,26 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
26166
26146
|
header?: Maybe<Scalars['String']['output']>;
|
|
26167
26147
|
message?: Maybe<Scalars['String']['output']>;
|
|
26168
26148
|
};
|
|
26169
|
-
export declare type
|
|
26149
|
+
export declare type HelpLayoutAnnouncementInput = {
|
|
26150
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26151
|
+
};
|
|
26152
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
26170
26153
|
export declare type HelpLayoutAtomicElementInput = {
|
|
26154
|
+
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
26171
26155
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
26172
26156
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
26157
|
+
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
26173
26158
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
26174
26159
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
26160
|
+
portalsListInput?: InputMaybe<HelpLayoutPortalsListInput>;
|
|
26175
26161
|
searchConfigInput?: InputMaybe<HelpLayoutSearchConfigInput>;
|
|
26162
|
+
suggestedRequestFormsListInput?: InputMaybe<HelpLayoutSuggestedRequestFormsListInput>;
|
|
26163
|
+
topicListInput?: InputMaybe<HelpLayoutTopicsListInput>;
|
|
26176
26164
|
};
|
|
26177
26165
|
export declare enum HelpLayoutAtomicElementKey {
|
|
26178
26166
|
Announcement = "ANNOUNCEMENT",
|
|
26179
26167
|
Heading = "HEADING",
|
|
26168
|
+
Hero = "HERO",
|
|
26180
26169
|
Image = "IMAGE",
|
|
26181
26170
|
Paragraph = "PARAGRAPH",
|
|
26182
26171
|
PortalsList = "PORTALS_LIST",
|
|
@@ -26211,7 +26200,6 @@ export declare type HelpLayoutCompositeElement = {
|
|
|
26211
26200
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26212
26201
|
};
|
|
26213
26202
|
export declare enum HelpLayoutCompositeElementKey {
|
|
26214
|
-
Hero = "HERO",
|
|
26215
26203
|
LinkCard = "LINK_CARD"
|
|
26216
26204
|
}
|
|
26217
26205
|
export declare type HelpLayoutCompositeElementType = HelpLayoutElementType & {
|
|
@@ -26238,12 +26226,17 @@ export declare enum HelpLayoutElementCategory {
|
|
|
26238
26226
|
Navigation = "NAVIGATION"
|
|
26239
26227
|
}
|
|
26240
26228
|
export declare type HelpLayoutElementInput = {
|
|
26229
|
+
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
26241
26230
|
elementTypeKey: HelpLayoutElementKey;
|
|
26242
26231
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
26232
|
+
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
26243
26233
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
26244
26234
|
linkCardInput?: InputMaybe<HelpLayoutLinkCardInput>;
|
|
26245
26235
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
26236
|
+
portalsListInput?: InputMaybe<HelpLayoutPortalsListInput>;
|
|
26246
26237
|
searchConfigInput?: InputMaybe<HelpLayoutSearchConfigInput>;
|
|
26238
|
+
suggestedRequestFormsListInput?: InputMaybe<HelpLayoutSuggestedRequestFormsListInput>;
|
|
26239
|
+
topicListInput?: InputMaybe<HelpLayoutTopicsListInput>;
|
|
26247
26240
|
};
|
|
26248
26241
|
export declare enum HelpLayoutElementKey {
|
|
26249
26242
|
Announcement = "ANNOUNCEMENT",
|
|
@@ -26287,13 +26280,21 @@ export declare enum HelpLayoutHeadingType {
|
|
|
26287
26280
|
H5 = "h5",
|
|
26288
26281
|
H6 = "h6"
|
|
26289
26282
|
}
|
|
26290
|
-
export declare type HelpLayoutHeroElement =
|
|
26283
|
+
export declare type HelpLayoutHeroElement = HelpLayoutVisualEntity & Node & {
|
|
26291
26284
|
__typename?: 'HelpLayoutHeroElement';
|
|
26292
|
-
|
|
26293
|
-
elementType?: Maybe<
|
|
26285
|
+
data?: Maybe<HelpLayoutHeroElementData>;
|
|
26286
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
26294
26287
|
id: Scalars['ID']['output'];
|
|
26295
26288
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26296
26289
|
};
|
|
26290
|
+
export declare type HelpLayoutHeroElementData = {
|
|
26291
|
+
__typename?: 'HelpLayoutHeroElementData';
|
|
26292
|
+
homePageTitle?: Maybe<Scalars['String']['output']>;
|
|
26293
|
+
useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
|
|
26294
|
+
};
|
|
26295
|
+
export declare type HelpLayoutHeroElementInput = {
|
|
26296
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26297
|
+
};
|
|
26297
26298
|
export declare enum HelpLayoutHorizontalAlignment {
|
|
26298
26299
|
Center = "CENTER",
|
|
26299
26300
|
Left = "LEFT",
|
|
@@ -26406,6 +26407,9 @@ export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node
|
|
|
26406
26407
|
id: Scalars['ID']['output'];
|
|
26407
26408
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26408
26409
|
};
|
|
26410
|
+
export declare type HelpLayoutPortalsListInput = {
|
|
26411
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26412
|
+
};
|
|
26409
26413
|
export declare type HelpLayoutQueryApi = {
|
|
26410
26414
|
__typename?: 'HelpLayoutQueryApi';
|
|
26411
26415
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
@@ -26499,6 +26503,9 @@ export declare type HelpLayoutSuggestedRequestFormsListElementData = {
|
|
|
26499
26503
|
__typename?: 'HelpLayoutSuggestedRequestFormsListElementData';
|
|
26500
26504
|
suggestedRequestTypes?: Maybe<Array<HelpLayoutRequestForm>>;
|
|
26501
26505
|
};
|
|
26506
|
+
export declare type HelpLayoutSuggestedRequestFormsListInput = {
|
|
26507
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26508
|
+
};
|
|
26502
26509
|
export declare type HelpLayoutTopic = {
|
|
26503
26510
|
__typename?: 'HelpLayoutTopic';
|
|
26504
26511
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -26523,6 +26530,9 @@ export declare type HelpLayoutTopicsListElementData = {
|
|
|
26523
26530
|
__typename?: 'HelpLayoutTopicsListElementData';
|
|
26524
26531
|
topics?: Maybe<Array<HelpLayoutTopic>>;
|
|
26525
26532
|
};
|
|
26533
|
+
export declare type HelpLayoutTopicsListInput = {
|
|
26534
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26535
|
+
};
|
|
26526
26536
|
export declare type HelpLayoutUpdateInput = {
|
|
26527
26537
|
layoutId: Scalars['ID']['input'];
|
|
26528
26538
|
sections: Array<HelpLayoutSectionInput>;
|
|
@@ -26813,7 +26823,7 @@ export declare type HelpObjectStoreSearchInput = {
|
|
|
26813
26823
|
};
|
|
26814
26824
|
export declare type HelpObjectStoreSearchMetaData = {
|
|
26815
26825
|
__typename?: 'HelpObjectStoreSearchMetaData';
|
|
26816
|
-
searchScore: Scalars['
|
|
26826
|
+
searchScore: Scalars['Float']['output'];
|
|
26817
26827
|
};
|
|
26818
26828
|
export declare type HelpObjectStoreSearchResult = Node & {
|
|
26819
26829
|
__typename?: 'HelpObjectStoreSearchResult';
|
|
@@ -27207,6 +27217,7 @@ export declare type InsightsGithubOnboardingActionInput = {
|
|
|
27207
27217
|
};
|
|
27208
27218
|
export declare type InsightsGithubOnboardingActionResponse = Payload & {
|
|
27209
27219
|
__typename?: 'InsightsGithubOnboardingActionResponse';
|
|
27220
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
27210
27221
|
errors?: Maybe<Array<MutationError>>;
|
|
27211
27222
|
success: Scalars['Boolean']['output'];
|
|
27212
27223
|
};
|
|
@@ -27217,6 +27228,7 @@ export declare type InsightsGithubOnboardingDetails = {
|
|
|
27217
27228
|
};
|
|
27218
27229
|
export declare type InsightsMutation = {
|
|
27219
27230
|
__typename?: 'InsightsMutation';
|
|
27231
|
+
completeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27220
27232
|
purgeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27221
27233
|
purgeUserActionStateForCurrentUser?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
27222
27234
|
removeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
@@ -27224,6 +27236,9 @@ export declare type InsightsMutation = {
|
|
|
27224
27236
|
snoozeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27225
27237
|
snoozeTask?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
27226
27238
|
};
|
|
27239
|
+
export declare type InsightsMutationCompleteOnboardingArgs = {
|
|
27240
|
+
input: InsightsGithubOnboardingActionInput;
|
|
27241
|
+
};
|
|
27227
27242
|
export declare type InsightsMutationPurgeOnboardingArgs = {
|
|
27228
27243
|
input: InsightsGithubOnboardingActionInput;
|
|
27229
27244
|
};
|
|
@@ -28051,12 +28066,38 @@ export declare type JiraAppConfigStateEdge = {
|
|
|
28051
28066
|
cursor: Scalars['String']['output'];
|
|
28052
28067
|
node?: Maybe<JiraAppConfigState>;
|
|
28053
28068
|
};
|
|
28054
|
-
export declare type
|
|
28069
|
+
export declare type JiraAppNavigationConfig = {
|
|
28070
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28071
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
28072
|
+
links?: Maybe<Array<Maybe<JiraAppNavigationConfig>>>;
|
|
28073
|
+
section?: Maybe<Scalars['Boolean']['output']>;
|
|
28074
|
+
separator?: Maybe<Scalars['Boolean']['output']>;
|
|
28075
|
+
styleClass?: Maybe<Scalars['String']['output']>;
|
|
28076
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
28077
|
+
};
|
|
28078
|
+
export declare type JiraAppNavigationItem = JiraAppNavigationConfig & JiraNavigationItem & Node & {
|
|
28055
28079
|
__typename?: 'JiraAppNavigationItem';
|
|
28080
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
28081
|
+
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
28056
28082
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28057
28083
|
id: Scalars['ID']['output'];
|
|
28058
28084
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
28059
28085
|
label?: Maybe<Scalars['String']['output']>;
|
|
28086
|
+
links?: Maybe<Array<Maybe<JiraAppNavigationItemNestedLink>>>;
|
|
28087
|
+
section?: Maybe<Scalars['Boolean']['output']>;
|
|
28088
|
+
separator?: Maybe<Scalars['Boolean']['output']>;
|
|
28089
|
+
styleClass?: Maybe<Scalars['String']['output']>;
|
|
28090
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
28091
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
28092
|
+
};
|
|
28093
|
+
export declare type JiraAppNavigationItemNestedLink = JiraAppNavigationConfig & {
|
|
28094
|
+
__typename?: 'JiraAppNavigationItemNestedLink';
|
|
28095
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28096
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
28097
|
+
links?: Maybe<Array<Maybe<JiraAppNavigationItemNestedLink>>>;
|
|
28098
|
+
section?: Maybe<Scalars['Boolean']['output']>;
|
|
28099
|
+
separator?: Maybe<Scalars['Boolean']['output']>;
|
|
28100
|
+
styleClass?: Maybe<Scalars['String']['output']>;
|
|
28060
28101
|
url?: Maybe<Scalars['String']['output']>;
|
|
28061
28102
|
};
|
|
28062
28103
|
export declare type JiraAppUiModifications = {
|
|
@@ -28499,6 +28540,17 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
28499
28540
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
28500
28541
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
28501
28542
|
};
|
|
28543
|
+
export declare type JiraBulkCreateIssueLinksInput = {
|
|
28544
|
+
issueLinkTypeId: Scalars['ID']['input'];
|
|
28545
|
+
sourceIssueId: Scalars['ID']['input'];
|
|
28546
|
+
targetIssueIds: Array<Scalars['ID']['input']>;
|
|
28547
|
+
};
|
|
28548
|
+
export declare type JiraBulkCreateIssueLinksPayload = Payload & {
|
|
28549
|
+
__typename?: 'JiraBulkCreateIssueLinksPayload';
|
|
28550
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28551
|
+
issueLinkEdges?: Maybe<Array<JiraIssueLinkEdge>>;
|
|
28552
|
+
success: Scalars['Boolean']['output'];
|
|
28553
|
+
};
|
|
28502
28554
|
export declare type JiraBulkEditField = Node & {
|
|
28503
28555
|
__typename?: 'JiraBulkEditField';
|
|
28504
28556
|
bulkEditMultiSelectFieldOptions?: Maybe<Array<Maybe<JiraBulkEditMultiSelectFieldOptions>>>;
|
|
@@ -28678,6 +28730,7 @@ export declare type JiraCalendarUnscheduledIssuesArgs = {
|
|
|
28678
28730
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28679
28731
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
28680
28732
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28733
|
+
input?: InputMaybe<JiraCalendarIssuesInput>;
|
|
28681
28734
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28682
28735
|
};
|
|
28683
28736
|
export declare type JiraCalendarVersionsArgs = {
|
|
@@ -29384,6 +29437,13 @@ export declare type JiraConfigurableNavigationItemInput = {
|
|
|
29384
29437
|
isVisible: Scalars['Boolean']['input'];
|
|
29385
29438
|
menuId: Scalars['String']['input'];
|
|
29386
29439
|
};
|
|
29440
|
+
export declare type JiraConfiguratorIssueTypeScheme = {
|
|
29441
|
+
__typename?: 'JiraConfiguratorIssueTypeScheme';
|
|
29442
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
29443
|
+
id: Scalars['ID']['output'];
|
|
29444
|
+
issueTypes?: Maybe<Array<JiraIssueType>>;
|
|
29445
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
29446
|
+
};
|
|
29387
29447
|
export declare type JiraConfluenceRemoteIssueLink = {
|
|
29388
29448
|
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
29389
29449
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -29519,7 +29579,7 @@ export declare enum JiraContactOrgAdminToEnableAtlassianIntelligenceState {
|
|
|
29519
29579
|
}
|
|
29520
29580
|
export declare type JiraCreateAgileReleaseTrainInput = {
|
|
29521
29581
|
cloudId: Scalars['ID']['input'];
|
|
29522
|
-
configurationId
|
|
29582
|
+
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
29523
29583
|
largeSolutionProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
29524
29584
|
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
29525
29585
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -29558,7 +29618,7 @@ export declare type JiraCreateCustomFilterPayload = Payload & {
|
|
|
29558
29618
|
};
|
|
29559
29619
|
export declare type JiraCreateLargeSolutionInput = {
|
|
29560
29620
|
cloudId: Scalars['ID']['input'];
|
|
29561
|
-
configurationId
|
|
29621
|
+
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
29562
29622
|
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
29563
29623
|
};
|
|
29564
29624
|
export declare type JiraCreateLargeSolutionPayload = Payload & {
|
|
@@ -29933,6 +29993,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
29933
29993
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
29934
29994
|
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
29935
29995
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
29996
|
+
resumeAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
29936
29997
|
retryAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
29937
29998
|
saveAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
29938
29999
|
setProjectSelectedDeploymentAppsProperty?: Maybe<JiraSetProjectSelectedDeploymentAppsPropertyPayload>;
|
|
@@ -29979,6 +30040,10 @@ export declare type JiraDevOpsMutationRemoveJiraBitbucketWorkspaceConnectionArgs
|
|
|
29979
30040
|
cloudId: Scalars['ID']['input'];
|
|
29980
30041
|
input: JiraRemoveJiraBitbucketWorkspaceConnectionInput;
|
|
29981
30042
|
};
|
|
30043
|
+
export declare type JiraDevOpsMutationResumeAutodevJobArgs = {
|
|
30044
|
+
issueAri: Scalars['ID']['input'];
|
|
30045
|
+
jobId: Scalars['ID']['input'];
|
|
30046
|
+
};
|
|
29982
30047
|
export declare type JiraDevOpsMutationRetryAutodevJobArgs = {
|
|
29983
30048
|
issueAri: Scalars['ID']['input'];
|
|
29984
30049
|
jobId: Scalars['ID']['input'];
|
|
@@ -30115,6 +30180,19 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
30115
30180
|
errors?: Maybe<Array<MutationError>>;
|
|
30116
30181
|
success: Scalars['Boolean']['output'];
|
|
30117
30182
|
};
|
|
30183
|
+
export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
30184
|
+
__typename?: 'JiraDurationField';
|
|
30185
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
30186
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
30187
|
+
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
30188
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
30189
|
+
fieldId: Scalars['String']['output'];
|
|
30190
|
+
id: Scalars['ID']['output'];
|
|
30191
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
30192
|
+
name: Scalars['String']['output'];
|
|
30193
|
+
type: Scalars['String']['output'];
|
|
30194
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
30195
|
+
};
|
|
30118
30196
|
export declare type JiraDurationFieldInput = {
|
|
30119
30197
|
originalEstimateField?: InputMaybe<Scalars['String']['input']>;
|
|
30120
30198
|
};
|
|
@@ -30247,7 +30325,8 @@ export declare type JiraFavouriteEdge = {
|
|
|
30247
30325
|
node?: Maybe<JiraFavourite>;
|
|
30248
30326
|
};
|
|
30249
30327
|
export declare type JiraFavouriteFilter = {
|
|
30250
|
-
type
|
|
30328
|
+
type?: InputMaybe<JiraFavouriteType>;
|
|
30329
|
+
types?: InputMaybe<Array<JiraFavouriteType>>;
|
|
30251
30330
|
};
|
|
30252
30331
|
export declare enum JiraFavouriteType {
|
|
30253
30332
|
Board = "BOARD",
|
|
@@ -30308,6 +30387,12 @@ export declare type JiraFieldType = {
|
|
|
30308
30387
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
30309
30388
|
name: Scalars['String']['output'];
|
|
30310
30389
|
};
|
|
30390
|
+
export declare type JiraFieldValidationMutationErrorExtension = MutationErrorExtension & {
|
|
30391
|
+
__typename?: 'JiraFieldValidationMutationErrorExtension';
|
|
30392
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
30393
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
30394
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
30395
|
+
};
|
|
30311
30396
|
export declare type JiraFilter = {
|
|
30312
30397
|
filterId: Scalars['String']['output'];
|
|
30313
30398
|
filterUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -30666,6 +30751,55 @@ export declare type JiraGlobalTimeTrackingSettings = {
|
|
|
30666
30751
|
hoursPerDay: Scalars['Float']['output'];
|
|
30667
30752
|
isTimeTrackingEnabled: Scalars['Boolean']['output'];
|
|
30668
30753
|
};
|
|
30754
|
+
export declare type JiraGoal = Node & {
|
|
30755
|
+
__typename?: 'JiraGoal';
|
|
30756
|
+
id: Scalars['ID']['output'];
|
|
30757
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
30758
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
30759
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
30760
|
+
status?: Maybe<JiraGoalStatus>;
|
|
30761
|
+
targetDate?: Maybe<Scalars['Date']['output']>;
|
|
30762
|
+
};
|
|
30763
|
+
export declare type JiraGoalConnection = {
|
|
30764
|
+
__typename?: 'JiraGoalConnection';
|
|
30765
|
+
edges?: Maybe<Array<Maybe<JiraGoalEdge>>>;
|
|
30766
|
+
errors?: Maybe<Array<QueryError>>;
|
|
30767
|
+
pageInfo: PageInfo;
|
|
30768
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
30769
|
+
};
|
|
30770
|
+
export declare type JiraGoalEdge = {
|
|
30771
|
+
__typename?: 'JiraGoalEdge';
|
|
30772
|
+
cursor: Scalars['String']['output'];
|
|
30773
|
+
node?: Maybe<JiraGoal>;
|
|
30774
|
+
};
|
|
30775
|
+
export declare enum JiraGoalStatus {
|
|
30776
|
+
AtRisk = "AT_RISK",
|
|
30777
|
+
Cancelled = "CANCELLED",
|
|
30778
|
+
Completed = "COMPLETED",
|
|
30779
|
+
OffTrack = "OFF_TRACK",
|
|
30780
|
+
OnTrack = "ON_TRACK",
|
|
30781
|
+
Paused = "PAUSED",
|
|
30782
|
+
Pending = "PENDING"
|
|
30783
|
+
}
|
|
30784
|
+
export declare type JiraGoalsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
30785
|
+
__typename?: 'JiraGoalsField';
|
|
30786
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
30787
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
30788
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
30789
|
+
fieldId: Scalars['String']['output'];
|
|
30790
|
+
id: Scalars['ID']['output'];
|
|
30791
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
30792
|
+
name: Scalars['String']['output'];
|
|
30793
|
+
selectedGoals?: Maybe<JiraGoalConnection>;
|
|
30794
|
+
type: Scalars['String']['output'];
|
|
30795
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
30796
|
+
};
|
|
30797
|
+
export declare type JiraGoalsFieldSelectedGoalsArgs = {
|
|
30798
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30799
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
30800
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30801
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30802
|
+
};
|
|
30669
30803
|
export declare type JiraGrantTypeKey = {
|
|
30670
30804
|
__typename?: 'JiraGrantTypeKey';
|
|
30671
30805
|
key: JiraGrantTypeKeyEnum;
|
|
@@ -30807,17 +30941,21 @@ export declare type JiraInvalidSyntaxError = {
|
|
|
30807
30941
|
};
|
|
30808
30942
|
export declare type JiraIssue = Node & {
|
|
30809
30943
|
__typename?: 'JiraIssue';
|
|
30810
|
-
|
|
30944
|
+
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
30811
30945
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
30812
30946
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
30813
30947
|
childIssues?: Maybe<JiraChildIssues>;
|
|
30948
|
+
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
30814
30949
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
30815
30950
|
comments?: Maybe<JiraCommentConnection>;
|
|
30951
|
+
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
30816
30952
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
30953
|
+
descriptionField?: Maybe<JiraRichTextField>;
|
|
30954
|
+
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
30817
30955
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
30818
30956
|
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
30819
30957
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
30820
|
-
|
|
30958
|
+
dueDateField?: Maybe<JiraDatePickerField>;
|
|
30821
30959
|
errorRetrievingData?: Maybe<Scalars['Boolean']['output']>;
|
|
30822
30960
|
fieldByIdOrAlias?: Maybe<JiraIssueField>;
|
|
30823
30961
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
@@ -30838,6 +30976,7 @@ export declare type JiraIssue = Node & {
|
|
|
30838
30976
|
issueId: Scalars['String']['output'];
|
|
30839
30977
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
30840
30978
|
issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
|
|
30979
|
+
issueTypeField?: Maybe<JiraIssueTypeField>;
|
|
30841
30980
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
30842
30981
|
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
30843
30982
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -30845,13 +30984,18 @@ export declare type JiraIssue = Node & {
|
|
|
30845
30984
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
30846
30985
|
linkedDesigns?: Maybe<GraphJiraDesignConnection>;
|
|
30847
30986
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
30987
|
+
priorityField?: Maybe<JiraPriorityField>;
|
|
30988
|
+
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
30989
|
+
resolutionField?: Maybe<JiraResolutionField>;
|
|
30848
30990
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
30849
30991
|
shadowFieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
30850
30992
|
smartSummary?: Maybe<JiraAdf>;
|
|
30851
|
-
|
|
30993
|
+
startDateField?: Maybe<JiraDatePickerField>;
|
|
30994
|
+
statusField?: Maybe<JiraStatusField>;
|
|
30852
30995
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
30853
30996
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
30854
30997
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
30998
|
+
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
30855
30999
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
30856
31000
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
30857
31001
|
};
|
|
@@ -30862,6 +31006,12 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
30862
31006
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30863
31007
|
sortBy?: InputMaybe<JiraAttachmentSortInput>;
|
|
30864
31008
|
};
|
|
31009
|
+
export declare type JiraIssueCommandPaletteActionsArgs = {
|
|
31010
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31011
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
31012
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31013
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31014
|
+
};
|
|
30865
31015
|
export declare type JiraIssueCommandPaletteFieldsArgs = {
|
|
30866
31016
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30867
31017
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30874,8 +31024,12 @@ export declare type JiraIssueCommentsArgs = {
|
|
|
30874
31024
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30875
31025
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30876
31026
|
};
|
|
31027
|
+
export declare type JiraIssueDesignsArgs = {
|
|
31028
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31029
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31030
|
+
};
|
|
30877
31031
|
export declare type JiraIssueFieldByIdOrAliasArgs = {
|
|
30878
|
-
|
|
31032
|
+
idOrAlias?: InputMaybe<Scalars['String']['input']>;
|
|
30879
31033
|
ignoreMissingField?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30880
31034
|
};
|
|
30881
31035
|
export declare type JiraIssueFieldSetsArgs = {
|
|
@@ -30933,6 +31087,12 @@ export declare type JiraIssueLinkedDesignsArgs = {
|
|
|
30933
31087
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30934
31088
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30935
31089
|
};
|
|
31090
|
+
export declare type JiraIssueProjectRoleCommentVisibilitiesArgs = {
|
|
31091
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31092
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
31093
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31094
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31095
|
+
};
|
|
30936
31096
|
export declare type JiraIssueShadowFieldSetsForIssueSearchViewArgs = {
|
|
30937
31097
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30938
31098
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31035,6 +31195,28 @@ export declare type JiraIssueBulkOperationsMetadata = {
|
|
|
31035
31195
|
__typename?: 'JiraIssueBulkOperationsMetadata';
|
|
31036
31196
|
maxNumberOfIssues?: Maybe<Scalars['Long']['output']>;
|
|
31037
31197
|
};
|
|
31198
|
+
export declare type JiraIssueCommandPaletteAction = JiraIssueCommandPaletteUpdateFieldAction | JiraIssueGenericCommandPaletteAction;
|
|
31199
|
+
export declare type JiraIssueCommandPaletteActionConnection = {
|
|
31200
|
+
__typename?: 'JiraIssueCommandPaletteActionConnection';
|
|
31201
|
+
edges?: Maybe<Array<Maybe<JiraIssueCommandPaletteActionEdge>>>;
|
|
31202
|
+
pageInfo: PageInfo;
|
|
31203
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
31204
|
+
};
|
|
31205
|
+
export declare type JiraIssueCommandPaletteActionConnectionResult = JiraIssueCommandPaletteActionConnection | QueryError;
|
|
31206
|
+
export declare type JiraIssueCommandPaletteActionEdge = {
|
|
31207
|
+
__typename?: 'JiraIssueCommandPaletteActionEdge';
|
|
31208
|
+
cursor: Scalars['String']['output'];
|
|
31209
|
+
node?: Maybe<JiraIssueCommandPaletteAction>;
|
|
31210
|
+
};
|
|
31211
|
+
export declare type JiraIssueCommandPaletteActionUnsupportedErrorExtension = QueryErrorExtension & {
|
|
31212
|
+
__typename?: 'JiraIssueCommandPaletteActionUnsupportedErrorExtension';
|
|
31213
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
31214
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
31215
|
+
};
|
|
31216
|
+
export declare type JiraIssueCommandPaletteUpdateFieldAction = {
|
|
31217
|
+
__typename?: 'JiraIssueCommandPaletteUpdateFieldAction';
|
|
31218
|
+
field: JiraIssueField;
|
|
31219
|
+
};
|
|
31038
31220
|
export declare type JiraIssueCommitDevSummary = {
|
|
31039
31221
|
__typename?: 'JiraIssueCommitDevSummary';
|
|
31040
31222
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -31241,6 +31423,10 @@ export declare type JiraIssueFieldsInput = {
|
|
|
31241
31423
|
timeTrackingField?: InputMaybe<JiraTimeTrackingFieldInput>;
|
|
31242
31424
|
urlFields?: InputMaybe<Array<JiraUrlFieldInput>>;
|
|
31243
31425
|
};
|
|
31426
|
+
export declare type JiraIssueGenericCommandPaletteAction = {
|
|
31427
|
+
__typename?: 'JiraIssueGenericCommandPaletteAction';
|
|
31428
|
+
actionName: Scalars['String']['output'];
|
|
31429
|
+
};
|
|
31244
31430
|
export declare type JiraIssueHierarchyConfigData = {
|
|
31245
31431
|
__typename?: 'JiraIssueHierarchyConfigData';
|
|
31246
31432
|
cmpIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -31440,6 +31626,7 @@ export declare type JiraIssueLinkFieldIssueLinkConnectionArgs = {
|
|
|
31440
31626
|
export declare type JiraIssueLinkFieldIssueLinkTypeRelationsArgs = {
|
|
31441
31627
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31442
31628
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
31629
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
31443
31630
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31444
31631
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31445
31632
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31456,6 +31643,11 @@ export declare type JiraIssueLinkFieldIssuesArgs = {
|
|
|
31456
31643
|
showSubTaskParent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31457
31644
|
showSubTasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31458
31645
|
};
|
|
31646
|
+
export declare type JiraIssueLinkFieldOperationInputForIssueTransitions = {
|
|
31647
|
+
linkIssues?: InputMaybe<JiraLinkedIssuesInput>;
|
|
31648
|
+
linkType: Scalars['ID']['input'];
|
|
31649
|
+
operation: JiraAddValueFieldOperations;
|
|
31650
|
+
};
|
|
31459
31651
|
export declare type JiraIssueLinkType = Node & {
|
|
31460
31652
|
__typename?: 'JiraIssueLinkType';
|
|
31461
31653
|
id: Scalars['ID']['output'];
|
|
@@ -31741,10 +31933,20 @@ export declare type JiraIssueTransitionComment = {
|
|
|
31741
31933
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
31742
31934
|
types?: Maybe<Array<Maybe<JiraIssueTransitionCommentType>>>;
|
|
31743
31935
|
};
|
|
31936
|
+
export declare type JiraIssueTransitionCommentInput = {
|
|
31937
|
+
body: JiraAdfInput;
|
|
31938
|
+
operation: JiraAddValueFieldOperations;
|
|
31939
|
+
type?: InputMaybe<JiraIssueTransitionCommentType>;
|
|
31940
|
+
visibility?: InputMaybe<JiraIssueTransitionCommentVisibilityInput>;
|
|
31941
|
+
};
|
|
31744
31942
|
export declare enum JiraIssueTransitionCommentType {
|
|
31745
31943
|
InternalNote = "INTERNAL_NOTE",
|
|
31746
31944
|
ReplyToCustomer = "REPLY_TO_CUSTOMER"
|
|
31747
31945
|
}
|
|
31946
|
+
export declare type JiraIssueTransitionCommentVisibilityInput = {
|
|
31947
|
+
groupId?: InputMaybe<Scalars['ID']['input']>;
|
|
31948
|
+
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
31949
|
+
};
|
|
31748
31950
|
export declare type JiraIssueTransitionFieldLevelInput = {
|
|
31749
31951
|
JiraAttachmentsField?: InputMaybe<Array<JiraUpdateAttachmentFieldInput>>;
|
|
31750
31952
|
JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
|
|
@@ -31752,6 +31954,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
31752
31954
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
31753
31955
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
31754
31956
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
31957
|
+
JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
|
|
31755
31958
|
JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
|
|
31756
31959
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
31757
31960
|
JiraMultipleGroupPickerField?: InputMaybe<Array<JiraUpdateMultipleGroupPickerFieldInput>>;
|
|
@@ -31764,9 +31967,12 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
31764
31967
|
JiraRadioSelectField?: InputMaybe<Array<JiraUpdateRadioSelectFieldInput>>;
|
|
31765
31968
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
31766
31969
|
JiraRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
|
|
31970
|
+
JiraSecurityLevelField?: InputMaybe<Array<JiraUpdateSecurityLevelFieldInput>>;
|
|
31971
|
+
JiraSingleGroupPickerField?: InputMaybe<Array<JiraUpdateSingleGroupPickerFieldInput>>;
|
|
31767
31972
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
31768
31973
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
31769
31974
|
JiraSingleSelectUserPickerField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
31975
|
+
JiraSingleVersionPickerField?: InputMaybe<Array<JiraUpdateSingleVersionPickerFieldInput>>;
|
|
31770
31976
|
JiraSprintField?: InputMaybe<Array<JiraUpdateSprintFieldInput>>;
|
|
31771
31977
|
JiraTeamViewField?: InputMaybe<Array<JiraUpdateTeamFieldInput>>;
|
|
31772
31978
|
JiraTimeTrackingField?: InputMaybe<Array<JiraUpdateTimeTrackingFieldInput>>;
|
|
@@ -31831,6 +32037,7 @@ export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
31831
32037
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
31832
32038
|
issueType?: Maybe<JiraIssueType>;
|
|
31833
32039
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
32040
|
+
issueTypesForTransition?: Maybe<JiraIssueTypeConnection>;
|
|
31834
32041
|
name: Scalars['String']['output'];
|
|
31835
32042
|
type: Scalars['String']['output'];
|
|
31836
32043
|
};
|
|
@@ -31843,6 +32050,15 @@ export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
|
31843
32050
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
31844
32051
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31845
32052
|
};
|
|
32053
|
+
export declare type JiraIssueTypeFieldIssueTypesForTransitionArgs = {
|
|
32054
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32055
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
32056
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
32057
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32058
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32059
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
32060
|
+
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32061
|
+
};
|
|
31846
32062
|
export declare type JiraIssueTypeFieldOperationInput = {
|
|
31847
32063
|
id: Scalars['ID']['input'];
|
|
31848
32064
|
operation: JiraSingleValueFieldOperations;
|
|
@@ -32139,6 +32355,13 @@ export declare enum JiraJqlFunctionStatus {
|
|
|
32139
32355
|
Processing = "PROCESSING",
|
|
32140
32356
|
Unknown = "UNKNOWN"
|
|
32141
32357
|
}
|
|
32358
|
+
export declare type JiraJqlGoalsFieldValue = JiraJqlFieldValue & {
|
|
32359
|
+
__typename?: 'JiraJqlGoalsFieldValue';
|
|
32360
|
+
displayName: Scalars['String']['output'];
|
|
32361
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
32362
|
+
goal: JiraGoal;
|
|
32363
|
+
jqlTerm: Scalars['String']['output'];
|
|
32364
|
+
};
|
|
32142
32365
|
export declare type JiraJqlGroupFieldValue = JiraJqlFieldValue & {
|
|
32143
32366
|
__typename?: 'JiraJqlGroupFieldValue';
|
|
32144
32367
|
displayName: Scalars['String']['output'];
|
|
@@ -32566,6 +32789,10 @@ export declare type JiraLinkIssuesToIncidentMutationPayload = Payload & {
|
|
|
32566
32789
|
errors?: Maybe<Array<MutationError>>;
|
|
32567
32790
|
success: Scalars['Boolean']['output'];
|
|
32568
32791
|
};
|
|
32792
|
+
export declare type JiraLinkedIssuesInput = {
|
|
32793
|
+
inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
32794
|
+
outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
32795
|
+
};
|
|
32569
32796
|
export declare type JiraLongRunningTaskProgress = {
|
|
32570
32797
|
__typename?: 'JiraLongRunningTaskProgress';
|
|
32571
32798
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -32656,6 +32883,7 @@ export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFie
|
|
|
32656
32883
|
export declare type JiraMultipleGroupPickerFieldGroupsArgs = {
|
|
32657
32884
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32658
32885
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
32886
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
32659
32887
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32660
32888
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32661
32889
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -32671,7 +32899,7 @@ export declare type JiraMultipleGroupPickerFieldInput = {
|
|
|
32671
32899
|
groups: Array<JiraGroupInput>;
|
|
32672
32900
|
};
|
|
32673
32901
|
export declare type JiraMultipleGroupPickerFieldOperationInput = {
|
|
32674
|
-
|
|
32902
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
32675
32903
|
operation: JiraMultiValueFieldOperations;
|
|
32676
32904
|
};
|
|
32677
32905
|
export declare type JiraMultipleGroupPickerFieldPayload = Payload & {
|
|
@@ -32865,6 +33093,7 @@ export declare type JiraMutation = {
|
|
|
32865
33093
|
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
32866
33094
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
32867
33095
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
33096
|
+
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
32868
33097
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
32869
33098
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
32870
33099
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
@@ -32958,9 +33187,12 @@ export declare type JiraMutation = {
|
|
|
32958
33187
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
32959
33188
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
32960
33189
|
updateRichTextField?: Maybe<JiraRichTextFieldPayload>;
|
|
33190
|
+
updateSecurityLevelField?: Maybe<JiraSecurityLevelFieldPayload>;
|
|
33191
|
+
updateSingleGroupPickerField?: Maybe<JiraSingleGroupPickerFieldPayload>;
|
|
32961
33192
|
updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
32962
33193
|
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
32963
33194
|
updateSingleSelectUserPickerField?: Maybe<JiraSingleSelectUserPickerFieldPayload>;
|
|
33195
|
+
updateSingleVersionPickerField?: Maybe<JiraSingleVersionPickerFieldPayload>;
|
|
32964
33196
|
updateSprintField?: Maybe<JiraSprintFieldPayload>;
|
|
32965
33197
|
updateStatusByQuickTransition?: Maybe<JiraStatusFieldPayload>;
|
|
32966
33198
|
updateStoryPointEstimateField?: Maybe<JiraStoryPointEstimateFieldPayload>;
|
|
@@ -33015,6 +33247,10 @@ export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
|
33015
33247
|
cloudId: Scalars['ID']['input'];
|
|
33016
33248
|
input: JiraCreateApproverListFieldInput;
|
|
33017
33249
|
};
|
|
33250
|
+
export declare type JiraMutationCreateIssueLinksArgs = {
|
|
33251
|
+
cloudId: Scalars['ID']['input'];
|
|
33252
|
+
input: JiraBulkCreateIssueLinksInput;
|
|
33253
|
+
};
|
|
33018
33254
|
export declare type JiraMutationCreateJiraVersionArgs = {
|
|
33019
33255
|
input: JiraVersionCreateMutationInput;
|
|
33020
33256
|
};
|
|
@@ -33302,6 +33538,12 @@ export declare type JiraMutationUpdateResolutionFieldArgs = {
|
|
|
33302
33538
|
export declare type JiraMutationUpdateRichTextFieldArgs = {
|
|
33303
33539
|
input: JiraUpdateRichTextFieldInput;
|
|
33304
33540
|
};
|
|
33541
|
+
export declare type JiraMutationUpdateSecurityLevelFieldArgs = {
|
|
33542
|
+
input: JiraUpdateSecurityLevelFieldInput;
|
|
33543
|
+
};
|
|
33544
|
+
export declare type JiraMutationUpdateSingleGroupPickerFieldArgs = {
|
|
33545
|
+
input: JiraUpdateSingleGroupPickerFieldInput;
|
|
33546
|
+
};
|
|
33305
33547
|
export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
|
|
33306
33548
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
33307
33549
|
};
|
|
@@ -33311,6 +33553,9 @@ export declare type JiraMutationUpdateSingleSelectFieldArgs = {
|
|
|
33311
33553
|
export declare type JiraMutationUpdateSingleSelectUserPickerFieldArgs = {
|
|
33312
33554
|
input: JiraUpdateSingleSelectUserPickerFieldInput;
|
|
33313
33555
|
};
|
|
33556
|
+
export declare type JiraMutationUpdateSingleVersionPickerFieldArgs = {
|
|
33557
|
+
input: JiraUpdateSingleVersionPickerFieldInput;
|
|
33558
|
+
};
|
|
33314
33559
|
export declare type JiraMutationUpdateSprintFieldArgs = {
|
|
33315
33560
|
input: JiraUpdateSprintFieldInput;
|
|
33316
33561
|
};
|
|
@@ -33374,9 +33619,12 @@ export declare type JiraNaturalLanguageToJqlInput = {
|
|
|
33374
33619
|
naturalLanguageInput: Scalars['String']['input'];
|
|
33375
33620
|
};
|
|
33376
33621
|
export declare type JiraNavigationItem = {
|
|
33622
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
33623
|
+
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
33377
33624
|
id: Scalars['ID']['output'];
|
|
33378
33625
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
33379
33626
|
label?: Maybe<Scalars['String']['output']>;
|
|
33627
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
33380
33628
|
};
|
|
33381
33629
|
export declare type JiraNavigationItemConnection = HasPageInfo & {
|
|
33382
33630
|
__typename?: 'JiraNavigationItemConnection';
|
|
@@ -33389,6 +33637,33 @@ export declare type JiraNavigationItemEdge = {
|
|
|
33389
33637
|
cursor: Scalars['String']['output'];
|
|
33390
33638
|
node?: Maybe<JiraNavigationItem>;
|
|
33391
33639
|
};
|
|
33640
|
+
export declare enum JiraNavigationItemTypeKey {
|
|
33641
|
+
App = "APP",
|
|
33642
|
+
Approvals = "APPROVALS",
|
|
33643
|
+
Apps = "APPS",
|
|
33644
|
+
Attachments = "ATTACHMENTS",
|
|
33645
|
+
Backlog = "BACKLOG",
|
|
33646
|
+
Board = "BOARD",
|
|
33647
|
+
Calendar = "CALENDAR",
|
|
33648
|
+
Code = "CODE",
|
|
33649
|
+
Components = "COMPONENTS",
|
|
33650
|
+
Deployments = "DEPLOYMENTS",
|
|
33651
|
+
Forms = "FORMS",
|
|
33652
|
+
Goals = "GOALS",
|
|
33653
|
+
Incidents = "INCIDENTS",
|
|
33654
|
+
Issues = "ISSUES",
|
|
33655
|
+
List = "LIST",
|
|
33656
|
+
OnCall = "ON_CALL",
|
|
33657
|
+
Pages = "PAGES",
|
|
33658
|
+
Releases = "RELEASES",
|
|
33659
|
+
Reports = "REPORTS",
|
|
33660
|
+
Requests = "REQUESTS",
|
|
33661
|
+
Security = "SECURITY",
|
|
33662
|
+
Shortcut = "SHORTCUT",
|
|
33663
|
+
Shortcuts = "SHORTCUTS",
|
|
33664
|
+
Summary = "SUMMARY",
|
|
33665
|
+
Timeline = "TIMELINE"
|
|
33666
|
+
}
|
|
33392
33667
|
export declare type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
33393
33668
|
__typename?: 'JiraNavigationUIStateUserProperty';
|
|
33394
33669
|
id: Scalars['ID']['output'];
|
|
@@ -33403,6 +33678,14 @@ export declare type JiraNavigationUiStateUserPropertyRightPanelsArgs = {
|
|
|
33403
33678
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33404
33679
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33405
33680
|
};
|
|
33681
|
+
export declare enum JiraNotificationCategoryType {
|
|
33682
|
+
CommentChanges = "COMMENT_CHANGES",
|
|
33683
|
+
IssueAssigned = "ISSUE_ASSIGNED",
|
|
33684
|
+
IssueChanges = "ISSUE_CHANGES",
|
|
33685
|
+
IssueMentioned = "ISSUE_MENTIONED",
|
|
33686
|
+
IssueMiscellaneous = "ISSUE_MISCELLANEOUS",
|
|
33687
|
+
IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES"
|
|
33688
|
+
}
|
|
33406
33689
|
export declare type JiraNotificationChannel = {
|
|
33407
33690
|
__typename?: 'JiraNotificationChannel';
|
|
33408
33691
|
channel?: Maybe<JiraNotificationChannelType>;
|
|
@@ -33429,6 +33712,7 @@ export declare type JiraNotificationOptions = {
|
|
|
33429
33712
|
};
|
|
33430
33713
|
export declare type JiraNotificationPreference = {
|
|
33431
33714
|
__typename?: 'JiraNotificationPreference';
|
|
33715
|
+
category?: Maybe<JiraNotificationCategoryType>;
|
|
33432
33716
|
emailChannel?: Maybe<JiraNotificationChannel>;
|
|
33433
33717
|
id: Scalars['ID']['output'];
|
|
33434
33718
|
inProductChannel?: Maybe<JiraNotificationChannel>;
|
|
@@ -34036,6 +34320,7 @@ export declare type JiraPlan = Node & {
|
|
|
34036
34320
|
export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
34037
34321
|
__typename?: 'JiraPlatformAttachment';
|
|
34038
34322
|
attachmentId: Scalars['String']['output'];
|
|
34323
|
+
attachmentProperty?: Maybe<Scalars['JSON']['output']>;
|
|
34039
34324
|
author?: Maybe<User>;
|
|
34040
34325
|
created: Scalars['DateTime']['output'];
|
|
34041
34326
|
fileName?: Maybe<Scalars['String']['output']>;
|
|
@@ -34050,6 +34335,9 @@ export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
|
34050
34335
|
parentName?: Maybe<Scalars['String']['output']>;
|
|
34051
34336
|
searchViewContext?: Maybe<JiraAttachmentSearchViewContext>;
|
|
34052
34337
|
};
|
|
34338
|
+
export declare type JiraPlatformAttachmentAttachmentPropertyArgs = {
|
|
34339
|
+
key: Scalars['String']['input'];
|
|
34340
|
+
};
|
|
34053
34341
|
export declare type JiraPlatformAttachmentMediaReadTokenArgs = {
|
|
34054
34342
|
durationInSeconds: Scalars['Int']['input'];
|
|
34055
34343
|
maxTokenLength: Scalars['Int']['input'];
|
|
@@ -34202,6 +34490,7 @@ export declare type JiraProject = Node & {
|
|
|
34202
34490
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
34203
34491
|
projectType?: Maybe<JiraProjectType>;
|
|
34204
34492
|
projectUrl?: Maybe<Scalars['String']['output']>;
|
|
34493
|
+
repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
|
|
34205
34494
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
34206
34495
|
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
34207
34496
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
@@ -34298,6 +34587,12 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
|
34298
34587
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34299
34588
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34300
34589
|
};
|
|
34590
|
+
export declare type JiraProjectRepositoriesArgs = {
|
|
34591
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34592
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedRepoFilterInput>;
|
|
34593
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34594
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedRepoSortInput>;
|
|
34595
|
+
};
|
|
34301
34596
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
34302
34597
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34303
34598
|
filter?: InputMaybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
@@ -34672,6 +34967,25 @@ export declare enum JiraProjectPermissionCategoryEnum {
|
|
|
34672
34967
|
TimeTracking = "TIME_TRACKING",
|
|
34673
34968
|
VotersAndWatchers = "VOTERS_AND_WATCHERS"
|
|
34674
34969
|
}
|
|
34970
|
+
export declare type JiraProjectRoleActorLogTableEntry = {
|
|
34971
|
+
__typename?: 'JiraProjectRoleActorLogTableEntry';
|
|
34972
|
+
executedBy?: Maybe<User>;
|
|
34973
|
+
executedGroupId?: Maybe<Scalars['String']['output']>;
|
|
34974
|
+
numberOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
34975
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
34976
|
+
};
|
|
34977
|
+
export declare type JiraProjectRoleActorLogTableEntryConnection = {
|
|
34978
|
+
__typename?: 'JiraProjectRoleActorLogTableEntryConnection';
|
|
34979
|
+
edges?: Maybe<Array<Maybe<JiraProjectRoleActorLogTableEntryEdge>>>;
|
|
34980
|
+
nodes?: Maybe<Array<Maybe<JiraProjectRoleActorLogTableEntry>>>;
|
|
34981
|
+
pageInfo: PageInfo;
|
|
34982
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
34983
|
+
};
|
|
34984
|
+
export declare type JiraProjectRoleActorLogTableEntryEdge = {
|
|
34985
|
+
__typename?: 'JiraProjectRoleActorLogTableEntryEdge';
|
|
34986
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34987
|
+
node?: Maybe<JiraProjectRoleActorLogTableEntry>;
|
|
34988
|
+
};
|
|
34675
34989
|
export declare type JiraProjectRoleActorRecommendation = Node & {
|
|
34676
34990
|
__typename?: 'JiraProjectRoleActorRecommendation';
|
|
34677
34991
|
executedBy?: Maybe<User>;
|
|
@@ -34827,6 +35141,7 @@ export declare type JiraQuery = {
|
|
|
34827
35141
|
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
34828
35142
|
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
34829
35143
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
35144
|
+
groupCommentVisibilities?: Maybe<JiraGroupConnection>;
|
|
34830
35145
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
34831
35146
|
integerUserProperty?: Maybe<JiraEntityPropertyInt>;
|
|
34832
35147
|
isIssueViewEditorAiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -34896,7 +35211,9 @@ export declare type JiraQuery = {
|
|
|
34896
35211
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
34897
35212
|
projectListViewTemplates?: Maybe<JiraProjectListViewTemplateConnection>;
|
|
34898
35213
|
projectRequestTypesFromTemplate?: Maybe<Array<JiraServiceManagementRequestTypeFromTemplate>>;
|
|
35214
|
+
projectRoleActorLogTableEntries?: Maybe<JiraProjectRoleActorLogTableEntryConnection>;
|
|
34899
35215
|
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
35216
|
+
recentItems?: Maybe<JiraSearchableEntityConnection>;
|
|
34900
35217
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
34901
35218
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
34902
35219
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
@@ -35119,6 +35436,13 @@ export declare type JiraQueryGrantTypeValuesArgs = {
|
|
|
35119
35436
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35120
35437
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
35121
35438
|
};
|
|
35439
|
+
export declare type JiraQueryGroupCommentVisibilitiesArgs = {
|
|
35440
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35441
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35442
|
+
cloudId: Scalars['ID']['input'];
|
|
35443
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35444
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35445
|
+
};
|
|
35122
35446
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
35123
35447
|
projectId: Scalars['ID']['input'];
|
|
35124
35448
|
};
|
|
@@ -35416,6 +35740,13 @@ export declare type JiraQueryProjectRequestTypesFromTemplateArgs = {
|
|
|
35416
35740
|
cloudId: Scalars['ID']['input'];
|
|
35417
35741
|
projectId: Scalars['ID']['input'];
|
|
35418
35742
|
};
|
|
35743
|
+
export declare type JiraQueryProjectRoleActorLogTableEntriesArgs = {
|
|
35744
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35745
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35746
|
+
cloudId: Scalars['ID']['input'];
|
|
35747
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35748
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35749
|
+
};
|
|
35419
35750
|
export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
35420
35751
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35421
35752
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35425,6 +35756,14 @@ export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
|
35425
35756
|
statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
|
|
35426
35757
|
userStatus?: InputMaybe<JiraProjectRoleActorUserStatus>;
|
|
35427
35758
|
};
|
|
35759
|
+
export declare type JiraQueryRecentItemsArgs = {
|
|
35760
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35761
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35762
|
+
cloudId: Scalars['ID']['input'];
|
|
35763
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35764
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35765
|
+
types: Array<JiraSearchableEntityType>;
|
|
35766
|
+
};
|
|
35428
35767
|
export declare type JiraQueryRemoteIssueLinksByIdArgs = {
|
|
35429
35768
|
ids: Array<Scalars['ID']['input']>;
|
|
35430
35769
|
};
|
|
@@ -35467,7 +35806,7 @@ export declare type JiraQueryResourceUsageRecommendationStatsArgs = {
|
|
|
35467
35806
|
};
|
|
35468
35807
|
export declare type JiraQueryScaledConfigurationArgs = {
|
|
35469
35808
|
cloudId: Scalars['ID']['input'];
|
|
35470
|
-
id
|
|
35809
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
35471
35810
|
};
|
|
35472
35811
|
export declare type JiraQueryScaledConfigurationPermissionsArgs = {
|
|
35473
35812
|
cloudId: Scalars['ID']['input'];
|
|
@@ -36094,10 +36433,12 @@ export declare type JiraSafeBoard = {
|
|
|
36094
36433
|
export declare type JiraSafeConfiguration = {
|
|
36095
36434
|
__typename?: 'JiraSafeConfiguration';
|
|
36096
36435
|
agileReleaseTrains?: Maybe<JiraAgileReleaseTrainConnection>;
|
|
36436
|
+
artIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
36097
36437
|
capability?: Maybe<JiraIssueType>;
|
|
36098
36438
|
feature?: Maybe<JiraIssueType>;
|
|
36099
36439
|
id: Scalars['ID']['output'];
|
|
36100
36440
|
jobSize?: Maybe<JiraNumberField>;
|
|
36441
|
+
largeSolutionIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
36101
36442
|
largeSolutions?: Maybe<JiraLargeSolutionConnection>;
|
|
36102
36443
|
plan?: Maybe<JiraPlan>;
|
|
36103
36444
|
riskReduction?: Maybe<JiraNumberField>;
|
|
@@ -36196,6 +36537,25 @@ export declare type JiraScreenTabLayoutItemEdge = {
|
|
|
36196
36537
|
cursor: Scalars['String']['output'];
|
|
36197
36538
|
node?: Maybe<JiraScreenTabLayoutItem>;
|
|
36198
36539
|
};
|
|
36540
|
+
export declare type JiraSearchableEntity = JiraBoard | JiraCustomFilter | JiraDashboard | JiraIssue | JiraProject | JiraServiceManagementQueue | JiraSystemFilter;
|
|
36541
|
+
export declare type JiraSearchableEntityConnection = {
|
|
36542
|
+
__typename?: 'JiraSearchableEntityConnection';
|
|
36543
|
+
edges?: Maybe<Array<Maybe<JiraSearchableEntityEdge>>>;
|
|
36544
|
+
pageInfo: PageInfo;
|
|
36545
|
+
};
|
|
36546
|
+
export declare type JiraSearchableEntityEdge = {
|
|
36547
|
+
__typename?: 'JiraSearchableEntityEdge';
|
|
36548
|
+
cursor: Scalars['String']['output'];
|
|
36549
|
+
node?: Maybe<JiraSearchableEntity>;
|
|
36550
|
+
};
|
|
36551
|
+
export declare enum JiraSearchableEntityType {
|
|
36552
|
+
Board = "BOARD",
|
|
36553
|
+
Dashboard = "DASHBOARD",
|
|
36554
|
+
Filter = "FILTER",
|
|
36555
|
+
Issue = "ISSUE",
|
|
36556
|
+
Project = "PROJECT",
|
|
36557
|
+
Queue = "QUEUE"
|
|
36558
|
+
}
|
|
36199
36559
|
export declare type JiraSecurityLevel = Node & {
|
|
36200
36560
|
__typename?: 'JiraSecurityLevel';
|
|
36201
36561
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -36224,6 +36584,7 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
36224
36584
|
id: Scalars['ID']['output'];
|
|
36225
36585
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
36226
36586
|
name: Scalars['String']['output'];
|
|
36587
|
+
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
36227
36588
|
securityLevel?: Maybe<JiraSecurityLevel>;
|
|
36228
36589
|
securityLevels?: Maybe<JiraSecurityLevelConnection>;
|
|
36229
36590
|
type: Scalars['String']['output'];
|
|
@@ -36232,10 +36593,21 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
36232
36593
|
export declare type JiraSecurityLevelFieldSecurityLevelsArgs = {
|
|
36233
36594
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36234
36595
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
36596
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
36235
36597
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36236
36598
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
36237
36599
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
36238
36600
|
};
|
|
36601
|
+
export declare type JiraSecurityLevelFieldOperationInput = {
|
|
36602
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
36603
|
+
operation: JiraSingleValueFieldOperations;
|
|
36604
|
+
};
|
|
36605
|
+
export declare type JiraSecurityLevelFieldPayload = Payload & {
|
|
36606
|
+
__typename?: 'JiraSecurityLevelFieldPayload';
|
|
36607
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36608
|
+
field?: Maybe<JiraSecurityLevelField>;
|
|
36609
|
+
success: Scalars['Boolean']['output'];
|
|
36610
|
+
};
|
|
36239
36611
|
export declare type JiraSecurityLevelInput = {
|
|
36240
36612
|
securityLevelId: Scalars['ID']['input'];
|
|
36241
36613
|
};
|
|
@@ -36425,8 +36797,10 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
36425
36797
|
authorCanSeeRequest?: Maybe<Scalars['Boolean']['output']>;
|
|
36426
36798
|
commentId: Scalars['ID']['output'];
|
|
36427
36799
|
created: Scalars['DateTime']['output'];
|
|
36800
|
+
eventOccurredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
36428
36801
|
id: Scalars['ID']['output'];
|
|
36429
36802
|
issue?: Maybe<JiraIssue>;
|
|
36803
|
+
jsdIncidentActivityViewHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
36430
36804
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
36431
36805
|
richText?: Maybe<JiraRichText>;
|
|
36432
36806
|
updateAuthor?: Maybe<User>;
|
|
@@ -36843,6 +37217,14 @@ export declare type JiraServiceManagementProjectTeamType = {
|
|
|
36843
37217
|
__typename?: 'JiraServiceManagementProjectTeamType';
|
|
36844
37218
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
36845
37219
|
};
|
|
37220
|
+
export declare type JiraServiceManagementQueue = Node & {
|
|
37221
|
+
__typename?: 'JiraServiceManagementQueue';
|
|
37222
|
+
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
37223
|
+
id: Scalars['ID']['output'];
|
|
37224
|
+
queueId?: Maybe<Scalars['Long']['output']>;
|
|
37225
|
+
queueUrl?: Maybe<Scalars['URL']['output']>;
|
|
37226
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
37227
|
+
};
|
|
36846
37228
|
export declare enum JiraServiceManagementRendererType {
|
|
36847
37229
|
AtlassianWikiRendererType = "ATLASSIAN_WIKI_RENDERER_TYPE",
|
|
36848
37230
|
JiraTextRendererType = "JIRA_TEXT_RENDERER_TYPE"
|
|
@@ -37250,9 +37632,12 @@ export declare type JiraShortcutDataInput = {
|
|
|
37250
37632
|
};
|
|
37251
37633
|
export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
|
|
37252
37634
|
__typename?: 'JiraShortcutNavigationItem';
|
|
37635
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
37636
|
+
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
37253
37637
|
id: Scalars['ID']['output'];
|
|
37254
37638
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
37255
37639
|
label?: Maybe<Scalars['String']['output']>;
|
|
37640
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
37256
37641
|
url?: Maybe<Scalars['String']['output']>;
|
|
37257
37642
|
};
|
|
37258
37643
|
export declare type JiraSimilarIssues = {
|
|
@@ -37285,6 +37670,16 @@ export declare type JiraSingleGroupPickerFieldInput = {
|
|
|
37285
37670
|
fieldId: Scalars['ID']['input'];
|
|
37286
37671
|
group: JiraGroupInput;
|
|
37287
37672
|
};
|
|
37673
|
+
export declare type JiraSingleGroupPickerFieldOperationInput = {
|
|
37674
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
37675
|
+
operation: JiraSingleValueFieldOperations;
|
|
37676
|
+
};
|
|
37677
|
+
export declare type JiraSingleGroupPickerFieldPayload = Payload & {
|
|
37678
|
+
__typename?: 'JiraSingleGroupPickerFieldPayload';
|
|
37679
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37680
|
+
field?: Maybe<JiraSingleGroupPickerField>;
|
|
37681
|
+
success: Scalars['Boolean']['output'];
|
|
37682
|
+
};
|
|
37288
37683
|
export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
37289
37684
|
__typename?: 'JiraSingleLineTextField';
|
|
37290
37685
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -37418,6 +37813,7 @@ export declare type JiraSingleVersionPickerField = JiraIssueField & JiraIssueFie
|
|
|
37418
37813
|
export declare type JiraSingleVersionPickerFieldVersionsArgs = {
|
|
37419
37814
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37420
37815
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
37816
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
37421
37817
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37422
37818
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
37423
37819
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -37427,12 +37823,25 @@ export declare type JiraSingleVersionPickerFieldInput = {
|
|
|
37427
37823
|
fieldId: Scalars['ID']['input'];
|
|
37428
37824
|
version: JiraVersionInput;
|
|
37429
37825
|
};
|
|
37826
|
+
export declare type JiraSingleVersionPickerFieldOperationInput = {
|
|
37827
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
37828
|
+
operation: JiraSingleValueFieldOperations;
|
|
37829
|
+
};
|
|
37830
|
+
export declare type JiraSingleVersionPickerFieldPayload = Payload & {
|
|
37831
|
+
__typename?: 'JiraSingleVersionPickerFieldPayload';
|
|
37832
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37833
|
+
field?: Maybe<JiraSingleVersionPickerField>;
|
|
37834
|
+
success: Scalars['Boolean']['output'];
|
|
37835
|
+
};
|
|
37430
37836
|
export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Node & {
|
|
37431
37837
|
__typename?: 'JiraSoftwareBuiltInNavigationItem';
|
|
37838
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
37839
|
+
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
37432
37840
|
id: Scalars['ID']['output'];
|
|
37433
37841
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
37434
37842
|
itemType?: Maybe<JiraSoftwareSimpleNavigationItemEnum>;
|
|
37435
37843
|
label?: Maybe<Scalars['String']['output']>;
|
|
37844
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
37436
37845
|
};
|
|
37437
37846
|
export declare type JiraSoftwareIssueSearchCustomInput = {
|
|
37438
37847
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38114,7 +38523,12 @@ export declare type JiraUpdateGlobalPreferencesPayload = Payload & {
|
|
|
38114
38523
|
preferences?: Maybe<JiraNotificationPreferences>;
|
|
38115
38524
|
success: Scalars['Boolean']['output'];
|
|
38116
38525
|
};
|
|
38526
|
+
export declare type JiraUpdateIssueLinkFieldInputForIssueTransitions = {
|
|
38527
|
+
id: Scalars['ID']['input'];
|
|
38528
|
+
operation: JiraIssueLinkFieldOperationInputForIssueTransitions;
|
|
38529
|
+
};
|
|
38117
38530
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
38531
|
+
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
38118
38532
|
fieldInputs?: InputMaybe<JiraIssueTransitionFieldLevelInput>;
|
|
38119
38533
|
issueId: Scalars['ID']['input'];
|
|
38120
38534
|
transitionId: Scalars['Int']['input'];
|
|
@@ -38218,11 +38632,19 @@ export declare type JiraUpdateRichTextFieldInput = {
|
|
|
38218
38632
|
id: Scalars['ID']['input'];
|
|
38219
38633
|
operation: JiraRichTextFieldOperationInput;
|
|
38220
38634
|
};
|
|
38635
|
+
export declare type JiraUpdateSecurityLevelFieldInput = {
|
|
38636
|
+
id: Scalars['ID']['input'];
|
|
38637
|
+
operation: JiraSecurityLevelFieldOperationInput;
|
|
38638
|
+
};
|
|
38221
38639
|
export declare type JiraUpdateShortcutInput = {
|
|
38222
38640
|
projectId: Scalars['ID']['input'];
|
|
38223
38641
|
shortcutData: JiraShortcutDataInput;
|
|
38224
38642
|
shortcutId: Scalars['ID']['input'];
|
|
38225
38643
|
};
|
|
38644
|
+
export declare type JiraUpdateSingleGroupPickerFieldInput = {
|
|
38645
|
+
id: Scalars['ID']['input'];
|
|
38646
|
+
operation: JiraSingleGroupPickerFieldOperationInput;
|
|
38647
|
+
};
|
|
38226
38648
|
export declare type JiraUpdateSingleLineTextFieldInput = {
|
|
38227
38649
|
id: Scalars['ID']['input'];
|
|
38228
38650
|
operation: JiraSingleLineTextFieldOperationInput;
|
|
@@ -38235,6 +38657,10 @@ export declare type JiraUpdateSingleSelectUserPickerFieldInput = {
|
|
|
38235
38657
|
id: Scalars['ID']['input'];
|
|
38236
38658
|
operation: JiraSingleSelectUserPickerFieldOperationInput;
|
|
38237
38659
|
};
|
|
38660
|
+
export declare type JiraUpdateSingleVersionPickerFieldInput = {
|
|
38661
|
+
id: Scalars['ID']['input'];
|
|
38662
|
+
operation: JiraSingleVersionPickerFieldOperationInput;
|
|
38663
|
+
};
|
|
38238
38664
|
export declare type JiraUpdateSprintFieldInput = {
|
|
38239
38665
|
id: Scalars['ID']['input'];
|
|
38240
38666
|
operation: JiraSprintFieldOperationInput;
|
|
@@ -38777,6 +39203,7 @@ export declare type JiraVersionFilterInput = {
|
|
|
38777
39203
|
activeWithin?: InputMaybe<JiraDateTimeWindow>;
|
|
38778
39204
|
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38779
39205
|
projectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
39206
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
38780
39207
|
statuses?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
38781
39208
|
};
|
|
38782
39209
|
export declare type JiraVersionInput = {
|
|
@@ -39462,6 +39889,7 @@ export declare type JiraWorkManagementSavedView = JiraNavigationItem & Node & {
|
|
|
39462
39889
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
39463
39890
|
label?: Maybe<Scalars['String']['output']>;
|
|
39464
39891
|
type?: Maybe<JiraWorkManagementSavedViewType>;
|
|
39892
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
39465
39893
|
};
|
|
39466
39894
|
export declare type JiraWorkManagementSavedViewResult = JiraWorkManagementSavedView | QueryError;
|
|
39467
39895
|
export declare type JiraWorkManagementSavedViewType = Node & {
|
|
@@ -39469,6 +39897,7 @@ export declare type JiraWorkManagementSavedViewType = Node & {
|
|
|
39469
39897
|
id: Scalars['ID']['output'];
|
|
39470
39898
|
key?: Maybe<Scalars['String']['output']>;
|
|
39471
39899
|
label?: Maybe<Scalars['String']['output']>;
|
|
39900
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
39472
39901
|
};
|
|
39473
39902
|
export declare type JiraWorkManagementSavedViewTypeConnection = HasPageInfo & {
|
|
39474
39903
|
__typename?: 'JiraWorkManagementSavedViewTypeConnection';
|
|
@@ -39594,6 +40023,74 @@ export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
|
39594
40023
|
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
39595
40024
|
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
39596
40025
|
};
|
|
40026
|
+
export declare type JsmChatChannelRequestTypeMapping = {
|
|
40027
|
+
__typename?: 'JsmChatChannelRequestTypeMapping';
|
|
40028
|
+
channelId: Scalars['ID']['output'];
|
|
40029
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
|
40030
|
+
channelType?: Maybe<Scalars['String']['output']>;
|
|
40031
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
|
40032
|
+
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
40033
|
+
requestTypeName?: Maybe<Scalars['String']['output']>;
|
|
40034
|
+
settings?: Maybe<JsmChatChannelSettings>;
|
|
40035
|
+
};
|
|
40036
|
+
export declare type JsmChatChannelSettings = {
|
|
40037
|
+
__typename?: 'JsmChatChannelSettings';
|
|
40038
|
+
isDeflectionChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40039
|
+
isVirtualAgentChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40040
|
+
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40041
|
+
};
|
|
40042
|
+
export declare type JsmChatGetSlackChatConfigInput = {
|
|
40043
|
+
activationId: Scalars['ID']['input'];
|
|
40044
|
+
projectId: Scalars['ID']['input'];
|
|
40045
|
+
siteId: Scalars['ID']['input'];
|
|
40046
|
+
};
|
|
40047
|
+
export declare type JsmChatInitializeConfigRequest = {
|
|
40048
|
+
activationId: Scalars['ID']['input'];
|
|
40049
|
+
projectId: Scalars['ID']['input'];
|
|
40050
|
+
siteId: Scalars['ID']['input'];
|
|
40051
|
+
};
|
|
40052
|
+
export declare type JsmChatInitializeConfigResponse = {
|
|
40053
|
+
__typename?: 'JsmChatInitializeConfigResponse';
|
|
40054
|
+
nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40055
|
+
};
|
|
40056
|
+
export declare type JsmChatProjectSettings = {
|
|
40057
|
+
__typename?: 'JsmChatProjectSettings';
|
|
40058
|
+
agentAssignedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40059
|
+
agentIssueClosedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40060
|
+
agentThreadMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40061
|
+
areRequesterThreadRepliesPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
40062
|
+
hideQueueDuringTicketCreation?: Maybe<Scalars['Boolean']['output']>;
|
|
40063
|
+
jsmApproversEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40064
|
+
requesterIssueClosedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40065
|
+
requesterThreadMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40066
|
+
};
|
|
40067
|
+
export declare type JsmChatProjectSettingsSlack = {
|
|
40068
|
+
__typename?: 'JsmChatProjectSettingsSlack';
|
|
40069
|
+
activationId?: Maybe<Scalars['String']['output']>;
|
|
40070
|
+
projectId: Scalars['ID']['output'];
|
|
40071
|
+
settings?: Maybe<JsmChatProjectSettings>;
|
|
40072
|
+
siteId?: Maybe<Scalars['String']['output']>;
|
|
40073
|
+
};
|
|
40074
|
+
export declare type JsmChatQuery = {
|
|
40075
|
+
__typename?: 'JsmChatQuery';
|
|
40076
|
+
getSlackChatConfig?: Maybe<JsmChatSlackConfig>;
|
|
40077
|
+
initializeConfig: JsmChatInitializeConfigResponse;
|
|
40078
|
+
};
|
|
40079
|
+
export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
40080
|
+
input: JsmChatGetSlackChatConfigInput;
|
|
40081
|
+
};
|
|
40082
|
+
export declare type JsmChatQueryInitializeConfigArgs = {
|
|
40083
|
+
input: JsmChatInitializeConfigRequest;
|
|
40084
|
+
};
|
|
40085
|
+
export declare type JsmChatSlackConfig = {
|
|
40086
|
+
__typename?: 'JsmChatSlackConfig';
|
|
40087
|
+
botUserId?: Maybe<Scalars['String']['output']>;
|
|
40088
|
+
channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
|
|
40089
|
+
projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
|
|
40090
|
+
siteId: Scalars['ID']['output'];
|
|
40091
|
+
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40092
|
+
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
40093
|
+
};
|
|
39597
40094
|
export declare type JswMutation = {
|
|
39598
40095
|
__typename?: 'JswMutation';
|
|
39599
40096
|
deleteCard?: Maybe<DeleteCardOutput>;
|
|
@@ -39608,10 +40105,12 @@ export declare type JswQuery = {
|
|
|
39608
40105
|
export declare type JswQueryBoardScopeArgs = {
|
|
39609
40106
|
boardId: Scalars['ID']['input'];
|
|
39610
40107
|
};
|
|
40108
|
+
export declare type KnowledgeDiscoveryConfluenceEntity = ConfluenceBlogPost | ConfluencePage;
|
|
39611
40109
|
export declare type KnowledgeDiscoveryCreateDefinitionInput = {
|
|
39612
40110
|
definition: Scalars['String']['input'];
|
|
39613
40111
|
keyPhrase: Scalars['String']['input'];
|
|
39614
|
-
|
|
40112
|
+
referenceContentId?: InputMaybe<Scalars['String']['input']>;
|
|
40113
|
+
referenceUrl?: InputMaybe<Scalars['String']['input']>;
|
|
39615
40114
|
workspaceId: Scalars['String']['input'];
|
|
39616
40115
|
};
|
|
39617
40116
|
export declare type KnowledgeDiscoveryCreateDefinitionPayload = Payload & {
|
|
@@ -39623,12 +40122,27 @@ export declare type KnowledgeDiscoveryCreateDefinitionPayload = Payload & {
|
|
|
39623
40122
|
export declare type KnowledgeDiscoveryDefinition = {
|
|
39624
40123
|
__typename?: 'KnowledgeDiscoveryDefinition';
|
|
39625
40124
|
accountId: Scalars['String']['output'];
|
|
39626
|
-
|
|
40125
|
+
confluenceEntity?: Maybe<KnowledgeDiscoveryConfluenceEntity>;
|
|
40126
|
+
createdAt: Scalars['String']['output'];
|
|
39627
40127
|
definition: Scalars['String']['output'];
|
|
40128
|
+
editor?: Maybe<User>;
|
|
39628
40129
|
keyPhrase: Scalars['String']['output'];
|
|
39629
|
-
|
|
40130
|
+
referenceUrl?: Maybe<Scalars['String']['output']>;
|
|
40131
|
+
};
|
|
40132
|
+
export declare type KnowledgeDiscoveryDefinitionHistoryResult = KnowledgeDiscoveryDefinitionList | QueryError;
|
|
40133
|
+
export declare type KnowledgeDiscoveryDefinitionList = {
|
|
40134
|
+
__typename?: 'KnowledgeDiscoveryDefinitionList';
|
|
40135
|
+
definitions?: Maybe<Array<Maybe<KnowledgeDiscoveryDefinition>>>;
|
|
39630
40136
|
};
|
|
39631
40137
|
export declare type KnowledgeDiscoveryDefinitionResult = KnowledgeDiscoveryDefinition | QueryError;
|
|
40138
|
+
export declare type KnowledgeDiscoveryEntity = {
|
|
40139
|
+
id: Scalars['ID']['output'];
|
|
40140
|
+
};
|
|
40141
|
+
export declare enum KnowledgeDiscoveryEntityType {
|
|
40142
|
+
Document = "DOCUMENT",
|
|
40143
|
+
Keyword = "KEYWORD",
|
|
40144
|
+
Topic = "TOPIC"
|
|
40145
|
+
}
|
|
39632
40146
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
39633
40147
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
39634
40148
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
@@ -39639,6 +40153,8 @@ export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
|
|
|
39639
40153
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
39640
40154
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
39641
40155
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
40156
|
+
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
40157
|
+
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntityConnection>;
|
|
39642
40158
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
39643
40159
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
39644
40160
|
};
|
|
@@ -39646,6 +40162,19 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
|
39646
40162
|
keyPhrase: Scalars['String']['input'];
|
|
39647
40163
|
workspaceId: Scalars['String']['input'];
|
|
39648
40164
|
};
|
|
40165
|
+
export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
40166
|
+
keyPhrase: Scalars['String']['input'];
|
|
40167
|
+
workspaceId: Scalars['String']['input'];
|
|
40168
|
+
};
|
|
40169
|
+
export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
40170
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40171
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
40172
|
+
entityType: Scalars['String']['input'];
|
|
40173
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40174
|
+
id: Scalars['String']['input'];
|
|
40175
|
+
relatedEntityType: Scalars['String']['input'];
|
|
40176
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
40177
|
+
};
|
|
39649
40178
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
39650
40179
|
locale: Scalars['String']['input'];
|
|
39651
40180
|
query: Scalars['String']['input'];
|
|
@@ -39656,6 +40185,18 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
39656
40185
|
id: Scalars['String']['input'];
|
|
39657
40186
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
39658
40187
|
};
|
|
40188
|
+
export declare type KnowledgeDiscoveryRelatedEntityConnection = {
|
|
40189
|
+
__typename?: 'KnowledgeDiscoveryRelatedEntityConnection';
|
|
40190
|
+
edges?: Maybe<Array<Maybe<KnowledgeDiscoveryRelatedEntityEdge>>>;
|
|
40191
|
+
nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryRelatedEntityResult>>>;
|
|
40192
|
+
pageInfo: PageInfo;
|
|
40193
|
+
};
|
|
40194
|
+
export declare type KnowledgeDiscoveryRelatedEntityEdge = {
|
|
40195
|
+
__typename?: 'KnowledgeDiscoveryRelatedEntityEdge';
|
|
40196
|
+
edgeCursor: Scalars['String']['output'];
|
|
40197
|
+
node?: Maybe<KnowledgeDiscoveryRelatedEntityResult>;
|
|
40198
|
+
};
|
|
40199
|
+
export declare type KnowledgeDiscoveryRelatedEntityResult = KnowledgeDiscoveryTopic | QueryError;
|
|
39659
40200
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
39660
40201
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
39661
40202
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
@@ -39668,7 +40209,7 @@ export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
|
39668
40209
|
transformedQuery: Scalars['String']['output'];
|
|
39669
40210
|
};
|
|
39670
40211
|
export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
|
|
39671
|
-
export declare type KnowledgeDiscoveryTopic = {
|
|
40212
|
+
export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
39672
40213
|
__typename?: 'KnowledgeDiscoveryTopic';
|
|
39673
40214
|
description: Scalars['String']['output'];
|
|
39674
40215
|
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -40267,12 +40808,61 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
40267
40808
|
export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
40268
40809
|
input: MarketplaceStoreInstallAppInput;
|
|
40269
40810
|
};
|
|
40811
|
+
export declare type MarketplaceStorePartnerAddress = {
|
|
40812
|
+
__typename?: 'MarketplaceStorePartnerAddress';
|
|
40813
|
+
city?: Maybe<Scalars['String']['output']>;
|
|
40814
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
40815
|
+
line1?: Maybe<Scalars['String']['output']>;
|
|
40816
|
+
line2?: Maybe<Scalars['String']['output']>;
|
|
40817
|
+
postcode?: Maybe<Scalars['String']['output']>;
|
|
40818
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
40819
|
+
};
|
|
40820
|
+
export declare type MarketplaceStorePartnerContactDetails = {
|
|
40821
|
+
__typename?: 'MarketplaceStorePartnerContactDetails';
|
|
40822
|
+
email: Scalars['String']['output'];
|
|
40823
|
+
homepageUrl?: Maybe<Scalars['String']['output']>;
|
|
40824
|
+
otherContactDetails?: Maybe<Scalars['String']['output']>;
|
|
40825
|
+
phone?: Maybe<Scalars['String']['output']>;
|
|
40826
|
+
};
|
|
40827
|
+
export declare type MarketplaceStorePartnerEnrollment = {
|
|
40828
|
+
__typename?: 'MarketplaceStorePartnerEnrollment';
|
|
40829
|
+
program?: Maybe<MarketplaceStorePartnerEnrollmentProgram>;
|
|
40830
|
+
value?: Maybe<MarketplaceStorePartnerEnrollmentProgramValue>;
|
|
40831
|
+
};
|
|
40832
|
+
export declare enum MarketplaceStorePartnerEnrollmentProgram {
|
|
40833
|
+
MarketplacePartner = "MARKETPLACE_PARTNER",
|
|
40834
|
+
SolutionPartner = "SOLUTION_PARTNER"
|
|
40835
|
+
}
|
|
40836
|
+
export declare enum MarketplaceStorePartnerEnrollmentProgramValue {
|
|
40837
|
+
Gold = "GOLD",
|
|
40838
|
+
Platinum = "PLATINUM",
|
|
40839
|
+
Silver = "SILVER"
|
|
40840
|
+
}
|
|
40841
|
+
export declare type MarketplaceStorePartnerProfileResponse = {
|
|
40842
|
+
__typename?: 'MarketplaceStorePartnerProfileResponse';
|
|
40843
|
+
address?: Maybe<MarketplaceStorePartnerAddress>;
|
|
40844
|
+
contactDetails?: Maybe<MarketplaceStorePartnerContactDetails>;
|
|
40845
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
40846
|
+
enrollments: Array<Maybe<MarketplaceStorePartnerEnrollment>>;
|
|
40847
|
+
id: Scalars['ID']['output'];
|
|
40848
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
40849
|
+
name: Scalars['String']['output'];
|
|
40850
|
+
supportDetails?: Maybe<MarketplaceStorePartnerSupportDetails>;
|
|
40851
|
+
};
|
|
40852
|
+
export declare type MarketplaceStorePartnerSupportDetails = {
|
|
40853
|
+
__typename?: 'MarketplaceStorePartnerSupportDetails';
|
|
40854
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
40855
|
+
name: Scalars['String']['output'];
|
|
40856
|
+
phone?: Maybe<Scalars['String']['output']>;
|
|
40857
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
40858
|
+
};
|
|
40270
40859
|
export declare type MarketplaceStoreQueryApi = {
|
|
40271
40860
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
40272
40861
|
category: MarketplaceStoreCategoryResponse;
|
|
40273
40862
|
collection: MarketplaceStoreCollectionResponse;
|
|
40274
40863
|
homePage: MarketplaceStoreHomePageResponse;
|
|
40275
40864
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
40865
|
+
partnerProfile: MarketplaceStorePartnerProfileResponse;
|
|
40276
40866
|
};
|
|
40277
40867
|
export declare type MarketplaceStoreQueryApiCategoryArgs = {
|
|
40278
40868
|
slug: Scalars['String']['input'];
|
|
@@ -40286,6 +40876,10 @@ export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
|
40286
40876
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
40287
40877
|
id: Scalars['ID']['input'];
|
|
40288
40878
|
};
|
|
40879
|
+
export declare type MarketplaceStoreQueryApiPartnerProfileArgs = {
|
|
40880
|
+
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
40881
|
+
vendorId: Scalars['ID']['input'];
|
|
40882
|
+
};
|
|
40289
40883
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
40290
40884
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
40291
40885
|
hostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -40383,7 +40977,6 @@ export declare type Mutation = {
|
|
|
40383
40977
|
ForgeAi?: Maybe<ForgeAiMutation>;
|
|
40384
40978
|
actions?: Maybe<ActionsMutation>;
|
|
40385
40979
|
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
40386
|
-
admin?: Maybe<AdminMutation>;
|
|
40387
40980
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
40388
40981
|
appStorage?: Maybe<AppStorageMutation>;
|
|
40389
40982
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -40483,6 +41076,7 @@ export declare type Mutation = {
|
|
|
40483
41076
|
rankCustomFilter?: Maybe<GenericMutationResponse>;
|
|
40484
41077
|
rateLimitTest?: Maybe<GenericMutationResponse>;
|
|
40485
41078
|
refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
|
|
41079
|
+
registerTunnel?: Maybe<RegisterTunnelResponse>;
|
|
40486
41080
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
40487
41081
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
40488
41082
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
@@ -40801,6 +41395,9 @@ export declare type MutationRateLimitTestArgs = {
|
|
|
40801
41395
|
export declare type MutationRefreshPolarisSnippetsArgs = {
|
|
40802
41396
|
input: RefreshPolarisSnippetsInput;
|
|
40803
41397
|
};
|
|
41398
|
+
export declare type MutationRegisterTunnelArgs = {
|
|
41399
|
+
input: RegisterTunnelInput;
|
|
41400
|
+
};
|
|
40804
41401
|
export declare type MutationResolvePolarisObjectArgs = {
|
|
40805
41402
|
input: ResolvePolarisObjectInput;
|
|
40806
41403
|
};
|
|
@@ -41369,6 +41966,44 @@ export declare type OriginalSplitIssue = {
|
|
|
41369
41966
|
id: Scalars['ID']['input'];
|
|
41370
41967
|
summary: Scalars['String']['input'];
|
|
41371
41968
|
};
|
|
41969
|
+
export declare type PeapdcpEnrollmentInput = {
|
|
41970
|
+
cloudId: Scalars['ID']['input'];
|
|
41971
|
+
desiredStatus: Scalars['Boolean']['input'];
|
|
41972
|
+
product: PeapdcpProduct;
|
|
41973
|
+
};
|
|
41974
|
+
export declare type PeapdcpEnrollmentStatus = {
|
|
41975
|
+
__typename?: 'PEAPDCPEnrollmentStatus';
|
|
41976
|
+
cloudId: Scalars['ID']['output'];
|
|
41977
|
+
enrollmentStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
41978
|
+
error?: Maybe<Array<Scalars['String']['output']>>;
|
|
41979
|
+
product: PeapdcpProduct;
|
|
41980
|
+
success: Scalars['Boolean']['output'];
|
|
41981
|
+
};
|
|
41982
|
+
export declare type PeapdcpEnrollmentStatusInput = {
|
|
41983
|
+
cloudId: Scalars['ID']['input'];
|
|
41984
|
+
product: PeapdcpProduct;
|
|
41985
|
+
};
|
|
41986
|
+
export declare enum PeapdcpProduct {
|
|
41987
|
+
Confluence = "CONFLUENCE",
|
|
41988
|
+
Jira = "JIRA"
|
|
41989
|
+
}
|
|
41990
|
+
export declare type PeapEnrollmentInput = {
|
|
41991
|
+
cloudId: Scalars['ID']['input'];
|
|
41992
|
+
desiredStatus: Scalars['Boolean']['input'];
|
|
41993
|
+
programId: Scalars['ID']['input'];
|
|
41994
|
+
};
|
|
41995
|
+
export declare type PeapEnrollmentStatus = {
|
|
41996
|
+
__typename?: 'PEAPEnrollmentStatus';
|
|
41997
|
+
cloudId: Scalars['ID']['output'];
|
|
41998
|
+
enrollmentStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
41999
|
+
error?: Maybe<Array<Scalars['String']['output']>>;
|
|
42000
|
+
programId: Scalars['ID']['output'];
|
|
42001
|
+
success: Scalars['Boolean']['output'];
|
|
42002
|
+
};
|
|
42003
|
+
export declare type PeapEnrollmentStatusInput = {
|
|
42004
|
+
cloudId: Scalars['ID']['input'];
|
|
42005
|
+
programId: Scalars['ID']['input'];
|
|
42006
|
+
};
|
|
41372
42007
|
export declare type PeapInternalMutationApi = {
|
|
41373
42008
|
__typename?: 'PEAPInternalMutationApi';
|
|
41374
42009
|
_module?: Maybe<Scalars['String']['output']>;
|
|
@@ -41394,6 +42029,10 @@ export declare type PeapInternalQueryApi = {
|
|
|
41394
42029
|
export declare type PeapMutationApi = {
|
|
41395
42030
|
__typename?: 'PEAPMutationApi';
|
|
41396
42031
|
internal: PeapInternalMutationApi;
|
|
42032
|
+
programEnrollment: PeapProgramEnrollmentStatus;
|
|
42033
|
+
};
|
|
42034
|
+
export declare type PeapMutationApiProgramEnrollmentArgs = {
|
|
42035
|
+
input: PeapProgramEnrollmentInput;
|
|
41397
42036
|
};
|
|
41398
42037
|
export declare type PeapNewProgramInput = {
|
|
41399
42038
|
description: Scalars['String']['input'];
|
|
@@ -41428,6 +42067,15 @@ export declare type PeapProgramEdge = {
|
|
|
41428
42067
|
cursor: Scalars['String']['output'];
|
|
41429
42068
|
node: PeapProgram;
|
|
41430
42069
|
};
|
|
42070
|
+
export declare type PeapProgramEnrollmentInput = {
|
|
42071
|
+
dcp?: InputMaybe<PeapdcpEnrollmentInput>;
|
|
42072
|
+
peap?: InputMaybe<PeapEnrollmentInput>;
|
|
42073
|
+
};
|
|
42074
|
+
export declare type PeapProgramEnrollmentStatus = PeapdcpEnrollmentStatus | PeapEnrollmentStatus;
|
|
42075
|
+
export declare type PeapProgramEnrollmentStatusInput = {
|
|
42076
|
+
dcp?: InputMaybe<PeapdcpEnrollmentStatusInput>;
|
|
42077
|
+
peap?: InputMaybe<PeapEnrollmentStatusInput>;
|
|
42078
|
+
};
|
|
41431
42079
|
export declare type PeapProgramInternalData = {
|
|
41432
42080
|
__typename?: 'PEAPProgramInternalData';
|
|
41433
42081
|
cdacGroup?: Maybe<Scalars['String']['output']>;
|
|
@@ -41451,11 +42099,15 @@ export declare type PeapQueryApi = {
|
|
|
41451
42099
|
__typename?: 'PEAPQueryApi';
|
|
41452
42100
|
internal: PeapInternalQueryApi;
|
|
41453
42101
|
program?: Maybe<PeapProgram>;
|
|
42102
|
+
programEnrollment: PeapProgramEnrollmentStatus;
|
|
41454
42103
|
programs?: Maybe<PeapProgramConnection>;
|
|
41455
42104
|
};
|
|
41456
42105
|
export declare type PeapQueryApiProgramArgs = {
|
|
41457
42106
|
id: Scalars['ID']['input'];
|
|
41458
42107
|
};
|
|
42108
|
+
export declare type PeapQueryApiProgramEnrollmentArgs = {
|
|
42109
|
+
input: PeapProgramEnrollmentStatusInput;
|
|
42110
|
+
};
|
|
41459
42111
|
export declare type PeapQueryApiProgramsArgs = {
|
|
41460
42112
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41461
42113
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -42802,6 +43454,7 @@ export declare type PolarisTimelineConfig = {
|
|
|
42802
43454
|
mode: PolarisTimelineMode;
|
|
42803
43455
|
startDateField?: Maybe<PolarisIdeaField>;
|
|
42804
43456
|
startTimestamp?: Maybe<Scalars['String']['output']>;
|
|
43457
|
+
summaryCardField?: Maybe<PolarisIdeaField>;
|
|
42805
43458
|
};
|
|
42806
43459
|
export declare enum PolarisTimelineMode {
|
|
42807
43460
|
Months = "MONTHS",
|
|
@@ -43054,7 +43707,6 @@ export declare type Query = {
|
|
|
43054
43707
|
actions?: Maybe<Actions>;
|
|
43055
43708
|
activities?: Maybe<Activities>;
|
|
43056
43709
|
activity?: Maybe<Activity>;
|
|
43057
|
-
admin?: Maybe<AdminQuery>;
|
|
43058
43710
|
anchor?: Maybe<ContentPlatformAnchor>;
|
|
43059
43711
|
anchors: ContentPlatformAnchorContentSearchConnection;
|
|
43060
43712
|
app?: Maybe<App>;
|
|
@@ -43075,7 +43727,6 @@ export declare type Query = {
|
|
|
43075
43727
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
43076
43728
|
apps?: Maybe<AppConnection>;
|
|
43077
43729
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
43078
|
-
atlas?: Maybe<TownsquareQueryApi>;
|
|
43079
43730
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
43080
43731
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
43081
43732
|
boardScope?: Maybe<BoardScope>;
|
|
@@ -43139,6 +43790,7 @@ export declare type Query = {
|
|
|
43139
43790
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
43140
43791
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
43141
43792
|
jiraReleases?: Maybe<JiraReleases>;
|
|
43793
|
+
jsmChat?: Maybe<JsmChatQuery>;
|
|
43142
43794
|
jsw?: Maybe<JswQuery>;
|
|
43143
43795
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
43144
43796
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -43187,6 +43839,7 @@ export declare type Query = {
|
|
|
43187
43839
|
sandbox: SandboxQuery;
|
|
43188
43840
|
search?: Maybe<SearchQueryApi>;
|
|
43189
43841
|
shepherd?: Maybe<ShepherdQuery>;
|
|
43842
|
+
signup?: Maybe<SignupQueryApi>;
|
|
43190
43843
|
smarts?: Maybe<SmartsQueryApi>;
|
|
43191
43844
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
43192
43845
|
suggestions?: Maybe<AutoSuggestionApi>;
|
|
@@ -43779,6 +44432,18 @@ export declare type RefreshToken = {
|
|
|
43779
44432
|
export declare type RefreshTokenInput = {
|
|
43780
44433
|
refreshTokenRotation: Scalars['Boolean']['input'];
|
|
43781
44434
|
};
|
|
44435
|
+
export declare type RegisterTunnelInput = {
|
|
44436
|
+
appId: Scalars['ID']['input'];
|
|
44437
|
+
environmentKey: Scalars['String']['input'];
|
|
44438
|
+
};
|
|
44439
|
+
export declare type RegisterTunnelResponse = Payload & {
|
|
44440
|
+
__typename?: 'RegisterTunnelResponse';
|
|
44441
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44442
|
+
success: Scalars['Boolean']['output'];
|
|
44443
|
+
tunnelId?: Maybe<Scalars['String']['output']>;
|
|
44444
|
+
tunnelToken?: Maybe<Scalars['String']['output']>;
|
|
44445
|
+
tunnelUrl?: Maybe<Scalars['String']['output']>;
|
|
44446
|
+
};
|
|
43782
44447
|
export declare type Remote = {
|
|
43783
44448
|
__typename?: 'Remote';
|
|
43784
44449
|
baseUrl: Scalars['String']['output'];
|
|
@@ -44982,6 +45647,7 @@ export declare type SearchConfluenceFilter = {
|
|
|
44982
45647
|
export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
44983
45648
|
__typename?: 'SearchConfluencePageBlogAttachment';
|
|
44984
45649
|
confluenceEntity?: Maybe<SearchConfluenceEntity>;
|
|
45650
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
44985
45651
|
description: Scalars['String']['output'];
|
|
44986
45652
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
44987
45653
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
@@ -45113,6 +45779,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
45113
45779
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45114
45780
|
analytics?: InputMaybe<SearchAnalyticsInput>;
|
|
45115
45781
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
45782
|
+
enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45116
45783
|
experience: Scalars['String']['input'];
|
|
45117
45784
|
filters: SearchFilterInput;
|
|
45118
45785
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -45164,6 +45831,7 @@ export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
|
45164
45831
|
};
|
|
45165
45832
|
export declare type SearchResultGoogleDocument = SearchResult & {
|
|
45166
45833
|
__typename?: 'SearchResultGoogleDocument';
|
|
45834
|
+
bodyText: Scalars['String']['output'];
|
|
45167
45835
|
description: Scalars['String']['output'];
|
|
45168
45836
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
45169
45837
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -45231,10 +45899,24 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
45231
45899
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
45232
45900
|
id: Scalars['ID']['output'];
|
|
45233
45901
|
issue?: Maybe<JiraIssue>;
|
|
45902
|
+
status?: Maybe<SearchResultJiraIssueStatus>;
|
|
45234
45903
|
title: Scalars['String']['output'];
|
|
45235
45904
|
type: SearchResultType;
|
|
45236
45905
|
url: Scalars['URL']['output'];
|
|
45237
45906
|
};
|
|
45907
|
+
export declare type SearchResultJiraIssueStatus = {
|
|
45908
|
+
__typename?: 'SearchResultJiraIssueStatus';
|
|
45909
|
+
id: Scalars['ID']['output'];
|
|
45910
|
+
name: Scalars['String']['output'];
|
|
45911
|
+
statusCategory?: Maybe<SearchResultJiraIssueStatusCategory>;
|
|
45912
|
+
};
|
|
45913
|
+
export declare type SearchResultJiraIssueStatusCategory = {
|
|
45914
|
+
__typename?: 'SearchResultJiraIssueStatusCategory';
|
|
45915
|
+
colorName?: Maybe<Scalars['String']['output']>;
|
|
45916
|
+
id: Scalars['ID']['output'];
|
|
45917
|
+
key: Scalars['String']['output'];
|
|
45918
|
+
name: Scalars['String']['output'];
|
|
45919
|
+
};
|
|
45238
45920
|
export declare type SearchResultJiraProject = SearchResult & {
|
|
45239
45921
|
__typename?: 'SearchResultJiraProject';
|
|
45240
45922
|
canView: Scalars['Boolean']['output'];
|
|
@@ -45253,6 +45935,7 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
45253
45935
|
};
|
|
45254
45936
|
export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
45255
45937
|
__typename?: 'SearchResultMicrosoftDocument';
|
|
45938
|
+
bodyText: Scalars['String']['output'];
|
|
45256
45939
|
description: Scalars['String']['output'];
|
|
45257
45940
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
45258
45941
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -45525,6 +46208,7 @@ export declare type ShepherdActivityHighlight = {
|
|
|
45525
46208
|
categorizedMetadata?: Maybe<Array<ShepherdCategorizedAlertMetadata>>;
|
|
45526
46209
|
eventIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
45527
46210
|
histogram?: Maybe<Array<ShepherdActivityHistogramBucket>>;
|
|
46211
|
+
metadata?: Maybe<ShepherdAlertMetaData>;
|
|
45528
46212
|
resourceEvents?: Maybe<Array<ShepherdResourceEvent>>;
|
|
45529
46213
|
subject?: Maybe<ShepherdSubject>;
|
|
45530
46214
|
time?: Maybe<ShepherdTime>;
|
|
@@ -45657,6 +46341,10 @@ export declare type ShepherdAlertEdge = {
|
|
|
45657
46341
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
45658
46342
|
node?: Maybe<ShepherdAlert>;
|
|
45659
46343
|
};
|
|
46344
|
+
export declare type ShepherdAlertMetaData = {
|
|
46345
|
+
__typename?: 'ShepherdAlertMetaData';
|
|
46346
|
+
siteContainerResourceCount?: Maybe<Scalars['Int']['output']>;
|
|
46347
|
+
};
|
|
45660
46348
|
export declare type ShepherdAlertQueries = {
|
|
45661
46349
|
__typename?: 'ShepherdAlertQueries';
|
|
45662
46350
|
byAri?: Maybe<ShepherdAlertResult>;
|
|
@@ -45698,6 +46386,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
45698
46386
|
ConfluenceCustomDetection = "CONFLUENCE_CUSTOM_DETECTION",
|
|
45699
46387
|
ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
|
|
45700
46388
|
ConfluenceDataDiscoveryAtlassianToken = "CONFLUENCE_DATA_DISCOVERY_ATLASSIAN_TOKEN",
|
|
46389
|
+
ConfluenceDataDiscoveryAuTfn = "CONFLUENCE_DATA_DISCOVERY_AU_TFN",
|
|
45701
46390
|
ConfluenceDataDiscoveryAwsKeys = "CONFLUENCE_DATA_DISCOVERY_AWS_KEYS",
|
|
45702
46391
|
ConfluenceDataDiscoveryCreditCard = "CONFLUENCE_DATA_DISCOVERY_CREDIT_CARD",
|
|
45703
46392
|
ConfluenceDataDiscoveryCrypto = "CONFLUENCE_DATA_DISCOVERY_CRYPTO",
|
|
@@ -46019,6 +46708,9 @@ export declare type ShepherdDetectionRemoveSettingValuePayload = Payload & {
|
|
|
46019
46708
|
export declare type ShepherdDetectionResourceExclusion = {
|
|
46020
46709
|
__typename?: 'ShepherdDetectionResourceExclusion';
|
|
46021
46710
|
ari: Scalars['ID']['output'];
|
|
46711
|
+
createdBy?: Maybe<Scalars['ID']['output']>;
|
|
46712
|
+
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
46713
|
+
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
46022
46714
|
};
|
|
46023
46715
|
export declare enum ShepherdDetectionScanningFrequency {
|
|
46024
46716
|
RealTime = "REAL_TIME",
|
|
@@ -46067,20 +46759,22 @@ export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
|
46067
46759
|
};
|
|
46068
46760
|
export declare type ShepherdExclusionContentInfo = {
|
|
46069
46761
|
__typename?: 'ShepherdExclusionContentInfo';
|
|
46762
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
46070
46763
|
classification?: Maybe<Scalars['String']['output']>;
|
|
46071
46764
|
owner?: Maybe<Scalars['ID']['output']>;
|
|
46072
46765
|
product?: Maybe<ShepherdAtlassianProduct>;
|
|
46073
46766
|
site?: Maybe<ShepherdSite>;
|
|
46074
46767
|
space?: Maybe<Scalars['String']['output']>;
|
|
46075
46768
|
title?: Maybe<Scalars['String']['output']>;
|
|
46769
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
46076
46770
|
};
|
|
46077
46771
|
export declare type ShepherdExclusionContentInfoResult = QueryError | ShepherdExclusionContentInfo;
|
|
46078
46772
|
export declare type ShepherdExclusionsQueries = {
|
|
46079
46773
|
__typename?: 'ShepherdExclusionsQueries';
|
|
46080
|
-
|
|
46774
|
+
contentInfo?: Maybe<ShepherdExclusionContentInfoResult>;
|
|
46081
46775
|
};
|
|
46082
|
-
export declare type
|
|
46083
|
-
|
|
46776
|
+
export declare type ShepherdExclusionsQueriesContentInfoArgs = {
|
|
46777
|
+
contentUrlOrAri: Scalars['String']['input'];
|
|
46084
46778
|
productAti: Scalars['String']['input'];
|
|
46085
46779
|
workspaceId: Scalars['ID']['input'];
|
|
46086
46780
|
};
|
|
@@ -46279,6 +46973,7 @@ export declare type ShepherdResourceActivity = {
|
|
|
46279
46973
|
actor: ShepherdActor;
|
|
46280
46974
|
context: Array<ShepherdAuditLogContext>;
|
|
46281
46975
|
id: Scalars['String']['output'];
|
|
46976
|
+
message?: Maybe<Scalars['JSON']['output']>;
|
|
46282
46977
|
resourceAri: Scalars['String']['output'];
|
|
46283
46978
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
46284
46979
|
time: Scalars['DateTime']['output'];
|
|
@@ -46566,6 +47261,22 @@ export declare type ShepherdWorkspaceUpdateCustomDetectionInput = {
|
|
|
46566
47261
|
export declare type ShepherdWorkspaceUpdateInput = {
|
|
46567
47262
|
shouldOnboard: Scalars['Boolean']['input'];
|
|
46568
47263
|
};
|
|
47264
|
+
export declare type SignupProvisioningStatus = {
|
|
47265
|
+
__typename?: 'SignupProvisioningStatus';
|
|
47266
|
+
orchestrationId: Scalars['String']['output'];
|
|
47267
|
+
provisionComplete: Scalars['Boolean']['output'];
|
|
47268
|
+
};
|
|
47269
|
+
export declare type SignupQueryApi = {
|
|
47270
|
+
__typename?: 'SignupQueryApi';
|
|
47271
|
+
getSample: SignupProvisioningStatus;
|
|
47272
|
+
};
|
|
47273
|
+
export declare type SignupSubscriptionApi = {
|
|
47274
|
+
__typename?: 'SignupSubscriptionApi';
|
|
47275
|
+
signupProvisioningStatus?: Maybe<SignupProvisioningStatus>;
|
|
47276
|
+
};
|
|
47277
|
+
export declare type SignupSubscriptionApiSignupProvisioningStatusArgs = {
|
|
47278
|
+
orchestrationId: Scalars['String']['input'];
|
|
47279
|
+
};
|
|
46569
47280
|
export declare type SmartsContext = {
|
|
46570
47281
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
46571
47282
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46875,6 +47586,7 @@ export declare type Subscription = {
|
|
|
46875
47586
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
46876
47587
|
jira?: Maybe<JiraSubscription>;
|
|
46877
47588
|
sandbox: SandboxSubscription;
|
|
47589
|
+
signup: SignupSubscriptionApi;
|
|
46878
47590
|
testing?: Maybe<TestingSubscription>;
|
|
46879
47591
|
trello: TrelloSubscriptionApi;
|
|
46880
47592
|
};
|
|
@@ -47651,17 +48363,11 @@ export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
|
47651
48363
|
};
|
|
47652
48364
|
export declare type Toolchain = {
|
|
47653
48365
|
__typename?: 'Toolchain';
|
|
47654
|
-
check3LO?: Maybe<ToolchainCheck3Lo>;
|
|
47655
48366
|
checkAuth?: Maybe<ToolchainCheckAuth>;
|
|
47656
48367
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
47657
48368
|
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
47658
48369
|
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
47659
48370
|
};
|
|
47660
|
-
export declare type ToolchainCheck3LoArgs = {
|
|
47661
|
-
cloudId: Scalars['ID']['input'];
|
|
47662
|
-
providerId: Scalars['String']['input'];
|
|
47663
|
-
providerType?: InputMaybe<ToolchainProviderType>;
|
|
47664
|
-
};
|
|
47665
48371
|
export declare type ToolchainCheckAuthArgs = {
|
|
47666
48372
|
cloudId: Scalars['ID']['input'];
|
|
47667
48373
|
providerId: Scalars['String']['input'];
|
|
@@ -47729,10 +48435,6 @@ export declare type ToolchainAssociateEntityInput = {
|
|
|
47729
48435
|
};
|
|
47730
48436
|
export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsOperationsComponentDetails | DevOpsRepository | DevOpsService;
|
|
47731
48437
|
export declare type ToolchainAssociatedEntity = DevOpsDesign;
|
|
47732
|
-
export declare type ToolchainCheck3Lo = {
|
|
47733
|
-
__typename?: 'ToolchainCheck3LO';
|
|
47734
|
-
authorized: Scalars['Boolean']['output'];
|
|
47735
|
-
};
|
|
47736
48438
|
export declare type ToolchainCheck3LoAuth = ToolchainCheckAuth & {
|
|
47737
48439
|
__typename?: 'ToolchainCheck3LOAuth';
|
|
47738
48440
|
authorized: Scalars['Boolean']['output'];
|
|
@@ -47962,12 +48664,18 @@ export declare type TownsquareGoal = Node & {
|
|
|
47962
48664
|
key: Scalars['String']['output'];
|
|
47963
48665
|
name: Scalars['String']['output'];
|
|
47964
48666
|
owner?: Maybe<User>;
|
|
48667
|
+
parentGoal?: Maybe<TownsquareGoal>;
|
|
47965
48668
|
state?: Maybe<TownsquareGoalState>;
|
|
47966
48669
|
status?: Maybe<TownsquareStatus>;
|
|
48670
|
+
subGoals?: Maybe<TownsquareGoalConnection>;
|
|
47967
48671
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
47968
48672
|
url?: Maybe<Scalars['String']['output']>;
|
|
47969
48673
|
uuid: Scalars['String']['output'];
|
|
47970
48674
|
};
|
|
48675
|
+
export declare type TownsquareGoalSubGoalsArgs = {
|
|
48676
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48677
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48678
|
+
};
|
|
47971
48679
|
export declare type TownsquareGoalConnection = {
|
|
47972
48680
|
__typename?: 'TownsquareGoalConnection';
|
|
47973
48681
|
edges?: Maybe<Array<Maybe<TownsquareGoalEdge>>>;
|
|
@@ -48541,6 +49249,7 @@ export declare type TrelloBoardUpdatedDeltas = {
|
|
|
48541
49249
|
};
|
|
48542
49250
|
export declare type TrelloBoardViewer = {
|
|
48543
49251
|
__typename?: 'TrelloBoardViewer';
|
|
49252
|
+
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48544
49253
|
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
48545
49254
|
email?: Maybe<TrelloBoardViewerEmail>;
|
|
48546
49255
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -49095,6 +49804,7 @@ export declare type TrelloMutationApi = {
|
|
|
49095
49804
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
49096
49805
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
49097
49806
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
49807
|
+
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
49098
49808
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
49099
49809
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
49100
49810
|
};
|
|
@@ -49122,6 +49832,9 @@ export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
|
49122
49832
|
export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
49123
49833
|
input: TrelloUpdateBoardNameInput;
|
|
49124
49834
|
};
|
|
49835
|
+
export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
49836
|
+
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
49837
|
+
};
|
|
49125
49838
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
49126
49839
|
input: TrelloUpdateCardNameInput;
|
|
49127
49840
|
};
|
|
@@ -49360,6 +50073,16 @@ export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
|
49360
50073
|
errors?: Maybe<Array<MutationError>>;
|
|
49361
50074
|
success: Scalars['Boolean']['output'];
|
|
49362
50075
|
};
|
|
50076
|
+
export declare type TrelloUpdateBoardViewerAiEmailInput = {
|
|
50077
|
+
boardId: Scalars['ID']['input'];
|
|
50078
|
+
value: Scalars['Boolean']['input'];
|
|
50079
|
+
};
|
|
50080
|
+
export declare type TrelloUpdateBoardViewerAiEmailPayload = Payload & {
|
|
50081
|
+
__typename?: 'TrelloUpdateBoardViewerAIEmailPayload';
|
|
50082
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50083
|
+
success: Scalars['Boolean']['output'];
|
|
50084
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
50085
|
+
};
|
|
49363
50086
|
export declare type TrelloUpdateCardNameInput = {
|
|
49364
50087
|
cardId: Scalars['ID']['input'];
|
|
49365
50088
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -49914,6 +50637,7 @@ export declare type UpdatePolarisTimelineConfig = {
|
|
|
49914
50637
|
mode?: InputMaybe<PolarisTimelineMode>;
|
|
49915
50638
|
startDateField?: InputMaybe<Scalars['ID']['input']>;
|
|
49916
50639
|
startTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
50640
|
+
summaryCardField?: InputMaybe<Scalars['ID']['input']>;
|
|
49917
50641
|
};
|
|
49918
50642
|
export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
49919
50643
|
__typename?: 'UpdatePolarisViewArrangementInfoPayload';
|
|
@@ -50099,7 +50823,6 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
50099
50823
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
50100
50824
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
50101
50825
|
isEnabledOnJsmPortal?: Maybe<Scalars['Boolean']['output']>;
|
|
50102
|
-
properties?: Maybe<VirtualAgentProperties>;
|
|
50103
50826
|
respondToQueries: Scalars['Boolean']['output'];
|
|
50104
50827
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
50105
50828
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
@@ -50222,7 +50945,6 @@ export declare type VirtualAgentFeatures = {
|
|
|
50222
50945
|
isAiEnabledInAdminHub?: Maybe<Scalars['Boolean']['output']>;
|
|
50223
50946
|
isVirtualAgentAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
50224
50947
|
};
|
|
50225
|
-
export declare type VirtualAgentFeaturesResult = VirtualAgentFeatures | VirtualAgentQueryError;
|
|
50226
50948
|
export declare type VirtualAgentFlowEditor = Node & {
|
|
50227
50949
|
__typename?: 'VirtualAgentFlowEditor';
|
|
50228
50950
|
group?: Maybe<Scalars['String']['output']>;
|
|
@@ -50435,44 +51157,18 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
|
|
|
50435
51157
|
input: VirtualAgentUpdateConfigurationInput;
|
|
50436
51158
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
50437
51159
|
};
|
|
50438
|
-
export declare type VirtualAgentProperties = {
|
|
50439
|
-
__typename?: 'VirtualAgentProperties';
|
|
50440
|
-
defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
50441
|
-
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
50442
|
-
};
|
|
50443
|
-
export declare type VirtualAgentPropertiesInput = {};
|
|
50444
51160
|
export declare type VirtualAgentQueryApi = {
|
|
50445
51161
|
__typename?: 'VirtualAgentQueryApi';
|
|
50446
|
-
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
50447
|
-
intentTemplatesByProjectId?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
50448
51162
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
50449
|
-
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
50450
51163
|
virtualAgentEntitlements?: Maybe<VirtualAgentFeatures>;
|
|
50451
|
-
virtualAgentFeatures?: Maybe<VirtualAgentFeaturesResult>;
|
|
50452
|
-
};
|
|
50453
|
-
export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
|
|
50454
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
50455
|
-
filter: VirtualAgentIntentRuleProjectionsFilter;
|
|
50456
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50457
|
-
};
|
|
50458
|
-
export declare type VirtualAgentQueryApiIntentTemplatesByProjectIdArgs = {
|
|
50459
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
50460
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50461
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
50462
51164
|
};
|
|
50463
51165
|
export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
50464
51166
|
jiraProjectId: Scalars['ID']['input'];
|
|
50465
51167
|
requestTypeId: Scalars['String']['input'];
|
|
50466
51168
|
};
|
|
50467
|
-
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
50468
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
50469
|
-
};
|
|
50470
51169
|
export declare type VirtualAgentQueryApiVirtualAgentEntitlementsArgs = {
|
|
50471
51170
|
cloudId: Scalars['ID']['input'];
|
|
50472
51171
|
};
|
|
50473
|
-
export declare type VirtualAgentQueryApiVirtualAgentFeaturesArgs = {
|
|
50474
|
-
cloudId: Scalars['ID']['input'];
|
|
50475
|
-
};
|
|
50476
51172
|
export declare type VirtualAgentQueryError = {
|
|
50477
51173
|
__typename?: 'VirtualAgentQueryError';
|
|
50478
51174
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|