@forge/cli-shared 7.0.0-next.2-experimental-f44d099 → 7.0.0-next.4
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 +6 -12
- package/out/graphql/graphql-types.d.ts +306 -12
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +43 -12
- package/out/service/statsig-service.d.ts +1 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,23 +1,17 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 7.0.0-next.
|
|
3
|
+
## 7.0.0-next.4
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- 3b2ffa9: update appVersion type in logs command
|
|
7
|
+
- 3af315d: Use .cjs extension for the single wrapper
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
- 30d2f61: Add forge container tunnel MVP
|
|
9
|
+
## 7.0.0-next.3
|
|
13
10
|
|
|
14
11
|
### Patch Changes
|
|
15
12
|
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
- 7c02425: Unhide forge build commands
|
|
19
|
-
- Updated dependencies [35165ba]
|
|
20
|
-
- @forge/manifest@9.4.0-next.0-experimental-f44d099
|
|
13
|
+
- Updated dependencies [fe7e7e9]
|
|
14
|
+
- @forge/manifest@9.4.0-next.1
|
|
21
15
|
|
|
22
16
|
## 7.0.0-next.2
|
|
23
17
|
|
|
@@ -5930,6 +5930,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
5930
5930
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
5931
5931
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
5932
5932
|
teamData?: Maybe<CompassTeamDataResult>;
|
|
5933
|
+
topScorecards?: Maybe<CompassScorecardConnection>;
|
|
5933
5934
|
userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
|
|
5934
5935
|
viewerGlobalPermissions?: Maybe<CompassGlobalPermissionsResult>;
|
|
5935
5936
|
};
|
|
@@ -6094,6 +6095,12 @@ export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
|
6094
6095
|
export declare type CompassCatalogQueryApiTeamDataArgs = {
|
|
6095
6096
|
input: CompassTeamDataInput;
|
|
6096
6097
|
};
|
|
6098
|
+
export declare type CompassCatalogQueryApiTopScorecardsArgs = {
|
|
6099
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
6100
|
+
cloudId: Scalars['ID']['input'];
|
|
6101
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6102
|
+
query?: InputMaybe<CompassTopScorecardsQuery>;
|
|
6103
|
+
};
|
|
6097
6104
|
export declare type CompassCatalogQueryApiUserDefinedParametersArgs = {
|
|
6098
6105
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6099
6106
|
componentId: Scalars['ID']['input'];
|
|
@@ -9518,6 +9525,7 @@ export declare type CompassSearchPackagesEdge = {
|
|
|
9518
9525
|
node?: Maybe<CompassPackage>;
|
|
9519
9526
|
};
|
|
9520
9527
|
export declare type CompassSearchPackagesQuery = {
|
|
9528
|
+
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
9521
9529
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
9522
9530
|
};
|
|
9523
9531
|
export declare type CompassSearchTeamLabelsConnection = {
|
|
@@ -9687,6 +9695,16 @@ export declare type CompassTeamMetricSourceEdge = {
|
|
|
9687
9695
|
cursor: Scalars['String']['output'];
|
|
9688
9696
|
node?: Maybe<CompassTeamMetricSource>;
|
|
9689
9697
|
};
|
|
9698
|
+
export declare type CompassTopScorecardsQuery = {
|
|
9699
|
+
filter?: InputMaybe<CompassTopScorecardsQueryFilter>;
|
|
9700
|
+
sort?: InputMaybe<CompassTopScorecardsQuerySort>;
|
|
9701
|
+
};
|
|
9702
|
+
export declare type CompassTopScorecardsQueryFilter = {
|
|
9703
|
+
teams?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
|
|
9704
|
+
};
|
|
9705
|
+
export declare type CompassTopScorecardsQuerySort = {
|
|
9706
|
+
order?: InputMaybe<CompassScorecardQuerySortOrder>;
|
|
9707
|
+
};
|
|
9690
9708
|
export declare type CompassUnsetEntityPropertyInput = {
|
|
9691
9709
|
cloudId: Scalars['ID']['input'];
|
|
9692
9710
|
key: Scalars['String']['input'];
|
|
@@ -20068,6 +20086,35 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
20068
20086
|
isValid: Scalars['Boolean']['output'];
|
|
20069
20087
|
message?: Maybe<Scalars['String']['output']>;
|
|
20070
20088
|
};
|
|
20089
|
+
export declare type ConvoAiJiraSimilarWorkItemSuggestion = {
|
|
20090
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestion';
|
|
20091
|
+
id: Scalars['ID']['output'];
|
|
20092
|
+
similarityScore: Scalars['Float']['output'];
|
|
20093
|
+
workItem?: Maybe<JiraIssue>;
|
|
20094
|
+
};
|
|
20095
|
+
export declare type ConvoAiJiraSimilarWorkItemsConnection = {
|
|
20096
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemsConnection';
|
|
20097
|
+
edges?: Maybe<Array<ConvoAiJiraSimilarWorkItemsEdge>>;
|
|
20098
|
+
errors?: Maybe<Array<QueryError>>;
|
|
20099
|
+
pageInfo: PageInfo;
|
|
20100
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20101
|
+
};
|
|
20102
|
+
export declare type ConvoAiJiraSimilarWorkItemsEdge = {
|
|
20103
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemsEdge';
|
|
20104
|
+
cursor: Scalars['String']['output'];
|
|
20105
|
+
node?: Maybe<ConvoAiJiraSimilarWorkItemSuggestion>;
|
|
20106
|
+
};
|
|
20107
|
+
export declare type ConvoAiJiraSimilarWorkItemsInput = {
|
|
20108
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
20109
|
+
excludeWorkItemIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
20110
|
+
projectId: Scalars['String']['input'];
|
|
20111
|
+
similarityConfig?: InputMaybe<ConvoAiJiraSimilarWorkItemsSimilarityConfig>;
|
|
20112
|
+
summary: Scalars['String']['input'];
|
|
20113
|
+
workItemId?: InputMaybe<Scalars['String']['input']>;
|
|
20114
|
+
};
|
|
20115
|
+
export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
20116
|
+
minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
|
|
20117
|
+
};
|
|
20071
20118
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
20072
20119
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
20073
20120
|
project: Scalars['ID']['input'];
|
|
@@ -37871,7 +37918,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
37871
37918
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
37872
37919
|
id: Scalars['ID']['output'];
|
|
37873
37920
|
};
|
|
37874
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
37921
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
37875
37922
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
37876
37923
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
37877
37924
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -39148,7 +39195,7 @@ export declare type GraphStoreCypherQueryResultRowItem = {
|
|
|
39148
39195
|
__typename?: 'GraphStoreCypherQueryResultRowItem';
|
|
39149
39196
|
key: Scalars['String']['output'];
|
|
39150
39197
|
value: Array<GraphStoreCypherQueryValueNode>;
|
|
39151
|
-
valueUnion
|
|
39198
|
+
valueUnion?: Maybe<GraphStoreCypherQueryResultRowItemValueUnion>;
|
|
39152
39199
|
};
|
|
39153
39200
|
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject;
|
|
39154
39201
|
export declare type GraphStoreCypherQueryRowItemNode = {
|
|
@@ -39180,7 +39227,7 @@ export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
|
39180
39227
|
export declare type GraphStoreCypherQueryV2Column = {
|
|
39181
39228
|
__typename?: 'GraphStoreCypherQueryV2Column';
|
|
39182
39229
|
key: Scalars['String']['output'];
|
|
39183
|
-
value
|
|
39230
|
+
value?: Maybe<GraphStoreCypherQueryV2ResultRowItemValueUnion>;
|
|
39184
39231
|
};
|
|
39185
39232
|
export declare type GraphStoreCypherQueryV2Connection = {
|
|
39186
39233
|
__typename?: 'GraphStoreCypherQueryV2Connection';
|
|
@@ -39910,7 +39957,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
39910
39957
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
39911
39958
|
id: Scalars['ID']['output'];
|
|
39912
39959
|
};
|
|
39913
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
39960
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
39914
39961
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
39915
39962
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
39916
39963
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -45444,7 +45491,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
45444
45491
|
lastUpdated: Scalars['DateTime']['output'];
|
|
45445
45492
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
45446
45493
|
};
|
|
45447
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
45494
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
45448
45495
|
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
45449
45496
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
45450
45497
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
@@ -58493,6 +58540,9 @@ export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldCon
|
|
|
58493
58540
|
name: Scalars['String']['output'];
|
|
58494
58541
|
type: Scalars['String']['output'];
|
|
58495
58542
|
};
|
|
58543
|
+
export declare enum JiraCommentThirdPartySource {
|
|
58544
|
+
Slack = "SLACK"
|
|
58545
|
+
}
|
|
58496
58546
|
export declare type JiraComponent = Node & {
|
|
58497
58547
|
__typename?: 'JiraComponent';
|
|
58498
58548
|
ari?: Maybe<Scalars['String']['output']>;
|
|
@@ -59648,6 +59698,16 @@ export declare type JiraDeleteFormattingRulePayload = Payload & {
|
|
|
59648
59698
|
errors?: Maybe<Array<MutationError>>;
|
|
59649
59699
|
success: Scalars['Boolean']['output'];
|
|
59650
59700
|
};
|
|
59701
|
+
export declare type JiraDeleteGlobalCustomFieldsInput = {
|
|
59702
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
59703
|
+
};
|
|
59704
|
+
export declare type JiraDeleteGlobalCustomFieldsPayload = Payload & {
|
|
59705
|
+
__typename?: 'JiraDeleteGlobalCustomFieldsPayload';
|
|
59706
|
+
errors?: Maybe<Array<MutationError>>;
|
|
59707
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
59708
|
+
success: Scalars['Boolean']['output'];
|
|
59709
|
+
tasks?: Maybe<Array<JiraFieldLongRunningTask>>;
|
|
59710
|
+
};
|
|
59651
59711
|
export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
59652
59712
|
__typename?: 'JiraDeleteIssueLinkPayload';
|
|
59653
59713
|
deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -60477,6 +60537,12 @@ export declare type JiraFieldKeyValueInput = {
|
|
|
60477
60537
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
60478
60538
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
60479
60539
|
};
|
|
60540
|
+
export declare type JiraFieldLongRunningTask = {
|
|
60541
|
+
__typename?: 'JiraFieldLongRunningTask';
|
|
60542
|
+
fieldConfigId?: Maybe<Scalars['ID']['output']>;
|
|
60543
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
60544
|
+
task?: Maybe<JiraLongRunningTaskProgress>;
|
|
60545
|
+
};
|
|
60480
60546
|
export declare type JiraFieldNonEditableReason = {
|
|
60481
60547
|
__typename?: 'JiraFieldNonEditableReason';
|
|
60482
60548
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -64272,6 +64338,7 @@ export declare type JiraLongRunningTaskProgress = {
|
|
|
64272
64338
|
result?: Maybe<Scalars['String']['output']>;
|
|
64273
64339
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
64274
64340
|
status: JiraLongRunningTaskStatus;
|
|
64341
|
+
taskId?: Maybe<Scalars['String']['output']>;
|
|
64275
64342
|
};
|
|
64276
64343
|
export declare enum JiraLongRunningTaskStatus {
|
|
64277
64344
|
Cancelled = "CANCELLED",
|
|
@@ -66494,10 +66561,13 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
66494
66561
|
created: Scalars['DateTime']['output'];
|
|
66495
66562
|
id: Scalars['ID']['output'];
|
|
66496
66563
|
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
66564
|
+
isThirdPartySyncOn?: Maybe<Scalars['Boolean']['output']>;
|
|
66497
66565
|
issue?: Maybe<JiraIssue>;
|
|
66498
66566
|
issueCommentAri?: Maybe<Scalars['ID']['output']>;
|
|
66499
66567
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
66500
66568
|
richText?: Maybe<JiraRichText>;
|
|
66569
|
+
thirdPartyCommentSource?: Maybe<JiraCommentThirdPartySource>;
|
|
66570
|
+
thirdPartyLink?: Maybe<Scalars['URL']['output']>;
|
|
66501
66571
|
threadParentId?: Maybe<Scalars['ID']['output']>;
|
|
66502
66572
|
updateAuthor?: Maybe<User>;
|
|
66503
66573
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -67535,6 +67605,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
67535
67605
|
moreFavourites?: Maybe<JiraProjectConnection>;
|
|
67536
67606
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
67537
67607
|
mostRecent?: Maybe<JiraProject>;
|
|
67608
|
+
mostRecentFromHistory?: Maybe<JiraProject>;
|
|
67538
67609
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
67539
67610
|
recents?: Maybe<JiraProjectConnection>;
|
|
67540
67611
|
};
|
|
@@ -81956,6 +82027,7 @@ export declare type Mutation = {
|
|
|
81956
82027
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
81957
82028
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
81958
82029
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
82030
|
+
jira_deleteGlobalCustomFields?: Maybe<JiraDeleteGlobalCustomFieldsPayload>;
|
|
81959
82031
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
81960
82032
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
81961
82033
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
@@ -82005,6 +82077,8 @@ export declare type Mutation = {
|
|
|
82005
82077
|
newPage?: Maybe<NewPagePayload>;
|
|
82006
82078
|
notifications?: Maybe<InfluentsNotificationMutation>;
|
|
82007
82079
|
notifyUsersOnFirstView?: Maybe<NotificationResponsePayload>;
|
|
82080
|
+
offlineUserAuthToken?: Maybe<OfflineUserAuthTokenResponse>;
|
|
82081
|
+
offlineUserAuthTokenForExtension?: Maybe<OfflineUserAuthTokenResponse>;
|
|
82008
82082
|
openUpSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
82009
82083
|
partnerEarlyAccess?: Maybe<PeapMutationApi>;
|
|
82010
82084
|
planModeCardCreate?: Maybe<CreateCardsOutput>;
|
|
@@ -82107,6 +82181,9 @@ export declare type Mutation = {
|
|
|
82107
82181
|
spf_updateDependencyStatus?: Maybe<SpfUpdateDependencyPayload>;
|
|
82108
82182
|
spf_updateDependencyTargetDate?: Maybe<SpfUpdateDependencyPayload>;
|
|
82109
82183
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
82184
|
+
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
82185
|
+
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
82186
|
+
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
82110
82187
|
startSprint?: Maybe<SprintResponse>;
|
|
82111
82188
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
82112
82189
|
team?: Maybe<TeamMutation>;
|
|
@@ -83411,6 +83488,10 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
83411
83488
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
83412
83489
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
83413
83490
|
};
|
|
83491
|
+
export declare type MutationJira_DeleteGlobalCustomFieldsArgs = {
|
|
83492
|
+
cloudId: Scalars['ID']['input'];
|
|
83493
|
+
input: JiraDeleteGlobalCustomFieldsInput;
|
|
83494
|
+
};
|
|
83414
83495
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
83415
83496
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
83416
83497
|
};
|
|
@@ -83538,6 +83619,12 @@ export declare type MutationNewPageArgs = {
|
|
|
83538
83619
|
export declare type MutationNotifyUsersOnFirstViewArgs = {
|
|
83539
83620
|
contentId: Scalars['ID']['input'];
|
|
83540
83621
|
};
|
|
83622
|
+
export declare type MutationOfflineUserAuthTokenArgs = {
|
|
83623
|
+
input: OfflineUserAuthTokenInput;
|
|
83624
|
+
};
|
|
83625
|
+
export declare type MutationOfflineUserAuthTokenForExtensionArgs = {
|
|
83626
|
+
input: OfflineUserAuthTokenForExtensionInput;
|
|
83627
|
+
};
|
|
83541
83628
|
export declare type MutationOpenUpSpacePermissionsArgs = {
|
|
83542
83629
|
spaceKey: Scalars['String']['input'];
|
|
83543
83630
|
};
|
|
@@ -83856,6 +83943,15 @@ export declare type MutationSpf_UpdateDependencyTargetDateArgs = {
|
|
|
83856
83943
|
export declare type MutationSplitIssueArgs = {
|
|
83857
83944
|
input?: InputMaybe<SplitIssueInput>;
|
|
83858
83945
|
};
|
|
83946
|
+
export declare type MutationStakeholderComms_CreateStakeholderArgs = {
|
|
83947
|
+
stakeholder: StakeholderCommsCreateStakeholderInput;
|
|
83948
|
+
};
|
|
83949
|
+
export declare type MutationStakeholderComms_RemoveStakeholderAssignmentArgs = {
|
|
83950
|
+
stakeholderAssignmentInput: StakeholderCommsStakeholderAssignmentIdInput;
|
|
83951
|
+
};
|
|
83952
|
+
export declare type MutationStakeholderComms_UpdateStakeholderArgs = {
|
|
83953
|
+
updateStakeholderInput: StakeholderCommsUpdateStakeholderInput;
|
|
83954
|
+
};
|
|
83859
83955
|
export declare type MutationStartSprintArgs = {
|
|
83860
83956
|
input?: InputMaybe<StartSprintInput>;
|
|
83861
83957
|
};
|
|
@@ -84481,6 +84577,21 @@ export declare type OAuthClientsScopeDetails = {
|
|
|
84481
84577
|
description?: Maybe<Scalars['String']['output']>;
|
|
84482
84578
|
key: Scalars['String']['output'];
|
|
84483
84579
|
};
|
|
84580
|
+
export declare type OfflineUserAuthTokenForExtensionInput = {
|
|
84581
|
+
contextIds: Array<Scalars['ID']['input']>;
|
|
84582
|
+
extensionId: Scalars['ID']['input'];
|
|
84583
|
+
userId: Scalars['String']['input'];
|
|
84584
|
+
};
|
|
84585
|
+
export declare type OfflineUserAuthTokenInput = {
|
|
84586
|
+
contextIds: Array<Scalars['ID']['input']>;
|
|
84587
|
+
userId: Scalars['String']['input'];
|
|
84588
|
+
};
|
|
84589
|
+
export declare type OfflineUserAuthTokenResponse = Payload & {
|
|
84590
|
+
__typename?: 'OfflineUserAuthTokenResponse';
|
|
84591
|
+
authToken?: Maybe<AuthToken>;
|
|
84592
|
+
errors?: Maybe<Array<MutationError>>;
|
|
84593
|
+
success: Scalars['Boolean']['output'];
|
|
84594
|
+
};
|
|
84484
84595
|
export declare type OnboardingState = {
|
|
84485
84596
|
__typename?: 'OnboardingState';
|
|
84486
84597
|
key: Scalars['String']['output'];
|
|
@@ -87181,6 +87292,7 @@ export declare type Query = {
|
|
|
87181
87292
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
87182
87293
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
87183
87294
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
87295
|
+
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
87184
87296
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
87185
87297
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
87186
87298
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
@@ -87366,7 +87478,7 @@ export declare type Query = {
|
|
|
87366
87478
|
loom_settings?: Maybe<LoomSettings>;
|
|
87367
87479
|
loom_space?: Maybe<LoomSpace>;
|
|
87368
87480
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
87369
|
-
loom_spacesSearch
|
|
87481
|
+
loom_spacesSearch?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
87370
87482
|
loom_video?: Maybe<LoomVideo>;
|
|
87371
87483
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
87372
87484
|
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
@@ -87522,6 +87634,9 @@ export declare type Query = {
|
|
|
87522
87634
|
spf_dependency?: Maybe<SpfDependency>;
|
|
87523
87635
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
87524
87636
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
87637
|
+
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
87638
|
+
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
87639
|
+
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
87525
87640
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
87526
87641
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
87527
87642
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -89064,6 +89179,15 @@ export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
|
89064
89179
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89065
89180
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
89066
89181
|
};
|
|
89182
|
+
export declare type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
89183
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89184
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
89185
|
+
cloudId: Scalars['ID']['input'];
|
|
89186
|
+
experience: Scalars['String']['input'];
|
|
89187
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89188
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
89189
|
+
workItemInput: ConvoAiJiraSimilarWorkItemsInput;
|
|
89190
|
+
};
|
|
89067
89191
|
export declare type QueryCountGroupByEventNameArgs = {
|
|
89068
89192
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
89069
89193
|
eventName: Array<AnalyticsEventName>;
|
|
@@ -90282,6 +90406,15 @@ export declare type QuerySqlSlowQueryLogsArgs = {
|
|
|
90282
90406
|
interval: QueryInterval;
|
|
90283
90407
|
queryType: Array<QueryType>;
|
|
90284
90408
|
};
|
|
90409
|
+
export declare type QueryStakeholderComms_GetAssignmentsByStakeholderArgs = {
|
|
90410
|
+
paginatedAssignmentByStakeholderIdInput: StakeholderCommsPaginatedAssignmentByStakeholderInput;
|
|
90411
|
+
};
|
|
90412
|
+
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
90413
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
90414
|
+
};
|
|
90415
|
+
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
|
|
90416
|
+
paginatedStakeholderInput: StakeholderCommsPaginatedStakeholderInput;
|
|
90417
|
+
};
|
|
90285
90418
|
export declare type QueryStalePagesArgs = {
|
|
90286
90419
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
90287
90420
|
includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -92501,6 +92634,7 @@ export declare enum Scope {
|
|
|
92501
92634
|
PullRequest = "PULL_REQUEST",
|
|
92502
92635
|
PullRequestWrite = "PULL_REQUEST_WRITE",
|
|
92503
92636
|
ReadAccount = "READ_ACCOUNT",
|
|
92637
|
+
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
92504
92638
|
ReadCompassAttentionItem = "READ_COMPASS_ATTENTION_ITEM",
|
|
92505
92639
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
92506
92640
|
ReadCompassEvent = "READ_COMPASS_EVENT",
|
|
@@ -95547,6 +95681,7 @@ export declare type SmartsRecommendedObject = {
|
|
|
95547
95681
|
__typename?: 'SmartsRecommendedObject';
|
|
95548
95682
|
id: Scalars['ID']['output'];
|
|
95549
95683
|
object?: Maybe<SmartsRecommendedObjectData>;
|
|
95684
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
95550
95685
|
score?: Maybe<Scalars['Float']['output']>;
|
|
95551
95686
|
};
|
|
95552
95687
|
export declare type SmartsRecommendedObjectData = ConfluenceBlogPost | ConfluencePage;
|
|
@@ -96347,11 +96482,12 @@ export declare type SpfAttachRelatedContentPayload = Payload & {
|
|
|
96347
96482
|
};
|
|
96348
96483
|
export declare type SpfComment = {
|
|
96349
96484
|
__typename?: 'SpfComment';
|
|
96350
|
-
createdAt
|
|
96485
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96351
96486
|
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
96352
96487
|
data: Scalars['String']['output'];
|
|
96488
|
+
dependencyId: Scalars['String']['output'];
|
|
96353
96489
|
id: Scalars['ID']['output'];
|
|
96354
|
-
updatedAt
|
|
96490
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96355
96491
|
};
|
|
96356
96492
|
export declare type SpfCommentConnection = {
|
|
96357
96493
|
__typename?: 'SpfCommentConnection';
|
|
@@ -96405,9 +96541,9 @@ export declare type SpfDeleteDependencyPayload = Payload & {
|
|
|
96405
96541
|
export declare type SpfDependency = Node & {
|
|
96406
96542
|
__typename?: 'SpfDependency';
|
|
96407
96543
|
comments?: Maybe<SpfCommentConnection>;
|
|
96408
|
-
createdAt
|
|
96544
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96409
96545
|
createdBy?: Maybe<User>;
|
|
96410
|
-
createdByUserId
|
|
96546
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
96411
96547
|
description?: Maybe<Scalars['String']['output']>;
|
|
96412
96548
|
id: Scalars['ID']['output'];
|
|
96413
96549
|
impactedWork?: Maybe<SpfImpactedWork>;
|
|
@@ -96426,7 +96562,7 @@ export declare type SpfDependency = Node & {
|
|
|
96426
96562
|
requestingTeamId?: Maybe<Scalars['String']['output']>;
|
|
96427
96563
|
status: SpfDependencyStatus;
|
|
96428
96564
|
targetDate?: Maybe<SpfTargetDate>;
|
|
96429
|
-
updatedAt
|
|
96565
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96430
96566
|
updatedBy?: Maybe<User>;
|
|
96431
96567
|
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
96432
96568
|
};
|
|
@@ -96471,7 +96607,8 @@ export declare enum SpfPriority {
|
|
|
96471
96607
|
export declare type SpfRelatedContent = {
|
|
96472
96608
|
__typename?: 'SpfRelatedContent';
|
|
96473
96609
|
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
96474
|
-
attachedDateTime
|
|
96610
|
+
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
96611
|
+
dependencyId: Scalars['String']['output'];
|
|
96475
96612
|
id: Scalars['ID']['output'];
|
|
96476
96613
|
url: Scalars['URL']['output'];
|
|
96477
96614
|
};
|
|
@@ -96648,6 +96785,153 @@ export declare type SprintWithStatistics = BaseSprint & {
|
|
|
96648
96785
|
sprintState: SprintState;
|
|
96649
96786
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
96650
96787
|
};
|
|
96788
|
+
export declare enum StakeholderCommsAddedFromType {
|
|
96789
|
+
Jsm = "JSM",
|
|
96790
|
+
Statuspage = "STATUSPAGE"
|
|
96791
|
+
}
|
|
96792
|
+
export declare type StakeholderCommsAssignment = {
|
|
96793
|
+
__typename?: 'StakeholderCommsAssignment';
|
|
96794
|
+
addedFrom?: Maybe<StakeholderCommsAddedFromType>;
|
|
96795
|
+
assignmentType?: Maybe<StakeholderCommsAssignmentType>;
|
|
96796
|
+
externalAssignmentId?: Maybe<Scalars['String']['output']>;
|
|
96797
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
96798
|
+
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
96799
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
96800
|
+
};
|
|
96801
|
+
export declare type StakeholderCommsAssignmentIdInput = {
|
|
96802
|
+
assignmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
96803
|
+
assignmentType?: InputMaybe<StakeholderCommsAssignmentType>;
|
|
96804
|
+
externalAssignmentId?: InputMaybe<Scalars['String']['input']>;
|
|
96805
|
+
};
|
|
96806
|
+
export declare enum StakeholderCommsAssignmentType {
|
|
96807
|
+
Asset = "ASSET",
|
|
96808
|
+
Incident = "INCIDENT",
|
|
96809
|
+
Org = "ORG",
|
|
96810
|
+
Page = "PAGE",
|
|
96811
|
+
Product = "PRODUCT",
|
|
96812
|
+
Services = "SERVICES",
|
|
96813
|
+
Site = "SITE"
|
|
96814
|
+
}
|
|
96815
|
+
export declare type StakeholderCommsCreateStakeholderInput = {
|
|
96816
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
96817
|
+
addedFrom: StakeholderCommsAddedFromType;
|
|
96818
|
+
assignmentType: StakeholderCommsAssignmentType;
|
|
96819
|
+
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
96820
|
+
externalAssignmentId: Scalars['String']['input'];
|
|
96821
|
+
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
96822
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
96823
|
+
preference: StakeholderCommsPreferencesInput;
|
|
96824
|
+
skipConfirmation: Scalars['Boolean']['input'];
|
|
96825
|
+
stakeholderType: StakeholderCommsStakeholderType;
|
|
96826
|
+
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
96827
|
+
};
|
|
96828
|
+
export declare type StakeholderCommsModePreference = {
|
|
96829
|
+
__typename?: 'StakeholderCommsModePreference';
|
|
96830
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
96831
|
+
};
|
|
96832
|
+
export declare type StakeholderCommsModePreferenceInput = {
|
|
96833
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96834
|
+
};
|
|
96835
|
+
export declare type StakeholderCommsNotificationPreference = {
|
|
96836
|
+
__typename?: 'StakeholderCommsNotificationPreference';
|
|
96837
|
+
emailId?: Maybe<Scalars['String']['output']>;
|
|
96838
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
96839
|
+
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
96840
|
+
phoneCountry?: Maybe<Scalars['String']['output']>;
|
|
96841
|
+
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
96842
|
+
preference?: Maybe<StakeholderCommsPreferences>;
|
|
96843
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
96844
|
+
webhook?: Maybe<Scalars['String']['output']>;
|
|
96845
|
+
};
|
|
96846
|
+
export declare type StakeholderCommsNotificationPreferenceInput = {
|
|
96847
|
+
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
96848
|
+
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
96849
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
96850
|
+
preference?: InputMaybe<StakeholderCommsPreferencesInput>;
|
|
96851
|
+
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
96852
|
+
};
|
|
96853
|
+
export declare type StakeholderCommsPaginatedAssignmentByStakeholderInput = {
|
|
96854
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
96855
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
96856
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
96857
|
+
};
|
|
96858
|
+
export declare type StakeholderCommsPaginatedAssignmentResults = {
|
|
96859
|
+
__typename?: 'StakeholderCommsPaginatedAssignmentResults';
|
|
96860
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
96861
|
+
nextPageCursor?: Maybe<Scalars['String']['output']>;
|
|
96862
|
+
results?: Maybe<Array<Maybe<StakeholderCommsAssignment>>>;
|
|
96863
|
+
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
96864
|
+
};
|
|
96865
|
+
export declare type StakeholderCommsPaginatedStakeholderInput = {
|
|
96866
|
+
assignmentIdInput: StakeholderCommsAssignmentIdInput;
|
|
96867
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
96868
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
96869
|
+
};
|
|
96870
|
+
export declare type StakeholderCommsPaginatedStakeholderResults = {
|
|
96871
|
+
__typename?: 'StakeholderCommsPaginatedStakeholderResults';
|
|
96872
|
+
assignment?: Maybe<StakeholderCommsAssignment>;
|
|
96873
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
96874
|
+
nextPageCursor?: Maybe<Scalars['String']['output']>;
|
|
96875
|
+
results?: Maybe<Array<Maybe<StakeholderCommsStakeholder>>>;
|
|
96876
|
+
};
|
|
96877
|
+
export declare type StakeholderCommsPreferences = {
|
|
96878
|
+
__typename?: 'StakeholderCommsPreferences';
|
|
96879
|
+
email?: Maybe<StakeholderCommsModePreference>;
|
|
96880
|
+
sms?: Maybe<StakeholderCommsModePreference>;
|
|
96881
|
+
webhook?: Maybe<StakeholderCommsModePreference>;
|
|
96882
|
+
};
|
|
96883
|
+
export declare type StakeholderCommsPreferencesInput = {
|
|
96884
|
+
email?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
96885
|
+
sms?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
96886
|
+
webhook?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
96887
|
+
};
|
|
96888
|
+
export declare type StakeholderCommsStakeholder = {
|
|
96889
|
+
__typename?: 'StakeholderCommsStakeholder';
|
|
96890
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
96891
|
+
id: Scalars['ID']['output'];
|
|
96892
|
+
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
96893
|
+
notificationPreference?: Maybe<StakeholderCommsNotificationPreference>;
|
|
96894
|
+
skipConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
96895
|
+
status?: Maybe<StakeholderCommsStakeholderStatus>;
|
|
96896
|
+
type?: Maybe<StakeholderCommsStakeholderType>;
|
|
96897
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
96898
|
+
};
|
|
96899
|
+
export declare type StakeholderCommsStakeholderAssignmentIdInput = {
|
|
96900
|
+
assignmentIdInput: StakeholderCommsAssignmentIdInput;
|
|
96901
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
96902
|
+
};
|
|
96903
|
+
export declare type StakeholderCommsStakeholderAssignmentResponse = {
|
|
96904
|
+
__typename?: 'StakeholderCommsStakeholderAssignmentResponse';
|
|
96905
|
+
assignment?: Maybe<StakeholderCommsAssignment>;
|
|
96906
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
96907
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
96908
|
+
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
96909
|
+
};
|
|
96910
|
+
export declare type StakeholderCommsStakeholderIdInput = {
|
|
96911
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
96912
|
+
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
96913
|
+
stakeholderId?: InputMaybe<Scalars['ID']['input']>;
|
|
96914
|
+
stakeholderType?: InputMaybe<StakeholderCommsStakeholderType>;
|
|
96915
|
+
};
|
|
96916
|
+
export declare type StakeholderCommsStakeholderResponse = {
|
|
96917
|
+
__typename?: 'StakeholderCommsStakeholderResponse';
|
|
96918
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
96919
|
+
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
96920
|
+
};
|
|
96921
|
+
export declare enum StakeholderCommsStakeholderStatus {
|
|
96922
|
+
Active = "ACTIVE",
|
|
96923
|
+
Deleted = "DELETED",
|
|
96924
|
+
Quarantined = "QUARANTINED"
|
|
96925
|
+
}
|
|
96926
|
+
export declare enum StakeholderCommsStakeholderType {
|
|
96927
|
+
External = "EXTERNAL",
|
|
96928
|
+
Internal = "INTERNAL"
|
|
96929
|
+
}
|
|
96930
|
+
export declare type StakeholderCommsUpdateStakeholderInput = {
|
|
96931
|
+
notificationPreference?: InputMaybe<StakeholderCommsNotificationPreferenceInput>;
|
|
96932
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
96933
|
+
status?: InputMaybe<StakeholderCommsStakeholderStatus>;
|
|
96934
|
+
};
|
|
96651
96935
|
export declare type StalePagePayload = {
|
|
96652
96936
|
__typename?: 'StalePagePayload';
|
|
96653
96937
|
lastActivityDate: Scalars['String']['output'];
|
|
@@ -99740,6 +100024,7 @@ export declare enum TrelloCardBatchStatus {
|
|
|
99740
100024
|
}
|
|
99741
100025
|
export declare type TrelloCardClause = {
|
|
99742
100026
|
closed?: InputMaybe<TrelloCardClosedClause>;
|
|
100027
|
+
completed?: InputMaybe<TrelloCardCompleteClause>;
|
|
99743
100028
|
list?: InputMaybe<TrelloCardListClause>;
|
|
99744
100029
|
};
|
|
99745
100030
|
export declare type TrelloCardCloseCommand = {
|
|
@@ -99751,6 +100036,9 @@ export declare type TrelloCardClosedClause = {
|
|
|
99751
100036
|
export declare type TrelloCardCommand = {
|
|
99752
100037
|
close?: InputMaybe<TrelloCardCloseCommand>;
|
|
99753
100038
|
};
|
|
100039
|
+
export declare type TrelloCardCompleteClause = {
|
|
100040
|
+
completed: Scalars['Boolean']['input'];
|
|
100041
|
+
};
|
|
99754
100042
|
export declare type TrelloCardConnection = {
|
|
99755
100043
|
__typename?: 'TrelloCardConnection';
|
|
99756
100044
|
edges?: Maybe<Array<TrelloCardEdge>>;
|
|
@@ -100430,6 +100718,7 @@ export declare enum TrelloListType {
|
|
|
100430
100718
|
}
|
|
100431
100719
|
export declare type TrelloListUpdated = {
|
|
100432
100720
|
__typename?: 'TrelloListUpdated';
|
|
100721
|
+
bulkArchivedCards?: Maybe<Array<Scalars['ID']['output']>>;
|
|
100433
100722
|
cards?: Maybe<TrelloCardUpdatedConnection>;
|
|
100434
100723
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
100435
100724
|
id: Scalars['ID']['output'];
|
|
@@ -100991,6 +101280,7 @@ export declare type TrelloPlannerCalendarUpdated = {
|
|
|
100991
101280
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
100992
101281
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
100993
101282
|
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
101283
|
+
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
100994
101284
|
id: Scalars['ID']['output'];
|
|
100995
101285
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
100996
101286
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -101377,6 +101667,7 @@ export declare type TrelloSubscriptionApi = {
|
|
|
101377
101667
|
__typename?: 'TrelloSubscriptionApi';
|
|
101378
101668
|
onBoardCardSetUpdated?: Maybe<TrelloBoardUpdated>;
|
|
101379
101669
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
101670
|
+
onCardBatchUpdated?: Maybe<TrelloCardBatch>;
|
|
101380
101671
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
101381
101672
|
onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
|
|
101382
101673
|
};
|
|
@@ -101388,6 +101679,9 @@ export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
|
101388
101679
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
101389
101680
|
id: Scalars['ID']['input'];
|
|
101390
101681
|
};
|
|
101682
|
+
export declare type TrelloSubscriptionApiOnCardBatchUpdatedArgs = {
|
|
101683
|
+
id: Scalars['ID']['input'];
|
|
101684
|
+
};
|
|
101391
101685
|
export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
101392
101686
|
id: Scalars['ID']['input'];
|
|
101393
101687
|
};
|