@forge/cli-shared 2.4.1-next.2 → 2.4.1-next.5
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,26 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.4.1-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [cb28bc0]
|
|
8
|
+
- @forge/manifest@3.6.0-next.5
|
|
9
|
+
|
|
10
|
+
## 2.4.1-next.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [e314dd0]
|
|
15
|
+
- @forge/manifest@3.6.0-next.4
|
|
16
|
+
|
|
17
|
+
## 2.4.1-next.3
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [90475812]
|
|
22
|
+
- @forge/manifest@3.6.0-next.3
|
|
23
|
+
|
|
3
24
|
## 2.4.1-next.2
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -877,11 +877,26 @@ export declare type AriGraphRelationshipsArgs = {
|
|
|
877
877
|
first?: Maybe<Scalars['Int']>;
|
|
878
878
|
after?: Maybe<Scalars['String']>;
|
|
879
879
|
};
|
|
880
|
+
export declare type AriGraphCreateRelationshipErrorReference = {
|
|
881
|
+
__typename?: 'AriGraphCreateRelationshipErrorReference';
|
|
882
|
+
from: Scalars['ID'];
|
|
883
|
+
to: Scalars['ID'];
|
|
884
|
+
type: Scalars['ID'];
|
|
885
|
+
};
|
|
880
886
|
export declare type AriGraphCreateRelationshipInput = {
|
|
887
|
+
relationships: Array<AriGraphCreateRelationshipInputRelationship>;
|
|
888
|
+
};
|
|
889
|
+
export declare type AriGraphCreateRelationshipInputRelationship = {
|
|
881
890
|
from: Scalars['ID'];
|
|
882
891
|
to: Scalars['ID'];
|
|
883
892
|
type: Scalars['ID'];
|
|
884
893
|
};
|
|
894
|
+
export declare type AriGraphCreateRelationshipMutationErrorExtension = MutationErrorExtension & {
|
|
895
|
+
__typename?: 'AriGraphCreateRelationshipMutationErrorExtension';
|
|
896
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
897
|
+
errorType?: Maybe<Scalars['String']>;
|
|
898
|
+
reference: AriGraphCreateRelationshipErrorReference;
|
|
899
|
+
};
|
|
885
900
|
export declare type AriGraphCreateRelationshipPayload = Payload & {
|
|
886
901
|
__typename?: 'AriGraphCreateRelationshipPayload';
|
|
887
902
|
success: Scalars['Boolean'];
|
|
@@ -955,6 +970,15 @@ export declare type AtlassianAccountUser = User & LocalizationContext & {
|
|
|
955
970
|
email?: Maybe<Scalars['String']>;
|
|
956
971
|
zoneinfo?: Maybe<Scalars['String']>;
|
|
957
972
|
locale?: Maybe<Scalars['String']>;
|
|
973
|
+
orgId?: Maybe<Scalars['ID']>;
|
|
974
|
+
extendedProfile?: Maybe<AtlassianAccountUserExtendedProfile>;
|
|
975
|
+
};
|
|
976
|
+
export declare type AtlassianAccountUserExtendedProfile = {
|
|
977
|
+
__typename?: 'AtlassianAccountUserExtendedProfile';
|
|
978
|
+
jobTitle?: Maybe<Scalars['String']>;
|
|
979
|
+
organization?: Maybe<Scalars['String']>;
|
|
980
|
+
department?: Maybe<Scalars['String']>;
|
|
981
|
+
location?: Maybe<Scalars['String']>;
|
|
958
982
|
};
|
|
959
983
|
export declare type AtlassianOAuthClient = {
|
|
960
984
|
__typename?: 'AtlassianOAuthClient';
|
|
@@ -5262,7 +5286,9 @@ export declare type DevOpsTool = Node & {
|
|
|
5262
5286
|
productKey: Scalars['String'];
|
|
5263
5287
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5264
5288
|
group: DevOpsToolGroup;
|
|
5289
|
+
category: DevOpsToolCategory;
|
|
5265
5290
|
supportsContainers: Scalars['Boolean'];
|
|
5291
|
+
recommended: Scalars['Boolean'];
|
|
5266
5292
|
integration?: Maybe<DevOpsToolIntegration>;
|
|
5267
5293
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5268
5294
|
auth?: Maybe<DevOpsToolAuth>;
|
|
@@ -5418,6 +5444,13 @@ export declare type DevOpsToolIntegrationProduct = {
|
|
|
5418
5444
|
available: Scalars['Boolean'];
|
|
5419
5445
|
iconUrl?: Maybe<Scalars['String']>;
|
|
5420
5446
|
};
|
|
5447
|
+
export declare enum DevOpsToolIntegrationType {
|
|
5448
|
+
Any = "ANY",
|
|
5449
|
+
Exists = "EXISTS",
|
|
5450
|
+
App = "APP",
|
|
5451
|
+
Product = "PRODUCT",
|
|
5452
|
+
None = "NONE"
|
|
5453
|
+
}
|
|
5421
5454
|
export declare type DevOpsToolNamespace = Node & {
|
|
5422
5455
|
__typename?: 'DevOpsToolNamespace';
|
|
5423
5456
|
id: Scalars['ID'];
|
|
@@ -5498,6 +5531,7 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5498
5531
|
groupId?: Maybe<Scalars['String']>;
|
|
5499
5532
|
categoryId?: Maybe<Scalars['String']>;
|
|
5500
5533
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5534
|
+
integrationType?: Maybe<DevOpsToolIntegrationType>;
|
|
5501
5535
|
};
|
|
5502
5536
|
export declare type DevOpsToolsToolArgs = {
|
|
5503
5537
|
id: Scalars['ID'];
|
|
@@ -5992,6 +6026,7 @@ export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
|
|
|
5992
6026
|
__typename?: 'HelpCenterDeleteUpdateCollectionPayload';
|
|
5993
6027
|
success: Scalars['Boolean'];
|
|
5994
6028
|
errors?: Maybe<Array<MutationError>>;
|
|
6029
|
+
collectionIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedCollectionIds>>;
|
|
5995
6030
|
};
|
|
5996
6031
|
export declare type HelpCenterMutationApi = {
|
|
5997
6032
|
__typename?: 'HelpCenterMutationApi';
|
|
@@ -6034,6 +6069,11 @@ export declare type HelpCenterSuccessfullyCreatedCollectionIds = {
|
|
|
6034
6069
|
helpCenterId: Scalars['ID'];
|
|
6035
6070
|
collectionIds: Scalars['ID'];
|
|
6036
6071
|
};
|
|
6072
|
+
export declare type HelpCenterSuccessfullyDeletedUpdatedCollectionIds = {
|
|
6073
|
+
__typename?: 'HelpCenterSuccessfullyDeletedUpdatedCollectionIds';
|
|
6074
|
+
helpCenterId: Scalars['ID'];
|
|
6075
|
+
collectionIds: Scalars['ID'];
|
|
6076
|
+
};
|
|
6037
6077
|
export declare type HelpCenterUpdateCollectionInput = {
|
|
6038
6078
|
helpCenterId: Scalars['ID'];
|
|
6039
6079
|
collectionId: Scalars['ID'];
|
|
@@ -6218,6 +6258,7 @@ export declare type InvokePolarisObjectPayload = Payload & {
|
|
|
6218
6258
|
};
|
|
6219
6259
|
export declare type IssueAndProject = {
|
|
6220
6260
|
__typename?: 'IssueAndProject';
|
|
6261
|
+
issueId: Scalars['ID'];
|
|
6221
6262
|
};
|
|
6222
6263
|
export declare type IssueDevOpsBranchDetails = {
|
|
6223
6264
|
__typename?: 'IssueDevOpsBranchDetails';
|