@forge/cli-shared 3.6.1-next.1 → 3.6.1-next.2

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,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.6.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 1508104: Bumping dependencies via Renovate:
8
+
9
+ - @types/cheerio
10
+
3
11
  ## 3.6.1-next.1
4
12
 
5
13
  ### Patch Changes
@@ -322,21 +322,6 @@ export declare type AddPolarisColumnInput = {
322
322
  heading?: Maybe<Scalars['String']>;
323
323
  };
324
324
  export declare type Admin = JiraUser | JiraUserGroup;
325
- export declare type AdminCustomSchemaMutation = {
326
- __typename?: 'AdminCustomSchemaMutation';
327
- createCustomSchemas?: Maybe<CustomSchemaPayload>;
328
- validateCustomSchemas?: Maybe<CustomSchemaPayload>;
329
- };
330
- export declare type AdminCustomSchemaMutationCreateCustomSchemasArgs = {
331
- input: AdminCustomSchemaMutationInput;
332
- };
333
- export declare type AdminCustomSchemaMutationValidateCustomSchemasArgs = {
334
- input: AdminCustomSchemaMutationInput;
335
- };
336
- export declare type AdminCustomSchemaMutationInput = {
337
- oauthClientId: Scalars['String'];
338
- schemas: Array<Scalars['JSON']>;
339
- };
340
325
  export declare enum ApiContext {
341
326
  Devops = "DEVOPS"
342
327
  }
@@ -1349,6 +1334,12 @@ export declare type BacklogExtension = {
1349
1334
  __typename?: 'BacklogExtension';
1350
1335
  operations?: Maybe<Array<Maybe<SoftwareOperation>>>;
1351
1336
  };
