@forge/cli-shared 3.1.0-next.2 → 3.1.0
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,17 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 89ae99e: Add support for auto-bundling resources
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [237e3c7]
|
|
12
|
+
- Updated dependencies [151c4d8]
|
|
13
|
+
- @forge/manifest@4.2.0
|
|
14
|
+
|
|
3
15
|
## 3.1.0-next.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -2196,6 +2196,8 @@ export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
|
2196
2196
|
state: CompassDeploymentEventState;
|
|
2197
2197
|
pipeline: CompassDeploymentEventPipelineInput;
|
|
2198
2198
|
environment: CompassDeploymentEventEnvironmentInput;
|
|
2199
|
+
startedAt?: Maybe<Scalars['DateTime']>;
|
|
2200
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
2199
2201
|
};
|
|
2200
2202
|
export declare type CompassCreateEventInput = {
|
|
2201
2203
|
cloudId: Scalars['ID'];
|
|
@@ -2222,14 +2224,18 @@ export declare type CompassCreateFlagEventPropertiesInput = {
|
|
|
2222
2224
|
export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
2223
2225
|
weight: Scalars['Int'];
|
|
2224
2226
|
customFieldDefinitionId: Scalars['ID'];
|
|
2225
|
-
comparator
|
|
2226
|
-
comparatorValue
|
|
2227
|
+
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2228
|
+
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2229
|
+
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2230
|
+
booleanComparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2227
2231
|
};
|
|
2228
2232
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
2229
2233
|
weight: Scalars['Int'];
|
|
2230
2234
|
customFieldDefinitionId: Scalars['ID'];
|
|
2231
|
-
|
|
2232
|
-
|
|
2235
|
+
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2236
|
+
comparatorValue?: Maybe<Scalars['Float']>;
|
|
2237
|
+
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2238
|
+
numberComparatorValue?: Maybe<Scalars['Float']>;
|
|
2233
2239
|
};
|
|
2234
2240
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
2235
2241
|
weight: Scalars['Int'];
|
|
@@ -2537,6 +2543,8 @@ export declare type CompassDeploymentEventProperties = {
|
|
|
2537
2543
|
state?: Maybe<CompassDeploymentEventState>;
|
|
2538
2544
|
pipeline?: Maybe<CompassDeploymentEventPipeline>;
|
|
2539
2545
|
environment?: Maybe<CompassDeploymentEventEnvironment>;
|
|
2546
|
+
startedAt?: Maybe<Scalars['DateTime']>;
|
|
2547
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
2540
2548
|
};
|
|
2541
2549
|
export declare enum CompassDeploymentEventState {
|
|
2542
2550
|
Pending = "PENDING",
|
|
@@ -2671,6 +2679,8 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassScore
|
|
|
2671
2679
|
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2672
2680
|
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2673
2681
|
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2682
|
+
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2683
|
+
booleanComparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2674
2684
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2675
2685
|
};
|
|
2676
2686
|
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -2683,6 +2693,8 @@ export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassScorec
|
|
|
2683
2693
|
customFieldDefinition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
2684
2694
|
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2685
2695
|
comparatorValue?: Maybe<Scalars['Float']>;
|
|
2696
|
+
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2697
|
+
numberComparatorValue?: Maybe<Scalars['Float']>;
|
|
2686
2698
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2687
2699
|
};
|
|
2688
2700
|
export declare type CompassHasCustomNumberFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -3050,6 +3062,7 @@ export declare type CompassScorecardAppliedToComponentsConnection = {
|
|
|
3050
3062
|
edges?: Maybe<Array<CompassScorecardAppliedToComponentsEdge>>;
|
|
3051
3063
|
nodes?: Maybe<Array<CompassComponent>>;
|
|
3052
3064
|
pageInfo: PageInfo;
|
|
3065
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
3053
3066
|
};
|
|
3054
3067
|
export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
3055
3068
|
__typename?: 'CompassScorecardAppliedToComponentsEdge';
|
|
@@ -3276,13 +3289,17 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
3276
3289
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3277
3290
|
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3278
3291
|
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
3292
|
+
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3293
|
+
booleanComparatorValue?: Maybe<Scalars['Boolean']>;
|
|
3279
3294
|
};
|
|
3280
3295
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
3281
3296
|
id: Scalars['ID'];
|
|
3282
3297
|
weight?: Maybe<Scalars['Int']>;
|
|
3283
3298
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3284
|
-
comparatorValue?: Maybe<Scalars['Float']>;
|
|
3285
3299
|
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
3300
|
+
comparatorValue?: Maybe<Scalars['Float']>;
|
|
3301
|
+
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
3302
|
+
numberComparatorValue?: Maybe<Scalars['Float']>;
|
|
3286
3303
|
};
|
|
3287
3304
|
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
3288
3305
|
id: Scalars['ID'];
|
|
@@ -4808,6 +4825,8 @@ export declare type CreateDeploymentEventInput = {
|
|
|
4808
4825
|
pipeline: CompassDeploymentEventPipelineInput;
|
|
4809
4826
|
environment: CompassDeploymentEventEnvironmentInput;
|
|
4810
4827
|
externalEventSourceId: Scalars['ID'];
|
|
4828
|
+
startedAt?: Maybe<Scalars['DateTime']>;
|
|
4829
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
4811
4830
|
};
|
|
4812
4831
|
export declare type CreateDeploymentEventsPayload = Payload & {
|
|
4813
4832
|
__typename?: 'CreateDeploymentEventsPayload';
|
|
@@ -6653,11 +6672,12 @@ export declare type FilterQuery = {
|
|
|
6653
6672
|
errors?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
6654
6673
|
};
|
|
6655
6674
|
export declare type ForgeAlertsActivitiesQueryInput = {
|
|
6656
|
-
after?: Maybe<Scalars['
|
|
6675
|
+
after?: Maybe<Scalars['String']>;
|
|
6657
6676
|
endTime: Scalars['String'];
|
|
6658
6677
|
environment: Scalars['String'];
|
|
6659
6678
|
first?: Maybe<Scalars['Int']>;
|
|
6660
6679
|
startTime: Scalars['String'];
|
|
6680
|
+
onlyOpenResolvedActivityType?: Maybe<Scalars['Boolean']>;
|
|
6661
6681
|
};
|
|
6662
6682
|
export declare type ForgeAlertsActivitiesResult = ForgeAlertsActivityConnection | QueryError;
|
|
6663
6683
|
export declare type ForgeAlertsActivity = {
|
|
@@ -6671,7 +6691,7 @@ export declare type ForgeAlertsActivity = {
|
|
|
6671
6691
|
export declare type ForgeAlertsActivityConnection = {
|
|
6672
6692
|
__typename?: 'ForgeAlertsActivityConnection';
|
|
6673
6693
|
edges: Array<Maybe<ForgeAlertsActivityEdge>>;
|
|
6674
|
-
nodes: Array<
|
|
6694
|
+
nodes: Array<ForgeAlertsActivity>;
|
|
6675
6695
|
pageInfo: PageInfo;
|
|
6676
6696
|
};
|
|
6677
6697
|
export declare type ForgeAlertsActivityEdge = {
|
|
@@ -11045,6 +11065,7 @@ export declare type JiraProject = Node & {
|
|
|
11045
11065
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
11046
11066
|
action?: Maybe<JiraProjectAction>;
|
|
11047
11067
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
11068
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
11048
11069
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
11049
11070
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
11050
11071
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -12921,6 +12942,7 @@ export declare type JiraUpdateReleaseNotesConfigurationPayload = Payload & {
|
|
|
12921
12942
|
success: Scalars['Boolean'];
|
|
12922
12943
|
errors?: Maybe<Array<MutationError>>;
|
|
12923
12944
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
12945
|
+
version?: Maybe<JiraVersion>;
|
|
12924
12946
|
};
|
|
12925
12947
|
export declare type JiraUpdateVersionDescriptionInput = {
|
|
12926
12948
|
id: Scalars['ID'];
|
|
@@ -13493,6 +13515,7 @@ export declare type MarketplacePartner = {
|
|
|
13493
13515
|
programs?: Maybe<MarketplacePartnerPrograms>;
|
|
13494
13516
|
partnerType?: Maybe<MarketplacePartnerType>;
|
|
13495
13517
|
partnerTier?: Maybe<MarketplacePartnerTier>;
|
|
13518
|
+
isUserContact?: Maybe<Scalars['Boolean']>;
|
|
13496
13519
|
};
|
|
13497
13520
|
export declare type MarketplacePartnerAddress = {
|
|
13498
13521
|
__typename?: 'MarketplacePartnerAddress';
|
|
@@ -13857,6 +13880,7 @@ export declare type Mutation = {
|
|
|
13857
13880
|
createPolarisView?: Maybe<CreatePolarisViewPayload>;
|
|
13858
13881
|
updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
|
|
13859
13882
|
updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
|
|
13883
|
+
updatePolarisViewArrangementInfo?: Maybe<UpdatePolarisViewArrangementInfoPayload>;
|
|
13860
13884
|
deletePolarisView?: Maybe<DeletePolarisViewPayload>;
|
|
13861
13885
|
updatePolarisViewLastViewedTimestamp?: Maybe<UpdatePolarisViewTimestampPayload>;
|
|
13862
13886
|
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
@@ -14167,6 +14191,10 @@ export declare type MutationUpdatePolarisViewRankV2Args = {
|
|
|
14167
14191
|
id: Scalars['ID'];
|
|
14168
14192
|
input: UpdatePolarisViewRankInput;
|
|
14169
14193
|
};
|
|
14194
|
+
export declare type MutationUpdatePolarisViewArrangementInfoArgs = {
|
|
14195
|
+
id: Scalars['ID'];
|
|
14196
|
+
input?: Maybe<Scalars['JSON']>;
|
|
14197
|
+
};
|
|
14170
14198
|
export declare type MutationDeletePolarisViewArgs = {
|
|
14171
14199
|
id: Scalars['ID'];
|
|
14172
14200
|
};
|
|
@@ -15464,6 +15492,8 @@ export declare type PolarisTimelineConfig = {
|
|
|
15464
15492
|
startDateField?: Maybe<PolarisIdeaField>;
|
|
15465
15493
|
dueDateField?: Maybe<PolarisIdeaField>;
|
|
15466
15494
|
mode: PolarisTimelineMode;
|
|
15495
|
+
startTimestamp?: Maybe<Scalars['String']>;
|
|
15496
|
+
endTimestamp?: Maybe<Scalars['String']>;
|
|
15467
15497
|
};
|
|
15468
15498
|
export declare enum PolarisTimelineMode {
|
|
15469
15499
|
Months = "MONTHS",
|
|
@@ -15677,6 +15707,7 @@ export declare type Query = {
|
|
|
15677
15707
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
15678
15708
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
15679
15709
|
polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
|
|
15710
|
+
polarisViewArrangementInfo?: Maybe<Scalars['JSON']>;
|
|
15680
15711
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
15681
15712
|
dvcs?: Maybe<DvcsQuery>;
|
|
15682
15713
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -15903,6 +15934,9 @@ export declare type QueryPolarisLinkedDeliveryTicketsArgs = {
|
|
|
15903
15934
|
export declare type QueryPolarisIdeaTemplatesArgs = {
|
|
15904
15935
|
project: Scalars['ID'];
|
|
15905
15936
|
};
|
|
15937
|
+
export declare type QueryPolarisViewArrangementInfoArgs = {
|
|
15938
|
+
id: Scalars['ID'];
|
|
15939
|
+
};
|
|
15906
15940
|
export declare type QueryAppActiveTunnelsArgs = {
|
|
15907
15941
|
appId: Scalars['ID'];
|
|
15908
15942
|
environmentId: Scalars['ID'];
|
|
@@ -17189,22 +17223,8 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
17189
17223
|
favourite: Scalars['Boolean'];
|
|
17190
17224
|
canView: Scalars['Boolean'];
|
|
17191
17225
|
simplified: Scalars['Boolean'];
|
|
17192
|
-
landingPageInfo?: Maybe<SearchResultProjectLandingPageInfo>;
|
|
17193
17226
|
project?: Maybe<JiraProject>;
|
|
17194
17227
|
};
|
|
17195
|
-
export declare type SearchResultProjectLandingPageInfo = SearchResultSoftwareProjectLandingPageInfo | SearchResultServiceDeskProjectLandingPageInfo | SearchResultWorkManagementProjectLandingPageInfo;
|
|
17196
|
-
export declare type SearchResultServiceDeskProjectLandingPageInfo = {
|
|
17197
|
-
__typename?: 'SearchResultServiceDeskProjectLandingPageInfo';
|
|
17198
|
-
id: Scalars['ID'];
|
|
17199
|
-
queueId: Scalars['Int'];
|
|
17200
|
-
queueName: Scalars['String'];
|
|
17201
|
-
};
|
|
17202
|
-
export declare type SearchResultSoftwareProjectLandingPageInfo = {
|
|
17203
|
-
__typename?: 'SearchResultSoftwareProjectLandingPageInfo';
|
|
17204
|
-
id: Scalars['ID'];
|
|
17205
|
-
boardId: Scalars['Int'];
|
|
17206
|
-
boardName: Scalars['String'];
|
|
17207
|
-
};
|
|
17208
17228
|
export declare enum SearchResultType {
|
|
17209
17229
|
Blogpost = "blogpost",
|
|
17210
17230
|
Space = "space",
|
|
@@ -17214,10 +17234,6 @@ export declare enum SearchResultType {
|
|
|
17214
17234
|
Plan = "plan",
|
|
17215
17235
|
Project = "project"
|
|
17216
17236
|
}
|
|
17217
|
-
export declare type SearchResultWorkManagementProjectLandingPageInfo = {
|
|
17218
|
-
__typename?: 'SearchResultWorkManagementProjectLandingPageInfo';
|
|
17219
|
-
boardName: Scalars['String'];
|
|
17220
|
-
};
|
|
17221
17237
|
export declare type SearchSpace = {
|
|
17222
17238
|
__typename?: 'SearchSpace';
|
|
17223
17239
|
key: Scalars['String'];
|
|
@@ -19168,6 +19184,13 @@ export declare type UpdatePolarisTimelineConfig = {
|
|
|
19168
19184
|
startDateField?: Maybe<Scalars['ID']>;
|
|
19169
19185
|
dueDateField?: Maybe<Scalars['ID']>;
|
|
19170
19186
|
mode?: Maybe<PolarisTimelineMode>;
|
|
19187
|
+
startTimestamp?: Maybe<Scalars['String']>;
|
|
19188
|
+
endTimestamp?: Maybe<Scalars['String']>;
|
|
19189
|
+
};
|
|
19190
|
+
export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
19191
|
+
__typename?: 'UpdatePolarisViewArrangementInfoPayload';
|
|
19192
|
+
success: Scalars['Boolean'];
|
|
19193
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19171
19194
|
};
|
|
19172
19195
|
export declare type UpdatePolarisViewInput = {
|
|
19173
19196
|
view?: Maybe<Scalars['ID']>;
|