@forge/cli-shared 7.0.0-next.4 → 7.0.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 +13 -0
- package/out/graphql/graphql-types.d.ts +209 -4
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +23 -13
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 7.0.0-next.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [b25d06e]
|
|
8
|
+
- @forge/manifest@9.4.0-next.2
|
|
9
|
+
|
|
10
|
+
## 7.0.0-next.5
|
|
11
|
+
|
|
12
|
+
### Major Changes
|
|
13
|
+
|
|
14
|
+
- 27f557d: Improve forge tunnel debugFunctionHandlers error handling
|
|
15
|
+
|
|
3
16
|
## 7.0.0-next.4
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -5464,17 +5464,36 @@ export declare enum CompassBuildEventState {
|
|
|
5464
5464
|
}
|
|
5465
5465
|
export declare type CompassCampaign = Node & {
|
|
5466
5466
|
__typename?: 'CompassCampaign';
|
|
5467
|
+
appliedToComponents?: Maybe<CompassGoalAppliedToComponentsConnection>;
|
|
5467
5468
|
createdByUser?: Maybe<User>;
|
|
5469
|
+
criteriaScoreStatisticsHistories?: Maybe<CompassScorecardCriteriaScoreStatisticsHistoryConnection>;
|
|
5468
5470
|
description?: Maybe<Scalars['String']['output']>;
|
|
5469
5471
|
dueDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5472
|
+
filters?: Maybe<CompassGoalFilters>;
|
|
5470
5473
|
goal?: Maybe<TownsquareGoal>;
|
|
5471
5474
|
goalId?: Maybe<Scalars['ID']['output']>;
|
|
5472
5475
|
id: Scalars['ID']['output'];
|
|
5473
5476
|
name?: Maybe<Scalars['String']['output']>;
|
|
5474
5477
|
scorecard?: Maybe<CompassScorecard>;
|
|
5478
|
+
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
5475
5479
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5476
5480
|
status?: Maybe<Scalars['String']['output']>;
|
|
5477
5481
|
};
|
|
5482
|
+
export declare type CompassCampaignAppliedToComponentsArgs = {
|
|
5483
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5484
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5485
|
+
query?: InputMaybe<CompassGoalAppliedToComponentsQuery>;
|
|
5486
|
+
};
|
|
5487
|
+
export declare type CompassCampaignCriteriaScoreStatisticsHistoriesArgs = {
|
|
5488
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5489
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5490
|
+
query?: InputMaybe<CompassGoalCriteriaScoreStatisticsHistoryQuery>;
|
|
5491
|
+
};
|
|
5492
|
+
export declare type CompassCampaignScorecardScoreStatisticsHistoriesArgs = {
|
|
5493
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5494
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5495
|
+
query?: InputMaybe<CompassGoalScoreStatisticsHistoryQuery>;
|
|
5496
|
+
};
|
|
5478
5497
|
export declare type CompassCampaignConnection = {
|
|
5479
5498
|
__typename?: 'CompassCampaignConnection';
|
|
5480
5499
|
edges?: Maybe<Array<CompassCampaignEdge>>;
|
|
@@ -7894,6 +7913,54 @@ export declare type CompassGlobalPermissions = {
|
|
|
7894
7913
|
viewMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
7895
7914
|
};
|
|
7896
7915
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
7916
|
+
export declare type CompassGoalAppliedToComponentsConnection = {
|
|
7917
|
+
__typename?: 'CompassGoalAppliedToComponentsConnection';
|
|
7918
|
+
edges?: Maybe<Array<CompassGoalAppliedToComponentsEdge>>;
|
|
7919
|
+
nodes?: Maybe<Array<CompassComponent>>;
|
|
7920
|
+
pageInfo: PageInfo;
|
|
7921
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
7922
|
+
};
|
|
7923
|
+
export declare type CompassGoalAppliedToComponentsEdge = {
|
|
7924
|
+
__typename?: 'CompassGoalAppliedToComponentsEdge';
|
|
7925
|
+
cursor: Scalars['String']['output'];
|
|
7926
|
+
node?: Maybe<CompassComponent>;
|
|
7927
|
+
};
|
|
7928
|
+
export declare type CompassGoalAppliedToComponentsQuery = {
|
|
7929
|
+
sort?: InputMaybe<CompassGoalAppliedToComponentsQuerySort>;
|
|
7930
|
+
};
|
|
7931
|
+
export declare type CompassGoalAppliedToComponentsQuerySort = {
|
|
7932
|
+
name: Scalars['String']['input'];
|
|
7933
|
+
order: CompassQuerySortOrder;
|
|
7934
|
+
};
|
|
7935
|
+
export declare type CompassGoalCriteriaScoreStatisticsHistoryQuery = {
|
|
7936
|
+
filter?: InputMaybe<CompassGoalCriteriaScoreStatisticsHistoryQueryFilter>;
|
|
7937
|
+
};
|
|
7938
|
+
export declare type CompassGoalCriteriaScoreStatisticsHistoryQueryFilter = {
|
|
7939
|
+
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
7940
|
+
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
7941
|
+
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
7942
|
+
};
|
|
7943
|
+
export declare type CompassGoalFilters = {
|
|
7944
|
+
__typename?: 'CompassGoalFilters';
|
|
7945
|
+
applicationTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
7946
|
+
componentLabels?: Maybe<Array<Scalars['String']['output']>>;
|
|
7947
|
+
componentOwnerIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
7948
|
+
componentTiers?: Maybe<Array<Scalars['String']['output']>>;
|
|
7949
|
+
};
|
|
7950
|
+
export declare type CompassGoalFiltersInput = {
|
|
7951
|
+
applicationTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7952
|
+
componentLabels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7953
|
+
componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7954
|
+
componentTiers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7955
|
+
};
|
|
7956
|
+
export declare type CompassGoalScoreStatisticsHistoryQuery = {
|
|
7957
|
+
filter?: InputMaybe<CompassGoalScoreStatisticsHistoryQueryFilter>;
|
|
7958
|
+
};
|
|
7959
|
+
export declare type CompassGoalScoreStatisticsHistoryQueryFilter = {
|
|
7960
|
+
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
7961
|
+
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
7962
|
+
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
7963
|
+
};
|
|
7897
7964
|
export declare type CompassHasCustomBooleanFieldLibraryScorecardCriterion = CompassLibraryScorecardCriterion & {
|
|
7898
7965
|
__typename?: 'CompassHasCustomBooleanFieldLibraryScorecardCriterion';
|
|
7899
7966
|
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
@@ -8992,6 +9059,13 @@ export declare type CompassScorecardCriteria = {
|
|
|
8992
9059
|
export declare type CompassScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
8993
9060
|
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
8994
9061
|
};
|
|
9062
|
+
export declare type CompassScorecardCriteriaMaturityScore = {
|
|
9063
|
+
__typename?: 'CompassScorecardCriteriaMaturityScore';
|
|
9064
|
+
dataSourceLastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
9065
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
9066
|
+
metadata?: Maybe<CompassScorecardCriterionScoreMetadata>;
|
|
9067
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
9068
|
+
};
|
|
8995
9069
|
export declare type CompassScorecardCriteriaScore = {
|
|
8996
9070
|
__typename?: 'CompassScorecardCriteriaScore';
|
|
8997
9071
|
dataSourceLastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -9305,6 +9379,28 @@ export declare type CompassScorecardManualApplicationModel = CompassScorecardApp
|
|
|
9305
9379
|
__typename?: 'CompassScorecardManualApplicationModel';
|
|
9306
9380
|
applicationType: Scalars['String']['output'];
|
|
9307
9381
|
};
|
|
9382
|
+
export declare type CompassScorecardMaturityGroupCriteriaScores = {
|
|
9383
|
+
__typename?: 'CompassScorecardMaturityGroupCriteriaScores';
|
|
9384
|
+
criteriaScores?: Maybe<Array<CompassScorecardCriteriaMaturityScore>>;
|
|
9385
|
+
maturityGroup?: Maybe<CompassScorecardMaturityLevel>;
|
|
9386
|
+
passingCount?: Maybe<Scalars['Int']['output']>;
|
|
9387
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
9388
|
+
};
|
|
9389
|
+
export declare type CompassScorecardMaturityLevel = {
|
|
9390
|
+
__typename?: 'CompassScorecardMaturityLevel';
|
|
9391
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
9392
|
+
id: Scalars['ID']['output'];
|
|
9393
|
+
};
|
|
9394
|
+
export declare type CompassScorecardMaturityLevelAwarded = {
|
|
9395
|
+
__typename?: 'CompassScorecardMaturityLevelAwarded';
|
|
9396
|
+
maturityGroupCriteriaScores?: Maybe<Array<CompassScorecardMaturityGroupCriteriaScores>>;
|
|
9397
|
+
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
9398
|
+
maturityLevelDuration?: Maybe<CompassScorecardMaturityLevelDuration>;
|
|
9399
|
+
};
|
|
9400
|
+
export declare type CompassScorecardMaturityLevelDuration = {
|
|
9401
|
+
__typename?: 'CompassScorecardMaturityLevelDuration';
|
|
9402
|
+
since?: Maybe<Scalars['DateTime']['output']>;
|
|
9403
|
+
};
|
|
9308
9404
|
export declare type CompassScorecardMetricCriterionScore = CompassScorecardCriterionScore & {
|
|
9309
9405
|
__typename?: 'CompassScorecardMetricCriterionScore';
|
|
9310
9406
|
criterionId: Scalars['ID']['output'];
|
|
@@ -9396,7 +9492,7 @@ export declare type CompassScorecardScorePoints = {
|
|
|
9396
9492
|
export declare type CompassScorecardScoreQuery = {
|
|
9397
9493
|
componentId: Scalars['ID']['input'];
|
|
9398
9494
|
};
|
|
9399
|
-
export declare type CompassScorecardScoreResult = CompassScorecardScore | QueryError;
|
|
9495
|
+
export declare type CompassScorecardScoreResult = CompassScorecardMaturityLevelAwarded | CompassScorecardScore | QueryError;
|
|
9400
9496
|
export declare type CompassScorecardScoreStatistic = {
|
|
9401
9497
|
__typename?: 'CompassScorecardScoreStatistic';
|
|
9402
9498
|
count: Scalars['Int']['output'];
|
|
@@ -9732,6 +9828,7 @@ export declare type CompassUpdateAnnouncementPayload = Payload & {
|
|
|
9732
9828
|
export declare type CompassUpdateCampaignInput = {
|
|
9733
9829
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
9734
9830
|
dueDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
9831
|
+
filters?: InputMaybe<CompassGoalFiltersInput>;
|
|
9735
9832
|
goalId?: InputMaybe<Scalars['ID']['input']>;
|
|
9736
9833
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
9737
9834
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -22917,6 +23014,12 @@ export declare type DevAiGetSupportedReposArgs = {
|
|
|
22917
23014
|
repoUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
|
|
22918
23015
|
workspaceId: Scalars['ID']['input'];
|
|
22919
23016
|
};
|
|
23017
|
+
export declare type DevAiArchivedTechnicalPlannerJobPayload = Payload & {
|
|
23018
|
+
__typename?: 'DevAiArchivedTechnicalPlannerJobPayload';
|
|
23019
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23020
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
23021
|
+
success: Scalars['Boolean']['output'];
|
|
23022
|
+
};
|
|
22920
23023
|
export declare type DevAiAutodevContinueJobWithPromptPayload = Payload & {
|
|
22921
23024
|
__typename?: 'DevAiAutodevContinueJobWithPromptPayload';
|
|
22922
23025
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -23390,9 +23493,17 @@ export declare enum DevAiSupportedRepoFilterOption {
|
|
|
23390
23493
|
DisabledOnly = "DISABLED_ONLY",
|
|
23391
23494
|
EnabledOnly = "ENABLED_ONLY"
|
|
23392
23495
|
}
|
|
23496
|
+
export declare type DevAiTechnicalPlannerFileCounts = {
|
|
23497
|
+
__typename?: 'DevAiTechnicalPlannerFileCounts';
|
|
23498
|
+
addedCount: Scalars['Int']['output'];
|
|
23499
|
+
deletedCount: Scalars['Int']['output'];
|
|
23500
|
+
modifiedCount: Scalars['Int']['output'];
|
|
23501
|
+
};
|
|
23393
23502
|
export declare type DevAiTechnicalPlannerJob = {
|
|
23394
23503
|
__typename?: 'DevAiTechnicalPlannerJob';
|
|
23504
|
+
createdAt: Scalars['String']['output'];
|
|
23395
23505
|
error?: Maybe<DevAiWorkflowRunError>;
|
|
23506
|
+
fileCounts?: Maybe<DevAiTechnicalPlannerFileCounts>;
|
|
23396
23507
|
id: Scalars['ID']['output'];
|
|
23397
23508
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
23398
23509
|
planAdf?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -32512,6 +32623,8 @@ export declare type GraphStore = {
|
|
|
32512
32623
|
userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
|
|
32513
32624
|
userOwnsPage?: Maybe<GraphStoreSimplifiedUserOwnsPageConnection>;
|
|
32514
32625
|
userOwnsPageInverse?: Maybe<GraphStoreSimplifiedUserOwnsPageInverseConnection>;
|
|
32626
|
+
userReactionVideo?: Maybe<GraphStoreSimplifiedUserReactionVideoConnection>;
|
|
32627
|
+
userReactionVideoInverse?: Maybe<GraphStoreSimplifiedUserReactionVideoInverseConnection>;
|
|
32515
32628
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
32516
32629
|
userReportedIncidentInverse?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseConnection>;
|
|
32517
32630
|
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
@@ -36857,6 +36970,20 @@ export declare type GraphStoreUserOwnsPageInverseArgs = {
|
|
|
36857
36970
|
id: Scalars['ID']['input'];
|
|
36858
36971
|
sort?: InputMaybe<GraphStoreUserOwnsPageSortInput>;
|
|
36859
36972
|
};
|
|
36973
|
+
export declare type GraphStoreUserReactionVideoArgs = {
|
|
36974
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36975
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36976
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36977
|
+
id: Scalars['ID']['input'];
|
|
36978
|
+
sort?: InputMaybe<GraphStoreUserReactionVideoSortInput>;
|
|
36979
|
+
};
|
|
36980
|
+
export declare type GraphStoreUserReactionVideoInverseArgs = {
|
|
36981
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36982
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36983
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36984
|
+
id: Scalars['ID']['input'];
|
|
36985
|
+
sort?: InputMaybe<GraphStoreUserReactionVideoSortInput>;
|
|
36986
|
+
};
|
|
36860
36987
|
export declare type GraphStoreUserReportedIncidentArgs = {
|
|
36861
36988
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36862
36989
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -51025,6 +51152,34 @@ export declare type GraphStoreSimplifiedUserOwnsPageInverseEdge = {
|
|
|
51025
51152
|
};
|
|
51026
51153
|
export declare type GraphStoreSimplifiedUserOwnsPageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51027
51154
|
export declare type GraphStoreSimplifiedUserOwnsPageUnion = ConfluencePage;
|
|
51155
|
+
export declare type GraphStoreSimplifiedUserReactionVideoConnection = HasPageInfo & {
|
|
51156
|
+
__typename?: 'GraphStoreSimplifiedUserReactionVideoConnection';
|
|
51157
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactionVideoEdge>>>;
|
|
51158
|
+
pageInfo: PageInfo;
|
|
51159
|
+
};
|
|
51160
|
+
export declare type GraphStoreSimplifiedUserReactionVideoEdge = {
|
|
51161
|
+
__typename?: 'GraphStoreSimplifiedUserReactionVideoEdge';
|
|
51162
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51163
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51164
|
+
id: Scalars['ID']['output'];
|
|
51165
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51166
|
+
node?: Maybe<GraphStoreSimplifiedUserReactionVideoUnion>;
|
|
51167
|
+
};
|
|
51168
|
+
export declare type GraphStoreSimplifiedUserReactionVideoInverseConnection = HasPageInfo & {
|
|
51169
|
+
__typename?: 'GraphStoreSimplifiedUserReactionVideoInverseConnection';
|
|
51170
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactionVideoInverseEdge>>>;
|
|
51171
|
+
pageInfo: PageInfo;
|
|
51172
|
+
};
|
|
51173
|
+
export declare type GraphStoreSimplifiedUserReactionVideoInverseEdge = {
|
|
51174
|
+
__typename?: 'GraphStoreSimplifiedUserReactionVideoInverseEdge';
|
|
51175
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51176
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51177
|
+
id: Scalars['ID']['output'];
|
|
51178
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51179
|
+
node?: Maybe<GraphStoreSimplifiedUserReactionVideoInverseUnion>;
|
|
51180
|
+
};
|
|
51181
|
+
export declare type GraphStoreSimplifiedUserReactionVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51182
|
+
export declare type GraphStoreSimplifiedUserReactionVideoUnion = LoomVideo;
|
|
51028
51183
|
export declare type GraphStoreSimplifiedUserReportedIncidentConnection = HasPageInfo & {
|
|
51029
51184
|
__typename?: 'GraphStoreSimplifiedUserReportedIncidentConnection';
|
|
51030
51185
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentEdge>>>;
|
|
@@ -52758,6 +52913,9 @@ export declare type GraphStoreUserOwnsFocusAreaSortInput = {
|
|
|
52758
52913
|
export declare type GraphStoreUserOwnsPageSortInput = {
|
|
52759
52914
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52760
52915
|
};
|
|
52916
|
+
export declare type GraphStoreUserReactionVideoSortInput = {
|
|
52917
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52918
|
+
};
|
|
52761
52919
|
export declare type GraphStoreUserReportedIncidentSortInput = {
|
|
52762
52920
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52763
52921
|
};
|
|
@@ -53310,12 +53468,14 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
53310
53468
|
d0Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
53311
53469
|
d1to6Active?: Maybe<Scalars['Boolean']['output']>;
|
|
53312
53470
|
d1to6Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
53471
|
+
firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
|
|
53313
53472
|
isTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
53314
53473
|
nbeRecommendation?: Maybe<GrowthUnifiedProfileProductNbe>;
|
|
53315
53474
|
productEdition?: Maybe<Scalars['String']['output']>;
|
|
53316
53475
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
53317
53476
|
productName?: Maybe<Scalars['String']['output']>;
|
|
53318
53477
|
provisionedAt?: Maybe<Scalars['String']['output']>;
|
|
53478
|
+
trialContext?: Maybe<GrowthUnifiedProfileTrialContext>;
|
|
53319
53479
|
};
|
|
53320
53480
|
export declare enum GrowthUnifiedProfileProductEdition {
|
|
53321
53481
|
Enterprise = "ENTERPRISE",
|
|
@@ -53375,6 +53535,21 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
53375
53535
|
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT",
|
|
53376
53536
|
SoftwareEngineering = "SOFTWARE_ENGINEERING"
|
|
53377
53537
|
}
|
|
53538
|
+
export declare type GrowthUnifiedProfileTrialContext = {
|
|
53539
|
+
__typename?: 'GrowthUnifiedProfileTrialContext';
|
|
53540
|
+
paymentDetailsOnFile?: Maybe<Scalars['Boolean']['output']>;
|
|
53541
|
+
trialEndTimeStamp?: Maybe<Scalars['String']['output']>;
|
|
53542
|
+
trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
|
|
53543
|
+
trialType?: Maybe<GrowthUnifiedProfileTrialType>;
|
|
53544
|
+
};
|
|
53545
|
+
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
53546
|
+
EditionParity = "EDITION_PARITY",
|
|
53547
|
+
ReverseTrial = "REVERSE_TRIAL"
|
|
53548
|
+
}
|
|
53549
|
+
export declare enum GrowthUnifiedProfileTrialType {
|
|
53550
|
+
DirectTrial = "DIRECT_TRIAL",
|
|
53551
|
+
ReverseTrial = "REVERSE_TRIAL"
|
|
53552
|
+
}
|
|
53378
53553
|
export declare type GrowthUnifiedProfileUserActivityContext = {
|
|
53379
53554
|
__typename?: 'GrowthUnifiedProfileUserActivityContext';
|
|
53380
53555
|
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileUserActivitySiteDetails>>>;
|
|
@@ -60831,7 +61006,6 @@ export declare type JiraForgeExtension = {
|
|
|
60831
61006
|
installationId: Scalars['String']['output'];
|
|
60832
61007
|
license?: Maybe<JiraForgeExtensionLicense>;
|
|
60833
61008
|
moduleId?: Maybe<Scalars['ID']['output']>;
|
|
60834
|
-
overrides?: Maybe<Scalars['JSON']['output']>;
|
|
60835
61009
|
properties: Scalars['JSON']['output'];
|
|
60836
61010
|
scopes: Array<Scalars['String']['output']>;
|
|
60837
61011
|
type: Scalars['String']['output'];
|
|
@@ -62123,6 +62297,7 @@ export declare type JiraIssueExportError = {
|
|
|
62123
62297
|
export declare type JiraIssueExportEvent = JiraIssueExportTaskCompleted | JiraIssueExportTaskProgress | JiraIssueExportTaskSubmitted | JiraIssueExportTaskTerminated;
|
|
62124
62298
|
export declare type JiraIssueExportInput = {
|
|
62125
62299
|
cloudId: Scalars['ID']['input'];
|
|
62300
|
+
excludeDoneWorkItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62126
62301
|
exportType?: InputMaybe<JiraIssueExportType>;
|
|
62127
62302
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
62128
62303
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -66689,6 +66864,7 @@ export declare type JiraPlaybookStepOutputKeyValuePair = {
|
|
|
66689
66864
|
export declare type JiraPlaybookStepRun = Node & {
|
|
66690
66865
|
__typename?: 'JiraPlaybookStepRun';
|
|
66691
66866
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
66867
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
66692
66868
|
id: Scalars['ID']['output'];
|
|
66693
66869
|
issue?: Maybe<JiraIssue>;
|
|
66694
66870
|
playbookId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -76215,6 +76391,7 @@ export declare type LogQueryInput = {
|
|
|
76215
76391
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
76216
76392
|
moduleType?: InputMaybe<Scalars['String']['input']>;
|
|
76217
76393
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
76394
|
+
runtime?: InputMaybe<Scalars['String']['input']>;
|
|
76218
76395
|
traceId?: InputMaybe<Scalars['String']['input']>;
|
|
76219
76396
|
};
|
|
76220
76397
|
export declare type LookAndFeel = {
|
|
@@ -76432,6 +76609,8 @@ export declare enum LoomUserStatus {
|
|
|
76432
76609
|
export declare type LoomVideo = Node & {
|
|
76433
76610
|
__typename?: 'LoomVideo';
|
|
76434
76611
|
collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
76612
|
+
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
76613
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
76435
76614
|
description?: Maybe<Scalars['String']['output']>;
|
|
76436
76615
|
id: Scalars['ID']['output'];
|
|
76437
76616
|
isArchived: Scalars['Boolean']['output'];
|
|
@@ -76441,16 +76620,30 @@ export declare type LoomVideo = Node & {
|
|
|
76441
76620
|
owner?: Maybe<User>;
|
|
76442
76621
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
76443
76622
|
playableDuration?: Maybe<Scalars['Float']['output']>;
|
|
76623
|
+
reactionCount?: Maybe<Scalars['Int']['output']>;
|
|
76444
76624
|
sourceDuration?: Maybe<Scalars['Float']['output']>;
|
|
76625
|
+
thumbnails?: Maybe<LoomVideoDefaultThumbnailsSources>;
|
|
76445
76626
|
transcript?: Maybe<LoomTranscript>;
|
|
76446
76627
|
transcriptLanguage?: Maybe<LoomTranscriptLanguage>;
|
|
76628
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
76447
76629
|
url: Scalars['String']['output'];
|
|
76630
|
+
viewCounts?: Maybe<LoomVideoViewCounts>;
|
|
76631
|
+
};
|
|
76632
|
+
export declare type LoomVideoDefaultThumbnailsSources = {
|
|
76633
|
+
__typename?: 'LoomVideoDefaultThumbnailsSources';
|
|
76634
|
+
default?: Maybe<Scalars['String']['output']>;
|
|
76635
|
+
static?: Maybe<Scalars['String']['output']>;
|
|
76448
76636
|
};
|
|
76449
76637
|
export declare type LoomVideoDurations = {
|
|
76450
76638
|
__typename?: 'LoomVideoDurations';
|
|
76451
76639
|
playableDuration?: Maybe<Scalars['Float']['output']>;
|
|
76452
76640
|
sourceDuration?: Maybe<Scalars['Float']['output']>;
|
|
76453
76641
|
};
|
|
76642
|
+
export declare type LoomVideoViewCounts = {
|
|
76643
|
+
__typename?: 'LoomVideoViewCounts';
|
|
76644
|
+
distinct?: Maybe<Scalars['Int']['output']>;
|
|
76645
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
76646
|
+
};
|
|
76454
76647
|
export declare type LpCertSort = {
|
|
76455
76648
|
sortDirection?: InputMaybe<SortDirection>;
|
|
76456
76649
|
sortField?: InputMaybe<LpCertSortField>;
|
|
@@ -77647,7 +77840,6 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
|
77647
77840
|
canViewPartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
77648
77841
|
canViewSalesReport: Scalars['Boolean']['output'];
|
|
77649
77842
|
canViewUsageReports: Scalars['Boolean']['output'];
|
|
77650
|
-
hasPartnerAdminRole: Scalars['Boolean']['output'];
|
|
77651
77843
|
isMarketplaceReader: Scalars['Boolean']['output'];
|
|
77652
77844
|
isPartnerAdmin: Scalars['Boolean']['output'];
|
|
77653
77845
|
isSiteAdmin: Scalars['Boolean']['output'];
|
|
@@ -81681,6 +81873,8 @@ export declare type Mutation = {
|
|
|
81681
81873
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
81682
81874
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
81683
81875
|
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
81876
|
+
channelPlatform_createAttendee?: Maybe<ChannelPlatformConnectionData>;
|
|
81877
|
+
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
81684
81878
|
channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
|
|
81685
81879
|
channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
|
|
81686
81880
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
@@ -81980,6 +82174,7 @@ export declare type Mutation = {
|
|
|
81980
82174
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
81981
82175
|
devAi?: Maybe<DevAiMutations>;
|
|
81982
82176
|
devOps?: Maybe<DevOpsMutation>;
|
|
82177
|
+
devai_archiveTechnicalPlannerJob?: Maybe<DevAiArchivedTechnicalPlannerJobPayload>;
|
|
81983
82178
|
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
81984
82179
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
81985
82180
|
devai_createFlow?: Maybe<DevAiFlowSessionCreatePayload>;
|
|
@@ -82378,6 +82573,13 @@ export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
|
82378
82573
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
82379
82574
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
82380
82575
|
};
|
|
82576
|
+
export declare type MutationChannelPlatform_CreateAttendeeArgs = {
|
|
82577
|
+
meetingId?: InputMaybe<Scalars['String']['input']>;
|
|
82578
|
+
};
|
|
82579
|
+
export declare type MutationChannelPlatform_CreateMeetingDetailsArgs = {
|
|
82580
|
+
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
82581
|
+
requestUuid?: InputMaybe<Scalars['String']['input']>;
|
|
82582
|
+
};
|
|
82381
82583
|
export declare type MutationChannelPlatform_CreateQueuesArgs = {
|
|
82382
82584
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
82383
82585
|
hoursOfOperationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -83354,6 +83556,10 @@ export declare type MutationDeleteTemplateArgs = {
|
|
|
83354
83556
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
83355
83557
|
id: Scalars['ID']['input'];
|
|
83356
83558
|
};
|
|
83559
|
+
export declare type MutationDevai_ArchiveTechnicalPlannerJobArgs = {
|
|
83560
|
+
cloudId: Scalars['ID']['input'];
|
|
83561
|
+
jobId: Scalars['ID']['input'];
|
|
83562
|
+
};
|
|
83357
83563
|
export declare type MutationDevai_CompleteFlowSessionArgs = {
|
|
83358
83564
|
id: Scalars['ID']['input'];
|
|
83359
83565
|
};
|
|
@@ -105363,7 +105569,6 @@ export declare type WorkSuggestionsUserProfile = {
|
|
|
105363
105569
|
__typename?: 'WorkSuggestionsUserProfile';
|
|
105364
105570
|
aaid: Scalars['String']['output'];
|
|
105365
105571
|
createdOn: Scalars['String']['output'];
|
|
105366
|
-
id: Scalars['String']['output'];
|
|
105367
105572
|
persona?: Maybe<WorkSuggestionsUserPersona>;
|
|
105368
105573
|
projectAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
105369
105574
|
};
|