@forge/cli-shared 2.1.6-next.11 → 2.1.6-next.12
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,15 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.1.6-next.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [dfe9dd8]
|
|
8
|
+
- Updated dependencies [d3c8c8d]
|
|
9
|
+
- Updated dependencies [0a7725f]
|
|
10
|
+
- Updated dependencies [2bb89c5]
|
|
11
|
+
- @forge/manifest@2.6.0-next.11
|
|
12
|
+
|
|
3
13
|
## 2.1.6-next.11
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -2213,7 +2213,6 @@ export declare type CompassScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
|
2213
2213
|
};
|
|
2214
2214
|
export declare type CompassScorecardCriteriaScore = {
|
|
2215
2215
|
__typename?: 'CompassScorecardCriteriaScore';
|
|
2216
|
-
scorecardCriteria: CompassScorecardCriteria;
|
|
2217
2216
|
score: Scalars['Int'];
|
|
2218
2217
|
maxScore: Scalars['Int'];
|
|
2219
2218
|
};
|
|
@@ -2235,7 +2234,6 @@ export declare type CompassScorecardScore = {
|
|
|
2235
2234
|
__typename?: 'CompassScorecardScore';
|
|
2236
2235
|
totalScore: Scalars['Int'];
|
|
2237
2236
|
maxTotalScore: Scalars['Int'];
|
|
2238
|
-
scorecard: CompassScorecard;
|
|
2239
2237
|
criteriaScores?: Maybe<Array<CompassScorecardCriteriaScore>>;
|
|
2240
2238
|
};
|
|
2241
2239
|
export declare type CompassScorecardScoreQuery = {
|
|
@@ -3467,6 +3465,7 @@ export declare type CustomFiltersValidationError = {
|
|
|
3467
3465
|
__typename?: 'CustomFiltersValidationError';
|
|
3468
3466
|
fieldName: Scalars['String'];
|
|
3469
3467
|
errorMessage: Scalars['String'];
|
|
3468
|
+
errorKey: Scalars['String'];
|
|
3470
3469
|
};
|
|
3471
3470
|
export declare type CustomUiTunnelDefinition = {
|
|
3472
3471
|
__typename?: 'CustomUITunnelDefinition';
|
|
@@ -4316,6 +4315,13 @@ export declare type DevOpsToolConnection = {
|
|
|
4316
4315
|
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
4317
4316
|
pageInfo: PageInfo;
|
|
4318
4317
|
};
|
|
4318
|
+
export declare enum DevOpsToolConnectionState {
|
|
4319
|
+
Initial = "INITIAL",
|
|
4320
|
+
Unconnected = "UNCONNECTED",
|
|
4321
|
+
Incomplete = "INCOMPLETE",
|
|
4322
|
+
Connected = "CONNECTED",
|
|
4323
|
+
Seen = "SEEN"
|
|
4324
|
+
}
|
|
4319
4325
|
export declare type DevOpsToolContainer = Node & {
|
|
4320
4326
|
__typename?: 'DevOpsToolContainer';
|
|
4321
4327
|
id: Scalars['ID'];
|
|
@@ -4371,6 +4377,12 @@ export declare type DevOpsToolNamespaceEdge = {
|
|
|
4371
4377
|
cursor: Scalars['String'];
|
|
4372
4378
|
node?: Maybe<DevOpsToolNamespace>;
|
|
4373
4379
|
};
|
|
4380
|
+
export declare type DevOpsToolNavbarConnectionState = {
|
|
4381
|
+
__typename?: 'DevOpsToolNavbarConnectionState';
|
|
4382
|
+
codeTab: DevOpsToolConnectionState;
|
|
4383
|
+
oncallTab: DevOpsToolConnectionState;
|
|
4384
|
+
pagesTab: DevOpsToolConnectionState;
|
|
4385
|
+
};
|
|
4374
4386
|
export declare type DevOpsToolSupportedContainerType = {
|
|
4375
4387
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
4376
4388
|
category: DevOpsToolCategory;
|
|
@@ -4390,6 +4402,7 @@ export declare type DevOpsTools = {
|
|
|
4390
4402
|
tool?: Maybe<DevOpsTool>;
|
|
4391
4403
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
4392
4404
|
container?: Maybe<DevOpsToolContainer>;
|
|
4405
|
+
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
4393
4406
|
};
|
|
4394
4407
|
export declare type DevOpsToolsToolsArgs = {
|
|
4395
4408
|
cloudId: Scalars['ID'];
|
|
@@ -4405,6 +4418,10 @@ export declare type DevOpsToolsNamespaceArgs = {
|
|
|
4405
4418
|
export declare type DevOpsToolsContainerArgs = {
|
|
4406
4419
|
id: Scalars['ID'];
|
|
4407
4420
|
};
|
|
4421
|
+
export declare type DevOpsToolsNavbarConnectionStateArgs = {
|
|
4422
|
+
cloudId: Scalars['ID'];
|
|
4423
|
+
projectId: Scalars['ID'];
|
|
4424
|
+
};
|
|
4408
4425
|
export declare type DevStatus = {
|
|
4409
4426
|
__typename?: 'DevStatus';
|
|
4410
4427
|
activity: DevStatusActivity;
|
|
@@ -8977,6 +8994,7 @@ export declare type MarketplaceApp = {
|
|
|
8977
8994
|
appId: Scalars['ID'];
|
|
8978
8995
|
appKey: Scalars['String'];
|
|
8979
8996
|
name: Scalars['String'];
|
|
8997
|
+
partnerId: Scalars['ID'];
|
|
8980
8998
|
partner?: Maybe<MarketplacePartner>;
|
|
8981
8999
|
entityStatus: MarketplaceEntityStatus;
|
|
8982
9000
|
createdAt: Scalars['DateTime'];
|
|
@@ -9000,6 +9018,7 @@ export declare type MarketplaceApp = {
|
|
|
9000
9018
|
programs?: Maybe<MarketplaceAppPrograms>;
|
|
9001
9019
|
marketingLabels: Array<Scalars['String']>;
|
|
9002
9020
|
googleAnalyticsId?: Maybe<Scalars['String']>;
|
|
9021
|
+
segmentWriteKey?: Maybe<Scalars['String']>;
|
|
9003
9022
|
categories: Array<MarketplaceAppCategory>;
|
|
9004
9023
|
jsdWidgetKey?: Maybe<Scalars['String']>;
|
|
9005
9024
|
};
|
|
@@ -9041,6 +9060,7 @@ export declare enum MarketplaceAppPermission {
|
|
|
9041
9060
|
export declare type MarketplaceAppPrograms = {
|
|
9042
9061
|
__typename?: 'MarketplaceAppPrograms';
|
|
9043
9062
|
cloudFortified?: Maybe<MarketplaceCloudFortified>;
|
|
9063
|
+
bugBountyParticipant?: Maybe<MarketplaceBugBountyParticipant>;
|
|
9044
9064
|
};
|
|
9045
9065
|
export declare type MarketplaceAppReviewSummary = {
|
|
9046
9066
|
__typename?: 'MarketplaceAppReviewSummary';
|
|
@@ -9109,6 +9129,16 @@ export declare enum MarketplaceBillingCycle {
|
|
|
9109
9129
|
Annual = "ANNUAL",
|
|
9110
9130
|
Monthly = "MONTHLY"
|
|
9111
9131
|
}
|
|
9132
|
+
export declare type MarketplaceBugBountyParticipant = {
|
|
9133
|
+
__typename?: 'MarketplaceBugBountyParticipant';
|
|
9134
|
+
cloud?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
|
|
9135
|
+
server?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
|
|
9136
|
+
dataCenter?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
|
|
9137
|
+
};
|
|
9138
|
+
export declare type MarketplaceBugBountyProgramHostingStatus = {
|
|
9139
|
+
__typename?: 'MarketplaceBugBountyProgramHostingStatus';
|
|
9140
|
+
status?: Maybe<MarketplaceProgramStatus>;
|
|
9141
|
+
};
|
|
9112
9142
|
export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
9113
9143
|
__typename?: 'MarketplaceCloudAppDeployment';
|
|
9114
9144
|
compatibleProducts: Array<CompatibleAtlassianProduct>;
|
|
@@ -9120,6 +9150,7 @@ export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
|
9120
9150
|
export declare type MarketplaceCloudFortified = {
|
|
9121
9151
|
__typename?: 'MarketplaceCloudFortified';
|
|
9122
9152
|
status?: Maybe<MarketplaceCloudFortifiedStatus>;
|
|
9153
|
+
programStatus?: Maybe<MarketplaceProgramStatus>;
|
|
9123
9154
|
};
|
|
9124
9155
|
export declare enum MarketplaceCloudFortifiedStatus {
|
|
9125
9156
|
Approved = "APPROVED",
|
|
@@ -9290,6 +9321,11 @@ export declare enum MarketplacePricingTierType {
|
|
|
9290
9321
|
UserTiered = "USER_TIERED",
|
|
9291
9322
|
RemoteAgentTiered = "REMOTE_AGENT_TIERED"
|
|
9292
9323
|
}
|
|
9324
|
+
export declare enum MarketplaceProgramStatus {
|
|
9325
|
+
Approved = "APPROVED",
|
|
9326
|
+
Rejected = "REJECTED",
|
|
9327
|
+
NotAParticipant = "NOT_A_PARTICIPANT"
|
|
9328
|
+
}
|
|
9293
9329
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
9294
9330
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
9295
9331
|
id: Scalars['ID'];
|
|
@@ -9319,6 +9355,11 @@ export declare enum MembershipRole {
|
|
|
9319
9355
|
Regular = "REGULAR",
|
|
9320
9356
|
Admin = "ADMIN"
|
|
9321
9357
|
}
|
|
9358
|
+
export declare enum MembershipSetting {
|
|
9359
|
+
Open = "OPEN",
|
|
9360
|
+
MemberInvite = "MEMBER_INVITE",
|
|
9361
|
+
AdminInvite = "ADMIN_INVITE"
|
|
9362
|
+
}
|
|
9322
9363
|
export declare enum MembershipState {
|
|
9323
9364
|
FullMember = "FULL_MEMBER",
|
|
9324
9365
|
Invited = "INVITED",
|
|
@@ -10099,7 +10140,7 @@ export declare type Payload = {
|
|
|
10099
10140
|
export declare type PermissionToConsentByOauthId = {
|
|
10100
10141
|
__typename?: 'PermissionToConsentByOauthId';
|
|
10101
10142
|
isAllowed: Scalars['Boolean'];
|
|
10102
|
-
|
|
10143
|
+
isSiteAdmin: Scalars['Boolean'];
|
|
10103
10144
|
};
|
|
10104
10145
|
export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
|
|
10105
10146
|
export declare type PolarisAnonymousVisitorViewHash = {
|
|
@@ -11431,6 +11472,8 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
11431
11472
|
export declare enum RateLimitingCurrency {
|
|
11432
11473
|
TestingService = "TESTING_SERVICE",
|
|
11433
11474
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
11475
|
+
TeamsCurrency = "TEAMS_CURRENCY",
|
|
11476
|
+
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
11434
11477
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
11435
11478
|
}
|
|
11436
11479
|
export declare type RawStatus = {
|
|
@@ -12047,6 +12090,8 @@ export declare enum ShepherdAlertStatus {
|
|
|
12047
12090
|
export declare type ShepherdAppInfo = {
|
|
12048
12091
|
__typename?: 'ShepherdAppInfo';
|
|
12049
12092
|
apiVersion: Scalars['Int'];
|
|
12093
|
+
env: Scalars['String'];
|
|
12094
|
+
loginUrl: Scalars['String'];
|
|
12050
12095
|
};
|
|
12051
12096
|
export declare type ShepherdCreateAlertInput = {
|
|
12052
12097
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -12060,23 +12105,50 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
12060
12105
|
node?: Maybe<ShepherdAlert>;
|
|
12061
12106
|
success: Scalars['Boolean'];
|
|
12062
12107
|
};
|
|
12108
|
+
export declare type ShepherdCreateOrganizationInput = {
|
|
12109
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
12110
|
+
id: Scalars['ID'];
|
|
12111
|
+
};
|
|
12112
|
+
export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
12113
|
+
__typename?: 'ShepherdCreateOrganizationPayload';
|
|
12114
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12115
|
+
node?: Maybe<ShepherdOrganization>;
|
|
12116
|
+
success: Scalars['Boolean'];
|
|
12117
|
+
};
|
|
12063
12118
|
export declare type ShepherdMutation = {
|
|
12064
12119
|
__typename?: 'ShepherdMutation';
|
|
12065
12120
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
12121
|
+
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
12066
12122
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
12123
|
+
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
12067
12124
|
};
|
|
12068
12125
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
12069
12126
|
input: ShepherdCreateAlertInput;
|
|
12070
12127
|
};
|
|
12128
|
+
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
12129
|
+
input: ShepherdCreateOrganizationInput;
|
|
12130
|
+
};
|
|
12071
12131
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
12072
12132
|
id: Scalars['ID'];
|
|
12073
12133
|
input: ShepherdUpdateAlertInput;
|
|
12074
12134
|
};
|
|
12135
|
+
export declare type ShepherdMutationUpdateOrganizationArgs = {
|
|
12136
|
+
id: Scalars['ID'];
|
|
12137
|
+
input: ShepherdUpdateOrganizationInput;
|
|
12138
|
+
};
|
|
12139
|
+
export declare type ShepherdOrganization = {
|
|
12140
|
+
__typename?: 'ShepherdOrganization';
|
|
12141
|
+
createdOn: Scalars['DateTime'];
|
|
12142
|
+
enabled: Scalars['Boolean'];
|
|
12143
|
+
id: Scalars['ID'];
|
|
12144
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
12145
|
+
};
|
|
12075
12146
|
export declare type ShepherdQuery = {
|
|
12076
12147
|
__typename?: 'ShepherdQuery';
|
|
12077
12148
|
shepherdAlert?: Maybe<ShepherdAlert>;
|
|
12078
12149
|
shepherdAlerts?: Maybe<Array<ShepherdAlert>>;
|
|
12079
12150
|
shepherdAppInfo: ShepherdAppInfo;
|
|
12151
|
+
shepherdOrganization?: Maybe<ShepherdOrganization>;
|
|
12080
12152
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
12081
12153
|
};
|
|
12082
12154
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
@@ -12085,6 +12157,9 @@ export declare type ShepherdQueryShepherdAlertArgs = {
|
|
|
12085
12157
|
export declare type ShepherdQueryShepherdAlertsArgs = {
|
|
12086
12158
|
orgId: Scalars['ID'];
|
|
12087
12159
|
};
|
|
12160
|
+
export declare type ShepherdQueryShepherdOrganizationArgs = {
|
|
12161
|
+
id: Scalars['ID'];
|
|
12162
|
+
};
|
|
12088
12163
|
export declare type ShepherdUpdateAlertInput = {
|
|
12089
12164
|
status?: Maybe<ShepherdAlertStatus>;
|
|
12090
12165
|
};
|
|
@@ -12094,6 +12169,15 @@ export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
|
12094
12169
|
node?: Maybe<ShepherdAlert>;
|
|
12095
12170
|
success: Scalars['Boolean'];
|
|
12096
12171
|
};
|
|
12172
|
+
export declare type ShepherdUpdateOrganizationInput = {
|
|
12173
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
12174
|
+
};
|
|
12175
|
+
export declare type ShepherdUpdateOrganizationPayload = Payload & {
|
|
12176
|
+
__typename?: 'ShepherdUpdateOrganizationPayload';
|
|
12177
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12178
|
+
node?: Maybe<ShepherdOrganization>;
|
|
12179
|
+
success: Scalars['Boolean'];
|
|
12180
|
+
};
|
|
12097
12181
|
export declare type ShepherdUser = {
|
|
12098
12182
|
__typename?: 'ShepherdUser';
|
|
12099
12183
|
aid: Scalars['ID'];
|
|
@@ -12347,6 +12431,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
12347
12431
|
__typename?: 'SupportRequestCatalogMutationApi';
|
|
12348
12432
|
addComment?: Maybe<SupportRequestComment>;
|
|
12349
12433
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
12434
|
+
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
12350
12435
|
createNamedContactOperationRequest?: Maybe<SupportRequest>;
|
|
12351
12436
|
};
|
|
12352
12437
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
@@ -12355,6 +12440,9 @@ export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
|
12355
12440
|
export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
12356
12441
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
12357
12442
|
};
|
|
12443
|
+
export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArgs = {
|
|
12444
|
+
input?: Maybe<SupportRequestParticipantsInput>;
|
|
12445
|
+
};
|
|
12358
12446
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
12359
12447
|
emails: Array<Scalars['String']>;
|
|
12360
12448
|
organizationId?: Maybe<Scalars['String']>;
|
|
@@ -12478,6 +12566,19 @@ export declare type SupportRequestPageMigrationRequestsArgs = {
|
|
|
12478
12566
|
offset?: Scalars['Int'];
|
|
12479
12567
|
size?: Scalars['Int'];
|
|
12480
12568
|
};
|
|
12569
|
+
export declare type SupportRequestParticipants = {
|
|
12570
|
+
__typename?: 'SupportRequestParticipants';
|
|
12571
|
+
offset: Scalars['Int'];
|
|
12572
|
+
limit: Scalars['Int'];
|
|
12573
|
+
size: Scalars['Int'];
|
|
12574
|
+
lastPage: Scalars['Boolean'];
|
|
12575
|
+
values: Array<SupportRequestUser>;
|
|
12576
|
+
};
|
|
12577
|
+
export declare type SupportRequestParticipantsInput = {
|
|
12578
|
+
requestKey: Scalars['String'];
|
|
12579
|
+
aaids?: Maybe<Array<Scalars['String']>>;
|
|
12580
|
+
gsacUsernames?: Maybe<Array<Scalars['String']>>;
|
|
12581
|
+
};
|
|
12481
12582
|
export declare enum SupportRequestQueryOwnership {
|
|
12482
12583
|
Reporter = "REPORTER",
|
|
12483
12584
|
Participant = "PARTICIPANT"
|
|
@@ -12556,8 +12657,12 @@ export declare enum SwimlaneStrategy {
|
|
|
12556
12657
|
export declare type Team = {
|
|
12557
12658
|
__typename?: 'Team';
|
|
12558
12659
|
id: Scalars['ID'];
|
|
12660
|
+
organizationId?: Maybe<Scalars['String']>;
|
|
12661
|
+
creator?: Maybe<User>;
|
|
12662
|
+
state?: Maybe<TeamState>;
|
|
12559
12663
|
displayName?: Maybe<Scalars['String']>;
|
|
12560
12664
|
description?: Maybe<Scalars['String']>;
|
|
12665
|
+
membershipSetting?: Maybe<MembershipSetting>;
|
|
12561
12666
|
smallHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
12562
12667
|
largeHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
12563
12668
|
smallAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
@@ -12593,6 +12698,11 @@ export declare type TeamQuery = {
|
|
|
12593
12698
|
export declare type TeamQueryTeamArgs = {
|
|
12594
12699
|
id: Scalars['ID'];
|
|
12595
12700
|
};
|
|
12701
|
+
export declare enum TeamState {
|
|
12702
|
+
Active = "ACTIVE",
|
|
12703
|
+
Disbanded = "DISBANDED",
|
|
12704
|
+
Purged = "PURGED"
|
|
12705
|
+
}
|
|
12596
12706
|
export declare type TenantContext = {
|
|
12597
12707
|
__typename?: 'TenantContext';
|
|
12598
12708
|
cloudId?: Maybe<Scalars['ID']>;
|