@forge/cli-shared 7.0.0-next.5 → 7.0.0-next.6-experimental-786d4ac
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 +30 -0
- package/out/graphql/graphql-types.d.ts +205 -4
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +23 -13
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 7.0.0-next.6-experimental-786d4ac
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 27f557d: Improve forge tunnel debugFunctionHandlers error handling
|
|
8
|
+
- 3b2ffa9: updated the type of appVersion
|
|
9
|
+
- 3b2ffa9: update appVersion type in logs command
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 30d2f61: Add forge container tunnel MVP
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- a23892e: Update the variable name
|
|
18
|
+
- b011fe9: Add Forge container docker registry authentication
|
|
19
|
+
- 3af315d: Use .cjs extension for the single wrapper
|
|
20
|
+
- 7c02425: Unhide forge build commands
|
|
21
|
+
- Updated dependencies [35165ba]
|
|
22
|
+
- Updated dependencies [fe7e7e9]
|
|
23
|
+
- Updated dependencies [b25d06e]
|
|
24
|
+
- @forge/manifest@9.4.0-next.2-experimental-786d4ac
|
|
25
|
+
|
|
26
|
+
## 7.0.0-next.6
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [b25d06e]
|
|
31
|
+
- @forge/manifest@9.4.0-next.2
|
|
32
|
+
|
|
3
33
|
## 7.0.0-next.5
|
|
4
34
|
|
|
5
35
|
### Major Changes
|
|
@@ -9059,6 +9059,13 @@ export declare type CompassScorecardCriteria = {
|
|
|
9059
9059
|
export declare type CompassScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
9060
9060
|
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
9061
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
|
+
};
|
|
9062
9069
|
export declare type CompassScorecardCriteriaScore = {
|
|
9063
9070
|
__typename?: 'CompassScorecardCriteriaScore';
|
|
9064
9071
|
dataSourceLastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -9372,6 +9379,28 @@ export declare type CompassScorecardManualApplicationModel = CompassScorecardApp
|
|
|
9372
9379
|
__typename?: 'CompassScorecardManualApplicationModel';
|
|
9373
9380
|
applicationType: Scalars['String']['output'];
|
|
9374
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
|
+
};
|
|
9375
9404
|
export declare type CompassScorecardMetricCriterionScore = CompassScorecardCriterionScore & {
|
|
9376
9405
|
__typename?: 'CompassScorecardMetricCriterionScore';
|
|
9377
9406
|
criterionId: Scalars['ID']['output'];
|
|
@@ -9463,7 +9492,7 @@ export declare type CompassScorecardScorePoints = {
|
|
|
9463
9492
|
export declare type CompassScorecardScoreQuery = {
|
|
9464
9493
|
componentId: Scalars['ID']['input'];
|
|
9465
9494
|
};
|
|
9466
|
-
export declare type CompassScorecardScoreResult = CompassScorecardScore | QueryError;
|
|
9495
|
+
export declare type CompassScorecardScoreResult = CompassScorecardMaturityLevelAwarded | CompassScorecardScore | QueryError;
|
|
9467
9496
|
export declare type CompassScorecardScoreStatistic = {
|
|
9468
9497
|
__typename?: 'CompassScorecardScoreStatistic';
|
|
9469
9498
|
count: Scalars['Int']['output'];
|
|
@@ -25215,6 +25244,7 @@ export declare type EcosystemMutation = {
|
|
|
25215
25244
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
25216
25245
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
25217
25246
|
publishAppClientEvent?: Maybe<EcosystemPublishEventBody>;
|
|
25247
|
+
publishRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
25218
25248
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
25219
25249
|
updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
|
|
25220
25250
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
@@ -25259,6 +25289,12 @@ export declare type EcosystemMutationPublishAppClientEventArgs = {
|
|
|
25259
25289
|
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
25260
25290
|
payload: Scalars['String']['input'];
|
|
25261
25291
|
};
|
|
25292
|
+
export declare type EcosystemMutationPublishRealtimeChannelArgs = {
|
|
25293
|
+
context?: InputMaybe<Scalars['String']['input']>;
|
|
25294
|
+
installationId: Scalars['ID']['input'];
|
|
25295
|
+
name: Scalars['String']['input'];
|
|
25296
|
+
payload: Scalars['String']['input'];
|
|
25297
|
+
};
|
|
25262
25298
|
export declare type EcosystemMutationRemoveAppContributorsArgs = {
|
|
25263
25299
|
input: RemoveAppContributorsInput;
|
|
25264
25300
|
};
|
|
@@ -25410,6 +25446,15 @@ export declare type EcosystemQueryUserGrantsArgs = {
|
|
|
25410
25446
|
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
25411
25447
|
cloudId: Scalars['ID']['input'];
|
|
25412
25448
|
};
|
|
25449
|
+
export declare type EcosystemRealtimePublishBody = {
|
|
25450
|
+
__typename?: 'EcosystemRealtimePublishBody';
|
|
25451
|
+
eventId?: Maybe<Scalars['String']['output']>;
|
|
25452
|
+
eventTimestamp?: Maybe<Scalars['Int']['output']>;
|
|
25453
|
+
};
|
|
25454
|
+
export declare type EcosystemRealtimeSubscriptionBody = {
|
|
25455
|
+
__typename?: 'EcosystemRealtimeSubscriptionBody';
|
|
25456
|
+
payload?: Maybe<Scalars['String']['output']>;
|
|
25457
|
+
};
|
|
25413
25458
|
export declare enum EcosystemRequiredProduct {
|
|
25414
25459
|
Compass = "COMPASS",
|
|
25415
25460
|
Confluence = "CONFLUENCE",
|
|
@@ -25418,6 +25463,7 @@ export declare enum EcosystemRequiredProduct {
|
|
|
25418
25463
|
export declare type EcosystemSubscription = {
|
|
25419
25464
|
__typename?: 'EcosystemSubscription';
|
|
25420
25465
|
onAppClientEvent?: Maybe<EcosystemOnEventBody>;
|
|
25466
|
+
realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
25421
25467
|
};
|
|
25422
25468
|
export declare type EcosystemSubscriptionOnAppClientEventArgs = {
|
|
25423
25469
|
appId: Scalars['ID']['input'];
|
|
@@ -25425,6 +25471,11 @@ export declare type EcosystemSubscriptionOnAppClientEventArgs = {
|
|
|
25425
25471
|
contextAri: Scalars['ID']['input'];
|
|
25426
25472
|
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
25427
25473
|
};
|
|
25474
|
+
export declare type EcosystemSubscriptionRealtimeChannelArgs = {
|
|
25475
|
+
context?: InputMaybe<Scalars['String']['input']>;
|
|
25476
|
+
installationId: Scalars['ID']['input'];
|
|
25477
|
+
name: Scalars['String']['input'];
|
|
25478
|
+
};
|
|
25428
25479
|
export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
|
|
25429
25480
|
__typename?: 'EcosystemUpdateAppOAuthClientResult';
|
|
25430
25481
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -26179,6 +26230,7 @@ export declare type ExternalDeal = Node & {
|
|
|
26179
26230
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
26180
26231
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
26181
26232
|
url?: Maybe<Scalars['String']['output']>;
|
|
26233
|
+
userContributors?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
26182
26234
|
};
|
|
26183
26235
|
export declare type ExternalDealLastActivity = {
|
|
26184
26236
|
__typename?: 'ExternalDealLastActivity';
|
|
@@ -32067,6 +32119,8 @@ export declare type GraphStore = {
|
|
|
32067
32119
|
deploymentAssociatedRepoInverse?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoInverseConnection>;
|
|
32068
32120
|
deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
|
|
32069
32121
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
32122
|
+
entityHasTopicInferredEntity?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityConnection>;
|
|
32123
|
+
entityHasTopicInferredEntityInverse?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityInverseConnection>;
|
|
32070
32124
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
32071
32125
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
32072
32126
|
externalOrgHasExternalPosition?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionConnection>;
|
|
@@ -32594,6 +32648,8 @@ export declare type GraphStore = {
|
|
|
32594
32648
|
userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
|
|
32595
32649
|
userOwnsPage?: Maybe<GraphStoreSimplifiedUserOwnsPageConnection>;
|
|
32596
32650
|
userOwnsPageInverse?: Maybe<GraphStoreSimplifiedUserOwnsPageInverseConnection>;
|
|
32651
|
+
userReactionVideo?: Maybe<GraphStoreSimplifiedUserReactionVideoConnection>;
|
|
32652
|
+
userReactionVideoInverse?: Maybe<GraphStoreSimplifiedUserReactionVideoInverseConnection>;
|
|
32597
32653
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
32598
32654
|
userReportedIncidentInverse?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseConnection>;
|
|
32599
32655
|
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
@@ -33431,6 +33487,20 @@ export declare type GraphStoreDeploymentContainsCommitInverseArgs = {
|
|
|
33431
33487
|
id: Scalars['ID']['input'];
|
|
33432
33488
|
sort?: InputMaybe<GraphStoreDeploymentContainsCommitSortInput>;
|
|
33433
33489
|
};
|
|
33490
|
+
export declare type GraphStoreEntityHasTopicInferredEntityArgs = {
|
|
33491
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33492
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33493
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33494
|
+
id: Scalars['ID']['input'];
|
|
33495
|
+
sort?: InputMaybe<GraphStoreEntityHasTopicInferredEntitySortInput>;
|
|
33496
|
+
};
|
|
33497
|
+
export declare type GraphStoreEntityHasTopicInferredEntityInverseArgs = {
|
|
33498
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33499
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33500
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33501
|
+
id: Scalars['ID']['input'];
|
|
33502
|
+
sort?: InputMaybe<GraphStoreEntityHasTopicInferredEntitySortInput>;
|
|
33503
|
+
};
|
|
33434
33504
|
export declare type GraphStoreEntityIsRelatedToEntityArgs = {
|
|
33435
33505
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33436
33506
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36939,6 +37009,20 @@ export declare type GraphStoreUserOwnsPageInverseArgs = {
|
|
|
36939
37009
|
id: Scalars['ID']['input'];
|
|
36940
37010
|
sort?: InputMaybe<GraphStoreUserOwnsPageSortInput>;
|
|
36941
37011
|
};
|
|
37012
|
+
export declare type GraphStoreUserReactionVideoArgs = {
|
|
37013
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37014
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37015
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37016
|
+
id: Scalars['ID']['input'];
|
|
37017
|
+
sort?: InputMaybe<GraphStoreUserReactionVideoSortInput>;
|
|
37018
|
+
};
|
|
37019
|
+
export declare type GraphStoreUserReactionVideoInverseArgs = {
|
|
37020
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37021
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37022
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37023
|
+
id: Scalars['ID']['input'];
|
|
37024
|
+
sort?: InputMaybe<GraphStoreUserReactionVideoSortInput>;
|
|
37025
|
+
};
|
|
36942
37026
|
export declare type GraphStoreUserReportedIncidentArgs = {
|
|
36943
37027
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36944
37028
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39703,6 +39787,9 @@ export declare type GraphStoreDeploymentAssociatedRepoSortInput = {
|
|
|
39703
39787
|
export declare type GraphStoreDeploymentContainsCommitSortInput = {
|
|
39704
39788
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39705
39789
|
};
|
|
39790
|
+
export declare type GraphStoreEntityHasTopicInferredEntitySortInput = {
|
|
39791
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39792
|
+
};
|
|
39706
39793
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
39707
39794
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39708
39795
|
};
|
|
@@ -45687,6 +45774,34 @@ export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseEdge = {
|
|
|
45687
45774
|
};
|
|
45688
45775
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseUnion = DeploymentSummary | ExternalDeployment;
|
|
45689
45776
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitUnion = ExternalCommit;
|
|
45777
|
+
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityConnection = HasPageInfo & {
|
|
45778
|
+
__typename?: 'GraphStoreSimplifiedEntityHasTopicInferredEntityConnection';
|
|
45779
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityEdge>>>;
|
|
45780
|
+
pageInfo: PageInfo;
|
|
45781
|
+
};
|
|
45782
|
+
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityEdge = {
|
|
45783
|
+
__typename?: 'GraphStoreSimplifiedEntityHasTopicInferredEntityEdge';
|
|
45784
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45785
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45786
|
+
id: Scalars['ID']['output'];
|
|
45787
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45788
|
+
node?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityUnion>;
|
|
45789
|
+
};
|
|
45790
|
+
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityInverseConnection = HasPageInfo & {
|
|
45791
|
+
__typename?: 'GraphStoreSimplifiedEntityHasTopicInferredEntityInverseConnection';
|
|
45792
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityInverseEdge>>>;
|
|
45793
|
+
pageInfo: PageInfo;
|
|
45794
|
+
};
|
|
45795
|
+
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityInverseEdge = {
|
|
45796
|
+
__typename?: 'GraphStoreSimplifiedEntityHasTopicInferredEntityInverseEdge';
|
|
45797
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45798
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45799
|
+
id: Scalars['ID']['output'];
|
|
45800
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45801
|
+
node?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityInverseUnion>;
|
|
45802
|
+
};
|
|
45803
|
+
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityInverseUnion = ConfluencePage;
|
|
45804
|
+
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
45690
45805
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityConnection = HasPageInfo & {
|
|
45691
45806
|
__typename?: 'GraphStoreSimplifiedEntityIsRelatedToEntityConnection';
|
|
45692
45807
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityEdge>>>;
|
|
@@ -51107,6 +51222,34 @@ export declare type GraphStoreSimplifiedUserOwnsPageInverseEdge = {
|
|
|
51107
51222
|
};
|
|
51108
51223
|
export declare type GraphStoreSimplifiedUserOwnsPageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51109
51224
|
export declare type GraphStoreSimplifiedUserOwnsPageUnion = ConfluencePage;
|
|
51225
|
+
export declare type GraphStoreSimplifiedUserReactionVideoConnection = HasPageInfo & {
|
|
51226
|
+
__typename?: 'GraphStoreSimplifiedUserReactionVideoConnection';
|
|
51227
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactionVideoEdge>>>;
|
|
51228
|
+
pageInfo: PageInfo;
|
|
51229
|
+
};
|
|
51230
|
+
export declare type GraphStoreSimplifiedUserReactionVideoEdge = {
|
|
51231
|
+
__typename?: 'GraphStoreSimplifiedUserReactionVideoEdge';
|
|
51232
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51233
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51234
|
+
id: Scalars['ID']['output'];
|
|
51235
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51236
|
+
node?: Maybe<GraphStoreSimplifiedUserReactionVideoUnion>;
|
|
51237
|
+
};
|
|
51238
|
+
export declare type GraphStoreSimplifiedUserReactionVideoInverseConnection = HasPageInfo & {
|
|
51239
|
+
__typename?: 'GraphStoreSimplifiedUserReactionVideoInverseConnection';
|
|
51240
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactionVideoInverseEdge>>>;
|
|
51241
|
+
pageInfo: PageInfo;
|
|
51242
|
+
};
|
|
51243
|
+
export declare type GraphStoreSimplifiedUserReactionVideoInverseEdge = {
|
|
51244
|
+
__typename?: 'GraphStoreSimplifiedUserReactionVideoInverseEdge';
|
|
51245
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51246
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51247
|
+
id: Scalars['ID']['output'];
|
|
51248
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51249
|
+
node?: Maybe<GraphStoreSimplifiedUserReactionVideoInverseUnion>;
|
|
51250
|
+
};
|
|
51251
|
+
export declare type GraphStoreSimplifiedUserReactionVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51252
|
+
export declare type GraphStoreSimplifiedUserReactionVideoUnion = LoomVideo;
|
|
51110
51253
|
export declare type GraphStoreSimplifiedUserReportedIncidentConnection = HasPageInfo & {
|
|
51111
51254
|
__typename?: 'GraphStoreSimplifiedUserReportedIncidentConnection';
|
|
51112
51255
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentEdge>>>;
|
|
@@ -52840,6 +52983,9 @@ export declare type GraphStoreUserOwnsFocusAreaSortInput = {
|
|
|
52840
52983
|
export declare type GraphStoreUserOwnsPageSortInput = {
|
|
52841
52984
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52842
52985
|
};
|
|
52986
|
+
export declare type GraphStoreUserReactionVideoSortInput = {
|
|
52987
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52988
|
+
};
|
|
52843
52989
|
export declare type GraphStoreUserReportedIncidentSortInput = {
|
|
52844
52990
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52845
52991
|
};
|
|
@@ -53392,12 +53538,14 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
53392
53538
|
d0Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
53393
53539
|
d1to6Active?: Maybe<Scalars['Boolean']['output']>;
|
|
53394
53540
|
d1to6Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
53541
|
+
firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
|
|
53395
53542
|
isTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
53396
53543
|
nbeRecommendation?: Maybe<GrowthUnifiedProfileProductNbe>;
|
|
53397
53544
|
productEdition?: Maybe<Scalars['String']['output']>;
|
|
53398
53545
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
53399
53546
|
productName?: Maybe<Scalars['String']['output']>;
|
|
53400
53547
|
provisionedAt?: Maybe<Scalars['String']['output']>;
|
|
53548
|
+
trialContext?: Maybe<GrowthUnifiedProfileTrialContext>;
|
|
53401
53549
|
};
|
|
53402
53550
|
export declare enum GrowthUnifiedProfileProductEdition {
|
|
53403
53551
|
Enterprise = "ENTERPRISE",
|
|
@@ -53457,6 +53605,21 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
53457
53605
|
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT",
|
|
53458
53606
|
SoftwareEngineering = "SOFTWARE_ENGINEERING"
|
|
53459
53607
|
}
|
|
53608
|
+
export declare type GrowthUnifiedProfileTrialContext = {
|
|
53609
|
+
__typename?: 'GrowthUnifiedProfileTrialContext';
|
|
53610
|
+
paymentDetailsOnFile?: Maybe<Scalars['Boolean']['output']>;
|
|
53611
|
+
trialEndTimeStamp?: Maybe<Scalars['String']['output']>;
|
|
53612
|
+
trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
|
|
53613
|
+
trialType?: Maybe<GrowthUnifiedProfileTrialType>;
|
|
53614
|
+
};
|
|
53615
|
+
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
53616
|
+
EditionParity = "EDITION_PARITY",
|
|
53617
|
+
ReverseTrial = "REVERSE_TRIAL"
|
|
53618
|
+
}
|
|
53619
|
+
export declare enum GrowthUnifiedProfileTrialType {
|
|
53620
|
+
DirectTrial = "DIRECT_TRIAL",
|
|
53621
|
+
ReverseTrial = "REVERSE_TRIAL"
|
|
53622
|
+
}
|
|
53460
53623
|
export declare type GrowthUnifiedProfileUserActivityContext = {
|
|
53461
53624
|
__typename?: 'GrowthUnifiedProfileUserActivityContext';
|
|
53462
53625
|
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileUserActivitySiteDetails>>>;
|
|
@@ -60913,7 +61076,6 @@ export declare type JiraForgeExtension = {
|
|
|
60913
61076
|
installationId: Scalars['String']['output'];
|
|
60914
61077
|
license?: Maybe<JiraForgeExtensionLicense>;
|
|
60915
61078
|
moduleId?: Maybe<Scalars['ID']['output']>;
|
|
60916
|
-
overrides?: Maybe<Scalars['JSON']['output']>;
|
|
60917
61079
|
properties: Scalars['JSON']['output'];
|
|
60918
61080
|
scopes: Array<Scalars['String']['output']>;
|
|
60919
61081
|
type: Scalars['String']['output'];
|
|
@@ -61463,6 +61625,10 @@ export declare type JiraGroup = Node & {
|
|
|
61463
61625
|
id: Scalars['ID']['output'];
|
|
61464
61626
|
name: Scalars['String']['output'];
|
|
61465
61627
|
};
|
|
61628
|
+
export declare type JiraGroupByDropdownFilter = {
|
|
61629
|
+
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
61630
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
61631
|
+
};
|
|
61466
61632
|
export declare type JiraGroupConnection = {
|
|
61467
61633
|
__typename?: 'JiraGroupConnection';
|
|
61468
61634
|
edges?: Maybe<Array<Maybe<JiraGroupEdge>>>;
|
|
@@ -62205,6 +62371,7 @@ export declare type JiraIssueExportError = {
|
|
|
62205
62371
|
export declare type JiraIssueExportEvent = JiraIssueExportTaskCompleted | JiraIssueExportTaskProgress | JiraIssueExportTaskSubmitted | JiraIssueExportTaskTerminated;
|
|
62206
62372
|
export declare type JiraIssueExportInput = {
|
|
62207
62373
|
cloudId: Scalars['ID']['input'];
|
|
62374
|
+
excludeDoneWorkItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62208
62375
|
exportType?: InputMaybe<JiraIssueExportType>;
|
|
62209
62376
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
62210
62377
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -66771,6 +66938,7 @@ export declare type JiraPlaybookStepOutputKeyValuePair = {
|
|
|
66771
66938
|
export declare type JiraPlaybookStepRun = Node & {
|
|
66772
66939
|
__typename?: 'JiraPlaybookStepRun';
|
|
66773
66940
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
66941
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
66774
66942
|
id: Scalars['ID']['output'];
|
|
66775
66943
|
issue?: Maybe<JiraIssue>;
|
|
66776
66944
|
playbookId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -71657,14 +71825,23 @@ export declare type JiraSpreadsheetGroupByConfig = {
|
|
|
71657
71825
|
__typename?: 'JiraSpreadsheetGroupByConfig';
|
|
71658
71826
|
availableGroupByFieldOptions?: Maybe<JiraSpreadsheetGroupByFieldOptionConnection>;
|
|
71659
71827
|
groupByField?: Maybe<JiraField>;
|
|
71828
|
+
recentlyUsed?: Maybe<JiraSpreadsheetGroupByFieldOptionConnection>;
|
|
71660
71829
|
};
|
|
71661
71830
|
export declare type JiraSpreadsheetGroupByConfigAvailableGroupByFieldOptionsArgs = {
|
|
71662
71831
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
71663
71832
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
71833
|
+
filter?: InputMaybe<JiraGroupByDropdownFilter>;
|
|
71664
71834
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71665
71835
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
71666
71836
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
71667
71837
|
};
|
|
71838
|
+
export declare type JiraSpreadsheetGroupByConfigRecentlyUsedArgs = {
|
|
71839
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
71840
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
71841
|
+
filter?: InputMaybe<JiraGroupByDropdownFilter>;
|
|
71842
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71843
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
71844
|
+
};
|
|
71668
71845
|
export declare type JiraSpreadsheetGroupByFieldOptionConnection = {
|
|
71669
71846
|
__typename?: 'JiraSpreadsheetGroupByFieldOptionConnection';
|
|
71670
71847
|
edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupByFieldOptionEdge>>>;
|
|
@@ -76297,6 +76474,7 @@ export declare type LogQueryInput = {
|
|
|
76297
76474
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
76298
76475
|
moduleType?: InputMaybe<Scalars['String']['input']>;
|
|
76299
76476
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
76477
|
+
runtime?: InputMaybe<Scalars['String']['input']>;
|
|
76300
76478
|
traceId?: InputMaybe<Scalars['String']['input']>;
|
|
76301
76479
|
};
|
|
76302
76480
|
export declare type LookAndFeel = {
|
|
@@ -76514,6 +76692,8 @@ export declare enum LoomUserStatus {
|
|
|
76514
76692
|
export declare type LoomVideo = Node & {
|
|
76515
76693
|
__typename?: 'LoomVideo';
|
|
76516
76694
|
collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
76695
|
+
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
76696
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
76517
76697
|
description?: Maybe<Scalars['String']['output']>;
|
|
76518
76698
|
id: Scalars['ID']['output'];
|
|
76519
76699
|
isArchived: Scalars['Boolean']['output'];
|
|
@@ -76523,16 +76703,30 @@ export declare type LoomVideo = Node & {
|
|
|
76523
76703
|
owner?: Maybe<User>;
|
|
76524
76704
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
76525
76705
|
playableDuration?: Maybe<Scalars['Float']['output']>;
|
|
76706
|
+
reactionCount?: Maybe<Scalars['Int']['output']>;
|
|
76526
76707
|
sourceDuration?: Maybe<Scalars['Float']['output']>;
|
|
76708
|
+
thumbnails?: Maybe<LoomVideoDefaultThumbnailsSources>;
|
|
76527
76709
|
transcript?: Maybe<LoomTranscript>;
|
|
76528
76710
|
transcriptLanguage?: Maybe<LoomTranscriptLanguage>;
|
|
76711
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
76529
76712
|
url: Scalars['String']['output'];
|
|
76713
|
+
viewCounts?: Maybe<LoomVideoViewCounts>;
|
|
76714
|
+
};
|
|
76715
|
+
export declare type LoomVideoDefaultThumbnailsSources = {
|
|
76716
|
+
__typename?: 'LoomVideoDefaultThumbnailsSources';
|
|
76717
|
+
default?: Maybe<Scalars['String']['output']>;
|
|
76718
|
+
static?: Maybe<Scalars['String']['output']>;
|
|
76530
76719
|
};
|
|
76531
76720
|
export declare type LoomVideoDurations = {
|
|
76532
76721
|
__typename?: 'LoomVideoDurations';
|
|
76533
76722
|
playableDuration?: Maybe<Scalars['Float']['output']>;
|
|
76534
76723
|
sourceDuration?: Maybe<Scalars['Float']['output']>;
|
|
76535
76724
|
};
|
|
76725
|
+
export declare type LoomVideoViewCounts = {
|
|
76726
|
+
__typename?: 'LoomVideoViewCounts';
|
|
76727
|
+
distinct?: Maybe<Scalars['Int']['output']>;
|
|
76728
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
76729
|
+
};
|
|
76536
76730
|
export declare type LpCertSort = {
|
|
76537
76731
|
sortDirection?: InputMaybe<SortDirection>;
|
|
76538
76732
|
sortField?: InputMaybe<LpCertSortField>;
|
|
@@ -77729,7 +77923,6 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
|
77729
77923
|
canViewPartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
77730
77924
|
canViewSalesReport: Scalars['Boolean']['output'];
|
|
77731
77925
|
canViewUsageReports: Scalars['Boolean']['output'];
|
|
77732
|
-
hasPartnerAdminRole: Scalars['Boolean']['output'];
|
|
77733
77926
|
isMarketplaceReader: Scalars['Boolean']['output'];
|
|
77734
77927
|
isPartnerAdmin: Scalars['Boolean']['output'];
|
|
77735
77928
|
isSiteAdmin: Scalars['Boolean']['output'];
|
|
@@ -81763,6 +81956,8 @@ export declare type Mutation = {
|
|
|
81763
81956
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
81764
81957
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
81765
81958
|
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
81959
|
+
channelPlatform_createAttendee?: Maybe<ChannelPlatformConnectionData>;
|
|
81960
|
+
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
81766
81961
|
channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
|
|
81767
81962
|
channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
|
|
81768
81963
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
@@ -82461,6 +82656,13 @@ export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
|
82461
82656
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
82462
82657
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
82463
82658
|
};
|
|
82659
|
+
export declare type MutationChannelPlatform_CreateAttendeeArgs = {
|
|
82660
|
+
meetingId?: InputMaybe<Scalars['String']['input']>;
|
|
82661
|
+
};
|
|
82662
|
+
export declare type MutationChannelPlatform_CreateMeetingDetailsArgs = {
|
|
82663
|
+
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
82664
|
+
requestUuid?: InputMaybe<Scalars['String']['input']>;
|
|
82665
|
+
};
|
|
82464
82666
|
export declare type MutationChannelPlatform_CreateQueuesArgs = {
|
|
82465
82667
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
82466
82668
|
hoursOfOperationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -105398,7 +105600,6 @@ export declare type WorkSuggestionsPurgeUserProfilePayload = Payload & {
|
|
|
105398
105600
|
};
|
|
105399
105601
|
export declare type WorkSuggestionsSaveUserProfileInput = {
|
|
105400
105602
|
cloudId: Scalars['ID']['input'];
|
|
105401
|
-
isUpdate: Scalars['Boolean']['input'];
|
|
105402
105603
|
persona?: InputMaybe<WorkSuggestionsUserPersona>;
|
|
105403
105604
|
projectAris: Array<Scalars['ID']['input']>;
|
|
105404
105605
|
};
|