@forge/cli-shared 3.8.0-next.2 → 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
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.8.0-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [71002871]
|
|
8
|
+
- @forge/util@1.2.2-next.0
|
|
9
|
+
- @forge/manifest@4.8.0-next.2
|
|
10
|
+
|
|
11
|
+
## 3.8.0-next.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [4d594e7e]
|
|
16
|
+
- @forge/manifest@4.8.0-next.1
|
|
17
|
+
|
|
3
18
|
## 3.8.0-next.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -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>;
|
|
@@ -5123,6 +5132,8 @@ export declare type CreateCompassComponentInput = {
|
|
|
5123
5132
|
typeId?: Maybe<Scalars['ID']>;
|
|
5124
5133
|
ownerId?: Maybe<Scalars['ID']>;
|
|
5125
5134
|
fields?: Maybe<Array<CreateCompassFieldInput>>;
|
|
5135
|
+
links?: Maybe<Array<CreateCompassLinkInput>>;
|
|
5136
|
+
labels?: Maybe<Array<Scalars['String']>>;
|
|
5126
5137
|
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
5127
5138
|
};
|
|
5128
5139
|
export declare type CreateCompassComponentLinkInput = {
|
|
@@ -5825,7 +5836,7 @@ export declare type DeleteColumnOutput = MutationResponse & {
|
|
|
5825
5836
|
};
|
|
5826
5837
|
export declare type DeleteCompassComponentExternalAliasInput = {
|
|
5827
5838
|
componentId: Scalars['ID'];
|
|
5828
|
-
externalAlias:
|
|
5839
|
+
externalAlias: CompassDeleteExternalAliasInput;
|
|
5829
5840
|
};
|
|
5830
5841
|
export declare type DeleteCompassComponentExternalAliasPayload = Payload & {
|
|
5831
5842
|
__typename?: 'DeleteCompassComponentExternalAliasPayload';
|
|
@@ -7763,6 +7774,16 @@ export declare type ForgeMetricsLatenciesSeries = ForgeMetricsSeries & {
|
|
|
7763
7774
|
data: Array<ForgeMetricsLatenciesDataPoint>;
|
|
7764
7775
|
percentiles?: Maybe<Array<ForgeMetricsLatenciesPercentile>>;
|
|
7765
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
|
+
};
|
|
7766
7787
|
export declare type ForgeMetricsQuery = {
|
|
7767
7788
|
__typename?: 'ForgeMetricsQuery';
|
|
7768
7789
|
appId: Scalars['ID'];
|
|
@@ -7774,6 +7795,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
7774
7795
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
7775
7796
|
sites: ForgeMetricsSitesResult;
|
|
7776
7797
|
latencies: ForgeMetricsLatenciesResult;
|
|
7798
|
+
latencyBuckets: ForgeMetricsLatenciesResult;
|
|
7777
7799
|
};
|
|
7778
7800
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
7779
7801
|
query: ForgeMetricsQueryInput;
|
|
@@ -7800,6 +7822,10 @@ export declare type ForgeMetricsQueryLatenciesArgs = {
|
|
|
7800
7822
|
query: ForgeMetricsQueryInput;
|
|
7801
7823
|
percentiles?: Maybe<Array<Scalars['Float']>>;
|
|
7802
7824
|
};
|
|
7825
|
+
export declare type ForgeMetricsQueryLatencyBucketsArgs = {
|
|
7826
|
+
query: ForgeMetricsLatencyBucketsQueryInput;
|
|
7827
|
+
percentiles?: Maybe<Array<Scalars['Float']>>;
|
|
7828
|
+
};
|
|
7803
7829
|
export declare type ForgeMetricsQueryFilters = {
|
|
7804
7830
|
environment?: Maybe<Scalars['ID']>;
|
|
7805
7831
|
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
@@ -11835,6 +11861,7 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
11835
11861
|
export declare type JiraMutation = {
|
|
11836
11862
|
__typename?: 'JiraMutation';
|
|
11837
11863
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
11864
|
+
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
11838
11865
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
11839
11866
|
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
11840
11867
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
@@ -11888,6 +11915,9 @@ export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
|
11888
11915
|
cloudId: Scalars['ID'];
|
|
11889
11916
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
11890
11917
|
};
|
|
11918
|
+
export declare type JiraMutationCreateAndAssociateWorkflowFromJsmTemplateArgs = {
|
|
11919
|
+
input: JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput;
|
|
11920
|
+
};
|
|
11891
11921
|
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
11892
11922
|
input: JiraAddIssuesToFixVersionInput;
|
|
11893
11923
|
};
|
|
@@ -13978,6 +14008,19 @@ export declare type JiraServiceManagementCompletedApprovalEdge = {
|
|
|
13978
14008
|
node?: Maybe<JiraServiceManagementCompletedApproval>;
|
|
13979
14009
|
cursor: Scalars['String'];
|
|
13980
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
|
+
};
|
|
13981
14024
|
export declare type JiraServiceManagementCreateRequestTypeFromTemplateInput = {
|
|
13982
14025
|
name: Scalars['String'];
|
|
13983
14026
|
description?: Maybe<Scalars['String']>;
|
|
@@ -14367,6 +14410,11 @@ export declare type JiraServiceManagementUserResponder = {
|
|
|
14367
14410
|
__typename?: 'JiraServiceManagementUserResponder';
|
|
14368
14411
|
user?: Maybe<User>;
|
|
14369
14412
|
};
|
|
14413
|
+
export declare type JiraServiceManagementWorkflowAndIssueSummary = {
|
|
14414
|
+
__typename?: 'JiraServiceManagementWorkflowAndIssueSummary';
|
|
14415
|
+
workflowId?: Maybe<Scalars['String']>;
|
|
14416
|
+
issueTypeId?: Maybe<Scalars['String']>;
|
|
14417
|
+
};
|
|
14370
14418
|
export declare type JiraServiceManagementWorkflowTemplateMetadata = {
|
|
14371
14419
|
__typename?: 'JiraServiceManagementWorkflowTemplateMetadata';
|
|
14372
14420
|
templateId?: Maybe<Scalars['String']>;
|
|
@@ -14465,7 +14513,7 @@ export declare type JiraShareableEntityProjectRoleGrantInput = {
|
|
|
14465
14513
|
projectId: Scalars['ID'];
|
|
14466
14514
|
projectRoleId: Scalars['Int'];
|
|
14467
14515
|
};
|
|
14468
|
-
export declare type JiraShareableEntityShareGrant = JiraShareableEntityGroupGrant | JiraShareableEntityProjectRoleGrant | JiraShareableEntityProjectGrant | JiraShareableEntityAnonymousAccessGrant | JiraShareableEntityAnyLoggedInUserGrant | JiraShareableEntityUnknownProjectGrant;
|
|
14516
|
+
export declare type JiraShareableEntityShareGrant = JiraShareableEntityGroupGrant | JiraShareableEntityProjectRoleGrant | JiraShareableEntityProjectGrant | JiraShareableEntityAnonymousAccessGrant | JiraShareableEntityAnyLoggedInUserGrant | JiraShareableEntityUnknownProjectGrant | JiraShareableEntityUserGrant;
|
|
14469
14517
|
export declare type JiraShareableEntityShareGrantConnection = {
|
|
14470
14518
|
__typename?: 'JiraShareableEntityShareGrantConnection';
|
|
14471
14519
|
pageInfo: PageInfo;
|
|
@@ -14482,6 +14530,7 @@ export declare type JiraShareableEntityShareGrantInput = {
|
|
|
14482
14530
|
projectRole?: Maybe<JiraShareableEntityProjectRoleGrantInput>;
|
|
14483
14531
|
anonymousAccess?: Maybe<JiraShareableEntityAnonymousAccessGrantInput>;
|
|
14484
14532
|
anyLoggedInUser?: Maybe<JiraShareableEntityAnyLoggedInUserGrantInput>;
|
|
14533
|
+
user?: Maybe<JiraShareableEntityUserGrantInput>;
|
|
14485
14534
|
};
|
|
14486
14535
|
export declare type JiraShareableEntityUnknownProjectGrant = {
|
|
14487
14536
|
__typename?: 'JiraShareableEntityUnknownProjectGrant';
|
|
@@ -15187,6 +15236,7 @@ export declare type JiraVersion = Node & {
|
|
|
15187
15236
|
versionIssueTableHiddenColumns?: Maybe<Array<Maybe<JiraVersionIssueTableColumn>>>;
|
|
15188
15237
|
epicsForFilter?: Maybe<JiraIssueConnection>;
|
|
15189
15238
|
canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
|
|
15239
|
+
warningsCount?: Maybe<Scalars['Long']>;
|
|
15190
15240
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
15191
15241
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
15192
15242
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
@@ -22691,8 +22741,8 @@ export declare type TrelloTemplateGalleryCategory = {
|
|
|
22691
22741
|
};
|
|
22692
22742
|
export declare type TrelloTemplateGalleryConnection = {
|
|
22693
22743
|
__typename?: 'TrelloTemplateGalleryConnection';
|
|
22694
|
-
edges: Array<
|
|
22695
|
-
nodes: Array<
|
|
22744
|
+
edges: Array<TrelloBoardEdge>;
|
|
22745
|
+
nodes: Array<TrelloBoard>;
|
|
22696
22746
|
pageInfo: PageInfo;
|
|
22697
22747
|
};
|
|
22698
22748
|
export declare type TrelloTemplateGalleryFilterInput = {
|