@forge/cli-shared 4.0.1-next.1 → 4.0.1
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 +18 -0
- package/out/app-logs/graphql-client.js +2 -9
- package/out/app-logs/view-logs.js +0 -4
- package/out/apps/app-config.js +1 -4
- package/out/apps/create-an-app.js +0 -3
- package/out/apps/create-app-graphql-client.js +0 -1
- package/out/apps/get-app-owner.js +0 -2
- package/out/apps/package-installer.js +0 -1
- package/out/apps/register-app.js +1 -8
- package/out/apps/template.js +0 -5
- package/out/auth/personal/credential-store.js +2 -7
- package/out/auth/personal/login.js +2 -8
- package/out/auth/personal/logout.js +0 -1
- package/out/auth/personal/me-graphql-client.js +0 -2
- package/out/auth/personal/token-authenticator.js +0 -1
- package/out/cache/cached-conf.js +0 -1
- package/out/config/config-file-section-reader.js +0 -4
- package/out/config/config-file-section-writer.js +0 -2
- 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 +44 -37
- package/out/config/config-section.js +0 -1
- package/out/file-system/file-system-reader.js +2 -2
- package/out/graphql/app-environment-graphql-client.js +0 -1
- package/out/graphql/app-oauth-client-id-graphql-client.js +0 -1
- package/out/graphql/debugging-graphql-runner.js +0 -3
- package/out/graphql/get-mutation-error.js +5 -4
- package/out/graphql/graphql-types.d.ts +240 -2
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +14 -7
- package/out/graphql/minimal-graphql-runner.js +22 -30
- package/out/graphql/mutation-aware-graphql-client.js +10 -14
- package/out/http-client/feedback-post-client.js +3 -1
- package/out/http-client/file-uploader.js +0 -1
- package/out/http-client/global-edge-http-client.js +0 -1
- package/out/http-client/trace.js +2 -1
- package/out/runtimes/helper.js +1 -1
- package/out/service/bridge-script-service.js +0 -1
- package/out/service/feature-flag-service.js +46 -50
- package/out/service/iframe-resizer-script-service.js +0 -1
- package/out/shared/cli-details.js +2 -2
- package/out/shared/error-handling.js +3 -5
- package/out/shared/product.js +4 -2
- package/out/shared/read-app-config-files.js +5 -7
- package/out/shared/validate.js +1 -1
- package/out/ui/command-line-ui.js +8 -14
- package/out/ui/multiple-table-prompt.js +1 -1
- package/out/ui/table-prompt.js +1 -8
- package/package.json +2 -2
|
@@ -4226,7 +4226,7 @@ export declare type CompassDocument = Node & {
|
|
|
4226
4226
|
__typename?: 'CompassDocument';
|
|
4227
4227
|
changeMetadata: CompassChangeMetadata;
|
|
4228
4228
|
componentId: Scalars['ID']['output'];
|
|
4229
|
-
|
|
4229
|
+
documentationCategoryId: Scalars['ID']['output'];
|
|
4230
4230
|
id: Scalars['ID']['output'];
|
|
4231
4231
|
title?: Maybe<Scalars['String']['output']>;
|
|
4232
4232
|
url: Scalars['URL']['output'];
|
|
@@ -5060,6 +5060,7 @@ export declare type CompassScorecardAutomaticApplicationModel = CompassScorecard
|
|
|
5060
5060
|
__typename?: 'CompassScorecardAutomaticApplicationModel';
|
|
5061
5061
|
applicationType: Scalars['String']['output'];
|
|
5062
5062
|
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
5063
|
+
componentOwnerIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
5063
5064
|
componentTiers?: Maybe<Array<CompassComponentTier>>;
|
|
5064
5065
|
componentTypeIds: Array<Scalars['ID']['output']>;
|
|
5065
5066
|
};
|
|
@@ -5608,7 +5609,7 @@ export declare type CompassUpdateCustomUserFieldDefinitionInput = {
|
|
|
5608
5609
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5609
5610
|
};
|
|
5610
5611
|
export declare type CompassUpdateDocumentInput = {
|
|
5611
|
-
|
|
5612
|
+
documentationCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
5612
5613
|
id: Scalars['ID']['input'];
|
|
5613
5614
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
5614
5615
|
url?: InputMaybe<Scalars['URL']['input']>;
|
|
@@ -7459,6 +7460,7 @@ export declare type ContentPlatformTemplate = {
|
|
|
7459
7460
|
oneLinerHeadline?: Maybe<Scalars['String']['output']>;
|
|
7460
7461
|
pluginModuleKey: Scalars['String']['output'];
|
|
7461
7462
|
previewBlurb?: Maybe<Scalars['String']['output']>;
|
|
7463
|
+
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
7462
7464
|
relatedTemplates?: Maybe<Array<ContentPlatformTemplate>>;
|
|
7463
7465
|
targetAudience?: Maybe<Array<ContentPlatformTaxonomyUserRoleNew>>;
|
|
7464
7466
|
targetOrganizationSize?: Maybe<Array<ContentPlatformTaxonomyCompanySize>>;
|
|
@@ -7842,6 +7844,7 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
7842
7844
|
};
|
|
7843
7845
|
export declare type CreateCompassScorecardInput = {
|
|
7844
7846
|
componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7847
|
+
componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7845
7848
|
componentTierValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7846
7849
|
componentTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7847
7850
|
criterias?: InputMaybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
@@ -9410,6 +9413,7 @@ export declare type DevAiAutofixConfiguration = {
|
|
|
9410
9413
|
__typename?: 'DevAiAutofixConfiguration';
|
|
9411
9414
|
id: Scalars['ID']['output'];
|
|
9412
9415
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
9416
|
+
lastScan?: Maybe<Scalars['DateTime']['output']>;
|
|
9413
9417
|
};
|
|
9414
9418
|
export declare type DevAiAutofixConfigurationConnection = {
|
|
9415
9419
|
__typename?: 'DevAiAutofixConfigurationConnection';
|
|
@@ -9421,6 +9425,31 @@ export declare type DevAiAutofixConfigurationEdge = {
|
|
|
9421
9425
|
cursor: Scalars['String']['output'];
|
|
9422
9426
|
node?: Maybe<DevAiAutofixConfiguration>;
|
|
9423
9427
|
};
|
|
9428
|
+
export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension & {
|
|
9429
|
+
__typename?: 'DevAiGenericMutationErrorExtension';
|
|
9430
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
9431
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
9432
|
+
};
|
|
9433
|
+
export declare type DevAiMutations = {
|
|
9434
|
+
__typename?: 'DevAiMutations';
|
|
9435
|
+
triggerAutofixScan?: Maybe<DevAiTriggerAutofixScanPayload>;
|
|
9436
|
+
};
|
|
9437
|
+
export declare type DevAiMutationsTriggerAutofixScanArgs = {
|
|
9438
|
+
input: DevAiTriggerAutofixScanInput;
|
|
9439
|
+
};
|
|
9440
|
+
export declare type DevAiTriggerAutofixScanInput = {
|
|
9441
|
+
codeCoverageCommand: Scalars['String']['input'];
|
|
9442
|
+
codeCoverageReportPath: Scalars['String']['input'];
|
|
9443
|
+
coveragePercentage: Scalars['Int']['input'];
|
|
9444
|
+
primaryLanguage: Scalars['String']['input'];
|
|
9445
|
+
repoUrl: Scalars['URL']['input'];
|
|
9446
|
+
workspaceId: Scalars['ID']['input'];
|
|
9447
|
+
};
|
|
9448
|
+
export declare type DevAiTriggerAutofixScanPayload = Payload & {
|
|
9449
|
+
__typename?: 'DevAiTriggerAutofixScanPayload';
|
|
9450
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9451
|
+
success: Scalars['Boolean']['output'];
|
|
9452
|
+
};
|
|
9424
9453
|
export declare type DevOps = {
|
|
9425
9454
|
__typename?: 'DevOps';
|
|
9426
9455
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -11785,6 +11814,7 @@ export declare enum ForgeMetricsApiRequestStatus {
|
|
|
11785
11814
|
'5Xx' = "_5XX"
|
|
11786
11815
|
}
|
|
11787
11816
|
export declare enum ForgeMetricsApiRequestType {
|
|
11817
|
+
Cache = "CACHE",
|
|
11788
11818
|
External = "EXTERNAL",
|
|
11789
11819
|
Product = "PRODUCT"
|
|
11790
11820
|
}
|
|
@@ -28624,11 +28654,27 @@ export declare enum JiraBitbucketWorkspaceApprovalState {
|
|
|
28624
28654
|
export declare type JiraBoard = Node & {
|
|
28625
28655
|
__typename?: 'JiraBoard';
|
|
28626
28656
|
boardId?: Maybe<Scalars['Long']['output']>;
|
|
28657
|
+
boardType?: Maybe<JiraBoardType>;
|
|
28627
28658
|
boardUrl?: Maybe<Scalars['URL']['output']>;
|
|
28628
28659
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
28629
28660
|
id: Scalars['ID']['output'];
|
|
28630
28661
|
name?: Maybe<Scalars['String']['output']>;
|
|
28631
28662
|
};
|
|
28663
|
+
export declare type JiraBoardConnection = {
|
|
28664
|
+
__typename?: 'JiraBoardConnection';
|
|
28665
|
+
edges?: Maybe<Array<Maybe<JiraBoardEdge>>>;
|
|
28666
|
+
pageInfo: PageInfo;
|
|
28667
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
28668
|
+
};
|
|
28669
|
+
export declare type JiraBoardEdge = {
|
|
28670
|
+
__typename?: 'JiraBoardEdge';
|
|
28671
|
+
cursor: Scalars['String']['output'];
|
|
28672
|
+
node?: Maybe<JiraBoard>;
|
|
28673
|
+
};
|
|
28674
|
+
export declare enum JiraBoardType {
|
|
28675
|
+
Kanban = "KANBAN",
|
|
28676
|
+
Scrum = "SCRUM"
|
|
28677
|
+
}
|
|
28632
28678
|
export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
28633
28679
|
__typename?: 'JiraBooleanField';
|
|
28634
28680
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -28972,6 +29018,17 @@ export declare type JiraCannedResponseUpdatePayload = Payload & {
|
|
|
28972
29018
|
jiraCannedResponse?: Maybe<JiraCannedResponse>;
|
|
28973
29019
|
success: Scalars['Boolean']['output'];
|
|
28974
29020
|
};
|
|
29021
|
+
export declare type JiraCardCoversProjectToggleInput = {
|
|
29022
|
+
cardCoversEnabled: Scalars['Boolean']['input'];
|
|
29023
|
+
cloudId: Scalars['ID']['input'];
|
|
29024
|
+
projectIdOrKey: Scalars['String']['input'];
|
|
29025
|
+
};
|
|
29026
|
+
export declare type JiraCardCoversProjectTogglePayload = Payload & {
|
|
29027
|
+
__typename?: 'JiraCardCoversProjectTogglePayload';
|
|
29028
|
+
cardCoversEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
29029
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29030
|
+
success: Scalars['Boolean']['output'];
|
|
29031
|
+
};
|
|
28975
29032
|
export declare type JiraCascadingOption = {
|
|
28976
29033
|
__typename?: 'JiraCascadingOption';
|
|
28977
29034
|
childOptionValue?: Maybe<JiraOption>;
|
|
@@ -29729,6 +29786,15 @@ export declare type JiraCreateLargeSolutionPayload = Payload & {
|
|
|
29729
29786
|
largeSolution?: Maybe<JiraLargeSolution>;
|
|
29730
29787
|
success: Scalars['Boolean']['output'];
|
|
29731
29788
|
};
|
|
29789
|
+
export declare type JiraCreatePlanInput = {
|
|
29790
|
+
cloudId: Scalars['ID']['input'];
|
|
29791
|
+
};
|
|
29792
|
+
export declare type JiraCreatePlanPayload = Payload & {
|
|
29793
|
+
__typename?: 'JiraCreatePlanPayload';
|
|
29794
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29795
|
+
plan?: Maybe<JiraPlan>;
|
|
29796
|
+
success: Scalars['Boolean']['output'];
|
|
29797
|
+
};
|
|
29732
29798
|
export declare type JiraCreateReleaseNoteConfluencePageInput = {
|
|
29733
29799
|
appLinkId?: InputMaybe<Scalars['ID']['input']>;
|
|
29734
29800
|
excludeIssueKey?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30109,6 +30175,7 @@ export declare type JiraDevOpsMutationApproveJiraBitbucketWorkspaceAccessRequest
|
|
|
30109
30175
|
};
|
|
30110
30176
|
export declare type JiraDevOpsMutationCreateAutodevJobArgs = {
|
|
30111
30177
|
issueAri: Scalars['ID']['input'];
|
|
30178
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
30112
30179
|
repoUrl: Scalars['String']['input'];
|
|
30113
30180
|
};
|
|
30114
30181
|
export declare type JiraDevOpsMutationCreateAutofixJobArgs = {
|
|
@@ -33258,6 +33325,7 @@ export declare type JiraMutation = {
|
|
|
33258
33325
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
33259
33326
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
33260
33327
|
createSafeGlobalData?: Maybe<JiraCreateSafeGlobalDataPayload>;
|
|
33328
|
+
createSafePlan?: Maybe<JiraCreatePlanPayload>;
|
|
33261
33329
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
33262
33330
|
deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
|
|
33263
33331
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
@@ -33303,6 +33371,7 @@ export declare type JiraMutation = {
|
|
|
33303
33371
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
33304
33372
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
33305
33373
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
33374
|
+
toggleJiraProjectCardCovers?: Maybe<JiraCardCoversProjectTogglePayload>;
|
|
33306
33375
|
unlinkIssuesFromIncident?: Maybe<JiraUnlinkIssuesFromIncidentMutationPayload>;
|
|
33307
33376
|
updateAttachmentField?: Maybe<JiraAttachmentFieldPayload>;
|
|
33308
33377
|
updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
|
|
@@ -33432,6 +33501,9 @@ export declare type JiraMutationCreateReleaseNoteConfluencePageArgs = {
|
|
|
33432
33501
|
export declare type JiraMutationCreateSafeGlobalDataArgs = {
|
|
33433
33502
|
input: JiraCreateSafeGlobalDataInput;
|
|
33434
33503
|
};
|
|
33504
|
+
export declare type JiraMutationCreateSafePlanArgs = {
|
|
33505
|
+
input: JiraCreatePlanInput;
|
|
33506
|
+
};
|
|
33435
33507
|
export declare type JiraMutationDeleteGlobalPermissionGrantArgs = {
|
|
33436
33508
|
cloudId: Scalars['ID']['input'];
|
|
33437
33509
|
input: JiraGlobalPermissionDeleteGroupGrantInput;
|
|
@@ -33570,6 +33642,9 @@ export declare type JiraMutationSubmitBulkOperationArgs = {
|
|
|
33570
33642
|
cloudId: Scalars['ID']['input'];
|
|
33571
33643
|
input: JiraSubmitBulkOperationInput;
|
|
33572
33644
|
};
|
|
33645
|
+
export declare type JiraMutationToggleJiraProjectCardCoversArgs = {
|
|
33646
|
+
input?: InputMaybe<JiraCardCoversProjectToggleInput>;
|
|
33647
|
+
};
|
|
33573
33648
|
export declare type JiraMutationUnlinkIssuesFromIncidentArgs = {
|
|
33574
33649
|
input: JiraUnlinkIssuesFromIncidentMutationInput;
|
|
33575
33650
|
};
|
|
@@ -34610,6 +34685,7 @@ export declare type JiraProject = Node & {
|
|
|
34610
34685
|
associatedJsmProjectsByComponent?: Maybe<GraphJiraProjectConnection>;
|
|
34611
34686
|
associatedServices?: Maybe<GraphProjectServiceConnection>;
|
|
34612
34687
|
avatar?: Maybe<JiraAvatar>;
|
|
34688
|
+
boards?: Maybe<JiraBoardConnection>;
|
|
34613
34689
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']['output']>;
|
|
34614
34690
|
category?: Maybe<JiraProjectCategory>;
|
|
34615
34691
|
classificationTags: Array<Scalars['String']['output']>;
|
|
@@ -34669,6 +34745,12 @@ export declare type JiraProjectAssociatedComponentsArgs = {
|
|
|
34669
34745
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34670
34746
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34671
34747
|
};
|
|
34748
|
+
export declare type JiraProjectBoardsArgs = {
|
|
34749
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34750
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
34751
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34752
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
34753
|
+
};
|
|
34672
34754
|
export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
34673
34755
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34674
34756
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -35909,6 +35991,7 @@ export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
|
35909
35991
|
cloudId: Scalars['ID']['input'];
|
|
35910
35992
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35911
35993
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35994
|
+
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
35912
35995
|
statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
|
|
35913
35996
|
userStatus?: InputMaybe<JiraProjectRoleActorUserStatus>;
|
|
35914
35997
|
};
|
|
@@ -37818,6 +37901,7 @@ export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueField
|
|
|
37818
37901
|
export declare type JiraSingleGroupPickerFieldGroupsArgs = {
|
|
37819
37902
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37820
37903
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
37904
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
37821
37905
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37822
37906
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
37823
37907
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38836,6 +38920,7 @@ export declare type JiraUpdateTeamFieldInput = {
|
|
|
38836
38920
|
export declare type JiraUpdateTimeTrackingFieldInput = {
|
|
38837
38921
|
id: Scalars['ID']['input'];
|
|
38838
38922
|
originalEstimate?: InputMaybe<JiraEstimateInput>;
|
|
38923
|
+
remainingEstimate?: InputMaybe<JiraEstimateInput>;
|
|
38839
38924
|
};
|
|
38840
38925
|
export declare type JiraUpdateUrlFieldInput = {
|
|
38841
38926
|
id: Scalars['ID']['input'];
|
|
@@ -41585,6 +41670,7 @@ export declare type Mutation = {
|
|
|
41585
41670
|
deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
|
|
41586
41671
|
deleteSprint?: Maybe<MutationResponse>;
|
|
41587
41672
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
41673
|
+
devAi?: Maybe<DevAiMutations>;
|
|
41588
41674
|
devOps?: Maybe<DevOpsMutation>;
|
|
41589
41675
|
ecosystem?: Maybe<EcosystemMutation>;
|
|
41590
41676
|
editSprint?: Maybe<SprintResponse>;
|
|
@@ -41647,6 +41733,7 @@ export declare type Mutation = {
|
|
|
41647
41733
|
trello: TrelloMutationApi;
|
|
41648
41734
|
unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
|
|
41649
41735
|
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
41736
|
+
unified: UnifiedMutation;
|
|
41650
41737
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
41651
41738
|
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
41652
41739
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
@@ -44407,6 +44494,7 @@ export declare type Query = {
|
|
|
44407
44494
|
topicOverviews: ContentPlatformTopicOverviewContentSearchConnection;
|
|
44408
44495
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
44409
44496
|
trello: TrelloQueryApi;
|
|
44497
|
+
unified: UnifiedQuery;
|
|
44410
44498
|
user?: Maybe<User>;
|
|
44411
44499
|
users?: Maybe<Array<User>>;
|
|
44412
44500
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
@@ -46386,6 +46474,20 @@ export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
|
46386
46474
|
type: SearchResultType;
|
|
46387
46475
|
url: Scalars['URL']['output'];
|
|
46388
46476
|
};
|
|
46477
|
+
export declare type SearchResultCompassComponent = SearchResult & {
|
|
46478
|
+
__typename?: 'SearchResultCompassComponent';
|
|
46479
|
+
component?: Maybe<CompassComponent>;
|
|
46480
|
+
componentType?: Maybe<Scalars['String']['output']>;
|
|
46481
|
+
description: Scalars['String']['output'];
|
|
46482
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
46483
|
+
id: Scalars['ID']['output'];
|
|
46484
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
46485
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
46486
|
+
tier?: Maybe<Scalars['String']['output']>;
|
|
46487
|
+
title: Scalars['String']['output'];
|
|
46488
|
+
type: SearchResultType;
|
|
46489
|
+
url: Scalars['URL']['output'];
|
|
46490
|
+
};
|
|
46389
46491
|
export declare type SearchResultGoogleDocument = SearchResult & {
|
|
46390
46492
|
__typename?: 'SearchResultGoogleDocument';
|
|
46391
46493
|
bodyText: Scalars['String']['output'];
|
|
@@ -46527,6 +46629,7 @@ export declare enum SearchResultType {
|
|
|
46527
46629
|
Blogpost = "blogpost",
|
|
46528
46630
|
Board = "board",
|
|
46529
46631
|
Comment = "comment",
|
|
46632
|
+
Component = "component",
|
|
46530
46633
|
Dashboard = "dashboard",
|
|
46531
46634
|
Database = "database",
|
|
46532
46635
|
Document = "document",
|
|
@@ -49292,6 +49395,7 @@ export declare type TownsquareMutationApi = {
|
|
|
49292
49395
|
createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
|
|
49293
49396
|
deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
|
|
49294
49397
|
editGoal?: Maybe<TownsquareEditGoalPayload>;
|
|
49398
|
+
setParentGoal?: Maybe<TownsquareSetParentGoalPayload>;
|
|
49295
49399
|
unarchiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
|
|
49296
49400
|
};
|
|
49297
49401
|
export declare type TownsquareMutationApiArchiveGoalArgs = {
|
|
@@ -49309,6 +49413,9 @@ export declare type TownsquareMutationApiDeleteRelationshipsArgs = {
|
|
|
49309
49413
|
export declare type TownsquareMutationApiEditGoalArgs = {
|
|
49310
49414
|
input: TownsquareEditGoalInput;
|
|
49311
49415
|
};
|
|
49416
|
+
export declare type TownsquareMutationApiSetParentGoalArgs = {
|
|
49417
|
+
input?: InputMaybe<TownsquareSetParentGoalInput>;
|
|
49418
|
+
};
|
|
49312
49419
|
export declare type TownsquareMutationApiUnarchiveGoalArgs = {
|
|
49313
49420
|
input: TownsquareArchiveGoalInput;
|
|
49314
49421
|
};
|
|
@@ -49442,6 +49549,15 @@ export declare type TownsquareRelationshipInput = {
|
|
|
49442
49549
|
from: Scalars['String']['input'];
|
|
49443
49550
|
to: Scalars['String']['input'];
|
|
49444
49551
|
};
|
|
49552
|
+
export declare type TownsquareSetParentGoalInput = {
|
|
49553
|
+
goalAri: Scalars['String']['input'];
|
|
49554
|
+
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
49555
|
+
};
|
|
49556
|
+
export declare type TownsquareSetParentGoalPayload = {
|
|
49557
|
+
__typename?: 'TownsquareSetParentGoalPayload';
|
|
49558
|
+
goal?: Maybe<TownsquareGoal>;
|
|
49559
|
+
parentGoal?: Maybe<TownsquareGoal>;
|
|
49560
|
+
};
|
|
49445
49561
|
export declare type TownsquareStatus = {
|
|
49446
49562
|
__typename?: 'TownsquareStatus';
|
|
49447
49563
|
localizedLabel?: Maybe<TownsquareLocalizationField>;
|
|
@@ -50755,6 +50871,127 @@ export declare type UnassignIssueParentOutput = MutationResponse & {
|
|
|
50755
50871
|
statusCode: Scalars['Int']['output'];
|
|
50756
50872
|
success: Scalars['Boolean']['output'];
|
|
50757
50873
|
};
|
|
50874
|
+
export declare type UnifiedAccount = {
|
|
50875
|
+
__typename?: 'UnifiedAccount';
|
|
50876
|
+
aaid: Scalars['ID']['output'];
|
|
50877
|
+
conpAaid?: Maybe<Scalars['String']['output']>;
|
|
50878
|
+
uaIid?: Maybe<Scalars['String']['output']>;
|
|
50879
|
+
upIid?: Maybe<Scalars['String']['output']>;
|
|
50880
|
+
};
|
|
50881
|
+
export declare type UnifiedAccountInput = {
|
|
50882
|
+
aaid: Scalars['String']['input'];
|
|
50883
|
+
conpAaid?: InputMaybe<Scalars['String']['input']>;
|
|
50884
|
+
upIid?: InputMaybe<Scalars['String']['input']>;
|
|
50885
|
+
};
|
|
50886
|
+
export declare type UnifiedCreateAccountSuccess = {
|
|
50887
|
+
__typename?: 'UnifiedCreateAccountSuccess';
|
|
50888
|
+
data: UnifiedAccount;
|
|
50889
|
+
};
|
|
50890
|
+
export declare type UnifiedCreateAccountUnion = UnifiedCreateAccountSuccess | UnifiedError;
|
|
50891
|
+
export declare type UnifiedCreateProfileSuccess = {
|
|
50892
|
+
__typename?: 'UnifiedCreateProfileSuccess';
|
|
50893
|
+
data: UnifiedProfile;
|
|
50894
|
+
};
|
|
50895
|
+
export declare type UnifiedCreateProfileUnion = UnifiedCreateProfileSuccess | UnifiedError;
|
|
50896
|
+
export declare type UnifiedError = {
|
|
50897
|
+
__typename?: 'UnifiedError';
|
|
50898
|
+
message: Scalars['String']['output'];
|
|
50899
|
+
};
|
|
50900
|
+
export declare type UnifiedForumsUser = {
|
|
50901
|
+
__typename?: 'UnifiedForumsUser';
|
|
50902
|
+
acceptedAnswersCreated: Scalars['Int']['output'];
|
|
50903
|
+
answersCreated: Scalars['Int']['output'];
|
|
50904
|
+
badgesEarned: Scalars['Int']['output'];
|
|
50905
|
+
kudosGiven: Scalars['Int']['output'];
|
|
50906
|
+
kudosReceived: Scalars['Int']['output'];
|
|
50907
|
+
lastPostTime: Scalars['String']['output'];
|
|
50908
|
+
lastVisitTime: Scalars['String']['output'];
|
|
50909
|
+
minutesOnline: Scalars['Int']['output'];
|
|
50910
|
+
rank: Scalars['String']['output'];
|
|
50911
|
+
repliesCreated: Scalars['Int']['output'];
|
|
50912
|
+
roles: Array<Scalars['String']['output']>;
|
|
50913
|
+
status: Scalars['String']['output'];
|
|
50914
|
+
topicsCreated: Scalars['Int']['output'];
|
|
50915
|
+
totalLoginsRecorded: Scalars['String']['output'];
|
|
50916
|
+
totalPosts: Scalars['Int']['output'];
|
|
50917
|
+
};
|
|
50918
|
+
export declare type UnifiedMutation = {
|
|
50919
|
+
__typename?: 'UnifiedMutation';
|
|
50920
|
+
createAccount: UnifiedCreateAccountUnion;
|
|
50921
|
+
createProfile: UnifiedCreateProfileUnion;
|
|
50922
|
+
};
|
|
50923
|
+
export declare type UnifiedMutationCreateAccountArgs = {
|
|
50924
|
+
input: UnifiedAccountInput;
|
|
50925
|
+
};
|
|
50926
|
+
export declare type UnifiedMutationCreateProfileArgs = {
|
|
50927
|
+
input: UnifiedProfileInput;
|
|
50928
|
+
};
|
|
50929
|
+
export declare type UnifiedProfile = {
|
|
50930
|
+
__typename?: 'UnifiedProfile';
|
|
50931
|
+
aaids: Array<UnifiedAccount>;
|
|
50932
|
+
bio?: Maybe<Scalars['String']['output']>;
|
|
50933
|
+
communityId?: Maybe<Scalars['String']['output']>;
|
|
50934
|
+
company?: Maybe<Scalars['String']['output']>;
|
|
50935
|
+
learningId?: Maybe<Scalars['String']['output']>;
|
|
50936
|
+
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
50937
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
50938
|
+
photoUrl?: Maybe<Scalars['String']['output']>;
|
|
50939
|
+
role?: Maybe<Scalars['String']['output']>;
|
|
50940
|
+
uaEmailId?: Maybe<Scalars['String']['output']>;
|
|
50941
|
+
uaIid?: Maybe<Scalars['String']['output']>;
|
|
50942
|
+
upIid: Scalars['ID']['output'];
|
|
50943
|
+
upUsername?: Maybe<Scalars['String']['output']>;
|
|
50944
|
+
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
50945
|
+
};
|
|
50946
|
+
export declare type UnifiedProfileInput = {
|
|
50947
|
+
aaid: Scalars['String']['input'];
|
|
50948
|
+
bio?: InputMaybe<Scalars['String']['input']>;
|
|
50949
|
+
communityId?: InputMaybe<Scalars['String']['input']>;
|
|
50950
|
+
company?: InputMaybe<Scalars['String']['input']>;
|
|
50951
|
+
learningId?: InputMaybe<Scalars['String']['input']>;
|
|
50952
|
+
linkedinUrl?: InputMaybe<Scalars['String']['input']>;
|
|
50953
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
50954
|
+
photoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
50955
|
+
role?: InputMaybe<Scalars['String']['input']>;
|
|
50956
|
+
uaEmailId?: InputMaybe<Scalars['String']['input']>;
|
|
50957
|
+
websiteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
50958
|
+
};
|
|
50959
|
+
export declare type UnifiedQuery = {
|
|
50960
|
+
__typename?: 'UnifiedQuery';
|
|
50961
|
+
account: UnifiedQueryAccountUnion;
|
|
50962
|
+
forumSnapshot: UnifiedQueryForumSnapshotUnion;
|
|
50963
|
+
profile: UnifiedQueryProfileUnion;
|
|
50964
|
+
profiles: UnifiedQueryProfilesUnion;
|
|
50965
|
+
};
|
|
50966
|
+
export declare type UnifiedQueryAccountArgs = {
|
|
50967
|
+
aaid: Scalars['String']['input'];
|
|
50968
|
+
};
|
|
50969
|
+
export declare type UnifiedQueryForumSnapshotArgs = {
|
|
50970
|
+
aaid: Scalars['String']['input'];
|
|
50971
|
+
};
|
|
50972
|
+
export declare type UnifiedQueryProfileArgs = {
|
|
50973
|
+
aaid: Scalars['String']['input'];
|
|
50974
|
+
};
|
|
50975
|
+
export declare type UnifiedQueryAccountSuccess = {
|
|
50976
|
+
__typename?: 'UnifiedQueryAccountSuccess';
|
|
50977
|
+
data: UnifiedAccount;
|
|
50978
|
+
};
|
|
50979
|
+
export declare type UnifiedQueryAccountUnion = UnifiedError | UnifiedQueryAccountSuccess;
|
|
50980
|
+
export declare type UnifiedQueryForumSnapshotSuccess = {
|
|
50981
|
+
__typename?: 'UnifiedQueryForumSnapshotSuccess';
|
|
50982
|
+
data: UnifiedForumsUser;
|
|
50983
|
+
};
|
|
50984
|
+
export declare type UnifiedQueryForumSnapshotUnion = UnifiedError | UnifiedQueryForumSnapshotSuccess;
|
|
50985
|
+
export declare type UnifiedQueryProfileSuccess = {
|
|
50986
|
+
__typename?: 'UnifiedQueryProfileSuccess';
|
|
50987
|
+
data: UnifiedProfile;
|
|
50988
|
+
};
|
|
50989
|
+
export declare type UnifiedQueryProfileUnion = UnifiedError | UnifiedQueryProfileSuccess;
|
|
50990
|
+
export declare type UnifiedQueryProfilesSuccess = {
|
|
50991
|
+
__typename?: 'UnifiedQueryProfilesSuccess';
|
|
50992
|
+
data: Array<UnifiedProfile>;
|
|
50993
|
+
};
|
|
50994
|
+
export declare type UnifiedQueryProfilesUnion = UnifiedError | UnifiedQueryProfilesSuccess;
|
|
50758
50995
|
export declare type UnlinkExternalSourceInput = {
|
|
50759
50996
|
cloudId: Scalars['ID']['input'];
|
|
50760
50997
|
ecosystemAppId: Scalars['ID']['input'];
|
|
@@ -50933,6 +51170,7 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
50933
51170
|
};
|
|
50934
51171
|
export declare type UpdateCompassScorecardInput = {
|
|
50935
51172
|
componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
51173
|
+
componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
50936
51174
|
componentTierValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
50937
51175
|
componentTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
50938
51176
|
createCriteria?: InputMaybe<Array<CreateCompassScorecardCriteriaInput>>;
|