@forge/cli-shared 8.3.1-next.0 → 8.3.1-next.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
CHANGED
|
@@ -3653,6 +3653,24 @@ export declare type AssetsDmObjectSchema = {
|
|
|
3653
3653
|
name: Scalars['String']['output'];
|
|
3654
3654
|
objectCount: Scalars['Int']['output'];
|
|
3655
3655
|
};
|
|
3656
|
+
export declare type AssetsDmObjectTag = {
|
|
3657
|
+
__typename?: 'AssetsDMObjectTag';
|
|
3658
|
+
objectId: Scalars['ID']['output'];
|
|
3659
|
+
tagCode: Scalars['Int']['output'];
|
|
3660
|
+
tagDescription?: Maybe<Scalars['String']['output']>;
|
|
3661
|
+
tagId: Scalars['ID']['output'];
|
|
3662
|
+
tagName: Scalars['String']['output'];
|
|
3663
|
+
};
|
|
3664
|
+
export declare type AssetsDmObjectTags = {
|
|
3665
|
+
__typename?: 'AssetsDMObjectTags';
|
|
3666
|
+
tags: Array<AssetsDmObjectTag>;
|
|
3667
|
+
tagsCount: Scalars['Int']['output'];
|
|
3668
|
+
};
|
|
3669
|
+
export declare type AssetsDmObjectTagsArgs = {
|
|
3670
|
+
cloudId: Scalars['ID']['input'];
|
|
3671
|
+
objectId: Scalars['ID']['input'];
|
|
3672
|
+
workspaceId: Scalars['ID']['input'];
|
|
3673
|
+
};
|
|
3656
3674
|
export declare enum AssetsDmObjectsListColumnType {
|
|
3657
3675
|
Boolean = "BOOLEAN",
|
|
3658
3676
|
Datetime = "DATETIME",
|
|
@@ -17267,7 +17285,7 @@ export declare type CplsCapacityPlanningPeopleView = {
|
|
|
17267
17285
|
};
|
|
17268
17286
|
export declare type CreateAppContainerPayload = Payload & {
|
|
17269
17287
|
__typename?: 'CreateAppContainerPayload';
|
|
17270
|
-
container
|
|
17288
|
+
container?: Maybe<AppContainer>;
|
|
17271
17289
|
errors?: Maybe<Array<MutationError>>;
|
|
17272
17290
|
success: Scalars['Boolean']['output'];
|
|
17273
17291
|
};
|
|
@@ -60849,6 +60867,7 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
60849
60867
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
60850
60868
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60851
60869
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
60870
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
60852
60871
|
};
|
|
60853
60872
|
export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
60854
60873
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
@@ -61462,6 +61481,15 @@ export declare type JiraIssueCreatedStreamHubPayload = {
|
|
|
61462
61481
|
__typename?: 'JiraIssueCreatedStreamHubPayload';
|
|
61463
61482
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
61464
61483
|
};
|
|
61484
|
+
export declare type JiraIssueDeleteInput = {
|
|
61485
|
+
deleteSubtasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61486
|
+
id: Scalars['ID']['input'];
|
|
61487
|
+
};
|
|
61488
|
+
export declare type JiraIssueDeletePayload = {
|
|
61489
|
+
__typename?: 'JiraIssueDeletePayload';
|
|
61490
|
+
errors?: Maybe<Array<MutationError>>;
|
|
61491
|
+
success: Scalars['Boolean']['output'];
|
|
61492
|
+
};
|
|
61465
61493
|
export declare type JiraIssueDeletedStreamHubPayload = {
|
|
61466
61494
|
__typename?: 'JiraIssueDeletedStreamHubPayload';
|
|
61467
61495
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
@@ -82551,6 +82579,7 @@ export declare type Mutation = {
|
|
|
82551
82579
|
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
82552
82580
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
82553
82581
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
82582
|
+
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
82554
82583
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
82555
82584
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
82556
82585
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
@@ -82586,6 +82615,7 @@ export declare type Mutation = {
|
|
|
82586
82615
|
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
82587
82616
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
82588
82617
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
82618
|
+
jira_deleteIssue?: Maybe<JiraIssueDeletePayload>;
|
|
82589
82619
|
jira_deleteIssueSearchFormattingRule?: Maybe<JiraDeleteIssueSearchFormattingRulePayload>;
|
|
82590
82620
|
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
82591
82621
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
@@ -82682,6 +82712,7 @@ export declare type Mutation = {
|
|
|
82682
82712
|
projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
|
|
82683
82713
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
82684
82714
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
82715
|
+
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
82685
82716
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
82686
82717
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
82687
82718
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
@@ -83754,6 +83785,9 @@ export declare type MutationGeneratePermsReportArgs = {
|
|
|
83754
83785
|
export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
83755
83786
|
input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
|
|
83756
83787
|
};
|
|
83788
|
+
export declare type MutationGoals_CreateUpdateArgs = {
|
|
83789
|
+
input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
83790
|
+
};
|
|
83757
83791
|
export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
83758
83792
|
input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
|
|
83759
83793
|
};
|
|
@@ -83849,6 +83883,9 @@ export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
|
83849
83883
|
cloudId: Scalars['ID']['input'];
|
|
83850
83884
|
input: JiraDeleteFieldSchemeInput;
|
|
83851
83885
|
};
|
|
83886
|
+
export declare type MutationJira_DeleteIssueArgs = {
|
|
83887
|
+
input: JiraIssueDeleteInput;
|
|
83888
|
+
};
|
|
83852
83889
|
export declare type MutationJira_DeleteIssueSearchFormattingRuleArgs = {
|
|
83853
83890
|
input: JiraDeleteIssueSearchFormattingRuleInput;
|
|
83854
83891
|
};
|
|
@@ -84121,6 +84158,9 @@ export declare type MutationProjects_EditArgs = {
|
|
|
84121
84158
|
export declare type MutationProjects_EditLinkArgs = {
|
|
84122
84159
|
input?: InputMaybe<TownsquareProjectsEditLinkInput>;
|
|
84123
84160
|
};
|
|
84161
|
+
export declare type MutationProjects_EditUpdateArgs = {
|
|
84162
|
+
input?: InputMaybe<TownsquareProjectsEditUpdateInput>;
|
|
84163
|
+
};
|
|
84124
84164
|
export declare type MutationProjects_RemoveMemberArgs = {
|
|
84125
84165
|
input: TownsquareProjectsRemoveMemberInput;
|
|
84126
84166
|
};
|
|
@@ -87570,6 +87610,7 @@ export declare type Query = {
|
|
|
87570
87610
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
87571
87611
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
87572
87612
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
87613
|
+
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
87573
87614
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
87574
87615
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
87575
87616
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
@@ -88116,6 +88157,7 @@ export declare type Query = {
|
|
|
88116
88157
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
88117
88158
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
88118
88159
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
88160
|
+
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
88119
88161
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
88120
88162
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
88121
88163
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -88203,6 +88245,7 @@ export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
|
88203
88245
|
cloudId: Scalars['String']['input'];
|
|
88204
88246
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88205
88247
|
input?: InputMaybe<AgentStudioAgentQueryInput>;
|
|
88248
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
88206
88249
|
};
|
|
88207
88250
|
export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
88208
88251
|
cloudId: Scalars['String']['input'];
|
|
@@ -88426,6 +88469,9 @@ export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
|
88426
88469
|
cloudId: Scalars['ID']['input'];
|
|
88427
88470
|
workspaceId: Scalars['ID']['input'];
|
|
88428
88471
|
};
|
|
88472
|
+
export declare type QueryAssetsDm_ObjectTagsArgs = {
|
|
88473
|
+
args: AssetsDmObjectTagsArgs;
|
|
88474
|
+
};
|
|
88429
88475
|
export declare type QueryAssetsDm_ObjectsListColumnsArgs = {
|
|
88430
88476
|
cloudId: Scalars['ID']['input'];
|
|
88431
88477
|
objectId: Scalars['ID']['input'];
|
|
@@ -90595,6 +90641,9 @@ export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
|
90595
90641
|
export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
90596
90642
|
name: Scalars['String']['input'];
|
|
90597
90643
|
};
|
|
90644
|
+
export declare type QueryStakeholderComms_ListStakeholdersArgs = {
|
|
90645
|
+
listStakeholderConnectionInput: StakeholderCommsListStakeholderConnectionInput;
|
|
90646
|
+
};
|
|
90598
90647
|
export declare type QueryStalePagesArgs = {
|
|
90599
90648
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
90600
90649
|
includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -97250,6 +97299,7 @@ export declare enum StakeholderCommsAddedFromType {
|
|
|
97250
97299
|
export declare type StakeholderCommsAssignment = {
|
|
97251
97300
|
__typename?: 'StakeholderCommsAssignment';
|
|
97252
97301
|
addedFrom?: Maybe<StakeholderCommsAddedFromType>;
|
|
97302
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
97253
97303
|
assignmentType?: Maybe<StakeholderCommsAssignmentType>;
|
|
97254
97304
|
externalAssignmentId?: Maybe<Scalars['String']['output']>;
|
|
97255
97305
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -97278,6 +97328,7 @@ export declare type StakeholderCommsAssignmentEdge = {
|
|
|
97278
97328
|
node: StakeholderCommsAssignment;
|
|
97279
97329
|
};
|
|
97280
97330
|
export declare type StakeholderCommsAssignmentIdInput = {
|
|
97331
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
97281
97332
|
assignmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
97282
97333
|
assignmentType?: InputMaybe<StakeholderCommsAssignmentType>;
|
|
97283
97334
|
externalAssignmentId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97320,6 +97371,13 @@ export declare type StakeholderCommsGroups = {
|
|
|
97320
97371
|
id?: Maybe<Scalars['ID']['output']>;
|
|
97321
97372
|
name?: Maybe<Scalars['String']['output']>;
|
|
97322
97373
|
};
|
|
97374
|
+
export declare type StakeholderCommsListStakeholderConnectionInput = {
|
|
97375
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
97376
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
97377
|
+
filter?: InputMaybe<StakeholderCommsStakeholderConnectionFilter>;
|
|
97378
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97379
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
97380
|
+
};
|
|
97323
97381
|
export declare type StakeholderCommsModePreference = {
|
|
97324
97382
|
__typename?: 'StakeholderCommsModePreference';
|
|
97325
97383
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -97390,6 +97448,7 @@ export declare type StakeholderCommsPreferencesInput = {
|
|
|
97390
97448
|
export declare type StakeholderCommsStakeholder = {
|
|
97391
97449
|
__typename?: 'StakeholderCommsStakeholder';
|
|
97392
97450
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
97451
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
97393
97452
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
97394
97453
|
groups?: Maybe<Array<StakeholderCommsGroups>>;
|
|
97395
97454
|
id: Scalars['ID']['output'];
|
|
@@ -97421,6 +97480,10 @@ export declare type StakeholderCommsStakeholderConnection = {
|
|
|
97421
97480
|
pageInfo: StakeholderCommsPageInfo;
|
|
97422
97481
|
totalCount: Scalars['Int']['output'];
|
|
97423
97482
|
};
|
|
97483
|
+
export declare type StakeholderCommsStakeholderConnectionFilter = {
|
|
97484
|
+
status?: InputMaybe<Array<StakeholderCommsStakeholderStatus>>;
|
|
97485
|
+
type?: InputMaybe<Array<StakeholderCommsStakeholderType>>;
|
|
97486
|
+
};
|
|
97424
97487
|
export declare type StakeholderCommsStakeholderConnectionInput = {
|
|
97425
97488
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
97426
97489
|
assignmentIdInput: StakeholderCommsAssignmentIdInput;
|
|
@@ -97490,6 +97553,7 @@ export declare type StakeholderCommsStakeholderGroupsAndMemberships = {
|
|
|
97490
97553
|
};
|
|
97491
97554
|
export declare type StakeholderCommsStakeholderIdInput = {
|
|
97492
97555
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
97556
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
97493
97557
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
97494
97558
|
stakeholderId?: InputMaybe<Scalars['ID']['input']>;
|
|
97495
97559
|
stakeholderType?: InputMaybe<StakeholderCommsStakeholderType>;
|
|
@@ -99509,6 +99573,20 @@ export declare type TownsquareGoalsAddGoalTeamLinkPayload = {
|
|
|
99509
99573
|
goalTeamEdge?: Maybe<TownsquareGoalTeamEdge>;
|
|
99510
99574
|
success: Scalars['Boolean']['output'];
|
|
99511
99575
|
};
|
|
99576
|
+
export declare type TownsquareGoalsCreateUpdateInput = {
|
|
99577
|
+
goalId: Scalars['ID']['input'];
|
|
99578
|
+
score?: InputMaybe<Scalars['Int']['input']>;
|
|
99579
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
99580
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
99581
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
99582
|
+
updateNotes?: InputMaybe<Array<InputMaybe<TownsquareUpdateNoteInput>>>;
|
|
99583
|
+
};
|
|
99584
|
+
export declare type TownsquareGoalsCreateUpdatePayload = {
|
|
99585
|
+
__typename?: 'TownsquareGoalsCreateUpdatePayload';
|
|
99586
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99587
|
+
success: Scalars['Boolean']['output'];
|
|
99588
|
+
update?: Maybe<TownsquareGoalUpdate>;
|
|
99589
|
+
};
|
|
99512
99590
|
export declare type TownsquareGoalsRemoveGoalTeamLinkInput = {
|
|
99513
99591
|
goalId: Scalars['ID']['input'];
|
|
99514
99592
|
teamId: Scalars['ID']['input'];
|
|
@@ -100111,6 +100189,20 @@ export declare type TownsquareProjectsEditPayload = {
|
|
|
100111
100189
|
project?: Maybe<TownsquareProject>;
|
|
100112
100190
|
success: Scalars['Boolean']['output'];
|
|
100113
100191
|
};
|
|
100192
|
+
export declare type TownsquareProjectsEditUpdateInput = {
|
|
100193
|
+
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
100194
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
100195
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
100196
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
100197
|
+
updateId: Scalars['ID']['input'];
|
|
100198
|
+
updateNotes?: InputMaybe<Array<InputMaybe<TownsquareUpdateNoteInput>>>;
|
|
100199
|
+
};
|
|
100200
|
+
export declare type TownsquareProjectsEditUpdatePayload = {
|
|
100201
|
+
__typename?: 'TownsquareProjectsEditUpdatePayload';
|
|
100202
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100203
|
+
success: Scalars['Boolean']['output'];
|
|
100204
|
+
update?: Maybe<TownsquareProjectUpdate>;
|
|
100205
|
+
};
|
|
100114
100206
|
export declare type TownsquareProjectsRemoveMemberInput = {
|
|
100115
100207
|
projectId: Scalars['ID']['input'];
|
|
100116
100208
|
userId: Scalars['ID']['input'];
|