@forge/cli-shared 6.2.0-next.1 → 6.2.1-next.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,24 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.2.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [3b3e56e]
8
+ - @forge/manifest@7.11.1-next.0
9
+
10
+ ## 6.2.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 3cf86f9: Bump sentry/node package to fix issues with forge command
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [3cf86f9]
19
+ - Updated dependencies [fd07774]
20
+ - @forge/manifest@7.11.0
21
+
3
22
  ## 6.2.0-next.1
4
23
 
5
24
  ### Patch Changes
@@ -20312,34 +20312,6 @@ export declare type FilterQuery = {
20312
20312
  errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
20313
20313
  sanitisedJql: Scalars['String']['output'];
20314
20314
  };
20315
- export declare type ForgeAlertsActivitiesQueryInput = {
20316
- after?: InputMaybe<Scalars['String']['input']>;
20317
- endTime: Scalars['String']['input'];
20318
- environment: Scalars['String']['input'];
20319
- first?: InputMaybe<Scalars['Int']['input']>;
20320
- onlyOpenResolvedActivityType?: InputMaybe<Scalars['Boolean']['input']>;
20321
- startTime: Scalars['String']['input'];
20322
- };
20323
- export declare type ForgeAlertsActivitiesResult = ForgeAlertsActivityConnection | QueryError;
20324
- export declare type ForgeAlertsActivity = {
20325
- __typename?: 'ForgeAlertsActivity';
20326
- activityMessage: Scalars['String']['output'];
20327
- isMuted: Scalars['Boolean']['output'];
20328
- status: ForgeAlertsStatus;
20329
- timestamp: Scalars['String']['output'];
20330
- type: ForgeAlertsActivityType;
20331
- };
20332
- export declare type ForgeAlertsActivityConnection = {
20333
- __typename?: 'ForgeAlertsActivityConnection';
20334
- edges: Array<Maybe<ForgeAlertsActivityEdge>>;
20335
- nodes: Array<ForgeAlertsActivity>;
20336
- pageInfo: PageInfo;
20337
- };
20338
- export declare type ForgeAlertsActivityEdge = {
20339
- __typename?: 'ForgeAlertsActivityEdge';
20340
- cursor: Scalars['String']['output'];
20341
- node?: Maybe<ForgeAlertsActivity>;
20342
- };
20343
20315
  export declare type ForgeAlertsActivityLog = {
20344
20316
  __typename?: 'ForgeAlertsActivityLog';
20345
20317
  context?: Maybe<ForgeAlertsActivityLogContext>;
@@ -20365,16 +20337,6 @@ export declare type ForgeAlertsActivityLogsSuccess = {
20365
20337
  __typename?: 'ForgeAlertsActivityLogsSuccess';
20366
20338
  activities?: Maybe<Array<Maybe<ForgeAlertsActivityLog>>>;
20367
20339
  };
20368
- export declare enum ForgeAlertsActivityType {
20369
- AlertCreated = "ALERT_CREATED",
20370
- AlertMuted = "ALERT_MUTED",
20371
- AlertOpened = "ALERT_OPENED",
20372
- AlertResolved = "ALERT_RESOLVED",
20373
- AlertSentFiring = "ALERT_SENT_FIRING",
20374
- AlertSentResolved = "ALERT_SENT_RESOLVED",
20375
- AlertUnmuted = "ALERT_UNMUTED",
20376
- AlertUpdated = "ALERT_UPDATED"
20377
- }
20378
20340
  export declare enum ForgeAlertsAlertActivityType {
20379
20341
  AlertClosed = "ALERT_CLOSED",
20380
20342
  AlertOpen = "ALERT_OPEN",
@@ -20402,36 +20364,6 @@ export declare type ForgeAlertsClosed = {
20402
20364
  success: Scalars['Boolean']['output'];
20403
20365
  };
20404
20366
  export declare type ForgeAlertsClosedResponse = ForgeAlertsClosed | QueryError;
20405
- export declare type ForgeAlertsConfigData = {
20406
- __typename?: 'ForgeAlertsConfigData';
20407
- alertId: Scalars['String']['output'];
20408
- alertName: Scalars['String']['output'];
20409
- description?: Maybe<Scalars['String']['output']>;
20410
- environment: Scalars['String']['output'];
20411
- isMuted: Scalars['Boolean']['output'];
20412
- lastTriggeredAt?: Maybe<Scalars['Int']['output']>;
20413
- metricName: Scalars['String']['output'];
20414
- status: ForgeAlertsStatus;
20415
- triggerValue: Scalars['Float']['output'];
20416
- };
20417
- export declare type ForgeAlertsConfigQueryInput = {
20418
- environment: Scalars['String']['input'];
20419
- };
20420
- export declare type ForgeAlertsConfigResult = ForgeAlertsConfigData | QueryError;
20421
- export declare type ForgeAlertsCreateAlertPayload = Payload & {
20422
- __typename?: 'ForgeAlertsCreateAlertPayload';
20423
- alertConfig?: Maybe<ForgeAlertsConfigData>;
20424
- errors?: Maybe<Array<MutationError>>;
20425
- success: Scalars['Boolean']['output'];
20426
- };
20427
- export declare type ForgeAlertsCreateConfigInput = {
20428
- alertId?: InputMaybe<Scalars['String']['input']>;
20429
- description?: InputMaybe<Scalars['String']['input']>;
20430
- environment: Scalars['String']['input'];
20431
- isMuted?: InputMaybe<Scalars['Boolean']['input']>;
20432
- metricName?: InputMaybe<Scalars['String']['input']>;
20433
- triggerValue?: InputMaybe<Scalars['Float']['input']>;
20434
- };
20435
20367
  export declare type ForgeAlertsCreateRuleInput = {
20436
20368
  conditions: Array<ForgeAlertsRuleConditions>;
20437
20369
  description?: InputMaybe<Scalars['String']['input']>;
@@ -20473,9 +20405,6 @@ export declare type ForgeAlertsData = {
20473
20405
  severity: ForgeAlertsRuleSeverity;
20474
20406
  status: ForgeAlertsStatus;
20475
20407
  };
20476
- export declare type ForgeAlertsDeleteAlertConfigsInput = {
20477
- appIds: Array<Scalars['ID']['input']>;
20478
- };
20479
20408
  export declare type ForgeAlertsDeleteRuleInput = {
20480
20409
  ruleId: Scalars['ID']['input'];
20481
20410
  };
@@ -20560,28 +20489,16 @@ export declare type ForgeAlertsMetricsSeries = {
20560
20489
  export declare type ForgeAlertsMutation = {
20561
20490
  __typename?: 'ForgeAlertsMutation';
20562
20491
  appId: Scalars['ID']['output'];
20563
- createAlertConfig?: Maybe<ForgeAlertsCreateAlertPayload>;
20564
20492
  createRule?: Maybe<ForgeAlertsCreateRulePayload>;
20565
- deleteAlertConfigs?: Maybe<Payload>;
20566
20493
  deleteRule?: Maybe<ForgeAlertsDeleteRulePayload>;
20567
- modifyAlertConfig?: Maybe<ForgeAlertsUpdateAlertPayload>;
20568
20494
  updateRule?: Maybe<ForgeAlertsUpdateRulePayload>;
20569
20495
  };
20570
- export declare type ForgeAlertsMutationCreateAlertConfigArgs = {
20571
- input: ForgeAlertsCreateConfigInput;
20572
- };
20573
20496
  export declare type ForgeAlertsMutationCreateRuleArgs = {
20574
20497
  input: ForgeAlertsCreateRuleInput;
20575
20498
  };
20576
- export declare type ForgeAlertsMutationDeleteAlertConfigsArgs = {
20577
- input: ForgeAlertsDeleteAlertConfigsInput;
20578
- };
20579
20499
  export declare type ForgeAlertsMutationDeleteRuleArgs = {
20580
20500
  input: ForgeAlertsDeleteRuleInput;
20581
20501
  };
20582
- export declare type ForgeAlertsMutationModifyAlertConfigArgs = {
20583
- input: ForgeAlertsUpdateConfigInput;
20584
- };
20585
20502
  export declare type ForgeAlertsMutationUpdateRuleArgs = {
20586
20503
  input: ForgeAlertsUpdateRuleInput;
20587
20504
  };
@@ -20592,9 +20509,7 @@ export declare type ForgeAlertsOpen = {
20592
20509
  export declare type ForgeAlertsQuery = {
20593
20510
  __typename?: 'ForgeAlertsQuery';
20594
20511
  alert?: Maybe<ForgeAlertsSingleResult>;
20595
- alertActivities?: Maybe<ForgeAlertsActivitiesResult>;
20596
20512
  alertActivityLogs?: Maybe<ForgeAlertsActivityLogsResult>;
20597
- alertConfig?: Maybe<ForgeAlertsConfigResult>;
20598
20513
  alerts?: Maybe<ForgeAlertsListResult>;
20599
20514
  appId: Scalars['ID']['output'];
20600
20515
  chartDetails?: Maybe<ForgeAlertsChartDetailsResult>;
@@ -20608,15 +20523,9 @@ export declare type ForgeAlertsQuery = {
20608
20523
  export declare type ForgeAlertsQueryAlertArgs = {
20609
20524
  alertId: Scalars['ID']['input'];
20610
20525
  };
20611
- export declare type ForgeAlertsQueryAlertActivitiesArgs = {
20612
- input: ForgeAlertsActivitiesQueryInput;
20613
- };
20614
20526
  export declare type ForgeAlertsQueryAlertActivityLogsArgs = {
20615
20527
  query: ForgeAlertsActivityLogsInput;
20616
20528
  };
20617
- export declare type ForgeAlertsQueryAlertConfigArgs = {
20618
- input: ForgeAlertsConfigQueryInput;
20619
- };
20620
20529
  export declare type ForgeAlertsQueryAlertsArgs = {
20621
20530
  query: ForgeAlertsListQueryInput;
20622
20531
  };
@@ -20785,23 +20694,8 @@ export declare type ForgeAlertsSingleSuccess = {
20785
20694
  };
20786
20695
  export declare enum ForgeAlertsStatus {
20787
20696
  Closed = "CLOSED",
20788
- Firing = "FIRING",
20789
- Open = "OPEN",
20790
- Resolved = "RESOLVED"
20697
+ Open = "OPEN"
20791
20698
  }
20792
- export declare type ForgeAlertsUpdateAlertPayload = Payload & {
20793
- __typename?: 'ForgeAlertsUpdateAlertPayload';
20794
- alertConfig?: Maybe<ForgeAlertsConfigData>;
20795
- errors?: Maybe<Array<MutationError>>;
20796
- success: Scalars['Boolean']['output'];
20797
- };
20798
- export declare type ForgeAlertsUpdateConfigInput = {
20799
- alertName?: InputMaybe<Scalars['String']['input']>;
20800
- description?: InputMaybe<Scalars['String']['input']>;
20801
- environment: Scalars['String']['input'];
20802
- isMuted?: InputMaybe<Scalars['Boolean']['input']>;
20803
- triggerValue?: InputMaybe<Scalars['Float']['input']>;
20804
- };
20805
20699
  export declare type ForgeAlertsUpdateRuleInput = {
20806
20700
  input: ForgeAlertsUpdateRuleInputType;
20807
20701
  ruleId: Scalars['ID']['input'];