@forge/cli-shared 3.17.1 → 3.17.2-next.1
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.17.2-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 81556b08: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @sentry/node
|
|
10
|
+
|
|
11
|
+
## 3.17.2-next.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [8b993ad6]
|
|
16
|
+
- @forge/manifest@4.19.1-next.0
|
|
17
|
+
|
|
3
18
|
## 3.17.1
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -7574,6 +7574,16 @@ export type DevOpsDeploymentProvider = DevOpsDataProvider & {
|
|
|
7574
7574
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7575
7575
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7576
7576
|
};
|
|
7577
|
+
export type DevOpsDesignProvider = DevOpsDataProvider & {
|
|
7578
|
+
__typename?: 'DevOpsDesignProvider';
|
|
7579
|
+
id: Scalars['ID'];
|
|
7580
|
+
name?: Maybe<Scalars['String']>;
|
|
7581
|
+
homeUrl?: Maybe<Scalars['URL']>;
|
|
7582
|
+
logoUrl?: Maybe<Scalars['URL']>;
|
|
7583
|
+
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7584
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7585
|
+
grant3LOUrl?: Maybe<Scalars['String']>;
|
|
7586
|
+
};
|
|
7577
7587
|
export type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
7578
7588
|
__typename?: 'DevOpsDevInfoProvider';
|
|
7579
7589
|
id: Scalars['ID'];
|
|
@@ -7943,7 +7953,8 @@ export declare enum DevOpsProviderType {
|
|
|
7943
7953
|
FeatureFlag = "FEATURE_FLAG",
|
|
7944
7954
|
RemoteLinks = "REMOTE_LINKS",
|
|
7945
7955
|
Security = "SECURITY",
|
|
7946
|
-
Documentation = "DOCUMENTATION"
|
|
7956
|
+
Documentation = "DOCUMENTATION",
|
|
7957
|
+
Design = "DESIGN"
|
|
7947
7958
|
}
|
|
7948
7959
|
export type DevOpsProviders = {
|
|
7949
7960
|
__typename?: 'DevOpsProviders';
|
|
@@ -7954,6 +7965,7 @@ export type DevOpsProviders = {
|
|
|
7954
7965
|
remoteLinksProviders?: Maybe<Array<Maybe<DevOpsRemoteLinksProvider>>>;
|
|
7955
7966
|
securityProviders?: Maybe<Array<Maybe<DevOpsSecurityProvider>>>;
|
|
7956
7967
|
documentationProviders?: Maybe<Array<Maybe<DevOpsDocumentationProvider>>>;
|
|
7968
|
+
designProviders?: Maybe<Array<Maybe<DevOpsDesignProvider>>>;
|
|
7957
7969
|
};
|
|
7958
7970
|
export declare enum DevOpsPullRequestApprovalStatus {
|
|
7959
7971
|
Approved = "APPROVED",
|
|
@@ -20764,6 +20776,7 @@ export type Mutation = {
|
|
|
20764
20776
|
createJwmOverview?: Maybe<JiraWorkManagementCreateOverviewPayload>;
|
|
20765
20777
|
updateJwmOverview?: Maybe<JiraWorkManagementUpdateOverviewPayload>;
|
|
20766
20778
|
deleteJwmOverview?: Maybe<JiraWorkManagementDeleteOverviewPayload>;
|
|
20779
|
+
surfacePlatform: SurfacePlatformMutationApi;
|
|
20767
20780
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
20768
20781
|
virtualAgent?: Maybe<VirtualAgentMutationApi>;
|
|
20769
20782
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
@@ -23657,6 +23670,7 @@ export type RankingDiffPayload = {
|
|
|
23657
23670
|
export declare enum RateLimitingCurrency {
|
|
23658
23671
|
TestingService = "TESTING_SERVICE",
|
|
23659
23672
|
TrelloCurrency = "TRELLO_CURRENCY",
|
|
23673
|
+
TrelloMutationCurrency = "TRELLO_MUTATION_CURRENCY",
|
|
23660
23674
|
DevopsToolRelationshipsReadCurrency = "DEVOPS_TOOL_RELATIONSHIPS_READ_CURRENCY",
|
|
23661
23675
|
DevopsToolRelationshipsWriteCurrency = "DEVOPS_TOOL_RELATIONSHIPS_WRITE_CURRENCY",
|
|
23662
23676
|
CannedResponseQueryCurrency = "CANNED_RESPONSE_QUERY_CURRENCY",
|
|
@@ -26622,6 +26636,13 @@ export type SupportRequests = {
|
|
|
26622
26636
|
total: Scalars['Int'];
|
|
26623
26637
|
page: Array<SupportRequest>;
|
|
26624
26638
|
};
|
|
26639
|
+
export type SurfacePlatformMutationApi = {
|
|
26640
|
+
__typename?: 'SurfacePlatformMutationApi';
|
|
26641
|
+
setSurfaceConfiguration?: Maybe<SurfacePlatformSurfaceConfiguration>;
|
|
26642
|
+
};
|
|
26643
|
+
export type SurfacePlatformMutationApiSetSurfaceConfigurationArgs = {
|
|
26644
|
+
configuration: SurfacePlatformSurfaceConfigurationInput;
|
|
26645
|
+
};
|
|
26625
26646
|
export type SurfacePlatformQueryApi = {
|
|
26626
26647
|
__typename?: 'SurfacePlatformQueryApi';
|
|
26627
26648
|
surface?: Maybe<SurfacePlatformSurface>;
|
|
@@ -26647,6 +26668,35 @@ export type SurfacePlatformSurface = {
|
|
|
26647
26668
|
version?: Maybe<Scalars['String']>;
|
|
26648
26669
|
zones?: Maybe<Scalars['JSON']>;
|
|
26649
26670
|
};
|
|
26671
|
+
export type SurfacePlatformSurfaceConfiguration = {
|
|
26672
|
+
__typename?: 'SurfacePlatformSurfaceConfiguration';
|
|
26673
|
+
channel: Scalars['String'];
|
|
26674
|
+
definitionVersion: Scalars['String'];
|
|
26675
|
+
description?: Maybe<Scalars['String']>;
|
|
26676
|
+
enrichmentFields?: Maybe<Scalars['JSON']>;
|
|
26677
|
+
fields: Scalars['JSON'];
|
|
26678
|
+
key: Scalars['String'];
|
|
26679
|
+
label: Scalars['String'];
|
|
26680
|
+
locale: Scalars['String'];
|
|
26681
|
+
revision: Scalars['Int'];
|
|
26682
|
+
status: Scalars['String'];
|
|
26683
|
+
type: Scalars['String'];
|
|
26684
|
+
zones?: Maybe<Scalars['JSON']>;
|
|
26685
|
+
};
|
|
26686
|
+
export type SurfacePlatformSurfaceConfigurationInput = {
|
|
26687
|
+
channel: Scalars['String'];
|
|
26688
|
+
definitionVersion: Scalars['String'];
|
|
26689
|
+
description?: Maybe<Scalars['String']>;
|
|
26690
|
+
enrichmentFields?: Maybe<Scalars['JSON']>;
|
|
26691
|
+
fields: Scalars['JSON'];
|
|
26692
|
+
key: Scalars['String'];
|
|
26693
|
+
label: Scalars['String'];
|
|
26694
|
+
locale: Scalars['String'];
|
|
26695
|
+
revision: Scalars['Int'];
|
|
26696
|
+
status: Scalars['String'];
|
|
26697
|
+
type: Scalars['String'];
|
|
26698
|
+
zones?: Maybe<Scalars['JSON']>;
|
|
26699
|
+
};
|
|
26650
26700
|
export type SurfacePlatformSurfaceV2 = {
|
|
26651
26701
|
__typename?: 'SurfacePlatformSurfaceV2';
|
|
26652
26702
|
channel?: Maybe<Scalars['String']>;
|
|
@@ -27334,7 +27384,7 @@ export type TrelloAddHelloPayload = Payload & {
|
|
|
27334
27384
|
};
|
|
27335
27385
|
export type TrelloAddMemberInput = {
|
|
27336
27386
|
cardId: Scalars['ID'];
|
|
27337
|
-
|
|
27387
|
+
userId: Scalars['ID'];
|
|
27338
27388
|
};
|
|
27339
27389
|
export type TrelloAddMemberToCardPayload = Payload & {
|
|
27340
27390
|
__typename?: 'TrelloAddMemberToCardPayload';
|
|
@@ -27383,6 +27433,7 @@ export type TrelloBoard = Node & {
|
|
|
27383
27433
|
enterpriseOwned: Scalars['Boolean'];
|
|
27384
27434
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
27385
27435
|
id: Scalars['ID'];
|
|
27436
|
+
labels?: Maybe<TrelloLabelConnection>;
|
|
27386
27437
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
27387
27438
|
limits?: Maybe<TrelloBoardLimits>;
|
|
27388
27439
|
lists?: Maybe<TrelloListConnection>;
|
|
@@ -27397,6 +27448,10 @@ export type TrelloBoard = Node & {
|
|
|
27397
27448
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
27398
27449
|
workspace?: Maybe<TrelloWorkspace>;
|
|
27399
27450
|
};
|
|
27451
|
+
export type TrelloBoardLabelsArgs = {
|
|
27452
|
+
after?: Maybe<Scalars['String']>;
|
|
27453
|
+
first?: Maybe<Scalars['Int']>;
|
|
27454
|
+
};
|
|
27400
27455
|
export type TrelloBoardListsArgs = {
|
|
27401
27456
|
after?: Maybe<Scalars['String']>;
|
|
27402
27457
|
filter?: Maybe<TrelloListFilterInput>;
|
|
@@ -27795,7 +27850,7 @@ export type TrelloChecklistEdge = {
|
|
|
27795
27850
|
node: TrelloChecklist;
|
|
27796
27851
|
};
|
|
27797
27852
|
export type TrelloCreateCardInput = {
|
|
27798
|
-
|
|
27853
|
+
listId: Scalars['ID'];
|
|
27799
27854
|
name: Scalars['String'];
|
|
27800
27855
|
};
|
|
27801
27856
|
export type TrelloCreateCardPayload = Payload & {
|
|
@@ -28165,7 +28220,7 @@ export type TrelloRemoveMemberFromCardPayload = Payload & {
|
|
|
28165
28220
|
};
|
|
28166
28221
|
export type TrelloRemoveMemberInput = {
|
|
28167
28222
|
cardId: Scalars['ID'];
|
|
28168
|
-
|
|
28223
|
+
userId: Scalars['ID'];
|
|
28169
28224
|
};
|
|
28170
28225
|
export type TrelloScaleProps = {
|
|
28171
28226
|
__typename?: 'TrelloScaleProps';
|