@forge/cli-shared 6.3.0-next.12 → 6.3.0-next.14
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 +18 -0
- package/out/graphql/graphql-types.d.ts +247 -20
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +24 -18
- package/out/service/statsig-service.d.ts +2 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.3.0-next.14
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0e30430: Evergreen runtime using loader script
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [cd7008b]
|
|
12
|
+
- @forge/manifest@8.0.0-next.11
|
|
13
|
+
|
|
14
|
+
## 6.3.0-next.13
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [ffa1464]
|
|
19
|
+
- @forge/util@1.4.5-next.0
|
|
20
|
+
|
|
3
21
|
## 6.3.0-next.12
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -14912,7 +14912,7 @@ export declare type ContentPlatformIpmInlineDialog = {
|
|
|
14912
14912
|
primaryButton: ContentPlatformIpmComponentLinkButtonAndIpmComponentGsacButtonUnion;
|
|
14913
14913
|
secondaryButton?: Maybe<ContentPlatformIpmComponentRemindMeLater>;
|
|
14914
14914
|
title: Scalars['String']['output'];
|
|
14915
|
-
trigger:
|
|
14915
|
+
trigger: ContentPlatformIpmTrigger;
|
|
14916
14916
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14917
14917
|
};
|
|
14918
14918
|
export declare type ContentPlatformIpmInlineDialogResultEdge = {
|
|
@@ -17694,6 +17694,7 @@ export declare type DevAiCancelRunningAutofixScanInput = {
|
|
|
17694
17694
|
export declare type DevAiGenericAutodevLog = DevAiAutodevLog & {
|
|
17695
17695
|
__typename?: 'DevAiGenericAutodevLog';
|
|
17696
17696
|
attributes?: Maybe<Scalars['JSON']['output']>;
|
|
17697
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
17697
17698
|
id: Scalars['ID']['output'];
|
|
17698
17699
|
kind?: Maybe<Scalars['String']['output']>;
|
|
17699
17700
|
phase?: Maybe<DevAiAutodevLogPhase>;
|
|
@@ -17744,6 +17745,7 @@ export declare type DevAiPhaseStartedAutodevLog = DevAiAutodevLog & {
|
|
|
17744
17745
|
};
|
|
17745
17746
|
export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
|
|
17746
17747
|
__typename?: 'DevAiPlaintextAutodevLog';
|
|
17748
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
17747
17749
|
id: Scalars['ID']['output'];
|
|
17748
17750
|
message?: Maybe<Scalars['String']['output']>;
|
|
17749
17751
|
phase?: Maybe<DevAiAutodevLogPhase>;
|
|
@@ -25520,7 +25522,10 @@ export declare type GraphStore = {
|
|
|
25520
25522
|
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
25521
25523
|
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
25522
25524
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
25525
|
+
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
25526
|
+
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
25523
25527
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
25528
|
+
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
25524
25529
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
25525
25530
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
25526
25531
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -27740,6 +27745,20 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
|
|
|
27740
27745
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27741
27746
|
id: Scalars['ID']['input'];
|
|
27742
27747
|
};
|
|
27748
|
+
export declare type GraphStoreUserAuthoredPrArgs = {
|
|
27749
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
27750
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27751
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27752
|
+
id: Scalars['ID']['input'];
|
|
27753
|
+
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
27754
|
+
};
|
|
27755
|
+
export declare type GraphStoreUserHasTopProjectArgs = {
|
|
27756
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
27757
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27758
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27759
|
+
id: Scalars['ID']['input'];
|
|
27760
|
+
sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
|
|
27761
|
+
};
|
|
27743
27762
|
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
27744
27763
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27745
27764
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -27747,6 +27766,13 @@ export declare type GraphStoreUserOwnsComponentArgs = {
|
|
|
27747
27766
|
id: Scalars['ID']['input'];
|
|
27748
27767
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
27749
27768
|
};
|
|
27769
|
+
export declare type GraphStoreUserReviewsPrArgs = {
|
|
27770
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
27771
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27772
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27773
|
+
id: Scalars['ID']['input'];
|
|
27774
|
+
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
27775
|
+
};
|
|
27750
27776
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
27751
27777
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27752
27778
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28229,7 +28255,7 @@ export declare type GraphStoreBatchFocusAreaHasProjectEndNode = Node & {
|
|
|
28229
28255
|
data?: Maybe<GraphStoreBatchFocusAreaHasProjectEndUnion>;
|
|
28230
28256
|
id: Scalars['ID']['output'];
|
|
28231
28257
|
};
|
|
28232
|
-
export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraIssue | TownsquareProject;
|
|
28258
|
+
export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
|
|
28233
28259
|
export declare type GraphStoreBatchFocusAreaHasProjectInnerConnection = {
|
|
28234
28260
|
__typename?: 'GraphStoreBatchFocusAreaHasProjectInnerConnection';
|
|
28235
28261
|
edges: Array<Maybe<GraphStoreBatchFocusAreaHasProjectInnerEdge>>;
|
|
@@ -34188,7 +34214,7 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
34188
34214
|
node?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseUnion>;
|
|
34189
34215
|
};
|
|
34190
34216
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
34191
|
-
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraIssue | TownsquareProject;
|
|
34217
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
|
|
34192
34218
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
34193
34219
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
|
|
34194
34220
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
|
|
@@ -36237,6 +36263,34 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
|
|
|
36237
36263
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion>;
|
|
36238
36264
|
};
|
|
36239
36265
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
|
|
36266
|
+
export declare type GraphStoreSimplifiedUserAuthoredPrConnection = HasPageInfo & {
|
|
36267
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoredPrConnection';
|
|
36268
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredPrEdge>>>;
|
|
36269
|
+
pageInfo: PageInfo;
|
|
36270
|
+
};
|
|
36271
|
+
export declare type GraphStoreSimplifiedUserAuthoredPrEdge = {
|
|
36272
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoredPrEdge';
|
|
36273
|
+
createdAt: Scalars['DateTime']['output'];
|
|
36274
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36275
|
+
id: Scalars['ID']['output'];
|
|
36276
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
36277
|
+
node?: Maybe<GraphStoreSimplifiedUserAuthoredPrUnion>;
|
|
36278
|
+
};
|
|
36279
|
+
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails;
|
|
36280
|
+
export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
|
|
36281
|
+
__typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
|
|
36282
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopProjectEdge>>>;
|
|
36283
|
+
pageInfo: PageInfo;
|
|
36284
|
+
};
|
|
36285
|
+
export declare type GraphStoreSimplifiedUserHasTopProjectEdge = {
|
|
36286
|
+
__typename?: 'GraphStoreSimplifiedUserHasTopProjectEdge';
|
|
36287
|
+
createdAt: Scalars['DateTime']['output'];
|
|
36288
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36289
|
+
id: Scalars['ID']['output'];
|
|
36290
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
36291
|
+
node?: Maybe<GraphStoreSimplifiedUserHasTopProjectUnion>;
|
|
36292
|
+
};
|
|
36293
|
+
export declare type GraphStoreSimplifiedUserHasTopProjectUnion = JiraProject;
|
|
36240
36294
|
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
36241
36295
|
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
36242
36296
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
@@ -36253,6 +36307,20 @@ export declare type GraphStoreSimplifiedUserOwnsComponentEdge = {
|
|
|
36253
36307
|
node?: Maybe<GraphStoreSimplifiedUserOwnsComponentUnion>;
|
|
36254
36308
|
};
|
|
36255
36309
|
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
36310
|
+
export declare type GraphStoreSimplifiedUserReviewsPrConnection = HasPageInfo & {
|
|
36311
|
+
__typename?: 'GraphStoreSimplifiedUserReviewsPrConnection';
|
|
36312
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReviewsPrEdge>>>;
|
|
36313
|
+
pageInfo: PageInfo;
|
|
36314
|
+
};
|
|
36315
|
+
export declare type GraphStoreSimplifiedUserReviewsPrEdge = {
|
|
36316
|
+
__typename?: 'GraphStoreSimplifiedUserReviewsPrEdge';
|
|
36317
|
+
createdAt: Scalars['DateTime']['output'];
|
|
36318
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36319
|
+
id: Scalars['ID']['output'];
|
|
36320
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
36321
|
+
node?: Maybe<GraphStoreSimplifiedUserReviewsPrUnion>;
|
|
36322
|
+
};
|
|
36323
|
+
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails;
|
|
36256
36324
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
36257
36325
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
|
|
36258
36326
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
|
|
@@ -36909,12 +36977,21 @@ export declare type GraphStoreTestPerfhammerMaterializationSortInput = {
|
|
|
36909
36977
|
export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
36910
36978
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36911
36979
|
};
|
|
36980
|
+
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
36981
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36982
|
+
};
|
|
36983
|
+
export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
36984
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36985
|
+
};
|
|
36912
36986
|
export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
36913
36987
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
36914
36988
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
36915
36989
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36916
36990
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
36917
36991
|
};
|
|
36992
|
+
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
36993
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36994
|
+
};
|
|
36918
36995
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
36919
36996
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
36920
36997
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -37234,10 +37311,19 @@ export declare type GrowthUnifiedProfilePaidChannelContext = {
|
|
|
37234
37311
|
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
37235
37312
|
name?: Maybe<GrowthUnifiedProfileChannelName>;
|
|
37236
37313
|
persona?: Maybe<Scalars['String']['output']>;
|
|
37237
|
-
|
|
37314
|
+
subAnchor?: Maybe<Scalars['String']['output']>;
|
|
37238
37315
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
37316
|
+
templates?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
37239
37317
|
utm?: Maybe<GrowthUnifiedProfileUtm>;
|
|
37240
37318
|
};
|
|
37319
|
+
export declare type GrowthUnifiedProfilePaidChannelContextByProduct = {
|
|
37320
|
+
__typename?: 'GrowthUnifiedProfilePaidChannelContextByProduct';
|
|
37321
|
+
confluence?: Maybe<GrowthUnifiedProfilePaidChannelContext>;
|
|
37322
|
+
jira?: Maybe<GrowthUnifiedProfilePaidChannelContext>;
|
|
37323
|
+
jsm?: Maybe<GrowthUnifiedProfilePaidChannelContext>;
|
|
37324
|
+
jwm?: Maybe<GrowthUnifiedProfilePaidChannelContext>;
|
|
37325
|
+
trello?: Maybe<GrowthUnifiedProfilePaidChannelContext>;
|
|
37326
|
+
};
|
|
37241
37327
|
export declare type GrowthUnifiedProfileProductDetails = {
|
|
37242
37328
|
__typename?: 'GrowthUnifiedProfileProductDetails';
|
|
37243
37329
|
d0Active?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -37248,12 +37334,6 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
37248
37334
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
37249
37335
|
productName?: Maybe<Scalars['String']['output']>;
|
|
37250
37336
|
};
|
|
37251
|
-
export declare enum GrowthUnifiedProfileProductType {
|
|
37252
|
-
Confluence = "CONFLUENCE",
|
|
37253
|
-
JiraSoftware = "JIRA_SOFTWARE",
|
|
37254
|
-
Jsm = "JSM",
|
|
37255
|
-
Trello = "TRELLO"
|
|
37256
|
-
}
|
|
37257
37337
|
export declare type GrowthUnifiedProfileResult = {
|
|
37258
37338
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
37259
37339
|
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
@@ -37261,7 +37341,7 @@ export declare type GrowthUnifiedProfileResult = {
|
|
|
37261
37341
|
entityType?: Maybe<GrowthUnifiedProfileEntityType>;
|
|
37262
37342
|
linkedEntities?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkedEntities>>>;
|
|
37263
37343
|
onboardingContext?: Maybe<GrowthUnifiedProfileOnboardingContext>;
|
|
37264
|
-
paidChannelContext?: Maybe<
|
|
37344
|
+
paidChannelContext?: Maybe<GrowthUnifiedProfilePaidChannelContextByProduct>;
|
|
37265
37345
|
seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
|
|
37266
37346
|
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteDetails>>>;
|
|
37267
37347
|
};
|
|
@@ -43150,6 +43230,7 @@ export declare type JiraEstimateInput = {
|
|
|
43150
43230
|
};
|
|
43151
43231
|
export declare type JiraExtensionRenderingContextInput = {
|
|
43152
43232
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
43233
|
+
portalId?: InputMaybe<Scalars['Long']['input']>;
|
|
43153
43234
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
43154
43235
|
};
|
|
43155
43236
|
export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
@@ -44215,6 +44296,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
44215
44296
|
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
44216
44297
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
44217
44298
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
44299
|
+
searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
|
|
44218
44300
|
smartSummary?: Maybe<JiraAdf>;
|
|
44219
44301
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
44220
44302
|
startDateViewField?: Maybe<JiraIssueField>;
|
|
@@ -44319,6 +44401,9 @@ export declare type JiraIssueFieldsByIdOrAliasArgs = {
|
|
|
44319
44401
|
idsOrAliases: Array<InputMaybe<Scalars['String']['input']>>;
|
|
44320
44402
|
ignoreMissingFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
44321
44403
|
};
|
|
44404
|
+
export declare type JiraIssueHasChildrenArgs = {
|
|
44405
|
+
filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
44406
|
+
};
|
|
44322
44407
|
export declare type JiraIssueHasProjectPermissionArgs = {
|
|
44323
44408
|
permission: JiraProjectPermissionType;
|
|
44324
44409
|
};
|
|
@@ -44352,6 +44437,12 @@ export declare type JiraIssueProjectRoleCommentVisibilitiesArgs = {
|
|
|
44352
44437
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44353
44438
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
44354
44439
|
};
|
|
44440
|
+
export declare type JiraIssueSearchViewContextArgs = {
|
|
44441
|
+
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
44442
|
+
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
44443
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
44444
|
+
searchViewContextInput: JiraIssueSearchViewContextInput;
|
|
44445
|
+
};
|
|
44355
44446
|
export declare type JiraIssueStartDateViewFieldArgs = {
|
|
44356
44447
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
44357
44448
|
};
|
|
@@ -44638,6 +44729,19 @@ export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
|
44638
44729
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44639
44730
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
44640
44731
|
};
|
|
44732
|
+
export declare type JiraIssueExpandedGroup = {
|
|
44733
|
+
fieldValue: Scalars['String']['input'];
|
|
44734
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44735
|
+
jql: Scalars['String']['input'];
|
|
44736
|
+
};
|
|
44737
|
+
export declare type JiraIssueExpandedGroups = {
|
|
44738
|
+
groupedByFieldId: Scalars['String']['input'];
|
|
44739
|
+
groups?: InputMaybe<Array<JiraIssueExpandedGroup>>;
|
|
44740
|
+
};
|
|
44741
|
+
export declare type JiraIssueExpandedParent = {
|
|
44742
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44743
|
+
parentIssueId: Scalars['String']['input'];
|
|
44744
|
+
};
|
|
44641
44745
|
export declare type JiraIssueExportError = {
|
|
44642
44746
|
__typename?: 'JiraIssueExportError';
|
|
44643
44747
|
displayMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -45202,6 +45306,8 @@ export declare type JiraIssueSearchByJqlContentByFieldSetIdsArgs = {
|
|
|
45202
45306
|
export declare type JiraIssueSearchByJqlResult = JiraIssueSearchByJql | QueryError;
|
|
45203
45307
|
export declare type JiraIssueSearchChildIssuesInput = {
|
|
45204
45308
|
filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
45309
|
+
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
45310
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
45205
45311
|
parentIssueKey: Scalars['String']['input'];
|
|
45206
45312
|
};
|
|
45207
45313
|
export declare type JiraIssueSearchContextlessContent = JiraIssueSearchResultContent & {
|
|
@@ -45354,6 +45460,34 @@ export declare type JiraIssueSearchViewConfigSettings = {
|
|
|
45354
45460
|
isGroupingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
45355
45461
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
45356
45462
|
};
|
|
45463
|
+
export declare type JiraIssueSearchViewContextInput = {
|
|
45464
|
+
expandedGroups?: InputMaybe<JiraIssueExpandedGroups>;
|
|
45465
|
+
expandedParents?: InputMaybe<Array<JiraIssueExpandedParent>>;
|
|
45466
|
+
};
|
|
45467
|
+
export declare type JiraIssueSearchViewContextMapping = {
|
|
45468
|
+
afterIssueId?: Maybe<Scalars['String']['output']>;
|
|
45469
|
+
beforeIssueId?: Maybe<Scalars['String']['output']>;
|
|
45470
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
45471
|
+
};
|
|
45472
|
+
export declare type JiraIssueSearchViewContextMappingByGroup = JiraIssueSearchViewContextMapping & {
|
|
45473
|
+
__typename?: 'JiraIssueSearchViewContextMappingByGroup';
|
|
45474
|
+
afterIssueId?: Maybe<Scalars['String']['output']>;
|
|
45475
|
+
beforeIssueId?: Maybe<Scalars['String']['output']>;
|
|
45476
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
45477
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
45478
|
+
};
|
|
45479
|
+
export declare type JiraIssueSearchViewContextMappingByParent = JiraIssueSearchViewContextMapping & {
|
|
45480
|
+
__typename?: 'JiraIssueSearchViewContextMappingByParent';
|
|
45481
|
+
afterIssueId?: Maybe<Scalars['String']['output']>;
|
|
45482
|
+
beforeIssueId?: Maybe<Scalars['String']['output']>;
|
|
45483
|
+
parentIssueId?: Maybe<Scalars['String']['output']>;
|
|
45484
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
45485
|
+
};
|
|
45486
|
+
export declare type JiraIssueSearchViewContexts = {
|
|
45487
|
+
__typename?: 'JiraIssueSearchViewContexts';
|
|
45488
|
+
contexts?: Maybe<Array<JiraIssueSearchViewContextMapping>>;
|
|
45489
|
+
errors?: Maybe<Array<QueryError>>;
|
|
45490
|
+
};
|
|
45357
45491
|
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
45358
45492
|
projectContext?: InputMaybe<JiraIssueSearchViewFieldSetsProjectContext>;
|
|
45359
45493
|
};
|
|
@@ -49162,6 +49296,7 @@ export declare type JiraQuery = {
|
|
|
49162
49296
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
49163
49297
|
issueSearchViewResult?: Maybe<JiraIssueSearchViewResult>;
|
|
49164
49298
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
49299
|
+
jiraActivityConfiguration?: Maybe<JiraActivityConfiguration>;
|
|
49165
49300
|
jiraBoard?: Maybe<JiraBoardResult>;
|
|
49166
49301
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
49167
49302
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
@@ -49644,6 +49779,7 @@ export declare type JiraQueryIssueSearchStatusArgs = {
|
|
|
49644
49779
|
export declare type JiraQueryIssueSearchTotalCountArgs = {
|
|
49645
49780
|
cloudId: Scalars['ID']['input'];
|
|
49646
49781
|
issueSearchInput: JiraIssueSearchInput;
|
|
49782
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
49647
49783
|
};
|
|
49648
49784
|
export declare type JiraQueryIssueSearchViewArgs = {
|
|
49649
49785
|
id: Scalars['ID']['input'];
|
|
@@ -49665,6 +49801,11 @@ export declare type JiraQueryIssuesByKeyArgs = {
|
|
|
49665
49801
|
cloudId: Scalars['ID']['input'];
|
|
49666
49802
|
keys: Array<Scalars['String']['input']>;
|
|
49667
49803
|
};
|
|
49804
|
+
export declare type JiraQueryJiraActivityConfigurationArgs = {
|
|
49805
|
+
cloudId: Scalars['ID']['input'];
|
|
49806
|
+
id: Scalars['ID']['input'];
|
|
49807
|
+
journeyId: Scalars['ID']['input'];
|
|
49808
|
+
};
|
|
49668
49809
|
export declare type JiraQueryJiraBoardArgs = {
|
|
49669
49810
|
id: Scalars['ID']['input'];
|
|
49670
49811
|
};
|
|
@@ -56073,13 +56214,15 @@ export declare type KnowledgeDiscoveryQueryApiSearchRelatedEntitiesArgs = {
|
|
|
56073
56214
|
};
|
|
56074
56215
|
export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
|
|
56075
56216
|
orgId: Scalars['String']['input'];
|
|
56217
|
+
siteId?: InputMaybe<Scalars['String']['input']>;
|
|
56076
56218
|
teamName: Scalars['String']['input'];
|
|
56077
|
-
workspaceId
|
|
56219
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
56078
56220
|
};
|
|
56079
56221
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
56080
56222
|
locale: Scalars['String']['input'];
|
|
56081
56223
|
query: Scalars['String']['input'];
|
|
56082
|
-
|
|
56224
|
+
siteId?: InputMaybe<Scalars['String']['input']>;
|
|
56225
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
56083
56226
|
};
|
|
56084
56227
|
export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
56085
56228
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -57049,6 +57192,7 @@ export declare type MarketplaceConsoleListingScreenshot = {
|
|
|
57049
57192
|
__typename?: 'MarketplaceConsoleListingScreenshot';
|
|
57050
57193
|
caption?: Maybe<Scalars['String']['output']>;
|
|
57051
57194
|
imageId: Scalars['String']['output'];
|
|
57195
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
57052
57196
|
};
|
|
57053
57197
|
export declare type MarketplaceConsoleListingScreenshotInput = {
|
|
57054
57198
|
caption?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -59118,6 +59262,7 @@ export declare type MercuryQueryApi = {
|
|
|
59118
59262
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
59119
59263
|
myPreference?: Maybe<MercuryPreference>;
|
|
59120
59264
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
59265
|
+
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
59121
59266
|
providerWork?: Maybe<MercuryProviderWork>;
|
|
59122
59267
|
providerWorksByAris?: Maybe<Array<MercuryProviderWork>>;
|
|
59123
59268
|
team?: Maybe<MercuryTeam>;
|
|
@@ -59200,6 +59345,9 @@ export declare type MercuryQueryApiMyPreferenceArgs = {
|
|
|
59200
59345
|
export declare type MercuryQueryApiMyPreferencesArgs = {
|
|
59201
59346
|
cloudId: Scalars['ID']['input'];
|
|
59202
59347
|
};
|
|
59348
|
+
export declare type MercuryQueryApiPortfoliosByArisArgs = {
|
|
59349
|
+
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
59350
|
+
};
|
|
59203
59351
|
export declare type MercuryQueryApiProviderWorkArgs = {
|
|
59204
59352
|
cloudId: Scalars['ID']['input'];
|
|
59205
59353
|
id: Scalars['ID']['input'];
|
|
@@ -62813,6 +62961,7 @@ export declare type Query = {
|
|
|
62813
62961
|
topicOverview?: Maybe<ContentPlatformTopicOverview>;
|
|
62814
62962
|
topicOverviews: ContentPlatformTopicOverviewContentSearchConnection;
|
|
62815
62963
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
62964
|
+
townsquareUnsharded_allWorkspaceSummariesForOrg?: Maybe<TownsquareUnshardedWorkspaceSummaryConnection>;
|
|
62816
62965
|
trello: TrelloQueryApi;
|
|
62817
62966
|
unified?: Maybe<UnifiedQuery>;
|
|
62818
62967
|
user?: Maybe<User>;
|
|
@@ -64005,6 +64154,7 @@ export declare type QueryGetKeywordsArgs = {
|
|
|
64005
64154
|
};
|
|
64006
64155
|
export declare type QueryGrowthUnifiedProfile_GetUnifiedProfileArgs = {
|
|
64007
64156
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
64157
|
+
anonymousId?: InputMaybe<Scalars['ID']['input']>;
|
|
64008
64158
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
64009
64159
|
};
|
|
64010
64160
|
export declare type QueryHelpCenterArgs = {
|
|
@@ -64247,6 +64397,11 @@ export declare type QueryTopicOverviewArgs = {
|
|
|
64247
64397
|
export declare type QueryTopicOverviewsArgs = {
|
|
64248
64398
|
search: ContentPlatformSearchApIv2Query;
|
|
64249
64399
|
};
|
|
64400
|
+
export declare type QueryTownsquareUnsharded_AllWorkspaceSummariesForOrgArgs = {
|
|
64401
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64402
|
+
cloudId: Scalars['String']['input'];
|
|
64403
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64404
|
+
};
|
|
64250
64405
|
export declare type QueryUserArgs = {
|
|
64251
64406
|
accountId: Scalars['ID']['input'];
|
|
64252
64407
|
};
|
|
@@ -64337,6 +64492,7 @@ export declare type RadarEntity = {
|
|
|
64337
64492
|
};
|
|
64338
64493
|
export declare enum RadarEntityType {
|
|
64339
64494
|
FocusArea = "focusArea",
|
|
64495
|
+
Person = "person",
|
|
64340
64496
|
Position = "position"
|
|
64341
64497
|
}
|
|
64342
64498
|
export declare type RadarError = {
|
|
@@ -64365,6 +64521,7 @@ export declare type RadarFieldDefinition = Node & {
|
|
|
64365
64521
|
type: RadarFieldType;
|
|
64366
64522
|
};
|
|
64367
64523
|
export declare enum RadarFieldType {
|
|
64524
|
+
Ari = "ARI",
|
|
64368
64525
|
Boolean = "BOOLEAN",
|
|
64369
64526
|
Datetime = "DATETIME",
|
|
64370
64527
|
Number = "NUMBER",
|
|
@@ -66756,6 +66913,7 @@ export declare type ShepherdActorSessionInfoInput = {
|
|
|
66756
66913
|
export declare type ShepherdAlert = Node & {
|
|
66757
66914
|
__typename?: 'ShepherdAlert';
|
|
66758
66915
|
actor: ShepherdAlertActor;
|
|
66916
|
+
applicableSites?: Maybe<Array<Scalars['ID']['output']>>;
|
|
66759
66917
|
assignee?: Maybe<ShepherdUser>;
|
|
66760
66918
|
cloudId?: Maybe<Scalars['ID']['output']>;
|
|
66761
66919
|
createdOn: Scalars['DateTime']['output'];
|
|
@@ -67533,15 +67691,14 @@ export declare type ShepherdQuery = {
|
|
|
67533
67691
|
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
67534
67692
|
};
|
|
67535
67693
|
export declare type ShepherdQueryShepherdActivityArgs = {
|
|
67536
|
-
actions?: InputMaybe<Array<InputMaybe<ShepherdActionType>>>;
|
|
67537
67694
|
actor?: InputMaybe<Scalars['ID']['input']>;
|
|
67538
67695
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67696
|
+
alertType?: InputMaybe<Scalars['String']['input']>;
|
|
67539
67697
|
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
67540
67698
|
eventId?: InputMaybe<Scalars['ID']['input']>;
|
|
67541
67699
|
first: Scalars['Int']['input'];
|
|
67542
67700
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
67543
67701
|
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
67544
|
-
subject?: InputMaybe<ShepherdSubjectInput>;
|
|
67545
67702
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
67546
67703
|
};
|
|
67547
67704
|
export declare type ShepherdQueryShepherdActorArgs = {
|
|
@@ -68455,6 +68612,7 @@ export declare type SupportRequest = {
|
|
|
68455
68612
|
statuses: SupportRequestStatuses;
|
|
68456
68613
|
summary?: Maybe<Scalars['String']['output']>;
|
|
68457
68614
|
targetScreen: Scalars['String']['output'];
|
|
68615
|
+
ticketSla?: Maybe<SupportRequestSla>;
|
|
68458
68616
|
tracAttachmentComponentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
68459
68617
|
transitions?: Maybe<SupportRequestTransitions>;
|
|
68460
68618
|
};
|
|
@@ -68741,6 +68899,33 @@ export declare enum SupportRequestQueryStatusCategory {
|
|
|
68741
68899
|
Done = "DONE",
|
|
68742
68900
|
Open = "OPEN"
|
|
68743
68901
|
}
|
|
68902
|
+
export declare type SupportRequestSla = {
|
|
68903
|
+
__typename?: 'SupportRequestSla';
|
|
68904
|
+
canAdministerProject?: Maybe<Scalars['Boolean']['output']>;
|
|
68905
|
+
hasPreviousCycles?: Maybe<Scalars['Boolean']['output']>;
|
|
68906
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
68907
|
+
slaGoals?: Maybe<Array<SupportRequestSlaGoal>>;
|
|
68908
|
+
};
|
|
68909
|
+
export declare type SupportRequestSlaGoal = {
|
|
68910
|
+
__typename?: 'SupportRequestSlaGoal';
|
|
68911
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
68912
|
+
breachTime?: Maybe<Scalars['String']['output']>;
|
|
68913
|
+
calendarName?: Maybe<Scalars['String']['output']>;
|
|
68914
|
+
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
68915
|
+
durationTimeLong?: Maybe<Scalars['String']['output']>;
|
|
68916
|
+
failed?: Maybe<Scalars['Boolean']['output']>;
|
|
68917
|
+
goalTime?: Maybe<Scalars['String']['output']>;
|
|
68918
|
+
goalTimeHumanReadable?: Maybe<Scalars['String']['output']>;
|
|
68919
|
+
goalTimeLong?: Maybe<Scalars['String']['output']>;
|
|
68920
|
+
metricId?: Maybe<Scalars['String']['output']>;
|
|
68921
|
+
metricName?: Maybe<Scalars['String']['output']>;
|
|
68922
|
+
paused?: Maybe<Scalars['Boolean']['output']>;
|
|
68923
|
+
remainingTime?: Maybe<Scalars['String']['output']>;
|
|
68924
|
+
remainingTimeHumanReadable?: Maybe<Scalars['String']['output']>;
|
|
68925
|
+
remainingTimeLong?: Maybe<Scalars['String']['output']>;
|
|
68926
|
+
startTime?: Maybe<Scalars['String']['output']>;
|
|
68927
|
+
stopTime?: Maybe<Scalars['String']['output']>;
|
|
68928
|
+
};
|
|
68744
68929
|
export declare type SupportRequestStatus = {
|
|
68745
68930
|
__typename?: 'SupportRequestStatus';
|
|
68746
68931
|
category: SupportRequestStatusCategory;
|
|
@@ -69680,6 +69865,7 @@ export declare type TownsquareGoalType = Node & {
|
|
|
69680
69865
|
icon?: Maybe<TownsquareGoalTypeIcon>;
|
|
69681
69866
|
id: Scalars['ID']['output'];
|
|
69682
69867
|
name?: Maybe<TownsquareGoalTypeName>;
|
|
69868
|
+
requiresParentGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
69683
69869
|
state?: Maybe<TownsquareGoalTypeState>;
|
|
69684
69870
|
};
|
|
69685
69871
|
export declare type TownsquareGoalTypeAllowedChildTypesArgs = {
|
|
@@ -69851,6 +70037,7 @@ export declare type TownsquareQueryApi = {
|
|
|
69851
70037
|
goalTql?: Maybe<TownsquareGoalConnection>;
|
|
69852
70038
|
goalTqlFullHierarchy?: Maybe<TownsquareGoalConnection>;
|
|
69853
70039
|
goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
70040
|
+
goalTypesByAri?: Maybe<Array<Maybe<TownsquareGoalType>>>;
|
|
69854
70041
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
69855
70042
|
project?: Maybe<TownsquareProject>;
|
|
69856
70043
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
@@ -69903,6 +70090,9 @@ export declare type TownsquareQueryApiGoalTypesArgs = {
|
|
|
69903
70090
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69904
70091
|
includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69905
70092
|
};
|
|
70093
|
+
export declare type TownsquareQueryApiGoalTypesByAriArgs = {
|
|
70094
|
+
aris: Array<Scalars['String']['input']>;
|
|
70095
|
+
};
|
|
69906
70096
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
69907
70097
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
69908
70098
|
};
|
|
@@ -69997,6 +70187,42 @@ export declare type TownsquareTeam = Node & {
|
|
|
69997
70187
|
id: Scalars['ID']['output'];
|
|
69998
70188
|
name?: Maybe<Scalars['String']['output']>;
|
|
69999
70189
|
};
|
|
70190
|
+
export declare enum TownsquareUnshardedAccessControlCapability {
|
|
70191
|
+
Access = "ACCESS",
|
|
70192
|
+
Administer = "ADMINISTER",
|
|
70193
|
+
Create = "CREATE"
|
|
70194
|
+
}
|
|
70195
|
+
export declare type TownsquareUnshardedCapability = {
|
|
70196
|
+
__typename?: 'TownsquareUnshardedCapability';
|
|
70197
|
+
capability?: Maybe<TownsquareUnshardedAccessControlCapability>;
|
|
70198
|
+
capabilityContainer?: Maybe<TownsquareUnshardedCapabilityContainer>;
|
|
70199
|
+
};
|
|
70200
|
+
export declare enum TownsquareUnshardedCapabilityContainer {
|
|
70201
|
+
GoalsApp = "GOALS_APP",
|
|
70202
|
+
ProjectsApp = "PROJECTS_APP"
|
|
70203
|
+
}
|
|
70204
|
+
export declare type TownsquareUnshardedUserCapabilities = {
|
|
70205
|
+
__typename?: 'TownsquareUnshardedUserCapabilities';
|
|
70206
|
+
capabilities?: Maybe<Array<Maybe<TownsquareUnshardedCapability>>>;
|
|
70207
|
+
};
|
|
70208
|
+
export declare type TownsquareUnshardedWorkspaceSummary = {
|
|
70209
|
+
__typename?: 'TownsquareUnshardedWorkspaceSummary';
|
|
70210
|
+
cloudId: Scalars['String']['output'];
|
|
70211
|
+
id: Scalars['ID']['output'];
|
|
70212
|
+
name: Scalars['String']['output'];
|
|
70213
|
+
userCapabilities?: Maybe<TownsquareUnshardedUserCapabilities>;
|
|
70214
|
+
uuid: Scalars['String']['output'];
|
|
70215
|
+
};
|
|
70216
|
+
export declare type TownsquareUnshardedWorkspaceSummaryConnection = {
|
|
70217
|
+
__typename?: 'TownsquareUnshardedWorkspaceSummaryConnection';
|
|
70218
|
+
edges?: Maybe<Array<Maybe<TownsquareUnshardedWorkspaceSummaryEdge>>>;
|
|
70219
|
+
pageInfo: PageInfo;
|
|
70220
|
+
};
|
|
70221
|
+
export declare type TownsquareUnshardedWorkspaceSummaryEdge = {
|
|
70222
|
+
__typename?: 'TownsquareUnshardedWorkspaceSummaryEdge';
|
|
70223
|
+
cursor: Scalars['String']['output'];
|
|
70224
|
+
node?: Maybe<TownsquareUnshardedWorkspaceSummary>;
|
|
70225
|
+
};
|
|
70000
70226
|
export declare type TownsquareUserCapabilities = {
|
|
70001
70227
|
__typename?: 'TownsquareUserCapabilities';
|
|
70002
70228
|
capabilities?: Maybe<Array<Maybe<TownsquareCapability>>>;
|
|
@@ -70072,13 +70298,9 @@ export declare type TrelloAssignCardToPlannerCalendarEventInput = {
|
|
|
70072
70298
|
export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
|
|
70073
70299
|
__typename?: 'TrelloAssignCardToPlannerCalendarEventPayload';
|
|
70074
70300
|
errors?: Maybe<Array<MutationError>>;
|
|
70075
|
-
eventCard?: Maybe<
|
|
70301
|
+
eventCard?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
|
|
70076
70302
|
success: Scalars['Boolean']['output'];
|
|
70077
70303
|
};
|
|
70078
|
-
export declare type TrelloAssignCardToPlannerCalendarEventPayloadEventCardArgs = {
|
|
70079
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
70080
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70081
|
-
};
|
|
70082
70304
|
export declare type TrelloAtlassianIntelligence = {
|
|
70083
70305
|
__typename?: 'TrelloAtlassianIntelligence';
|
|
70084
70306
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -71150,6 +71372,11 @@ export declare type TrelloPlannerCalendarEventCardConnection = {
|
|
|
71150
71372
|
nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
|
|
71151
71373
|
pageInfo: PageInfo;
|
|
71152
71374
|
};
|
|
71375
|
+
export declare type TrelloPlannerCalendarEventCardConnectionUpdated = {
|
|
71376
|
+
__typename?: 'TrelloPlannerCalendarEventCardConnectionUpdated';
|
|
71377
|
+
edges?: Maybe<Array<TrelloPlannerCalendarEventCardEdge>>;
|
|
71378
|
+
nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
|
|
71379
|
+
};
|
|
71153
71380
|
export declare type TrelloPlannerCalendarEventCardEdge = {
|
|
71154
71381
|
__typename?: 'TrelloPlannerCalendarEventCardEdge';
|
|
71155
71382
|
cursor?: Maybe<Scalars['String']['output']>;
|