@forge/cli-shared 6.6.1-next.16 → 6.6.1-next.18
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 +14 -0
- package/out/graphql/graphql-types.d.ts +168 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -0
- package/out/ui/text.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.6.1-next.18
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dd59f4b: Changed table layout
|
|
8
|
+
|
|
9
|
+
## 6.6.1-next.17
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 2086b3d: Remove node-fetch as a dependency
|
|
14
|
+
- Updated dependencies [2086b3d]
|
|
15
|
+
- @forge/manifest@8.7.0-next.9
|
|
16
|
+
|
|
3
17
|
## 6.6.1-next.16
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -1082,6 +1082,7 @@ export declare enum ApiGroup {
|
|
|
1082
1082
|
Jira = "JIRA",
|
|
1083
1083
|
Papi = "PAPI",
|
|
1084
1084
|
Polaris = "POLARIS",
|
|
1085
|
+
ServiceHubAgentConfiguration = "SERVICE_HUB_AGENT_CONFIGURATION",
|
|
1085
1086
|
SurfacePlatform = "SURFACE_PLATFORM",
|
|
1086
1087
|
Teams = "TEAMS",
|
|
1087
1088
|
VirtualAgent = "VIRTUAL_AGENT",
|
|
@@ -19543,6 +19544,60 @@ export declare enum CustomUserFieldInputComparators {
|
|
|
19543
19544
|
IsSet = "IS_SET",
|
|
19544
19545
|
NotSet = "NOT_SET"
|
|
19545
19546
|
}
|
|
19547
|
+
export declare type CustomerHubAgentConfiguration = {
|
|
19548
|
+
__typename?: 'CustomerHubAgentConfiguration';
|
|
19549
|
+
agentIdentity?: Maybe<CustomerHubAgentConfigurationIdentityResult>;
|
|
19550
|
+
id: Scalars['ID']['output'];
|
|
19551
|
+
};
|
|
19552
|
+
export declare type CustomerHubAgentConfigurationIdentity = {
|
|
19553
|
+
__typename?: 'CustomerHubAgentConfigurationIdentity';
|
|
19554
|
+
conversationStarters?: Maybe<Array<CustomerHubAgentConfigurationIdentityConversationStarter>>;
|
|
19555
|
+
id: Scalars['ID']['output'];
|
|
19556
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19557
|
+
purpose?: Maybe<Scalars['String']['output']>;
|
|
19558
|
+
tone?: Maybe<CustomerHubAgentConfigurationIdentityTone>;
|
|
19559
|
+
};
|
|
19560
|
+
export declare type CustomerHubAgentConfigurationIdentityConversationStarter = {
|
|
19561
|
+
__typename?: 'CustomerHubAgentConfigurationIdentityConversationStarter';
|
|
19562
|
+
id: Scalars['ID']['output'];
|
|
19563
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
19564
|
+
};
|
|
19565
|
+
export declare type CustomerHubAgentConfigurationIdentityMapping = {
|
|
19566
|
+
__typename?: 'CustomerHubAgentConfigurationIdentityMapping';
|
|
19567
|
+
conversationStarters?: Maybe<Array<CustomerHubAgentConfigurationIdentityConversationStarter>>;
|
|
19568
|
+
id: Scalars['ID']['output'];
|
|
19569
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19570
|
+
};
|
|
19571
|
+
export declare type CustomerHubAgentConfigurationIdentityMappingResult = CustomerHubAgentConfigurationIdentityMapping | QueryError;
|
|
19572
|
+
export declare type CustomerHubAgentConfigurationIdentityResult = CustomerHubAgentConfigurationIdentity | QueryError;
|
|
19573
|
+
export declare type CustomerHubAgentConfigurationIdentityTone = {
|
|
19574
|
+
__typename?: 'CustomerHubAgentConfigurationIdentityTone';
|
|
19575
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19576
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
19577
|
+
};
|
|
19578
|
+
export declare type CustomerHubAgentConfigurationIdentityToneInput = {
|
|
19579
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
19580
|
+
type: Scalars['String']['input'];
|
|
19581
|
+
};
|
|
19582
|
+
export declare type CustomerHubAgentConfigurationResult = CustomerHubAgentConfiguration | QueryError;
|
|
19583
|
+
export declare type CustomerHubAgentConfigurationUpdateIdentityConfigurationInput = {
|
|
19584
|
+
addedConversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
19585
|
+
deletedConversationStarters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
19586
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
19587
|
+
purpose?: InputMaybe<Scalars['String']['input']>;
|
|
19588
|
+
tone?: InputMaybe<CustomerHubAgentConfigurationIdentityToneInput>;
|
|
19589
|
+
updatedConversationStarters?: InputMaybe<Array<CustomerHubAgentConfigurationUpdateIdentityConversationStarterInput>>;
|
|
19590
|
+
};
|
|
19591
|
+
export declare type CustomerHubAgentConfigurationUpdateIdentityConversationStarterInput = {
|
|
19592
|
+
id: Scalars['ID']['input'];
|
|
19593
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
19594
|
+
};
|
|
19595
|
+
export declare type CustomerHubAgentConfigurationUpdateIdentityPayload = Payload & {
|
|
19596
|
+
__typename?: 'CustomerHubAgentConfigurationUpdateIdentityPayload';
|
|
19597
|
+
agentIdentity?: Maybe<CustomerHubAgentConfigurationIdentity>;
|
|
19598
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19599
|
+
success: Scalars['Boolean']['output'];
|
|
19600
|
+
};
|
|
19546
19601
|
export declare type CustomerServiceAttribute = Node & {
|
|
19547
19602
|
__typename?: 'CustomerServiceAttribute';
|
|
19548
19603
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
@@ -21438,6 +21493,12 @@ export declare type DevAiTriggerAutofixScanPayload = Payload & {
|
|
|
21438
21493
|
errors?: Maybe<Array<MutationError>>;
|
|
21439
21494
|
success: Scalars['Boolean']['output'];
|
|
21440
21495
|
};
|
|
21496
|
+
export declare type DevAiUser = {
|
|
21497
|
+
__typename?: 'DevAiUser';
|
|
21498
|
+
atlassianAccountId: Scalars['ID']['output'];
|
|
21499
|
+
hasProductAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
21500
|
+
isAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
21501
|
+
};
|
|
21441
21502
|
export declare type DevAiWorkflowRunError = {
|
|
21442
21503
|
__typename?: 'DevAiWorkflowRunError';
|
|
21443
21504
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -25775,6 +25836,7 @@ export declare type ForgeMetricsCustomData = {
|
|
|
25775
25836
|
__typename?: 'ForgeMetricsCustomData';
|
|
25776
25837
|
appId: Scalars['ID']['output'];
|
|
25777
25838
|
createdAt: Scalars['String']['output'];
|
|
25839
|
+
createdBy?: Maybe<User>;
|
|
25778
25840
|
creatorId: Scalars['String']['output'];
|
|
25779
25841
|
customMetricName: Scalars['String']['output'];
|
|
25780
25842
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -30144,6 +30206,7 @@ export declare type GraphStore = {
|
|
|
30144
30206
|
issueChangesComponentRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
30145
30207
|
issueHasAssignee?: Maybe<GraphStoreSimplifiedIssueHasAssigneeConnection>;
|
|
30146
30208
|
issueHasAssigneeInverse?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseConnection>;
|
|
30209
|
+
issueHasAutodevJobInverse?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseConnection>;
|
|
30147
30210
|
issueInStatusInverse?: Maybe<GraphStoreSimplifiedIssueInStatusInverseConnection>;
|
|
30148
30211
|
issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
|
|
30149
30212
|
issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
|
|
@@ -31760,6 +31823,13 @@ export declare type GraphStoreIssueHasAssigneeInverseArgs = {
|
|
|
31760
31823
|
id: Scalars['ID']['input'];
|
|
31761
31824
|
sort?: InputMaybe<GraphStoreIssueHasAssigneeSortInput>;
|
|
31762
31825
|
};
|
|
31826
|
+
export declare type GraphStoreIssueHasAutodevJobInverseArgs = {
|
|
31827
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31828
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31829
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31830
|
+
id: Scalars['ID']['input'];
|
|
31831
|
+
sort?: InputMaybe<GraphStoreIssueHasAutodevJobSortInput>;
|
|
31832
|
+
};
|
|
31763
31833
|
export declare type GraphStoreIssueInStatusInverseArgs = {
|
|
31764
31834
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31765
31835
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40155,6 +40225,9 @@ export declare type GraphStoreIssueChangesComponentSortInput = {
|
|
|
40155
40225
|
export declare type GraphStoreIssueHasAssigneeSortInput = {
|
|
40156
40226
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40157
40227
|
};
|
|
40228
|
+
export declare type GraphStoreIssueHasAutodevJobSortInput = {
|
|
40229
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40230
|
+
};
|
|
40158
40231
|
export declare type GraphStoreIssueInStatusSortInput = {
|
|
40159
40232
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40160
40233
|
};
|
|
@@ -42672,6 +42745,20 @@ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseEdge = {
|
|
|
42672
42745
|
};
|
|
42673
42746
|
export declare type GraphStoreSimplifiedIssueHasAssigneeInverseUnion = JiraIssue;
|
|
42674
42747
|
export declare type GraphStoreSimplifiedIssueHasAssigneeUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42748
|
+
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseConnection = HasPageInfo & {
|
|
42749
|
+
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobInverseConnection';
|
|
42750
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseEdge>>>;
|
|
42751
|
+
pageInfo: PageInfo;
|
|
42752
|
+
};
|
|
42753
|
+
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseEdge = {
|
|
42754
|
+
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobInverseEdge';
|
|
42755
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42756
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42757
|
+
id: Scalars['ID']['output'];
|
|
42758
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42759
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseUnion>;
|
|
42760
|
+
};
|
|
42761
|
+
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseUnion = JiraIssue;
|
|
42675
42762
|
export declare type GraphStoreSimplifiedIssueInStatusInverseConnection = HasPageInfo & {
|
|
42676
42763
|
__typename?: 'GraphStoreSimplifiedIssueInStatusInverseConnection';
|
|
42677
42764
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueInStatusInverseEdge>>>;
|
|
@@ -55004,6 +55091,24 @@ export declare type JiraEstimate = {
|
|
|
55004
55091
|
export declare type JiraEstimateInput = {
|
|
55005
55092
|
timeInSeconds: Scalars['Long']['input'];
|
|
55006
55093
|
};
|
|
55094
|
+
export declare type JiraExportIssueDetailsInput = {
|
|
55095
|
+
includeComments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55096
|
+
includeFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55097
|
+
includeHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55098
|
+
includeWorklogs?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55099
|
+
issueId: Scalars['ID']['input'];
|
|
55100
|
+
};
|
|
55101
|
+
export declare type JiraExportIssueDetailsResponse = {
|
|
55102
|
+
__typename?: 'JiraExportIssueDetailsResponse';
|
|
55103
|
+
errors?: Maybe<Array<QueryError>>;
|
|
55104
|
+
taskResponse?: Maybe<JiraExportIssueDetailsTaskResponse>;
|
|
55105
|
+
};
|
|
55106
|
+
export declare type JiraExportIssueDetailsTaskResponse = {
|
|
55107
|
+
__typename?: 'JiraExportIssueDetailsTaskResponse';
|
|
55108
|
+
taskDescription?: Maybe<Scalars['String']['output']>;
|
|
55109
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
55110
|
+
taskStatus?: Maybe<JiraLongRunningTaskStatus>;
|
|
55111
|
+
};
|
|
55007
55112
|
export declare type JiraExtensionRenderingContextInput = {
|
|
55008
55113
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
55009
55114
|
portalId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -60965,6 +61070,7 @@ export declare type JiraProject = Node & {
|
|
|
60965
61070
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60966
61071
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
60967
61072
|
isLiveTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
61073
|
+
isPlaybooksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60968
61074
|
isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60969
61075
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
60970
61076
|
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
@@ -61732,6 +61838,7 @@ export declare type JiraQuery = {
|
|
|
61732
61838
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
61733
61839
|
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
61734
61840
|
epicLinkFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61841
|
+
exportIssueDetails?: Maybe<JiraExportIssueDetailsResponse>;
|
|
61735
61842
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
61736
61843
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
61737
61844
|
fieldSetViewQueryByProject?: Maybe<JiraFieldSetViewResult>;
|
|
@@ -62027,6 +62134,9 @@ export declare type JiraQueryDevOpsProvidersArgs = {
|
|
|
62027
62134
|
export declare type JiraQueryEpicLinkFieldKeyArgs = {
|
|
62028
62135
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
62029
62136
|
};
|
|
62137
|
+
export declare type JiraQueryExportIssueDetailsArgs = {
|
|
62138
|
+
input: JiraExportIssueDetailsInput;
|
|
62139
|
+
};
|
|
62030
62140
|
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
62031
62141
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
62032
62142
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69812,6 +69922,11 @@ export declare enum LoomMeetingSource {
|
|
|
69812
69922
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
69813
69923
|
Zoom = "ZOOM"
|
|
69814
69924
|
}
|
|
69925
|
+
export declare type LoomSettings = {
|
|
69926
|
+
__typename?: 'LoomSettings';
|
|
69927
|
+
meetingNotesAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
69928
|
+
meetingNotesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69929
|
+
};
|
|
69815
69930
|
export declare type LoomSpace = Node & {
|
|
69816
69931
|
__typename?: 'LoomSpace';
|
|
69817
69932
|
id: Scalars['ID']['output'];
|
|
@@ -70279,6 +70394,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
70279
70394
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
70280
70395
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
70281
70396
|
hosting: MarketplaceConsoleHosting;
|
|
70397
|
+
isLatestActiveVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
70282
70398
|
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
70283
70399
|
latestForgeVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
70284
70400
|
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
@@ -71893,6 +72009,7 @@ export declare type MarketplaceStorePartnerListing = {
|
|
|
71893
72009
|
slug?: Maybe<Scalars['String']['output']>;
|
|
71894
72010
|
supportAvailability?: Maybe<MarketplaceStorePartnerSupportAvailability>;
|
|
71895
72011
|
supportContact?: Maybe<MarketplaceStorePartnerSupportContact>;
|
|
72012
|
+
trustCenterUrl?: Maybe<Scalars['String']['output']>;
|
|
71896
72013
|
};
|
|
71897
72014
|
export declare type MarketplaceStorePartnerResponse = {
|
|
71898
72015
|
__typename?: 'MarketplaceStorePartnerResponse';
|
|
@@ -72435,6 +72552,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
72435
72552
|
teamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
72436
72553
|
updatedDate: Scalars['String']['output'];
|
|
72437
72554
|
url?: Maybe<Scalars['String']['output']>;
|
|
72555
|
+
uuid: Scalars['UUID']['output'];
|
|
72438
72556
|
watchers?: Maybe<MercuryUserConnection>;
|
|
72439
72557
|
watching: Scalars['Boolean']['output'];
|
|
72440
72558
|
};
|
|
@@ -73959,6 +74077,7 @@ export declare type Mutation = {
|
|
|
73959
74077
|
createSystemSpace?: Maybe<Space>;
|
|
73960
74078
|
createTemplate?: Maybe<ContentTemplate>;
|
|
73961
74079
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
74080
|
+
customerHubAgentConfiguration_updateIdentityConfiguration?: Maybe<CustomerHubAgentConfigurationUpdateIdentityPayload>;
|
|
73962
74081
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
73963
74082
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
73964
74083
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -75086,6 +75205,11 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
75086
75205
|
forceCreate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75087
75206
|
input: WebTriggerUrlInput;
|
|
75088
75207
|
};
|
|
75208
|
+
export declare type MutationCustomerHubAgentConfiguration_UpdateIdentityConfigurationArgs = {
|
|
75209
|
+
agentConfigurationId: Scalars['ID']['input'];
|
|
75210
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
75211
|
+
input?: InputMaybe<CustomerHubAgentConfigurationUpdateIdentityConfigurationInput>;
|
|
75212
|
+
};
|
|
75089
75213
|
export declare type MutationCustomerServiceArgs = {
|
|
75090
75214
|
cloudId: Scalars['ID']['input'];
|
|
75091
75215
|
};
|
|
@@ -75978,6 +76102,9 @@ export declare type MyVisitedSpacesItems = {
|
|
|
75978
76102
|
__typename?: 'MyVisitedSpacesItems';
|
|
75979
76103
|
spaces?: Maybe<Array<Maybe<Space>>>;
|
|
75980
76104
|
};
|
|
76105
|
+
export declare type MyVisitedSpacesItemsSpacesArgs = {
|
|
76106
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
76107
|
+
};
|
|
75981
76108
|
export declare type NadelBatchObjectIdentifiedBy = {
|
|
75982
76109
|
resultId: Scalars['String']['input'];
|
|
75983
76110
|
sourceId: Scalars['String']['input'];
|
|
@@ -78812,6 +78939,8 @@ export declare type Query = {
|
|
|
78812
78939
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
78813
78940
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
78814
78941
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
78942
|
+
customerHubAgentConfiguration_configurationByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationResult>;
|
|
78943
|
+
customerHubAgentConfiguration_mappingByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationIdentityMappingResult>;
|
|
78815
78944
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
78816
78945
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
78817
78946
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
@@ -78848,6 +78977,7 @@ export declare type Query = {
|
|
|
78848
78977
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
78849
78978
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
78850
78979
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
78980
|
+
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
78851
78981
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
78852
78982
|
devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
78853
78983
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
@@ -78967,6 +79097,7 @@ export declare type Query = {
|
|
|
78967
79097
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
78968
79098
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
78969
79099
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
79100
|
+
loom_settings?: Maybe<LoomSettings>;
|
|
78970
79101
|
loom_space?: Maybe<LoomSpace>;
|
|
78971
79102
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
78972
79103
|
loom_spacesSearch: Array<Maybe<LoomSpace>>;
|
|
@@ -80623,6 +80754,12 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
80623
80754
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
80624
80755
|
startTime: Scalars['String']['input'];
|
|
80625
80756
|
};
|
|
80757
|
+
export declare type QueryCustomerHubAgentConfiguration_ConfigurationByHelpCenterAriArgs = {
|
|
80758
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
80759
|
+
};
|
|
80760
|
+
export declare type QueryCustomerHubAgentConfiguration_MappingByHelpCenterAriArgs = {
|
|
80761
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
80762
|
+
};
|
|
80626
80763
|
export declare type QueryCustomerServiceArgs = {
|
|
80627
80764
|
cloudId: Scalars['ID']['input'];
|
|
80628
80765
|
};
|
|
@@ -80766,6 +80903,10 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
80766
80903
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
80767
80904
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
80768
80905
|
};
|
|
80906
|
+
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
80907
|
+
atlassianAccountId: Scalars['ID']['input'];
|
|
80908
|
+
cloudId: Scalars['ID']['input'];
|
|
80909
|
+
};
|
|
80769
80910
|
export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
|
|
80770
80911
|
cloudId: Scalars['ID']['input'];
|
|
80771
80912
|
jobId: Scalars['ID']['input'];
|
|
@@ -81111,6 +81252,9 @@ export declare type QueryLoom_MeetingRecurrencesArgs = {
|
|
|
81111
81252
|
export declare type QueryLoom_MeetingsArgs = {
|
|
81112
81253
|
ids: Array<Scalars['ID']['input']>;
|
|
81113
81254
|
};
|
|
81255
|
+
export declare type QueryLoom_SettingsArgs = {
|
|
81256
|
+
siteId: Scalars['ID']['input'];
|
|
81257
|
+
};
|
|
81114
81258
|
export declare type QueryLoom_SpaceArgs = {
|
|
81115
81259
|
id: Scalars['ID']['input'];
|
|
81116
81260
|
};
|
|
@@ -81165,6 +81309,7 @@ export declare type QueryMyVisitedPagesArgs = {
|
|
|
81165
81309
|
};
|
|
81166
81310
|
export declare type QueryMyVisitedSpacesArgs = {
|
|
81167
81311
|
accountId?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
81312
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
81168
81313
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
81169
81314
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
81170
81315
|
eventName?: InputMaybe<Array<InputMaybe<AnalyticsEventName>>>;
|
|
@@ -81547,6 +81692,7 @@ export declare type QuerySoftwareBoardsArgs = {
|
|
|
81547
81692
|
projectAri: Scalars['ID']['input'];
|
|
81548
81693
|
};
|
|
81549
81694
|
export declare type QuerySpaceArgs = {
|
|
81695
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
81550
81696
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
81551
81697
|
identifier?: InputMaybe<Scalars['ID']['input']>;
|
|
81552
81698
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -84097,6 +84243,7 @@ export declare type SearchLayerDefinition = {
|
|
|
84097
84243
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
84098
84244
|
};
|
|
84099
84245
|
export declare type SearchMercuryFilter = {
|
|
84246
|
+
ancestorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84100
84247
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84101
84248
|
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84102
84249
|
};
|
|
@@ -84456,6 +84603,7 @@ export declare type SearchResultMercuryFocusArea = SearchResult & {
|
|
|
84456
84603
|
export declare type SearchResultMercuryFocusAreaStatusUpdate = SearchResult & {
|
|
84457
84604
|
__typename?: 'SearchResultMercuryFocusAreaStatusUpdate';
|
|
84458
84605
|
description: Scalars['String']['output'];
|
|
84606
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
84459
84607
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
84460
84608
|
id: Scalars['ID']['output'];
|
|
84461
84609
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -92110,16 +92258,17 @@ export declare type UnifiedConsentMutationUpdateConsentArgs = {
|
|
|
92110
92258
|
};
|
|
92111
92259
|
export declare type UnifiedConsentObj = {
|
|
92112
92260
|
__typename?: 'UnifiedConsentObj';
|
|
92113
|
-
|
|
92114
|
-
|
|
92115
|
-
|
|
92116
|
-
|
|
92117
|
-
|
|
92261
|
+
consentKey: Scalars['String']['output'];
|
|
92262
|
+
consentStatus: Scalars['String']['output'];
|
|
92263
|
+
consenthubStatus: Scalars['Boolean']['output'];
|
|
92264
|
+
createdAt: Scalars['String']['output'];
|
|
92265
|
+
updatedAt: Scalars['String']['output'];
|
|
92266
|
+
uppConsentStatus: Scalars['Boolean']['output'];
|
|
92118
92267
|
};
|
|
92119
92268
|
export declare type UnifiedConsentObjInput = {
|
|
92120
|
-
|
|
92121
|
-
|
|
92122
|
-
|
|
92269
|
+
consentKey: Scalars['String']['input'];
|
|
92270
|
+
consentStatus: Scalars['String']['input'];
|
|
92271
|
+
displayedText?: InputMaybe<Scalars['String']['input']>;
|
|
92123
92272
|
};
|
|
92124
92273
|
export declare type UnifiedConsentPayload = UnifiedPayload & {
|
|
92125
92274
|
__typename?: 'UnifiedConsentPayload';
|
|
@@ -92137,11 +92286,11 @@ export declare type UnifiedConsentQueryGetConsentArgs = {
|
|
|
92137
92286
|
};
|
|
92138
92287
|
export declare type UnifiedConsentStatus = UnifiedINode & {
|
|
92139
92288
|
__typename?: 'UnifiedConsentStatus';
|
|
92140
|
-
|
|
92141
|
-
|
|
92289
|
+
consentObj: Array<UnifiedConsentObj>;
|
|
92290
|
+
createdAt: Scalars['String']['output'];
|
|
92142
92291
|
id: Scalars['ID']['output'];
|
|
92143
92292
|
type: Scalars['String']['output'];
|
|
92144
|
-
|
|
92293
|
+
updatedAt: Scalars['String']['output'];
|
|
92145
92294
|
value: Scalars['String']['output'];
|
|
92146
92295
|
};
|
|
92147
92296
|
export declare type UnifiedForums = UnifiedINode & {
|
|
@@ -92508,6 +92657,7 @@ export declare type UnifiedMutation = {
|
|
|
92508
92657
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
92509
92658
|
gating?: Maybe<UnifiedGatingMutation>;
|
|
92510
92659
|
linking?: Maybe<UnifiedLinkingMutation>;
|
|
92660
|
+
profile?: Maybe<UnifiedProfileMutation>;
|
|
92511
92661
|
updateUnifiedProfile?: Maybe<UnifiedProfilePayload>;
|
|
92512
92662
|
};
|
|
92513
92663
|
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
|
|
@@ -92608,6 +92758,13 @@ export declare type UnifiedProfileInput = {
|
|
|
92608
92758
|
xUrl?: InputMaybe<Scalars['String']['input']>;
|
|
92609
92759
|
youtubeUrl?: InputMaybe<Scalars['String']['input']>;
|
|
92610
92760
|
};
|
|
92761
|
+
export declare type UnifiedProfileMutation = {
|
|
92762
|
+
__typename?: 'UnifiedProfileMutation';
|
|
92763
|
+
getExistingOrNewProfileFromKhorosUserId?: Maybe<UnifiedProfilePayload>;
|
|
92764
|
+
};
|
|
92765
|
+
export declare type UnifiedProfileMutationGetExistingOrNewProfileFromKhorosUserIdArgs = {
|
|
92766
|
+
khorosUserId: Scalars['String']['input'];
|
|
92767
|
+
};
|
|
92611
92768
|
export declare type UnifiedProfilePayload = UnifiedPayload & {
|
|
92612
92769
|
__typename?: 'UnifiedProfilePayload';
|
|
92613
92770
|
errors?: Maybe<Array<UnifiedMutationError>>;
|