@forge/cli-shared 3.26.1-next.2 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/out/app-logs/graphql-client.js +9 -2
- package/out/app-logs/view-logs.js +4 -0
- package/out/apps/app-config.js +4 -1
- package/out/apps/create-an-app.js +3 -0
- package/out/apps/create-app-graphql-client.js +1 -0
- package/out/apps/get-app-owner.js +2 -0
- package/out/apps/package-installer.js +1 -0
- package/out/apps/register-app.js +8 -1
- package/out/apps/template.js +5 -0
- package/out/auth/personal/credential-store.js +7 -2
- package/out/auth/personal/login.js +8 -2
- package/out/auth/personal/logout.js +1 -0
- package/out/auth/personal/me-graphql-client.js +2 -0
- package/out/auth/personal/token-authenticator.js +1 -0
- package/out/cache/cached-conf.js +1 -0
- package/out/config/config-file-section-reader.js +4 -0
- package/out/config/config-file-section-writer.js +2 -0
- package/out/config/config-file.d.ts +2 -2
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +37 -44
- package/out/config/config-section.js +1 -0
- package/out/file-system/file-system-reader.js +2 -2
- package/out/graphql/app-environment-graphql-client.js +1 -0
- package/out/graphql/app-oauth-client-id-graphql-client.js +1 -0
- package/out/graphql/debugging-graphql-runner.js +3 -0
- package/out/graphql/get-mutation-error.js +4 -5
- package/out/graphql/graphql-types.d.ts +506 -261
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +95 -108
- package/out/graphql/minimal-graphql-runner.js +30 -22
- package/out/graphql/mutation-aware-graphql-client.js +14 -10
- package/out/http-client/feedback-post-client.js +1 -3
- package/out/http-client/file-uploader.js +1 -0
- package/out/http-client/global-edge-http-client.js +1 -0
- package/out/http-client/trace.js +1 -2
- package/out/runtimes/helper.js +1 -1
- package/out/service/bridge-script-service.js +1 -0
- package/out/service/feature-flag-service.js +50 -46
- package/out/service/iframe-resizer-script-service.js +1 -0
- package/out/shared/cli-details.js +2 -2
- package/out/shared/error-handling.js +5 -3
- package/out/shared/product.js +2 -4
- package/out/shared/read-app-config-files.js +7 -5
- package/out/shared/validate.js +1 -1
- package/out/ui/command-line-ui.js +14 -8
- package/out/ui/multiple-table-prompt.js +1 -1
- package/out/ui/table-prompt.js +8 -1
- package/package.json +3 -3
|
@@ -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
|
};
|
|
@@ -5017,6 +4767,29 @@ export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTim
|
|
|
5017
4767
|
export declare type CompassPlainMetricSourceConfigurationInput = {
|
|
5018
4768
|
query: Scalars['String']['input'];
|
|
5019
4769
|
};
|
|
4770
|
+
export declare type CompassPullRequest = Node & {
|
|
4771
|
+
__typename?: 'CompassPullRequest';
|
|
4772
|
+
changeMetadata: CompassChangeMetadata;
|
|
4773
|
+
externalChangeMetadata?: Maybe<CompassChangeMetadata>;
|
|
4774
|
+
externalId: Scalars['ID']['output'];
|
|
4775
|
+
externalSourceId?: Maybe<Scalars['ID']['output']>;
|
|
4776
|
+
id: Scalars['ID']['output'];
|
|
4777
|
+
pullRequestUrl?: Maybe<Scalars['URL']['output']>;
|
|
4778
|
+
repositoryUrl?: Maybe<Scalars['URL']['output']>;
|
|
4779
|
+
statusTimestamps?: Maybe<CompassStatusTimeStamps>;
|
|
4780
|
+
};
|
|
4781
|
+
export declare type CompassPullRequestConnection = {
|
|
4782
|
+
__typename?: 'CompassPullRequestConnection';
|
|
4783
|
+
edges?: Maybe<Array<Maybe<CompassPullRequestConnectionEdge>>>;
|
|
4784
|
+
nodes?: Maybe<Array<Maybe<CompassPullRequest>>>;
|
|
4785
|
+
pageInfo: PageInfo;
|
|
4786
|
+
stats?: Maybe<CompassPullRequestStats>;
|
|
4787
|
+
};
|
|
4788
|
+
export declare type CompassPullRequestConnectionEdge = {
|
|
4789
|
+
__typename?: 'CompassPullRequestConnectionEdge';
|
|
4790
|
+
cursor: Scalars['String']['output'];
|
|
4791
|
+
node?: Maybe<CompassPullRequest>;
|
|
4792
|
+
};
|
|
5020
4793
|
export declare type CompassPullRequestEvent = CompassEvent & {
|
|
5021
4794
|
__typename?: 'CompassPullRequestEvent';
|
|
5022
4795
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -5040,6 +4813,36 @@ export declare type CompassPullRequestInputProperties = {
|
|
|
5040
4813
|
repoUrl: Scalars['String']['input'];
|
|
5041
4814
|
status: CompassCreatePullRequestStatus;
|
|
5042
4815
|
};
|
|
4816
|
+
export declare enum CompassPullRequestQuerySortName {
|
|
4817
|
+
PrClosedTime = "PR_CLOSED_TIME",
|
|
4818
|
+
PrCreatedTime = "PR_CREATED_TIME"
|
|
4819
|
+
}
|
|
4820
|
+
export declare type CompassPullRequestStats = {
|
|
4821
|
+
__typename?: 'CompassPullRequestStats';
|
|
4822
|
+
closed?: Maybe<Scalars['Int']['output']>;
|
|
4823
|
+
firstReviewed?: Maybe<Scalars['Int']['output']>;
|
|
4824
|
+
open?: Maybe<Scalars['Int']['output']>;
|
|
4825
|
+
overdue?: Maybe<Scalars['Int']['output']>;
|
|
4826
|
+
};
|
|
4827
|
+
export declare enum CompassPullRequestStatus {
|
|
4828
|
+
Created = "CREATED",
|
|
4829
|
+
FirstReviewed = "FIRST_REVIEWED",
|
|
4830
|
+
Merged = "MERGED",
|
|
4831
|
+
Overdue = "OVERDUE",
|
|
4832
|
+
Rejected = "REJECTED"
|
|
4833
|
+
}
|
|
4834
|
+
export declare type CompassPullRequestsQuery = {
|
|
4835
|
+
matchAnyCurrentStatus?: InputMaybe<Array<CompassPullRequestStatus>>;
|
|
4836
|
+
matchAnyFilters?: InputMaybe<Array<CompassPullRequestsQueryFilter>>;
|
|
4837
|
+
sort?: InputMaybe<CompassPullRequestsQuerySort>;
|
|
4838
|
+
};
|
|
4839
|
+
export declare type CompassPullRequestsQueryFilter = {
|
|
4840
|
+
statusInTimeRange?: InputMaybe<PullRequestStatusInTimeRangeQueryFilter>;
|
|
4841
|
+
};
|
|
4842
|
+
export declare type CompassPullRequestsQuerySort = {
|
|
4843
|
+
name: CompassPullRequestQuerySortName;
|
|
4844
|
+
order: CompassQuerySortOrder;
|
|
4845
|
+
};
|
|
5043
4846
|
export declare type CompassPushEvent = CompassEvent & {
|
|
5044
4847
|
__typename?: 'CompassPushEvent';
|
|
5045
4848
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -5085,6 +4888,10 @@ export declare enum CompassQuerySortOrder {
|
|
|
5085
4888
|
Asc = "ASC",
|
|
5086
4889
|
Desc = "DESC"
|
|
5087
4890
|
}
|
|
4891
|
+
export declare type CompassQueryTimeRange = {
|
|
4892
|
+
endDate: Scalars['DateTime']['input'];
|
|
4893
|
+
startDate: Scalars['DateTime']['input'];
|
|
4894
|
+
};
|
|
5088
4895
|
export declare type CompassRelationship = {
|
|
5089
4896
|
__typename?: 'CompassRelationship';
|
|
5090
4897
|
changeMetadata?: Maybe<CompassChangeMetadata>;
|
|
@@ -5611,6 +5418,13 @@ export declare type CompassStarredComponentEdge = {
|
|
|
5611
5418
|
node?: Maybe<CompassComponent>;
|
|
5612
5419
|
};
|
|
5613
5420
|
export declare type CompassStarredComponentsResult = CompassStarredComponentConnection | QueryError;
|
|
5421
|
+
export declare type CompassStatusTimeStamps = {
|
|
5422
|
+
__typename?: 'CompassStatusTimeStamps';
|
|
5423
|
+
firstReviewedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5424
|
+
lastReviewedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5425
|
+
mergedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5426
|
+
rejectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5427
|
+
};
|
|
5614
5428
|
export declare type CompassSynchronizeLinkAssociationsInput = {
|
|
5615
5429
|
cloudId: Scalars['ID']['input'];
|
|
5616
5430
|
forgeAppId: Scalars['ID']['input'];
|
|
@@ -5661,6 +5475,7 @@ export declare type CompassTeamData = {
|
|
|
5661
5475
|
currentCheckin?: Maybe<CompassTeamCheckin>;
|
|
5662
5476
|
labels?: Maybe<Array<CompassTeamLabel>>;
|
|
5663
5477
|
metricSources?: Maybe<CompassTeamMetricSourceConnection>;
|
|
5478
|
+
pullRequests?: Maybe<CompassPullRequestConnection>;
|
|
5664
5479
|
teamId?: Maybe<Scalars['ID']['output']>;
|
|
5665
5480
|
};
|
|
5666
5481
|
export declare type CompassTeamDataMetricSourcesArgs = {
|
|
@@ -5668,6 +5483,11 @@ export declare type CompassTeamDataMetricSourcesArgs = {
|
|
|
5668
5483
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5669
5484
|
query?: InputMaybe<CompassMetricSourceQuery>;
|
|
5670
5485
|
};
|
|
5486
|
+
export declare type CompassTeamDataPullRequestsArgs = {
|
|
5487
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5488
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5489
|
+
query?: InputMaybe<CompassPullRequestsQuery>;
|
|
5490
|
+
};
|
|
5671
5491
|
export declare type CompassTeamDataInput = {
|
|
5672
5492
|
cloudId: Scalars['ID']['input'];
|
|
5673
5493
|
teamId: Scalars['ID']['input'];
|
|
@@ -5966,6 +5786,7 @@ export declare type ConfluenceBlogPost = {
|
|
|
5966
5786
|
body?: Maybe<ConfluenceBodies>;
|
|
5967
5787
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
5968
5788
|
id: Scalars['ID']['output'];
|
|
5789
|
+
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
5969
5790
|
latestVersion?: Maybe<ConfluenceBlogPostVersion>;
|
|
5970
5791
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
5971
5792
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
@@ -6524,6 +6345,7 @@ export declare type ConfluencePage = {
|
|
|
6524
6345
|
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
6525
6346
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
6526
6347
|
id: Scalars['ID']['output'];
|
|
6348
|
+
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
6527
6349
|
latestVersion?: Maybe<ConfluencePageVersion>;
|
|
6528
6350
|
likesSummary?: Maybe<ConfluenceLikesSummary>;
|
|
6529
6351
|
links?: Maybe<ConfluencePageLinks>;
|
|
@@ -11511,7 +11333,9 @@ export declare type ExtensionContextsFilter = {
|
|
|
11511
11333
|
value: Array<Scalars['String']['input']>;
|
|
11512
11334
|
};
|
|
11513
11335
|
export declare enum ExtensionContextsFilterType {
|
|
11336
|
+
AppIdEnvironmentId = "APP_ID_ENVIRONMENT_ID",
|
|
11514
11337
|
DataClassificationTag = "DATA_CLASSIFICATION_TAG",
|
|
11338
|
+
DefinitionId = "DEFINITION_ID",
|
|
11515
11339
|
ExtensionType = "EXTENSION_TYPE",
|
|
11516
11340
|
PrincipalType = "PRINCIPAL_TYPE"
|
|
11517
11341
|
}
|
|
@@ -12392,6 +12216,7 @@ export declare enum GrantCheckProduct {
|
|
|
12392
12216
|
Confluence = "CONFLUENCE",
|
|
12393
12217
|
Jira = "JIRA",
|
|
12394
12218
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
12219
|
+
Mercury = "MERCURY",
|
|
12395
12220
|
NoGrantChecks = "NO_GRANT_CHECKS",
|
|
12396
12221
|
Townsquare = "TOWNSQUARE"
|
|
12397
12222
|
}
|
|
@@ -27463,6 +27288,7 @@ export declare type InsightsGithubOnboardingActionInput = {
|
|
|
27463
27288
|
};
|
|
27464
27289
|
export declare type InsightsGithubOnboardingActionResponse = Payload & {
|
|
27465
27290
|
__typename?: 'InsightsGithubOnboardingActionResponse';
|
|
27291
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
27466
27292
|
errors?: Maybe<Array<MutationError>>;
|
|
27467
27293
|
success: Scalars['Boolean']['output'];
|
|
27468
27294
|
};
|
|
@@ -28975,6 +28801,7 @@ export declare type JiraCalendarUnscheduledIssuesArgs = {
|
|
|
28975
28801
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28976
28802
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
28977
28803
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28804
|
+
input?: InputMaybe<JiraCalendarIssuesInput>;
|
|
28978
28805
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28979
28806
|
};
|
|
28980
28807
|
export declare type JiraCalendarVersionsArgs = {
|
|
@@ -30569,7 +30396,8 @@ export declare type JiraFavouriteEdge = {
|
|
|
30569
30396
|
node?: Maybe<JiraFavourite>;
|
|
30570
30397
|
};
|
|
30571
30398
|
export declare type JiraFavouriteFilter = {
|
|
30572
|
-
type
|
|
30399
|
+
type?: InputMaybe<JiraFavouriteType>;
|
|
30400
|
+
types?: InputMaybe<Array<JiraFavouriteType>>;
|
|
30573
30401
|
};
|
|
30574
30402
|
export declare enum JiraFavouriteType {
|
|
30575
30403
|
Board = "BOARD",
|
|
@@ -31191,6 +31019,7 @@ export declare type JiraIssue = Node & {
|
|
|
31191
31019
|
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
31192
31020
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
31193
31021
|
comments?: Maybe<JiraCommentConnection>;
|
|
31022
|
+
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
31194
31023
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
31195
31024
|
descriptionField?: Maybe<JiraRichTextField>;
|
|
31196
31025
|
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
@@ -31225,6 +31054,7 @@ export declare type JiraIssue = Node & {
|
|
|
31225
31054
|
key: Scalars['String']['output'];
|
|
31226
31055
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
31227
31056
|
linkedDesigns?: Maybe<GraphJiraDesignConnection>;
|
|
31057
|
+
mediaReadToken?: Maybe<JiraMediaReadToken>;
|
|
31228
31058
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
31229
31059
|
priorityField?: Maybe<JiraPriorityField>;
|
|
31230
31060
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
@@ -31329,6 +31159,9 @@ export declare type JiraIssueLinkedDesignsArgs = {
|
|
|
31329
31159
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31330
31160
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31331
31161
|
};
|
|
31162
|
+
export declare type JiraIssueMediaReadTokenArgs = {
|
|
31163
|
+
maxTokenLength: Scalars['Int']['input'];
|
|
31164
|
+
};
|
|
31332
31165
|
export declare type JiraIssueProjectRoleCommentVisibilitiesArgs = {
|
|
31333
31166
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31334
31167
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -33053,10 +32886,60 @@ export declare enum JiraLongRunningTaskStatus {
|
|
|
33053
32886
|
Failed = "FAILED",
|
|
33054
32887
|
Running = "RUNNING"
|
|
33055
32888
|
}
|
|
32889
|
+
export declare type JiraMediaAttachmentFile = {
|
|
32890
|
+
__typename?: 'JiraMediaAttachmentFile';
|
|
32891
|
+
attachmentId?: Maybe<Scalars['String']['output']>;
|
|
32892
|
+
attachmentMediaApiId?: Maybe<Scalars['String']['output']>;
|
|
32893
|
+
issueId?: Maybe<Scalars['String']['output']>;
|
|
32894
|
+
};
|
|
32895
|
+
export declare type JiraMediaAttachmentFileConnection = {
|
|
32896
|
+
__typename?: 'JiraMediaAttachmentFileConnection';
|
|
32897
|
+
edges?: Maybe<Array<Maybe<JiraMediaAttachmentFileEdge>>>;
|
|
32898
|
+
pageInfo: PageInfo;
|
|
32899
|
+
};
|
|
32900
|
+
export declare type JiraMediaAttachmentFileEdge = {
|
|
32901
|
+
__typename?: 'JiraMediaAttachmentFileEdge';
|
|
32902
|
+
cursor: Scalars['String']['output'];
|
|
32903
|
+
node?: Maybe<JiraMediaAttachmentFile>;
|
|
32904
|
+
};
|
|
33056
32905
|
export declare type JiraMediaContext = {
|
|
33057
32906
|
__typename?: 'JiraMediaContext';
|
|
33058
32907
|
uploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
33059
32908
|
};
|
|
32909
|
+
export declare type JiraMediaReadToken = {
|
|
32910
|
+
__typename?: 'JiraMediaReadToken';
|
|
32911
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
32912
|
+
endpointUrl?: Maybe<Scalars['String']['output']>;
|
|
32913
|
+
tokenLifespanInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
32914
|
+
tokensWithFiles?: Maybe<JiraMediaTokenWithFilesConnection>;
|
|
32915
|
+
};
|
|
32916
|
+
export declare type JiraMediaReadTokenTokensWithFilesArgs = {
|
|
32917
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32918
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
32919
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32920
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32921
|
+
};
|
|
32922
|
+
export declare type JiraMediaTokenWithFiles = {
|
|
32923
|
+
__typename?: 'JiraMediaTokenWithFiles';
|
|
32924
|
+
files?: Maybe<JiraMediaAttachmentFileConnection>;
|
|
32925
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
32926
|
+
};
|
|
32927
|
+
export declare type JiraMediaTokenWithFilesFilesArgs = {
|
|
32928
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32929
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
32930
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32931
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32932
|
+
};
|
|
32933
|
+
export declare type JiraMediaTokenWithFilesConnection = {
|
|
32934
|
+
__typename?: 'JiraMediaTokenWithFilesConnection';
|
|
32935
|
+
edges?: Maybe<Array<Maybe<JiraMediaTokenWithFilesEdge>>>;
|
|
32936
|
+
pageInfo: PageInfo;
|
|
32937
|
+
};
|
|
32938
|
+
export declare type JiraMediaTokenWithFilesEdge = {
|
|
32939
|
+
__typename?: 'JiraMediaTokenWithFilesEdge';
|
|
32940
|
+
cursor: Scalars['String']['output'];
|
|
32941
|
+
node?: Maybe<JiraMediaTokenWithFiles>;
|
|
32942
|
+
};
|
|
33060
32943
|
export declare type JiraMediaUploadToken = {
|
|
33061
32944
|
__typename?: 'JiraMediaUploadToken';
|
|
33062
32945
|
clientId?: Maybe<Scalars['String']['output']>;
|
|
@@ -34732,6 +34615,7 @@ export declare type JiraProject = Node & {
|
|
|
34732
34615
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
34733
34616
|
projectType?: Maybe<JiraProjectType>;
|
|
34734
34617
|
projectUrl?: Maybe<Scalars['String']['output']>;
|
|
34618
|
+
repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
|
|
34735
34619
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
34736
34620
|
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
34737
34621
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
@@ -34828,6 +34712,12 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
|
34828
34712
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34829
34713
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34830
34714
|
};
|
|
34715
|
+
export declare type JiraProjectRepositoriesArgs = {
|
|
34716
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34717
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedRepoFilterInput>;
|
|
34718
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34719
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedRepoSortInput>;
|
|
34720
|
+
};
|
|
34831
34721
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
34832
34722
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34833
34723
|
filter?: InputMaybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
@@ -36772,7 +36662,7 @@ export declare type JiraScreenTabLayoutItemEdge = {
|
|
|
36772
36662
|
cursor: Scalars['String']['output'];
|
|
36773
36663
|
node?: Maybe<JiraScreenTabLayoutItem>;
|
|
36774
36664
|
};
|
|
36775
|
-
export declare type JiraSearchableEntity = JiraBoard | JiraCustomFilter | JiraDashboard | JiraProject | JiraSystemFilter;
|
|
36665
|
+
export declare type JiraSearchableEntity = JiraBoard | JiraCustomFilter | JiraDashboard | JiraIssue | JiraProject | JiraServiceManagementQueue | JiraSystemFilter;
|
|
36776
36666
|
export declare type JiraSearchableEntityConnection = {
|
|
36777
36667
|
__typename?: 'JiraSearchableEntityConnection';
|
|
36778
36668
|
edges?: Maybe<Array<Maybe<JiraSearchableEntityEdge>>>;
|
|
@@ -36787,7 +36677,9 @@ export declare enum JiraSearchableEntityType {
|
|
|
36787
36677
|
Board = "BOARD",
|
|
36788
36678
|
Dashboard = "DASHBOARD",
|
|
36789
36679
|
Filter = "FILTER",
|
|
36790
|
-
|
|
36680
|
+
Issue = "ISSUE",
|
|
36681
|
+
Project = "PROJECT",
|
|
36682
|
+
Queue = "QUEUE"
|
|
36791
36683
|
}
|
|
36792
36684
|
export declare type JiraSecurityLevel = Node & {
|
|
36793
36685
|
__typename?: 'JiraSecurityLevel';
|
|
@@ -40272,6 +40164,17 @@ export declare type JsmChatChannelSettings = {
|
|
|
40272
40164
|
isVirtualAgentChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40273
40165
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40274
40166
|
};
|
|
40167
|
+
export declare type JsmChatDisconnectJiraProjectInput = {
|
|
40168
|
+
activationId: Scalars['ID']['input'];
|
|
40169
|
+
projectId: Scalars['ID']['input'];
|
|
40170
|
+
siteId: Scalars['ID']['input'];
|
|
40171
|
+
teamId: Scalars['ID']['input'];
|
|
40172
|
+
};
|
|
40173
|
+
export declare type JsmChatDisconnectJiraProjectResponse = {
|
|
40174
|
+
__typename?: 'JsmChatDisconnectJiraProjectResponse';
|
|
40175
|
+
message: Scalars['String']['output'];
|
|
40176
|
+
status: Scalars['Boolean']['output'];
|
|
40177
|
+
};
|
|
40275
40178
|
export declare type JsmChatGetSlackChatConfigInput = {
|
|
40276
40179
|
activationId: Scalars['ID']['input'];
|
|
40277
40180
|
projectId: Scalars['ID']['input'];
|
|
@@ -40286,6 +40189,13 @@ export declare type JsmChatInitializeConfigResponse = {
|
|
|
40286
40189
|
__typename?: 'JsmChatInitializeConfigResponse';
|
|
40287
40190
|
nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40288
40191
|
};
|
|
40192
|
+
export declare type JsmChatMutation = {
|
|
40193
|
+
__typename?: 'JsmChatMutation';
|
|
40194
|
+
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
40195
|
+
};
|
|
40196
|
+
export declare type JsmChatMutationDisconnectJiraProjectArgs = {
|
|
40197
|
+
input: JsmChatDisconnectJiraProjectInput;
|
|
40198
|
+
};
|
|
40289
40199
|
export declare type JsmChatProjectSettings = {
|
|
40290
40200
|
__typename?: 'JsmChatProjectSettings';
|
|
40291
40201
|
agentAssignedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -40368,6 +40278,14 @@ export declare type KnowledgeDiscoveryDefinitionList = {
|
|
|
40368
40278
|
definitions?: Maybe<Array<Maybe<KnowledgeDiscoveryDefinition>>>;
|
|
40369
40279
|
};
|
|
40370
40280
|
export declare type KnowledgeDiscoveryDefinitionResult = KnowledgeDiscoveryDefinition | QueryError;
|
|
40281
|
+
export declare type KnowledgeDiscoveryEntity = {
|
|
40282
|
+
id: Scalars['ID']['output'];
|
|
40283
|
+
};
|
|
40284
|
+
export declare enum KnowledgeDiscoveryEntityType {
|
|
40285
|
+
Document = "DOCUMENT",
|
|
40286
|
+
Keyword = "KEYWORD",
|
|
40287
|
+
Topic = "TOPIC"
|
|
40288
|
+
}
|
|
40371
40289
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
40372
40290
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
40373
40291
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
@@ -40379,6 +40297,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
40379
40297
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
40380
40298
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
40381
40299
|
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
40300
|
+
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntityConnection>;
|
|
40382
40301
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
40383
40302
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
40384
40303
|
};
|
|
@@ -40390,6 +40309,15 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
|
40390
40309
|
keyPhrase: Scalars['String']['input'];
|
|
40391
40310
|
workspaceId: Scalars['String']['input'];
|
|
40392
40311
|
};
|
|
40312
|
+
export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
40313
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40314
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
40315
|
+
entityType: Scalars['String']['input'];
|
|
40316
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40317
|
+
id: Scalars['String']['input'];
|
|
40318
|
+
relatedEntityType: Scalars['String']['input'];
|
|
40319
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
40320
|
+
};
|
|
40393
40321
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
40394
40322
|
locale: Scalars['String']['input'];
|
|
40395
40323
|
query: Scalars['String']['input'];
|
|
@@ -40400,6 +40328,18 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
40400
40328
|
id: Scalars['String']['input'];
|
|
40401
40329
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
40402
40330
|
};
|
|
40331
|
+
export declare type KnowledgeDiscoveryRelatedEntityConnection = {
|
|
40332
|
+
__typename?: 'KnowledgeDiscoveryRelatedEntityConnection';
|
|
40333
|
+
edges?: Maybe<Array<Maybe<KnowledgeDiscoveryRelatedEntityEdge>>>;
|
|
40334
|
+
nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryRelatedEntityResult>>>;
|
|
40335
|
+
pageInfo: PageInfo;
|
|
40336
|
+
};
|
|
40337
|
+
export declare type KnowledgeDiscoveryRelatedEntityEdge = {
|
|
40338
|
+
__typename?: 'KnowledgeDiscoveryRelatedEntityEdge';
|
|
40339
|
+
edgeCursor: Scalars['String']['output'];
|
|
40340
|
+
node?: Maybe<KnowledgeDiscoveryRelatedEntityResult>;
|
|
40341
|
+
};
|
|
40342
|
+
export declare type KnowledgeDiscoveryRelatedEntityResult = KnowledgeDiscoveryTopic | QueryError;
|
|
40403
40343
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
40404
40344
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
40405
40345
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
@@ -40412,7 +40352,7 @@ export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
|
40412
40352
|
transformedQuery: Scalars['String']['output'];
|
|
40413
40353
|
};
|
|
40414
40354
|
export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
|
|
40415
|
-
export declare type KnowledgeDiscoveryTopic = {
|
|
40355
|
+
export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
40416
40356
|
__typename?: 'KnowledgeDiscoveryTopic';
|
|
40417
40357
|
description: Scalars['String']['output'];
|
|
40418
40358
|
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -40878,6 +40818,14 @@ export declare type MarketplaceStoreAlgoliaQuerySort = {
|
|
|
40878
40818
|
__typename?: 'MarketplaceStoreAlgoliaQuerySort';
|
|
40879
40819
|
criteria?: Maybe<Scalars['String']['output']>;
|
|
40880
40820
|
};
|
|
40821
|
+
export declare type MarketplaceStoreAnonymousUser = {
|
|
40822
|
+
__typename?: 'MarketplaceStoreAnonymousUser';
|
|
40823
|
+
links: MarketplaceStoreAnonymousUserLinks;
|
|
40824
|
+
};
|
|
40825
|
+
export declare type MarketplaceStoreAnonymousUserLinks = {
|
|
40826
|
+
__typename?: 'MarketplaceStoreAnonymousUserLinks';
|
|
40827
|
+
login: Scalars['String']['output'];
|
|
40828
|
+
};
|
|
40881
40829
|
export declare type MarketplaceStoreCategoryHeroSection = {
|
|
40882
40830
|
__typename?: 'MarketplaceStoreCategoryHeroSection';
|
|
40883
40831
|
backgroundColor: Scalars['String']['output'];
|
|
@@ -40929,6 +40877,7 @@ export declare type MarketplaceStoreCollectionUsecasesValues = {
|
|
|
40929
40877
|
description: Scalars['String']['output'];
|
|
40930
40878
|
title: Scalars['String']['output'];
|
|
40931
40879
|
};
|
|
40880
|
+
export declare type MarketplaceStoreCurrentUserResponse = MarketplaceStoreAnonymousUser | MarketplaceStoreLoggedInUser;
|
|
40932
40881
|
export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
|
|
40933
40882
|
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
40934
40883
|
description: Scalars['String']['output'];
|
|
@@ -41004,6 +40953,24 @@ export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
|
41004
40953
|
Confluence = "CONFLUENCE",
|
|
41005
40954
|
Jira = "JIRA"
|
|
41006
40955
|
}
|
|
40956
|
+
export declare type MarketplaceStoreLoggedInUser = {
|
|
40957
|
+
__typename?: 'MarketplaceStoreLoggedInUser';
|
|
40958
|
+
email: Scalars['String']['output'];
|
|
40959
|
+
id: Scalars['ID']['output'];
|
|
40960
|
+
links?: Maybe<MarketplaceStoreLoggedInUserLinks>;
|
|
40961
|
+
name: Scalars['String']['output'];
|
|
40962
|
+
picture: Scalars['String']['output'];
|
|
40963
|
+
};
|
|
40964
|
+
export declare type MarketplaceStoreLoggedInUserLinks = {
|
|
40965
|
+
__typename?: 'MarketplaceStoreLoggedInUserLinks';
|
|
40966
|
+
addons: Scalars['String']['output'];
|
|
40967
|
+
admin?: Maybe<Scalars['String']['output']>;
|
|
40968
|
+
createAddon: Scalars['String']['output'];
|
|
40969
|
+
logout: Scalars['String']['output'];
|
|
40970
|
+
manageAccount: Scalars['String']['output'];
|
|
40971
|
+
profile: Scalars['String']['output'];
|
|
40972
|
+
switchAccount: Scalars['String']['output'];
|
|
40973
|
+
};
|
|
41007
40974
|
export declare type MarketplaceStoreMutationApi = {
|
|
41008
40975
|
__typename?: 'MarketplaceStoreMutationApi';
|
|
41009
40976
|
installApp: MarketplaceStoreInstallAppResponse;
|
|
@@ -41063,6 +41030,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
41063
41030
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
41064
41031
|
category: MarketplaceStoreCategoryResponse;
|
|
41065
41032
|
collection: MarketplaceStoreCollectionResponse;
|
|
41033
|
+
currentUser: MarketplaceStoreCurrentUserResponse;
|
|
41066
41034
|
homePage: MarketplaceStoreHomePageResponse;
|
|
41067
41035
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
41068
41036
|
partnerProfile: MarketplaceStorePartnerProfileResponse;
|
|
@@ -41122,6 +41090,256 @@ export declare enum MembershipState {
|
|
|
41122
41090
|
Invited = "INVITED",
|
|
41123
41091
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
41124
41092
|
}
|
|
41093
|
+
export declare type MercuryCreateGoalInput = {
|
|
41094
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
41095
|
+
goalStatus?: InputMaybe<MercuryGoalStatus>;
|
|
41096
|
+
goalType?: InputMaybe<MercuryGoalType>;
|
|
41097
|
+
metricScoring?: InputMaybe<MercuryMetricScoringInput>;
|
|
41098
|
+
metricType?: InputMaybe<MercuryMetricType>;
|
|
41099
|
+
name: Scalars['String']['input'];
|
|
41100
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
41101
|
+
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
41102
|
+
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
41103
|
+
targetDate?: InputMaybe<MercuryGoalTargetDateInput>;
|
|
41104
|
+
};
|
|
41105
|
+
export declare type MercuryCreateGoalPayload = Payload & {
|
|
41106
|
+
__typename?: 'MercuryCreateGoalPayload';
|
|
41107
|
+
errors?: Maybe<Array<MutationError>>;
|
|
41108
|
+
goal?: Maybe<MercuryGoal>;
|
|
41109
|
+
success: Scalars['Boolean']['output'];
|
|
41110
|
+
};
|
|
41111
|
+
export declare type MercuryCreateGoalUpdateWithMetricInput = {
|
|
41112
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
41113
|
+
feedbackRequested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41114
|
+
goalId: Scalars['ID']['input'];
|
|
41115
|
+
metricValue?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
41116
|
+
phase?: InputMaybe<MercuryGoalPhase>;
|
|
41117
|
+
score?: InputMaybe<Scalars['Int']['input']>;
|
|
41118
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
41119
|
+
targetDate?: InputMaybe<Scalars['Date']['input']>;
|
|
41120
|
+
targetDateType?: InputMaybe<MercuryGoalTargetDateType>;
|
|
41121
|
+
updateNotes?: InputMaybe<Array<InputMaybe<MercuryUpdateNoteInput>>>;
|
|
41122
|
+
};
|
|
41123
|
+
export declare type MercuryCreateGoalUpdateWithMetricPayload = {
|
|
41124
|
+
__typename?: 'MercuryCreateGoalUpdateWithMetricPayload';
|
|
41125
|
+
atlasGoalAri: Scalars['String']['output'];
|
|
41126
|
+
atlasGoalId: Scalars['ID']['output'];
|
|
41127
|
+
errors?: Maybe<Array<MutationError>>;
|
|
41128
|
+
success: Scalars['Boolean']['output'];
|
|
41129
|
+
};
|
|
41130
|
+
export declare type MercuryFocusArea = Node & {
|
|
41131
|
+
__typename?: 'MercuryFocusArea';
|
|
41132
|
+
aboutContent: MercuryFocusAreaAbout;
|
|
41133
|
+
ari: Scalars['String']['output'];
|
|
41134
|
+
createdDate: Scalars['String']['output'];
|
|
41135
|
+
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
41136
|
+
focusAreaType: MercuryFocusAreaType;
|
|
41137
|
+
goalLinks?: Maybe<MercuryFocusAreaGoalLinks>;
|
|
41138
|
+
health?: Maybe<MercuryFocusAreaHealth>;
|
|
41139
|
+
id: Scalars['ID']['output'];
|
|
41140
|
+
linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
|
|
41141
|
+
name: Scalars['String']['output'];
|
|
41142
|
+
parent?: Maybe<MercuryFocusArea>;
|
|
41143
|
+
status: MercuryFocusAreaStatus;
|
|
41144
|
+
statusTransitions: MercuryFocusAreaStatusTransitions;
|
|
41145
|
+
updatedDate: Scalars['String']['output'];
|
|
41146
|
+
watching: Scalars['Boolean']['output'];
|
|
41147
|
+
};
|
|
41148
|
+
export declare type MercuryFocusAreaAbout = {
|
|
41149
|
+
__typename?: 'MercuryFocusAreaAbout';
|
|
41150
|
+
editorAdfContent?: Maybe<Scalars['String']['output']>;
|
|
41151
|
+
};
|
|
41152
|
+
export declare type MercuryFocusAreaConnection = {
|
|
41153
|
+
__typename?: 'MercuryFocusAreaConnection';
|
|
41154
|
+
edges?: Maybe<Array<Maybe<MercuryFocusAreaEdge>>>;
|
|
41155
|
+
pageInfo: PageInfo;
|
|
41156
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41157
|
+
};
|
|
41158
|
+
export declare type MercuryFocusAreaEdge = {
|
|
41159
|
+
__typename?: 'MercuryFocusAreaEdge';
|
|
41160
|
+
cursor: Scalars['String']['output'];
|
|
41161
|
+
node?: Maybe<MercuryFocusArea>;
|
|
41162
|
+
};
|
|
41163
|
+
export declare type MercuryFocusAreaGoalLink = Node & {
|
|
41164
|
+
__typename?: 'MercuryFocusAreaGoalLink';
|
|
41165
|
+
atlasGoal?: Maybe<TownsquareGoal>;
|
|
41166
|
+
atlasGoalAri: Scalars['String']['output'];
|
|
41167
|
+
atlasGoalId: Scalars['String']['output'];
|
|
41168
|
+
createdBy: Scalars['String']['output'];
|
|
41169
|
+
createdDate: Scalars['String']['output'];
|
|
41170
|
+
id: Scalars['ID']['output'];
|
|
41171
|
+
parentFocusAreaId: Scalars['String']['output'];
|
|
41172
|
+
};
|
|
41173
|
+
export declare type MercuryFocusAreaGoalLinks = {
|
|
41174
|
+
__typename?: 'MercuryFocusAreaGoalLinks';
|
|
41175
|
+
links: Array<MercuryFocusAreaGoalLink>;
|
|
41176
|
+
};
|
|
41177
|
+
export declare type MercuryFocusAreaHealth = {
|
|
41178
|
+
__typename?: 'MercuryFocusAreaHealth';
|
|
41179
|
+
color: MercuryFocusAreaHealthColor;
|
|
41180
|
+
displayName: Scalars['String']['output'];
|
|
41181
|
+
id: Scalars['ID']['output'];
|
|
41182
|
+
key: Scalars['String']['output'];
|
|
41183
|
+
order: Scalars['Int']['output'];
|
|
41184
|
+
};
|
|
41185
|
+
export declare enum MercuryFocusAreaHealthColor {
|
|
41186
|
+
Green = "GREEN",
|
|
41187
|
+
Red = "RED",
|
|
41188
|
+
Yellow = "YELLOW"
|
|
41189
|
+
}
|
|
41190
|
+
export declare type MercuryFocusAreaLink = Node & {
|
|
41191
|
+
__typename?: 'MercuryFocusAreaLink';
|
|
41192
|
+
childFocusAreaId: Scalars['String']['output'];
|
|
41193
|
+
createdBy: Scalars['String']['output'];
|
|
41194
|
+
createdDate: Scalars['String']['output'];
|
|
41195
|
+
id: Scalars['ID']['output'];
|
|
41196
|
+
parentFocusAreaId: Scalars['String']['output'];
|
|
41197
|
+
};
|
|
41198
|
+
export declare type MercuryFocusAreaLinkedWorkSummary = {
|
|
41199
|
+
__typename?: 'MercuryFocusAreaLinkedWorkSummary';
|
|
41200
|
+
count: Scalars['Int']['output'];
|
|
41201
|
+
};
|
|
41202
|
+
export declare type MercuryFocusAreaLinks = {
|
|
41203
|
+
__typename?: 'MercuryFocusAreaLinks';
|
|
41204
|
+
links: Array<MercuryFocusAreaLink>;
|
|
41205
|
+
};
|
|
41206
|
+
export declare type MercuryFocusAreaSort = {
|
|
41207
|
+
field?: InputMaybe<MercuryFocusAreaSortField>;
|
|
41208
|
+
order: SortOrder;
|
|
41209
|
+
};
|
|
41210
|
+
export declare enum MercuryFocusAreaSortField {
|
|
41211
|
+
Budget = "BUDGET",
|
|
41212
|
+
FocusAreaType = "FOCUS_AREA_TYPE",
|
|
41213
|
+
HasParent = "HAS_PARENT",
|
|
41214
|
+
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
41215
|
+
LastUpdated = "LAST_UPDATED",
|
|
41216
|
+
Name = "NAME",
|
|
41217
|
+
Spend = "SPEND",
|
|
41218
|
+
Status = "STATUS",
|
|
41219
|
+
TargetDate = "TARGET_DATE",
|
|
41220
|
+
Watching = "WATCHING"
|
|
41221
|
+
}
|
|
41222
|
+
export declare type MercuryFocusAreaStatus = {
|
|
41223
|
+
__typename?: 'MercuryFocusAreaStatus';
|
|
41224
|
+
displayName: Scalars['String']['output'];
|
|
41225
|
+
id: Scalars['ID']['output'];
|
|
41226
|
+
key: Scalars['String']['output'];
|
|
41227
|
+
order: Scalars['Int']['output'];
|
|
41228
|
+
};
|
|
41229
|
+
export declare type MercuryFocusAreaStatusTransition = {
|
|
41230
|
+
__typename?: 'MercuryFocusAreaStatusTransition';
|
|
41231
|
+
health?: Maybe<MercuryFocusAreaHealth>;
|
|
41232
|
+
id: Scalars['ID']['output'];
|
|
41233
|
+
status: MercuryFocusAreaStatus;
|
|
41234
|
+
};
|
|
41235
|
+
export declare type MercuryFocusAreaStatusTransitions = {
|
|
41236
|
+
__typename?: 'MercuryFocusAreaStatusTransitions';
|
|
41237
|
+
available: Array<MercuryFocusAreaStatusTransition>;
|
|
41238
|
+
};
|
|
41239
|
+
export declare type MercuryFocusAreaType = {
|
|
41240
|
+
__typename?: 'MercuryFocusAreaType';
|
|
41241
|
+
hierarchyLevel: Scalars['Int']['output'];
|
|
41242
|
+
id: Scalars['ID']['output'];
|
|
41243
|
+
name: Scalars['String']['output'];
|
|
41244
|
+
};
|
|
41245
|
+
export declare type MercuryGoal = {
|
|
41246
|
+
__typename?: 'MercuryGoal';
|
|
41247
|
+
atlasGoal?: Maybe<TownsquareGoal>;
|
|
41248
|
+
atlasGoalAri: Scalars['String']['output'];
|
|
41249
|
+
atlasInternalId?: Maybe<Scalars['String']['output']>;
|
|
41250
|
+
goalType: MercuryGoalType;
|
|
41251
|
+
id: Scalars['ID']['output'];
|
|
41252
|
+
metric?: Maybe<MercuryMetric>;
|
|
41253
|
+
};
|
|
41254
|
+
export declare type MercuryGoalConnection = {
|
|
41255
|
+
__typename?: 'MercuryGoalConnection';
|
|
41256
|
+
edges?: Maybe<Array<Maybe<MercuryGoalEdge>>>;
|
|
41257
|
+
pageInfo: PageInfo;
|
|
41258
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41259
|
+
};
|
|
41260
|
+
export declare type MercuryGoalEdge = {
|
|
41261
|
+
__typename?: 'MercuryGoalEdge';
|
|
41262
|
+
cursor: Scalars['String']['output'];
|
|
41263
|
+
node?: Maybe<MercuryGoal>;
|
|
41264
|
+
};
|
|
41265
|
+
export declare type MercuryGoalMutationApi = {
|
|
41266
|
+
__typename?: 'MercuryGoalMutationApi';
|
|
41267
|
+
createGoal: MercuryCreateGoalPayload;
|
|
41268
|
+
};
|
|
41269
|
+
export declare type MercuryGoalMutationApiCreateGoalArgs = {
|
|
41270
|
+
cloudId: Scalars['ID']['input'];
|
|
41271
|
+
input: MercuryCreateGoalInput;
|
|
41272
|
+
};
|
|
41273
|
+
export declare enum MercuryGoalPhase {
|
|
41274
|
+
Done = "DONE",
|
|
41275
|
+
InProgress = "IN_PROGRESS",
|
|
41276
|
+
Paused = "PAUSED",
|
|
41277
|
+
Pending = "PENDING"
|
|
41278
|
+
}
|
|
41279
|
+
export declare enum MercuryGoalStatus {
|
|
41280
|
+
AtRisk = "AT_RISK",
|
|
41281
|
+
Cancelled = "CANCELLED",
|
|
41282
|
+
Done = "DONE",
|
|
41283
|
+
OffTrack = "OFF_TRACK",
|
|
41284
|
+
OnTrack = "ON_TRACK",
|
|
41285
|
+
Paused = "PAUSED",
|
|
41286
|
+
Pending = "PENDING"
|
|
41287
|
+
}
|
|
41288
|
+
export declare type MercuryGoalTargetDateInput = {
|
|
41289
|
+
date?: InputMaybe<Scalars['Date']['input']>;
|
|
41290
|
+
targetDateType?: InputMaybe<MercuryGoalTargetDateType>;
|
|
41291
|
+
};
|
|
41292
|
+
export declare enum MercuryGoalTargetDateType {
|
|
41293
|
+
Day = "DAY",
|
|
41294
|
+
Month = "MONTH",
|
|
41295
|
+
Quarter = "QUARTER"
|
|
41296
|
+
}
|
|
41297
|
+
export declare enum MercuryGoalType {
|
|
41298
|
+
Goal = "GOAL",
|
|
41299
|
+
KeyResult = "KEY_RESULT"
|
|
41300
|
+
}
|
|
41301
|
+
export declare type MercuryMetric = {
|
|
41302
|
+
__typename?: 'MercuryMetric';
|
|
41303
|
+
metricType?: Maybe<MercuryMetricType>;
|
|
41304
|
+
scoring?: Maybe<MercuryMetricScoring>;
|
|
41305
|
+
};
|
|
41306
|
+
export declare type MercuryMetricScoring = {
|
|
41307
|
+
__typename?: 'MercuryMetricScoring';
|
|
41308
|
+
baseline?: Maybe<Scalars['BigDecimal']['output']>;
|
|
41309
|
+
current?: Maybe<Scalars['BigDecimal']['output']>;
|
|
41310
|
+
target?: Maybe<Scalars['BigDecimal']['output']>;
|
|
41311
|
+
};
|
|
41312
|
+
export declare type MercuryMetricScoringInput = {
|
|
41313
|
+
baseline?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
41314
|
+
current?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
41315
|
+
target?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
41316
|
+
};
|
|
41317
|
+
export declare enum MercuryMetricType {
|
|
41318
|
+
Currency = "CURRENCY",
|
|
41319
|
+
Number = "NUMBER",
|
|
41320
|
+
Percent = "PERCENT"
|
|
41321
|
+
}
|
|
41322
|
+
export declare type MercuryQueryApi = {
|
|
41323
|
+
__typename?: 'MercuryQueryApi';
|
|
41324
|
+
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
41325
|
+
focusAreasByCloudId?: Maybe<MercuryFocusAreaConnection>;
|
|
41326
|
+
};
|
|
41327
|
+
export declare type MercuryQueryApiFocusAreasByArisArgs = {
|
|
41328
|
+
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
41329
|
+
};
|
|
41330
|
+
export declare type MercuryQueryApiFocusAreasByCloudIdArgs = {
|
|
41331
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41332
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
41333
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41334
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
41335
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
41336
|
+
};
|
|
41337
|
+
export declare type MercuryUpdateNoteInput = {
|
|
41338
|
+
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41339
|
+
summary: Scalars['String']['input'];
|
|
41340
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
41341
|
+
uuid?: InputMaybe<Scalars['String']['input']>;
|
|
41342
|
+
};
|
|
41125
41343
|
export declare type Migration = {
|
|
41126
41344
|
__typename?: 'Migration';
|
|
41127
41345
|
estimation?: Maybe<MigrationEstimation>;
|
|
@@ -41180,7 +41398,6 @@ export declare type Mutation = {
|
|
|
41180
41398
|
ForgeAi?: Maybe<ForgeAiMutation>;
|
|
41181
41399
|
actions?: Maybe<ActionsMutation>;
|
|
41182
41400
|
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
41183
|
-
admin?: Maybe<AdminMutation>;
|
|
41184
41401
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
41185
41402
|
appStorage?: Maybe<AppStorageMutation>;
|
|
41186
41403
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -41262,9 +41479,11 @@ export declare type Mutation = {
|
|
|
41262
41479
|
jira?: Maybe<JiraMutation>;
|
|
41263
41480
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
41264
41481
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
41482
|
+
jsmChat?: Maybe<JsmChatMutation>;
|
|
41265
41483
|
jsw?: Maybe<JswMutation>;
|
|
41266
41484
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
41267
41485
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
41486
|
+
mercuryGoal?: Maybe<MercuryGoalMutationApi>;
|
|
41268
41487
|
moveSprintDown?: Maybe<MoveSprintDownResponse>;
|
|
41269
41488
|
moveSprintUp?: Maybe<MoveSprintUpResponse>;
|
|
41270
41489
|
notifications?: Maybe<InfluentsNotificationMutation>;
|
|
@@ -41280,6 +41499,7 @@ export declare type Mutation = {
|
|
|
41280
41499
|
rankCustomFilter?: Maybe<GenericMutationResponse>;
|
|
41281
41500
|
rateLimitTest?: Maybe<GenericMutationResponse>;
|
|
41282
41501
|
refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
|
|
41502
|
+
registerTunnel?: Maybe<RegisterTunnelResponse>;
|
|
41283
41503
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
41284
41504
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
41285
41505
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
@@ -41598,6 +41818,9 @@ export declare type MutationRateLimitTestArgs = {
|
|
|
41598
41818
|
export declare type MutationRefreshPolarisSnippetsArgs = {
|
|
41599
41819
|
input: RefreshPolarisSnippetsInput;
|
|
41600
41820
|
};
|
|
41821
|
+
export declare type MutationRegisterTunnelArgs = {
|
|
41822
|
+
input: RegisterTunnelInput;
|
|
41823
|
+
};
|
|
41601
41824
|
export declare type MutationResolvePolarisObjectArgs = {
|
|
41602
41825
|
input: ResolvePolarisObjectInput;
|
|
41603
41826
|
};
|
|
@@ -43902,12 +44125,15 @@ export declare type Properties = {
|
|
|
43902
44125
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
43903
44126
|
updatedValues?: Maybe<Scalars['String']['output']>;
|
|
43904
44127
|
};
|
|
44128
|
+
export declare type PullRequestStatusInTimeRangeQueryFilter = {
|
|
44129
|
+
status: CompassPullRequestStatus;
|
|
44130
|
+
timeRange: CompassQueryTimeRange;
|
|
44131
|
+
};
|
|
43905
44132
|
export declare type Query = {
|
|
43906
44133
|
__typename?: 'Query';
|
|
43907
44134
|
actions?: Maybe<Actions>;
|
|
43908
44135
|
activities?: Maybe<Activities>;
|
|
43909
44136
|
activity?: Maybe<Activity>;
|
|
43910
|
-
admin?: Maybe<AdminQuery>;
|
|
43911
44137
|
anchor?: Maybe<ContentPlatformAnchor>;
|
|
43912
44138
|
anchors: ContentPlatformAnchorContentSearchConnection;
|
|
43913
44139
|
app?: Maybe<App>;
|
|
@@ -44003,6 +44229,7 @@ export declare type Query = {
|
|
|
44003
44229
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
44004
44230
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
44005
44231
|
me: AuthenticationContext;
|
|
44232
|
+
mercury?: Maybe<MercuryQueryApi>;
|
|
44006
44233
|
migration: MigrationQuery;
|
|
44007
44234
|
myMarketplaceApps?: Maybe<MarketplaceAppConnection>;
|
|
44008
44235
|
nlpSearch?: Maybe<NlpSearchResponse>;
|
|
@@ -44633,6 +44860,18 @@ export declare type RefreshToken = {
|
|
|
44633
44860
|
export declare type RefreshTokenInput = {
|
|
44634
44861
|
refreshTokenRotation: Scalars['Boolean']['input'];
|
|
44635
44862
|
};
|
|
44863
|
+
export declare type RegisterTunnelInput = {
|
|
44864
|
+
appId: Scalars['ID']['input'];
|
|
44865
|
+
environmentKey: Scalars['String']['input'];
|
|
44866
|
+
};
|
|
44867
|
+
export declare type RegisterTunnelResponse = Payload & {
|
|
44868
|
+
__typename?: 'RegisterTunnelResponse';
|
|
44869
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44870
|
+
success: Scalars['Boolean']['output'];
|
|
44871
|
+
tunnelId?: Maybe<Scalars['String']['output']>;
|
|
44872
|
+
tunnelToken?: Maybe<Scalars['String']['output']>;
|
|
44873
|
+
tunnelUrl?: Maybe<Scalars['String']['output']>;
|
|
44874
|
+
};
|
|
44636
44875
|
export declare type Remote = {
|
|
44637
44876
|
__typename?: 'Remote';
|
|
44638
44877
|
baseUrl: Scalars['String']['output'];
|
|
@@ -45664,6 +45903,7 @@ export declare enum Scope {
|
|
|
45664
45903
|
ReadJswSprint = "READ_JSW_SPRINT",
|
|
45665
45904
|
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
45666
45905
|
ReadMe = "READ_ME",
|
|
45906
|
+
ReadMercury = "READ_MERCURY",
|
|
45667
45907
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
45668
45908
|
ReadOrganization = "READ_ORGANIZATION",
|
|
45669
45909
|
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
@@ -45768,6 +46008,7 @@ export declare enum Scope {
|
|
|
45768
46008
|
WriteJswRemoteLink = "WRITE_JSW_REMOTE_LINK",
|
|
45769
46009
|
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
45770
46010
|
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
46011
|
+
WriteMercury = "WRITE_MERCURY",
|
|
45771
46012
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
45772
46013
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
45773
46014
|
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
@@ -45786,7 +46027,10 @@ export declare enum Scope {
|
|
|
45786
46027
|
WriteServicedeskCustomer = "WRITE_SERVICEDESK_CUSTOMER",
|
|
45787
46028
|
WriteServicedeskOrganization = "WRITE_SERVICEDESK_ORGANIZATION",
|
|
45788
46029
|
WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
|
|
45789
|
-
WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST"
|
|
46030
|
+
WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
|
|
46031
|
+
WriteTownsquareGoal = "WRITE_TOWNSQUARE_GOAL",
|
|
46032
|
+
WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
|
|
46033
|
+
WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP"
|
|
45790
46034
|
}
|
|
45791
46035
|
export declare type ScopeSprintIssue = {
|
|
45792
46036
|
__typename?: 'ScopeSprintIssue';
|
|
@@ -46575,6 +46819,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
46575
46819
|
ConfluenceCustomDetection = "CONFLUENCE_CUSTOM_DETECTION",
|
|
46576
46820
|
ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
|
|
46577
46821
|
ConfluenceDataDiscoveryAtlassianToken = "CONFLUENCE_DATA_DISCOVERY_ATLASSIAN_TOKEN",
|
|
46822
|
+
ConfluenceDataDiscoveryAuTfn = "CONFLUENCE_DATA_DISCOVERY_AU_TFN",
|
|
46578
46823
|
ConfluenceDataDiscoveryAwsKeys = "CONFLUENCE_DATA_DISCOVERY_AWS_KEYS",
|
|
46579
46824
|
ConfluenceDataDiscoveryCreditCard = "CONFLUENCE_DATA_DISCOVERY_CREDIT_CARD",
|
|
46580
46825
|
ConfluenceDataDiscoveryCrypto = "CONFLUENCE_DATA_DISCOVERY_CRYPTO",
|