@forge/cli-shared 6.5.0-next.7 → 6.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 48e369c: Update RoA messages for egressing webtriggers
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 738dea1: Update text for Runs on Atlassian program
|
|
12
|
+
- 9ad64ab: Rename ResourceType to avoid a conflict with new GraphQL type
|
|
13
|
+
- f571cc9: Fix direct distribution link
|
|
14
|
+
- Updated dependencies [0146304]
|
|
15
|
+
- Updated dependencies [d5c7fe4]
|
|
16
|
+
- Updated dependencies [56b1d12]
|
|
17
|
+
- Updated dependencies [e94d83f]
|
|
18
|
+
- Updated dependencies [b088bc0]
|
|
19
|
+
- Updated dependencies [035b3f5]
|
|
20
|
+
- Updated dependencies [66f157a]
|
|
21
|
+
- Updated dependencies [0a3744a]
|
|
22
|
+
- @forge/manifest@8.3.0
|
|
23
|
+
|
|
3
24
|
## 6.5.0-next.7
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -15302,11 +15302,38 @@ export declare type ConnectionManagerCreateApiTokenConnectionInput = {
|
|
|
15302
15302
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15303
15303
|
tokens?: InputMaybe<Array<InputMaybe<ConnectionManagerTokenInput>>>;
|
|
15304
15304
|
};
|
|
15305
|
+
export declare type ConnectionManagerCreateOAuthConnectionForJiraProjectPayload = Payload & {
|
|
15306
|
+
__typename?: 'ConnectionManagerCreateOAuthConnectionForJiraProjectPayload';
|
|
15307
|
+
authorizationUrl?: Maybe<Scalars['String']['output']>;
|
|
15308
|
+
createdConnectionId?: Maybe<Scalars['ID']['output']>;
|
|
15309
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15310
|
+
success: Scalars['Boolean']['output'];
|
|
15311
|
+
};
|
|
15312
|
+
export declare type ConnectionManagerCreateOAuthConnectionInput = {
|
|
15313
|
+
configuration?: InputMaybe<ConnectionManagerConfigurationInput>;
|
|
15314
|
+
credentials?: InputMaybe<ConnectionManagerOAuthCredentialsInput>;
|
|
15315
|
+
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
15316
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
15317
|
+
providerDetails?: InputMaybe<ConnectionManagerOAuthProviderDetailsInput>;
|
|
15318
|
+
};
|
|
15305
15319
|
export declare type ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload = Payload & {
|
|
15306
15320
|
__typename?: 'ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload';
|
|
15307
15321
|
errors?: Maybe<Array<MutationError>>;
|
|
15308
15322
|
success: Scalars['Boolean']['output'];
|
|
15309
15323
|
};
|
|
15324
|
+
export declare type ConnectionManagerDeleteConnectionForJiraProjectPayload = Payload & {
|
|
15325
|
+
__typename?: 'ConnectionManagerDeleteConnectionForJiraProjectPayload';
|
|
15326
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15327
|
+
success: Scalars['Boolean']['output'];
|
|
15328
|
+
};
|
|
15329
|
+
export declare type ConnectionManagerOAuthCredentialsInput = {
|
|
15330
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
15331
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
15332
|
+
};
|
|
15333
|
+
export declare type ConnectionManagerOAuthProviderDetailsInput = {
|
|
15334
|
+
authorizationUrl?: InputMaybe<Scalars['String']['input']>;
|
|
15335
|
+
exchangeUrl?: InputMaybe<Scalars['String']['input']>;
|
|
15336
|
+
};
|
|
15310
15337
|
export declare type ConnectionManagerTokenInput = {
|
|
15311
15338
|
token?: InputMaybe<Scalars['String']['input']>;
|
|
15312
15339
|
tokenId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -64980,7 +65007,9 @@ export declare type Mutation = {
|
|
|
64980
65007
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
64981
65008
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
64982
65009
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
65010
|
+
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
64983
65011
|
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
65012
|
+
connectionManager_deleteConnectionForJiraProject?: Maybe<ConnectionManagerDeleteConnectionForJiraProjectPayload>;
|
|
64984
65013
|
contactAdmin?: Maybe<GraphQlContactAdminStatus>;
|
|
64985
65014
|
convertToFolder?: Maybe<ConfluenceConvertContentToFolderPayload>;
|
|
64986
65015
|
copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
@@ -65798,10 +65827,18 @@ export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraPro
|
|
|
65798
65827
|
createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
|
|
65799
65828
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
65800
65829
|
};
|
|
65830
|
+
export declare type MutationConnectionManager_CreateOAuthConnectionForJiraProjectArgs = {
|
|
65831
|
+
createOAuthConnectionInput: ConnectionManagerCreateOAuthConnectionInput;
|
|
65832
|
+
jiraProjectARI: Scalars['ID']['input'];
|
|
65833
|
+
};
|
|
65801
65834
|
export declare type MutationConnectionManager_DeleteApiTokenConnectionForJiraProjectArgs = {
|
|
65802
65835
|
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
65803
65836
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
65804
65837
|
};
|
|
65838
|
+
export declare type MutationConnectionManager_DeleteConnectionForJiraProjectArgs = {
|
|
65839
|
+
integrationKey: Scalars['String']['input'];
|
|
65840
|
+
jiraProjectARI: Scalars['ID']['input'];
|
|
65841
|
+
};
|
|
65805
65842
|
export declare type MutationContactAdminArgs = {
|
|
65806
65843
|
input: ContactAdminMutationInput;
|
|
65807
65844
|
};
|