@forge/cli-shared 8.15.1-next.0-experimental-5a86f99 → 8.15.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
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.15.1-next.
|
|
3
|
+
## 8.15.1-next.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- 19807bf: Changed schema for container resources
|
|
8
|
+
- Updated dependencies [19807bf]
|
|
9
|
+
- @forge/manifest@12.1.0-next.0
|
|
8
10
|
|
|
9
11
|
## 8.15.1-next.0
|
|
10
12
|
|
|
@@ -2681,6 +2681,19 @@ export declare type AdminSiteAppInstallationsArgs = {
|
|
|
2681
2681
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2682
2682
|
owner: Scalars['ID']['input'];
|
|
2683
2683
|
};
|
|
2684
|
+
export declare type AdminSiteRef = {
|
|
2685
|
+
__typename?: 'AdminSiteRef';
|
|
2686
|
+
id: Scalars['ID']['output'];
|
|
2687
|
+
};
|
|
2688
|
+
export declare type AdminSiteRefConnection = {
|
|
2689
|
+
__typename?: 'AdminSiteRefConnection';
|
|
2690
|
+
edges?: Maybe<Array<Maybe<AdminSiteRefEdge>>>;
|
|
2691
|
+
pageInfo: PageInfo;
|
|
2692
|
+
};
|
|
2693
|
+
export declare type AdminSiteRefEdge = {
|
|
2694
|
+
__typename?: 'AdminSiteRefEdge';
|
|
2695
|
+
node: AdminSiteRef;
|
|
2696
|
+
};
|
|
2684
2697
|
export declare type AdminSortBy = {
|
|
2685
2698
|
direction: SortDirection;
|
|
2686
2699
|
fieldName: Scalars['String']['input'];
|
|
@@ -3328,6 +3341,7 @@ export declare type AgentStudioBatchEvaluationJobRun = {
|
|
|
3328
3341
|
id: Scalars['ID']['output'];
|
|
3329
3342
|
jobId: Scalars['ID']['output'];
|
|
3330
3343
|
judgeFailureCount?: Maybe<Scalars['Int']['output']>;
|
|
3344
|
+
judgeMode?: Maybe<AgentStudioJudgeMode>;
|
|
3331
3345
|
judgeResolution?: Maybe<AgentStudioDatasetResolution>;
|
|
3332
3346
|
judgeSuccessCount?: Maybe<Scalars['Int']['output']>;
|
|
3333
3347
|
resolutionRate?: Maybe<Scalars['Float']['output']>;
|
|
@@ -3452,6 +3466,7 @@ export declare type AgentStudioCreateBatchEvaluationJobInput = {
|
|
|
3452
3466
|
agentVersionId: Scalars['String']['input'];
|
|
3453
3467
|
datasetId: Scalars['String']['input'];
|
|
3454
3468
|
judgeConfigId: Scalars['String']['input'];
|
|
3469
|
+
judgeMode?: InputMaybe<AgentStudioJudgeMode>;
|
|
3455
3470
|
name: Scalars['String']['input'];
|
|
3456
3471
|
};
|
|
3457
3472
|
export declare type AgentStudioCreateBatchEvaluationJobPayload = Payload & {
|
|
@@ -3572,6 +3587,7 @@ export declare type AgentStudioEvaluationResult = {
|
|
|
3572
3587
|
judgeDecision?: Maybe<AgentStudioJudgementDecision>;
|
|
3573
3588
|
judgeErrorMessage?: Maybe<Scalars['String']['output']>;
|
|
3574
3589
|
judgeEvaluatedAt?: Maybe<Scalars['String']['output']>;
|
|
3590
|
+
judgeMode?: Maybe<AgentStudioJudgeMode>;
|
|
3575
3591
|
judgeReasoning?: Maybe<Scalars['String']['output']>;
|
|
3576
3592
|
responseTimeMs?: Maybe<Scalars['Int']['output']>;
|
|
3577
3593
|
runId: Scalars['ID']['output'];
|
|
@@ -3655,6 +3671,7 @@ export declare type AgentStudioJobExecutionHistoryNode = {
|
|
|
3655
3671
|
failureCount?: Maybe<Scalars['Int']['output']>;
|
|
3656
3672
|
jobId: Scalars['ID']['output'];
|
|
3657
3673
|
judgeFailureCount?: Maybe<Scalars['Int']['output']>;
|
|
3674
|
+
judgeMode?: Maybe<AgentStudioJudgeMode>;
|
|
3658
3675
|
judgeSuccessCount?: Maybe<Scalars['Int']['output']>;
|
|
3659
3676
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
3660
3677
|
resolutionRate?: Maybe<Scalars['Float']['output']>;
|
|
@@ -3680,6 +3697,11 @@ export declare type AgentStudioJsmKnowledgeFilter = {
|
|
|
3680
3697
|
export declare type AgentStudioJsmKnowledgeFilterInput = {
|
|
3681
3698
|
jsmProjectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3682
3699
|
};
|
|
3700
|
+
export declare enum AgentStudioJudgeMode {
|
|
3701
|
+
Judgeless = "JUDGELESS",
|
|
3702
|
+
ReferenceBased = "REFERENCE_BASED",
|
|
3703
|
+
ReferenceFree = "REFERENCE_FREE"
|
|
3704
|
+
}
|
|
3683
3705
|
export declare enum AgentStudioJudgementDecision {
|
|
3684
3706
|
Successful = "SUCCESSFUL",
|
|
3685
3707
|
Unjudged = "UNJUDGED",
|
|
@@ -29044,7 +29066,8 @@ export declare type CustomerServiceTemplateForm = Node & {
|
|
|
29044
29066
|
export declare enum CustomerServiceTemplateFormChannelType {
|
|
29045
29067
|
Email = "EMAIL",
|
|
29046
29068
|
Embed = "EMBED",
|
|
29047
|
-
SupportSite = "SUPPORT_SITE"
|
|
29069
|
+
SupportSite = "SUPPORT_SITE",
|
|
29070
|
+
Voice = "VOICE"
|
|
29048
29071
|
}
|
|
29049
29072
|
export declare type CustomerServiceTemplateFormConnection = {
|
|
29050
29073
|
__typename?: 'CustomerServiceTemplateFormConnection';
|
|
@@ -90975,10 +90998,12 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
90975
90998
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
90976
90999
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
90977
91000
|
canEditIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
91001
|
+
canEditSprint?: Maybe<Scalars['Boolean']['output']>;
|
|
90978
91002
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
90979
91003
|
canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
90980
91004
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
90981
91005
|
canScheduleIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
91006
|
+
canStartStopSprint?: Maybe<Scalars['Boolean']['output']>;
|
|
90982
91007
|
canTransitionIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
90983
91008
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
90984
91009
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
@@ -90994,6 +91019,7 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
90994
91019
|
isWorkflowsMigrationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
90995
91020
|
layout?: Maybe<JiraBoardViewLayout>;
|
|
90996
91021
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
91022
|
+
sprints?: Maybe<JiraSprintConnection>;
|
|
90997
91023
|
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
90998
91024
|
};
|
|
90999
91025
|
export declare type JiraBoardViewCardOptionsArgs = {
|
|
@@ -91024,6 +91050,10 @@ export declare type JiraBoardViewLayoutArgs = {
|
|
|
91024
91050
|
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
91025
91051
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
91026
91052
|
};
|
|
91053
|
+
export declare type JiraBoardViewSprintsArgs = {
|
|
91054
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91055
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91056
|
+
};
|
|
91027
91057
|
export declare type JiraBoardViewUnmappedStatusesArgs = {
|
|
91028
91058
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91029
91059
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -98754,6 +98784,7 @@ export declare type JiraIssueTypeFieldPayload = Payload & {
|
|
|
98754
98784
|
export declare type JiraIssueTypeFilterInput = {
|
|
98755
98785
|
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
98756
98786
|
minHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
98787
|
+
parentIssueKey?: InputMaybe<Scalars['String']['input']>;
|
|
98757
98788
|
};
|
|
98758
98789
|
export declare type JiraIssueTypeHierarchyLevel = {
|
|
98759
98790
|
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
@@ -109767,6 +109798,7 @@ export declare type JiraTrashCustomFieldsPayload = Payload & {
|
|
|
109767
109798
|
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
109768
109799
|
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
109769
109800
|
success: Scalars['Boolean']['output'];
|
|
109801
|
+
trashedFields?: Maybe<Array<JiraIssueFieldConfig>>;
|
|
109770
109802
|
};
|
|
109771
109803
|
export declare type JiraTrashGlobalCustomFieldsInput = {
|
|
109772
109804
|
fieldIds: Array<Scalars['String']['input']>;
|
|
@@ -113526,7 +113558,7 @@ export declare type KitsuneFeedbackEvent = {
|
|
|
113526
113558
|
sourceCategoryId: Scalars['ID']['output'];
|
|
113527
113559
|
spaceId: Scalars['ID']['output'];
|
|
113528
113560
|
tenantId: Scalars['ID']['output'];
|
|
113529
|
-
title
|
|
113561
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
113530
113562
|
type: Scalars['String']['output'];
|
|
113531
113563
|
updatedAt: Scalars['DateTime']['output'];
|
|
113532
113564
|
url: Scalars['String']['output'];
|
|
@@ -119605,6 +119637,7 @@ export declare type MercuryCreateInvestmentCategorySetPayload = Payload & {
|
|
|
119605
119637
|
success: Scalars['Boolean']['output'];
|
|
119606
119638
|
};
|
|
119607
119639
|
export declare type MercuryCreateMultiSelectCustomFieldDefinitionInput = {
|
|
119640
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
119608
119641
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
119609
119642
|
};
|
|
119610
119643
|
export declare type MercuryCreateNumberCustomFieldDefinitionInput = {
|
|
@@ -119623,6 +119656,7 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
119623
119656
|
success: Scalars['Boolean']['output'];
|
|
119624
119657
|
};
|
|
119625
119658
|
export declare type MercuryCreateSingleSelectCustomFieldDefinitionInput = {
|
|
119659
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
119626
119660
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
119627
119661
|
};
|
|
119628
119662
|
export declare type MercuryCreateStrategicEventCommentInput = {
|
|
@@ -126465,7 +126499,7 @@ export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
|
126465
126499
|
content: Scalars['KitsuneADF']['input'];
|
|
126466
126500
|
source?: InputMaybe<KitsuneSourceInput>;
|
|
126467
126501
|
spaceAri: Scalars['ID']['input'];
|
|
126468
|
-
title
|
|
126502
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
126469
126503
|
};
|
|
126470
126504
|
export declare type MutationKitsune_CreateSpaceArgs = {
|
|
126471
126505
|
name: Scalars['String']['input'];
|
|
@@ -130437,10 +130471,10 @@ export declare type Query = {
|
|
|
130437
130471
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
130438
130472
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
130439
130473
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
130440
|
-
admin_auditAuditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
130441
130474
|
admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
|
|
130442
130475
|
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
130443
130476
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
130477
|
+
admin_auditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
130444
130478
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
130445
130479
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
130446
130480
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -130454,6 +130488,8 @@ export declare type Query = {
|
|
|
130454
130488
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
130455
130489
|
admin_org?: Maybe<AdminOrganization>;
|
|
130456
130490
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
130491
|
+
admin_siteRefsForUnit?: Maybe<AdminSiteRefConnection>;
|
|
130492
|
+
admin_sitesByIds?: Maybe<Array<Maybe<AdminSite>>>;
|
|
130457
130493
|
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
130458
130494
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
130459
130495
|
admin_unitProfile?: Maybe<AdminUnit>;
|
|
@@ -131079,6 +131115,7 @@ export declare type Query = {
|
|
|
131079
131115
|
jira_fieldSchemeAvailableFields?: Maybe<JiraFieldConnection>;
|
|
131080
131116
|
jira_fieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
131081
131117
|
jira_fieldSchemesByARIs?: Maybe<Array<Maybe<JiraFieldScheme>>>;
|
|
131118
|
+
jira_fieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
|
|
131082
131119
|
jira_fieldsPerSchemeLimit?: Maybe<Scalars['Int']['output']>;
|
|
131083
131120
|
jira_isAgentAssignable?: Maybe<Scalars['Boolean']['output']>;
|
|
131084
131121
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -131505,22 +131542,22 @@ export declare type QueryAdmin_AppModulesArgs = {
|
|
|
131505
131542
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131506
131543
|
moduleKeys: Array<Scalars['String']['input']>;
|
|
131507
131544
|
};
|
|
131508
|
-
export declare type
|
|
131545
|
+
export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
131509
131546
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131510
131547
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
131511
131548
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131512
|
-
input?: InputMaybe<AdminFetchAdminAuditLogEventsInput>;
|
|
131513
131549
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131514
131550
|
orgId: Scalars['ID']['input'];
|
|
131515
131551
|
};
|
|
131516
|
-
export declare type
|
|
131552
|
+
export declare type QueryAdmin_AuditLogEventIpAddressesArgs = {
|
|
131517
131553
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131518
131554
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
131555
|
+
filter?: InputMaybe<Scalars['String']['input']>;
|
|
131519
131556
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131520
131557
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131521
131558
|
orgId: Scalars['ID']['input'];
|
|
131522
131559
|
};
|
|
131523
|
-
export declare type
|
|
131560
|
+
export declare type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
131524
131561
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131525
131562
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
131526
131563
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -131528,11 +131565,11 @@ export declare type QueryAdmin_AuditLogEventIpAddressesArgs = {
|
|
|
131528
131565
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131529
131566
|
orgId: Scalars['ID']['input'];
|
|
131530
131567
|
};
|
|
131531
|
-
export declare type
|
|
131568
|
+
export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
131532
131569
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131533
131570
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
131534
|
-
filter?: InputMaybe<Scalars['String']['input']>;
|
|
131535
131571
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131572
|
+
input?: InputMaybe<AdminFetchAdminAuditLogEventsInput>;
|
|
131536
131573
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131537
131574
|
orgId: Scalars['ID']['input'];
|
|
131538
131575
|
};
|
|
@@ -131609,6 +131646,16 @@ export declare type QueryAdmin_PermissionsArgs = {
|
|
|
131609
131646
|
principalId: Scalars['ID']['input'];
|
|
131610
131647
|
resourceId: Scalars['ID']['input'];
|
|
131611
131648
|
};
|
|
131649
|
+
export declare type QueryAdmin_SiteRefsForUnitArgs = {
|
|
131650
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131651
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131652
|
+
orgId: Scalars['ID']['input'];
|
|
131653
|
+
unitId?: InputMaybe<Scalars['ID']['input']>;
|
|
131654
|
+
};
|
|
131655
|
+
export declare type QueryAdmin_SitesByIdsArgs = {
|
|
131656
|
+
orgId: Scalars['ID']['input'];
|
|
131657
|
+
siteIds: Array<Scalars['ID']['input']>;
|
|
131658
|
+
};
|
|
131612
131659
|
export declare type QueryAdmin_TokensArgs = {
|
|
131613
131660
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131614
131661
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -134438,6 +134485,11 @@ export declare type QueryJira_FieldSchemesArgs = {
|
|
|
134438
134485
|
export declare type QueryJira_FieldSchemesByArIsArgs = {
|
|
134439
134486
|
ids: Array<Scalars['ID']['input']>;
|
|
134440
134487
|
};
|
|
134488
|
+
export declare type QueryJira_FieldTypeGroupsArgs = {
|
|
134489
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
134490
|
+
cloudId: Scalars['ID']['input'];
|
|
134491
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
134492
|
+
};
|
|
134441
134493
|
export declare type QueryJira_FieldsPerSchemeLimitArgs = {
|
|
134442
134494
|
cloudId: Scalars['ID']['input'];
|
|
134443
134495
|
};
|
|
@@ -159415,15 +159467,19 @@ export declare enum SpacePermissionType {
|
|
|
159415
159467
|
CreateAttachment = "CREATE_ATTACHMENT",
|
|
159416
159468
|
CreateBlog = "CREATE_BLOG",
|
|
159417
159469
|
CreateEditPage = "CREATE_EDIT_PAGE",
|
|
159470
|
+
DeleteOwnComment = "DELETE_OWN_COMMENT",
|
|
159418
159471
|
DeleteSpace = "DELETE_SPACE",
|
|
159419
159472
|
EditBlog = "EDIT_BLOG",
|
|
159420
159473
|
EditNativeContent = "EDIT_NATIVE_CONTENT",
|
|
159421
159474
|
ExportContent = "EXPORT_CONTENT",
|
|
159422
159475
|
ExportPage = "EXPORT_PAGE",
|
|
159423
159476
|
ExportSpace = "EXPORT_SPACE",
|
|
159477
|
+
ManageContent = "MANAGE_CONTENT",
|
|
159424
159478
|
ManageGuestUsers = "MANAGE_GUEST_USERS",
|
|
159479
|
+
ManageLookAndFeel = "MANAGE_LOOK_AND_FEEL",
|
|
159425
159480
|
ManageNonlicensedUsers = "MANAGE_NONLICENSED_USERS",
|
|
159426
159481
|
ManagePublicLinks = "MANAGE_PUBLIC_LINKS",
|
|
159482
|
+
ManageTemplates = "MANAGE_TEMPLATES",
|
|
159427
159483
|
ManageUsers = "MANAGE_USERS",
|
|
159428
159484
|
RemoveAttachment = "REMOVE_ATTACHMENT",
|
|
159429
159485
|
RemoveBlog = "REMOVE_BLOG",
|
|
@@ -162876,6 +162932,8 @@ export declare type TeamMutation = {
|
|
|
162876
162932
|
deleteCustomFieldValue?: Maybe<Scalars['Boolean']['output']>;
|
|
162877
162933
|
deleteTeam?: Maybe<TeamDeletePayload>;
|
|
162878
162934
|
deleteTeamType?: Maybe<TeamType>;
|
|
162935
|
+
linkCustomFieldToOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
162936
|
+
linkCustomFieldToValue?: Maybe<TeamCustomFieldKeyValues>;
|
|
162879
162937
|
removeChild?: Maybe<TeamV2>;
|
|
162880
162938
|
removeParent?: Maybe<TeamV2>;
|
|
162881
162939
|
setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
|
|
@@ -162928,6 +162986,15 @@ export declare type TeamMutationDeleteTeamArgs = {
|
|
|
162928
162986
|
export declare type TeamMutationDeleteTeamTypeArgs = {
|
|
162929
162987
|
id: Scalars['ID']['input'];
|
|
162930
162988
|
};
|
|
162989
|
+
export declare type TeamMutationLinkCustomFieldToOptionArgs = {
|
|
162990
|
+
customFieldValueId: Scalars['ID']['input'];
|
|
162991
|
+
teamId: Scalars['ID']['input'];
|
|
162992
|
+
};
|
|
162993
|
+
export declare type TeamMutationLinkCustomFieldToValueArgs = {
|
|
162994
|
+
customFieldId: Scalars['ID']['input'];
|
|
162995
|
+
customFieldValue: Scalars['String']['input'];
|
|
162996
|
+
teamId: Scalars['ID']['input'];
|
|
162997
|
+
};
|
|
162931
162998
|
export declare type TeamMutationRemoveChildArgs = {
|
|
162932
162999
|
childId: Scalars['ID']['input'];
|
|
162933
163000
|
siteId: Scalars['ID']['input'];
|
|
@@ -163816,7 +163883,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
163816
163883
|
Create = "CREATE"
|
|
163817
163884
|
}
|
|
163818
163885
|
export declare type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
163819
|
-
export declare type TownsquareActivityChange = TownsquareGoalCreatedChange;
|
|
163886
|
+
export declare type TownsquareActivityChange = TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange;
|
|
163820
163887
|
export declare type TownsquareActivityItem = {
|
|
163821
163888
|
__typename?: 'TownsquareActivityItem';
|
|
163822
163889
|
actor?: Maybe<User>;
|
|
@@ -164490,6 +164557,11 @@ export declare type TownsquareGoalMetricUpdateEdge = {
|
|
|
164490
164557
|
cursor: Scalars['String']['output'];
|
|
164491
164558
|
node?: Maybe<TownsquareGoalMetricUpdate>;
|
|
164492
164559
|
};
|
|
164560
|
+
export declare type TownsquareGoalOwnerUpdatedChange = {
|
|
164561
|
+
__typename?: 'TownsquareGoalOwnerUpdatedChange';
|
|
164562
|
+
newOwner?: Maybe<User>;
|
|
164563
|
+
oldOwner?: Maybe<User>;
|
|
164564
|
+
};
|
|
164493
164565
|
export declare type TownsquareGoalProgress = {
|
|
164494
164566
|
__typename?: 'TownsquareGoalProgress';
|
|
164495
164567
|
percentage?: Maybe<Scalars['Float']['output']>;
|