@forge/cli-shared 2.1.6-next.13 → 2.1.6-next.14

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,15 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.1.6-next.14
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [a0a2c5b]
8
+ - Updated dependencies [689c09b]
9
+ - Updated dependencies [92d081d]
10
+ - Updated dependencies [36c7c8f]
11
+ - @forge/manifest@2.6.0-next.13
12
+
3
13
  ## 2.1.6-next.13
4
14
 
5
15
  ### Patch Changes
@@ -7166,6 +7166,12 @@ export declare type JiraOAuthAppsAppInput = {
7166
7166
  deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
7167
7167
  devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
7168
7168
  };
7169
+ export declare type JiraOAuthAppsAppUpdateInput = {
7170
+ buildsModule?: Maybe<JiraOAuthAppsBuildsModuleInput>;
7171
+ featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModuleInput>;
7172
+ deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
7173
+ devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
7174
+ };
7169
7175
  export declare type JiraOAuthAppsApps = {
7170
7176
  __typename?: 'JiraOAuthAppsApps';
7171
7177
  apps?: Maybe<Array<Maybe<JiraOAuthAppsApp>>>;
@@ -7243,12 +7249,17 @@ export declare type JiraOAuthAppsFeatureFlagsModuleInput = {
7243
7249
  export declare type JiraOAuthAppsMutation = {
7244
7250
  __typename?: 'JiraOAuthAppsMutation';
7245
7251
  createJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
7252
+ updateJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
7246
7253
  deleteJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
7247
7254
  };
7248
7255
  export declare type JiraOAuthAppsMutationCreateJiraOAuthAppArgs = {
7249
7256
  cloudId: Scalars['String'];
7250
7257
  input: JiraOAuthAppsCreateAppInput;
7251
7258
  };
7259
+ export declare type JiraOAuthAppsMutationUpdateJiraOAuthAppArgs = {
7260
+ cloudId: Scalars['String'];
7261
+ input: JiraOAuthAppsUpdateAppInput;
7262
+ };
7252
7263
  export declare type JiraOAuthAppsMutationDeleteJiraOAuthAppArgs = {
7253
7264
  cloudId: Scalars['String'];
7254
7265
  input: JiraOAuthAppsDeleteAppInput;
@@ -7261,8 +7272,8 @@ export declare type JiraOAuthAppsPayload = Payload & {
7261
7272
  errors?: Maybe<Array<MutationError>>;
7262
7273
  };
7263
7274
  export declare type JiraOAuthAppsUpdateAppInput = {
7264
- id: Scalars['ID'];
7265
- app: JiraOAuthAppsAppInput;
7275
+ clientId: Scalars['ID'];
7276
+ app: JiraOAuthAppsAppUpdateInput;
7266
7277
  clientMutationId?: Maybe<Scalars['ID']>;
7267
7278
  };
7268
7279
  export declare type JiraOAuthAppsUrlTemplate = {
@@ -7572,6 +7583,14 @@ export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
7572
7583
  first?: Maybe<Scalars['Int']>;
7573
7584
  after?: Maybe<Scalars['String']>;
7574
7585
  };
7586
+ export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
7587
+ id: Scalars['ID'];
7588
+ };
7589
+ export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload = {
7590
+ __typename?: 'JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload';
7591
+ success: Scalars['Boolean'];
7592
+ errors?: Maybe<Array<MutationError>>;
7593
+ };
7575
7594
  export declare type JiraProjectAndConfluenceSpaceRelationship = {
7576
7595
  __typename?: 'JiraProjectAndConfluenceSpaceRelationship';
7577
7596
  jiraProject?: Maybe<JiraProject>;
@@ -9627,6 +9646,7 @@ export declare type Mutation = {
9627
9646
  deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
9628
9647
  createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
9629
9648
  compass?: Maybe<CompassCatalogMutationApi>;
9649
+ deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
9630
9650
  };
9631
9651
  export declare type MutationCreateReleaseNoteArgs = {
9632
9652
  changeStatus?: Maybe<Scalars['String']>;
@@ -10024,6 +10044,9 @@ export declare type MutationDeleteAppEnvironmentVariableArgs = {
10024
10044
  export declare type MutationCreateAppDeploymentArgs = {
10025
10045
  input: CreateAppDeploymentInput;
10026
10046
  };
10047
+ export declare type MutationDeleteConfluenceSpaceRelationshipsForJiraProjectArgs = {
10048
+ input: JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput;
10049
+ };
10027
10050
  export declare type MutationError = {
10028
10051
  __typename?: 'MutationError';
10029
10052
  message?: Maybe<Scalars['String']>;
@@ -12163,6 +12186,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
12163
12186
  };
12164
12187
  export declare type ShepherdAlert = {
12165
12188
  __typename?: 'ShepherdAlert';
12189
+ actor?: Maybe<ShepherdUser>;
12166
12190
  cloudId?: Maybe<Scalars['ID']>;
12167
12191
  createdOn: Scalars['DateTime'];
12168
12192
  id: Scalars['ID'];
@@ -12304,7 +12328,7 @@ export declare type ShepherdUpdateOrganizationPayload = Payload & {
12304
12328
  };
12305
12329
  export declare type ShepherdUser = {
12306
12330
  __typename?: 'ShepherdUser';
12307
- aid: Scalars['ID'];
12331
+ user?: Maybe<User>;
12308
12332
  };
12309
12333
  export declare type SoftwareBoard = {
12310
12334
  __typename?: 'SoftwareBoard';
@@ -12525,9 +12549,9 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
12525
12549
  reporter: SupportRequestUser;
12526
12550
  participants: Array<SupportRequestUser>;
12527
12551
  fields: Array<SupportRequestField>;
12528
- comments: SupportRequestComments;
12552
+ comments?: Maybe<SupportRequestComments>;
12529
12553
  statuses: SupportRequestStatuses;
12530
- transitions: SupportRequestTransitions;
12554
+ transitions?: Maybe<SupportRequestTransitions>;
12531
12555
  targetScreen: Scalars['String'];
12532
12556
  lastComment: SupportRequestComments;
12533
12557
  };
@@ -12733,6 +12757,8 @@ export declare type SupportRequestStatuses = {
12733
12757
  export declare type SupportRequestTicket = {
12734
12758
  __typename?: 'SupportRequestTicket';
12735
12759
  issueKey?: Maybe<Scalars['String']>;
12760
+ statusName?: Maybe<Scalars['String']>;
12761
+ categoryKey?: Maybe<Scalars['String']>;
12736
12762
  };
12737
12763
  export declare type SupportRequestTransition = {
12738
12764
  __typename?: 'SupportRequestTransition';
@@ -12796,7 +12822,7 @@ export declare type Team = {
12796
12822
  export declare type TeamMembersArgs = {
12797
12823
  after?: Maybe<Scalars['String']>;
12798
12824
  first?: Scalars['Int'];
12799
- state?: MembershipState;
12825
+ state?: Array<MembershipState>;
12800
12826
  };
12801
12827
  export declare type TeamMember = {
12802
12828
  __typename?: 'TeamMember';