@forge/cli-shared 3.26.1-next.1 → 4.0.0-next.3
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 +17 -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 +95 -304
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +19 -109
- 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.d.ts +1 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +21 -20
- 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/out/ui/text.d.ts +0 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +0 -1
- package/package.json +2 -2
|
@@ -523,259 +523,6 @@ export declare type AddPolarisColumnInput = {
|
|
|
523
523
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
524
524
|
};
|
|
525
525
|
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
526
|
export declare enum AlertEventStatus {
|
|
780
527
|
Acknowledged = "ACKNOWLEDGED",
|
|
781
528
|
Closed = "CLOSED",
|
|
@@ -794,7 +541,6 @@ export declare enum ApiContext {
|
|
|
794
541
|
}
|
|
795
542
|
export declare enum ApiGroup {
|
|
796
543
|
Actions = "ACTIONS",
|
|
797
|
-
AdminGraphqlServer = "ADMIN_GRAPHQL_SERVER",
|
|
798
544
|
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
799
545
|
Caas = "CAAS",
|
|
800
546
|
CloudAdmin = "CLOUD_ADMIN",
|
|
@@ -26395,19 +26141,23 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
26395
26141
|
export declare type HelpLayoutAnnouncementInput = {
|
|
26396
26142
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26397
26143
|
};
|
|
26398
|
-
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
26144
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
26399
26145
|
export declare type HelpLayoutAtomicElementInput = {
|
|
26400
26146
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
26401
26147
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
26402
26148
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
26149
|
+
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
26403
26150
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
26404
26151
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
26152
|
+
portalsListInput?: InputMaybe<HelpLayoutPortalsListInput>;
|
|
26405
26153
|
searchConfigInput?: InputMaybe<HelpLayoutSearchConfigInput>;
|
|
26154
|
+
suggestedRequestFormsListInput?: InputMaybe<HelpLayoutSuggestedRequestFormsListInput>;
|
|
26406
26155
|
topicListInput?: InputMaybe<HelpLayoutTopicsListInput>;
|
|
26407
26156
|
};
|
|
26408
26157
|
export declare enum HelpLayoutAtomicElementKey {
|
|
26409
26158
|
Announcement = "ANNOUNCEMENT",
|
|
26410
26159
|
Heading = "HEADING",
|
|
26160
|
+
Hero = "HERO",
|
|
26411
26161
|
Image = "IMAGE",
|
|
26412
26162
|
Paragraph = "PARAGRAPH",
|
|
26413
26163
|
PortalsList = "PORTALS_LIST",
|
|
@@ -26442,7 +26192,6 @@ export declare type HelpLayoutCompositeElement = {
|
|
|
26442
26192
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26443
26193
|
};
|
|
26444
26194
|
export declare enum HelpLayoutCompositeElementKey {
|
|
26445
|
-
Hero = "HERO",
|
|
26446
26195
|
LinkCard = "LINK_CARD"
|
|
26447
26196
|
}
|
|
26448
26197
|
export declare type HelpLayoutCompositeElementType = HelpLayoutElementType & {
|
|
@@ -26472,10 +26221,13 @@ export declare type HelpLayoutElementInput = {
|
|
|
26472
26221
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
26473
26222
|
elementTypeKey: HelpLayoutElementKey;
|
|
26474
26223
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
26224
|
+
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
26475
26225
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
26476
26226
|
linkCardInput?: InputMaybe<HelpLayoutLinkCardInput>;
|
|
26477
26227
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
26228
|
+
portalsListInput?: InputMaybe<HelpLayoutPortalsListInput>;
|
|
26478
26229
|
searchConfigInput?: InputMaybe<HelpLayoutSearchConfigInput>;
|
|
26230
|
+
suggestedRequestFormsListInput?: InputMaybe<HelpLayoutSuggestedRequestFormsListInput>;
|
|
26479
26231
|
topicListInput?: InputMaybe<HelpLayoutTopicsListInput>;
|
|
26480
26232
|
};
|
|
26481
26233
|
export declare enum HelpLayoutElementKey {
|
|
@@ -26520,13 +26272,21 @@ export declare enum HelpLayoutHeadingType {
|
|
|
26520
26272
|
H5 = "h5",
|
|
26521
26273
|
H6 = "h6"
|
|
26522
26274
|
}
|
|
26523
|
-
export declare type HelpLayoutHeroElement =
|
|
26275
|
+
export declare type HelpLayoutHeroElement = HelpLayoutVisualEntity & Node & {
|
|
26524
26276
|
__typename?: 'HelpLayoutHeroElement';
|
|
26525
|
-
|
|
26526
|
-
elementType?: Maybe<
|
|
26277
|
+
data?: Maybe<HelpLayoutHeroElementData>;
|
|
26278
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
26527
26279
|
id: Scalars['ID']['output'];
|
|
26528
26280
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26529
26281
|
};
|
|
26282
|
+
export declare type HelpLayoutHeroElementData = {
|
|
26283
|
+
__typename?: 'HelpLayoutHeroElementData';
|
|
26284
|
+
homePageTitle?: Maybe<Scalars['String']['output']>;
|
|
26285
|
+
useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
|
|
26286
|
+
};
|
|
26287
|
+
export declare type HelpLayoutHeroElementInput = {
|
|
26288
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26289
|
+
};
|
|
26530
26290
|
export declare enum HelpLayoutHorizontalAlignment {
|
|
26531
26291
|
Center = "CENTER",
|
|
26532
26292
|
Left = "LEFT",
|
|
@@ -26639,6 +26399,9 @@ export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node
|
|
|
26639
26399
|
id: Scalars['ID']['output'];
|
|
26640
26400
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26641
26401
|
};
|
|
26402
|
+
export declare type HelpLayoutPortalsListInput = {
|
|
26403
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26404
|
+
};
|
|
26642
26405
|
export declare type HelpLayoutQueryApi = {
|
|
26643
26406
|
__typename?: 'HelpLayoutQueryApi';
|
|
26644
26407
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
@@ -26732,6 +26495,9 @@ export declare type HelpLayoutSuggestedRequestFormsListElementData = {
|
|
|
26732
26495
|
__typename?: 'HelpLayoutSuggestedRequestFormsListElementData';
|
|
26733
26496
|
suggestedRequestTypes?: Maybe<Array<HelpLayoutRequestForm>>;
|
|
26734
26497
|
};
|
|
26498
|
+
export declare type HelpLayoutSuggestedRequestFormsListInput = {
|
|
26499
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26500
|
+
};
|
|
26735
26501
|
export declare type HelpLayoutTopic = {
|
|
26736
26502
|
__typename?: 'HelpLayoutTopic';
|
|
26737
26503
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -30217,6 +29983,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
30217
29983
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
30218
29984
|
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
30219
29985
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
29986
|
+
resumeAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
30220
29987
|
retryAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
30221
29988
|
saveAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
30222
29989
|
setProjectSelectedDeploymentAppsProperty?: Maybe<JiraSetProjectSelectedDeploymentAppsPropertyPayload>;
|
|
@@ -30263,6 +30030,10 @@ export declare type JiraDevOpsMutationRemoveJiraBitbucketWorkspaceConnectionArgs
|
|
|
30263
30030
|
cloudId: Scalars['ID']['input'];
|
|
30264
30031
|
input: JiraRemoveJiraBitbucketWorkspaceConnectionInput;
|
|
30265
30032
|
};
|
|
30033
|
+
export declare type JiraDevOpsMutationResumeAutodevJobArgs = {
|
|
30034
|
+
issueAri: Scalars['ID']['input'];
|
|
30035
|
+
jobId: Scalars['ID']['input'];
|
|
30036
|
+
};
|
|
30266
30037
|
export declare type JiraDevOpsMutationRetryAutodevJobArgs = {
|
|
30267
30038
|
issueAri: Scalars['ID']['input'];
|
|
30268
30039
|
jobId: Scalars['ID']['input'];
|
|
@@ -30399,6 +30170,19 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
30399
30170
|
errors?: Maybe<Array<MutationError>>;
|
|
30400
30171
|
success: Scalars['Boolean']['output'];
|
|
30401
30172
|
};
|
|
30173
|
+
export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
30174
|
+
__typename?: 'JiraDurationField';
|
|
30175
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
30176
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
30177
|
+
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
30178
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
30179
|
+
fieldId: Scalars['String']['output'];
|
|
30180
|
+
id: Scalars['ID']['output'];
|
|
30181
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
30182
|
+
name: Scalars['String']['output'];
|
|
30183
|
+
type: Scalars['String']['output'];
|
|
30184
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
30185
|
+
};
|
|
30402
30186
|
export declare type JiraDurationFieldInput = {
|
|
30403
30187
|
originalEstimateField?: InputMaybe<Scalars['String']['input']>;
|
|
30404
30188
|
};
|
|
@@ -30531,7 +30315,8 @@ export declare type JiraFavouriteEdge = {
|
|
|
30531
30315
|
node?: Maybe<JiraFavourite>;
|
|
30532
30316
|
};
|
|
30533
30317
|
export declare type JiraFavouriteFilter = {
|
|
30534
|
-
type
|
|
30318
|
+
type?: InputMaybe<JiraFavouriteType>;
|
|
30319
|
+
types?: InputMaybe<Array<JiraFavouriteType>>;
|
|
30535
30320
|
};
|
|
30536
30321
|
export declare enum JiraFavouriteType {
|
|
30537
30322
|
Board = "BOARD",
|
|
@@ -33103,7 +32888,7 @@ export declare type JiraMultipleGroupPickerFieldInput = {
|
|
|
33103
32888
|
groups: Array<JiraGroupInput>;
|
|
33104
32889
|
};
|
|
33105
32890
|
export declare type JiraMultipleGroupPickerFieldOperationInput = {
|
|
33106
|
-
|
|
32891
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
33107
32892
|
operation: JiraMultiValueFieldOperations;
|
|
33108
32893
|
};
|
|
33109
32894
|
export declare type JiraMultipleGroupPickerFieldPayload = Payload & {
|
|
@@ -36992,8 +36777,10 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
36992
36777
|
authorCanSeeRequest?: Maybe<Scalars['Boolean']['output']>;
|
|
36993
36778
|
commentId: Scalars['ID']['output'];
|
|
36994
36779
|
created: Scalars['DateTime']['output'];
|
|
36780
|
+
eventOccurredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
36995
36781
|
id: Scalars['ID']['output'];
|
|
36996
36782
|
issue?: Maybe<JiraIssue>;
|
|
36783
|
+
jsdIncidentActivityViewHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
36997
36784
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
36998
36785
|
richText?: Maybe<JiraRichText>;
|
|
36999
36786
|
updateAuthor?: Maybe<User>;
|
|
@@ -37864,7 +37651,7 @@ export declare type JiraSingleGroupPickerFieldInput = {
|
|
|
37864
37651
|
group: JiraGroupInput;
|
|
37865
37652
|
};
|
|
37866
37653
|
export declare type JiraSingleGroupPickerFieldOperationInput = {
|
|
37867
|
-
|
|
37654
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
37868
37655
|
operation: JiraSingleValueFieldOperations;
|
|
37869
37656
|
};
|
|
37870
37657
|
export declare type JiraSingleGroupPickerFieldPayload = Payload & {
|
|
@@ -40232,15 +40019,6 @@ export declare type JsmChatChannelSettings = {
|
|
|
40232
40019
|
isVirtualAgentChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40233
40020
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40234
40021
|
};
|
|
40235
|
-
export declare type JsmChatChatConfigSlack = {
|
|
40236
|
-
__typename?: 'JsmChatChatConfigSlack';
|
|
40237
|
-
botUserId?: Maybe<Scalars['String']['output']>;
|
|
40238
|
-
channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
|
|
40239
|
-
projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
|
|
40240
|
-
siteId: Scalars['ID']['output'];
|
|
40241
|
-
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40242
|
-
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
40243
|
-
};
|
|
40244
40022
|
export declare type JsmChatGetSlackChatConfigInput = {
|
|
40245
40023
|
activationId: Scalars['ID']['input'];
|
|
40246
40024
|
projectId: Scalars['ID']['input'];
|
|
@@ -40275,7 +40053,7 @@ export declare type JsmChatProjectSettingsSlack = {
|
|
|
40275
40053
|
};
|
|
40276
40054
|
export declare type JsmChatQuery = {
|
|
40277
40055
|
__typename?: 'JsmChatQuery';
|
|
40278
|
-
getSlackChatConfig?: Maybe<
|
|
40056
|
+
getSlackChatConfig?: Maybe<JsmChatSlackConfig>;
|
|
40279
40057
|
initializeConfig: JsmChatInitializeConfigResponse;
|
|
40280
40058
|
};
|
|
40281
40059
|
export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
@@ -40284,6 +40062,15 @@ export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
|
40284
40062
|
export declare type JsmChatQueryInitializeConfigArgs = {
|
|
40285
40063
|
input: JsmChatInitializeConfigRequest;
|
|
40286
40064
|
};
|
|
40065
|
+
export declare type JsmChatSlackConfig = {
|
|
40066
|
+
__typename?: 'JsmChatSlackConfig';
|
|
40067
|
+
botUserId?: Maybe<Scalars['String']['output']>;
|
|
40068
|
+
channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
|
|
40069
|
+
projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
|
|
40070
|
+
siteId: Scalars['ID']['output'];
|
|
40071
|
+
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40072
|
+
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
40073
|
+
};
|
|
40287
40074
|
export declare type JswMutation = {
|
|
40288
40075
|
__typename?: 'JswMutation';
|
|
40289
40076
|
deleteCard?: Maybe<DeleteCardOutput>;
|
|
@@ -40328,6 +40115,14 @@ export declare type KnowledgeDiscoveryDefinitionList = {
|
|
|
40328
40115
|
definitions?: Maybe<Array<Maybe<KnowledgeDiscoveryDefinition>>>;
|
|
40329
40116
|
};
|
|
40330
40117
|
export declare type KnowledgeDiscoveryDefinitionResult = KnowledgeDiscoveryDefinition | QueryError;
|
|
40118
|
+
export declare type KnowledgeDiscoveryEntity = {
|
|
40119
|
+
id: Scalars['ID']['output'];
|
|
40120
|
+
};
|
|
40121
|
+
export declare enum KnowledgeDiscoveryEntityType {
|
|
40122
|
+
Document = "DOCUMENT",
|
|
40123
|
+
Keyword = "KEYWORD",
|
|
40124
|
+
Topic = "TOPIC"
|
|
40125
|
+
}
|
|
40331
40126
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
40332
40127
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
40333
40128
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
@@ -40339,6 +40134,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
40339
40134
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
40340
40135
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
40341
40136
|
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
40137
|
+
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntityConnection>;
|
|
40342
40138
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
40343
40139
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
40344
40140
|
};
|
|
@@ -40350,6 +40146,15 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
|
40350
40146
|
keyPhrase: Scalars['String']['input'];
|
|
40351
40147
|
workspaceId: Scalars['String']['input'];
|
|
40352
40148
|
};
|
|
40149
|
+
export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
40150
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40151
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
40152
|
+
entityType: Scalars['String']['input'];
|
|
40153
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40154
|
+
id: Scalars['String']['input'];
|
|
40155
|
+
relatedEntityType: Scalars['String']['input'];
|
|
40156
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
40157
|
+
};
|
|
40353
40158
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
40354
40159
|
locale: Scalars['String']['input'];
|
|
40355
40160
|
query: Scalars['String']['input'];
|
|
@@ -40360,6 +40165,18 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
40360
40165
|
id: Scalars['String']['input'];
|
|
40361
40166
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
40362
40167
|
};
|
|
40168
|
+
export declare type KnowledgeDiscoveryRelatedEntityConnection = {
|
|
40169
|
+
__typename?: 'KnowledgeDiscoveryRelatedEntityConnection';
|
|
40170
|
+
edges?: Maybe<Array<Maybe<KnowledgeDiscoveryRelatedEntityEdge>>>;
|
|
40171
|
+
nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryRelatedEntityResult>>>;
|
|
40172
|
+
pageInfo: PageInfo;
|
|
40173
|
+
};
|
|
40174
|
+
export declare type KnowledgeDiscoveryRelatedEntityEdge = {
|
|
40175
|
+
__typename?: 'KnowledgeDiscoveryRelatedEntityEdge';
|
|
40176
|
+
edgeCursor: Scalars['String']['output'];
|
|
40177
|
+
node?: Maybe<KnowledgeDiscoveryRelatedEntityResult>;
|
|
40178
|
+
};
|
|
40179
|
+
export declare type KnowledgeDiscoveryRelatedEntityResult = KnowledgeDiscoveryTopic | QueryError;
|
|
40363
40180
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
40364
40181
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
40365
40182
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
@@ -40372,7 +40189,7 @@ export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
|
40372
40189
|
transformedQuery: Scalars['String']['output'];
|
|
40373
40190
|
};
|
|
40374
40191
|
export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
|
|
40375
|
-
export declare type KnowledgeDiscoveryTopic = {
|
|
40192
|
+
export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
40376
40193
|
__typename?: 'KnowledgeDiscoveryTopic';
|
|
40377
40194
|
description: Scalars['String']['output'];
|
|
40378
40195
|
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -41140,7 +40957,6 @@ export declare type Mutation = {
|
|
|
41140
40957
|
ForgeAi?: Maybe<ForgeAiMutation>;
|
|
41141
40958
|
actions?: Maybe<ActionsMutation>;
|
|
41142
40959
|
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
41143
|
-
admin?: Maybe<AdminMutation>;
|
|
41144
40960
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
41145
40961
|
appStorage?: Maybe<AppStorageMutation>;
|
|
41146
40962
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -43867,7 +43683,6 @@ export declare type Query = {
|
|
|
43867
43683
|
actions?: Maybe<Actions>;
|
|
43868
43684
|
activities?: Maybe<Activities>;
|
|
43869
43685
|
activity?: Maybe<Activity>;
|
|
43870
|
-
admin?: Maybe<AdminQuery>;
|
|
43871
43686
|
anchor?: Maybe<ContentPlatformAnchor>;
|
|
43872
43687
|
anchors: ContentPlatformAnchorContentSearchConnection;
|
|
43873
43688
|
app?: Maybe<App>;
|
|
@@ -45928,6 +45743,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
45928
45743
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45929
45744
|
analytics?: InputMaybe<SearchAnalyticsInput>;
|
|
45930
45745
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
45746
|
+
enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45931
45747
|
experience: Scalars['String']['input'];
|
|
45932
45748
|
filters: SearchFilterInput;
|
|
45933
45749
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -47421,6 +47237,9 @@ export declare type SignupSubscriptionApi = {
|
|
|
47421
47237
|
__typename?: 'SignupSubscriptionApi';
|
|
47422
47238
|
signupProvisioningStatus?: Maybe<SignupProvisioningStatus>;
|
|
47423
47239
|
};
|
|
47240
|
+
export declare type SignupSubscriptionApiSignupProvisioningStatusArgs = {
|
|
47241
|
+
orchestrationId: Scalars['String']['input'];
|
|
47242
|
+
};
|
|
47424
47243
|
export declare type SmartsContext = {
|
|
47425
47244
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
47426
47245
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -47730,7 +47549,7 @@ export declare type Subscription = {
|
|
|
47730
47549
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
47731
47550
|
jira?: Maybe<JiraSubscription>;
|
|
47732
47551
|
sandbox: SandboxSubscription;
|
|
47733
|
-
signup
|
|
47552
|
+
signup: SignupSubscriptionApi;
|
|
47734
47553
|
testing?: Maybe<TestingSubscription>;
|
|
47735
47554
|
trello: TrelloSubscriptionApi;
|
|
47736
47555
|
};
|
|
@@ -50967,7 +50786,6 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
50967
50786
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
50968
50787
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
50969
50788
|
isEnabledOnJsmPortal?: Maybe<Scalars['Boolean']['output']>;
|
|
50970
|
-
properties?: Maybe<VirtualAgentProperties>;
|
|
50971
50789
|
respondToQueries: Scalars['Boolean']['output'];
|
|
50972
50790
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
50973
50791
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
@@ -51090,7 +50908,6 @@ export declare type VirtualAgentFeatures = {
|
|
|
51090
50908
|
isAiEnabledInAdminHub?: Maybe<Scalars['Boolean']['output']>;
|
|
51091
50909
|
isVirtualAgentAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
51092
50910
|
};
|
|
51093
|
-
export declare type VirtualAgentFeaturesResult = VirtualAgentFeatures | VirtualAgentQueryError;
|
|
51094
50911
|
export declare type VirtualAgentFlowEditor = Node & {
|
|
51095
50912
|
__typename?: 'VirtualAgentFlowEditor';
|
|
51096
50913
|
group?: Maybe<Scalars['String']['output']>;
|
|
@@ -51303,44 +51120,18 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
|
|
|
51303
51120
|
input: VirtualAgentUpdateConfigurationInput;
|
|
51304
51121
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
51305
51122
|
};
|
|
51306
|
-
export declare type VirtualAgentProperties = {
|
|
51307
|
-
__typename?: 'VirtualAgentProperties';
|
|
51308
|
-
defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
51309
|
-
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
51310
|
-
};
|
|
51311
|
-
export declare type VirtualAgentPropertiesInput = {};
|
|
51312
51123
|
export declare type VirtualAgentQueryApi = {
|
|
51313
51124
|
__typename?: 'VirtualAgentQueryApi';
|
|
51314
|
-
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
51315
|
-
intentTemplatesByProjectId?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
51316
51125
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
51317
|
-
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
51318
51126
|
virtualAgentEntitlements?: Maybe<VirtualAgentFeatures>;
|
|
51319
|
-
virtualAgentFeatures?: Maybe<VirtualAgentFeaturesResult>;
|
|
51320
|
-
};
|
|
51321
|
-
export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
|
|
51322
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
51323
|
-
filter: VirtualAgentIntentRuleProjectionsFilter;
|
|
51324
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51325
|
-
};
|
|
51326
|
-
export declare type VirtualAgentQueryApiIntentTemplatesByProjectIdArgs = {
|
|
51327
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
51328
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51329
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
51330
51127
|
};
|
|
51331
51128
|
export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
51332
51129
|
jiraProjectId: Scalars['ID']['input'];
|
|
51333
51130
|
requestTypeId: Scalars['String']['input'];
|
|
51334
51131
|
};
|
|
51335
|
-
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
51336
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
51337
|
-
};
|
|
51338
51132
|
export declare type VirtualAgentQueryApiVirtualAgentEntitlementsArgs = {
|
|
51339
51133
|
cloudId: Scalars['ID']['input'];
|
|
51340
51134
|
};
|
|
51341
|
-
export declare type VirtualAgentQueryApiVirtualAgentFeaturesArgs = {
|
|
51342
|
-
cloudId: Scalars['ID']['input'];
|
|
51343
|
-
};
|
|
51344
51135
|
export declare type VirtualAgentQueryError = {
|
|
51345
51136
|
__typename?: 'VirtualAgentQueryError';
|
|
51346
51137
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|