@forge/cli-shared 8.15.1-next.0-experimental-5b18257 → 8.15.1-next.2
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 +11 -2
- package/out/graphql/graphql-types.d.ts +117 -9
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +43 -34
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.15.1-next.
|
|
3
|
+
## 8.15.1-next.2
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- Updated dependencies [fa9b5aa]
|
|
8
|
+
- @forge/manifest@12.1.0-next.1
|
|
9
|
+
|
|
10
|
+
## 8.15.1-next.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 19807bf: Changed schema for container resources
|
|
15
|
+
- Updated dependencies [19807bf]
|
|
16
|
+
- @forge/manifest@12.1.0-next.0
|
|
8
17
|
|
|
9
18
|
## 8.15.1-next.0
|
|
10
19
|
|
|
@@ -3039,6 +3039,19 @@ export declare type AdminWorkspacePlanEdge = {
|
|
|
3039
3039
|
cursor: Scalars['String']['output'];
|
|
3040
3040
|
node?: Maybe<AdminWorkspacePlan>;
|
|
3041
3041
|
};
|
|
3042
|
+
export declare type AdminWorkspaceRef = {
|
|
3043
|
+
__typename?: 'AdminWorkspaceRef';
|
|
3044
|
+
id: Scalars['ID']['output'];
|
|
3045
|
+
};
|
|
3046
|
+
export declare type AdminWorkspaceRefConnection = {
|
|
3047
|
+
__typename?: 'AdminWorkspaceRefConnection';
|
|
3048
|
+
edges?: Maybe<Array<Maybe<AdminWorkspaceRefEdge>>>;
|
|
3049
|
+
pageInfo: PageInfo;
|
|
3050
|
+
};
|
|
3051
|
+
export declare type AdminWorkspaceRefEdge = {
|
|
3052
|
+
__typename?: 'AdminWorkspaceRefEdge';
|
|
3053
|
+
node: AdminWorkspaceRef;
|
|
3054
|
+
};
|
|
3042
3055
|
export declare type AdminWorkspaceType = {
|
|
3043
3056
|
__typename?: 'AdminWorkspaceType';
|
|
3044
3057
|
id: Scalars['String']['output'];
|
|
@@ -3056,6 +3069,7 @@ export declare type AdminWorkspaceTypeEdge = {
|
|
|
3056
3069
|
};
|
|
3057
3070
|
export declare type AgentAiContextPanelResponse = {
|
|
3058
3071
|
__typename?: 'AgentAIContextPanelResponse';
|
|
3072
|
+
agentSteps?: Maybe<Scalars['String']['output']>;
|
|
3059
3073
|
nextSteps?: Maybe<Scalars['String']['output']>;
|
|
3060
3074
|
reporterDetails?: Maybe<Scalars['String']['output']>;
|
|
3061
3075
|
suggestedActions?: Maybe<Array<Maybe<AgentAiSuggestAction>>>;
|
|
@@ -3341,6 +3355,7 @@ export declare type AgentStudioBatchEvaluationJobRun = {
|
|
|
3341
3355
|
id: Scalars['ID']['output'];
|
|
3342
3356
|
jobId: Scalars['ID']['output'];
|
|
3343
3357
|
judgeFailureCount?: Maybe<Scalars['Int']['output']>;
|
|
3358
|
+
judgeMode?: Maybe<AgentStudioJudgeMode>;
|
|
3344
3359
|
judgeResolution?: Maybe<AgentStudioDatasetResolution>;
|
|
3345
3360
|
judgeSuccessCount?: Maybe<Scalars['Int']['output']>;
|
|
3346
3361
|
resolutionRate?: Maybe<Scalars['Float']['output']>;
|
|
@@ -3465,6 +3480,7 @@ export declare type AgentStudioCreateBatchEvaluationJobInput = {
|
|
|
3465
3480
|
agentVersionId: Scalars['String']['input'];
|
|
3466
3481
|
datasetId: Scalars['String']['input'];
|
|
3467
3482
|
judgeConfigId: Scalars['String']['input'];
|
|
3483
|
+
judgeMode?: InputMaybe<AgentStudioJudgeMode>;
|
|
3468
3484
|
name: Scalars['String']['input'];
|
|
3469
3485
|
};
|
|
3470
3486
|
export declare type AgentStudioCreateBatchEvaluationJobPayload = Payload & {
|
|
@@ -3585,6 +3601,7 @@ export declare type AgentStudioEvaluationResult = {
|
|
|
3585
3601
|
judgeDecision?: Maybe<AgentStudioJudgementDecision>;
|
|
3586
3602
|
judgeErrorMessage?: Maybe<Scalars['String']['output']>;
|
|
3587
3603
|
judgeEvaluatedAt?: Maybe<Scalars['String']['output']>;
|
|
3604
|
+
judgeMode?: Maybe<AgentStudioJudgeMode>;
|
|
3588
3605
|
judgeReasoning?: Maybe<Scalars['String']['output']>;
|
|
3589
3606
|
responseTimeMs?: Maybe<Scalars['Int']['output']>;
|
|
3590
3607
|
runId: Scalars['ID']['output'];
|
|
@@ -3668,6 +3685,7 @@ export declare type AgentStudioJobExecutionHistoryNode = {
|
|
|
3668
3685
|
failureCount?: Maybe<Scalars['Int']['output']>;
|
|
3669
3686
|
jobId: Scalars['ID']['output'];
|
|
3670
3687
|
judgeFailureCount?: Maybe<Scalars['Int']['output']>;
|
|
3688
|
+
judgeMode?: Maybe<AgentStudioJudgeMode>;
|
|
3671
3689
|
judgeSuccessCount?: Maybe<Scalars['Int']['output']>;
|
|
3672
3690
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
3673
3691
|
resolutionRate?: Maybe<Scalars['Float']['output']>;
|
|
@@ -3693,6 +3711,11 @@ export declare type AgentStudioJsmKnowledgeFilter = {
|
|
|
3693
3711
|
export declare type AgentStudioJsmKnowledgeFilterInput = {
|
|
3694
3712
|
jsmProjectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3695
3713
|
};
|
|
3714
|
+
export declare enum AgentStudioJudgeMode {
|
|
3715
|
+
Judgeless = "JUDGELESS",
|
|
3716
|
+
ReferenceBased = "REFERENCE_BASED",
|
|
3717
|
+
ReferenceFree = "REFERENCE_FREE"
|
|
3718
|
+
}
|
|
3696
3719
|
export declare enum AgentStudioJudgementDecision {
|
|
3697
3720
|
Successful = "SUCCESSFUL",
|
|
3698
3721
|
Unjudged = "UNJUDGED",
|
|
@@ -7891,6 +7914,12 @@ export declare type AssetsDmObjectsReportDsByDs = {
|
|
|
7891
7914
|
rows: Array<Scalars['JSON']['output']>;
|
|
7892
7915
|
rowsCount: Scalars['Int']['output'];
|
|
7893
7916
|
};
|
|
7917
|
+
export declare type AssetsDmObjectsReportDsOverlap = {
|
|
7918
|
+
__typename?: 'AssetsDMObjectsReportDsOverlap';
|
|
7919
|
+
columns: Array<Scalars['String']['output']>;
|
|
7920
|
+
rows: Array<Scalars['JSON']['output']>;
|
|
7921
|
+
rowsCount: Scalars['Float']['output'];
|
|
7922
|
+
};
|
|
7894
7923
|
export declare type AssetsDmPaginationInfo = {
|
|
7895
7924
|
__typename?: 'AssetsDMPaginationInfo';
|
|
7896
7925
|
currentPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
@@ -29057,7 +29086,8 @@ export declare type CustomerServiceTemplateForm = Node & {
|
|
|
29057
29086
|
export declare enum CustomerServiceTemplateFormChannelType {
|
|
29058
29087
|
Email = "EMAIL",
|
|
29059
29088
|
Embed = "EMBED",
|
|
29060
|
-
SupportSite = "SUPPORT_SITE"
|
|
29089
|
+
SupportSite = "SUPPORT_SITE",
|
|
29090
|
+
Voice = "VOICE"
|
|
29061
29091
|
}
|
|
29062
29092
|
export declare type CustomerServiceTemplateFormConnection = {
|
|
29063
29093
|
__typename?: 'CustomerServiceTemplateFormConnection';
|
|
@@ -30851,6 +30881,7 @@ export declare type DevConsoleDownloadAppInstallationsResponse = {
|
|
|
30851
30881
|
__typename?: 'DevConsoleDownloadAppInstallationsResponse';
|
|
30852
30882
|
downloadUrl?: Maybe<Scalars['String']['output']>;
|
|
30853
30883
|
errors?: Maybe<Array<QueryError>>;
|
|
30884
|
+
lastDownloadedAt?: Maybe<Scalars['String']['output']>;
|
|
30854
30885
|
status: DevConsoleDownloadAppInstallationsStatus;
|
|
30855
30886
|
};
|
|
30856
30887
|
export declare enum DevConsoleDownloadAppInstallationsStatus {
|
|
@@ -30862,6 +30893,7 @@ export declare enum DevConsoleDownloadAppInstallationsStatus {
|
|
|
30862
30893
|
export declare type DevConsoleFetchDownloadAppInstallationsStatusResponse = {
|
|
30863
30894
|
__typename?: 'DevConsoleFetchDownloadAppInstallationsStatusResponse';
|
|
30864
30895
|
errors?: Maybe<Array<QueryError>>;
|
|
30896
|
+
lastDownloadedAt?: Maybe<Scalars['String']['output']>;
|
|
30865
30897
|
status: DevConsoleDownloadAppInstallationsStatus;
|
|
30866
30898
|
};
|
|
30867
30899
|
export declare enum DevConsoleGroupBy {
|
|
@@ -35514,6 +35546,11 @@ export declare type ForgeAuditLogFeatureFlag = {
|
|
|
35514
35546
|
details: Array<Scalars['String']['output']>;
|
|
35515
35547
|
timestamp: Scalars['String']['output'];
|
|
35516
35548
|
};
|
|
35549
|
+
export declare type ForgeAuditLogFeatureFlagEdge = {
|
|
35550
|
+
__typename?: 'ForgeAuditLogFeatureFlagEdge';
|
|
35551
|
+
cursor: Scalars['String']['output'];
|
|
35552
|
+
node?: Maybe<ForgeAuditLogFeatureFlag>;
|
|
35553
|
+
};
|
|
35517
35554
|
export declare enum ForgeAuditLogsActionType {
|
|
35518
35555
|
ContributorAdded = "CONTRIBUTOR_ADDED",
|
|
35519
35556
|
ContributorRemoved = "CONTRIBUTOR_REMOVED",
|
|
@@ -35631,6 +35668,12 @@ export declare enum ForgeAuditLogsFeatureFlagsActionType {
|
|
|
35631
35668
|
FeatureFlagToggled = "FEATURE_FLAG_TOGGLED",
|
|
35632
35669
|
FeatureFlagUpdated = "FEATURE_FLAG_UPDATED"
|
|
35633
35670
|
}
|
|
35671
|
+
export declare type ForgeAuditLogsFeatureFlagsConnection = {
|
|
35672
|
+
__typename?: 'ForgeAuditLogsFeatureFlagsConnection';
|
|
35673
|
+
edges: Array<ForgeAuditLogFeatureFlagEdge>;
|
|
35674
|
+
nodes: Array<ForgeAuditLogFeatureFlag>;
|
|
35675
|
+
pageInfo: PageInfo;
|
|
35676
|
+
};
|
|
35634
35677
|
export declare type ForgeAuditLogsFeatureFlagsQueryInput = {
|
|
35635
35678
|
action?: InputMaybe<ForgeAuditLogsFeatureFlagsActionType>;
|
|
35636
35679
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35639,12 +35682,7 @@ export declare type ForgeAuditLogsFeatureFlagsQueryInput = {
|
|
|
35639
35682
|
flagId: Scalars['ID']['input'];
|
|
35640
35683
|
startTime?: InputMaybe<Scalars['String']['input']>;
|
|
35641
35684
|
};
|
|
35642
|
-
export declare type
|
|
35643
|
-
__typename?: 'ForgeAuditLogsFeatureFlagsResponse';
|
|
35644
|
-
data: Array<ForgeAuditLogFeatureFlag>;
|
|
35645
|
-
pageInfo: PageInfo;
|
|
35646
|
-
};
|
|
35647
|
-
export declare type ForgeAuditLogsFeatureFlagsResult = ForgeAuditLogsFeatureFlagsResponse | QueryError;
|
|
35685
|
+
export declare type ForgeAuditLogsFeatureFlagsResult = ForgeAuditLogsFeatureFlagsConnection | QueryError;
|
|
35648
35686
|
export declare type ForgeAuditLogsQuery = {
|
|
35649
35687
|
__typename?: 'ForgeAuditLogsQuery';
|
|
35650
35688
|
appId: Scalars['ID']['output'];
|
|
@@ -90988,10 +91026,12 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
90988
91026
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
90989
91027
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
90990
91028
|
canEditIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
91029
|
+
canEditSprint?: Maybe<Scalars['Boolean']['output']>;
|
|
90991
91030
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
90992
91031
|
canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
90993
91032
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
90994
91033
|
canScheduleIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
91034
|
+
canStartStopSprint?: Maybe<Scalars['Boolean']['output']>;
|
|
90995
91035
|
canTransitionIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
90996
91036
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
90997
91037
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
@@ -91007,6 +91047,7 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
91007
91047
|
isWorkflowsMigrationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
91008
91048
|
layout?: Maybe<JiraBoardViewLayout>;
|
|
91009
91049
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
91050
|
+
sprints?: Maybe<JiraSprintConnection>;
|
|
91010
91051
|
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
91011
91052
|
};
|
|
91012
91053
|
export declare type JiraBoardViewCardOptionsArgs = {
|
|
@@ -91037,6 +91078,10 @@ export declare type JiraBoardViewLayoutArgs = {
|
|
|
91037
91078
|
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
91038
91079
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
91039
91080
|
};
|
|
91081
|
+
export declare type JiraBoardViewSprintsArgs = {
|
|
91082
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91083
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91084
|
+
};
|
|
91040
91085
|
export declare type JiraBoardViewUnmappedStatusesArgs = {
|
|
91041
91086
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91042
91087
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -106310,6 +106355,7 @@ export declare type JiraRestoreCustomFieldsPayload = Payload & {
|
|
|
106310
106355
|
__typename?: 'JiraRestoreCustomFieldsPayload';
|
|
106311
106356
|
errors?: Maybe<Array<MutationError>>;
|
|
106312
106357
|
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
106358
|
+
restoredFields?: Maybe<Array<JiraIssueFieldConfig>>;
|
|
106313
106359
|
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
106314
106360
|
success: Scalars['Boolean']['output'];
|
|
106315
106361
|
};
|
|
@@ -109781,6 +109827,7 @@ export declare type JiraTrashCustomFieldsPayload = Payload & {
|
|
|
109781
109827
|
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
109782
109828
|
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
109783
109829
|
success: Scalars['Boolean']['output'];
|
|
109830
|
+
trashedFields?: Maybe<Array<JiraIssueFieldConfig>>;
|
|
109784
109831
|
};
|
|
109785
109832
|
export declare type JiraTrashGlobalCustomFieldsInput = {
|
|
109786
109833
|
fieldIds: Array<Scalars['String']['input']>;
|
|
@@ -113559,6 +113606,14 @@ export declare type KitsunePaginationInput = {
|
|
|
113559
113606
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
113560
113607
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
113561
113608
|
};
|
|
113609
|
+
export declare type KitsuneSection = Node & {
|
|
113610
|
+
__typename?: 'KitsuneSection';
|
|
113611
|
+
createdAt: Scalars['DateTime']['output'];
|
|
113612
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
113613
|
+
id: Scalars['ID']['output'];
|
|
113614
|
+
name: Scalars['String']['output'];
|
|
113615
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
113616
|
+
};
|
|
113562
113617
|
export declare type KitsuneSourceInput = {
|
|
113563
113618
|
sourceWeb?: InputMaybe<KitsuneSourceInputWeb>;
|
|
113564
113619
|
};
|
|
@@ -123795,6 +123850,7 @@ export declare type Mutation = {
|
|
|
123795
123850
|
jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
|
|
123796
123851
|
jsw?: Maybe<JswMutation>;
|
|
123797
123852
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
123853
|
+
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
123798
123854
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
123799
123855
|
kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
|
|
123800
123856
|
kitsune_importFeedbackFromCsv?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -126483,6 +126539,11 @@ export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
|
126483
126539
|
spaceAri: Scalars['ID']['input'];
|
|
126484
126540
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
126485
126541
|
};
|
|
126542
|
+
export declare type MutationKitsune_CreateSectionArgs = {
|
|
126543
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
126544
|
+
name: Scalars['String']['input'];
|
|
126545
|
+
spaceAri: Scalars['ID']['input'];
|
|
126546
|
+
};
|
|
126486
126547
|
export declare type MutationKitsune_CreateSpaceArgs = {
|
|
126487
126548
|
name: Scalars['String']['input'];
|
|
126488
126549
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -130453,6 +130514,7 @@ export declare type Query = {
|
|
|
130453
130514
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
130454
130515
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
130455
130516
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
130517
|
+
admin_appRefsForSite?: Maybe<AdminWorkspaceRefConnection>;
|
|
130456
130518
|
admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
|
|
130457
130519
|
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
130458
130520
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
@@ -130609,6 +130671,7 @@ export declare type Query = {
|
|
|
130609
130671
|
assetsDM_objectsListDownload?: Maybe<AssetsDmObjectsListDownloadResponse>;
|
|
130610
130672
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
130611
130673
|
assetsDM_objectsReportDsByDs?: Maybe<AssetsDmObjectsReportDsByDs>;
|
|
130674
|
+
assetsDM_objectsReportDsOverlap?: Maybe<AssetsDmObjectsReportDsOverlap>;
|
|
130612
130675
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
130613
130676
|
assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
|
|
130614
130677
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
@@ -131097,6 +131160,7 @@ export declare type Query = {
|
|
|
131097
131160
|
jira_fieldSchemeAvailableFields?: Maybe<JiraFieldConnection>;
|
|
131098
131161
|
jira_fieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
131099
131162
|
jira_fieldSchemesByARIs?: Maybe<Array<Maybe<JiraFieldScheme>>>;
|
|
131163
|
+
jira_fieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
|
|
131100
131164
|
jira_fieldsPerSchemeLimit?: Maybe<Scalars['Int']['output']>;
|
|
131101
131165
|
jira_isAgentAssignable?: Maybe<Scalars['Boolean']['output']>;
|
|
131102
131166
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -131133,6 +131197,7 @@ export declare type Query = {
|
|
|
131133
131197
|
kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
|
|
131134
131198
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
131135
131199
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
131200
|
+
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
131136
131201
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
131137
131202
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
131138
131203
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
@@ -131523,6 +131588,13 @@ export declare type QueryAdmin_AppModulesArgs = {
|
|
|
131523
131588
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131524
131589
|
moduleKeys: Array<Scalars['String']['input']>;
|
|
131525
131590
|
};
|
|
131591
|
+
export declare type QueryAdmin_AppRefsForSiteArgs = {
|
|
131592
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131593
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131594
|
+
orgId: Scalars['ID']['input'];
|
|
131595
|
+
siteId?: InputMaybe<Scalars['ID']['input']>;
|
|
131596
|
+
unitId?: InputMaybe<Scalars['ID']['input']>;
|
|
131597
|
+
};
|
|
131526
131598
|
export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
131527
131599
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131528
131600
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -132395,6 +132467,14 @@ export declare type QueryAssetsDm_ObjectsReportDsByDsArgs = {
|
|
|
132395
132467
|
objectId: Scalars['ID']['input'];
|
|
132396
132468
|
workspaceId: Scalars['ID']['input'];
|
|
132397
132469
|
};
|
|
132470
|
+
export declare type QueryAssetsDm_ObjectsReportDsOverlapArgs = {
|
|
132471
|
+
cloudId: Scalars['ID']['input'];
|
|
132472
|
+
dataSources: Array<Scalars['String']['input']>;
|
|
132473
|
+
objectId: Scalars['ID']['input'];
|
|
132474
|
+
savedSearchParams?: Array<Array<AssetsDmObjectsListSearchGroup>>;
|
|
132475
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
132476
|
+
workspaceId: Scalars['ID']['input'];
|
|
132477
|
+
};
|
|
132398
132478
|
export declare type QueryAssetsDm_RawDataArgs = {
|
|
132399
132479
|
cloudId: Scalars['ID']['input'];
|
|
132400
132480
|
dataSourceId: Scalars['ID']['input'];
|
|
@@ -134466,6 +134546,11 @@ export declare type QueryJira_FieldSchemesArgs = {
|
|
|
134466
134546
|
export declare type QueryJira_FieldSchemesByArIsArgs = {
|
|
134467
134547
|
ids: Array<Scalars['ID']['input']>;
|
|
134468
134548
|
};
|
|
134549
|
+
export declare type QueryJira_FieldTypeGroupsArgs = {
|
|
134550
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
134551
|
+
cloudId: Scalars['ID']['input'];
|
|
134552
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
134553
|
+
};
|
|
134469
134554
|
export declare type QueryJira_FieldsPerSchemeLimitArgs = {
|
|
134470
134555
|
cloudId: Scalars['ID']['input'];
|
|
134471
134556
|
};
|
|
@@ -134614,6 +134699,9 @@ export declare type QueryKitsune_FeedbacksArgs = {
|
|
|
134614
134699
|
export declare type QueryKitsune_NodeArgs = {
|
|
134615
134700
|
id: Scalars['ID']['input'];
|
|
134616
134701
|
};
|
|
134702
|
+
export declare type QueryKitsune_SectionsArgs = {
|
|
134703
|
+
ids: Array<Scalars['ID']['input']>;
|
|
134704
|
+
};
|
|
134617
134705
|
export declare type QueryKitsune_SpacesArgs = {
|
|
134618
134706
|
ids: Array<Scalars['ID']['input']>;
|
|
134619
134707
|
};
|
|
@@ -162908,6 +162996,8 @@ export declare type TeamMutation = {
|
|
|
162908
162996
|
deleteCustomFieldValue?: Maybe<Scalars['Boolean']['output']>;
|
|
162909
162997
|
deleteTeam?: Maybe<TeamDeletePayload>;
|
|
162910
162998
|
deleteTeamType?: Maybe<TeamType>;
|
|
162999
|
+
linkCustomFieldToOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
163000
|
+
linkCustomFieldToValue?: Maybe<TeamCustomFieldKeyValues>;
|
|
162911
163001
|
removeChild?: Maybe<TeamV2>;
|
|
162912
163002
|
removeParent?: Maybe<TeamV2>;
|
|
162913
163003
|
setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
|
|
@@ -162960,6 +163050,15 @@ export declare type TeamMutationDeleteTeamArgs = {
|
|
|
162960
163050
|
export declare type TeamMutationDeleteTeamTypeArgs = {
|
|
162961
163051
|
id: Scalars['ID']['input'];
|
|
162962
163052
|
};
|
|
163053
|
+
export declare type TeamMutationLinkCustomFieldToOptionArgs = {
|
|
163054
|
+
customFieldValueId: Scalars['ID']['input'];
|
|
163055
|
+
teamId: Scalars['ID']['input'];
|
|
163056
|
+
};
|
|
163057
|
+
export declare type TeamMutationLinkCustomFieldToValueArgs = {
|
|
163058
|
+
customFieldId: Scalars['ID']['input'];
|
|
163059
|
+
customFieldValue: Scalars['String']['input'];
|
|
163060
|
+
teamId: Scalars['ID']['input'];
|
|
163061
|
+
};
|
|
162963
163062
|
export declare type TeamMutationRemoveChildArgs = {
|
|
162964
163063
|
childId: Scalars['ID']['input'];
|
|
162965
163064
|
siteId: Scalars['ID']['input'];
|
|
@@ -163848,7 +163947,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
163848
163947
|
Create = "CREATE"
|
|
163849
163948
|
}
|
|
163850
163949
|
export declare type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
163851
|
-
export declare type TownsquareActivityChange = TownsquareGoalCreatedChange;
|
|
163950
|
+
export declare type TownsquareActivityChange = TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange;
|
|
163852
163951
|
export declare type TownsquareActivityItem = {
|
|
163853
163952
|
__typename?: 'TownsquareActivityItem';
|
|
163854
163953
|
actor?: Maybe<User>;
|
|
@@ -164522,6 +164621,11 @@ export declare type TownsquareGoalMetricUpdateEdge = {
|
|
|
164522
164621
|
cursor: Scalars['String']['output'];
|
|
164523
164622
|
node?: Maybe<TownsquareGoalMetricUpdate>;
|
|
164524
164623
|
};
|
|
164624
|
+
export declare type TownsquareGoalOwnerUpdatedChange = {
|
|
164625
|
+
__typename?: 'TownsquareGoalOwnerUpdatedChange';
|
|
164626
|
+
newOwner?: Maybe<User>;
|
|
164627
|
+
oldOwner?: Maybe<User>;
|
|
164628
|
+
};
|
|
164525
164629
|
export declare type TownsquareGoalProgress = {
|
|
164526
164630
|
__typename?: 'TownsquareGoalProgress';
|
|
164527
164631
|
percentage?: Maybe<Scalars['Float']['output']>;
|
|
@@ -169012,6 +169116,8 @@ export declare type TrelloInboxQuickCaptureCard = {
|
|
|
169012
169116
|
member?: Maybe<TrelloMember>;
|
|
169013
169117
|
notificationId?: Maybe<Scalars['ID']['output']>;
|
|
169014
169118
|
source?: Maybe<TrelloCardExternalSource>;
|
|
169119
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
169120
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
169015
169121
|
};
|
|
169016
169122
|
export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
169017
169123
|
__typename?: 'TrelloInboxUpdated';
|
|
@@ -169779,7 +169885,7 @@ export declare type TrelloMutationErrorExtension = MutationErrorExtension & {
|
|
|
169779
169885
|
export declare type TrelloNewYearsResolutionAiBoardInput = {
|
|
169780
169886
|
resolution: Scalars['String']['input'];
|
|
169781
169887
|
};
|
|
169782
|
-
export declare type TrelloNotification = TrelloQuickCaptureNotification;
|
|
169888
|
+
export declare type TrelloNotification = TrelloInboxQuickCaptureCard | TrelloQuickCaptureNotification | TrelloQuickCaptureNotificationCleared;
|
|
169783
169889
|
export declare type TrelloNotificationConnection = {
|
|
169784
169890
|
__typename?: 'TrelloNotificationConnection';
|
|
169785
169891
|
edges?: Maybe<Array<TrelloNotificationEdge>>;
|
|
@@ -169933,6 +170039,8 @@ export declare enum TrelloPlannerCalendarColor {
|
|
|
169933
170039
|
PurpleSubtlest = "PURPLE_SUBTLEST",
|
|
169934
170040
|
RedSubtler = "RED_SUBTLER",
|
|
169935
170041
|
RedSubtlest = "RED_SUBTLEST",
|
|
170042
|
+
TealSubtler = "TEAL_SUBTLER",
|
|
170043
|
+
TealSubtlest = "TEAL_SUBTLEST",
|
|
169936
170044
|
YellowBolder = "YELLOW_BOLDER",
|
|
169937
170045
|
YellowSubtler = "YELLOW_SUBTLER",
|
|
169938
170046
|
YellowSubtlest = "YELLOW_SUBTLEST"
|