@forge/cli-shared 3.17.0-next.14 → 3.17.0-next.15
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
|
@@ -1580,11 +1580,21 @@ export type AriGraphReplaceRelationshipsPayload = Payload & {
|
|
|
1580
1580
|
export type AriGraphSubscriptions = {
|
|
1581
1581
|
__typename?: 'AriGraphSubscriptions';
|
|
1582
1582
|
onPullRequestCreatedOrUpdatedForProject?: Maybe<AriGraphRelationshipConnection>;
|
|
1583
|
+
onDeploymentCreatedOrUpdatedForProject?: Maybe<AriGraphRelationship>;
|
|
1584
|
+
onVulnerabilityCreatedOrUpdatedForProject?: Maybe<AriGraphRelationship>;
|
|
1583
1585
|
};
|
|
1584
1586
|
export type AriGraphSubscriptionsOnPullRequestCreatedOrUpdatedForProjectArgs = {
|
|
1585
1587
|
projectId: Scalars['ID'];
|
|
1586
1588
|
type?: Scalars['String'];
|
|
1587
1589
|
};
|
|
1590
|
+
export type AriGraphSubscriptionsOnDeploymentCreatedOrUpdatedForProjectArgs = {
|
|
1591
|
+
projectId: Scalars['ID'];
|
|
1592
|
+
type?: Scalars['String'];
|
|
1593
|
+
};
|
|
1594
|
+
export type AriGraphSubscriptionsOnVulnerabilityCreatedOrUpdatedForProjectArgs = {
|
|
1595
|
+
projectId: Scalars['ID'];
|
|
1596
|
+
type?: Scalars['String'];
|
|
1597
|
+
};
|
|
1588
1598
|
export type ArjConfiguration = {
|
|
1589
1599
|
__typename?: 'ArjConfiguration';
|
|
1590
1600
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -2995,6 +3005,7 @@ export type CompassCatalogQueryApi = {
|
|
|
2995
3005
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
2996
3006
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
2997
3007
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
3008
|
+
customFieldDefinition?: Maybe<CompassCustomFieldDefinitionResult>;
|
|
2998
3009
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
2999
3010
|
metricValuesTimeSeries?: Maybe<CompassMetricValuesTimeseriesResult>;
|
|
3000
3011
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
@@ -3059,6 +3070,9 @@ export type CompassCatalogQueryApiEventSourceArgs = {
|
|
|
3059
3070
|
eventType: CompassEventType;
|
|
3060
3071
|
externalEventSourceId: Scalars['ID'];
|
|
3061
3072
|
};
|
|
3073
|
+
export type CompassCatalogQueryApiCustomFieldDefinitionArgs = {
|
|
3074
|
+
query: CompassCustomFieldDefinitionQuery;
|
|
3075
|
+
};
|
|
3062
3076
|
export type CompassCatalogQueryApiCustomFieldDefinitionsArgs = {
|
|
3063
3077
|
query: CompassCustomFieldDefinitionsQuery;
|
|
3064
3078
|
};
|
|
@@ -3507,6 +3521,11 @@ export type CompassCustomFieldDefinitionEdge = {
|
|
|
3507
3521
|
cursor: Scalars['String'];
|
|
3508
3522
|
node?: Maybe<CompassCustomFieldDefinition>;
|
|
3509
3523
|
};
|
|
3524
|
+
export type CompassCustomFieldDefinitionQuery = {
|
|
3525
|
+
cloudId: Scalars['ID'];
|
|
3526
|
+
id: Scalars['ID'];
|
|
3527
|
+
};
|
|
3528
|
+
export type CompassCustomFieldDefinitionResult = CompassCustomTextFieldDefinition | CompassCustomBooleanFieldDefinition | CompassCustomNumberFieldDefinition | CompassCustomUserFieldDefinition | CompassCustomSingleSelectFieldDefinition | CompassCustomMultiSelectFieldDefinition | QueryError;
|
|
3510
3529
|
export type CompassCustomFieldDefinitionsConnection = {
|
|
3511
3530
|
__typename?: 'CompassCustomFieldDefinitionsConnection';
|
|
3512
3531
|
edges?: Maybe<Array<CompassCustomFieldDefinitionEdge>>;
|
|
@@ -6778,7 +6797,7 @@ export type CustomUiTunnelDefinitionInput = {
|
|
|
6778
6797
|
resourceKey?: Maybe<Scalars['String']>;
|
|
6779
6798
|
tunnelUrl?: Maybe<Scalars['URL']>;
|
|
6780
6799
|
};
|
|
6781
|
-
export type CustomerServiceAttribute = {
|
|
6800
|
+
export type CustomerServiceAttribute = Node & {
|
|
6782
6801
|
__typename?: 'CustomerServiceAttribute';
|
|
6783
6802
|
id: Scalars['ID'];
|
|
6784
6803
|
name: Scalars['String'];
|
|
@@ -6850,7 +6869,7 @@ export type CustomerServiceAttributeUpdateTypeInput = {
|
|
|
6850
6869
|
name?: Maybe<CustomerServiceAttributeTypeName>;
|
|
6851
6870
|
options?: Maybe<Array<Scalars['String']>>;
|
|
6852
6871
|
};
|
|
6853
|
-
export type CustomerServiceAttributeValue = {
|
|
6872
|
+
export type CustomerServiceAttributeValue = Node & {
|
|
6854
6873
|
__typename?: 'CustomerServiceAttributeValue';
|
|
6855
6874
|
id: Scalars['ID'];
|
|
6856
6875
|
name: Scalars['String'];
|
|
@@ -7546,7 +7565,7 @@ export type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
7546
7565
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7547
7566
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7548
7567
|
};
|
|
7549
|
-
export type DevOpsDocument = {
|
|
7568
|
+
export type DevOpsDocument = Node & {
|
|
7550
7569
|
__typename?: 'DevOpsDocument';
|
|
7551
7570
|
id: Scalars['ID'];
|
|
7552
7571
|
parentId?: Maybe<Scalars['ID']>;
|
|
@@ -13987,6 +14006,11 @@ export type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
13987
14006
|
after?: Maybe<Scalars['String']>;
|
|
13988
14007
|
filter?: Maybe<JiraIssueSearchFieldSetsFilter>;
|
|
13989
14008
|
};
|
|
14009
|
+
export declare enum JiraIssueSearchViewContext {
|
|
14010
|
+
Nin = "NIN",
|
|
14011
|
+
NinWithFallback = "NIN_WITH_FALLBACK",
|
|
14012
|
+
ShadowRequest = "SHADOW_REQUEST"
|
|
14013
|
+
}
|
|
13990
14014
|
export type JiraIssueSearchViewPayload = Payload & {
|
|
13991
14015
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
13992
14016
|
success: Scalars['Boolean'];
|
|
@@ -14911,6 +14935,7 @@ export type JiraMutation = {
|
|
|
14911
14935
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
14912
14936
|
updateCheckboxesField?: Maybe<JiraCheckboxesFieldPayload>;
|
|
14913
14937
|
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
14938
|
+
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
14914
14939
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
14915
14940
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
14916
14941
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -15109,6 +15134,9 @@ export type JiraMutationUpdateCheckboxesFieldArgs = {
|
|
|
15109
15134
|
export type JiraMutationUpdateLegacyTeamFieldArgs = {
|
|
15110
15135
|
input: JiraUpdateLegacyTeamFieldInput;
|
|
15111
15136
|
};
|
|
15137
|
+
export type JiraMutationUpdateParentFieldArgs = {
|
|
15138
|
+
input: JiraUpdateParentFieldInput;
|
|
15139
|
+
};
|
|
15112
15140
|
export type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
15113
15141
|
input: JiraPermissionSchemeAddGrantInput;
|
|
15114
15142
|
};
|
|
@@ -15434,6 +15462,16 @@ export type JiraPageCursors = {
|
|
|
15434
15462
|
export type JiraParentFieldInput = {
|
|
15435
15463
|
issueId: Scalars['ID'];
|
|
15436
15464
|
};
|
|
15465
|
+
export type JiraParentFieldOperationInput = {
|
|
15466
|
+
operation: JiraSingleValueFieldOperations;
|
|
15467
|
+
id?: Maybe<Scalars['ID']>;
|
|
15468
|
+
};
|
|
15469
|
+
export type JiraParentFieldPayload = Payload & {
|
|
15470
|
+
__typename?: 'JiraParentFieldPayload';
|
|
15471
|
+
success: Scalars['Boolean'];
|
|
15472
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15473
|
+
field?: Maybe<JiraParentIssueField>;
|
|
15474
|
+
};
|
|
15437
15475
|
export type JiraParentIssueField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
15438
15476
|
__typename?: 'JiraParentIssueField';
|
|
15439
15477
|
id: Scalars['ID'];
|
|
@@ -18576,6 +18614,10 @@ export type JiraUpdateNumberFieldInput = {
|
|
|
18576
18614
|
id: Scalars['ID'];
|
|
18577
18615
|
operation: JiraNumberFieldOperationInput;
|
|
18578
18616
|
};
|
|
18617
|
+
export type JiraUpdateParentFieldInput = {
|
|
18618
|
+
id: Scalars['ID'];
|
|
18619
|
+
operation: JiraParentFieldOperationInput;
|
|
18620
|
+
};
|
|
18579
18621
|
export type JiraUpdatePriorityFieldInput = {
|
|
18580
18622
|
id: Scalars['ID'];
|
|
18581
18623
|
operation: JiraPriorityFieldOperationInput;
|
|
@@ -20875,6 +20917,8 @@ export type NlpSource = {
|
|
|
20875
20917
|
url: Scalars['URL'];
|
|
20876
20918
|
iconUrl?: Maybe<Scalars['URL']>;
|
|
20877
20919
|
type: NlpSearchResultType;
|
|
20920
|
+
lastModified?: Maybe<Scalars['String']>;
|
|
20921
|
+
spaceName?: Maybe<Scalars['String']>;
|
|
20878
20922
|
};
|
|
20879
20923
|
export type Node = {
|
|
20880
20924
|
id: Scalars['ID'];
|
|
@@ -26791,6 +26835,7 @@ export type TrelloAttachmentEdge = {
|
|
|
26791
26835
|
export type TrelloBoard = Node & {
|
|
26792
26836
|
__typename?: 'TrelloBoard';
|
|
26793
26837
|
closed: Scalars['Boolean'];
|
|
26838
|
+
description?: Maybe<TrelloDescription>;
|
|
26794
26839
|
enterpriseOwned: Scalars['Boolean'];
|
|
26795
26840
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
26796
26841
|
id: Scalars['ID'];
|
|
@@ -26939,6 +26984,7 @@ export type TrelloBoardViewer = {
|
|
|
26939
26984
|
__typename?: 'TrelloBoardViewer';
|
|
26940
26985
|
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
26941
26986
|
starred: Scalars['Boolean'];
|
|
26987
|
+
subscribed?: Maybe<Scalars['Boolean']>;
|
|
26942
26988
|
};
|
|
26943
26989
|
export type TrelloCard = Node & {
|
|
26944
26990
|
__typename?: 'TrelloCard';
|
|
@@ -27368,6 +27414,7 @@ export type TrelloMember = Node & {
|
|
|
27368
27414
|
__typename?: 'TrelloMember';
|
|
27369
27415
|
id: Scalars['ID'];
|
|
27370
27416
|
objectId: Scalars['ID'];
|
|
27417
|
+
user?: Maybe<User>;
|
|
27371
27418
|
username?: Maybe<Scalars['String']>;
|
|
27372
27419
|
};
|
|
27373
27420
|
export type TrelloMutationApi = {
|