@forge/cli-shared 8.7.0-next.4-experimental-4baeb60 → 8.7.0
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.7.0
|
|
3
|
+
## 8.7.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
- Updated dependencies [de0f1c1]
|
|
22
22
|
- Updated dependencies [b15478b]
|
|
23
23
|
- Updated dependencies [bda8688]
|
|
24
|
-
- @forge/manifest@10.6.0
|
|
24
|
+
- @forge/manifest@10.6.0
|
|
25
25
|
|
|
26
26
|
## 8.7.0-next.4
|
|
27
27
|
|
|
@@ -400,7 +400,7 @@ export declare type AvpCreateChartPayload = Payload & {
|
|
|
400
400
|
};
|
|
401
401
|
export declare type AvpCreateDashboardFilterInput = {
|
|
402
402
|
dashboardAri: Scalars['ID']['input'];
|
|
403
|
-
filter:
|
|
403
|
+
filter: AvpDashboardFilterInput;
|
|
404
404
|
};
|
|
405
405
|
export declare type AvpCreateDashboardFilterPayload = Payload & {
|
|
406
406
|
__typename?: 'AVPCreateDashboardFilterPayload';
|
|
@@ -416,7 +416,10 @@ export declare type AvpCreateDashboardFilterResponse = {
|
|
|
416
416
|
};
|
|
417
417
|
export declare type AvpCreateDashboardInput = {
|
|
418
418
|
cloudId: Scalars['ID']['input'];
|
|
419
|
+
containerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
419
420
|
dashboard: AvpDashboardInput;
|
|
421
|
+
dashboardPermissionType?: InputMaybe<AvpDashboardPermissionType>;
|
|
422
|
+
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
420
423
|
workspaceId: Scalars['ID']['input'];
|
|
421
424
|
};
|
|
422
425
|
export declare type AvpCreateDashboardPayload = Payload & {
|
|
@@ -467,10 +470,11 @@ export declare type AvpDashboardCanvasLayoutRow = {
|
|
|
467
470
|
height?: Maybe<AvpCanvasRowHeight>;
|
|
468
471
|
id?: Maybe<Scalars['ID']['output']>;
|
|
469
472
|
};
|
|
470
|
-
export declare type
|
|
473
|
+
export declare type AvpDashboardFilterInput = {
|
|
471
474
|
chartType?: InputMaybe<Scalars['String']['input']>;
|
|
472
475
|
defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
473
476
|
hotTierFilterConfig?: InputMaybe<AvpHotTierFilterConfigInput>;
|
|
477
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
474
478
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
475
479
|
};
|
|
476
480
|
export declare type AvpDashboardInput = {
|
|
@@ -479,6 +483,11 @@ export declare type AvpDashboardInput = {
|
|
|
479
483
|
settings?: InputMaybe<AvpDashboardSettingsInput>;
|
|
480
484
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
481
485
|
};
|
|
486
|
+
export declare enum AvpDashboardPermissionType {
|
|
487
|
+
Closed = "CLOSED",
|
|
488
|
+
Manage = "MANAGE",
|
|
489
|
+
Read = "READ"
|
|
490
|
+
}
|
|
482
491
|
export declare type AvpDashboardSettings = {
|
|
483
492
|
__typename?: 'AVPDashboardSettings';
|
|
484
493
|
allowTzOverride?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -540,10 +549,18 @@ export declare type AvpEnvVar = {
|
|
|
540
549
|
defaultValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
541
550
|
hotTierFilterConfig?: Maybe<Array<Maybe<AvpHotTierFilterConfig>>>;
|
|
542
551
|
id?: Maybe<Scalars['ID']['output']>;
|
|
543
|
-
metadata?: Maybe<
|
|
552
|
+
metadata?: Maybe<Scalars['String']['output']>;
|
|
544
553
|
name?: Maybe<Scalars['String']['output']>;
|
|
545
554
|
operator?: Maybe<Scalars['String']['output']>;
|
|
546
555
|
};
|
|
556
|
+
export declare enum AvpEnvVarChartType {
|
|
557
|
+
Calendar = "CALENDAR",
|
|
558
|
+
CategoricalDropdown = "CATEGORICAL_DROPDOWN",
|
|
559
|
+
DateBucket = "DATE_BUCKET",
|
|
560
|
+
DateSlider = "DATE_SLIDER",
|
|
561
|
+
InputWidget = "INPUT_WIDGET",
|
|
562
|
+
RangeInput = "RANGE_INPUT"
|
|
563
|
+
}
|
|
547
564
|
export declare enum AvpEnvVarDataType {
|
|
548
565
|
Boolean = "BOOLEAN",
|
|
549
566
|
Date = "DATE",
|
|
@@ -553,21 +570,23 @@ export declare enum AvpEnvVarDataType {
|
|
|
553
570
|
NumberRange = "NUMBER_RANGE",
|
|
554
571
|
Text = "TEXT"
|
|
555
572
|
}
|
|
556
|
-
export declare type AvpEnvVarMetadata = {
|
|
557
|
-
__typename?: 'AVPEnvVarMetadata';
|
|
558
|
-
jsonValue?: Maybe<Scalars['String']['output']>;
|
|
559
|
-
};
|
|
560
573
|
export declare type AvpEnvVarWithChart = {
|
|
561
574
|
__typename?: 'AVPEnvVarWithChart';
|
|
562
575
|
chart?: Maybe<AvpChart>;
|
|
576
|
+
chartType?: Maybe<AvpEnvVarChartType>;
|
|
563
577
|
dataType?: Maybe<AvpEnvVarDataType>;
|
|
564
578
|
defaultValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
565
579
|
hotTierFilterConfig?: Maybe<Array<Maybe<AvpHotTierFilterConfig>>>;
|
|
566
580
|
id?: Maybe<Scalars['ID']['output']>;
|
|
567
|
-
metadata?: Maybe<
|
|
581
|
+
metadata?: Maybe<Scalars['String']['output']>;
|
|
568
582
|
name?: Maybe<Scalars['String']['output']>;
|
|
569
583
|
operator?: Maybe<Scalars['String']['output']>;
|
|
570
584
|
};
|
|
585
|
+
export declare type AvpFilterResponse = {
|
|
586
|
+
__typename?: 'AVPFilterResponse';
|
|
587
|
+
chart?: Maybe<AvpChart>;
|
|
588
|
+
envVar?: Maybe<AvpEnvVarWithChart>;
|
|
589
|
+
};
|
|
571
590
|
export declare type AvpHotTierFilterConfig = {
|
|
572
591
|
__typename?: 'AVPHotTierFilterConfig';
|
|
573
592
|
datasourceLocator?: Maybe<AvpDatasourceLocator>;
|
|
@@ -581,6 +600,9 @@ export declare type AvpHotTierFilterConfigInput = {
|
|
|
581
600
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
582
601
|
semanticModel?: InputMaybe<Scalars['String']['input']>;
|
|
583
602
|
};
|
|
603
|
+
export declare enum AvpIntegrationId {
|
|
604
|
+
JsmAssets = "JSM_ASSETS"
|
|
605
|
+
}
|
|
584
606
|
export declare type AvpMetricsConfiguration = {
|
|
585
607
|
__typename?: 'AVPMetricsConfiguration';
|
|
586
608
|
dimensions?: Maybe<Array<AvpMetricsDimension>>;
|
|
@@ -4687,6 +4709,12 @@ export declare type AssetsDmAdapters = {
|
|
|
4687
4709
|
general?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
4688
4710
|
product?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
4689
4711
|
};
|
|
4712
|
+
export declare enum AssetsDmAttributeMappingSaveDefaultOption {
|
|
4713
|
+
AddNewOnly = "AddNewOnly",
|
|
4714
|
+
Merge = "Merge",
|
|
4715
|
+
OverwriteAll = "OverwriteAll",
|
|
4716
|
+
UpdateOnly = "UpdateOnly"
|
|
4717
|
+
}
|
|
4690
4718
|
export declare type AssetsDmAutoColumnMappingInput = {
|
|
4691
4719
|
delimiter: Scalars['String']['input'];
|
|
4692
4720
|
header: Scalars['String']['input'];
|
|
@@ -4991,6 +5019,7 @@ export declare type AssetsDmDataSourceMappingObjectAttributeModel = {
|
|
|
4991
5019
|
__typename?: 'AssetsDMDataSourceMappingObjectAttributeModel';
|
|
4992
5020
|
dropdownDisplayName: Scalars['String']['output'];
|
|
4993
5021
|
name: Scalars['String']['output'];
|
|
5022
|
+
objectAttributeId: Scalars['String']['output'];
|
|
4994
5023
|
};
|
|
4995
5024
|
export declare type AssetsDmDataSourceMergeResponse = {
|
|
4996
5025
|
__typename?: 'AssetsDMDataSourceMergeResponse';
|
|
@@ -15257,6 +15286,9 @@ export declare enum ConfluenceContentType {
|
|
|
15257
15286
|
Attachment = "ATTACHMENT",
|
|
15258
15287
|
BlogPost = "BLOG_POST",
|
|
15259
15288
|
Comment = "COMMENT",
|
|
15289
|
+
Database = "DATABASE",
|
|
15290
|
+
Embed = "EMBED",
|
|
15291
|
+
Folder = "FOLDER",
|
|
15260
15292
|
Page = "PAGE",
|
|
15261
15293
|
Whiteboard = "WHITEBOARD"
|
|
15262
15294
|
}
|
|
@@ -17894,6 +17926,15 @@ export declare enum ConfluenceSpaceOwnerType {
|
|
|
17894
17926
|
Group = "GROUP",
|
|
17895
17927
|
User = "USER"
|
|
17896
17928
|
}
|
|
17929
|
+
export declare enum ConfluenceSpacePermissionAuditReportSpaceType {
|
|
17930
|
+
All = "ALL",
|
|
17931
|
+
AllExceptPersonal = "ALL_EXCEPT_PERSONAL",
|
|
17932
|
+
Personal = "PERSONAL"
|
|
17933
|
+
}
|
|
17934
|
+
export declare enum ConfluenceSpacePermissionAuditReportType {
|
|
17935
|
+
FullSitePermission = "FULL_SITE_PERMISSION",
|
|
17936
|
+
PermissionCombination = "PERMISSION_COMBINATION"
|
|
17937
|
+
}
|
|
17897
17938
|
export declare type ConfluenceSpaceRecommendations = {
|
|
17898
17939
|
__typename?: 'ConfluenceSpaceRecommendations';
|
|
17899
17940
|
active?: Maybe<Array<Maybe<Space>>>;
|
|
@@ -31643,6 +31684,7 @@ export declare type GraphIntegrationDataConnector = {
|
|
|
31643
31684
|
__typename?: 'GraphIntegrationDataConnector';
|
|
31644
31685
|
connectorKey: Scalars['String']['output'];
|
|
31645
31686
|
connectorProviderKey: Scalars['String']['output'];
|
|
31687
|
+
name: Scalars['String']['output'];
|
|
31646
31688
|
};
|
|
31647
31689
|
export declare type GraphIntegrationDataConnectorConnection = {
|
|
31648
31690
|
__typename?: 'GraphIntegrationDataConnectorConnection';
|
|
@@ -31905,10 +31947,9 @@ export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
|
31905
31947
|
name: Scalars['String']['output'];
|
|
31906
31948
|
productAri: Scalars['ID']['output'];
|
|
31907
31949
|
};
|
|
31908
|
-
export declare type GraphIntegrationTwgCapabilityContainerConnection = {
|
|
31950
|
+
export declare type GraphIntegrationTwgCapabilityContainerConnection = HasPageInfo & {
|
|
31909
31951
|
__typename?: 'GraphIntegrationTwgCapabilityContainerConnection';
|
|
31910
31952
|
edges: Array<GraphIntegrationTwgCapabilityContainerEdge>;
|
|
31911
|
-
nodes: Array<GraphIntegrationTwgCapabilityContainer>;
|
|
31912
31953
|
pageInfo: PageInfo;
|
|
31913
31954
|
};
|
|
31914
31955
|
export declare type GraphIntegrationTwgCapabilityContainerEdge = {
|
|
@@ -31923,10 +31964,9 @@ export declare type GraphIntegrationTwgCapabilityContainerMeta = {
|
|
|
31923
31964
|
name: Scalars['String']['output'];
|
|
31924
31965
|
productAri: Scalars['ID']['output'];
|
|
31925
31966
|
};
|
|
31926
|
-
export declare type GraphIntegrationTwgCapabilityContainerMetaConnection = {
|
|
31967
|
+
export declare type GraphIntegrationTwgCapabilityContainerMetaConnection = HasPageInfo & {
|
|
31927
31968
|
__typename?: 'GraphIntegrationTwgCapabilityContainerMetaConnection';
|
|
31928
31969
|
edges: Array<GraphIntegrationTwgCapabilityContainerMetaEdge>;
|
|
31929
|
-
nodes: Array<GraphIntegrationTwgCapabilityContainerMeta>;
|
|
31930
31970
|
pageInfo: PageInfo;
|
|
31931
31971
|
};
|
|
31932
31972
|
export declare type GraphIntegrationTwgCapabilityContainerMetaEdge = {
|
|
@@ -68389,6 +68429,7 @@ export declare type JiraIssueDeleteInput = {
|
|
|
68389
68429
|
};
|
|
68390
68430
|
export declare type JiraIssueDeletePayload = {
|
|
68391
68431
|
__typename?: 'JiraIssueDeletePayload';
|
|
68432
|
+
deletedIssueId?: Maybe<Scalars['ID']['output']>;
|
|
68392
68433
|
errors?: Maybe<Array<MutationError>>;
|
|
68393
68434
|
success: Scalars['Boolean']['output'];
|
|
68394
68435
|
};
|
|
@@ -88972,6 +89013,7 @@ export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs
|
|
|
88972
89013
|
workspaceAris: Array<Scalars['String']['input']>;
|
|
88973
89014
|
};
|
|
88974
89015
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
|
|
89016
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88975
89017
|
cloudId: Scalars['ID']['input'];
|
|
88976
89018
|
filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
|
|
88977
89019
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -90313,6 +90355,7 @@ export declare type Mutation = {
|
|
|
90313
90355
|
assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
|
|
90314
90356
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
90315
90357
|
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
90358
|
+
assetsDM_configureDefaultDataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
90316
90359
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
90317
90360
|
assetsDM_createObjectsListExportRequest?: Maybe<AssetsDmObjectsListExportRequestCreateResponse>;
|
|
90318
90361
|
assetsDM_createSavedSearch?: Maybe<AssetsDmSavedSearchesCreateResponse>;
|
|
@@ -90400,6 +90443,7 @@ export declare type Mutation = {
|
|
|
90400
90443
|
confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
|
|
90401
90444
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
90402
90445
|
confluence_generateForgeContextToken?: Maybe<ConfluenceForgeContextTokenPayload>;
|
|
90446
|
+
confluence_generateSpacePermissionAuditReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
90403
90447
|
confluence_insertOfflineVersion?: Maybe<ConfluenceInsertOfflineVersionPayload>;
|
|
90404
90448
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
90405
90449
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
@@ -91190,6 +91234,13 @@ export declare type MutationAssetsDm_ConfigureDataSourceMappingArgs = {
|
|
|
91190
91234
|
cloudId: Scalars['ID']['input'];
|
|
91191
91235
|
dataSourceId: Scalars['ID']['input'];
|
|
91192
91236
|
mappings: Array<AssetsDmDataSourceConfigureMappingInput>;
|
|
91237
|
+
saveAsDefaultOption?: InputMaybe<AssetsDmAttributeMappingSaveDefaultOption>;
|
|
91238
|
+
workspaceId: Scalars['ID']['input'];
|
|
91239
|
+
};
|
|
91240
|
+
export declare type MutationAssetsDm_ConfigureDefaultDataSourceMappingArgs = {
|
|
91241
|
+
cloudId: Scalars['ID']['input'];
|
|
91242
|
+
dataSourceId: Scalars['ID']['input'];
|
|
91243
|
+
objectClassName: Scalars['String']['input'];
|
|
91193
91244
|
workspaceId: Scalars['ID']['input'];
|
|
91194
91245
|
};
|
|
91195
91246
|
export declare type MutationAssetsDm_CreateObjectTagArgs = {
|
|
@@ -91516,6 +91567,12 @@ export declare type MutationConfluence_GenerateForgeContextTokenArgs = {
|
|
|
91516
91567
|
cloudId: Scalars['ID']['input'];
|
|
91517
91568
|
input: ConfluenceForgeContextTokenRequestInput;
|
|
91518
91569
|
};
|
|
91570
|
+
export declare type MutationConfluence_GenerateSpacePermissionAuditReportArgs = {
|
|
91571
|
+
cloudId: Scalars['ID']['input'];
|
|
91572
|
+
reportType: ConfluenceSpacePermissionAuditReportType;
|
|
91573
|
+
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
91574
|
+
spaceType: ConfluenceSpacePermissionAuditReportSpaceType;
|
|
91575
|
+
};
|
|
91519
91576
|
export declare type MutationConfluence_InsertOfflineVersionArgs = {
|
|
91520
91577
|
cloudId: Scalars['ID']['input'];
|
|
91521
91578
|
input?: InputMaybe<ConfluenceInsertOfflineVersionInput>;
|
|
@@ -95386,6 +95443,13 @@ export declare type PolarisInsight = {
|
|
|
95386
95443
|
snippets: Array<PolarisSnippet>;
|
|
95387
95444
|
updated: Scalars['String']['output'];
|
|
95388
95445
|
};
|
|
95446
|
+
export declare type PolarisInsightsQueryNamespace = {
|
|
95447
|
+
__typename?: 'PolarisInsightsQueryNamespace';
|
|
95448
|
+
insight?: Maybe<PolarisInsight>;
|
|
95449
|
+
};
|
|
95450
|
+
export declare type PolarisInsightsQueryNamespaceInsightArgs = {
|
|
95451
|
+
id: Scalars['ID']['input'];
|
|
95452
|
+
};
|
|
95389
95453
|
export declare type PolarisIssueLinkType = {
|
|
95390
95454
|
__typename?: 'PolarisIssueLinkType';
|
|
95391
95455
|
datapoint: Scalars['Int']['output'];
|
|
@@ -95494,6 +95558,7 @@ export declare type PolarisProjectTemplate = {
|
|
|
95494
95558
|
};
|
|
95495
95559
|
export declare type PolarisQueryNamespace = {
|
|
95496
95560
|
__typename?: 'PolarisQueryNamespace';
|
|
95561
|
+
insights?: Maybe<PolarisInsightsQueryNamespace>;
|
|
95497
95562
|
ranking?: Maybe<PolarisRankingQueryNamespace>;
|
|
95498
95563
|
};
|
|
95499
95564
|
export declare type PolarisRankingMutationNamespace = {
|
|
@@ -96686,7 +96751,7 @@ export declare type Query = {
|
|
|
96686
96751
|
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
96687
96752
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
96688
96753
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
96689
|
-
graphIntegration_availableTwgCapabilityContainers?: Maybe<
|
|
96754
|
+
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
96690
96755
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
96691
96756
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
96692
96757
|
graphIntegration_mcpAdminManagementMcpServer?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
@@ -99005,11 +99070,7 @@ export declare type QueryGoals_MetricsByIdsArgs = {
|
|
|
99005
99070
|
metricIds: Array<Scalars['ID']['input']>;
|
|
99006
99071
|
};
|
|
99007
99072
|
export declare type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
99008
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
99009
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
99010
99073
|
contextAri: Scalars['ID']['input'];
|
|
99011
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99012
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
99013
99074
|
};
|
|
99014
99075
|
export declare type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
99015
99076
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -100531,6 +100592,7 @@ export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
|
100531
100592
|
sourceField: Scalars['String']['output'];
|
|
100532
100593
|
syncStatus: RadarCustomFieldSyncStatus;
|
|
100533
100594
|
type: RadarFieldType;
|
|
100595
|
+
uuid: Scalars['ID']['output'];
|
|
100534
100596
|
};
|
|
100535
100597
|
export declare type RadarCustomFieldInput = {
|
|
100536
100598
|
displayName: Scalars['String']['input'];
|
|
@@ -103523,6 +103585,7 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
103523
103585
|
};
|
|
103524
103586
|
export declare type SearchResultSpfAsk = SearchResult & {
|
|
103525
103587
|
__typename?: 'SearchResultSpfAsk';
|
|
103588
|
+
ask?: Maybe<SpfAsk>;
|
|
103526
103589
|
description: Scalars['String']['output'];
|
|
103527
103590
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
103528
103591
|
id: Scalars['ID']['output'];
|
|
@@ -129492,7 +129555,6 @@ export declare type TrelloCardMemberEdgeUpdated = {
|
|
|
129492
129555
|
__typename?: 'TrelloCardMemberEdgeUpdated';
|
|
129493
129556
|
node?: Maybe<TrelloMember>;
|
|
129494
129557
|
};
|
|
129495
|
-
export declare type TrelloCardOrInboxCard = TrelloCard | TrelloInboxCard;
|
|
129496
129558
|
export declare enum TrelloCardRole {
|
|
129497
129559
|
Board = "BOARD",
|
|
129498
129560
|
Link = "LINK",
|
|
@@ -130469,7 +130531,7 @@ export declare type TrelloMergeCardsInput = {
|
|
|
130469
130531
|
};
|
|
130470
130532
|
export declare type TrelloMergeCardsPayload = Payload & {
|
|
130471
130533
|
__typename?: 'TrelloMergeCardsPayload';
|
|
130472
|
-
archivedCardIds
|
|
130534
|
+
archivedCardIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
130473
130535
|
card?: Maybe<TrelloCard>;
|
|
130474
130536
|
errors?: Maybe<Array<MutationError>>;
|
|
130475
130537
|
success: Scalars['Boolean']['output'];
|
|
@@ -131204,7 +131266,7 @@ export declare type TrelloQueryApi = {
|
|
|
131204
131266
|
card?: Maybe<TrelloCard>;
|
|
131205
131267
|
cardBatch?: Maybe<TrelloCardBatch>;
|
|
131206
131268
|
cardByShortLink?: Maybe<TrelloCard>;
|
|
131207
|
-
cardOrInboxCard?: Maybe<
|
|
131269
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
131208
131270
|
echo?: Maybe<Scalars['String']['output']>;
|
|
131209
131271
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
131210
131272
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|