@forge/cli-shared 2.2.1-next.8 → 2.2.1-next.9

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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.2.1-next.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8aaa65c]
8
+ - @forge/manifest@3.1.0-next.9
9
+
3
10
  ## 2.2.1-next.8
4
11
 
5
12
  ### Patch Changes
@@ -245,7 +245,7 @@ export declare type ActivityObject = {
245
245
  contributors?: Maybe<Array<ActivitiesContributor>>;
246
246
  data?: Maybe<ActivityObjectData>;
247
247
  };
248
- export declare type ActivityObjectData = TownsquareProject | TownsquareGoal | TownsquareComment;
248
+ export declare type ActivityObjectData = TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
249
249
  export declare enum ActivityObjectType {
250
250
  Site = "SITE",
251
251
  Project = "PROJECT",
@@ -3579,7 +3579,7 @@ export declare type CreateColumnInput = {
3579
3579
  export declare type CreateColumnOutput = MutationResponse & {
3580
3580
  __typename?: 'CreateColumnOutput';
3581
3581
  newColumn?: Maybe<Column>;
3582
- columns?: Maybe<Array<Column>>;
3582
+ columns?: Maybe<Array<Maybe<Column>>>;
3583
3583
  statusCode: Scalars['Int'];
3584
3584
  success: Scalars['Boolean'];
3585
3585
  message: Scalars['String'];
@@ -4109,7 +4109,7 @@ export declare type DeleteColumnInput = {
4109
4109
  };
4110
4110
  export declare type DeleteColumnOutput = MutationResponse & {
4111
4111
  __typename?: 'DeleteColumnOutput';
4112
- columns?: Maybe<Array<Column>>;
4112
+ columns?: Maybe<Array<Maybe<Column>>>;
4113
4113
  statusCode: Scalars['Int'];
4114
4114
  success: Scalars['Boolean'];
4115
4115
  message: Scalars['String'];
@@ -9178,6 +9178,30 @@ export declare type JiraServiceManagementActiveApproval = Node & {
9178
9178
  approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
9179
9179
  pendingApprovalCount?: Maybe<Scalars['Int']>;
9180
9180
  };
9181
+ export declare type JiraServiceManagementActiveApprovalApproversArgs = {
9182
+ first?: Maybe<Scalars['Int']>;
9183
+ after?: Maybe<Scalars['String']>;
9184
+ last?: Maybe<Scalars['Int']>;
9185
+ before?: Maybe<Scalars['String']>;
9186
+ };
9187
+ export declare type JiraServiceManagementActiveApprovalExcludedApproversArgs = {
9188
+ first?: Maybe<Scalars['Int']>;
9189
+ after?: Maybe<Scalars['String']>;
9190
+ last?: Maybe<Scalars['Int']>;
9191
+ before?: Maybe<Scalars['String']>;
9192
+ };
9193
+ export declare type JiraServiceManagementActiveApprovalDecisionsArgs = {
9194
+ first?: Maybe<Scalars['Int']>;
9195
+ after?: Maybe<Scalars['String']>;
9196
+ last?: Maybe<Scalars['Int']>;
9197
+ before?: Maybe<Scalars['String']>;
9198
+ };
9199
+ export declare type JiraServiceManagementActiveApprovalApproverPrincipalsArgs = {
9200
+ first?: Maybe<Scalars['Int']>;
9201
+ after?: Maybe<Scalars['String']>;
9202
+ last?: Maybe<Scalars['Int']>;
9203
+ before?: Maybe<Scalars['String']>;
9204
+ };
9181
9205
  export declare type JiraServiceManagementApprovalCondition = {
9182
9206
  __typename?: 'JiraServiceManagementApprovalCondition';
9183
9207
  type?: Maybe<Scalars['String']>;
@@ -9235,7 +9259,7 @@ export declare type JiraServiceManagementApproverEdge = {
9235
9259
  node?: Maybe<JiraServiceManagementApprover>;
9236
9260
  cursor: Scalars['String'];
9237
9261
  };
9238
- export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementUserApproverPrincipalConnection | JiraServiceManagementGroupApproverPrincipalConnection;
9262
+ export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementGroupApproverPrincipal;
9239
9263
  export declare type JiraServiceManagementApproverPrincipalConnection = {
9240
9264
  __typename?: 'JiraServiceManagementApproverPrincipalConnection';
9241
9265
  totalCount?: Maybe<Scalars['Int']>;
@@ -9295,6 +9319,12 @@ export declare type JiraServiceManagementCompletedApproval = Node & {
9295
9319
  completedDate?: Maybe<Scalars['DateTime']>;
9296
9320
  status?: Maybe<JiraServiceManagementApprovalStatus>;
9297
9321
  };
9322
+ export declare type JiraServiceManagementCompletedApprovalApproversArgs = {
9323
+ first?: Maybe<Scalars['Int']>;
9324
+ after?: Maybe<Scalars['String']>;
9325
+ last?: Maybe<Scalars['Int']>;
9326
+ before?: Maybe<Scalars['String']>;
9327
+ };
9298
9328
  export declare type JiraServiceManagementCompletedApprovalConnection = {
9299
9329
  __typename?: 'JiraServiceManagementCompletedApprovalConnection';
9300
9330
  totalCount?: Maybe<Scalars['Int']>;
@@ -9345,17 +9375,6 @@ export declare type JiraServiceManagementGroupApproverPrincipal = {
9345
9375
  memberCount?: Maybe<Scalars['Int']>;
9346
9376
  approvedCount?: Maybe<Scalars['Int']>;
9347
9377
  };
9348
- export declare type JiraServiceManagementGroupApproverPrincipalConnection = {
9349
- __typename?: 'JiraServiceManagementGroupApproverPrincipalConnection';
9350
- totalCount?: Maybe<Scalars['Int']>;
9351
- pageInfo: PageInfo;
9352
- edges?: Maybe<Array<Maybe<JiraServiceManagementGroupApproverPrincipalEdge>>>;
9353
- };
9354
- export declare type JiraServiceManagementGroupApproverPrincipalEdge = {
9355
- __typename?: 'JiraServiceManagementGroupApproverPrincipalEdge';
9356
- node?: Maybe<JiraServiceManagementGroupApproverPrincipal>;
9357
- cursor: Scalars['String'];
9358
- };
9359
9378
  export declare type JiraServiceManagementIncident = {
9360
9379
  __typename?: 'JiraServiceManagementIncident';
9361
9380
  hasLinkedIncidents?: Maybe<Scalars['Boolean']>;
@@ -9615,17 +9634,6 @@ export declare type JiraServiceManagementUserApproverPrincipal = {
9615
9634
  user?: Maybe<User>;
9616
9635
  jiraRest?: Maybe<Scalars['URL']>;
9617
9636
  };
9618
- export declare type JiraServiceManagementUserApproverPrincipalConnection = {
9619
- __typename?: 'JiraServiceManagementUserApproverPrincipalConnection';
9620
- totalCount?: Maybe<Scalars['Int']>;
9621
- pageInfo: PageInfo;
9622
- edges?: Maybe<Array<Maybe<JiraServiceManagementUserApproverPrincipalEdge>>>;
9623
- };
9624
- export declare type JiraServiceManagementUserApproverPrincipalEdge = {
9625
- __typename?: 'JiraServiceManagementUserApproverPrincipalEdge';
9626
- node?: Maybe<JiraServiceManagementUserApproverPrincipal>;
9627
- cursor: Scalars['String'];
9628
- };
9629
9637
  export declare type JiraServiceManagementUserResponder = {
9630
9638
  __typename?: 'JiraServiceManagementUserResponder';
9631
9639
  user?: Maybe<User>;
@@ -12763,7 +12771,7 @@ export declare type RankColumnInput = {
12763
12771
  };
12764
12772
  export declare type RankColumnOutput = MutationResponse & {
12765
12773
  __typename?: 'RankColumnOutput';
12766
- columns?: Maybe<Array<Column>>;
12774
+ columns?: Maybe<Array<Maybe<Column>>>;
12767
12775
  statusCode: Scalars['Int'];
12768
12776
  success: Scalars['Boolean'];
12769
12777
  message: Scalars['String'];
@@ -13376,7 +13384,7 @@ export declare type SetColumnLimitInput = {
13376
13384
  };
13377
13385
  export declare type SetColumnLimitOutput = MutationResponse & {
13378
13386
  __typename?: 'SetColumnLimitOutput';
13379
- columns?: Maybe<Array<Column>>;
13387
+ columns?: Maybe<Array<Maybe<Column>>>;
13380
13388
  statusCode: Scalars['Int'];
13381
13389
  success: Scalars['Boolean'];
13382
13390
  message: Scalars['String'];