@forge/cli-shared 8.5.0-next.0 → 8.5.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/out/graphql/graphql-types.d.ts +276 -38
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +18 -7
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.5.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2a0dadd: Remove Node18 runtime
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [2a0dadd]
|
|
12
|
+
- @forge/manifest@10.4.0-next.0
|
|
13
|
+
|
|
14
|
+
## 8.5.0-next.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- bda7c8d: Send 'app packaged' analytics event
|
|
19
|
+
|
|
3
20
|
## 8.5.0-next.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
@@ -4016,6 +4016,11 @@ export declare type AssetsDmObjectsListTag = {
|
|
|
4016
4016
|
tagCode: Scalars['Int']['output'];
|
|
4017
4017
|
tagId: Scalars['ID']['output'];
|
|
4018
4018
|
};
|
|
4019
|
+
export declare type AssetsDmObjectsReportDsByDs = {
|
|
4020
|
+
__typename?: 'AssetsDMObjectsReportDsByDs';
|
|
4021
|
+
columns: Array<Scalars['String']['output']>;
|
|
4022
|
+
rows: Array<Scalars['JSON']['output']>;
|
|
4023
|
+
};
|
|
4019
4024
|
export declare type AssetsDmPaginationInfo = {
|
|
4020
4025
|
__typename?: 'AssetsDMPaginationInfo';
|
|
4021
4026
|
currentPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
@@ -13162,6 +13167,7 @@ export declare type ConfluenceCommentCreated = {
|
|
|
13162
13167
|
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
13163
13168
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
13164
13169
|
pageCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
13170
|
+
replies?: Maybe<Array<Scalars['String']['output']>>;
|
|
13165
13171
|
};
|
|
13166
13172
|
export declare type ConfluenceCommentFilter = {
|
|
13167
13173
|
commentState?: InputMaybe<Array<InputMaybe<ConfluenceCommentState>>>;
|
|
@@ -14157,6 +14163,7 @@ export declare type ConfluenceInlineCommentResolved = {
|
|
|
14157
14163
|
inlineResolveProperties?: Maybe<ConfluenceInlineCommentResolveProperties>;
|
|
14158
14164
|
inlineText?: Maybe<Scalars['String']['output']>;
|
|
14159
14165
|
markerRef?: Maybe<Scalars['String']['output']>;
|
|
14166
|
+
replies?: Maybe<Array<Scalars['String']['output']>>;
|
|
14160
14167
|
};
|
|
14161
14168
|
export declare type ConfluenceInlineCommentStep = {
|
|
14162
14169
|
__typename?: 'ConfluenceInlineCommentStep';
|
|
@@ -31553,11 +31560,15 @@ export declare type GraphStore = {
|
|
|
31553
31560
|
mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
31554
31561
|
mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
31555
31562
|
meetingHasMeetingNotesPage?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection>;
|
|
31563
|
+
meetingHasMeetingNotesPageBatch?: Maybe<GraphStoreBatchMeetingHasMeetingNotesPageConnection>;
|
|
31556
31564
|
meetingHasMeetingNotesPageInverse?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseConnection>;
|
|
31565
|
+
meetingHasMeetingNotesPageInverseBatch?: Maybe<GraphStoreBatchMeetingHasMeetingNotesPageConnection>;
|
|
31557
31566
|
meetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection>;
|
|
31558
31567
|
meetingRecordingOwnerHasMeetingNotesFolderInverse?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection>;
|
|
31559
31568
|
meetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
|
|
31569
|
+
meetingRecurrenceHasMeetingRecurrenceNotesPageBatch?: Maybe<GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
|
|
31560
31570
|
meetingRecurrenceHasMeetingRecurrenceNotesPageInverse?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseConnection>;
|
|
31571
|
+
meetingRecurrenceHasMeetingRecurrenceNotesPageInverseBatch?: Maybe<GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
|
|
31561
31572
|
onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
|
|
31562
31573
|
onPremProjectHasIssueInverse?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueInverseConnection>;
|
|
31563
31574
|
operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
|
|
@@ -34100,6 +34111,12 @@ export declare type GraphStoreMeetingHasMeetingNotesPageArgs = {
|
|
|
34100
34111
|
id: Scalars['ID']['input'];
|
|
34101
34112
|
sort?: InputMaybe<GraphStoreMeetingHasMeetingNotesPageSortInput>;
|
|
34102
34113
|
};
|
|
34114
|
+
export declare type GraphStoreMeetingHasMeetingNotesPageBatchArgs = {
|
|
34115
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34116
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34117
|
+
ids: Array<Scalars['ID']['input']>;
|
|
34118
|
+
sort?: InputMaybe<GraphStoreMeetingHasMeetingNotesPageSortInput>;
|
|
34119
|
+
};
|
|
34103
34120
|
export declare type GraphStoreMeetingHasMeetingNotesPageInverseArgs = {
|
|
34104
34121
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34105
34122
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34107,6 +34124,12 @@ export declare type GraphStoreMeetingHasMeetingNotesPageInverseArgs = {
|
|
|
34107
34124
|
id: Scalars['ID']['input'];
|
|
34108
34125
|
sort?: InputMaybe<GraphStoreMeetingHasMeetingNotesPageSortInput>;
|
|
34109
34126
|
};
|
|
34127
|
+
export declare type GraphStoreMeetingHasMeetingNotesPageInverseBatchArgs = {
|
|
34128
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34129
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34130
|
+
ids: Array<Scalars['ID']['input']>;
|
|
34131
|
+
sort?: InputMaybe<GraphStoreMeetingHasMeetingNotesPageSortInput>;
|
|
34132
|
+
};
|
|
34110
34133
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
34111
34134
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34112
34135
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34128,6 +34151,12 @@ export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs
|
|
|
34128
34151
|
id: Scalars['ID']['input'];
|
|
34129
34152
|
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput>;
|
|
34130
34153
|
};
|
|
34154
|
+
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageBatchArgs = {
|
|
34155
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34156
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34157
|
+
ids: Array<Scalars['ID']['input']>;
|
|
34158
|
+
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput>;
|
|
34159
|
+
};
|
|
34131
34160
|
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseArgs = {
|
|
34132
34161
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34133
34162
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34135,6 +34164,12 @@ export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageInve
|
|
|
34135
34164
|
id: Scalars['ID']['input'];
|
|
34136
34165
|
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput>;
|
|
34137
34166
|
};
|
|
34167
|
+
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseBatchArgs = {
|
|
34168
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34169
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34170
|
+
ids: Array<Scalars['ID']['input']>;
|
|
34171
|
+
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput>;
|
|
34172
|
+
};
|
|
34138
34173
|
export declare type GraphStoreOnPremProjectHasIssueArgs = {
|
|
34139
34174
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34140
34175
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38239,6 +38274,88 @@ export declare type GraphStoreBatchMediaAttachedToContentStartNode = {
|
|
|
38239
38274
|
__typename?: 'GraphStoreBatchMediaAttachedToContentStartNode';
|
|
38240
38275
|
id: Scalars['ID']['output'];
|
|
38241
38276
|
};
|
|
38277
|
+
export declare type GraphStoreBatchMeetingHasMeetingNotesPageConnection = HasPageInfo & {
|
|
38278
|
+
__typename?: 'GraphStoreBatchMeetingHasMeetingNotesPageConnection';
|
|
38279
|
+
edges: Array<Maybe<GraphStoreBatchMeetingHasMeetingNotesPageEdge>>;
|
|
38280
|
+
nodes: Array<Maybe<GraphStoreBatchMeetingHasMeetingNotesPageNode>>;
|
|
38281
|
+
pageInfo: PageInfo;
|
|
38282
|
+
};
|
|
38283
|
+
export declare type GraphStoreBatchMeetingHasMeetingNotesPageEdge = {
|
|
38284
|
+
__typename?: 'GraphStoreBatchMeetingHasMeetingNotesPageEdge';
|
|
38285
|
+
node: GraphStoreBatchMeetingHasMeetingNotesPageInnerConnection;
|
|
38286
|
+
};
|
|
38287
|
+
export declare type GraphStoreBatchMeetingHasMeetingNotesPageEndNode = {
|
|
38288
|
+
__typename?: 'GraphStoreBatchMeetingHasMeetingNotesPageEndNode';
|
|
38289
|
+
data?: Maybe<GraphStoreBatchMeetingHasMeetingNotesPageEndUnion>;
|
|
38290
|
+
id: Scalars['ID']['output'];
|
|
38291
|
+
};
|
|
38292
|
+
export declare type GraphStoreBatchMeetingHasMeetingNotesPageEndUnion = ConfluencePage;
|
|
38293
|
+
export declare type GraphStoreBatchMeetingHasMeetingNotesPageInnerConnection = {
|
|
38294
|
+
__typename?: 'GraphStoreBatchMeetingHasMeetingNotesPageInnerConnection';
|
|
38295
|
+
edges: Array<Maybe<GraphStoreBatchMeetingHasMeetingNotesPageInnerEdge>>;
|
|
38296
|
+
nodes: Array<Maybe<GraphStoreBatchMeetingHasMeetingNotesPageNode>>;
|
|
38297
|
+
requestedId: Scalars['ID']['output'];
|
|
38298
|
+
};
|
|
38299
|
+
export declare type GraphStoreBatchMeetingHasMeetingNotesPageInnerEdge = {
|
|
38300
|
+
__typename?: 'GraphStoreBatchMeetingHasMeetingNotesPageInnerEdge';
|
|
38301
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38302
|
+
node: GraphStoreBatchMeetingHasMeetingNotesPageNode;
|
|
38303
|
+
};
|
|
38304
|
+
export declare type GraphStoreBatchMeetingHasMeetingNotesPageNode = Node & {
|
|
38305
|
+
__typename?: 'GraphStoreBatchMeetingHasMeetingNotesPageNode';
|
|
38306
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38307
|
+
from: GraphStoreBatchMeetingHasMeetingNotesPageStartNode;
|
|
38308
|
+
id: Scalars['ID']['output'];
|
|
38309
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38310
|
+
to: GraphStoreBatchMeetingHasMeetingNotesPageEndNode;
|
|
38311
|
+
};
|
|
38312
|
+
export declare type GraphStoreBatchMeetingHasMeetingNotesPageStartNode = {
|
|
38313
|
+
__typename?: 'GraphStoreBatchMeetingHasMeetingNotesPageStartNode';
|
|
38314
|
+
data?: Maybe<GraphStoreBatchMeetingHasMeetingNotesPageStartUnion>;
|
|
38315
|
+
id: Scalars['ID']['output'];
|
|
38316
|
+
};
|
|
38317
|
+
export declare type GraphStoreBatchMeetingHasMeetingNotesPageStartUnion = LoomMeeting;
|
|
38318
|
+
export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection = HasPageInfo & {
|
|
38319
|
+
__typename?: 'GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection';
|
|
38320
|
+
edges: Array<Maybe<GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge>>;
|
|
38321
|
+
nodes: Array<Maybe<GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageNode>>;
|
|
38322
|
+
pageInfo: PageInfo;
|
|
38323
|
+
};
|
|
38324
|
+
export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge = {
|
|
38325
|
+
__typename?: 'GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageEdge';
|
|
38326
|
+
node: GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageInnerConnection;
|
|
38327
|
+
};
|
|
38328
|
+
export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageEndNode = {
|
|
38329
|
+
__typename?: 'GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageEndNode';
|
|
38330
|
+
data?: Maybe<GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageEndUnion>;
|
|
38331
|
+
id: Scalars['ID']['output'];
|
|
38332
|
+
};
|
|
38333
|
+
export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageEndUnion = ConfluencePage;
|
|
38334
|
+
export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageInnerConnection = {
|
|
38335
|
+
__typename?: 'GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageInnerConnection';
|
|
38336
|
+
edges: Array<Maybe<GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageInnerEdge>>;
|
|
38337
|
+
nodes: Array<Maybe<GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageNode>>;
|
|
38338
|
+
requestedId: Scalars['ID']['output'];
|
|
38339
|
+
};
|
|
38340
|
+
export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageInnerEdge = {
|
|
38341
|
+
__typename?: 'GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageInnerEdge';
|
|
38342
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38343
|
+
node: GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageNode;
|
|
38344
|
+
};
|
|
38345
|
+
export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageNode = Node & {
|
|
38346
|
+
__typename?: 'GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageNode';
|
|
38347
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38348
|
+
from: GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageStartNode;
|
|
38349
|
+
id: Scalars['ID']['output'];
|
|
38350
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38351
|
+
to: GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageEndNode;
|
|
38352
|
+
};
|
|
38353
|
+
export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageStartNode = {
|
|
38354
|
+
__typename?: 'GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageStartNode';
|
|
38355
|
+
data?: Maybe<GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageStartUnion>;
|
|
38356
|
+
id: Scalars['ID']['output'];
|
|
38357
|
+
};
|
|
38358
|
+
export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageStartUnion = LoomMeetingRecurrence;
|
|
38242
38359
|
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
38243
38360
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection';
|
|
38244
38361
|
edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge>>;
|
|
@@ -39036,33 +39153,17 @@ export declare type GraphStoreCypherQueryBooleanObject = {
|
|
|
39036
39153
|
};
|
|
39037
39154
|
export declare type GraphStoreCypherQueryConnection = {
|
|
39038
39155
|
__typename?: 'GraphStoreCypherQueryConnection';
|
|
39039
|
-
edges: Array<GraphStoreCypherQueryEdge>;
|
|
39040
39156
|
pageInfo: PageInfo;
|
|
39041
39157
|
queryResult?: Maybe<GraphStoreCypherQueryResult>;
|
|
39042
39158
|
};
|
|
39043
|
-
export declare type GraphStoreCypherQueryEdge = {
|
|
39044
|
-
__typename?: 'GraphStoreCypherQueryEdge';
|
|
39045
|
-
node: GraphStoreCypherQueryNode;
|
|
39046
|
-
};
|
|
39047
39159
|
export declare type GraphStoreCypherQueryFloatObject = {
|
|
39048
39160
|
__typename?: 'GraphStoreCypherQueryFloatObject';
|
|
39049
39161
|
value: Scalars['Float']['output'];
|
|
39050
39162
|
};
|
|
39051
|
-
export declare type GraphStoreCypherQueryFromNode = {
|
|
39052
|
-
__typename?: 'GraphStoreCypherQueryFromNode';
|
|
39053
|
-
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
39054
|
-
id: Scalars['ID']['output'];
|
|
39055
|
-
};
|
|
39056
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39057
39163
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
39058
39164
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
39059
39165
|
value: Scalars['Int']['output'];
|
|
39060
39166
|
};
|
|
39061
|
-
export declare type GraphStoreCypherQueryNode = {
|
|
39062
|
-
__typename?: 'GraphStoreCypherQueryNode';
|
|
39063
|
-
from: GraphStoreCypherQueryFromNode;
|
|
39064
|
-
to: GraphStoreCypherQueryToNode;
|
|
39065
|
-
};
|
|
39066
39167
|
export declare type GraphStoreCypherQueryResult = {
|
|
39067
39168
|
__typename?: 'GraphStoreCypherQueryResult';
|
|
39068
39169
|
columns: Array<Scalars['String']['output']>;
|
|
@@ -39093,12 +39194,6 @@ export declare type GraphStoreCypherQueryStringObject = {
|
|
|
39093
39194
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
39094
39195
|
value: Scalars['String']['output'];
|
|
39095
39196
|
};
|
|
39096
|
-
export declare type GraphStoreCypherQueryToNode = {
|
|
39097
|
-
__typename?: 'GraphStoreCypherQueryToNode';
|
|
39098
|
-
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
39099
|
-
id: Scalars['ID']['output'];
|
|
39100
|
-
};
|
|
39101
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39102
39197
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
39103
39198
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
39104
39199
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
@@ -59603,6 +59698,7 @@ export declare type JiraClassificationLevelFilterInput = {
|
|
|
59603
59698
|
};
|
|
59604
59699
|
export declare enum JiraClassificationLevelSource {
|
|
59605
59700
|
Issue = "ISSUE",
|
|
59701
|
+
Organization = "ORGANIZATION",
|
|
59606
59702
|
Project = "PROJECT"
|
|
59607
59703
|
}
|
|
59608
59704
|
export declare enum JiraClassificationLevelStatus {
|
|
@@ -80185,6 +80281,13 @@ export declare enum MarketplaceConsoleEditionsActivationStatus {
|
|
|
80185
80281
|
Rejected = "REJECTED",
|
|
80186
80282
|
Uninitiated = "UNINITIATED"
|
|
80187
80283
|
}
|
|
80284
|
+
export declare type MarketplaceConsoleEditionsFilterInput = {
|
|
80285
|
+
editionsGroup?: InputMaybe<MarketplaceConsoleEditionsGroup>;
|
|
80286
|
+
};
|
|
80287
|
+
export declare enum MarketplaceConsoleEditionsGroup {
|
|
80288
|
+
Default = "DEFAULT",
|
|
80289
|
+
FedrampModerate = "FEDRAMP_MODERATE"
|
|
80290
|
+
}
|
|
80188
80291
|
export declare type MarketplaceConsoleEditionsInput = {
|
|
80189
80292
|
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
80190
80293
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -80807,6 +80910,7 @@ export declare type MarketplaceConsoleQueryApiDeveloperSpaceByAppIdArgs = {
|
|
|
80807
80910
|
appId: Scalars['ID']['input'];
|
|
80808
80911
|
};
|
|
80809
80912
|
export declare type MarketplaceConsoleQueryApiEditionsArgs = {
|
|
80913
|
+
editionsFilterInput?: InputMaybe<MarketplaceConsoleEditionsFilterInput>;
|
|
80810
80914
|
product: MarketplaceConsoleEditionsInput;
|
|
80811
80915
|
};
|
|
80812
80916
|
export declare type MarketplaceConsoleQueryApiEditionsActivationStatusArgs = {
|
|
@@ -82299,6 +82403,35 @@ export declare type MercuryChangeProposalUpdate = {
|
|
|
82299
82403
|
id: Scalars['ID']['output'];
|
|
82300
82404
|
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
82301
82405
|
};
|
|
82406
|
+
export declare type MercuryChangeProposalsView = MercuryView & {
|
|
82407
|
+
__typename?: 'MercuryChangeProposalsView';
|
|
82408
|
+
createdBy: Scalars['ID']['output'];
|
|
82409
|
+
createdDate: Scalars['String']['output'];
|
|
82410
|
+
id: Scalars['ID']['output'];
|
|
82411
|
+
name: Scalars['String']['output'];
|
|
82412
|
+
priorities?: Maybe<MercuryChangeProposalConnection>;
|
|
82413
|
+
settings?: Maybe<Array<Maybe<MercuryViewSetting>>>;
|
|
82414
|
+
updatedDate: Scalars['String']['output'];
|
|
82415
|
+
};
|
|
82416
|
+
export declare type MercuryChangeProposalsViewConnection = {
|
|
82417
|
+
__typename?: 'MercuryChangeProposalsViewConnection';
|
|
82418
|
+
edges?: Maybe<Array<Maybe<MercuryChangeProposalsViewEdge>>>;
|
|
82419
|
+
pageInfo: PageInfo;
|
|
82420
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
82421
|
+
};
|
|
82422
|
+
export declare type MercuryChangeProposalsViewEdge = {
|
|
82423
|
+
__typename?: 'MercuryChangeProposalsViewEdge';
|
|
82424
|
+
cursor: Scalars['String']['output'];
|
|
82425
|
+
node?: Maybe<MercuryChangeProposalsView>;
|
|
82426
|
+
};
|
|
82427
|
+
export declare type MercuryChangeProposalsViewSort = {
|
|
82428
|
+
field: MercuryChangeProposalsViewSortField;
|
|
82429
|
+
order: SortOrder;
|
|
82430
|
+
};
|
|
82431
|
+
export declare enum MercuryChangeProposalsViewSortField {
|
|
82432
|
+
Name = "NAME",
|
|
82433
|
+
UpdatedDate = "UPDATED_DATE"
|
|
82434
|
+
}
|
|
82302
82435
|
export declare type MercuryChangeSort = {
|
|
82303
82436
|
field: MercuryChangeSortField;
|
|
82304
82437
|
order: SortOrder;
|
|
@@ -82386,6 +82519,17 @@ export declare type MercuryCreateChangeProposalPayload = Payload & {
|
|
|
82386
82519
|
errors?: Maybe<Array<MutationError>>;
|
|
82387
82520
|
success: Scalars['Boolean']['output'];
|
|
82388
82521
|
};
|
|
82522
|
+
export declare type MercuryCreateChangeProposalsViewInput = {
|
|
82523
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
82524
|
+
name: Scalars['String']['input'];
|
|
82525
|
+
settings?: InputMaybe<Array<InputMaybe<MercuryViewSettingInput>>>;
|
|
82526
|
+
};
|
|
82527
|
+
export declare type MercuryCreateChangeProposalsViewSettingPayload = Payload & {
|
|
82528
|
+
__typename?: 'MercuryCreateChangeProposalsViewSettingPayload';
|
|
82529
|
+
changeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
82530
|
+
errors?: Maybe<Array<MutationError>>;
|
|
82531
|
+
success: Scalars['Boolean']['output'];
|
|
82532
|
+
};
|
|
82389
82533
|
export declare type MercuryCreateCommentInput = {
|
|
82390
82534
|
cloudId: Scalars['ID']['input'];
|
|
82391
82535
|
commentText: Scalars['MercuryJSONString']['input'];
|
|
@@ -82514,6 +82658,14 @@ export declare type MercuryDeleteChangeProposalPayload = Payload & {
|
|
|
82514
82658
|
errors?: Maybe<Array<MutationError>>;
|
|
82515
82659
|
success: Scalars['Boolean']['output'];
|
|
82516
82660
|
};
|
|
82661
|
+
export declare type MercuryDeleteChangeProposalsViewInput = {
|
|
82662
|
+
id: Scalars['ID']['input'];
|
|
82663
|
+
};
|
|
82664
|
+
export declare type MercuryDeleteChangeProposalsViewPayload = Payload & {
|
|
82665
|
+
__typename?: 'MercuryDeleteChangeProposalsViewPayload';
|
|
82666
|
+
errors?: Maybe<Array<MutationError>>;
|
|
82667
|
+
success: Scalars['Boolean']['output'];
|
|
82668
|
+
};
|
|
82517
82669
|
export declare type MercuryDeleteChangesInput = {
|
|
82518
82670
|
changeIds: Array<Scalars['ID']['input']>;
|
|
82519
82671
|
};
|
|
@@ -84056,11 +84208,13 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
84056
84208
|
addTagsToChangeProposal?: Maybe<MercuryAddTagsToProposalPayload>;
|
|
84057
84209
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
84058
84210
|
createChangeProposalComment?: Maybe<MercuryCreateChangeProposalCommentPayload>;
|
|
84211
|
+
createChangeProposalsView?: Maybe<MercuryCreateChangeProposalsViewSettingPayload>;
|
|
84059
84212
|
createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
|
|
84060
84213
|
createStrategicEventComment?: Maybe<MercuryCreateStrategicEventCommentPayload>;
|
|
84061
84214
|
deleteChangeProposal?: Maybe<MercuryDeleteChangeProposalPayload>;
|
|
84062
84215
|
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
84063
84216
|
deleteChangeProposalGoalLinks?: Maybe<MercuryDeleteChangeProposalGoalLinksPayload>;
|
|
84217
|
+
deleteChangeProposalsViewSetting?: Maybe<MercuryDeleteChangeProposalsViewPayload>;
|
|
84064
84218
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
84065
84219
|
deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
|
|
84066
84220
|
linkGoalsToChangeProposal?: Maybe<MercuryLinkGoalsToChangeProposalPayload>;
|
|
@@ -84075,6 +84229,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
84075
84229
|
updateChangeProposalImpact?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
84076
84230
|
updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
84077
84231
|
updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
84232
|
+
updateChangeProposalsView?: Maybe<MercuryUpdateChangeProposalsViewPayload>;
|
|
84078
84233
|
updateMoveFundsChange: MercuryUpdateChangePayload;
|
|
84079
84234
|
updateMovePositionsChange: MercuryUpdateChangePayload;
|
|
84080
84235
|
updateRequestFundsChange: MercuryUpdateChangePayload;
|
|
@@ -84095,6 +84250,9 @@ export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs =
|
|
|
84095
84250
|
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalCommentArgs = {
|
|
84096
84251
|
input: MercuryCreateChangeProposalCommentInput;
|
|
84097
84252
|
};
|
|
84253
|
+
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalsViewArgs = {
|
|
84254
|
+
input: MercuryCreateChangeProposalsViewInput;
|
|
84255
|
+
};
|
|
84098
84256
|
export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs = {
|
|
84099
84257
|
input: MercuryCreateStrategicEventInput;
|
|
84100
84258
|
};
|
|
@@ -84110,6 +84268,9 @@ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalComment
|
|
|
84110
84268
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalGoalLinksArgs = {
|
|
84111
84269
|
input: MercuryDeleteChangeProposalGoalLinksInput;
|
|
84112
84270
|
};
|
|
84271
|
+
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalsViewSettingArgs = {
|
|
84272
|
+
input: MercuryDeleteChangeProposalsViewInput;
|
|
84273
|
+
};
|
|
84113
84274
|
export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
|
|
84114
84275
|
input?: InputMaybe<MercuryDeleteChangesInput>;
|
|
84115
84276
|
};
|
|
@@ -84152,6 +84313,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalNameArg
|
|
|
84152
84313
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerArgs = {
|
|
84153
84314
|
input: MercuryUpdateChangeProposalOwnerInput;
|
|
84154
84315
|
};
|
|
84316
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalsViewArgs = {
|
|
84317
|
+
input: MercuryUpdateChangeProposalsViewInput;
|
|
84318
|
+
};
|
|
84155
84319
|
export declare type MercuryStrategicEventsMutationApiUpdateMoveFundsChangeArgs = {
|
|
84156
84320
|
input: MercuryUpdateMoveFundsChangeInput;
|
|
84157
84321
|
};
|
|
@@ -84190,6 +84354,8 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
84190
84354
|
changeProposalSummaryForStrategicEvent?: Maybe<MercuryChangeProposalSummaryForStrategicEvent>;
|
|
84191
84355
|
changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
|
|
84192
84356
|
changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
|
|
84357
|
+
changeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
84358
|
+
changeProposalsViewSearch?: Maybe<MercuryChangeProposalsViewConnection>;
|
|
84193
84359
|
changeSummariesReport?: Maybe<MercuryChangeSummaries>;
|
|
84194
84360
|
changeSummaryByFocusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaChangeSummary>>>;
|
|
84195
84361
|
changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
@@ -84228,6 +84394,15 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
|
|
|
84228
84394
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
84229
84395
|
sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalSort>>>;
|
|
84230
84396
|
};
|
|
84397
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalsViewArgs = {
|
|
84398
|
+
id: Scalars['ID']['input'];
|
|
84399
|
+
};
|
|
84400
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalsViewSearchArgs = {
|
|
84401
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84402
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
84403
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84404
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalsViewSort>>>;
|
|
84405
|
+
};
|
|
84231
84406
|
export declare type MercuryStrategicEventsQueryApiChangeSummariesReportArgs = {
|
|
84232
84407
|
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
84233
84408
|
};
|
|
@@ -84454,6 +84629,17 @@ export declare type MercuryUpdateChangeProposalPayload = Payload & {
|
|
|
84454
84629
|
success: Scalars['Boolean']['output'];
|
|
84455
84630
|
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
84456
84631
|
};
|
|
84632
|
+
export declare type MercuryUpdateChangeProposalsViewInput = {
|
|
84633
|
+
id: Scalars['ID']['input'];
|
|
84634
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
84635
|
+
settings?: InputMaybe<Array<InputMaybe<MercuryViewSettingInput>>>;
|
|
84636
|
+
};
|
|
84637
|
+
export declare type MercuryUpdateChangeProposalsViewPayload = Payload & {
|
|
84638
|
+
__typename?: 'MercuryUpdateChangeProposalsViewPayload';
|
|
84639
|
+
changeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
84640
|
+
errors?: Maybe<Array<MutationError>>;
|
|
84641
|
+
success: Scalars['Boolean']['output'];
|
|
84642
|
+
};
|
|
84457
84643
|
export declare type MercuryUpdateChangeQuantityInput = {
|
|
84458
84644
|
quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
84459
84645
|
};
|
|
@@ -84617,6 +84803,19 @@ export declare type MercuryValidateFocusAreasForRankingPayload = Payload & {
|
|
|
84617
84803
|
success: Scalars['Boolean']['output'];
|
|
84618
84804
|
validation?: Maybe<MercuryFocusAreaRankingValidation>;
|
|
84619
84805
|
};
|
|
84806
|
+
export declare type MercuryView = {
|
|
84807
|
+
name: Scalars['String']['output'];
|
|
84808
|
+
settings?: Maybe<Array<Maybe<MercuryViewSetting>>>;
|
|
84809
|
+
};
|
|
84810
|
+
export declare type MercuryViewSetting = {
|
|
84811
|
+
__typename?: 'MercuryViewSetting';
|
|
84812
|
+
key: Scalars['String']['output'];
|
|
84813
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
84814
|
+
};
|
|
84815
|
+
export declare type MercuryViewSettingInput = {
|
|
84816
|
+
key: Scalars['String']['input'];
|
|
84817
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
84818
|
+
};
|
|
84620
84819
|
export declare enum MercuryViewType {
|
|
84621
84820
|
HierarchyView = "HIERARCHY_VIEW",
|
|
84622
84821
|
RankingView = "RANKING_VIEW"
|
|
@@ -89691,6 +89890,7 @@ export declare type PolarisView = {
|
|
|
89691
89890
|
fieldRollups?: Maybe<Array<PolarisViewFieldRollup>>;
|
|
89692
89891
|
fields: Array<PolarisIdeaField>;
|
|
89693
89892
|
filter?: Maybe<Array<PolarisViewFilter>>;
|
|
89893
|
+
filterGroups?: Maybe<Array<PolarisViewFilterGroup>>;
|
|
89694
89894
|
groupBy?: Maybe<PolarisIdeaField>;
|
|
89695
89895
|
groupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
89696
89896
|
hidden?: Maybe<Array<PolarisIdeaField>>;
|
|
@@ -89751,6 +89951,17 @@ export declare type PolarisViewFilter = {
|
|
|
89751
89951
|
kind: PolarisViewFilterKind;
|
|
89752
89952
|
values: Array<PolarisViewFilterValue>;
|
|
89753
89953
|
};
|
|
89954
|
+
export declare type PolarisViewFilterGroup = {
|
|
89955
|
+
__typename?: 'PolarisViewFilterGroup';
|
|
89956
|
+
filterEnums?: Maybe<Array<PolarisFilterEnumType>>;
|
|
89957
|
+
filters: Array<PolarisViewFilter>;
|
|
89958
|
+
groupFilter: PolarisViewFilter;
|
|
89959
|
+
};
|
|
89960
|
+
export declare type PolarisViewFilterGroupInput = {
|
|
89961
|
+
filterEnums?: InputMaybe<Array<PolarisFilterEnumType>>;
|
|
89962
|
+
filters: Array<PolarisViewFilterInput>;
|
|
89963
|
+
groupFilter: PolarisViewFilterInput;
|
|
89964
|
+
};
|
|
89754
89965
|
export declare type PolarisViewFilterInput = {
|
|
89755
89966
|
field?: InputMaybe<Scalars['ID']['input']>;
|
|
89756
89967
|
kind: PolarisViewFilterKind;
|
|
@@ -90291,6 +90502,7 @@ export declare type Query = {
|
|
|
90291
90502
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
90292
90503
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
90293
90504
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
90505
|
+
assetsDM_objectsReportDsByDs?: Maybe<AssetsDmObjectsReportDsByDs>;
|
|
90294
90506
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
90295
90507
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
90296
90508
|
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
@@ -91209,6 +91421,12 @@ export declare type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
|
91209
91421
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
91210
91422
|
workspaceId: Scalars['ID']['input'];
|
|
91211
91423
|
};
|
|
91424
|
+
export declare type QueryAssetsDm_ObjectsReportDsByDsArgs = {
|
|
91425
|
+
cloudId: Scalars['ID']['input'];
|
|
91426
|
+
fromSources: Array<Scalars['String']['input']>;
|
|
91427
|
+
objectId: Scalars['ID']['input'];
|
|
91428
|
+
workspaceId: Scalars['ID']['input'];
|
|
91429
|
+
};
|
|
91212
91430
|
export declare type QueryAssetsDm_RawDataArgs = {
|
|
91213
91431
|
cloudId: Scalars['ID']['input'];
|
|
91214
91432
|
dataSourceId: Scalars['ID']['input'];
|
|
@@ -105196,6 +105414,25 @@ export declare type TrelloImagePreviewUpdatedConnection = {
|
|
|
105196
105414
|
export declare type TrelloInbox = {
|
|
105197
105415
|
__typename?: 'TrelloInbox';
|
|
105198
105416
|
board: TrelloBoard;
|
|
105417
|
+
enterprise?: Maybe<TrelloEnterprise>;
|
|
105418
|
+
enterpriseOwned: Scalars['Boolean']['output'];
|
|
105419
|
+
id: Scalars['ID']['output'];
|
|
105420
|
+
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
105421
|
+
limits?: Maybe<TrelloBoardLimits>;
|
|
105422
|
+
lists?: Maybe<TrelloListConnection>;
|
|
105423
|
+
objectId: Scalars['ID']['output'];
|
|
105424
|
+
prefs: TrelloInboxPrefs;
|
|
105425
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
105426
|
+
};
|
|
105427
|
+
export declare type TrelloInboxListsArgs = {
|
|
105428
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
105429
|
+
filter?: InputMaybe<TrelloListFilterInput>;
|
|
105430
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105431
|
+
};
|
|
105432
|
+
export declare type TrelloInboxPrefs = {
|
|
105433
|
+
__typename?: 'TrelloInboxPrefs';
|
|
105434
|
+
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
105435
|
+
background?: Maybe<TrelloBoardBackground>;
|
|
105199
105436
|
};
|
|
105200
105437
|
export declare type TrelloInboxUpdated = {
|
|
105201
105438
|
__typename?: 'TrelloInboxUpdated';
|
|
@@ -105330,6 +105567,7 @@ export declare type TrelloListUpdated = {
|
|
|
105330
105567
|
bulkArchivedCards?: Maybe<Array<Scalars['ID']['output']>>;
|
|
105331
105568
|
cards?: Maybe<TrelloCardUpdatedConnection>;
|
|
105332
105569
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
105570
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
105333
105571
|
id: Scalars['ID']['output'];
|
|
105334
105572
|
name?: Maybe<Scalars['String']['output']>;
|
|
105335
105573
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -105563,6 +105801,7 @@ export declare type TrelloMutationApi = {
|
|
|
105563
105801
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
105564
105802
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
105565
105803
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
105804
|
+
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
105566
105805
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
105567
105806
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
105568
105807
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
@@ -105573,7 +105812,6 @@ export declare type TrelloMutationApi = {
|
|
|
105573
105812
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
105574
105813
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
105575
105814
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
105576
|
-
updateOAuth2AppCallbackUrls?: Maybe<TrelloUpdateOAuth2AppCallbackUrlsPayload>;
|
|
105577
105815
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
105578
105816
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
105579
105817
|
};
|
|
@@ -105640,6 +105878,9 @@ export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
|
105640
105878
|
export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
105641
105879
|
input: TrelloWatchCardInput;
|
|
105642
105880
|
};
|
|
105881
|
+
export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
105882
|
+
input: TrelloUpdateAiRuleInput;
|
|
105883
|
+
};
|
|
105643
105884
|
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
105644
105885
|
input: TrelloUpdateBoardIsTemplateInput;
|
|
105645
105886
|
};
|
|
@@ -105670,9 +105911,6 @@ export declare type TrelloMutationApiUpdateCardPositionOnPlannerCalendarEventArg
|
|
|
105670
105911
|
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
105671
105912
|
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
105672
105913
|
};
|
|
105673
|
-
export declare type TrelloMutationApiUpdateOAuth2AppCallbackUrlsArgs = {
|
|
105674
|
-
input: TrelloUpdateOAuth2AppCallbackUrlsInput;
|
|
105675
|
-
};
|
|
105676
105914
|
export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
105677
105915
|
input: TrelloUpdateOAuth2ClientInput;
|
|
105678
105916
|
};
|
|
@@ -106300,7 +106538,7 @@ export declare type TrelloReactionLimits = {
|
|
|
106300
106538
|
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
106301
106539
|
};
|
|
106302
106540
|
export declare type TrelloRemoveBoardStarInput = {
|
|
106303
|
-
|
|
106541
|
+
boardStarId: Scalars['ID']['input'];
|
|
106304
106542
|
userId: Scalars['ID']['input'];
|
|
106305
106543
|
};
|
|
106306
106544
|
export declare type TrelloRemoveBoardStarPayload = Payload & {
|
|
@@ -106512,6 +106750,16 @@ export declare type TrelloUnarchiveCardPayload = Payload & {
|
|
|
106512
106750
|
errors?: Maybe<Array<MutationError>>;
|
|
106513
106751
|
success: Scalars['Boolean']['output'];
|
|
106514
106752
|
};
|
|
106753
|
+
export declare type TrelloUpdateAiRuleInput = {
|
|
106754
|
+
aiRuleId: Scalars['ID']['input'];
|
|
106755
|
+
rule: Scalars['String']['input'];
|
|
106756
|
+
};
|
|
106757
|
+
export declare type TrelloUpdateAiRulePayload = Payload & {
|
|
106758
|
+
__typename?: 'TrelloUpdateAiRulePayload';
|
|
106759
|
+
aiRule?: Maybe<TrelloAiRule>;
|
|
106760
|
+
errors?: Maybe<Array<MutationError>>;
|
|
106761
|
+
success: Scalars['Boolean']['output'];
|
|
106762
|
+
};
|
|
106515
106763
|
export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
106516
106764
|
boardId: Scalars['ID']['input'];
|
|
106517
106765
|
value: Scalars['Boolean']['input'];
|
|
@@ -106713,17 +106961,6 @@ export declare type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
|
|
|
106713
106961
|
errors?: Maybe<Array<MutationError>>;
|
|
106714
106962
|
success: Scalars['Boolean']['output'];
|
|
106715
106963
|
};
|
|
106716
|
-
export declare type TrelloUpdateOAuth2AppCallbackUrlsInput = {
|
|
106717
|
-
callbackUrls: Array<Scalars['URL']['input']>;
|
|
106718
|
-
id: Scalars['ID']['input'];
|
|
106719
|
-
};
|
|
106720
|
-
export declare type TrelloUpdateOAuth2AppCallbackUrlsPayload = Payload & {
|
|
106721
|
-
__typename?: 'TrelloUpdateOAuth2AppCallbackUrlsPayload';
|
|
106722
|
-
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
106723
|
-
errors?: Maybe<Array<MutationError>>;
|
|
106724
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
106725
|
-
success: Scalars['Boolean']['output'];
|
|
106726
|
-
};
|
|
106727
106964
|
export declare type TrelloUpdateOAuth2ClientInput = {
|
|
106728
106965
|
appContactLink?: InputMaybe<Scalars['String']['input']>;
|
|
106729
106966
|
appDescription?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -108800,6 +109037,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
108800
109037
|
fieldRollups?: InputMaybe<Array<PolarisViewFieldRollupInput>>;
|
|
108801
109038
|
fields?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
108802
109039
|
filter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
109040
|
+
filterGroups?: InputMaybe<Array<PolarisViewFilterGroupInput>>;
|
|
108803
109041
|
groupBy?: InputMaybe<Scalars['ID']['input']>;
|
|
108804
109042
|
groupValues?: InputMaybe<Array<PolarisGroupValueInput>>;
|
|
108805
109043
|
hidden?: InputMaybe<Array<Scalars['ID']['input']>>;
|