1337
+ export declare type BaseSprint = {
1338
+ id?: Maybe<Scalars['ID']>;
1339
+ name?: Maybe<Scalars['String']>;
1340
+ sprintState: SprintState;
1341
+ sprintMetadata?: Maybe<SoftwareSprintMetadata>;
1342
+ };
1352
1343
  export declare type BasicBoardFeatureView = Node & {
1353
1344
  __typename?: 'BasicBoardFeatureView';
1354
1345
  id: Scalars['ID'];
@@ -1689,7 +1680,7 @@ export declare type CardParent = {
1689
1680
  id: Scalars['ID'];
1690
1681
  key: Scalars['String'];
1691
1682
  summary: Scalars['String'];
1692
- cardType: CardType;
1683
+ cardType?: Maybe<CardType>;
1693
1684
  color?: Maybe<Scalars['CardPaletteColor']>;
1694
1685
  status?: Maybe<CardStatus>;
1695
1686
  childrenInfo?: Maybe<SoftwareCardChildrenInfo>;
@@ -3736,11 +3727,11 @@ export declare type CompleteSprintResponse = MutationResponse & {
3736
3727
  success: Scalars['Boolean'];
3737
3728
  message: Scalars['String'];
3738
3729
  };
3739
- export declare type CompleteSprintStatistic = {
3730
+ export declare type CompleteSprintStatistic = BaseSprint & {
3740
3731
  __typename?: 'CompleteSprintStatistic';
3741
3732
  id?: Maybe<Scalars['ID']>;
3742
3733
  name?: Maybe<Scalars['String']>;
3743
- sprintState?: Maybe<SprintState>;
3734
+ sprintState: SprintState;
3744
3735
  sprintMetadata?: Maybe<SoftwareSprintMetadata>;
3745
3736
  incompleteCardsDestinations?: Maybe<Array<Maybe<InCompleteCardsDestination>>>;
3746
3737
  };
@@ -5482,16 +5473,38 @@ export declare type CurrentUser = {
5482
5473
  __typename?: 'CurrentUser';
5483
5474
  permissions: Array<Maybe<Scalars['SoftwareBoardPermission']>>;
5484
5475
  };
5476
+ export declare type CustomEntity = {
5477
+ name: Scalars['String'];
5478
+ attributes: Array<CustomEntityAttribute>;
5479
+ indexes?: Maybe<Array<CustomEntityIndex>>;
5480
+ };
5481
+ export declare type CustomEntityAttribute = {
5482
+ name: Scalars['String'];
5483
+ type: CustomEntityAttributeType;
5484
+ required?: Maybe<Scalars['Boolean']>;
5485
+ };
5486
+ export declare enum CustomEntityAttributeType {
5487
+ String = "string",
5488
+ Boolean = "boolean",
5489
+ Float = "float",
5490
+ Integer = "integer",
5491
+ Any = "any"
5492
+ }
5485
5493
  export declare type CustomEntityDefinition = {
5486
5494
  __typename?: 'CustomEntityDefinition';
5487
5495
  name: Scalars['String'];
5488
5496
  version: Scalars['Int'];
5489
5497
  attributes: Scalars['JSON'];
5490
- indexes?: Maybe<Array<Maybe<CustomEntityIndex>>>;
5498
+ indexes?: Maybe<Array<Maybe<CustomEntityIndexDefinition>>>;
5491
5499
  status: CustomEntityStatus;
5492
5500
  };
5493
5501
  export declare type CustomEntityIndex = {
5494
- __typename?: 'CustomEntityIndex';
5502
+ name: Scalars['String'];
5503
+ range: Array<Scalars['String']>;
5504
+ partition?: Maybe<Array<Scalars['String']>>;
5505
+ };
5506
+ export declare type CustomEntityIndexDefinition = {
5507
+ __typename?: 'CustomEntityIndexDefinition';
5495
5508
  name: Scalars['String'];
5496
5509
  range: Array<Scalars['String']>;
5497
5510
  partition?: Maybe<Array<Scalars['String']>>;
@@ -5503,6 +5516,26 @@ export declare enum CustomEntityIndexStatus {
5503
5516
  Creating = "CREATING",
5504
5517
  Pending = "PENDING"
5505
5518
  }
5519
+ export declare type CustomEntityMutation = {
5520
+ __typename?: 'CustomEntityMutation';
5521
+ createCustomEntities?: Maybe<CustomEntityPayload>;
5522
+ validateCustomEntities?: Maybe<CustomEntityPayload>;
5523
+ };
5524
+ export declare type CustomEntityMutationCreateCustomEntitiesArgs = {
5525
+ input: CustomEntityMutationInput;
5526
+ };
5527
+ export declare type CustomEntityMutationValidateCustomEntitiesArgs = {
5528
+ input: CustomEntityMutationInput;
5529
+ };
5530
+ export declare type CustomEntityMutationInput = {
5531
+ oauthClientId: Scalars['String'];
5532
+ entities: Array<CustomEntity>;
5533
+ };
5534
+ export declare type CustomEntityPayload = Payload & {
5535
+ __typename?: 'CustomEntityPayload';
5536
+ success: Scalars['Boolean'];
5537
+ errors?: Maybe<Array<MutationError>>;
5538
+ };
5506
5539
  export declare enum CustomEntityStatus {
5507
5540
  Active = "ACTIVE",
5508
5541
  Inactive = "INACTIVE"
@@ -5528,21 +5561,6 @@ export declare type CustomFiltersValidationError = {
5528
5561
  errorMessage: Scalars['String'];
5529
5562
  errorKey: Scalars['String'];
5530
5563
  };
5531
- export declare type CustomSchemaMutation = {
5532
- __typename?: 'CustomSchemaMutation';
5533
- createCustomSchemas?: Maybe<CustomSchemaPayload>;
5534
- };
5535
- export declare type CustomSchemaMutationCreateCustomSchemasArgs = {
5536
- input: CustomSchemaMutationInput;
5537
- };
5538
- export declare type CustomSchemaMutationInput = {
5539
- schemas: Array<Scalars['JSON']>;
5540
- };
5541
- export declare type CustomSchemaPayload = Payload & {
5542
- __typename?: 'CustomSchemaPayload';
5543
- success: Scalars['Boolean'];
5544
- errors?: Maybe<Array<MutationError>>;
5545
- };
5546
5564
  export declare type CustomUiTunnelDefinition = {
5547
5565
  __typename?: 'CustomUITunnelDefinition';
5548
5566
  resourceKey?: Maybe<Scalars['String']>;
@@ -7250,7 +7268,7 @@ export declare type ErrorDetails = {
7250
7268
  };
7251
7269
  export declare type ErsLifecycleMutation = {
7252
7270
  __typename?: 'ErsLifecycleMutation';
7253
- customSchemas?: Maybe<AdminCustomSchemaMutation>;
7271
+ customEntities?: Maybe<CustomEntityMutation>;
7254
7272
  };
7255
7273
  export declare type ErsLifecycleQuery = {
7256
7274
  __typename?: 'ErsLifecycleQuery';
@@ -11438,6 +11456,7 @@ export declare type JiraLabelsFieldLabelsArgs = {
11438
11456
  last?: Maybe<Scalars['Int']>;
11439
11457
  before?: Maybe<Scalars['String']>;
11440
11458
  suggested?: Maybe<Scalars['Boolean']>;
11459
+ sessionId?: Maybe<Scalars['ID']>;
11441
11460
  };
11442
11461
  export declare type JiraLabelsFieldOperationInput = {
11443
11462
  operation: JiraMultiValueFieldOperations;
@@ -12282,7 +12301,7 @@ export declare type JiraPriorityFieldPrioritiesArgs = {
12282
12301
  };
12283
12302
  export declare type JiraPriorityFieldOperationInput = {
12284
12303
  operation: JiraSingleValueFieldOperations;
12285
- priority: Scalars['String'];
12304
+ id?: Maybe<Scalars['ID']>;
12286
12305
  };
12287
12306
  export declare type JiraPriorityFieldPayload = Payload & {
12288
12307
  __typename?: 'JiraPriorityFieldPayload';
@@ -14132,7 +14151,7 @@ export declare type JiraSingleSelectFieldPayload = Payload & {
14132
14151
  };
14133
14152
  export declare type JiraSingleSelectOperationInput = {
14134
14153
  operation: JiraSingleValueFieldOperations;
14135
- fieldOption?: Maybe<Scalars['ID']>;
14154
+ id?: Maybe<Scalars['ID']>;
14136
14155
  };
14137
14156
  export declare type JiraSingleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
14138
14157
  __typename?: 'JiraSingleSelectUserPickerField';
@@ -14159,7 +14178,7 @@ export declare type JiraSingleSelectUserPickerFieldUsersArgs = {
14159
14178
  };
14160
14179
  export declare type JiraSingleSelectUserPickerFieldOperationInput = {
14161
14180
  operation: JiraSingleValueFieldOperations;
14162
- accountId?: Maybe<Scalars['ID']>;
14181
+ id?: Maybe<Scalars['ID']>;
14163
14182
  };
14164
14183
  export declare type JiraSingleSelectUserPickerFieldPayload = Payload & {
14165
14184
  __typename?: 'JiraSingleSelectUserPickerFieldPayload';
@@ -15007,7 +15026,7 @@ export declare type JiraWatchesFieldSuggestedWatchersArgs = {
15007
15026
  };
15008
15027
  export declare type JiraWatchesFieldOperationInput = {
15009
15028
  operation: JiraWatchesOperations;
15010
- accountId?: Maybe<Scalars['ID']>;
15029
+ id?: Maybe<Scalars['ID']>;
15011
15030
  };
15012
15031
  export declare type JiraWatchesFieldPayload = Payload & {
15013
15032
  __typename?: 'JiraWatchesFieldPayload';
@@ -16264,7 +16283,6 @@ export declare type Mutation = {
16264
16283
  jira?: Maybe<JiraMutation>;
16265
16284
  appStorage?: Maybe<AppStorageMutation>;
16266
16285
  appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
16267
- customSchema?: Maybe<CustomSchemaMutation>;
16268
16286
  ersLifecycle?: Maybe<ErsLifecycleMutation>;
16269
16287
  confluence?: Maybe<ConfluenceMutationApi>;
16270
16288
  updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
@@ -21653,6 +21671,11 @@ export declare type ShepherdAlert = Node & {
21653
21671
  updatedOn?: Maybe<Scalars['DateTime']>;
21654
21672
  workspaceId?: Maybe<Scalars['ID']>;
21655
21673
  };
21674
+ export declare enum ShepherdAlertDescriptionType {
21675
+ AlertInfo = "ALERT_INFO",
21676
+ Investigate = "INVESTIGATE",
21677
+ Remediate = "REMEDIATE"
21678
+ }
21656
21679
  export declare type ShepherdAlertEdge = {
21657
21680
  __typename?: 'ShepherdAlertEdge';
21658
21681
  cursor?: Maybe<Scalars['String']>;
@@ -21671,6 +21694,12 @@ export declare type ShepherdAlertQueriesByWorkspaceArgs = {
21671
21694
  workspaceId: Scalars['ID'];
21672
21695
  };
21673
21696
  export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
21697
+ export declare enum ShepherdAlertSeverity {
21698
+ Critical = "CRITICAL",
21699
+ High = "HIGH",
21700
+ Low = "LOW",
21701
+ Medium = "MEDIUM"
21702
+ }
21674
21703
  export declare enum ShepherdAlertStatus {
21675
21704
  InProgress = "IN_PROGRESS",
21676
21705
  Triaged = "TRIAGED",
@@ -21681,6 +21710,8 @@ export declare type ShepherdAlertSupportingData = {
21681
21710
  highlight: ShepherdHighlight;
21682
21711
  };
21683
21712
  export declare enum ShepherdAlertTemplateType {
21713
+ AddedConfluenceGlobalPermission = "ADDED_CONFLUENCE_GLOBAL_PERMISSION",
21714
+ AddedConfluenceSpacePermission = "ADDED_CONFLUENCE_SPACE_PERMISSION",
21684
21715
  AddedOrgadmin = "ADDED_ORGADMIN",
21685
21716
  ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
21686
21717
  ConfluencePageExports = "CONFLUENCE_PAGE_EXPORTS",
@@ -22423,7 +22454,7 @@ export declare type SplitIssueOutput = MutationResponse & {
22423
22454
  message: Scalars['String'];
22424
22455
  clientMutationId?: Maybe<Scalars['ID']>;
22425
22456
  };
22426
- export declare type Sprint = {
22457
+ export declare type Sprint = BaseSprint & {
22427
22458
  __typename?: 'Sprint';
22428
22459
  id?: Maybe<Scalars['ID']>;
22429
22460
  name?: Maybe<Scalars['String']>;