@forge/cli-shared 6.8.0-next.5 → 6.8.0-next.6
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 +8 -0
- package/out/graphql/graphql-types.d.ts +209 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +38 -17
- package/out/ui/text.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5274,6 +5274,7 @@ export declare type CompassComponent = Node & {
|
|
|
5274
5274
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
5275
5275
|
name: Scalars['String']['output'];
|
|
5276
5276
|
ownerId?: Maybe<Scalars['ID']['output']>;
|
|
5277
|
+
packageDependencies?: Maybe<CompassComponentPackageDependencyConnection>;
|
|
5277
5278
|
relationships?: Maybe<CompassRelationshipConnectionResult>;
|
|
5278
5279
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
5279
5280
|
scorecardScores?: Maybe<Array<CompassScorecardScore>>;
|
|
@@ -5301,6 +5302,10 @@ export declare type CompassComponentEventsArgs = {
|
|
|
5301
5302
|
export declare type CompassComponentMetricSourcesArgs = {
|
|
5302
5303
|
query?: InputMaybe<CompassComponentMetricSourcesQuery>;
|
|
5303
5304
|
};
|
|
5305
|
+
export declare type CompassComponentPackageDependenciesArgs = {
|
|
5306
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5307
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5308
|
+
};
|
|
5304
5309
|
export declare type CompassComponentRelationshipsArgs = {
|
|
5305
5310
|
query?: InputMaybe<CompassRelationshipQuery>;
|
|
5306
5311
|
};
|
|
@@ -5532,6 +5537,41 @@ export declare type CompassComponentMetricSourcesQuery = {
|
|
|
5532
5537
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5533
5538
|
};
|
|
5534
5539
|
export declare type CompassComponentMetricSourcesQueryResult = CompassComponentMetricSourcesConnection | QueryError;
|
|
5540
|
+
export declare type CompassComponentPackageDependencyConnection = {
|
|
5541
|
+
__typename?: 'CompassComponentPackageDependencyConnection';
|
|
5542
|
+
edges?: Maybe<Array<CompassComponentPackageDependencyEdge>>;
|
|
5543
|
+
nodes?: Maybe<Array<CompassPackage>>;
|
|
5544
|
+
pageInfo?: Maybe<PageInfo>;
|
|
5545
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
5546
|
+
};
|
|
5547
|
+
export declare type CompassComponentPackageDependencyEdge = {
|
|
5548
|
+
__typename?: 'CompassComponentPackageDependencyEdge';
|
|
5549
|
+
changeMetadata?: Maybe<CompassChangeMetadata>;
|
|
5550
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
5551
|
+
node?: Maybe<CompassPackage>;
|
|
5552
|
+
versionsBySource?: Maybe<CompassComponentPackageDependencyVersionsBySourceConnection>;
|
|
5553
|
+
};
|
|
5554
|
+
export declare type CompassComponentPackageDependencyEdgeVersionsBySourceArgs = {
|
|
5555
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5556
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5557
|
+
};
|
|
5558
|
+
export declare type CompassComponentPackageDependencyVersionsBySourceConnection = {
|
|
5559
|
+
__typename?: 'CompassComponentPackageDependencyVersionsBySourceConnection';
|
|
5560
|
+
edges?: Maybe<Array<CompassComponentPackageDependencyVersionsBySourceEdge>>;
|
|
5561
|
+
nodes?: Maybe<Array<CompassComponentPackageVersionsBySource>>;
|
|
5562
|
+
pageInfo?: Maybe<PageInfo>;
|
|
5563
|
+
};
|
|
5564
|
+
export declare type CompassComponentPackageDependencyVersionsBySourceEdge = {
|
|
5565
|
+
__typename?: 'CompassComponentPackageDependencyVersionsBySourceEdge';
|
|
5566
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
5567
|
+
node?: Maybe<CompassComponentPackageVersionsBySource>;
|
|
5568
|
+
};
|
|
5569
|
+
export declare type CompassComponentPackageVersionsBySource = {
|
|
5570
|
+
__typename?: 'CompassComponentPackageVersionsBySource';
|
|
5571
|
+
dependentOnVersions?: Maybe<Array<Scalars['String']['output']>>;
|
|
5572
|
+
sourceId?: Maybe<Scalars['String']['output']>;
|
|
5573
|
+
sourceUrl?: Maybe<Scalars['String']['output']>;
|
|
5574
|
+
};
|
|
5535
5575
|
export declare type CompassComponentQueryResult = CompassSearchComponentConnection | QueryError;
|
|
5536
5576
|
export declare type CompassComponentResult = CompassComponent | QueryError;
|
|
5537
5577
|
export declare type CompassComponentScorecardJiraIssueConnection = {
|
|
@@ -7434,6 +7474,11 @@ export declare type CompassMetricValuesTimeseries = {
|
|
|
7434
7474
|
values?: Maybe<Array<Maybe<CompassMetricValue>>>;
|
|
7435
7475
|
};
|
|
7436
7476
|
export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTimeseries | QueryError;
|
|
7477
|
+
export declare type CompassPackage = {
|
|
7478
|
+
__typename?: 'CompassPackage';
|
|
7479
|
+
id: Scalars['ID']['output'];
|
|
7480
|
+
packageName: Scalars['String']['output'];
|
|
7481
|
+
};
|
|
7437
7482
|
export declare type CompassPermissionResult = {
|
|
7438
7483
|
__typename?: 'CompassPermissionResult';
|
|
7439
7484
|
allowed: Scalars['Boolean']['output'];
|
|
@@ -9017,6 +9062,7 @@ export declare type ConfluenceAdminReport = {
|
|
|
9017
9062
|
link?: Maybe<Scalars['String']['output']>;
|
|
9018
9063
|
reportId?: Maybe<Scalars['ID']['output']>;
|
|
9019
9064
|
requesterId?: Maybe<Scalars['ID']['output']>;
|
|
9065
|
+
user?: Maybe<AtlassianUser>;
|
|
9020
9066
|
};
|
|
9021
9067
|
export declare type ConfluenceAdminReportPayload = {
|
|
9022
9068
|
__typename?: 'ConfluenceAdminReportPayload';
|
|
@@ -17112,7 +17158,9 @@ export declare type ContentAnalyticsPageViewInfo = {
|
|
|
17112
17158
|
lastVersionViewedNumber?: Maybe<Scalars['Int']['output']>;
|
|
17113
17159
|
lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
|
|
17114
17160
|
lastViewedAt: Scalars['String']['output'];
|
|
17161
|
+
user?: Maybe<AtlassianUser>;
|
|
17115
17162
|
userId: Scalars['ID']['output'];
|
|
17163
|
+
userProfile?: Maybe<AtlassianUser>;
|
|
17116
17164
|
views: Scalars['Int']['output'];
|
|
17117
17165
|
};
|
|
17118
17166
|
export declare type ContentAnalyticsTotalViewsByPage = {
|
|
@@ -18954,6 +19002,7 @@ export declare type CountGroupByUser = {
|
|
|
18954
19002
|
export declare type CountGroupByUserItem = {
|
|
18955
19003
|
__typename?: 'CountGroupByUserItem';
|
|
18956
19004
|
count: Scalars['Int']['output'];
|
|
19005
|
+
user?: Maybe<AtlassianUser>;
|
|
18957
19006
|
userId: Scalars['String']['output'];
|
|
18958
19007
|
};
|
|
18959
19008
|
export declare type CountUsersGroupByPage = {
|
|
@@ -20783,6 +20832,35 @@ export declare type CustomerUser = LocalizationContext & User & {
|
|
|
20783
20832
|
picture: Scalars['URL']['output'];
|
|
20784
20833
|
zoneinfo?: Maybe<Scalars['String']['output']>;
|
|
20785
20834
|
};
|
|
20835
|
+
export declare type DailyToplineTrendSeries = {
|
|
20836
|
+
__typename?: 'DailyToplineTrendSeries';
|
|
20837
|
+
cohortType: Scalars['String']['output'];
|
|
20838
|
+
cohortValue: Scalars['String']['output'];
|
|
20839
|
+
data: Array<DailyToplineTrendSeriesData>;
|
|
20840
|
+
env: GlanceEnvironment;
|
|
20841
|
+
goals: Array<ExperienceToplineGoal>;
|
|
20842
|
+
id: Scalars['ID']['output'];
|
|
20843
|
+
metric: Scalars['String']['output'];
|
|
20844
|
+
missingDays?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
20845
|
+
pageLoadType?: Maybe<PageLoadType>;
|
|
20846
|
+
percentile: Scalars['Int']['output'];
|
|
20847
|
+
};
|
|
20848
|
+
export declare type DailyToplineTrendSeriesData = {
|
|
20849
|
+
__typename?: 'DailyToplineTrendSeriesData';
|
|
20850
|
+
aggregatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
20851
|
+
approxVolumePercentage?: Maybe<Scalars['Float']['output']>;
|
|
20852
|
+
count: Scalars['Int']['output'];
|
|
20853
|
+
day: Scalars['Date']['output'];
|
|
20854
|
+
id: Scalars['ID']['output'];
|
|
20855
|
+
isPartialDayAggregation?: Maybe<Scalars['Boolean']['output']>;
|
|
20856
|
+
overrideAt?: Maybe<Scalars['DateTime']['output']>;
|
|
20857
|
+
overrideSourceName?: Maybe<Scalars['String']['output']>;
|
|
20858
|
+
overrideUserId?: Maybe<Scalars['String']['output']>;
|
|
20859
|
+
projectedValueEod?: Maybe<Scalars['Float']['output']>;
|
|
20860
|
+
projectedValueHigh?: Maybe<Scalars['Float']['output']>;
|
|
20861
|
+
projectedValueLow?: Maybe<Scalars['Float']['output']>;
|
|
20862
|
+
value: Scalars['Float']['output'];
|
|
20863
|
+
};
|
|
20786
20864
|
export declare type DataAccessAndStorage = {
|
|
20787
20865
|
__typename?: 'DataAccessAndStorage';
|
|
20788
20866
|
appProcessEUDOutsideAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -20887,6 +20965,7 @@ export declare type DeactivatedUserPageCountEntity = {
|
|
|
20887
20965
|
__typename?: 'DeactivatedUserPageCountEntity';
|
|
20888
20966
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
20889
20967
|
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
20968
|
+
user?: Maybe<AtlassianUser>;
|
|
20890
20969
|
};
|
|
20891
20970
|
export declare type DeactivatedUserPageCountEntityEdge = {
|
|
20892
20971
|
__typename?: 'DeactivatedUserPageCountEntityEdge';
|
|
@@ -24251,6 +24330,47 @@ export declare type EventTimeseriesCtrItems = {
|
|
|
24251
24330
|
ctr: Scalars['Float']['output'];
|
|
24252
24331
|
timestamp: Scalars['String']['output'];
|
|
24253
24332
|
};
|
|
24333
|
+
export declare type Experience = {
|
|
24334
|
+
__typename?: 'Experience';
|
|
24335
|
+
dailyToplineTrend: Array<DailyToplineTrendSeries>;
|
|
24336
|
+
experienceEventType: ExperienceEventType;
|
|
24337
|
+
experienceKey: Scalars['String']['output'];
|
|
24338
|
+
experienceLink: Scalars['String']['output'];
|
|
24339
|
+
id: Scalars['ID']['output'];
|
|
24340
|
+
name: Scalars['String']['output'];
|
|
24341
|
+
product: Product;
|
|
24342
|
+
};
|
|
24343
|
+
export declare type ExperienceDailyToplineTrendArgs = {
|
|
24344
|
+
cohortType?: InputMaybe<Scalars['String']['input']>;
|
|
24345
|
+
cohortTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
24346
|
+
cohortValue?: InputMaybe<Scalars['String']['input']>;
|
|
24347
|
+
dateFrom: Scalars['Date']['input'];
|
|
24348
|
+
dateTo: Scalars['Date']['input'];
|
|
24349
|
+
env: GlanceEnvironment;
|
|
24350
|
+
metric: Scalars['String']['input'];
|
|
24351
|
+
pageLoadType?: InputMaybe<PageLoadType>;
|
|
24352
|
+
percentile: Scalars['Int']['input'];
|
|
24353
|
+
};
|
|
24354
|
+
export declare enum ExperienceEventType {
|
|
24355
|
+
Custom = "CUSTOM",
|
|
24356
|
+
Database = "DATABASE",
|
|
24357
|
+
InlineResult = "INLINE_RESULT",
|
|
24358
|
+
PageLoad = "PAGE_LOAD",
|
|
24359
|
+
PageSegmentLoad = "PAGE_SEGMENT_LOAD",
|
|
24360
|
+
WebVitals = "WEB_VITALS"
|
|
24361
|
+
}
|
|
24362
|
+
export declare type ExperienceToplineGoal = {
|
|
24363
|
+
__typename?: 'ExperienceToplineGoal';
|
|
24364
|
+
cohort?: Maybe<Scalars['String']['output']>;
|
|
24365
|
+
cohortType: Scalars['String']['output'];
|
|
24366
|
+
env: GlanceEnvironment;
|
|
24367
|
+
id: Scalars['ID']['output'];
|
|
24368
|
+
metric: Scalars['String']['output'];
|
|
24369
|
+
name: Scalars['String']['output'];
|
|
24370
|
+
pageLoadType?: Maybe<PageLoadType>;
|
|
24371
|
+
percentile: Scalars['Int']['output'];
|
|
24372
|
+
value: Scalars['Float']['output'];
|
|
24373
|
+
};
|
|
24254
24374
|
export declare type Extension = {
|
|
24255
24375
|
__typename?: 'Extension';
|
|
24256
24376
|
appId: Scalars['ID']['output'];
|
|
@@ -26595,6 +26715,11 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
26595
26715
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
26596
26716
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
26597
26717
|
};
|
|
26718
|
+
export declare enum GlanceEnvironment {
|
|
26719
|
+
Dev = "DEV",
|
|
26720
|
+
Prod = "PROD",
|
|
26721
|
+
Staging = "STAGING"
|
|
26722
|
+
}
|
|
26598
26723
|
export declare type GlanceUserInsights = {
|
|
26599
26724
|
__typename?: 'GlanceUserInsights';
|
|
26600
26725
|
additional_data?: Maybe<Scalars['String']['output']>;
|
|
@@ -59445,6 +59570,13 @@ export declare type JiraJqlComponentFieldValue = JiraJqlFieldValue & {
|
|
|
59445
59570
|
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
59446
59571
|
jqlTerm: Scalars['String']['output'];
|
|
59447
59572
|
};
|
|
59573
|
+
export declare type JiraJqlEmptyFieldValue = JiraJqlFieldValue & {
|
|
59574
|
+
__typename?: 'JiraJqlEmptyFieldValue';
|
|
59575
|
+
displayName: Scalars['String']['output'];
|
|
59576
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
59577
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
59578
|
+
jqlTerm: Scalars['String']['output'];
|
|
59579
|
+
};
|
|
59448
59580
|
export declare type JiraJqlField = {
|
|
59449
59581
|
__typename?: 'JiraJqlField';
|
|
59450
59582
|
allowedClauseTypes: Array<JiraJqlClauseType>;
|
|
@@ -70922,6 +71054,7 @@ export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
|
70922
71054
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70923
71055
|
cloudId: Scalars['ID']['input'];
|
|
70924
71056
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71057
|
+
isSuggestion?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70925
71058
|
orgId: Scalars['String']['input'];
|
|
70926
71059
|
};
|
|
70927
71060
|
export declare type KnowledgeDiscoveryQueryApiAutoDefinitionArgs = {
|
|
@@ -71066,6 +71199,7 @@ export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
|
71066
71199
|
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
71067
71200
|
id: Scalars['ID']['output'];
|
|
71068
71201
|
name: Scalars['String']['output'];
|
|
71202
|
+
relatedQuestion?: Maybe<Scalars['String']['output']>;
|
|
71069
71203
|
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
71070
71204
|
updatedAt: Scalars['String']['output'];
|
|
71071
71205
|
};
|
|
@@ -78763,6 +78897,7 @@ export declare type PageActivityEventCreatedComment = PageActivityEvent & {
|
|
|
78763
78897
|
commentType: AnalyticsCommentType;
|
|
78764
78898
|
groupSize: Scalars['Int']['output'];
|
|
78765
78899
|
timestamp: Scalars['String']['output'];
|
|
78900
|
+
user?: Maybe<AtlassianUser>;
|
|
78766
78901
|
};
|
|
78767
78902
|
export declare type PageActivityEventCreatedPage = PageActivityEvent & {
|
|
78768
78903
|
__typename?: 'PageActivityEventCreatedPage';
|
|
@@ -78772,6 +78907,7 @@ export declare type PageActivityEventCreatedPage = PageActivityEvent & {
|
|
|
78772
78907
|
groupSize: Scalars['Int']['output'];
|
|
78773
78908
|
pageVersion: Scalars['Int']['output'];
|
|
78774
78909
|
timestamp: Scalars['String']['output'];
|
|
78910
|
+
user?: Maybe<AtlassianUser>;
|
|
78775
78911
|
};
|
|
78776
78912
|
export declare type PageActivityEventPublishedPage = PageActivityEvent & {
|
|
78777
78913
|
__typename?: 'PageActivityEventPublishedPage';
|
|
@@ -78781,6 +78917,7 @@ export declare type PageActivityEventPublishedPage = PageActivityEvent & {
|
|
|
78781
78917
|
groupSize: Scalars['Int']['output'];
|
|
78782
78918
|
pageVersion: Scalars['Int']['output'];
|
|
78783
78919
|
timestamp: Scalars['String']['output'];
|
|
78920
|
+
user?: Maybe<AtlassianUser>;
|
|
78784
78921
|
};
|
|
78785
78922
|
export declare type PageActivityEventSnapshottedPage = PageActivityEvent & {
|
|
78786
78923
|
__typename?: 'PageActivityEventSnapshottedPage';
|
|
@@ -78790,6 +78927,7 @@ export declare type PageActivityEventSnapshottedPage = PageActivityEvent & {
|
|
|
78790
78927
|
groupSize: Scalars['Int']['output'];
|
|
78791
78928
|
pageVersion: Scalars['Int']['output'];
|
|
78792
78929
|
timestamp: Scalars['String']['output'];
|
|
78930
|
+
user?: Maybe<AtlassianUser>;
|
|
78793
78931
|
};
|
|
78794
78932
|
export declare type PageActivityEventStartedPage = PageActivityEvent & {
|
|
78795
78933
|
__typename?: 'PageActivityEventStartedPage';
|
|
@@ -78799,6 +78937,7 @@ export declare type PageActivityEventStartedPage = PageActivityEvent & {
|
|
|
78799
78937
|
groupSize: Scalars['Int']['output'];
|
|
78800
78938
|
pageVersion: Scalars['Int']['output'];
|
|
78801
78939
|
timestamp: Scalars['String']['output'];
|
|
78940
|
+
user?: Maybe<AtlassianUser>;
|
|
78802
78941
|
};
|
|
78803
78942
|
export declare type PageActivityEventUpdatedPage = PageActivityEvent & {
|
|
78804
78943
|
__typename?: 'PageActivityEventUpdatedPage';
|
|
@@ -78808,6 +78947,7 @@ export declare type PageActivityEventUpdatedPage = PageActivityEvent & {
|
|
|
78808
78947
|
groupSize: Scalars['Int']['output'];
|
|
78809
78948
|
pageVersion: Scalars['Int']['output'];
|
|
78810
78949
|
timestamp: Scalars['String']['output'];
|
|
78950
|
+
user?: Maybe<AtlassianUser>;
|
|
78811
78951
|
};
|
|
78812
78952
|
export declare type PageActivityPageInfo = {
|
|
78813
78953
|
__typename?: 'PageActivityPageInfo';
|
|
@@ -78874,6 +79014,11 @@ export declare type PageInput = {
|
|
|
78874
79014
|
status?: InputMaybe<PageStatusInput>;
|
|
78875
79015
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
78876
79016
|
};
|
|
79017
|
+
export declare enum PageLoadType {
|
|
79018
|
+
Combined = "COMBINED",
|
|
79019
|
+
Initial = "INITIAL",
|
|
79020
|
+
Transition = "TRANSITION"
|
|
79021
|
+
}
|
|
78877
79022
|
export declare type PageRestriction = {
|
|
78878
79023
|
__typename?: 'PageRestriction';
|
|
78879
79024
|
group?: Maybe<Array<PageGroupRestriction>>;
|
|
@@ -80856,6 +81001,7 @@ export declare type Query = {
|
|
|
80856
81001
|
contentAnalyticsViewers?: Maybe<ContentAnalyticsViewers>;
|
|
80857
81002
|
contentAnalyticsViews?: Maybe<ContentAnalyticsViews>;
|
|
80858
81003
|
contentAnalyticsViewsByDate?: Maybe<ContentAnalyticsViewsByDate>;
|
|
81004
|
+
contentAnalyticsViewsByUser?: Maybe<ContentAnalyticsViewsByUser>;
|
|
80859
81005
|
contentBody?: Maybe<ContentBodyPerRepresentation>;
|
|
80860
81006
|
contentByState?: Maybe<PaginatedContentList>;
|
|
80861
81007
|
contentContributors?: Maybe<ContentContributors>;
|
|
@@ -80968,6 +81114,7 @@ export declare type Query = {
|
|
|
80968
81114
|
getSmartContentFeature?: Maybe<SmartPageFeatures>;
|
|
80969
81115
|
getSmartFeatures?: Maybe<SmartFeaturesResponse>;
|
|
80970
81116
|
getSummary?: Maybe<SmartFeaturesContentSummary>;
|
|
81117
|
+
glance_getCurrentUserSettings?: Maybe<UserSettings>;
|
|
80971
81118
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
80972
81119
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
80973
81120
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
@@ -82603,6 +82750,12 @@ export declare type QueryContentAnalyticsViewsByDateArgs = {
|
|
|
82603
82750
|
toDate: Scalars['String']['input'];
|
|
82604
82751
|
type: Scalars['String']['input'];
|
|
82605
82752
|
};
|
|
82753
|
+
export declare type QueryContentAnalyticsViewsByUserArgs = {
|
|
82754
|
+
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
82755
|
+
contentId: Scalars['ID']['input'];
|
|
82756
|
+
engageTimeThreshold?: InputMaybe<Scalars['Int']['input']>;
|
|
82757
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
82758
|
+
};
|
|
82606
82759
|
export declare type QueryContentBodyArgs = {
|
|
82607
82760
|
id: Scalars['ID']['input'];
|
|
82608
82761
|
};
|
|
@@ -84329,6 +84482,7 @@ export declare type RadarWorkspace = {
|
|
|
84329
84482
|
id: Scalars['ID']['output'];
|
|
84330
84483
|
positionFields: Array<RadarFieldDefinition>;
|
|
84331
84484
|
userContext?: Maybe<RadarUserContext>;
|
|
84485
|
+
workerFields: Array<RadarFieldDefinition>;
|
|
84332
84486
|
};
|
|
84333
84487
|
export declare type RankColumnInput = {
|
|
84334
84488
|
boardId: Scalars['ID']['input'];
|
|
@@ -84526,6 +84680,7 @@ export declare type RecommendedPeopleItem = {
|
|
|
84526
84680
|
__typename?: 'RecommendedPeopleItem';
|
|
84527
84681
|
accountId: Scalars['String']['output'];
|
|
84528
84682
|
score: Scalars['Float']['output'];
|
|
84683
|
+
user?: Maybe<AtlassianUser>;
|
|
84529
84684
|
};
|
|
84530
84685
|
export declare type RecommendedSpaceItem = {
|
|
84531
84686
|
__typename?: 'RecommendedSpaceItem';
|
|
@@ -93130,7 +93285,7 @@ export declare type TrelloLabelUpdated = {
|
|
|
93130
93285
|
};
|
|
93131
93286
|
export declare type TrelloLabelUpdatedConnection = {
|
|
93132
93287
|
__typename?: 'TrelloLabelUpdatedConnection';
|
|
93133
|
-
nodes
|
|
93288
|
+
nodes?: Maybe<Array<TrelloLabel>>;
|
|
93134
93289
|
};
|
|
93135
93290
|
export declare type TrelloLimitProps = {
|
|
93136
93291
|
__typename?: 'TrelloLimitProps';
|
|
@@ -93247,7 +93402,7 @@ export declare type TrelloMemberWorkspacesArgs = {
|
|
|
93247
93402
|
export declare type TrelloMemberConnection = {
|
|
93248
93403
|
__typename?: 'TrelloMemberConnection';
|
|
93249
93404
|
edges?: Maybe<Array<Maybe<TrelloMemberEdge>>>;
|
|
93250
|
-
nodes?: Maybe<Array<
|
|
93405
|
+
nodes?: Maybe<Array<TrelloMember>>;
|
|
93251
93406
|
pageInfo: PageInfo;
|
|
93252
93407
|
};
|
|
93253
93408
|
export declare type TrelloMemberEdge = {
|
|
@@ -93487,6 +93642,7 @@ export declare type TrelloPlannerCalendarAccountUpdated = {
|
|
|
93487
93642
|
__typename?: 'TrelloPlannerCalendarAccountUpdated';
|
|
93488
93643
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnectionUpdated>;
|
|
93489
93644
|
id: Scalars['ID']['output'];
|
|
93645
|
+
providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnectionUpdated>;
|
|
93490
93646
|
};
|
|
93491
93647
|
export declare enum TrelloPlannerCalendarColor {
|
|
93492
93648
|
BlueSubtler = "BLUE_SUBTLER",
|
|
@@ -93638,9 +93794,24 @@ export declare enum TrelloPlannerCalendarEventType {
|
|
|
93638
93794
|
}
|
|
93639
93795
|
export declare type TrelloPlannerCalendarEventUpdated = {
|
|
93640
93796
|
__typename?: 'TrelloPlannerCalendarEventUpdated';
|
|
93797
|
+
allDay?: Maybe<Scalars['Boolean']['output']>;
|
|
93798
|
+
busy?: Maybe<Scalars['Boolean']['output']>;
|
|
93641
93799
|
cards?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
|
|
93800
|
+
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
93801
|
+
conferencing?: Maybe<TrelloPlannerCalendarEventConferencing>;
|
|
93802
|
+
createdByTrello?: Maybe<Scalars['Boolean']['output']>;
|
|
93803
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
93804
|
+
endAt?: Maybe<Scalars['DateTime']['output']>;
|
|
93805
|
+
eventType?: Maybe<TrelloPlannerCalendarEventType>;
|
|
93642
93806
|
id: Scalars['ID']['output'];
|
|
93807
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
93643
93808
|
onPlannerCalendarEventCardDeleted?: Maybe<Array<TrelloPlannerCalendarEventCardDeleted>>;
|
|
93809
|
+
parentEventId?: Maybe<Scalars['ID']['output']>;
|
|
93810
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
93811
|
+
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
93812
|
+
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|
|
93813
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
93814
|
+
visibility?: Maybe<TrelloPlannerCalendarEventVisibility>;
|
|
93644
93815
|
};
|
|
93645
93816
|
export declare enum TrelloPlannerCalendarEventVisibility {
|
|
93646
93817
|
Default = "DEFAULT",
|
|
@@ -93662,8 +93833,17 @@ export declare type TrelloPlannerCalendarProviderCalendarsFilter = {
|
|
|
93662
93833
|
};
|
|
93663
93834
|
export declare type TrelloPlannerCalendarUpdated = {
|
|
93664
93835
|
__typename?: 'TrelloPlannerCalendarUpdated';
|
|
93836
|
+
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
93837
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
93665
93838
|
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
93666
93839
|
id: Scalars['ID']['output'];
|
|
93840
|
+
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
93841
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
93842
|
+
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
93843
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
93844
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
93845
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
93846
|
+
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
93667
93847
|
};
|
|
93668
93848
|
export declare type TrelloPlannerCalendarUpdatedEventsArgs = {
|
|
93669
93849
|
filter: TrelloPlannerCalendarEventsUpdatedFilter;
|
|
@@ -93685,12 +93865,30 @@ export declare type TrelloPlannerProviderCalendarConnection = {
|
|
|
93685
93865
|
pageInfo: PageInfo;
|
|
93686
93866
|
updateCursor?: Maybe<Scalars['String']['output']>;
|
|
93687
93867
|
};
|
|
93868
|
+
export declare type TrelloPlannerProviderCalendarConnectionUpdated = {
|
|
93869
|
+
__typename?: 'TrelloPlannerProviderCalendarConnectionUpdated';
|
|
93870
|
+
edges?: Maybe<Array<TrelloPlannerProviderCalendarEdgeUpdated>>;
|
|
93871
|
+
};
|
|
93688
93872
|
export declare type TrelloPlannerProviderCalendarEdge = {
|
|
93689
93873
|
__typename?: 'TrelloPlannerProviderCalendarEdge';
|
|
93690
93874
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
93691
93875
|
deletedCalendar?: Maybe<TrelloProviderCalendarDeleted>;
|
|
93692
93876
|
node?: Maybe<TrelloPlannerProviderCalendar>;
|
|
93693
93877
|
};
|
|
93878
|
+
export declare type TrelloPlannerProviderCalendarEdgeUpdated = {
|
|
93879
|
+
__typename?: 'TrelloPlannerProviderCalendarEdgeUpdated';
|
|
93880
|
+
node?: Maybe<TrelloPlannerProviderCalendarUpdated>;
|
|
93881
|
+
};
|
|
93882
|
+
export declare type TrelloPlannerProviderCalendarUpdated = {
|
|
93883
|
+
__typename?: 'TrelloPlannerProviderCalendarUpdated';
|
|
93884
|
+
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
93885
|
+
id: Scalars['ID']['output'];
|
|
93886
|
+
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
93887
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
93888
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
93889
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
93890
|
+
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
93891
|
+
};
|
|
93694
93892
|
export declare type TrelloPlannerUpdated = {
|
|
93695
93893
|
__typename?: 'TrelloPlannerUpdated';
|
|
93696
93894
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
@@ -93963,16 +94161,16 @@ export declare type TrelloStickerUpdatedConnection = {
|
|
|
93963
94161
|
};
|
|
93964
94162
|
export declare type TrelloSubscriptionApi = {
|
|
93965
94163
|
__typename?: 'TrelloSubscriptionApi';
|
|
94164
|
+
onBoardCardSetUpdated?: Maybe<TrelloBoardUpdated>;
|
|
93966
94165
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
93967
|
-
onCardsUpdated?: Maybe<TrelloBoardUpdated>;
|
|
93968
94166
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
93969
94167
|
onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
|
|
93970
94168
|
};
|
|
93971
|
-
export declare type
|
|
94169
|
+
export declare type TrelloSubscriptionApiOnBoardCardSetUpdatedArgs = {
|
|
93972
94170
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
93973
94171
|
id: Scalars['ID']['input'];
|
|
93974
94172
|
};
|
|
93975
|
-
export declare type
|
|
94173
|
+
export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
93976
94174
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
93977
94175
|
id: Scalars['ID']['input'];
|
|
93978
94176
|
};
|
|
@@ -96104,6 +96302,12 @@ export declare type UserPreferencesInput = {
|
|
|
96104
96302
|
theme?: InputMaybe<Scalars['String']['input']>;
|
|
96105
96303
|
topNavigationOptedOut?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96106
96304
|
};
|
|
96305
|
+
export declare type UserSettings = {
|
|
96306
|
+
__typename?: 'UserSettings';
|
|
96307
|
+
id: Scalars['ID']['output'];
|
|
96308
|
+
starredExperiences: Array<Experience>;
|
|
96309
|
+
username: Scalars['String']['output'];
|
|
96310
|
+
};
|
|
96107
96311
|
export declare type UserWithPermissionsInput = {
|
|
96108
96312
|
accountId: Scalars['ID']['input'];
|
|
96109
96313
|
operations: Array<InputMaybe<OperationCheckResultInput>>;
|