@forge/cli-shared 3.26.0-experimental-1c920ad → 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 +2 -2
- package/out/graphql/graphql-types.d.ts +132 -306
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +24 -109
- package/out/ui/text.js +1 -1
- package/package.json +1 -1
|
@@ -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
|
};
|
|
@@ -203,6 +204,7 @@ export declare type ActionsExecuteActionFilter = {
|
|
|
203
204
|
providerAri?: InputMaybe<Scalars['String']['input']>;
|
|
204
205
|
};
|
|
205
206
|
export declare type ActionsExecuteActionInput = {
|
|
207
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
206
208
|
inputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
207
209
|
};
|
|
208
210
|
export declare type ActionsExecuteResponse = {
|
|
@@ -523,259 +525,6 @@ export declare type AddPolarisColumnInput = {
|
|
|
523
525
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
524
526
|
};
|
|
525
527
|
export declare type Admin = JiraUser | JiraUserGroup;
|
|
526
|
-
export declare type AdminAllowlistFeature = {
|
|
527
|
-
__typename?: 'AdminAllowlistFeature';
|
|
528
|
-
ip: Scalars['Int']['output'];
|
|
529
|
-
};
|
|
530
|
-
export declare enum AdminAuditLogEventTypes {
|
|
531
|
-
AdminActivity = "ADMIN_ACTIVITY",
|
|
532
|
-
UserActivity = "USER_ACTIVITY"
|
|
533
|
-
}
|
|
534
|
-
export declare type AdminAuditLogFeature = {
|
|
535
|
-
__typename?: 'AdminAuditLogFeature';
|
|
536
|
-
allInclusive: Scalars['Boolean']['output'];
|
|
537
|
-
events: Array<Maybe<AdminAuditLogEventTypes>>;
|
|
538
|
-
};
|
|
539
|
-
export declare type AdminByokPolicy = {
|
|
540
|
-
__typename?: 'AdminByokPolicy';
|
|
541
|
-
awsAccount: Scalars['String']['output'];
|
|
542
|
-
policyId: Scalars['String']['output'];
|
|
543
|
-
policyName: Scalars['String']['output'];
|
|
544
|
-
};
|
|
545
|
-
export declare type AdminCheckWorkflowStatusOutput = {
|
|
546
|
-
__typename?: 'AdminCheckWorkflowStatusOutput';
|
|
547
|
-
status: AdminCheckWorkflowStatusResult;
|
|
548
|
-
};
|
|
549
|
-
export declare enum AdminCheckWorkflowStatusResult {
|
|
550
|
-
Executing = "EXECUTING",
|
|
551
|
-
Failure = "FAILURE",
|
|
552
|
-
Success = "SUCCESS"
|
|
553
|
-
}
|
|
554
|
-
export declare type AdminCreateWorkspaceInputAttributes = {
|
|
555
|
-
name: Scalars['String']['input'];
|
|
556
|
-
productKey: Scalars['String']['input'];
|
|
557
|
-
slug: Scalars['String']['input'];
|
|
558
|
-
type: Scalars['String']['input'];
|
|
559
|
-
};
|
|
560
|
-
export declare type AdminCreateWorkspaceOutput = {
|
|
561
|
-
__typename?: 'AdminCreateWorkspaceOutput';
|
|
562
|
-
id: Scalars['String']['output'];
|
|
563
|
-
workflowId: Scalars['String']['output'];
|
|
564
|
-
};
|
|
565
|
-
export declare type AdminDataResidencyFeature = {
|
|
566
|
-
__typename?: 'AdminDataResidencyFeature';
|
|
567
|
-
realms: Array<AdminRealmTypes>;
|
|
568
|
-
};
|
|
569
|
-
export declare type AdminEntitlementFeatures = {
|
|
570
|
-
__typename?: 'AdminEntitlementFeatures';
|
|
571
|
-
allowlisting?: Maybe<AdminAllowlistFeature>;
|
|
572
|
-
auditLog?: Maybe<AdminAuditLogFeature>;
|
|
573
|
-
dataResidency?: Maybe<AdminDataResidencyFeature>;
|
|
574
|
-
mobileDevicePolicy?: Maybe<AdminMobileDevicePolicyFeature>;
|
|
575
|
-
releaseTrack?: Maybe<AdminReleaseTrackFeature>;
|
|
576
|
-
sandbox?: Maybe<AdminSandboxFeature>;
|
|
577
|
-
};
|
|
578
|
-
export declare enum AdminFeatureType {
|
|
579
|
-
Allowlisting = "ALLOWLISTING",
|
|
580
|
-
AtlassianIntelligence = "ATLASSIAN_INTELLIGENCE"
|
|
581
|
-
}
|
|
582
|
-
export declare type AdminMobileDevicePolicyFeature = {
|
|
583
|
-
__typename?: 'AdminMobileDevicePolicyFeature';
|
|
584
|
-
enabled: Scalars['Boolean']['output'];
|
|
585
|
-
};
|
|
586
|
-
export declare type AdminMutation = {
|
|
587
|
-
__typename?: 'AdminMutation';
|
|
588
|
-
createWorkspace: AdminCreateWorkspaceOutput;
|
|
589
|
-
linkWorkspaceToOrg: Scalars['Boolean']['output'];
|
|
590
|
-
};
|
|
591
|
-
export declare type AdminMutationCreateWorkspaceArgs = {
|
|
592
|
-
attributes: AdminCreateWorkspaceInputAttributes;
|
|
593
|
-
orgId: Scalars['String']['input'];
|
|
594
|
-
};
|
|
595
|
-
export declare type AdminMutationLinkWorkspaceToOrgArgs = {
|
|
596
|
-
orgId: Scalars['String']['input'];
|
|
597
|
-
workspaceAri: Scalars['String']['input'];
|
|
598
|
-
};
|
|
599
|
-
export declare type AdminOrganization = {
|
|
600
|
-
__typename?: 'AdminOrganization';
|
|
601
|
-
checkWorkflowStatus: AdminCheckWorkflowStatusOutput;
|
|
602
|
-
id: Scalars['ID']['output'];
|
|
603
|
-
workspace: AdminWorkspace;
|
|
604
|
-
workspaceByUserContext: AdminWorkspace;
|
|
605
|
-
workspacePlans: Array<AdminWorkspacePlan>;
|
|
606
|
-
workspaceTypes: Array<AdminUiProductType>;
|
|
607
|
-
workspaces: AdminWorkspaces;
|
|
608
|
-
workspacesTotalCount: Scalars['Int']['output'];
|
|
609
|
-
};
|
|
610
|
-
export declare type AdminOrganizationCheckWorkflowStatusArgs = {
|
|
611
|
-
workflowId: Scalars['String']['input'];
|
|
612
|
-
};
|
|
613
|
-
export declare type AdminOrganizationWorkspaceArgs = {
|
|
614
|
-
id: Scalars['String']['input'];
|
|
615
|
-
};
|
|
616
|
-
export declare type AdminOrganizationWorkspaceByUserContextArgs = {
|
|
617
|
-
id: Scalars['String']['input'];
|
|
618
|
-
};
|
|
619
|
-
export declare type AdminOrganizationWorkspacesArgs = {
|
|
620
|
-
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
621
|
-
excludeSandboxes?: InputMaybe<Scalars['Boolean']['input']>;
|
|
622
|
-
features?: InputMaybe<Array<AdminFeatureType>>;
|
|
623
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
624
|
-
plans?: InputMaybe<Array<AdminWorkspacePlan>>;
|
|
625
|
-
policies?: InputMaybe<Array<AdminPolicyType>>;
|
|
626
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
627
|
-
shouldNotQueryAdminPortfolio?: InputMaybe<Scalars['Boolean']['input']>;
|
|
628
|
-
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
629
|
-
sortOrder?: InputMaybe<AdminSortOrder>;
|
|
630
|
-
types?: InputMaybe<Array<AdminUiProductType>>;
|
|
631
|
-
};
|
|
632
|
-
export declare enum AdminPolicyType {
|
|
633
|
-
CustomDomains = "CUSTOM_DOMAINS"
|
|
634
|
-
}
|
|
635
|
-
export declare type AdminProductEntitlements = {
|
|
636
|
-
__typename?: 'AdminProductEntitlements';
|
|
637
|
-
edition?: Maybe<Scalars['String']['output']>;
|
|
638
|
-
features: AdminEntitlementFeatures;
|
|
639
|
-
};
|
|
640
|
-
export declare type AdminProductLinks = {
|
|
641
|
-
__typename?: 'AdminProductLinks';
|
|
642
|
-
self?: Maybe<Scalars['String']['output']>;
|
|
643
|
-
};
|
|
644
|
-
export declare type AdminProductOffline = {
|
|
645
|
-
__typename?: 'AdminProductOffline';
|
|
646
|
-
reason: AdminProductOfflineReason;
|
|
647
|
-
};
|
|
648
|
-
export declare enum AdminProductOfflineReason {
|
|
649
|
-
Maintenance = "maintenance",
|
|
650
|
-
Migration = "migration",
|
|
651
|
-
Other = "other",
|
|
652
|
-
SandboxDataClone = "sandbox_data_clone",
|
|
653
|
-
SandboxDelete = "sandbox_delete",
|
|
654
|
-
SandboxReset = "sandbox_reset",
|
|
655
|
-
SandboxSoftDelete = "sandbox_soft_delete",
|
|
656
|
-
Support = "support",
|
|
657
|
-
SuspendedForDestruction = "suspended_for_destruction",
|
|
658
|
-
SuspendedPayment = "suspended_payment",
|
|
659
|
-
SuspendedSecurity = "suspended_security"
|
|
660
|
-
}
|
|
661
|
-
export declare type AdminQuery = {
|
|
662
|
-
__typename?: 'AdminQuery';
|
|
663
|
-
organization: AdminOrganization;
|
|
664
|
-
};
|
|
665
|
-
export declare type AdminQueryOrganizationArgs = {
|
|
666
|
-
id: Scalars['String']['input'];
|
|
667
|
-
};
|
|
668
|
-
export declare enum AdminRealmTypes {
|
|
669
|
-
Au = "au",
|
|
670
|
-
De = "de",
|
|
671
|
-
Eu = "eu",
|
|
672
|
-
Global = "global",
|
|
673
|
-
Sg = "sg",
|
|
674
|
-
Us = "us"
|
|
675
|
-
}
|
|
676
|
-
export declare type AdminReleaseTrackFeature = {
|
|
677
|
-
__typename?: 'AdminReleaseTrackFeature';
|
|
678
|
-
tracks: Array<AdminReleaseTrackTracks>;
|
|
679
|
-
};
|
|
680
|
-
export declare enum AdminReleaseTrackTracks {
|
|
681
|
-
FastTrack = "fastTrack",
|
|
682
|
-
PreviewTrack = "previewTrack",
|
|
683
|
-
ScheduledTrack = "scheduledTrack"
|
|
684
|
-
}
|
|
685
|
-
export declare type AdminSandboxFeature = {
|
|
686
|
-
__typename?: 'AdminSandboxFeature';
|
|
687
|
-
limit: Scalars['Int']['output'];
|
|
688
|
-
};
|
|
689
|
-
export declare enum AdminSandboxTypes {
|
|
690
|
-
Child = "CHILD",
|
|
691
|
-
None = "NONE"
|
|
692
|
-
}
|
|
693
|
-
export declare type AdminSiteSandbox = {
|
|
694
|
-
__typename?: 'AdminSiteSandbox';
|
|
695
|
-
parentId?: Maybe<Scalars['String']['output']>;
|
|
696
|
-
type: AdminSandboxTypes;
|
|
697
|
-
};
|
|
698
|
-
export declare enum AdminSortOrder {
|
|
699
|
-
Asc = "asc",
|
|
700
|
-
Desc = "desc"
|
|
701
|
-
}
|
|
702
|
-
export declare enum AdminUiProductType {
|
|
703
|
-
Analytics = "ANALYTICS",
|
|
704
|
-
Avocado = "AVOCADO",
|
|
705
|
-
Beacon = "BEACON",
|
|
706
|
-
Bitbucket = "BITBUCKET",
|
|
707
|
-
CloudAdmin = "CLOUD_ADMIN",
|
|
708
|
-
Compass = "COMPASS",
|
|
709
|
-
Confluence = "CONFLUENCE",
|
|
710
|
-
Fabric = "FABRIC",
|
|
711
|
-
JiraAdmin = "JIRA_ADMIN",
|
|
712
|
-
JiraCore = "JIRA_CORE",
|
|
713
|
-
JiraIncidentManager = "JIRA_INCIDENT_MANAGER",
|
|
714
|
-
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
715
|
-
JiraServiceDesk = "JIRA_SERVICE_DESK",
|
|
716
|
-
JiraSoftware = "JIRA_SOFTWARE",
|
|
717
|
-
Mercury = "MERCURY",
|
|
718
|
-
Opsgenie = "OPSGENIE",
|
|
719
|
-
Statuspage = "STATUSPAGE",
|
|
720
|
-
Stride = "STRIDE",
|
|
721
|
-
Teamcentral = "TEAMCENTRAL",
|
|
722
|
-
Trello = "TRELLO"
|
|
723
|
-
}
|
|
724
|
-
export declare type AdminWorkspace = {
|
|
725
|
-
__typename?: 'AdminWorkspace';
|
|
726
|
-
byok?: Maybe<AdminByokPolicy>;
|
|
727
|
-
capacity?: Maybe<Scalars['Int']['output']>;
|
|
728
|
-
entitlements?: Maybe<AdminProductEntitlements>;
|
|
729
|
-
id: Scalars['ID']['output'];
|
|
730
|
-
isCurrentUserPermittedToMutateRole?: Maybe<Scalars['Boolean']['output']>;
|
|
731
|
-
key: Scalars['String']['output'];
|
|
732
|
-
links?: Maybe<AdminProductLinks>;
|
|
733
|
-
name: Scalars['String']['output'];
|
|
734
|
-
offline?: Maybe<Array<AdminProductOffline>>;
|
|
735
|
-
provisionedDate?: Maybe<Scalars['String']['output']>;
|
|
736
|
-
realm?: Maybe<AdminRealmTypes>;
|
|
737
|
-
sandbox?: Maybe<AdminSiteSandbox>;
|
|
738
|
-
siteAvatarUrl?: Maybe<Scalars['String']['output']>;
|
|
739
|
-
siteDisplayName?: Maybe<Scalars['String']['output']>;
|
|
740
|
-
siteId?: Maybe<Scalars['String']['output']>;
|
|
741
|
-
type: AdminUiProductType;
|
|
742
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
743
|
-
usage?: Maybe<Scalars['Int']['output']>;
|
|
744
|
-
};
|
|
745
|
-
export declare type AdminWorkspaceIsCurrentUserPermittedToMutateRoleArgs = {
|
|
746
|
-
orgId: Scalars['String']['input'];
|
|
747
|
-
};
|
|
748
|
-
export declare type AdminWorkspaceAriArgs = {
|
|
749
|
-
__typename?: 'AdminWorkspaceAriArgs';
|
|
750
|
-
id: Scalars['String']['output'];
|
|
751
|
-
orgId: Scalars['String']['output'];
|
|
752
|
-
};
|
|
753
|
-
export declare enum AdminWorkspacePlan {
|
|
754
|
-
AtlassianTeams = "AtlassianTeams",
|
|
755
|
-
Beta = "Beta",
|
|
756
|
-
Bitbucket100UsersPremium = "Bitbucket100UsersPremium",
|
|
757
|
-
Enterprise = "Enterprise",
|
|
758
|
-
Essentials = "Essentials",
|
|
759
|
-
Free = "Free",
|
|
760
|
-
None = "None",
|
|
761
|
-
Premium = "Premium",
|
|
762
|
-
Standard = "Standard",
|
|
763
|
-
Unknown = "Unknown"
|
|
764
|
-
}
|
|
765
|
-
export declare type AdminWorkspaces = {
|
|
766
|
-
__typename?: 'AdminWorkspaces';
|
|
767
|
-
meta: AdminWorkspacesMeta;
|
|
768
|
-
products: Array<AdminWorkspace>;
|
|
769
|
-
};
|
|
770
|
-
export declare type AdminWorkspacesMeta = {
|
|
771
|
-
__typename?: 'AdminWorkspacesMeta';
|
|
772
|
-
endIndex?: Maybe<Scalars['Int']['output']>;
|
|
773
|
-
next?: Maybe<Scalars['String']['output']>;
|
|
774
|
-
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
775
|
-
prev?: Maybe<Scalars['String']['output']>;
|
|
776
|
-
startIndex?: Maybe<Scalars['Int']['output']>;
|
|
777
|
-
total?: Maybe<Scalars['Int']['output']>;
|
|
778
|
-
};
|
|
779
528
|
export declare enum AlertEventStatus {
|
|
780
529
|
Acknowledged = "ACKNOWLEDGED",
|
|
781
530
|
Closed = "CLOSED",
|
|
@@ -794,7 +543,6 @@ export declare enum ApiContext {
|
|
|
794
543
|
}
|
|
795
544
|
export declare enum ApiGroup {
|
|
796
545
|
Actions = "ACTIONS",
|
|
797
|
-
AdminGraphqlServer = "ADMIN_GRAPHQL_SERVER",
|
|
798
546
|
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
799
547
|
Caas = "CAAS",
|
|
800
548
|
CloudAdmin = "CLOUD_ADMIN",
|
|
@@ -1077,6 +825,7 @@ export declare type AppInstallation = {
|
|
|
1077
825
|
appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
|
|
1078
826
|
createdAt: Scalars['DateTime']['output'];
|
|
1079
827
|
createdBy?: Maybe<User>;
|
|
828
|
+
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
1080
829
|
id: Scalars['ID']['output'];
|
|
1081
830
|
installationContext: Scalars['ID']['output'];
|
|
1082
831
|
license?: Maybe<AppInstallationLicense>;
|
|
@@ -1908,6 +1657,7 @@ export declare type AtlassianAccountUserExtendedProfile = {
|
|
|
1908
1657
|
export declare type AtlassianOAuthClient = {
|
|
1909
1658
|
__typename?: 'AtlassianOAuthClient';
|
|
1910
1659
|
callbacks?: Maybe<Array<Scalars['String']['output']>>;
|
|
1660
|
+
clientARI: Scalars['ID']['output'];
|
|
1911
1661
|
clientID: Scalars['ID']['output'];
|
|
1912
1662
|
refreshToken?: Maybe<RefreshToken>;
|
|
1913
1663
|
};
|
|
@@ -5966,6 +5716,7 @@ export declare type ConfluenceBlogPost = {
|
|
|
5966
5716
|
body?: Maybe<ConfluenceBodies>;
|
|
5967
5717
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
5968
5718
|
id: Scalars['ID']['output'];
|
|
5719
|
+
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
5969
5720
|
latestVersion?: Maybe<ConfluenceBlogPostVersion>;
|
|
5970
5721
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
5971
5722
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
@@ -6524,6 +6275,7 @@ export declare type ConfluencePage = {
|
|
|
6524
6275
|
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
6525
6276
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
6526
6277
|
id: Scalars['ID']['output'];
|
|
6278
|
+
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
6527
6279
|
latestVersion?: Maybe<ConfluencePageVersion>;
|
|
6528
6280
|
likesSummary?: Maybe<ConfluenceLikesSummary>;
|
|
6529
6281
|
links?: Maybe<ConfluencePageLinks>;
|
|
@@ -11511,7 +11263,9 @@ export declare type ExtensionContextsFilter = {
|
|
|
11511
11263
|
value: Array<Scalars['String']['input']>;
|
|
11512
11264
|
};
|
|
11513
11265
|
export declare enum ExtensionContextsFilterType {
|
|
11266
|
+
AppIdEnvironmentId = "APP_ID_ENVIRONMENT_ID",
|
|
11514
11267
|
DataClassificationTag = "DATA_CLASSIFICATION_TAG",
|
|
11268
|
+
DefinitionId = "DEFINITION_ID",
|
|
11515
11269
|
ExtensionType = "EXTENSION_TYPE",
|
|
11516
11270
|
PrincipalType = "PRINCIPAL_TYPE"
|
|
11517
11271
|
}
|
|
@@ -26395,19 +26149,23 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
26395
26149
|
export declare type HelpLayoutAnnouncementInput = {
|
|
26396
26150
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26397
26151
|
};
|
|
26398
|
-
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
26152
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
26399
26153
|
export declare type HelpLayoutAtomicElementInput = {
|
|
26400
26154
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
26401
26155
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
26402
26156
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
26157
|
+
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
26403
26158
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
26404
26159
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
26160
|
+
portalsListInput?: InputMaybe<HelpLayoutPortalsListInput>;
|
|
26405
26161
|
searchConfigInput?: InputMaybe<HelpLayoutSearchConfigInput>;
|
|
26162
|
+
suggestedRequestFormsListInput?: InputMaybe<HelpLayoutSuggestedRequestFormsListInput>;
|
|
26406
26163
|
topicListInput?: InputMaybe<HelpLayoutTopicsListInput>;
|
|
26407
26164
|
};
|
|
26408
26165
|
export declare enum HelpLayoutAtomicElementKey {
|
|
26409
26166
|
Announcement = "ANNOUNCEMENT",
|
|
26410
26167
|
Heading = "HEADING",
|
|
26168
|
+
Hero = "HERO",
|
|
26411
26169
|
Image = "IMAGE",
|
|
26412
26170
|
Paragraph = "PARAGRAPH",
|
|
26413
26171
|
PortalsList = "PORTALS_LIST",
|
|
@@ -26442,7 +26200,6 @@ export declare type HelpLayoutCompositeElement = {
|
|
|
26442
26200
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26443
26201
|
};
|
|
26444
26202
|
export declare enum HelpLayoutCompositeElementKey {
|
|
26445
|
-
Hero = "HERO",
|
|
26446
26203
|
LinkCard = "LINK_CARD"
|
|
26447
26204
|
}
|
|
26448
26205
|
export declare type HelpLayoutCompositeElementType = HelpLayoutElementType & {
|
|
@@ -26472,10 +26229,13 @@ export declare type HelpLayoutElementInput = {
|
|
|
26472
26229
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
26473
26230
|
elementTypeKey: HelpLayoutElementKey;
|
|
26474
26231
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
26232
|
+
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
26475
26233
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
26476
26234
|
linkCardInput?: InputMaybe<HelpLayoutLinkCardInput>;
|
|
26477
26235
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
26236
|
+
portalsListInput?: InputMaybe<HelpLayoutPortalsListInput>;
|
|
26478
26237
|
searchConfigInput?: InputMaybe<HelpLayoutSearchConfigInput>;
|
|
26238
|
+
suggestedRequestFormsListInput?: InputMaybe<HelpLayoutSuggestedRequestFormsListInput>;
|
|
26479
26239
|
topicListInput?: InputMaybe<HelpLayoutTopicsListInput>;
|
|
26480
26240
|
};
|
|
26481
26241
|
export declare enum HelpLayoutElementKey {
|
|
@@ -26520,13 +26280,21 @@ export declare enum HelpLayoutHeadingType {
|
|
|
26520
26280
|
H5 = "h5",
|
|
26521
26281
|
H6 = "h6"
|
|
26522
26282
|
}
|
|
26523
|
-
export declare type HelpLayoutHeroElement =
|
|
26283
|
+
export declare type HelpLayoutHeroElement = HelpLayoutVisualEntity & Node & {
|
|
26524
26284
|
__typename?: 'HelpLayoutHeroElement';
|
|
26525
|
-
|
|
26526
|
-
elementType?: Maybe<
|
|
26285
|
+
data?: Maybe<HelpLayoutHeroElementData>;
|
|
26286
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
26527
26287
|
id: Scalars['ID']['output'];
|
|
26528
26288
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26529
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
|
+
};
|
|
26530
26298
|
export declare enum HelpLayoutHorizontalAlignment {
|
|
26531
26299
|
Center = "CENTER",
|
|
26532
26300
|
Left = "LEFT",
|
|
@@ -26639,6 +26407,9 @@ export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node
|
|
|
26639
26407
|
id: Scalars['ID']['output'];
|
|
26640
26408
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26641
26409
|
};
|
|
26410
|
+
export declare type HelpLayoutPortalsListInput = {
|
|
26411
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26412
|
+
};
|
|
26642
26413
|
export declare type HelpLayoutQueryApi = {
|
|
26643
26414
|
__typename?: 'HelpLayoutQueryApi';
|
|
26644
26415
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
@@ -26732,6 +26503,9 @@ export declare type HelpLayoutSuggestedRequestFormsListElementData = {
|
|
|
26732
26503
|
__typename?: 'HelpLayoutSuggestedRequestFormsListElementData';
|
|
26733
26504
|
suggestedRequestTypes?: Maybe<Array<HelpLayoutRequestForm>>;
|
|
26734
26505
|
};
|
|
26506
|
+
export declare type HelpLayoutSuggestedRequestFormsListInput = {
|
|
26507
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26508
|
+
};
|
|
26735
26509
|
export declare type HelpLayoutTopic = {
|
|
26736
26510
|
__typename?: 'HelpLayoutTopic';
|
|
26737
26511
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -27443,6 +27217,7 @@ export declare type InsightsGithubOnboardingActionInput = {
|
|
|
27443
27217
|
};
|
|
27444
27218
|
export declare type InsightsGithubOnboardingActionResponse = Payload & {
|
|
27445
27219
|
__typename?: 'InsightsGithubOnboardingActionResponse';
|
|
27220
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
27446
27221
|
errors?: Maybe<Array<MutationError>>;
|
|
27447
27222
|
success: Scalars['Boolean']['output'];
|
|
27448
27223
|
};
|
|
@@ -28955,6 +28730,7 @@ export declare type JiraCalendarUnscheduledIssuesArgs = {
|
|
|
28955
28730
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28956
28731
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
28957
28732
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28733
|
+
input?: InputMaybe<JiraCalendarIssuesInput>;
|
|
28958
28734
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28959
28735
|
};
|
|
28960
28736
|
export declare type JiraCalendarVersionsArgs = {
|
|
@@ -30217,6 +29993,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
30217
29993
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
30218
29994
|
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
30219
29995
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
29996
|
+
resumeAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
30220
29997
|
retryAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
30221
29998
|
saveAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
30222
29999
|
setProjectSelectedDeploymentAppsProperty?: Maybe<JiraSetProjectSelectedDeploymentAppsPropertyPayload>;
|
|
@@ -30263,6 +30040,10 @@ export declare type JiraDevOpsMutationRemoveJiraBitbucketWorkspaceConnectionArgs
|
|
|
30263
30040
|
cloudId: Scalars['ID']['input'];
|
|
30264
30041
|
input: JiraRemoveJiraBitbucketWorkspaceConnectionInput;
|
|
30265
30042
|
};
|
|
30043
|
+
export declare type JiraDevOpsMutationResumeAutodevJobArgs = {
|
|
30044
|
+
issueAri: Scalars['ID']['input'];
|
|
30045
|
+
jobId: Scalars['ID']['input'];
|
|
30046
|
+
};
|
|
30266
30047
|
export declare type JiraDevOpsMutationRetryAutodevJobArgs = {
|
|
30267
30048
|
issueAri: Scalars['ID']['input'];
|
|
30268
30049
|
jobId: Scalars['ID']['input'];
|
|
@@ -30399,6 +30180,19 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
30399
30180
|
errors?: Maybe<Array<MutationError>>;
|
|
30400
30181
|
success: Scalars['Boolean']['output'];
|
|
30401
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
|
+
};
|
|
30402
30196
|
export declare type JiraDurationFieldInput = {
|
|
30403
30197
|
originalEstimateField?: InputMaybe<Scalars['String']['input']>;
|
|
30404
30198
|
};
|
|
@@ -30531,7 +30325,8 @@ export declare type JiraFavouriteEdge = {
|
|
|
30531
30325
|
node?: Maybe<JiraFavourite>;
|
|
30532
30326
|
};
|
|
30533
30327
|
export declare type JiraFavouriteFilter = {
|
|
30534
|
-
type
|
|
30328
|
+
type?: InputMaybe<JiraFavouriteType>;
|
|
30329
|
+
types?: InputMaybe<Array<JiraFavouriteType>>;
|
|
30535
30330
|
};
|
|
30536
30331
|
export declare enum JiraFavouriteType {
|
|
30537
30332
|
Board = "BOARD",
|
|
@@ -31153,6 +30948,7 @@ export declare type JiraIssue = Node & {
|
|
|
31153
30948
|
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
31154
30949
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
31155
30950
|
comments?: Maybe<JiraCommentConnection>;
|
|
30951
|
+
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
31156
30952
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
31157
30953
|
descriptionField?: Maybe<JiraRichTextField>;
|
|
31158
30954
|
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
@@ -33103,7 +32899,7 @@ export declare type JiraMultipleGroupPickerFieldInput = {
|
|
|
33103
32899
|
groups: Array<JiraGroupInput>;
|
|
33104
32900
|
};
|
|
33105
32901
|
export declare type JiraMultipleGroupPickerFieldOperationInput = {
|
|
33106
|
-
|
|
32902
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
33107
32903
|
operation: JiraMultiValueFieldOperations;
|
|
33108
32904
|
};
|
|
33109
32905
|
export declare type JiraMultipleGroupPickerFieldPayload = Payload & {
|
|
@@ -34694,6 +34490,7 @@ export declare type JiraProject = Node & {
|
|
|
34694
34490
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
34695
34491
|
projectType?: Maybe<JiraProjectType>;
|
|
34696
34492
|
projectUrl?: Maybe<Scalars['String']['output']>;
|
|
34493
|
+
repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
|
|
34697
34494
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
34698
34495
|
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
34699
34496
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
@@ -34790,6 +34587,12 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
|
34790
34587
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34791
34588
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34792
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
|
+
};
|
|
34793
34596
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
34794
34597
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34795
34598
|
filter?: InputMaybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
@@ -36734,7 +36537,7 @@ export declare type JiraScreenTabLayoutItemEdge = {
|
|
|
36734
36537
|
cursor: Scalars['String']['output'];
|
|
36735
36538
|
node?: Maybe<JiraScreenTabLayoutItem>;
|
|
36736
36539
|
};
|
|
36737
|
-
export declare type JiraSearchableEntity = JiraBoard | JiraCustomFilter | JiraDashboard | JiraProject | JiraSystemFilter;
|
|
36540
|
+
export declare type JiraSearchableEntity = JiraBoard | JiraCustomFilter | JiraDashboard | JiraIssue | JiraProject | JiraServiceManagementQueue | JiraSystemFilter;
|
|
36738
36541
|
export declare type JiraSearchableEntityConnection = {
|
|
36739
36542
|
__typename?: 'JiraSearchableEntityConnection';
|
|
36740
36543
|
edges?: Maybe<Array<Maybe<JiraSearchableEntityEdge>>>;
|
|
@@ -36749,7 +36552,9 @@ export declare enum JiraSearchableEntityType {
|
|
|
36749
36552
|
Board = "BOARD",
|
|
36750
36553
|
Dashboard = "DASHBOARD",
|
|
36751
36554
|
Filter = "FILTER",
|
|
36752
|
-
|
|
36555
|
+
Issue = "ISSUE",
|
|
36556
|
+
Project = "PROJECT",
|
|
36557
|
+
Queue = "QUEUE"
|
|
36753
36558
|
}
|
|
36754
36559
|
export declare type JiraSecurityLevel = Node & {
|
|
36755
36560
|
__typename?: 'JiraSecurityLevel';
|
|
@@ -37866,7 +37671,7 @@ export declare type JiraSingleGroupPickerFieldInput = {
|
|
|
37866
37671
|
group: JiraGroupInput;
|
|
37867
37672
|
};
|
|
37868
37673
|
export declare type JiraSingleGroupPickerFieldOperationInput = {
|
|
37869
|
-
|
|
37674
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
37870
37675
|
operation: JiraSingleValueFieldOperations;
|
|
37871
37676
|
};
|
|
37872
37677
|
export declare type JiraSingleGroupPickerFieldPayload = Payload & {
|
|
@@ -40234,15 +40039,6 @@ export declare type JsmChatChannelSettings = {
|
|
|
40234
40039
|
isVirtualAgentChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40235
40040
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40236
40041
|
};
|
|
40237
|
-
export declare type JsmChatChatConfigSlack = {
|
|
40238
|
-
__typename?: 'JsmChatChatConfigSlack';
|
|
40239
|
-
botUserId?: Maybe<Scalars['String']['output']>;
|
|
40240
|
-
channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
|
|
40241
|
-
projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
|
|
40242
|
-
siteId: Scalars['ID']['output'];
|
|
40243
|
-
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40244
|
-
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
40245
|
-
};
|
|
40246
40042
|
export declare type JsmChatGetSlackChatConfigInput = {
|
|
40247
40043
|
activationId: Scalars['ID']['input'];
|
|
40248
40044
|
projectId: Scalars['ID']['input'];
|
|
@@ -40277,7 +40073,7 @@ export declare type JsmChatProjectSettingsSlack = {
|
|
|
40277
40073
|
};
|
|
40278
40074
|
export declare type JsmChatQuery = {
|
|
40279
40075
|
__typename?: 'JsmChatQuery';
|
|
40280
|
-
getSlackChatConfig?: Maybe<
|
|
40076
|
+
getSlackChatConfig?: Maybe<JsmChatSlackConfig>;
|
|
40281
40077
|
initializeConfig: JsmChatInitializeConfigResponse;
|
|
40282
40078
|
};
|
|
40283
40079
|
export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
@@ -40286,6 +40082,15 @@ export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
|
40286
40082
|
export declare type JsmChatQueryInitializeConfigArgs = {
|
|
40287
40083
|
input: JsmChatInitializeConfigRequest;
|
|
40288
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
|
+
};
|
|
40289
40094
|
export declare type JswMutation = {
|
|
40290
40095
|
__typename?: 'JswMutation';
|
|
40291
40096
|
deleteCard?: Maybe<DeleteCardOutput>;
|
|
@@ -40330,6 +40135,14 @@ export declare type KnowledgeDiscoveryDefinitionList = {
|
|
|
40330
40135
|
definitions?: Maybe<Array<Maybe<KnowledgeDiscoveryDefinition>>>;
|
|
40331
40136
|
};
|
|
40332
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
|
+
}
|
|
40333
40146
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
40334
40147
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
40335
40148
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
@@ -40341,6 +40154,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
40341
40154
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
40342
40155
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
40343
40156
|
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
40157
|
+
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntityConnection>;
|
|
40344
40158
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
40345
40159
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
40346
40160
|
};
|
|
@@ -40352,6 +40166,15 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
|
40352
40166
|
keyPhrase: Scalars['String']['input'];
|
|
40353
40167
|
workspaceId: Scalars['String']['input'];
|
|
40354
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
|
+
};
|
|
40355
40178
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
40356
40179
|
locale: Scalars['String']['input'];
|
|
40357
40180
|
query: Scalars['String']['input'];
|
|
@@ -40362,6 +40185,18 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
40362
40185
|
id: Scalars['String']['input'];
|
|
40363
40186
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
40364
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;
|
|
40365
40200
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
40366
40201
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
40367
40202
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
@@ -40374,7 +40209,7 @@ export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
|
40374
40209
|
transformedQuery: Scalars['String']['output'];
|
|
40375
40210
|
};
|
|
40376
40211
|
export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
|
|
40377
|
-
export declare type KnowledgeDiscoveryTopic = {
|
|
40212
|
+
export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
40378
40213
|
__typename?: 'KnowledgeDiscoveryTopic';
|
|
40379
40214
|
description: Scalars['String']['output'];
|
|
40380
40215
|
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -41142,7 +40977,6 @@ export declare type Mutation = {
|
|
|
41142
40977
|
ForgeAi?: Maybe<ForgeAiMutation>;
|
|
41143
40978
|
actions?: Maybe<ActionsMutation>;
|
|
41144
40979
|
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
41145
|
-
admin?: Maybe<AdminMutation>;
|
|
41146
40980
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
41147
40981
|
appStorage?: Maybe<AppStorageMutation>;
|
|
41148
40982
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -41242,6 +41076,7 @@ export declare type Mutation = {
|
|
|
41242
41076
|
rankCustomFilter?: Maybe<GenericMutationResponse>;
|
|
41243
41077
|
rateLimitTest?: Maybe<GenericMutationResponse>;
|
|
41244
41078
|
refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
|
|
41079
|
+
registerTunnel?: Maybe<RegisterTunnelResponse>;
|
|
41245
41080
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
41246
41081
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
41247
41082
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
@@ -41560,6 +41395,9 @@ export declare type MutationRateLimitTestArgs = {
|
|
|
41560
41395
|
export declare type MutationRefreshPolarisSnippetsArgs = {
|
|
41561
41396
|
input: RefreshPolarisSnippetsInput;
|
|
41562
41397
|
};
|
|
41398
|
+
export declare type MutationRegisterTunnelArgs = {
|
|
41399
|
+
input: RegisterTunnelInput;
|
|
41400
|
+
};
|
|
41563
41401
|
export declare type MutationResolvePolarisObjectArgs = {
|
|
41564
41402
|
input: ResolvePolarisObjectInput;
|
|
41565
41403
|
};
|
|
@@ -43869,7 +43707,6 @@ export declare type Query = {
|
|
|
43869
43707
|
actions?: Maybe<Actions>;
|
|
43870
43708
|
activities?: Maybe<Activities>;
|
|
43871
43709
|
activity?: Maybe<Activity>;
|
|
43872
|
-
admin?: Maybe<AdminQuery>;
|
|
43873
43710
|
anchor?: Maybe<ContentPlatformAnchor>;
|
|
43874
43711
|
anchors: ContentPlatformAnchorContentSearchConnection;
|
|
43875
43712
|
app?: Maybe<App>;
|
|
@@ -44595,6 +44432,18 @@ export declare type RefreshToken = {
|
|
|
44595
44432
|
export declare type RefreshTokenInput = {
|
|
44596
44433
|
refreshTokenRotation: Scalars['Boolean']['input'];
|
|
44597
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
|
+
};
|
|
44598
44447
|
export declare type Remote = {
|
|
44599
44448
|
__typename?: 'Remote';
|
|
44600
44449
|
baseUrl: Scalars['String']['output'];
|
|
@@ -45930,6 +45779,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
45930
45779
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45931
45780
|
analytics?: InputMaybe<SearchAnalyticsInput>;
|
|
45932
45781
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
45782
|
+
enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45933
45783
|
experience: Scalars['String']['input'];
|
|
45934
45784
|
filters: SearchFilterInput;
|
|
45935
45785
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -46536,6 +46386,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
46536
46386
|
ConfluenceCustomDetection = "CONFLUENCE_CUSTOM_DETECTION",
|
|
46537
46387
|
ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
|
|
46538
46388
|
ConfluenceDataDiscoveryAtlassianToken = "CONFLUENCE_DATA_DISCOVERY_ATLASSIAN_TOKEN",
|
|
46389
|
+
ConfluenceDataDiscoveryAuTfn = "CONFLUENCE_DATA_DISCOVERY_AU_TFN",
|
|
46539
46390
|
ConfluenceDataDiscoveryAwsKeys = "CONFLUENCE_DATA_DISCOVERY_AWS_KEYS",
|
|
46540
46391
|
ConfluenceDataDiscoveryCreditCard = "CONFLUENCE_DATA_DISCOVERY_CREDIT_CARD",
|
|
46541
46392
|
ConfluenceDataDiscoveryCrypto = "CONFLUENCE_DATA_DISCOVERY_CRYPTO",
|
|
@@ -47423,6 +47274,9 @@ export declare type SignupSubscriptionApi = {
|
|
|
47423
47274
|
__typename?: 'SignupSubscriptionApi';
|
|
47424
47275
|
signupProvisioningStatus?: Maybe<SignupProvisioningStatus>;
|
|
47425
47276
|
};
|
|
47277
|
+
export declare type SignupSubscriptionApiSignupProvisioningStatusArgs = {
|
|
47278
|
+
orchestrationId: Scalars['String']['input'];
|
|
47279
|
+
};
|
|
47426
47280
|
export declare type SmartsContext = {
|
|
47427
47281
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
47428
47282
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -47732,7 +47586,7 @@ export declare type Subscription = {
|
|
|
47732
47586
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
47733
47587
|
jira?: Maybe<JiraSubscription>;
|
|
47734
47588
|
sandbox: SandboxSubscription;
|
|
47735
|
-
signup
|
|
47589
|
+
signup: SignupSubscriptionApi;
|
|
47736
47590
|
testing?: Maybe<TestingSubscription>;
|
|
47737
47591
|
trello: TrelloSubscriptionApi;
|
|
47738
47592
|
};
|
|
@@ -50969,7 +50823,6 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
50969
50823
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
50970
50824
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
50971
50825
|
isEnabledOnJsmPortal?: Maybe<Scalars['Boolean']['output']>;
|
|
50972
|
-
properties?: Maybe<VirtualAgentProperties>;
|
|
50973
50826
|
respondToQueries: Scalars['Boolean']['output'];
|
|
50974
50827
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
50975
50828
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
@@ -51092,7 +50945,6 @@ export declare type VirtualAgentFeatures = {
|
|
|
51092
50945
|
isAiEnabledInAdminHub?: Maybe<Scalars['Boolean']['output']>;
|
|
51093
50946
|
isVirtualAgentAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
51094
50947
|
};
|
|
51095
|
-
export declare type VirtualAgentFeaturesResult = VirtualAgentFeatures | VirtualAgentQueryError;
|
|
51096
50948
|
export declare type VirtualAgentFlowEditor = Node & {
|
|
51097
50949
|
__typename?: 'VirtualAgentFlowEditor';
|
|
51098
50950
|
group?: Maybe<Scalars['String']['output']>;
|
|
@@ -51305,44 +51157,18 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
|
|
|
51305
51157
|
input: VirtualAgentUpdateConfigurationInput;
|
|
51306
51158
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
51307
51159
|
};
|
|
51308
|
-
export declare type VirtualAgentProperties = {
|
|
51309
|
-
__typename?: 'VirtualAgentProperties';
|
|
51310
|
-
defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
51311
|
-
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
51312
|
-
};
|
|
51313
|
-
export declare type VirtualAgentPropertiesInput = {};
|
|
51314
51160
|
export declare type VirtualAgentQueryApi = {
|
|
51315
51161
|
__typename?: 'VirtualAgentQueryApi';
|
|
51316
|
-
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
51317
|
-
intentTemplatesByProjectId?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
51318
51162
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
51319
|
-
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
51320
51163
|
virtualAgentEntitlements?: Maybe<VirtualAgentFeatures>;
|
|
51321
|
-
virtualAgentFeatures?: Maybe<VirtualAgentFeaturesResult>;
|
|
51322
|
-
};
|
|
51323
|
-
export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
|
|
51324
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
51325
|
-
filter: VirtualAgentIntentRuleProjectionsFilter;
|
|
51326
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51327
|
-
};
|
|
51328
|
-
export declare type VirtualAgentQueryApiIntentTemplatesByProjectIdArgs = {
|
|
51329
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
51330
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51331
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
51332
51164
|
};
|
|
51333
51165
|
export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
51334
51166
|
jiraProjectId: Scalars['ID']['input'];
|
|
51335
51167
|
requestTypeId: Scalars['String']['input'];
|
|
51336
51168
|
};
|
|
51337
|
-
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
51338
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
51339
|
-
};
|
|
51340
51169
|
export declare type VirtualAgentQueryApiVirtualAgentEntitlementsArgs = {
|
|
51341
51170
|
cloudId: Scalars['ID']['input'];
|
|
51342
51171
|
};
|
|
51343
|
-
export declare type VirtualAgentQueryApiVirtualAgentFeaturesArgs = {
|
|
51344
|
-
cloudId: Scalars['ID']['input'];
|
|
51345
|
-
};
|
|
51346
51172
|
export declare type VirtualAgentQueryError = {
|
|
51347
51173
|
__typename?: 'VirtualAgentQueryError';
|
|
51348
51174
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|