@forge/cli-shared 8.9.0-next.10 → 8.9.0-next.10-experimental-994fcd3
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 +20 -0
- package/out/graphql/graphql-types.d.ts +234 -40
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +28 -19
- package/package.json +2 -2
|
@@ -549,6 +549,7 @@ export declare type AvpDashboardTemplateInput = {
|
|
|
549
549
|
fromTemplate: Scalars['String']['input'];
|
|
550
550
|
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
551
551
|
productWorkspaceList?: InputMaybe<Array<AvpProductWorkspaceMapEntry>>;
|
|
552
|
+
templatePlaceholderReplacements?: InputMaybe<Array<AvpTemplatePlaceholderReplacement>>;
|
|
552
553
|
templateVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
553
554
|
};
|
|
554
555
|
export declare type AvpDatasourceLocator = {
|
|
@@ -603,14 +604,6 @@ export declare type AvpEnvVar = {
|
|
|
603
604
|
name?: Maybe<Scalars['String']['output']>;
|
|
604
605
|
operator?: Maybe<Scalars['String']['output']>;
|
|
605
606
|
};
|
|
606
|
-
export declare enum AvpEnvVarChartType {
|
|
607
|
-
Calendar = "CALENDAR",
|
|
608
|
-
CategoricalDropdown = "CATEGORICAL_DROPDOWN",
|
|
609
|
-
DateBucket = "DATE_BUCKET",
|
|
610
|
-
DateSlider = "DATE_SLIDER",
|
|
611
|
-
InputWidget = "INPUT_WIDGET",
|
|
612
|
-
RangeInput = "RANGE_INPUT"
|
|
613
|
-
}
|
|
614
607
|
export declare enum AvpEnvVarDataType {
|
|
615
608
|
Boolean = "BOOLEAN",
|
|
616
609
|
Date = "DATE",
|
|
@@ -638,11 +631,6 @@ export declare type AvpFilterEnvVarInput = {
|
|
|
638
631
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
639
632
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
640
633
|
};
|
|
641
|
-
export declare type AvpFilterResponse = {
|
|
642
|
-
__typename?: 'AVPFilterResponse';
|
|
643
|
-
chart?: Maybe<AvpChart>;
|
|
644
|
-
envVar?: Maybe<AvpEnvVarWithChart>;
|
|
645
|
-
};
|
|
646
634
|
export declare type AvpGetDashboardTemplatesInput = {
|
|
647
635
|
cloudId: Scalars['ID']['input'];
|
|
648
636
|
productKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -769,6 +757,10 @@ export declare type AvpRemoveDashboardRowPayload = Payload & {
|
|
|
769
757
|
errors?: Maybe<Array<MutationError>>;
|
|
770
758
|
success: Scalars['Boolean']['output'];
|
|
771
759
|
};
|
|
760
|
+
export declare type AvpTemplatePlaceholderReplacement = {
|
|
761
|
+
placeholderName: Scalars['String']['input'];
|
|
762
|
+
replacementValue: Scalars['String']['input'];
|
|
763
|
+
};
|
|
772
764
|
export declare type AvpToggleCanvasElementExpandedInput = {
|
|
773
765
|
dashboardAri: Scalars['ID']['input'];
|
|
774
766
|
elementId: Scalars['ID']['input'];
|
|
@@ -1990,9 +1982,16 @@ export declare type AdminLicenseDataEdge = {
|
|
|
1990
1982
|
cursor: Scalars['String']['output'];
|
|
1991
1983
|
node: AdminLicenseData;
|
|
1992
1984
|
};
|
|
1985
|
+
export declare type AdminLicenseGroupInput = {
|
|
1986
|
+
groupId: Scalars['String']['input'];
|
|
1987
|
+
resourceIds: Array<Scalars['String']['input']>;
|
|
1988
|
+
};
|
|
1993
1989
|
export declare type AdminLicenseInput = {
|
|
1994
|
-
|
|
1995
|
-
|
|
1990
|
+
groups?: InputMaybe<Array<AdminLicenseGroupInput>>;
|
|
1991
|
+
resources?: InputMaybe<Array<AdminLicenseResourceInput>>;
|
|
1992
|
+
};
|
|
1993
|
+
export declare type AdminLicenseResourceInput = {
|
|
1994
|
+
resourceId: Scalars['String']['input'];
|
|
1996
1995
|
};
|
|
1997
1996
|
export declare type AdminLimit = {
|
|
1998
1997
|
__typename?: 'AdminLimit';
|
|
@@ -2785,10 +2784,12 @@ export declare type AgentStudioCreateScenarioPayload = Payload & {
|
|
|
2785
2784
|
};
|
|
2786
2785
|
export declare type AgentStudioDataset = {
|
|
2787
2786
|
__typename?: 'AgentStudioDataset';
|
|
2787
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
2788
2788
|
createdAt: Scalars['String']['output'];
|
|
2789
2789
|
id: Scalars['ID']['output'];
|
|
2790
2790
|
name: Scalars['String']['output'];
|
|
2791
2791
|
projectId: Scalars['String']['output'];
|
|
2792
|
+
updatedAt: Scalars['String']['output'];
|
|
2792
2793
|
};
|
|
2793
2794
|
export declare type AgentStudioDatasetEdge = {
|
|
2794
2795
|
__typename?: 'AgentStudioDatasetEdge';
|
|
@@ -2932,7 +2933,8 @@ export declare enum AgentStudioJobRunStatus {
|
|
|
2932
2933
|
Completed = "COMPLETED",
|
|
2933
2934
|
Failed = "FAILED",
|
|
2934
2935
|
Pending = "PENDING",
|
|
2935
|
-
Running = "RUNNING"
|
|
2936
|
+
Running = "RUNNING",
|
|
2937
|
+
Timeout = "TIMEOUT"
|
|
2936
2938
|
}
|
|
2937
2939
|
export declare type AgentStudioJsmKnowledgeFilter = {
|
|
2938
2940
|
__typename?: 'AgentStudioJsmKnowledgeFilter';
|
|
@@ -3468,6 +3470,7 @@ export declare enum ApiContext {
|
|
|
3468
3470
|
}
|
|
3469
3471
|
export declare enum ApiGroup {
|
|
3470
3472
|
Actions = "ACTIONS",
|
|
3473
|
+
AdminUnit = "ADMIN_UNIT",
|
|
3471
3474
|
AgentStudio = "AGENT_STUDIO",
|
|
3472
3475
|
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
3473
3476
|
AtlassianStudio = "ATLASSIAN_STUDIO",
|
|
@@ -22401,8 +22404,17 @@ export declare type ConvoAiHomeThreadSource = ConvoAiHomeThreadsFirstPartySource
|
|
|
22401
22404
|
export declare type ConvoAiHomeThreadSuggestedAction = {
|
|
22402
22405
|
__typename?: 'ConvoAiHomeThreadSuggestedAction';
|
|
22403
22406
|
action?: Maybe<ConvoAiHomeThreadSuggestedActionType>;
|
|
22407
|
+
origin?: Maybe<ConvoAiHomeThreadSuggestedActionOriginType>;
|
|
22404
22408
|
source?: Maybe<ConvoAiHomeThreadSource>;
|
|
22405
22409
|
};
|
|
22410
|
+
export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
|
|
22411
|
+
CommentRule = "COMMENT_RULE",
|
|
22412
|
+
ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
|
|
22413
|
+
JiraIssueRule = "JIRA_ISSUE_RULE",
|
|
22414
|
+
Llm = "LLM",
|
|
22415
|
+
LoomVideoRule = "LOOM_VIDEO_RULE",
|
|
22416
|
+
PullRequestRule = "PULL_REQUEST_RULE"
|
|
22417
|
+
}
|
|
22406
22418
|
export declare enum ConvoAiHomeThreadSuggestedActionType {
|
|
22407
22419
|
Delete = "DELETE",
|
|
22408
22420
|
Reply = "REPLY",
|
|
@@ -22593,8 +22605,7 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
22593
22605
|
user: Scalars['Int']['output'];
|
|
22594
22606
|
};
|
|
22595
22607
|
export declare type CplsAddContributionInput = {
|
|
22596
|
-
contributorDataId
|
|
22597
|
-
contributorId?: InputMaybe<Scalars['ID']['input']>;
|
|
22608
|
+
contributorDataId: Scalars['ID']['input'];
|
|
22598
22609
|
endDate: Scalars['Date']['input'];
|
|
22599
22610
|
startDate: Scalars['Date']['input'];
|
|
22600
22611
|
value: Scalars['Float']['input'];
|
|
@@ -22614,8 +22625,7 @@ export declare type CplsAddContributionsPayload = Payload & {
|
|
|
22614
22625
|
};
|
|
22615
22626
|
export declare type CplsAddContributorScopeAssociationInput = {
|
|
22616
22627
|
cloudId: Scalars['ID']['input'];
|
|
22617
|
-
contributorDataIds
|
|
22618
|
-
contributorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
22628
|
+
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
22619
22629
|
scopeId: Scalars['ID']['input'];
|
|
22620
22630
|
};
|
|
22621
22631
|
export declare type CplsAddContributorScopeAssociationPayload = Payload & {
|
|
@@ -22675,7 +22685,6 @@ export declare type CplsContributor = {
|
|
|
22675
22685
|
contributionAggregations: Array<CplsContributionAggregation>;
|
|
22676
22686
|
contributorData?: Maybe<CplsContributorData>;
|
|
22677
22687
|
contributorDataId?: Maybe<Scalars['ID']['output']>;
|
|
22678
|
-
contributorId: Scalars['ID']['output'];
|
|
22679
22688
|
contributorWork: CplsContributorWorkConnection;
|
|
22680
22689
|
id: Scalars['ID']['output'];
|
|
22681
22690
|
worksByIds: Array<CplsContributorWorkEdge>;
|
|
@@ -22701,8 +22710,7 @@ export declare type CplsContributorEdge = {
|
|
|
22701
22710
|
node: CplsContributor;
|
|
22702
22711
|
};
|
|
22703
22712
|
export declare type CplsContributorWorkAssociation = {
|
|
22704
|
-
contributorDataId
|
|
22705
|
-
contributorId?: InputMaybe<Scalars['ID']['input']>;
|
|
22713
|
+
contributorDataId: Scalars['ID']['input'];
|
|
22706
22714
|
workId: Scalars['ID']['input'];
|
|
22707
22715
|
};
|
|
22708
22716
|
export declare type CplsContributorWorkConnection = HasPageInfo & {
|
|
@@ -22728,8 +22736,7 @@ export declare type CplsCreateCustomContributionTargetPayload = Payload & {
|
|
|
22728
22736
|
};
|
|
22729
22737
|
export declare type CplsCreateCustomContributionTargetWithWorkAssociationInput = {
|
|
22730
22738
|
cloudId: Scalars['ID']['input'];
|
|
22731
|
-
contributorDataId
|
|
22732
|
-
contributorId?: InputMaybe<Scalars['ID']['input']>;
|
|
22739
|
+
contributorDataId: Scalars['ID']['input'];
|
|
22733
22740
|
name: Scalars['String']['input'];
|
|
22734
22741
|
};
|
|
22735
22742
|
export declare type CplsCreateCustomContributionTargetWithWorkAssociationPayload = Payload & {
|
|
@@ -22755,8 +22762,7 @@ export declare type CplsCustomContributionTargetEdge = {
|
|
|
22755
22762
|
};
|
|
22756
22763
|
export declare type CplsDeleteContributorScopeAssociationInput = {
|
|
22757
22764
|
cloudId: Scalars['ID']['input'];
|
|
22758
|
-
contributorDataIds
|
|
22759
|
-
contributorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
22765
|
+
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
22760
22766
|
scopeId: Scalars['ID']['input'];
|
|
22761
22767
|
};
|
|
22762
22768
|
export declare type CplsDeleteContributorScopeAssociationPayload = Payload & {
|
|
@@ -26604,6 +26610,12 @@ export declare type DevAiRovoDevCreateSessionPayload = Payload & {
|
|
|
26604
26610
|
session?: Maybe<DevAiRovoDevSession>;
|
|
26605
26611
|
success: Scalars['Boolean']['output'];
|
|
26606
26612
|
};
|
|
26613
|
+
export declare type DevAiRovoDevIssueViewResponse = {
|
|
26614
|
+
__typename?: 'DevAiRovoDevIssueViewResponse';
|
|
26615
|
+
checks?: Maybe<DevAiEntitlementCheckResultResponse>;
|
|
26616
|
+
isFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
26617
|
+
sessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
26618
|
+
};
|
|
26607
26619
|
export declare enum DevAiRovoDevPrStatus {
|
|
26608
26620
|
Declined = "DECLINED",
|
|
26609
26621
|
Draft = "DRAFT",
|
|
@@ -26855,13 +26867,13 @@ export declare type DevConsoleAppResourceUsageFiltersInput = {
|
|
|
26855
26867
|
export declare type DevConsoleAppResourceUsageFlatResponse = {
|
|
26856
26868
|
__typename?: 'DevConsoleAppResourceUsageFlatResponse';
|
|
26857
26869
|
error?: Maybe<QueryError>;
|
|
26858
|
-
pagination
|
|
26870
|
+
pagination?: Maybe<DevConsolePagination>;
|
|
26859
26871
|
resourceUsage: Array<DevConsoleResourceUsage>;
|
|
26860
26872
|
};
|
|
26861
26873
|
export declare type DevConsoleAppResourceUsageGroupedResponse = {
|
|
26862
26874
|
__typename?: 'DevConsoleAppResourceUsageGroupedResponse';
|
|
26863
26875
|
error?: Maybe<QueryError>;
|
|
26864
|
-
pagination
|
|
26876
|
+
pagination?: Maybe<DevConsolePagination>;
|
|
26865
26877
|
resourceUsage: Array<DevConsoleResourceUsagePeriod>;
|
|
26866
26878
|
};
|
|
26867
26879
|
export declare type DevConsoleAppResourceUsageResponse = DevConsoleAppResourceUsageFlatResponse | DevConsoleAppResourceUsageGroupedResponse;
|
|
@@ -65028,7 +65040,7 @@ export declare enum JiraBoardType {
|
|
|
65028
65040
|
Kanban = "KANBAN",
|
|
65029
65041
|
Scrum = "SCRUM"
|
|
65030
65042
|
}
|
|
65031
|
-
export declare type JiraBoardView = {
|
|
65043
|
+
export declare type JiraBoardView = JiraView & Node & {
|
|
65032
65044
|
__typename?: 'JiraBoardView';
|
|
65033
65045
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
65034
65046
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -65309,9 +65321,10 @@ export declare type JiraBulkCreateIssueLinksInput = {
|
|
|
65309
65321
|
};
|
|
65310
65322
|
export declare type JiraBulkCreateIssueLinksPayload = Payload & {
|
|
65311
65323
|
__typename?: 'JiraBulkCreateIssueLinksPayload';
|
|
65324
|
+
destinationIssues?: Maybe<Array<JiraIssue>>;
|
|
65312
65325
|
errors?: Maybe<Array<MutationError>>;
|
|
65313
65326
|
issueLinkEdges?: Maybe<Array<JiraIssueLinkEdge>>;
|
|
65314
|
-
|
|
65327
|
+
sourceIssue?: Maybe<JiraIssue>;
|
|
65315
65328
|
success: Scalars['Boolean']['output'];
|
|
65316
65329
|
};
|
|
65317
65330
|
export declare type JiraBulkDeleteInput = {
|
|
@@ -67775,10 +67788,11 @@ export declare type JiraDeleteFormattingRulePayload = Payload & {
|
|
|
67775
67788
|
export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
67776
67789
|
__typename?: 'JiraDeleteIssueLinkPayload';
|
|
67777
67790
|
deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
67791
|
+
destinationIssue?: Maybe<JiraIssue>;
|
|
67778
67792
|
errors?: Maybe<Array<MutationError>>;
|
|
67779
67793
|
id?: Maybe<Scalars['ID']['output']>;
|
|
67780
|
-
issueLinkField?: Maybe<JiraIssueLinkField>;
|
|
67781
67794
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
67795
|
+
sourceIssue?: Maybe<JiraIssue>;
|
|
67782
67796
|
success: Scalars['Boolean']['output'];
|
|
67783
67797
|
};
|
|
67784
67798
|
export declare type JiraDeleteIssueSearchFormattingRuleInput = {
|
|
@@ -70244,6 +70258,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
70244
70258
|
isResolved?: Maybe<Scalars['Boolean']['output']>;
|
|
70245
70259
|
issueColorField?: Maybe<JiraColorField>;
|
|
70246
70260
|
issueId: Scalars['String']['output'];
|
|
70261
|
+
issueLinkField?: Maybe<JiraIssueLinkField>;
|
|
70247
70262
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
70248
70263
|
issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
|
|
70249
70264
|
issueRestrictionField?: Maybe<JiraIssueRestrictionField>;
|
|
@@ -72069,6 +72084,7 @@ export declare type JiraIssueSearchStatus = {
|
|
|
72069
72084
|
export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
72070
72085
|
__typename?: 'JiraIssueSearchTimelineViewConfigSettings';
|
|
72071
72086
|
aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
|
|
72087
|
+
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
72072
72088
|
};
|
|
72073
72089
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
72074
72090
|
__typename?: 'JiraIssueSearchView';
|
|
@@ -82904,6 +82920,16 @@ export declare enum JiraTransitionSortOption {
|
|
|
82904
82920
|
OpsBar = "OPS_BAR",
|
|
82905
82921
|
OpsBarThenStatusCategory = "OPS_BAR_THEN_STATUS_CATEGORY"
|
|
82906
82922
|
}
|
|
82923
|
+
export declare type JiraTrashCustomFieldsInput = {
|
|
82924
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
82925
|
+
};
|
|
82926
|
+
export declare type JiraTrashCustomFieldsPayload = Payload & {
|
|
82927
|
+
__typename?: 'JiraTrashCustomFieldsPayload';
|
|
82928
|
+
errors?: Maybe<Array<MutationError>>;
|
|
82929
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
82930
|
+
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
82931
|
+
success: Scalars['Boolean']['output'];
|
|
82932
|
+
};
|
|
82907
82933
|
export declare type JiraTrashGlobalCustomFieldsInput = {
|
|
82908
82934
|
fieldIds: Array<Scalars['String']['input']>;
|
|
82909
82935
|
};
|
|
@@ -90097,6 +90123,11 @@ export declare type MarketplaceStoreGeoIpResponse = {
|
|
|
90097
90123
|
__typename?: 'MarketplaceStoreGeoIPResponse';
|
|
90098
90124
|
countryCode: Scalars['String']['output'];
|
|
90099
90125
|
};
|
|
90126
|
+
export declare type MarketplaceStoreGetUserPreferencesResponse = {
|
|
90127
|
+
__typename?: 'MarketplaceStoreGetUserPreferencesResponse';
|
|
90128
|
+
preferences: MarketplaceStoreUserPreferences;
|
|
90129
|
+
version: Scalars['Int']['output'];
|
|
90130
|
+
};
|
|
90100
90131
|
export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
|
|
90101
90132
|
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
90102
90133
|
description: Scalars['String']['output'];
|
|
@@ -90287,6 +90318,7 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
90287
90318
|
updateReviewDownvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
90288
90319
|
updateReviewFlag: MarketplaceStoreUpdateReviewFlagResponse;
|
|
90289
90320
|
updateReviewUpvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
90321
|
+
updateUserPreferences: MarketplaceStoreUpdateUserPreferencesResponse;
|
|
90290
90322
|
};
|
|
90291
90323
|
export declare type MarketplaceStoreMutationApiCreateOrUpdateReviewArgs = {
|
|
90292
90324
|
input: MarketplaceStoreCreateOrUpdateReviewInput;
|
|
@@ -90312,6 +90344,9 @@ export declare type MarketplaceStoreMutationApiUpdateReviewFlagArgs = {
|
|
|
90312
90344
|
export declare type MarketplaceStoreMutationApiUpdateReviewUpvoteArgs = {
|
|
90313
90345
|
input: MarketplaceStoreUpdateReviewVoteInput;
|
|
90314
90346
|
};
|
|
90347
|
+
export declare type MarketplaceStoreMutationApiUpdateUserPreferencesArgs = {
|
|
90348
|
+
input: MarketplaceStoreUpdateUserPreferencesInput;
|
|
90349
|
+
};
|
|
90315
90350
|
export declare type MarketplaceStoreOfferingDetails = {
|
|
90316
90351
|
__typename?: 'MarketplaceStoreOfferingDetails';
|
|
90317
90352
|
id: Scalars['ID']['output'];
|
|
@@ -90533,6 +90568,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
90533
90568
|
orgId: MarketplaceStoreOrgIdResponse;
|
|
90534
90569
|
partner: MarketplaceStorePartnerResponse;
|
|
90535
90570
|
siteDetails: MarketplaceStoreSiteDetailsResponse;
|
|
90571
|
+
userPreferences: MarketplaceStoreGetUserPreferencesResponse;
|
|
90536
90572
|
userProfile: MarketplaceStoreUserProfileResponse;
|
|
90537
90573
|
};
|
|
90538
90574
|
export declare type MarketplaceStoreQueryApiAppInstallationsByAppArgs = {
|
|
@@ -90709,6 +90745,26 @@ export declare type MarketplaceStoreUpdateReviewVoteResponse = {
|
|
|
90709
90745
|
id: Scalars['ID']['output'];
|
|
90710
90746
|
status?: Maybe<Scalars['String']['output']>;
|
|
90711
90747
|
};
|
|
90748
|
+
export declare type MarketplaceStoreUpdateUserPreferencesInput = {
|
|
90749
|
+
preferences: MarketplaceStoreUserPreferencesInput;
|
|
90750
|
+
version: Scalars['Int']['input'];
|
|
90751
|
+
};
|
|
90752
|
+
export declare type MarketplaceStoreUpdateUserPreferencesResponse = {
|
|
90753
|
+
__typename?: 'MarketplaceStoreUpdateUserPreferencesResponse';
|
|
90754
|
+
status: Scalars['String']['output'];
|
|
90755
|
+
version: Scalars['Int']['output'];
|
|
90756
|
+
};
|
|
90757
|
+
export declare type MarketplaceStoreUserPreferences = {
|
|
90758
|
+
__typename?: 'MarketplaceStoreUserPreferences';
|
|
90759
|
+
notifyOnAppArchivalSchedule?: Maybe<Scalars['Boolean']['output']>;
|
|
90760
|
+
notifyOnAppUninstallDisableFeedback?: Maybe<Scalars['Boolean']['output']>;
|
|
90761
|
+
notifyOnReviewResponseOrUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
90762
|
+
};
|
|
90763
|
+
export declare type MarketplaceStoreUserPreferencesInput = {
|
|
90764
|
+
notifyOnAppArchivalSchedule: Scalars['Boolean']['input'];
|
|
90765
|
+
notifyOnAppUninstallDisableFeedback: Scalars['Boolean']['input'];
|
|
90766
|
+
notifyOnReviewResponseOrUpdate: Scalars['Boolean']['input'];
|
|
90767
|
+
};
|
|
90712
90768
|
export declare type MarketplaceStoreUserProfileResponse = {
|
|
90713
90769
|
__typename?: 'MarketplaceStoreUserProfileResponse';
|
|
90714
90770
|
developerSpaces?: Maybe<Array<MarketplaceStoreLoggedInUserDeveloperSpace>>;
|
|
@@ -94715,6 +94771,9 @@ export declare type Mutation = {
|
|
|
94715
94771
|
goals_archiveMetric?: Maybe<TownsquareGoalsArchiveMetricPayload>;
|
|
94716
94772
|
goals_clone?: Maybe<TownsquareGoalsClonePayload>;
|
|
94717
94773
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
94774
|
+
goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
|
|
94775
|
+
goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
|
|
94776
|
+
goals_createRisk?: Maybe<TownsquareGoalsCreateRiskPayload>;
|
|
94718
94777
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
94719
94778
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
94720
94779
|
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
@@ -94838,6 +94897,7 @@ export declare type Mutation = {
|
|
|
94838
94897
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
94839
94898
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
94840
94899
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
94900
|
+
jira_trashCustomFields?: Maybe<JiraTrashCustomFieldsPayload>;
|
|
94841
94901
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
94842
94902
|
jira_unarchiveIssue?: Maybe<JiraIssueUnarchivePayload>;
|
|
94843
94903
|
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
@@ -96493,6 +96553,15 @@ export declare type MutationGoals_CloneArgs = {
|
|
|
96493
96553
|
export declare type MutationGoals_CreateAndAddMetricTargetArgs = {
|
|
96494
96554
|
input: TownsquareGoalsCreateAddMetricTargetInput;
|
|
96495
96555
|
};
|
|
96556
|
+
export declare type MutationGoals_CreateDecisionArgs = {
|
|
96557
|
+
input: TownsquareGoalsCreateDecisionInput;
|
|
96558
|
+
};
|
|
96559
|
+
export declare type MutationGoals_CreateLearningArgs = {
|
|
96560
|
+
input: TownsquareGoalsCreateLearningInput;
|
|
96561
|
+
};
|
|
96562
|
+
export declare type MutationGoals_CreateRiskArgs = {
|
|
96563
|
+
input: TownsquareGoalsCreateRiskInput;
|
|
96564
|
+
};
|
|
96496
96565
|
export declare type MutationGoals_CreateUpdateArgs = {
|
|
96497
96566
|
input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
96498
96567
|
};
|
|
@@ -96862,6 +96931,10 @@ export declare type MutationJira_SetViewFilterArgs = {
|
|
|
96862
96931
|
export declare type MutationJira_SetViewGroupByArgs = {
|
|
96863
96932
|
input: JiraSetViewGroupByInput;
|
|
96864
96933
|
};
|
|
96934
|
+
export declare type MutationJira_TrashCustomFieldsArgs = {
|
|
96935
|
+
cloudId: Scalars['ID']['input'];
|
|
96936
|
+
input: JiraTrashCustomFieldsInput;
|
|
96937
|
+
};
|
|
96865
96938
|
export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
|
|
96866
96939
|
cloudId: Scalars['ID']['input'];
|
|
96867
96940
|
input: JiraTrashGlobalCustomFieldsInput;
|
|
@@ -101011,6 +101084,7 @@ export declare type Query = {
|
|
|
101011
101084
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
101012
101085
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
101013
101086
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
101087
|
+
devai_checkEntitlements: Scalars['Boolean']['output'];
|
|
101014
101088
|
devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
101015
101089
|
devai_containerConfig?: Maybe<DevAiContainerConfig>;
|
|
101016
101090
|
devai_flowGetRepositories?: Maybe<DevAiFlowRepositoryConnection>;
|
|
@@ -101025,6 +101099,7 @@ export declare type Query = {
|
|
|
101025
101099
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
101026
101100
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
101027
101101
|
devai_rovoDevEntitlements?: Maybe<DevAiEntitlementCheckResultResponse>;
|
|
101102
|
+
devai_rovodevIssueViewQuery?: Maybe<DevAiRovoDevIssueViewResponse>;
|
|
101028
101103
|
devai_rovodevSessionById?: Maybe<DevAiRovoDevSession>;
|
|
101029
101104
|
devai_rovodevSessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
101030
101105
|
devai_rovodevSessionsByAri?: Maybe<Array<DevAiRovoDevSession>>;
|
|
@@ -101086,8 +101161,10 @@ export declare type Query = {
|
|
|
101086
101161
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
101087
101162
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
101088
101163
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
101164
|
+
goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
|
|
101089
101165
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
101090
101166
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
101167
|
+
goals_metricSearch?: Maybe<TownsquareMetricConnection>;
|
|
101091
101168
|
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
101092
101169
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
101093
101170
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
@@ -101310,6 +101387,7 @@ export declare type Query = {
|
|
|
101310
101387
|
pricings: ContentPlatformPricingSearchConnection;
|
|
101311
101388
|
productListing?: Maybe<ProductListingResult>;
|
|
101312
101389
|
productListings: Array<ProductListingResult>;
|
|
101390
|
+
projects_appSettings?: Maybe<TownsquareProjectsAppSettings>;
|
|
101313
101391
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
101314
101392
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
101315
101393
|
projects_byId?: Maybe<TownsquareProject>;
|
|
@@ -101691,6 +101769,7 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
101691
101769
|
};
|
|
101692
101770
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
101693
101771
|
id: Scalars['ID']['input'];
|
|
101772
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
101694
101773
|
};
|
|
101695
101774
|
export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
101696
101775
|
cloudId: Scalars['String']['input'];
|
|
@@ -101816,12 +101895,14 @@ export declare type QueryAgentStudio_ToolIntegrationsArgs = {
|
|
|
101816
101895
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101817
101896
|
cloudId: Scalars['String']['input'];
|
|
101818
101897
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101898
|
+
scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
101819
101899
|
};
|
|
101820
101900
|
export declare type QueryAgentStudio_ToolsArgs = {
|
|
101821
101901
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101822
101902
|
cloudId: Scalars['String']['input'];
|
|
101823
101903
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101824
101904
|
integrationKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
101905
|
+
scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
101825
101906
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
101826
101907
|
};
|
|
101827
101908
|
export declare type QueryAgentStudio_ValidateScenarioArgs = {
|
|
@@ -103301,6 +103382,10 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
103301
103382
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
103302
103383
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
103303
103384
|
};
|
|
103385
|
+
export declare type QueryDevai_CheckEntitlementsArgs = {
|
|
103386
|
+
cloudId: Scalars['ID']['input'];
|
|
103387
|
+
xid: Scalars['String']['input'];
|
|
103388
|
+
};
|
|
103304
103389
|
export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
|
|
103305
103390
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103306
103391
|
cloudId: Scalars['ID']['input'];
|
|
@@ -103362,6 +103447,12 @@ export declare type QueryDevai_RovoDevEntitlementsArgs = {
|
|
|
103362
103447
|
cloudId: Scalars['ID']['input'];
|
|
103363
103448
|
includeUserProductAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
103364
103449
|
};
|
|
103450
|
+
export declare type QueryDevai_RovodevIssueViewQueryArgs = {
|
|
103451
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103452
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
103453
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103454
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
103455
|
+
};
|
|
103365
103456
|
export declare type QueryDevai_RovodevSessionByIdArgs = {
|
|
103366
103457
|
id: Scalars['ID']['input'];
|
|
103367
103458
|
};
|
|
@@ -103578,12 +103669,22 @@ export declare type QueryGetSummaryArgs = {
|
|
|
103578
103669
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
103579
103670
|
responseType?: InputMaybe<ResponseType>;
|
|
103580
103671
|
};
|
|
103672
|
+
export declare type QueryGoals_AppSettingsArgs = {
|
|
103673
|
+
containerId: Scalars['ID']['input'];
|
|
103674
|
+
};
|
|
103581
103675
|
export declare type QueryGoals_ByIdArgs = {
|
|
103582
103676
|
goalId: Scalars['ID']['input'];
|
|
103583
103677
|
};
|
|
103584
103678
|
export declare type QueryGoals_ByIdsArgs = {
|
|
103585
103679
|
goalIds: Array<Scalars['ID']['input']>;
|
|
103586
103680
|
};
|
|
103681
|
+
export declare type QueryGoals_MetricSearchArgs = {
|
|
103682
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103683
|
+
containerId: Scalars['ID']['input'];
|
|
103684
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103685
|
+
searchString: Scalars['String']['input'];
|
|
103686
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareMetricSortEnum>>>;
|
|
103687
|
+
};
|
|
103587
103688
|
export declare type QueryGoals_MetricTargetsByIdsArgs = {
|
|
103588
103689
|
metricTargetIds: Array<Scalars['ID']['input']>;
|
|
103589
103690
|
};
|
|
@@ -104329,6 +104430,9 @@ export declare type QueryProductListingsArgs = {
|
|
|
104329
104430
|
ids: Array<Scalars['ID']['input']>;
|
|
104330
104431
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
104331
104432
|
};
|
|
104433
|
+
export declare type QueryProjects_AppSettingsArgs = {
|
|
104434
|
+
containerId: Scalars['ID']['input'];
|
|
104435
|
+
};
|
|
104332
104436
|
export declare type QueryProjects_ByAriArgs = {
|
|
104333
104437
|
ari: Scalars['String']['input'];
|
|
104334
104438
|
};
|
|
@@ -132466,6 +132570,11 @@ export declare type TownsquareGoalsAddGoalTeamLinkPayload = {
|
|
|
132466
132570
|
goalTeamEdge?: Maybe<TownsquareGoalTeamEdge>;
|
|
132467
132571
|
success: Scalars['Boolean']['output'];
|
|
132468
132572
|
};
|
|
132573
|
+
export declare type TownsquareGoalsAppSettings = {
|
|
132574
|
+
__typename?: 'TownsquareGoalsAppSettings';
|
|
132575
|
+
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
132576
|
+
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
132577
|
+
};
|
|
132469
132578
|
export declare type TownsquareGoalsArchiveMetricInput = {
|
|
132470
132579
|
metricId: Scalars['ID']['input'];
|
|
132471
132580
|
};
|
|
@@ -132500,6 +132609,39 @@ export declare type TownsquareGoalsCreateAddMetricTargetPayload = {
|
|
|
132500
132609
|
goal?: Maybe<TownsquareGoal>;
|
|
132501
132610
|
success: Scalars['Boolean']['output'];
|
|
132502
132611
|
};
|
|
132612
|
+
export declare type TownsquareGoalsCreateDecisionInput = {
|
|
132613
|
+
description: Scalars['String']['input'];
|
|
132614
|
+
goalId: Scalars['ID']['input'];
|
|
132615
|
+
summary: Scalars['String']['input'];
|
|
132616
|
+
};
|
|
132617
|
+
export declare type TownsquareGoalsCreateDecisionPayload = {
|
|
132618
|
+
__typename?: 'TownsquareGoalsCreateDecisionPayload';
|
|
132619
|
+
decision?: Maybe<TownsquareDecision>;
|
|
132620
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132621
|
+
success: Scalars['Boolean']['output'];
|
|
132622
|
+
};
|
|
132623
|
+
export declare type TownsquareGoalsCreateLearningInput = {
|
|
132624
|
+
description: Scalars['String']['input'];
|
|
132625
|
+
goalId: Scalars['ID']['input'];
|
|
132626
|
+
summary: Scalars['String']['input'];
|
|
132627
|
+
};
|
|
132628
|
+
export declare type TownsquareGoalsCreateLearningPayload = {
|
|
132629
|
+
__typename?: 'TownsquareGoalsCreateLearningPayload';
|
|
132630
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132631
|
+
learning?: Maybe<TownsquareLearning>;
|
|
132632
|
+
success: Scalars['Boolean']['output'];
|
|
132633
|
+
};
|
|
132634
|
+
export declare type TownsquareGoalsCreateRiskInput = {
|
|
132635
|
+
description: Scalars['String']['input'];
|
|
132636
|
+
goalId: Scalars['ID']['input'];
|
|
132637
|
+
summary: Scalars['String']['input'];
|
|
132638
|
+
};
|
|
132639
|
+
export declare type TownsquareGoalsCreateRiskPayload = {
|
|
132640
|
+
__typename?: 'TownsquareGoalsCreateRiskPayload';
|
|
132641
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132642
|
+
risk?: Maybe<TownsquareRisk>;
|
|
132643
|
+
success: Scalars['Boolean']['output'];
|
|
132644
|
+
};
|
|
132503
132645
|
export declare type TownsquareGoalsCreateUpdateInput = {
|
|
132504
132646
|
goalId: Scalars['ID']['input'];
|
|
132505
132647
|
metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
|
|
@@ -132603,6 +132745,7 @@ export declare type TownsquareGoalsRemoveMetricTargetInput = {
|
|
|
132603
132745
|
};
|
|
132604
132746
|
export declare type TownsquareGoalsRemoveMetricTargetPayload = {
|
|
132605
132747
|
__typename?: 'TownsquareGoalsRemoveMetricTargetPayload';
|
|
132748
|
+
deletedMetricTargetId?: Maybe<Scalars['ID']['output']>;
|
|
132606
132749
|
errors?: Maybe<Array<MutationError>>;
|
|
132607
132750
|
goal?: Maybe<TownsquareGoal>;
|
|
132608
132751
|
success: Scalars['Boolean']['output'];
|
|
@@ -132771,6 +132914,22 @@ export declare type TownsquareMetricValuesArgs = {
|
|
|
132771
132914
|
sort?: InputMaybe<Array<InputMaybe<TownsquareMetricValueSortEnum>>>;
|
|
132772
132915
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
132773
132916
|
};
|
|
132917
|
+
export declare type TownsquareMetricConnection = {
|
|
132918
|
+
__typename?: 'TownsquareMetricConnection';
|
|
132919
|
+
edges?: Maybe<Array<Maybe<TownsquareMetricEdge>>>;
|
|
132920
|
+
pageInfo: PageInfo;
|
|
132921
|
+
};
|
|
132922
|
+
export declare type TownsquareMetricEdge = {
|
|
132923
|
+
__typename?: 'TownsquareMetricEdge';
|
|
132924
|
+
cursor: Scalars['String']['output'];
|
|
132925
|
+
node?: Maybe<TownsquareMetric>;
|
|
132926
|
+
};
|
|
132927
|
+
export declare enum TownsquareMetricSortEnum {
|
|
132928
|
+
IdAsc = "ID_ASC",
|
|
132929
|
+
IdDesc = "ID_DESC",
|
|
132930
|
+
NameAsc = "NAME_ASC",
|
|
132931
|
+
NameDesc = "NAME_DESC"
|
|
132932
|
+
}
|
|
132774
132933
|
export declare type TownsquareMetricTarget = Node & {
|
|
132775
132934
|
__typename?: 'TownsquareMetricTarget';
|
|
132776
132935
|
id: Scalars['ID']['output'];
|
|
@@ -133239,6 +133398,10 @@ export declare type TownsquareProjectsAddTeamContributorsPayload = {
|
|
|
133239
133398
|
project?: Maybe<TownsquareProject>;
|
|
133240
133399
|
success: Scalars['Boolean']['output'];
|
|
133241
133400
|
};
|
|
133401
|
+
export declare type TownsquareProjectsAppSettings = {
|
|
133402
|
+
__typename?: 'TownsquareProjectsAppSettings';
|
|
133403
|
+
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
133404
|
+
};
|
|
133242
133405
|
export declare type TownsquareProjectsCanCreateProjectFusionInput = {
|
|
133243
133406
|
issueId: Scalars['ID']['input'];
|
|
133244
133407
|
projectId: Scalars['ID']['input'];
|
|
@@ -134063,6 +134226,16 @@ export declare type TrelloAddChecklistToCardDisplayEntities = {
|
|
|
134063
134226
|
checklist?: Maybe<TrelloActionChecklistEntity>;
|
|
134064
134227
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
134065
134228
|
};
|
|
134229
|
+
export declare type TrelloAddLabelsToCardInput = {
|
|
134230
|
+
cardId: Scalars['ID']['input'];
|
|
134231
|
+
labelIds: Array<Scalars['ID']['input']>;
|
|
134232
|
+
};
|
|
134233
|
+
export declare type TrelloAddLabelsToCardPayload = Payload & {
|
|
134234
|
+
__typename?: 'TrelloAddLabelsToCardPayload';
|
|
134235
|
+
card?: Maybe<TrelloCard>;
|
|
134236
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134237
|
+
success: Scalars['Boolean']['output'];
|
|
134238
|
+
};
|
|
134066
134239
|
export declare type TrelloAddMemberInput = {
|
|
134067
134240
|
cardId: Scalars['ID']['input'];
|
|
134068
134241
|
userId: Scalars['ID']['input'];
|
|
@@ -136236,6 +136409,7 @@ export declare type TrelloMovePlannerCalendarEventTargetOptions = {
|
|
|
136236
136409
|
export declare type TrelloMutationApi = {
|
|
136237
136410
|
__typename?: 'TrelloMutationApi';
|
|
136238
136411
|
addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
|
|
136412
|
+
addLabelsToCard?: Maybe<TrelloAddLabelsToCardPayload>;
|
|
136239
136413
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
136240
136414
|
addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
|
|
136241
136415
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
@@ -136257,6 +136431,7 @@ export declare type TrelloMutationApi = {
|
|
|
136257
136431
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
136258
136432
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
136259
136433
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
136434
|
+
removeLabelsFromCard?: Maybe<TrelloRemoveLabelsFromCardPayload>;
|
|
136260
136435
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
136261
136436
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
136262
136437
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
@@ -136291,6 +136466,9 @@ export declare type TrelloMutationApi = {
|
|
|
136291
136466
|
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
136292
136467
|
input: TrelloAddBoardStarInput;
|
|
136293
136468
|
};
|
|
136469
|
+
export declare type TrelloMutationApiAddLabelsToCardArgs = {
|
|
136470
|
+
input: TrelloAddLabelsToCardInput;
|
|
136471
|
+
};
|
|
136294
136472
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
136295
136473
|
input: TrelloAddMemberInput;
|
|
136296
136474
|
};
|
|
@@ -136354,6 +136532,9 @@ export declare type TrelloMutationApiRemoveBoardStarArgs = {
|
|
|
136354
136532
|
export declare type TrelloMutationApiRemoveCardFromPlannerCalendarEventArgs = {
|
|
136355
136533
|
input: TrelloRemoveCardFromPlannerCalendarEventInput;
|
|
136356
136534
|
};
|
|
136535
|
+
export declare type TrelloMutationApiRemoveLabelsFromCardArgs = {
|
|
136536
|
+
input: TrelloRemoveLabelsFromCardInput;
|
|
136537
|
+
};
|
|
136357
136538
|
export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
136358
136539
|
input: TrelloRemoveMemberInput;
|
|
136359
136540
|
};
|
|
@@ -136444,6 +136625,13 @@ export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
|
|
|
136444
136625
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
136445
136626
|
input: TrelloWatchCardInput;
|
|
136446
136627
|
};
|
|
136628
|
+
export declare type TrelloMutationErrorExtension = MutationErrorExtension & {
|
|
136629
|
+
__typename?: 'TrelloMutationErrorExtension';
|
|
136630
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
136631
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
136632
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
136633
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
136634
|
+
};
|
|
136447
136635
|
export declare type TrelloNotification = TrelloQuickCaptureNotification;
|
|
136448
136636
|
export declare type TrelloNotificationConnection = {
|
|
136449
136637
|
__typename?: 'TrelloNotificationConnection';
|
|
@@ -136462,6 +136650,10 @@ export declare type TrelloNotificationFilter = {
|
|
|
136462
136650
|
};
|
|
136463
136651
|
export declare type TrelloOAuth2Client = {
|
|
136464
136652
|
__typename?: 'TrelloOAuth2Client';
|
|
136653
|
+
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
136654
|
+
appDescription?: Maybe<Scalars['String']['output']>;
|
|
136655
|
+
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
136656
|
+
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
136465
136657
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
136466
136658
|
clientId: Scalars['String']['output'];
|
|
136467
136659
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
@@ -137176,6 +137368,16 @@ export declare type TrelloRemoveChecklistFromCardDisplayEntities = {
|
|
|
137176
137368
|
checklist?: Maybe<TrelloActionChecklistEntity>;
|
|
137177
137369
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
137178
137370
|
};
|
|
137371
|
+
export declare type TrelloRemoveLabelsFromCardInput = {
|
|
137372
|
+
cardId: Scalars['ID']['input'];
|
|
137373
|
+
labelIds: Array<Scalars['ID']['input']>;
|
|
137374
|
+
};
|
|
137375
|
+
export declare type TrelloRemoveLabelsFromCardPayload = Payload & {
|
|
137376
|
+
__typename?: 'TrelloRemoveLabelsFromCardPayload';
|
|
137377
|
+
card?: Maybe<TrelloCard>;
|
|
137378
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137379
|
+
success: Scalars['Boolean']['output'];
|
|
137380
|
+
};
|
|
137179
137381
|
export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCardActionData & {
|
|
137180
137382
|
__typename?: 'TrelloRemoveMemberFromCardAction';
|
|
137181
137383
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -137688,16 +137890,8 @@ export declare type TrelloUpdateOAuth2ClientInput = {
|
|
|
137688
137890
|
};
|
|
137689
137891
|
export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
137690
137892
|
__typename?: 'TrelloUpdateOAuth2ClientPayload';
|
|
137691
|
-
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
137692
|
-
appDescription?: Maybe<Scalars['String']['output']>;
|
|
137693
|
-
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
137694
|
-
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
137695
137893
|
application?: Maybe<TrelloApplication>;
|
|
137696
|
-
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
137697
|
-
clientType?: Maybe<Scalars['String']['output']>;
|
|
137698
137894
|
errors?: Maybe<Array<MutationError>>;
|
|
137699
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
137700
|
-
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
137701
137895
|
success: Scalars['Boolean']['output'];
|
|
137702
137896
|
};
|
|
137703
137897
|
export declare type TrelloUpdatePrimaryPlannerAccountInput = {
|