@forge/cli-shared 3.8.0-next.3 → 3.8.0-next.4
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
|
@@ -159,6 +159,7 @@ export declare enum ActivitiesObjectType {
|
|
|
159
159
|
Issue = "ISSUE",
|
|
160
160
|
Page = "PAGE",
|
|
161
161
|
Blogpost = "BLOGPOST",
|
|
162
|
+
Whiteboard = "WHITEBOARD",
|
|
162
163
|
Project = "PROJECT",
|
|
163
164
|
Goal = "GOAL"
|
|
164
165
|
}
|
|
@@ -265,6 +266,7 @@ export declare enum ActivityObjectType {
|
|
|
265
266
|
Space = "SPACE",
|
|
266
267
|
Page = "PAGE",
|
|
267
268
|
Blogpost = "BLOGPOST",
|
|
269
|
+
Whiteboard = "WHITEBOARD",
|
|
268
270
|
Task = "TASK",
|
|
269
271
|
Goal = "GOAL"
|
|
270
272
|
}
|
|
@@ -2742,6 +2744,7 @@ export declare type CompassCustomTextFieldInput = {
|
|
|
2742
2744
|
export declare type CompassCustomUserField = CompassCustomField & {
|
|
2743
2745
|
__typename?: 'CompassCustomUserField';
|
|
2744
2746
|
definition?: Maybe<CompassCustomUserFieldDefinition>;
|
|
2747
|
+
userIdValue?: Maybe<Scalars['ID']>;
|
|
2745
2748
|
userValue?: Maybe<User>;
|
|
2746
2749
|
};
|
|
2747
2750
|
export declare type CompassCustomUserFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
@@ -2783,6 +2786,10 @@ export declare type CompassDeleteCustomFieldDefinitionPayload = Payload & {
|
|
|
2783
2786
|
errors?: Maybe<Array<MutationError>>;
|
|
2784
2787
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
2785
2788
|
};
|
|
2789
|
+
export declare type CompassDeleteExternalAliasInput = {
|
|
2790
|
+
externalId: Scalars['ID'];
|
|
2791
|
+
externalSource: Scalars['ID'];
|
|
2792
|
+
};
|
|
2786
2793
|
export declare type CompassDeleteMetricDefinitionInput = {
|
|
2787
2794
|
id: Scalars['ID'];
|
|
2788
2795
|
};
|
|
@@ -2956,10 +2963,12 @@ export declare type CompassExternalAlias = {
|
|
|
2956
2963
|
__typename?: 'CompassExternalAlias';
|
|
2957
2964
|
externalSource: Scalars['ID'];
|
|
2958
2965
|
externalAliasId: Scalars['ID'];
|
|
2966
|
+
url?: Maybe<Scalars['String']>;
|
|
2959
2967
|
};
|
|
2960
2968
|
export declare type CompassExternalAliasInput = {
|
|
2961
2969
|
externalId: Scalars['ID'];
|
|
2962
2970
|
externalSource: Scalars['ID'];
|
|
2971
|
+
url?: Maybe<Scalars['String']>;
|
|
2963
2972
|
};
|
|
2964
2973
|
export declare type CompassExternalMetricSourceConfigurationInput = {
|
|
2965
2974
|
slo?: Maybe<CompassSloMetricSourceConfigurationInput>;
|
|
@@ -5827,7 +5836,7 @@ export declare type DeleteColumnOutput = MutationResponse & {
|
|
|
5827
5836
|
};
|
|
5828
5837
|
export declare type DeleteCompassComponentExternalAliasInput = {
|
|
5829
5838
|
componentId: Scalars['ID'];
|
|
5830
|
-
externalAlias:
|
|
5839
|
+
externalAlias: CompassDeleteExternalAliasInput;
|
|
5831
5840
|
};
|
|
5832
5841
|
export declare type DeleteCompassComponentExternalAliasPayload = Payload & {
|
|
5833
5842
|
__typename?: 'DeleteCompassComponentExternalAliasPayload';
|
|
@@ -7765,6 +7774,16 @@ export declare type ForgeMetricsLatenciesSeries = ForgeMetricsSeries & {
|
|
|
7765
7774
|
data: Array<ForgeMetricsLatenciesDataPoint>;
|
|
7766
7775
|
percentiles?: Maybe<Array<ForgeMetricsLatenciesPercentile>>;
|
|
7767
7776
|
};
|
|
7777
|
+
export declare type ForgeMetricsLatencyBucketsQueryFilters = {
|
|
7778
|
+
environment?: Maybe<Scalars['ID']>;
|
|
7779
|
+
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
7780
|
+
interval: ForgeMetricsIntervalInput;
|
|
7781
|
+
functionNames?: Maybe<Array<Scalars['String']>>;
|
|
7782
|
+
};
|
|
7783
|
+
export declare type ForgeMetricsLatencyBucketsQueryInput = {
|
|
7784
|
+
filters: ForgeMetricsLatencyBucketsQueryFilters;
|
|
7785
|
+
groupBy?: Maybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
7786
|
+
};
|
|
7768
7787
|
export declare type ForgeMetricsQuery = {
|
|
7769
7788
|
__typename?: 'ForgeMetricsQuery';
|
|
7770
7789
|
appId: Scalars['ID'];
|
|
@@ -7776,6 +7795,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
7776
7795
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
7777
7796
|
sites: ForgeMetricsSitesResult;
|
|
7778
7797
|
latencies: ForgeMetricsLatenciesResult;
|
|
7798
|
+
latencyBuckets: ForgeMetricsLatenciesResult;
|
|
7779
7799
|
};
|
|
7780
7800
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
7781
7801
|
query: ForgeMetricsQueryInput;
|
|
@@ -7802,6 +7822,10 @@ export declare type ForgeMetricsQueryLatenciesArgs = {
|
|
|
7802
7822
|
query: ForgeMetricsQueryInput;
|
|
7803
7823
|
percentiles?: Maybe<Array<Scalars['Float']>>;
|
|
7804
7824
|
};
|
|
7825
|
+
export declare type ForgeMetricsQueryLatencyBucketsArgs = {
|
|
7826
|
+
query: ForgeMetricsLatencyBucketsQueryInput;
|
|
7827
|
+
percentiles?: Maybe<Array<Scalars['Float']>>;
|
|
7828
|
+
};
|
|
7805
7829
|
export declare type ForgeMetricsQueryFilters = {
|
|
7806
7830
|
environment?: Maybe<Scalars['ID']>;
|
|
7807
7831
|
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
@@ -11837,6 +11861,7 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
11837
11861
|
export declare type JiraMutation = {
|
|
11838
11862
|
__typename?: 'JiraMutation';
|
|
11839
11863
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
11864
|
+
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
11840
11865
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
11841
11866
|
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
11842
11867
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
@@ -11890,6 +11915,9 @@ export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
|
11890
11915
|
cloudId: Scalars['ID'];
|
|
11891
11916
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
11892
11917
|
};
|
|
11918
|
+
export declare type JiraMutationCreateAndAssociateWorkflowFromJsmTemplateArgs = {
|
|
11919
|
+
input: JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput;
|
|
11920
|
+
};
|
|
11893
11921
|
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
11894
11922
|
input: JiraAddIssuesToFixVersionInput;
|
|
11895
11923
|
};
|
|
@@ -13980,6 +14008,19 @@ export declare type JiraServiceManagementCompletedApprovalEdge = {
|
|
|
13980
14008
|
node?: Maybe<JiraServiceManagementCompletedApproval>;
|
|
13981
14009
|
cursor: Scalars['String'];
|
|
13982
14010
|
};
|
|
14011
|
+
export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput = {
|
|
14012
|
+
templateId: Scalars['String'];
|
|
14013
|
+
projectId: Scalars['ID'];
|
|
14014
|
+
workflowName?: Maybe<Scalars['String']>;
|
|
14015
|
+
issueTypeName?: Maybe<Scalars['String']>;
|
|
14016
|
+
issueTypeIcon?: Maybe<Scalars['String']>;
|
|
14017
|
+
};
|
|
14018
|
+
export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload = Payload & {
|
|
14019
|
+
__typename?: 'JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload';
|
|
14020
|
+
success: Scalars['Boolean'];
|
|
14021
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14022
|
+
workflowAndIssueSummary?: Maybe<JiraServiceManagementWorkflowAndIssueSummary>;
|
|
14023
|
+
};
|
|
13983
14024
|
export declare type JiraServiceManagementCreateRequestTypeFromTemplateInput = {
|
|
13984
14025
|
name: Scalars['String'];
|
|
13985
14026
|
description?: Maybe<Scalars['String']>;
|
|
@@ -14369,6 +14410,11 @@ export declare type JiraServiceManagementUserResponder = {
|
|
|
14369
14410
|
__typename?: 'JiraServiceManagementUserResponder';
|
|
14370
14411
|
user?: Maybe<User>;
|
|
14371
14412
|
};
|
|
14413
|
+
export declare type JiraServiceManagementWorkflowAndIssueSummary = {
|
|
14414
|
+
__typename?: 'JiraServiceManagementWorkflowAndIssueSummary';
|
|
14415
|
+
workflowId?: Maybe<Scalars['String']>;
|
|
14416
|
+
issueTypeId?: Maybe<Scalars['String']>;
|
|
14417
|
+
};
|
|
14372
14418
|
export declare type JiraServiceManagementWorkflowTemplateMetadata = {
|
|
14373
14419
|
__typename?: 'JiraServiceManagementWorkflowTemplateMetadata';
|
|
14374
14420
|
templateId?: Maybe<Scalars['String']>;
|
|
@@ -14467,7 +14513,7 @@ export declare type JiraShareableEntityProjectRoleGrantInput = {
|
|
|
14467
14513
|
projectId: Scalars['ID'];
|
|
14468
14514
|
projectRoleId: Scalars['Int'];
|
|
14469
14515
|
};
|
|
14470
|
-
export declare type JiraShareableEntityShareGrant = JiraShareableEntityGroupGrant | JiraShareableEntityProjectRoleGrant | JiraShareableEntityProjectGrant | JiraShareableEntityAnonymousAccessGrant | JiraShareableEntityAnyLoggedInUserGrant | JiraShareableEntityUnknownProjectGrant;
|
|
14516
|
+
export declare type JiraShareableEntityShareGrant = JiraShareableEntityGroupGrant | JiraShareableEntityProjectRoleGrant | JiraShareableEntityProjectGrant | JiraShareableEntityAnonymousAccessGrant | JiraShareableEntityAnyLoggedInUserGrant | JiraShareableEntityUnknownProjectGrant | JiraShareableEntityUserGrant;
|
|
14471
14517
|
export declare type JiraShareableEntityShareGrantConnection = {
|
|
14472
14518
|
__typename?: 'JiraShareableEntityShareGrantConnection';
|
|
14473
14519
|
pageInfo: PageInfo;
|
|
@@ -14484,6 +14530,7 @@ export declare type JiraShareableEntityShareGrantInput = {
|
|
|
14484
14530
|
projectRole?: Maybe<JiraShareableEntityProjectRoleGrantInput>;
|
|
14485
14531
|
anonymousAccess?: Maybe<JiraShareableEntityAnonymousAccessGrantInput>;
|
|
14486
14532
|
anyLoggedInUser?: Maybe<JiraShareableEntityAnyLoggedInUserGrantInput>;
|
|
14533
|
+
user?: Maybe<JiraShareableEntityUserGrantInput>;
|
|
14487
14534
|
};
|
|
14488
14535
|
export declare type JiraShareableEntityUnknownProjectGrant = {
|
|
14489
14536
|
__typename?: 'JiraShareableEntityUnknownProjectGrant';
|