@forge/cli-shared 3.19.0-next.21 → 3.19.0-next.22
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 +6 -0
- package/out/graphql/graphql-types.d.ts +114 -95
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +25 -41
- package/out/ui/text.d.ts +0 -43
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +0 -43
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6823,73 +6823,6 @@ export type CreatedSprint = {
|
|
|
6823
6823
|
sprintState?: Maybe<SprintState>;
|
|
6824
6824
|
canUpdateSprint?: Maybe<Scalars['Boolean']>;
|
|
6825
6825
|
};
|
|
6826
|
-
export type CsApp = App | CsConnectApp;
|
|
6827
|
-
export type CsAppNetworkEgressPermission = {
|
|
6828
|
-
__typename?: 'CsAppNetworkEgressPermission';
|
|
6829
|
-
type?: Maybe<CsAppNetworkPermissionType>;
|
|
6830
|
-
addresses: Array<Scalars['String']>;
|
|
6831
|
-
};
|
|
6832
|
-
export declare enum CsAppNetworkPermissionType {
|
|
6833
|
-
Connect = "CONNECT"
|
|
6834
|
-
}
|
|
6835
|
-
export type CsAppPermission = {
|
|
6836
|
-
__typename?: 'CsAppPermission';
|
|
6837
|
-
scopes: Array<CsConnectScope>;
|
|
6838
|
-
egress: Array<CsAppNetworkEgressPermission>;
|
|
6839
|
-
};
|
|
6840
|
-
export type CsAppsInstalledInContextsConnection = {
|
|
6841
|
-
__typename?: 'CsAppsInstalledInContextsConnection';
|
|
6842
|
-
edges: Array<CsAppsInstalledInContextsEdge>;
|
|
6843
|
-
pageInfo: PageInfo;
|
|
6844
|
-
};
|
|
6845
|
-
export type CsAppsInstalledInContextsEdge = {
|
|
6846
|
-
__typename?: 'CsAppsInstalledInContextsEdge';
|
|
6847
|
-
node?: Maybe<CsApp>;
|
|
6848
|
-
cursor: Scalars['String'];
|
|
6849
|
-
};
|
|
6850
|
-
export type CsAppsInstalledInContextsEdgeNodeArgs = {
|
|
6851
|
-
contextIds: Array<Scalars['ID']>;
|
|
6852
|
-
};
|
|
6853
|
-
export type CsAppsInstalledInContextsFilter = {
|
|
6854
|
-
type: CsAppsInstalledInContextsFilterType;
|
|
6855
|
-
values: Array<Scalars['String']>;
|
|
6856
|
-
};
|
|
6857
|
-
export declare enum CsAppsInstalledInContextsFilterType {
|
|
6858
|
-
ExcludeAppIds = "EXCLUDE_APP_IDS",
|
|
6859
|
-
IncludeAppIds = "INCLUDE_APP_IDS"
|
|
6860
|
-
}
|
|
6861
|
-
export type CsAppsInstalledInContextsOrderBy = {
|
|
6862
|
-
sortKey: CsAppsInstalledInContextsSortKey;
|
|
6863
|
-
direction: SortDirection;
|
|
6864
|
-
};
|
|
6865
|
-
export declare enum CsAppsInstalledInContextsSortKey {
|
|
6866
|
-
Name = "NAME"
|
|
6867
|
-
}
|
|
6868
|
-
export type CsConnectApp = {
|
|
6869
|
-
__typename?: 'CsConnectApp';
|
|
6870
|
-
id: Scalars['ID'];
|
|
6871
|
-
name: Scalars['String'];
|
|
6872
|
-
description: Scalars['String'];
|
|
6873
|
-
vendorName?: Maybe<Scalars['String']>;
|
|
6874
|
-
distributionStatus: Scalars['String'];
|
|
6875
|
-
installations: Array<CsConnectInstallations>;
|
|
6876
|
-
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
6877
|
-
};
|
|
6878
|
-
export type CsConnectAppVersion = {
|
|
6879
|
-
__typename?: 'CsConnectAppVersion';
|
|
6880
|
-
version: Scalars['String'];
|
|
6881
|
-
permissions: Array<CsAppPermission>;
|
|
6882
|
-
};
|
|
6883
|
-
export type CsConnectInstallations = {
|
|
6884
|
-
__typename?: 'CsConnectInstallations';
|
|
6885
|
-
appVersion: CsConnectAppVersion;
|
|
6886
|
-
};
|
|
6887
|
-
export type CsConnectScope = {
|
|
6888
|
-
__typename?: 'CsConnectScope';
|
|
6889
|
-
key: Scalars['String'];
|
|
6890
|
-
name: Scalars['String'];
|
|
6891
|
-
description: Scalars['String'];
|
|
6892
|
-
};
|
|
6893
6826
|
export type CumulativeFlowDiagram = {
|
|
6894
6827
|
__typename?: 'CumulativeFlowDiagram';
|
|
6895
6828
|
chart: CfdChartConnection;
|
|
@@ -9089,6 +9022,20 @@ export type EarliestViewViewedForUser = {
|
|
|
9089
9022
|
__typename?: 'EarliestViewViewedForUser';
|
|
9090
9023
|
datetime?: Maybe<Scalars['String']>;
|
|
9091
9024
|
};
|
|
9025
|
+
export type EcosystemApp = App | EcosystemConnectApp;
|
|
9026
|
+
export type EcosystemAppNetworkEgressPermission = {
|
|
9027
|
+
__typename?: 'EcosystemAppNetworkEgressPermission';
|
|
9028
|
+
type?: Maybe<EcosystemAppNetworkPermissionType>;
|
|
9029
|
+
addresses: Array<Scalars['String']>;
|
|
9030
|
+
};
|
|
9031
|
+
export declare enum EcosystemAppNetworkPermissionType {
|
|
9032
|
+
Connect = "CONNECT"
|
|
9033
|
+
}
|
|
9034
|
+
export type EcosystemAppPermission = {
|
|
9035
|
+
__typename?: 'EcosystemAppPermission';
|
|
9036
|
+
scopes: Array<EcosystemConnectScope>;
|
|
9037
|
+
egress: Array<EcosystemAppNetworkEgressPermission>;
|
|
9038
|
+
};
|
|
9092
9039
|
export type EcosystemAppPolicies = {
|
|
9093
9040
|
__typename?: 'EcosystemAppPolicies';
|
|
9094
9041
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
@@ -9096,6 +9043,59 @@ export type EcosystemAppPolicies = {
|
|
|
9096
9043
|
export type EcosystemAppPoliciesDataClassificationsArgs = {
|
|
9097
9044
|
id: Scalars['ID'];
|
|
9098
9045
|
};
|
|
9046
|
+
export type EcosystemAppsInstalledInContextsConnection = {
|
|
9047
|
+
__typename?: 'EcosystemAppsInstalledInContextsConnection';
|
|
9048
|
+
edges: Array<EcosystemAppsInstalledInContextsEdge>;
|
|
9049
|
+
pageInfo: PageInfo;
|
|
9050
|
+
};
|
|
9051
|
+
export type EcosystemAppsInstalledInContextsEdge = {
|
|
9052
|
+
__typename?: 'EcosystemAppsInstalledInContextsEdge';
|
|
9053
|
+
node?: Maybe<EcosystemApp>;
|
|
9054
|
+
cursor: Scalars['String'];
|
|
9055
|
+
};
|
|
9056
|
+
export type EcosystemAppsInstalledInContextsEdgeNodeArgs = {
|
|
9057
|
+
contextIds: Array<Scalars['ID']>;
|
|
9058
|
+
};
|
|
9059
|
+
export type EcosystemAppsInstalledInContextsFilter = {
|
|
9060
|
+
type: EcosystemAppsInstalledInContextsFilterType;
|
|
9061
|
+
values: Array<Scalars['String']>;
|
|
9062
|
+
};
|
|
9063
|
+
export declare enum EcosystemAppsInstalledInContextsFilterType {
|
|
9064
|
+
ExcludeAppIds = "EXCLUDE_APP_IDS",
|
|
9065
|
+
IncludeAppIds = "INCLUDE_APP_IDS"
|
|
9066
|
+
}
|
|
9067
|
+
export type EcosystemAppsInstalledInContextsOrderBy = {
|
|
9068
|
+
sortKey: EcosystemAppsInstalledInContextsSortKey;
|
|
9069
|
+
direction: SortDirection;
|
|
9070
|
+
};
|
|
9071
|
+
export declare enum EcosystemAppsInstalledInContextsSortKey {
|
|
9072
|
+
Name = "NAME"
|
|
9073
|
+
}
|
|
9074
|
+
export type EcosystemConnectApp = {
|
|
9075
|
+
__typename?: 'EcosystemConnectApp';
|
|
9076
|
+
id: Scalars['ID'];
|
|
9077
|
+
name: Scalars['String'];
|
|
9078
|
+
description: Scalars['String'];
|
|
9079
|
+
vendorName?: Maybe<Scalars['String']>;
|
|
9080
|
+
distributionStatus: Scalars['String'];
|
|
9081
|
+
installations: Array<EcosystemConnectInstallations>;
|
|
9082
|
+
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
9083
|
+
};
|
|
9084
|
+
export type EcosystemConnectAppVersion = {
|
|
9085
|
+
__typename?: 'EcosystemConnectAppVersion';
|
|
9086
|
+
version: Scalars['String'];
|
|
9087
|
+
permissions: Array<EcosystemAppPermission>;
|
|
9088
|
+
};
|
|
9089
|
+
export type EcosystemConnectInstallations = {
|
|
9090
|
+
__typename?: 'EcosystemConnectInstallations';
|
|
9091
|
+
appVersion: EcosystemConnectAppVersion;
|
|
9092
|
+
};
|
|
9093
|
+
export type EcosystemConnectScope = {
|
|
9094
|
+
__typename?: 'EcosystemConnectScope';
|
|
9095
|
+
key: Scalars['String'];
|
|
9096
|
+
name: Scalars['String'];
|
|
9097
|
+
description: Scalars['String'];
|
|
9098
|
+
};
|
|
9099
9099
|
export type EcosystemDataClassificationPolicyContainer = {
|
|
9100
9100
|
__typename?: 'EcosystemDataClassificationPolicyContainer';
|
|
9101
9101
|
decision: EcosystemDataClassificationPolicyDecision;
|
|
@@ -9130,6 +9130,7 @@ export type EcosystemMutation = {
|
|
|
9130
9130
|
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
9131
9131
|
createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
|
|
9132
9132
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
9133
|
+
publishAppClientEvent?: Maybe<EcosystemPublishEventBody>;
|
|
9133
9134
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
9134
9135
|
};
|
|
9135
9136
|
export type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
@@ -9162,9 +9163,23 @@ export type EcosystemMutationCreateAppEnvironmentArgs = {
|
|
|
9162
9163
|
export type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
9163
9164
|
input: DeleteAppEnvironmentInput;
|
|
9164
9165
|
};
|
|
9166
|
+
export type EcosystemMutationPublishAppClientEventArgs = {
|
|
9167
|
+
contextAri: Scalars['String'];
|
|
9168
|
+
extensionAri: Scalars['String'];
|
|
9169
|
+
eventId?: Maybe<Scalars['String']>;
|
|
9170
|
+
payload: Scalars['String'];
|
|
9171
|
+
};
|
|
9165
9172
|
export type EcosystemMutationForgeAlertsArgs = {
|
|
9166
9173
|
appId: Scalars['ID'];
|
|
9167
9174
|
};
|
|
9175
|
+
export type EcosystemOnEventBody = {
|
|
9176
|
+
__typename?: 'EcosystemOnEventBody';
|
|
9177
|
+
payload?: Maybe<Scalars['String']>;
|
|
9178
|
+
};
|
|
9179
|
+
export type EcosystemPublishEventBody = {
|
|
9180
|
+
__typename?: 'EcosystemPublishEventBody';
|
|
9181
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
9182
|
+
};
|
|
9168
9183
|
export type EcosystemQuery = {
|
|
9169
9184
|
__typename?: 'EcosystemQuery';
|
|
9170
9185
|
userGrants?: Maybe<UserGrantConnection>;
|
|
@@ -9173,7 +9188,7 @@ export type EcosystemQuery = {
|
|
|
9173
9188
|
appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
|
|
9174
9189
|
appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
|
|
9175
9190
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
9176
|
-
appsInstalledInContexts:
|
|
9191
|
+
appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
|
|
9177
9192
|
appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
|
|
9178
9193
|
appByOauthClient?: Maybe<App>;
|
|
9179
9194
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
@@ -9213,8 +9228,8 @@ export type EcosystemQueryFortifiedMetricsArgs = {
|
|
|
9213
9228
|
};
|
|
9214
9229
|
export type EcosystemQueryAppsInstalledInContextsArgs = {
|
|
9215
9230
|
contextIds: Array<Scalars['ID']>;
|
|
9216
|
-
filters?: Maybe<Array<
|
|
9217
|
-
orderBy?: Maybe<Array<
|
|
9231
|
+
filters?: Maybe<Array<EcosystemAppsInstalledInContextsFilter>>;
|
|
9232
|
+
orderBy?: Maybe<Array<EcosystemAppsInstalledInContextsOrderBy>>;
|
|
9218
9233
|
first?: Maybe<Scalars['Int']>;
|
|
9219
9234
|
last?: Maybe<Scalars['Int']>;
|
|
9220
9235
|
before?: Maybe<Scalars['String']>;
|
|
@@ -9238,6 +9253,16 @@ export type EcosystemQueryForgeContributorsArgs = {
|
|
|
9238
9253
|
export type EcosystemQueryForgeAlertsArgs = {
|
|
9239
9254
|
appId: Scalars['ID'];
|
|
9240
9255
|
};
|
|
9256
|
+
export type EcosystemSubscription = {
|
|
9257
|
+
__typename?: 'EcosystemSubscription';
|
|
9258
|
+
dummy?: Maybe<Scalars['String']>;
|
|
9259
|
+
onAppClientEvent?: Maybe<EcosystemOnEventBody>;
|
|
9260
|
+
};
|
|
9261
|
+
export type EcosystemSubscriptionOnAppClientEventArgs = {
|
|
9262
|
+
contextAri: Scalars['String'];
|
|
9263
|
+
extensionAri: Scalars['String'];
|
|
9264
|
+
eventId?: Maybe<Scalars['String']>;
|
|
9265
|
+
};
|
|
9241
9266
|
export type EditSprintInput = {
|
|
9242
9267
|
boardId: Scalars['ID'];
|
|
9243
9268
|
sprintId: Scalars['ID'];
|
|
@@ -9297,20 +9322,6 @@ export declare enum EstimationType {
|
|
|
9297
9322
|
IssueCount = "ISSUE_COUNT",
|
|
9298
9323
|
CustomNumberField = "CUSTOM_NUMBER_FIELD"
|
|
9299
9324
|
}
|
|
9300
|
-
export declare enum EventKnownAvIs {
|
|
9301
|
-
AviJiraIssueCreated = "AVI_JIRA_ISSUE_CREATED",
|
|
9302
|
-
AviJiraIssueUpdated = "AVI_JIRA_ISSUE_UPDATED",
|
|
9303
|
-
AviBitbucketPrCreated = "AVI_BITBUCKET_PR_CREATED"
|
|
9304
|
-
}
|
|
9305
|
-
export declare enum EventMatchingStrategies {
|
|
9306
|
-
JiraByCloud = "JIRA_BY_CLOUD",
|
|
9307
|
-
JiraByProject = "JIRA_BY_PROJECT",
|
|
9308
|
-
JiraByIssue = "JIRA_BY_ISSUE",
|
|
9309
|
-
BitbucketByRepo = "BITBUCKET_BY_REPO",
|
|
9310
|
-
ByAccount = "BY_ACCOUNT",
|
|
9311
|
-
JiraByCloudByProjectTypeByAccount = "JIRA_BY_CLOUD_BY_PROJECT_TYPE_BY_ACCOUNT",
|
|
9312
|
-
PrByProjectByRelationshipType = "PR_BY_PROJECT_BY_RELATIONSHIP_TYPE"
|
|
9313
|
-
}
|
|
9314
9325
|
export type EventSource = Node & {
|
|
9315
9326
|
__typename?: 'EventSource';
|
|
9316
9327
|
id: Scalars['ID'];
|
|
@@ -12872,6 +12883,20 @@ export type JiraAffectedServicesFieldInput = {
|
|
|
12872
12883
|
export type JiraAffectedServicesInput = {
|
|
12873
12884
|
serviceId: Scalars['ID'];
|
|
12874
12885
|
};
|
|
12886
|
+
export type JiraAnnouncementBanner = Node & {
|
|
12887
|
+
__typename?: 'JiraAnnouncementBanner';
|
|
12888
|
+
id: Scalars['ID'];
|
|
12889
|
+
isDismissible?: Maybe<Scalars['Boolean']>;
|
|
12890
|
+
isEnabled?: Maybe<Scalars['Boolean']>;
|
|
12891
|
+
isDismissed?: Maybe<Scalars['Boolean']>;
|
|
12892
|
+
message?: Maybe<Scalars['String']>;
|
|
12893
|
+
visibility?: Maybe<JiraAnnouncementBannerVisibility>;
|
|
12894
|
+
isDisplayed?: Maybe<Scalars['Boolean']>;
|
|
12895
|
+
};
|
|
12896
|
+
export declare enum JiraAnnouncementBannerVisibility {
|
|
12897
|
+
Public = "PUBLIC",
|
|
12898
|
+
Private = "PRIVATE"
|
|
12899
|
+
}
|
|
12875
12900
|
export type JiraAnswerApprovalDecisionInput = {
|
|
12876
12901
|
approvalId: Scalars['Int'];
|
|
12877
12902
|
decision: JiraApprovalDecision;
|
|
@@ -17952,6 +17977,7 @@ export type JiraQuery = {
|
|
|
17952
17977
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
17953
17978
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
17954
17979
|
resourceUsageCustomFieldRecommendations?: Maybe<JiraResourceUsageCustomFieldRecommendationConnection>;
|
|
17980
|
+
announcementBanner?: Maybe<JiraAnnouncementBanner>;
|
|
17955
17981
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
17956
17982
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
17957
17983
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
@@ -18189,6 +18215,9 @@ export type JiraQueryResourceUsageCustomFieldRecommendationsArgs = {
|
|
|
18189
18215
|
last?: Maybe<Scalars['Int']>;
|
|
18190
18216
|
before?: Maybe<Scalars['String']>;
|
|
18191
18217
|
};
|
|
18218
|
+
export type JiraQueryAnnouncementBannerArgs = {
|
|
18219
|
+
cloudId: Scalars['ID'];
|
|
18220
|
+
};
|
|
18192
18221
|
export type JiraQueryUserPreferencesArgs = {
|
|
18193
18222
|
cloudId: Scalars['ID'];
|
|
18194
18223
|
};
|
|
@@ -27835,21 +27864,11 @@ export type Subscription = {
|
|
|
27835
27864
|
__typename?: 'Subscription';
|
|
27836
27865
|
trello: TrelloSubscriptionApi;
|
|
27837
27866
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
27838
|
-
onJiraIssueCreatedForUser?: Maybe<JiraOnIssueCreatedForUserResponseType>;
|
|
27839
27867
|
jira?: Maybe<JiraSubscription>;
|
|
27840
27868
|
testing?: Maybe<TestingSubscription>;
|
|
27869
|
+
ecosystem?: Maybe<EcosystemSubscription>;
|
|
27841
27870
|
sandbox: SandboxSubscription;
|
|
27842
27871
|
};
|
|
27843
|
-
export type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
27844
|
-
cloudId: Scalars['ID'];
|
|
27845
|
-
accountId: Scalars['ID'];
|
|
27846
|
-
projectType?: JiraProjectType;
|
|
27847
|
-
filter?: JiraProjectFilterInput;
|
|
27848
|
-
};
|
|
27849
|
-
export declare enum SubscriptionEventSources {
|
|
27850
|
-
Streamhub = "STREAMHUB",
|
|
27851
|
-
Producer = "PRODUCER"
|
|
27852
|
-
}
|
|
27853
27872
|
export type SupportRequest = {
|
|
27854
27873
|
__typename?: 'SupportRequest';
|
|
27855
27874
|
id: Scalars['ID'];
|