@forge/cli-shared 7.0.0-next.6 → 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
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
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
|
+
|
|
3
26
|
## 7.0.0-next.6
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -25244,6 +25244,7 @@ export declare type EcosystemMutation = {
|
|
|
25244
25244
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
25245
25245
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
25246
25246
|
publishAppClientEvent?: Maybe<EcosystemPublishEventBody>;
|
|
25247
|
+
publishRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
25247
25248
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
25248
25249
|
updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
|
|
25249
25250
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
@@ -25288,6 +25289,12 @@ export declare type EcosystemMutationPublishAppClientEventArgs = {
|
|
|
25288
25289
|
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
25289
25290
|
payload: Scalars['String']['input'];
|
|
25290
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
|
+
};
|
|
25291
25298
|
export declare type EcosystemMutationRemoveAppContributorsArgs = {
|
|
25292
25299
|
input: RemoveAppContributorsInput;
|
|
25293
25300
|
};
|
|
@@ -25439,6 +25446,15 @@ export declare type EcosystemQueryUserGrantsArgs = {
|
|
|
25439
25446
|
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
25440
25447
|
cloudId: Scalars['ID']['input'];
|
|
25441
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
|
+
};
|
|
25442
25458
|
export declare enum EcosystemRequiredProduct {
|
|
25443
25459
|
Compass = "COMPASS",
|
|
25444
25460
|
Confluence = "CONFLUENCE",
|
|
@@ -25447,6 +25463,7 @@ export declare enum EcosystemRequiredProduct {
|
|
|
25447
25463
|
export declare type EcosystemSubscription = {
|
|
25448
25464
|
__typename?: 'EcosystemSubscription';
|
|
25449
25465
|
onAppClientEvent?: Maybe<EcosystemOnEventBody>;
|
|
25466
|
+
realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
25450
25467
|
};
|
|
25451
25468
|
export declare type EcosystemSubscriptionOnAppClientEventArgs = {
|
|
25452
25469
|
appId: Scalars['ID']['input'];
|
|
@@ -25454,6 +25471,11 @@ export declare type EcosystemSubscriptionOnAppClientEventArgs = {
|
|
|
25454
25471
|
contextAri: Scalars['ID']['input'];
|
|
25455
25472
|
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
25456
25473
|
};
|
|
25474
|
+
export declare type EcosystemSubscriptionRealtimeChannelArgs = {
|
|
25475
|
+
context?: InputMaybe<Scalars['String']['input']>;
|
|
25476
|
+
installationId: Scalars['ID']['input'];
|
|
25477
|
+
name: Scalars['String']['input'];
|
|
25478
|
+
};
|
|
25457
25479
|
export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
|
|
25458
25480
|
__typename?: 'EcosystemUpdateAppOAuthClientResult';
|
|
25459
25481
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -26208,6 +26230,7 @@ export declare type ExternalDeal = Node & {
|
|
|
26208
26230
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
26209
26231
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
26210
26232
|
url?: Maybe<Scalars['String']['output']>;
|
|
26233
|
+
userContributors?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
26211
26234
|
};
|
|
26212
26235
|
export declare type ExternalDealLastActivity = {
|
|
26213
26236
|
__typename?: 'ExternalDealLastActivity';
|
|
@@ -32096,6 +32119,8 @@ export declare type GraphStore = {
|
|
|
32096
32119
|
deploymentAssociatedRepoInverse?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoInverseConnection>;
|
|
32097
32120
|
deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
|
|
32098
32121
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
32122
|
+
entityHasTopicInferredEntity?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityConnection>;
|
|
32123
|
+
entityHasTopicInferredEntityInverse?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityInverseConnection>;
|
|
32099
32124
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
32100
32125
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
32101
32126
|
externalOrgHasExternalPosition?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionConnection>;
|
|
@@ -33462,6 +33487,20 @@ export declare type GraphStoreDeploymentContainsCommitInverseArgs = {
|
|
|
33462
33487
|
id: Scalars['ID']['input'];
|
|
33463
33488
|
sort?: InputMaybe<GraphStoreDeploymentContainsCommitSortInput>;
|
|
33464
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
|
+
};
|
|
33465
33504
|
export declare type GraphStoreEntityIsRelatedToEntityArgs = {
|
|
33466
33505
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33467
33506
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39748,6 +39787,9 @@ export declare type GraphStoreDeploymentAssociatedRepoSortInput = {
|
|
|
39748
39787
|
export declare type GraphStoreDeploymentContainsCommitSortInput = {
|
|
39749
39788
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39750
39789
|
};
|
|
39790
|
+
export declare type GraphStoreEntityHasTopicInferredEntitySortInput = {
|
|
39791
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39792
|
+
};
|
|
39751
39793
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
39752
39794
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39753
39795
|
};
|
|
@@ -45732,6 +45774,34 @@ export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseEdge = {
|
|
|
45732
45774
|
};
|
|
45733
45775
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseUnion = DeploymentSummary | ExternalDeployment;
|
|
45734
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;
|
|
45735
45805
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityConnection = HasPageInfo & {
|
|
45736
45806
|
__typename?: 'GraphStoreSimplifiedEntityIsRelatedToEntityConnection';
|
|
45737
45807
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityEdge>>>;
|
|
@@ -61555,6 +61625,10 @@ export declare type JiraGroup = Node & {
|
|
|
61555
61625
|
id: Scalars['ID']['output'];
|
|
61556
61626
|
name: Scalars['String']['output'];
|
|
61557
61627
|
};
|
|
61628
|
+
export declare type JiraGroupByDropdownFilter = {
|
|
61629
|
+
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
61630
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
61631
|
+
};
|
|
61558
61632
|
export declare type JiraGroupConnection = {
|
|
61559
61633
|
__typename?: 'JiraGroupConnection';
|
|
61560
61634
|
edges?: Maybe<Array<Maybe<JiraGroupEdge>>>;
|
|
@@ -71751,14 +71825,23 @@ export declare type JiraSpreadsheetGroupByConfig = {
|
|
|
71751
71825
|
__typename?: 'JiraSpreadsheetGroupByConfig';
|
|
71752
71826
|
availableGroupByFieldOptions?: Maybe<JiraSpreadsheetGroupByFieldOptionConnection>;
|
|
71753
71827
|
groupByField?: Maybe<JiraField>;
|
|
71828
|
+
recentlyUsed?: Maybe<JiraSpreadsheetGroupByFieldOptionConnection>;
|
|
71754
71829
|
};
|
|
71755
71830
|
export declare type JiraSpreadsheetGroupByConfigAvailableGroupByFieldOptionsArgs = {
|
|
71756
71831
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
71757
71832
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
71833
|
+
filter?: InputMaybe<JiraGroupByDropdownFilter>;
|
|
71758
71834
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71759
71835
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
71760
71836
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
71761
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
|
+
};
|
|
71762
71845
|
export declare type JiraSpreadsheetGroupByFieldOptionConnection = {
|
|
71763
71846
|
__typename?: 'JiraSpreadsheetGroupByFieldOptionConnection';
|
|
71764
71847
|
edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupByFieldOptionEdge>>>;
|
|
@@ -105517,7 +105600,6 @@ export declare type WorkSuggestionsPurgeUserProfilePayload = Payload & {
|
|
|
105517
105600
|
};
|
|
105518
105601
|
export declare type WorkSuggestionsSaveUserProfileInput = {
|
|
105519
105602
|
cloudId: Scalars['ID']['input'];
|
|
105520
|
-
isUpdate: Scalars['Boolean']['input'];
|
|
105521
105603
|
persona?: InputMaybe<WorkSuggestionsUserPersona>;
|
|
105522
105604
|
projectAris: Array<Scalars['ID']['input']>;
|
|
105523
105605
|
};
|