@forge/cli-shared 3.2.3-next.0 → 3.2.3-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,20 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.2.3-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [be216ec6]
8
+ - @forge/manifest@4.5.0-next.2
9
+
10
+ ## 3.2.3-next.1
11
+
12
+ ### Patch Changes
13
+
14
+ - 8e2a5a6: Update node-fetch version
15
+ - Updated dependencies [8e2a5a6]
16
+ - @forge/manifest@4.4.2-next.1
17
+
3
18
  ## 3.2.3-next.0
4
19
 
5
20
  ### Patch Changes
@@ -866,6 +866,7 @@ export declare type AppUnsubscribePayload = Payload & {
866
866
  };
867
867
  export declare type AppUser = User & {
868
868
  __typename?: 'AppUser';
869
+ id: Scalars['ID'];
869
870
  accountId: Scalars['ID'];
870
871
  canonicalAccountId: Scalars['ID'];
871
872
  accountStatus: AccountStatus;
@@ -1050,6 +1051,7 @@ export declare type AssignIssueParentOutput = MutationResponse & {
1050
1051
  };
1051
1052
  export declare type AtlassianAccountUser = User & LocalizationContext & {
1052
1053
  __typename?: 'AtlassianAccountUser';
1054
+ id: Scalars['ID'];
1053
1055
  accountId: Scalars['ID'];
1054
1056
  canonicalAccountId: Scalars['ID'];
1055
1057
  accountStatus: AccountStatus;
@@ -1570,6 +1572,7 @@ export declare type CardPriority = {
1570
1572
  __typename?: 'CardPriority';
1571
1573
  name?: Maybe<Scalars['String']>;
1572
1574
  iconUrl?: Maybe<Scalars['String']>;
1575
+ id?: Maybe<Scalars['String']>;
1573
1576
  };
1574
1577
  export declare type CardRank = {
1575
1578
  afterCardId?: Maybe<Scalars['ID']>;
@@ -3395,7 +3398,6 @@ export declare type CompassTeamCheckinsInput = {
3395
3398
  export declare type CompassTeamData = {
3396
3399
  __typename?: 'CompassTeamData';
3397
3400
  teamId?: Maybe<Scalars['ID']>;
3398
- team?: Maybe<Team>;
3399
3401
  labels?: Maybe<Array<CompassTeamLabel>>;
3400
3402
  currentCheckin?: Maybe<CompassTeamCheckin>;
3401
3403
  };
@@ -5307,6 +5309,7 @@ export declare type CustomUiTunnelDefinitionInput = {
5307
5309
  };
5308
5310
  export declare type CustomerUser = User & LocalizationContext & {
5309
5311
  __typename?: 'CustomerUser';
5312
+ id: Scalars['ID'];
5310
5313
  accountId: Scalars['ID'];
5311
5314
  canonicalAccountId: Scalars['ID'];
5312
5315
  accountStatus: AccountStatus;
@@ -6335,6 +6338,7 @@ export declare type DevOpsToolAppLinks = {
6335
6338
  manage?: Maybe<Scalars['String']>;
6336
6339
  configure?: Maybe<Scalars['String']>;
6337
6340
  getStarted?: Maybe<Scalars['String']>;
6341
+ support?: Maybe<Scalars['String']>;
6338
6342
  };
6339
6343
  export declare type DevOpsToolAuth = {
6340
6344
  authenticated: Scalars['Boolean'];
@@ -8056,6 +8060,18 @@ export declare type JiraAssetFieldSelectedAssetsConnectionArgs = {
8056
8060
  last?: Maybe<Scalars['Int']>;
8057
8061
  before?: Maybe<Scalars['String']>;
8058
8062
  };
8063
+ export declare type JiraAssignRelatedWorkInput = {
8064
+ assigneeId?: Maybe<Scalars['ID']>;
8065
+ relatedWorkType: JiraVersionRelatedWorkType;
8066
+ relatedWorkId?: Maybe<Scalars['ID']>;
8067
+ versionId: Scalars['ID'];
8068
+ };
8069
+ export declare type JiraAssignRelatedWorkPayload = Payload & {
8070
+ __typename?: 'JiraAssignRelatedWorkPayload';
8071
+ success: Scalars['Boolean'];
8072
+ errors?: Maybe<Array<MutationError>>;
8073
+ relatedWork?: Maybe<JiraVersionRelatedWorkV2>;
8074
+ };
8059
8075
  export declare type JiraAtlassianTeam = {
8060
8076
  __typename?: 'JiraAtlassianTeam';
8061
8077
  teamId?: Maybe<Scalars['String']>;
@@ -10693,6 +10709,7 @@ export declare type JiraMutation = {
10693
10709
  createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
10694
10710
  addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
10695
10711
  removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
10712
+ assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
10696
10713
  jiraFilterMutation?: Maybe<JiraFilterMutation>;
10697
10714
  setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
10698
10715
  updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
@@ -10727,6 +10744,9 @@ export declare type JiraMutationAddRelatedWorkToVersionArgs = {
10727
10744
  export declare type JiraMutationRemoveRelatedWorkFromVersionArgs = {
10728
10745
  input: JiraRemoveRelatedWorkFromVersionInput;
10729
10746
  };
10747
+ export declare type JiraMutationAssignRelatedWorkToUserArgs = {
10748
+ input: JiraAssignRelatedWorkInput;
10749
+ };
10730
10750
  export declare type JiraMutationSetApplicationPropertiesArgs = {
10731
10751
  cloudId: Scalars['ID'];
10732
10752
  input: Array<JiraSetApplicationPropertyInput>;
@@ -13479,6 +13499,7 @@ export declare type JiraVersionRelatedWorkConfluenceReleaseNotes = JiraVersionRe
13479
13499
  category?: Maybe<Scalars['String']>;
13480
13500
  addedOn?: Maybe<Scalars['DateTime']>;
13481
13501
  addedBy?: Maybe<User>;
13502
+ assignee?: Maybe<User>;
13482
13503
  };
13483
13504
  export declare type JiraVersionRelatedWorkConnection = {
13484
13505
  __typename?: 'JiraVersionRelatedWorkConnection';
@@ -13498,16 +13519,24 @@ export declare type JiraVersionRelatedWorkGenericLink = JiraVersionRelatedWorkV2
13498
13519
  category?: Maybe<Scalars['String']>;
13499
13520
  addedOn?: Maybe<Scalars['DateTime']>;
13500
13521
  addedBy?: Maybe<User>;
13522
+ assignee?: Maybe<User>;
13501
13523
  };
13502
13524
  export declare type JiraVersionRelatedWorkNativeReleaseNotes = JiraVersionRelatedWorkV2 & {
13503
13525
  __typename?: 'JiraVersionRelatedWorkNativeReleaseNotes';
13504
13526
  addedOn?: Maybe<Scalars['DateTime']>;
13505
13527
  category?: Maybe<Scalars['String']>;
13506
13528
  title?: Maybe<Scalars['String']>;
13529
+ assignee?: Maybe<User>;
13507
13530
  };
13531
+ export declare enum JiraVersionRelatedWorkType {
13532
+ GenericLink = "GENERIC_LINK",
13533
+ ConfluenceReleaseNotes = "CONFLUENCE_RELEASE_NOTES",
13534
+ NativeReleaseNotes = "NATIVE_RELEASE_NOTES"
13535
+ }
13508
13536
  export declare type JiraVersionRelatedWorkV2 = {
13509
13537
  category?: Maybe<Scalars['String']>;
13510
13538
  title?: Maybe<Scalars['String']>;
13539
+ assignee?: Maybe<User>;
13511
13540
  };
13512
13541
  export declare type JiraVersionRelatedWorkV2Connection = {
13513
13542
  __typename?: 'JiraVersionRelatedWorkV2Connection';
@@ -15072,6 +15101,37 @@ export declare type NewCardParent = {
15072
15101
  export declare type Node = {
15073
15102
  id: Scalars['ID'];
15074
15103
  };
15104
+ export declare type OAuthClientsAccountGrant = {
15105
+ __typename?: 'OAuthClientsAccountGrant';
15106
+ clientId?: Maybe<Scalars['String']>;
15107
+ scopes?: Maybe<Array<Scalars['String']>>;
15108
+ };
15109
+ export declare type OAuthClientsAccountGrantConnection = {
15110
+ __typename?: 'OAuthClientsAccountGrantConnection';
15111
+ edges?: Maybe<Array<Maybe<OAuthClientsAccountGrantEdge>>>;
15112
+ nodes?: Maybe<Array<Maybe<OAuthClientsAccountGrant>>>;
15113
+ pageInfo: OAuthClientsAccountGrantPageInfo;
15114
+ };
15115
+ export declare type OAuthClientsAccountGrantEdge = {
15116
+ __typename?: 'OAuthClientsAccountGrantEdge';
15117
+ cursor?: Maybe<Scalars['String']>;
15118
+ node?: Maybe<OAuthClientsAccountGrant>;
15119
+ };
15120
+ export declare type OAuthClientsAccountGrantPageInfo = {
15121
+ __typename?: 'OAuthClientsAccountGrantPageInfo';
15122
+ hasNextPage: Scalars['Boolean'];
15123
+ hasPreviousPage: Scalars['Boolean'];
15124
+ startCursor?: Maybe<Scalars['String']>;
15125
+ endCursor?: Maybe<Scalars['String']>;
15126
+ };
15127
+ export declare type OAuthClientsQuery = {
15128
+ __typename?: 'OAuthClientsQuery';
15129
+ allAccountGrantsForUser?: Maybe<OAuthClientsAccountGrantConnection>;
15130
+ };
15131
+ export declare type OAuthClientsQueryAllAccountGrantsForUserArgs = {
15132
+ first?: Maybe<Scalars['Int']>;
15133
+ after?: Maybe<Scalars['String']>;
15134
+ };
15075
15135
  export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
15076
15136
  export declare type OpsgenieAlertCountByPriority = {
15077
15137
  __typename?: 'OpsgenieAlertCountByPriority';
@@ -16436,6 +16496,7 @@ export declare type Query = {
16436
16496
  ecosystem?: Maybe<EcosystemQuery>;
16437
16497
  appDeployment?: Maybe<AppDeployment>;
16438
16498
  jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
16499
+ oauthClients?: Maybe<OAuthClientsQuery>;
16439
16500
  helpCenter?: Maybe<HelpCenterQueryApi>;
16440
16501
  };
16441
16502
  export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
@@ -16797,9 +16858,11 @@ export declare enum RateLimitingCurrency {
16797
16858
  CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY",
16798
16859
  CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
16799
16860
  DirectoryCurrency = "DIRECTORY_CURRENCY",
16861
+ HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
16800
16862
  ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
16801
16863
  DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
16802
16864
  DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
16865
+ HelpCenterCurrency = "HELP_CENTER_CURRENCY",
16803
16866
  ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY"
16804
16867
  }
16805
16868
  export declare type RawStatus = {
@@ -18825,6 +18888,7 @@ export declare type SupportRequestAddCommentInput = {
18825
18888
  export declare type SupportRequestCatalogMutationApi = {
18826
18889
  __typename?: 'SupportRequestCatalogMutationApi';
18827
18890
  addComment?: Maybe<SupportRequestComment>;
18891
+ updateMigrationTask?: Maybe<Array<Maybe<Scalars['JSON']>>>;
18828
18892
  statusTransition?: Maybe<Scalars['Boolean']>;
18829
18893
  removeRequestParticipants?: Maybe<SupportRequestParticipants>;
18830
18894
  addRequestParticipants?: Maybe<SupportRequestParticipants>;
@@ -18837,6 +18901,9 @@ export declare type SupportRequestCatalogMutationApi = {
18837
18901
  export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
18838
18902
  input?: Maybe<SupportRequestAddCommentInput>;
18839
18903
  };
18904
+ export declare type SupportRequestCatalogMutationApiUpdateMigrationTaskArgs = {
18905
+ input?: Maybe<SupportRequestMigrationTaskInput>;
18906
+ };
18840
18907
  export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
18841
18908
  input?: Maybe<SupportRequestTransitionInput>;
18842
18909
  };
@@ -18957,6 +19024,12 @@ export declare type SupportRequestLastComment = {
18957
19024
  offset: Scalars['Int'];
18958
19025
  values: Array<SupportRequestComment>;
18959
19026
  };
19027
+ export declare type SupportRequestMigrationTaskInput = {
19028
+ requestKey: Scalars['String'];
19029
+ taskName: Scalars['String'];
19030
+ comment?: Maybe<Scalars['String']>;
19031
+ completedByPartner: Scalars['Boolean'];
19032
+ };
18960
19033
  export declare enum SupportRequestNamedContactOperation {
18961
19034
  Add = "ADD",
18962
19035
  Remove = "REMOVE"
@@ -20152,6 +20225,7 @@ export declare type UpdateUserInstallationRulesInput = {
20152
20225
  rule: UserInstallationRuleValue;
20153
20226
  };
20154
20227
  export declare type User = {
20228
+ id: Scalars['ID'];
20155
20229
  accountId: Scalars['ID'];
20156
20230
  canonicalAccountId: Scalars['ID'];
20157
20231
  accountStatus: AccountStatus;