@forge/cli-shared 7.0.0-next.2-experimental-f44d099 → 7.0.0-next.3
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 +3 -15
- package/out/graphql/graphql-types.d.ts +133 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +16 -12
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,23 +1,11 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 7.0.0-next.
|
|
4
|
-
|
|
5
|
-
### Major Changes
|
|
6
|
-
|
|
7
|
-
- 3b2ffa9: updated the type of appVersion
|
|
8
|
-
- 3b2ffa9: update appVersion type in logs command
|
|
9
|
-
|
|
10
|
-
### Minor Changes
|
|
11
|
-
|
|
12
|
-
- 30d2f61: Add forge container tunnel MVP
|
|
3
|
+
## 7.0.0-next.3
|
|
13
4
|
|
|
14
5
|
### Patch Changes
|
|
15
6
|
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
- 7c02425: Unhide forge build commands
|
|
19
|
-
- Updated dependencies [35165ba]
|
|
20
|
-
- @forge/manifest@9.4.0-next.0-experimental-f44d099
|
|
7
|
+
- Updated dependencies [fe7e7e9]
|
|
8
|
+
- @forge/manifest@9.4.0-next.1
|
|
21
9
|
|
|
22
10
|
## 7.0.0-next.2
|
|
23
11
|
|
|
@@ -4873,6 +4873,55 @@ export declare type CloudAppScope = {
|
|
|
4873
4873
|
id: Scalars['ID']['output'];
|
|
4874
4874
|
name: Scalars['String']['output'];
|
|
4875
4875
|
};
|
|
4876
|
+
export declare type CmdbObject = {
|
|
4877
|
+
__typename?: 'CmdbObject';
|
|
4878
|
+
attributes?: Maybe<CmdbObjectAttributeConnection>;
|
|
4879
|
+
id: Scalars['ID']['output'];
|
|
4880
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4881
|
+
objectKey?: Maybe<Scalars['String']['output']>;
|
|
4882
|
+
objectTypeId: Scalars['ID']['output'];
|
|
4883
|
+
objectTypeName?: Maybe<Scalars['String']['output']>;
|
|
4884
|
+
};
|
|
4885
|
+
export declare type CmdbObjectAttributesArgs = {
|
|
4886
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4887
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4888
|
+
};
|
|
4889
|
+
export declare type CmdbObjectAttribute = {
|
|
4890
|
+
__typename?: 'CmdbObjectAttribute';
|
|
4891
|
+
objectAttributeValues?: Maybe<CmdbObjectAttributeValueConnection>;
|
|
4892
|
+
objectTypeAttributeId: Scalars['ID']['output'];
|
|
4893
|
+
objectTypeAttributeName?: Maybe<Scalars['String']['output']>;
|
|
4894
|
+
};
|
|
4895
|
+
export declare type CmdbObjectAttributeObjectAttributeValuesArgs = {
|
|
4896
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4897
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4898
|
+
};
|
|
4899
|
+
export declare type CmdbObjectAttributeConnection = {
|
|
4900
|
+
__typename?: 'CmdbObjectAttributeConnection';
|
|
4901
|
+
edges?: Maybe<Array<Maybe<CmdbObjectAttributeEdge>>>;
|
|
4902
|
+
nodes?: Maybe<Array<Maybe<CmdbObjectAttribute>>>;
|
|
4903
|
+
pageInfo: PageInfo;
|
|
4904
|
+
};
|
|
4905
|
+
export declare type CmdbObjectAttributeEdge = {
|
|
4906
|
+
__typename?: 'CmdbObjectAttributeEdge';
|
|
4907
|
+
cursor: Scalars['String']['output'];
|
|
4908
|
+
node?: Maybe<CmdbObjectAttribute>;
|
|
4909
|
+
};
|
|
4910
|
+
export declare type CmdbObjectAttributeValue = {
|
|
4911
|
+
__typename?: 'CmdbObjectAttributeValue';
|
|
4912
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
4913
|
+
};
|
|
4914
|
+
export declare type CmdbObjectAttributeValueConnection = {
|
|
4915
|
+
__typename?: 'CmdbObjectAttributeValueConnection';
|
|
4916
|
+
edges?: Maybe<Array<Maybe<CmdbObjectAttributeValueEdge>>>;
|
|
4917
|
+
nodes?: Maybe<Array<Maybe<CmdbObjectAttributeValue>>>;
|
|
4918
|
+
pageInfo: PageInfo;
|
|
4919
|
+
};
|
|
4920
|
+
export declare type CmdbObjectAttributeValueEdge = {
|
|
4921
|
+
__typename?: 'CmdbObjectAttributeValueEdge';
|
|
4922
|
+
cursor: Scalars['String']['output'];
|
|
4923
|
+
node?: Maybe<CmdbObjectAttributeValue>;
|
|
4924
|
+
};
|
|
4876
4925
|
export declare type CodeInJira = {
|
|
4877
4926
|
__typename?: 'CodeInJira';
|
|
4878
4927
|
siteConfiguration?: Maybe<CodeInJiraSiteConfiguration>;
|
|
@@ -9518,6 +9567,7 @@ export declare type CompassSearchPackagesEdge = {
|
|
|
9518
9567
|
node?: Maybe<CompassPackage>;
|
|
9519
9568
|
};
|
|
9520
9569
|
export declare type CompassSearchPackagesQuery = {
|
|
9570
|
+
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
9521
9571
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
9522
9572
|
};
|
|
9523
9573
|
export declare type CompassSearchTeamLabelsConnection = {
|
|
@@ -20068,6 +20118,35 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
20068
20118
|
isValid: Scalars['Boolean']['output'];
|
|
20069
20119
|
message?: Maybe<Scalars['String']['output']>;
|
|
20070
20120
|
};
|
|
20121
|
+
export declare type ConvoAiJiraSimilarWorkItemSuggestion = {
|
|
20122
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestion';
|
|
20123
|
+
id: Scalars['ID']['output'];
|
|
20124
|
+
similarityScore: Scalars['Float']['output'];
|
|
20125
|
+
workItem?: Maybe<JiraIssue>;
|
|
20126
|
+
};
|
|
20127
|
+
export declare type ConvoAiJiraSimilarWorkItemsConnection = {
|
|
20128
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemsConnection';
|
|
20129
|
+
edges?: Maybe<Array<ConvoAiJiraSimilarWorkItemsEdge>>;
|
|
20130
|
+
errors?: Maybe<Array<QueryError>>;
|
|
20131
|
+
pageInfo: PageInfo;
|
|
20132
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20133
|
+
};
|
|
20134
|
+
export declare type ConvoAiJiraSimilarWorkItemsEdge = {
|
|
20135
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemsEdge';
|
|
20136
|
+
cursor: Scalars['String']['output'];
|
|
20137
|
+
node?: Maybe<ConvoAiJiraSimilarWorkItemSuggestion>;
|
|
20138
|
+
};
|
|
20139
|
+
export declare type ConvoAiJiraSimilarWorkItemsInput = {
|
|
20140
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
20141
|
+
excludeWorkItemIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
20142
|
+
projectId: Scalars['String']['input'];
|
|
20143
|
+
similarityConfig?: InputMaybe<ConvoAiJiraSimilarWorkItemsSimilarityConfig>;
|
|
20144
|
+
summary: Scalars['String']['input'];
|
|
20145
|
+
workItemId?: InputMaybe<Scalars['String']['input']>;
|
|
20146
|
+
};
|
|
20147
|
+
export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
20148
|
+
minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
|
|
20149
|
+
};
|
|
20071
20150
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
20072
20151
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
20073
20152
|
project: Scalars['ID']['input'];
|
|
@@ -37871,7 +37950,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
37871
37950
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
37872
37951
|
id: Scalars['ID']['output'];
|
|
37873
37952
|
};
|
|
37874
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
37953
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
37875
37954
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
37876
37955
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
37877
37956
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -39148,7 +39227,7 @@ export declare type GraphStoreCypherQueryResultRowItem = {
|
|
|
39148
39227
|
__typename?: 'GraphStoreCypherQueryResultRowItem';
|
|
39149
39228
|
key: Scalars['String']['output'];
|
|
39150
39229
|
value: Array<GraphStoreCypherQueryValueNode>;
|
|
39151
|
-
valueUnion
|
|
39230
|
+
valueUnion?: Maybe<GraphStoreCypherQueryResultRowItemValueUnion>;
|
|
39152
39231
|
};
|
|
39153
39232
|
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject;
|
|
39154
39233
|
export declare type GraphStoreCypherQueryRowItemNode = {
|
|
@@ -39180,7 +39259,7 @@ export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
|
39180
39259
|
export declare type GraphStoreCypherQueryV2Column = {
|
|
39181
39260
|
__typename?: 'GraphStoreCypherQueryV2Column';
|
|
39182
39261
|
key: Scalars['String']['output'];
|
|
39183
|
-
value
|
|
39262
|
+
value?: Maybe<GraphStoreCypherQueryV2ResultRowItemValueUnion>;
|
|
39184
39263
|
};
|
|
39185
39264
|
export declare type GraphStoreCypherQueryV2Connection = {
|
|
39186
39265
|
__typename?: 'GraphStoreCypherQueryV2Connection';
|
|
@@ -39910,7 +39989,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
39910
39989
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
39911
39990
|
id: Scalars['ID']['output'];
|
|
39912
39991
|
};
|
|
39913
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
39992
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
39914
39993
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
39915
39994
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
39916
39995
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -45444,7 +45523,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
45444
45523
|
lastUpdated: Scalars['DateTime']['output'];
|
|
45445
45524
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
45446
45525
|
};
|
|
45447
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
45526
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
45448
45527
|
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
45449
45528
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
45450
45529
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
@@ -58493,6 +58572,9 @@ export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldCon
|
|
|
58493
58572
|
name: Scalars['String']['output'];
|
|
58494
58573
|
type: Scalars['String']['output'];
|
|
58495
58574
|
};
|
|
58575
|
+
export declare enum JiraCommentThirdPartySource {
|
|
58576
|
+
Slack = "SLACK"
|
|
58577
|
+
}
|
|
58496
58578
|
export declare type JiraComponent = Node & {
|
|
58497
58579
|
__typename?: 'JiraComponent';
|
|
58498
58580
|
ari?: Maybe<Scalars['String']['output']>;
|
|
@@ -59648,6 +59730,16 @@ export declare type JiraDeleteFormattingRulePayload = Payload & {
|
|
|
59648
59730
|
errors?: Maybe<Array<MutationError>>;
|
|
59649
59731
|
success: Scalars['Boolean']['output'];
|
|
59650
59732
|
};
|
|
59733
|
+
export declare type JiraDeleteGlobalCustomFieldsInput = {
|
|
59734
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
59735
|
+
};
|
|
59736
|
+
export declare type JiraDeleteGlobalCustomFieldsPayload = Payload & {
|
|
59737
|
+
__typename?: 'JiraDeleteGlobalCustomFieldsPayload';
|
|
59738
|
+
errors?: Maybe<Array<MutationError>>;
|
|
59739
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
59740
|
+
success: Scalars['Boolean']['output'];
|
|
59741
|
+
tasks?: Maybe<Array<JiraFieldLongRunningTask>>;
|
|
59742
|
+
};
|
|
59651
59743
|
export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
59652
59744
|
__typename?: 'JiraDeleteIssueLinkPayload';
|
|
59653
59745
|
deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -60477,6 +60569,12 @@ export declare type JiraFieldKeyValueInput = {
|
|
|
60477
60569
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
60478
60570
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
60479
60571
|
};
|
|
60572
|
+
export declare type JiraFieldLongRunningTask = {
|
|
60573
|
+
__typename?: 'JiraFieldLongRunningTask';
|
|
60574
|
+
fieldConfigId?: Maybe<Scalars['ID']['output']>;
|
|
60575
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
60576
|
+
task?: Maybe<JiraLongRunningTaskProgress>;
|
|
60577
|
+
};
|
|
60480
60578
|
export declare type JiraFieldNonEditableReason = {
|
|
60481
60579
|
__typename?: 'JiraFieldNonEditableReason';
|
|
60482
60580
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -64272,6 +64370,7 @@ export declare type JiraLongRunningTaskProgress = {
|
|
|
64272
64370
|
result?: Maybe<Scalars['String']['output']>;
|
|
64273
64371
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
64274
64372
|
status: JiraLongRunningTaskStatus;
|
|
64373
|
+
taskId?: Maybe<Scalars['String']['output']>;
|
|
64275
64374
|
};
|
|
64276
64375
|
export declare enum JiraLongRunningTaskStatus {
|
|
64277
64376
|
Cancelled = "CANCELLED",
|
|
@@ -66494,10 +66593,13 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
66494
66593
|
created: Scalars['DateTime']['output'];
|
|
66495
66594
|
id: Scalars['ID']['output'];
|
|
66496
66595
|
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
66596
|
+
isThirdPartySyncOn?: Maybe<Scalars['Boolean']['output']>;
|
|
66497
66597
|
issue?: Maybe<JiraIssue>;
|
|
66498
66598
|
issueCommentAri?: Maybe<Scalars['ID']['output']>;
|
|
66499
66599
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
66500
66600
|
richText?: Maybe<JiraRichText>;
|
|
66601
|
+
thirdPartyCommentSource?: Maybe<JiraCommentThirdPartySource>;
|
|
66602
|
+
thirdPartyLink?: Maybe<Scalars['URL']['output']>;
|
|
66501
66603
|
threadParentId?: Maybe<Scalars['ID']['output']>;
|
|
66502
66604
|
updateAuthor?: Maybe<User>;
|
|
66503
66605
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -67535,6 +67637,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
67535
67637
|
moreFavourites?: Maybe<JiraProjectConnection>;
|
|
67536
67638
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
67537
67639
|
mostRecent?: Maybe<JiraProject>;
|
|
67640
|
+
mostRecentFromHistory?: Maybe<JiraProject>;
|
|
67538
67641
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
67539
67642
|
recents?: Maybe<JiraProjectConnection>;
|
|
67540
67643
|
};
|
|
@@ -81956,6 +82059,7 @@ export declare type Mutation = {
|
|
|
81956
82059
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
81957
82060
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
81958
82061
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
82062
|
+
jira_deleteGlobalCustomFields?: Maybe<JiraDeleteGlobalCustomFieldsPayload>;
|
|
81959
82063
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
81960
82064
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
81961
82065
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
@@ -83411,6 +83515,10 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
83411
83515
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
83412
83516
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
83413
83517
|
};
|
|
83518
|
+
export declare type MutationJira_DeleteGlobalCustomFieldsArgs = {
|
|
83519
|
+
cloudId: Scalars['ID']['input'];
|
|
83520
|
+
input: JiraDeleteGlobalCustomFieldsInput;
|
|
83521
|
+
};
|
|
83414
83522
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
83415
83523
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
83416
83524
|
};
|
|
@@ -86916,6 +87024,7 @@ export declare type Query = {
|
|
|
86916
87024
|
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
86917
87025
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
86918
87026
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
87027
|
+
cmdb_getCmdbObjectsByIds?: Maybe<Array<Maybe<CmdbObject>>>;
|
|
86919
87028
|
codeInJira?: Maybe<CodeInJira>;
|
|
86920
87029
|
collabContext_workspaceIsConnectedToWorkspace?: Maybe<CollabContextWorkspaceConnection>;
|
|
86921
87030
|
collabDraft?: Maybe<CollabDraft>;
|
|
@@ -87181,6 +87290,7 @@ export declare type Query = {
|
|
|
87181
87290
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
87182
87291
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
87183
87292
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
87293
|
+
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
87184
87294
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
87185
87295
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
87186
87296
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
@@ -87854,6 +87964,9 @@ export declare type QueryClassificationLevelArgs = {
|
|
|
87854
87964
|
export declare type QueryClassificationLevelsArgs = {
|
|
87855
87965
|
reclassificationFilterScope?: InputMaybe<ReclassificationFilterScope>;
|
|
87856
87966
|
};
|
|
87967
|
+
export declare type QueryCmdb_GetCmdbObjectsByIdsArgs = {
|
|
87968
|
+
ids: Array<Scalars['ID']['input']>;
|
|
87969
|
+
};
|
|
87857
87970
|
export declare type QueryCodeInJiraArgs = {
|
|
87858
87971
|
cloudId: Scalars['ID']['input'];
|
|
87859
87972
|
};
|
|
@@ -89064,6 +89177,15 @@ export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
|
89064
89177
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89065
89178
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
89066
89179
|
};
|
|
89180
|
+
export declare type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
89181
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89182
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
89183
|
+
cloudId: Scalars['ID']['input'];
|
|
89184
|
+
experience: Scalars['String']['input'];
|
|
89185
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89186
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
89187
|
+
workItemInput: ConvoAiJiraSimilarWorkItemsInput;
|
|
89188
|
+
};
|
|
89067
89189
|
export declare type QueryCountGroupByEventNameArgs = {
|
|
89068
89190
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
89069
89191
|
eventName: Array<AnalyticsEventName>;
|
|
@@ -100430,6 +100552,7 @@ export declare enum TrelloListType {
|
|
|
100430
100552
|
}
|
|
100431
100553
|
export declare type TrelloListUpdated = {
|
|
100432
100554
|
__typename?: 'TrelloListUpdated';
|
|
100555
|
+
bulkArchivedCards?: Maybe<Array<Scalars['ID']['output']>>;
|
|
100433
100556
|
cards?: Maybe<TrelloCardUpdatedConnection>;
|
|
100434
100557
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
100435
100558
|
id: Scalars['ID']['output'];
|
|
@@ -100991,6 +101114,7 @@ export declare type TrelloPlannerCalendarUpdated = {
|
|
|
100991
101114
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
100992
101115
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
100993
101116
|
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
101117
|
+
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
100994
101118
|
id: Scalars['ID']['output'];
|
|
100995
101119
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
100996
101120
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -101377,6 +101501,7 @@ export declare type TrelloSubscriptionApi = {
|
|
|
101377
101501
|
__typename?: 'TrelloSubscriptionApi';
|
|
101378
101502
|
onBoardCardSetUpdated?: Maybe<TrelloBoardUpdated>;
|
|
101379
101503
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
101504
|
+
onCardBatchUpdated?: Maybe<TrelloCardBatch>;
|
|
101380
101505
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
101381
101506
|
onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
|
|
101382
101507
|
};
|
|
@@ -101388,6 +101513,9 @@ export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
|
101388
101513
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
101389
101514
|
id: Scalars['ID']['input'];
|
|
101390
101515
|
};
|
|
101516
|
+
export declare type TrelloSubscriptionApiOnCardBatchUpdatedArgs = {
|
|
101517
|
+
id: Scalars['ID']['input'];
|
|
101518
|
+
};
|
|
101391
101519
|
export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
101392
101520
|
id: Scalars['ID']['input'];
|
|
101393
101521
|
};
|