@forge/cli-shared 8.15.2-next.3-experimental-812ca41 → 8.15.2
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 +2 -3
- package/out/graphql/graphql-types.d.ts +56 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/service/i18n-resource-bundling-service.d.ts +0 -1
- package/out/service/i18n-resource-bundling-service.d.ts.map +1 -1
- package/out/service/i18n-resource-bundling-service.js +1 -28
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.15.2
|
|
3
|
+
## 8.15.2
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- df6d793: Improve show containers data table view
|
|
8
8
|
- 7af27e8: Updated wording for install list to match dev console
|
|
9
|
-
- 812ca41: Include dynamic prefixed translation keys in i18n resource bundling
|
|
10
9
|
- Updated dependencies [beddb18]
|
|
11
10
|
- Updated dependencies [561036a]
|
|
12
11
|
- Updated dependencies [b248c8f]
|
|
13
|
-
- @forge/manifest@12.1.1
|
|
12
|
+
- @forge/manifest@12.1.1
|
|
14
13
|
|
|
15
14
|
## 8.15.2-next.3
|
|
16
15
|
|
|
@@ -4795,6 +4795,7 @@ export declare type AgentWorkspaceAgent = {
|
|
|
4795
4795
|
skills: Array<AgentWorkspaceUserSkill>;
|
|
4796
4796
|
teamIds: Array<Scalars['ID']['output']>;
|
|
4797
4797
|
teamNames: Array<Scalars['String']['output']>;
|
|
4798
|
+
teams?: Maybe<Array<TeamV2>>;
|
|
4798
4799
|
user?: Maybe<User>;
|
|
4799
4800
|
};
|
|
4800
4801
|
export declare type AgentWorkspaceAgentAvailability = {
|
|
@@ -4804,6 +4805,7 @@ export declare type AgentWorkspaceAgentAvailability = {
|
|
|
4804
4805
|
status: AgentWorkspaceAvailabilityStatus;
|
|
4805
4806
|
teamIds: Array<Scalars['ID']['output']>;
|
|
4806
4807
|
teamNames: Array<Scalars['String']['output']>;
|
|
4808
|
+
teams?: Maybe<Array<TeamV2>>;
|
|
4807
4809
|
updatedAt: Scalars['DateTime']['output'];
|
|
4808
4810
|
};
|
|
4809
4811
|
export declare type AgentWorkspaceAgentShifts = {
|
|
@@ -36005,6 +36007,12 @@ export declare type DevConsoleDeveloperSpace = {
|
|
|
36005
36007
|
version: Scalars['Int']['output'];
|
|
36006
36008
|
versionId: Scalars['Int']['output'];
|
|
36007
36009
|
};
|
|
36010
|
+
export declare type DevConsoleDeveloperSpaceAppUsage = {
|
|
36011
|
+
__typename?: 'DevConsoleDeveloperSpaceAppUsage';
|
|
36012
|
+
appId: Scalars['String']['output'];
|
|
36013
|
+
overage: DevConsoleDeveloperSpaceResourceTotals;
|
|
36014
|
+
usage: DevConsoleDeveloperSpaceResourceTotals;
|
|
36015
|
+
};
|
|
36008
36016
|
export declare type DevConsoleDeveloperSpaceDetails = {
|
|
36009
36017
|
__typename?: 'DevConsoleDeveloperSpaceDetails';
|
|
36010
36018
|
logo?: Maybe<Scalars['String']['output']>;
|
|
@@ -36057,6 +36065,21 @@ export declare enum DevConsoleDeveloperSpacePublishStatus {
|
|
|
36057
36065
|
Private = "PRIVATE",
|
|
36058
36066
|
Public = "PUBLIC"
|
|
36059
36067
|
}
|
|
36068
|
+
export declare type DevConsoleDeveloperSpaceResourceTotal = {
|
|
36069
|
+
__typename?: 'DevConsoleDeveloperSpaceResourceTotal';
|
|
36070
|
+
total: Scalars['String']['output'];
|
|
36071
|
+
unit: Scalars['String']['output'];
|
|
36072
|
+
};
|
|
36073
|
+
export declare type DevConsoleDeveloperSpaceResourceTotals = {
|
|
36074
|
+
__typename?: 'DevConsoleDeveloperSpaceResourceTotals';
|
|
36075
|
+
functionCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36076
|
+
kvsRead?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36077
|
+
kvsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36078
|
+
logsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36079
|
+
sqlCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36080
|
+
sqlRequests?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36081
|
+
sqlStorage?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36082
|
+
};
|
|
36060
36083
|
export declare type DevConsoleDeveloperSpaceSettingsPayload = Payload & {
|
|
36061
36084
|
__typename?: 'DevConsoleDeveloperSpaceSettingsPayload';
|
|
36062
36085
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -36066,6 +36089,13 @@ export declare enum DevConsoleDeveloperSpaceType {
|
|
|
36066
36089
|
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
36067
36090
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
36068
36091
|
}
|
|
36092
|
+
export declare type DevConsoleDeveloperSpaceUsageOverviewResponse = {
|
|
36093
|
+
__typename?: 'DevConsoleDeveloperSpaceUsageOverviewResponse';
|
|
36094
|
+
appUsage: Array<DevConsoleDeveloperSpaceAppUsage>;
|
|
36095
|
+
error?: Maybe<QueryError>;
|
|
36096
|
+
overage: DevConsoleDeveloperSpaceResourceTotals;
|
|
36097
|
+
usage: DevConsoleDeveloperSpaceResourceTotals;
|
|
36098
|
+
};
|
|
36069
36099
|
export declare type DevConsoleDeveloperSpaceUserPermissionsResponse = {
|
|
36070
36100
|
__typename?: 'DevConsoleDeveloperSpaceUserPermissionsResponse';
|
|
36071
36101
|
permissions: DevConsoleDeveloperSpacePermissions;
|
|
@@ -36149,6 +36179,7 @@ export declare type DevConsoleQuery = {
|
|
|
36149
36179
|
appResourceUsageDetailedView?: Maybe<DevConsoleAppResourceUsageDetailedViewResponse>;
|
|
36150
36180
|
appUsageOverview?: Maybe<DevConsoleAppUsageOverviewResponse>;
|
|
36151
36181
|
appUsageTopSites?: Maybe<DevConsoleAppUsageTopSitesResponse>;
|
|
36182
|
+
developerSpaceUsageOverview?: Maybe<DevConsoleDeveloperSpaceUsageOverviewResponse>;
|
|
36152
36183
|
downloadAppInstallations?: Maybe<DevConsoleDownloadAppInstallationsResponse>;
|
|
36153
36184
|
fetchDownloadAppInstallationsStatus?: Maybe<DevConsoleFetchDownloadAppInstallationsStatusResponse>;
|
|
36154
36185
|
getAppsWithoutConsent?: Maybe<DevConsoleAppsWithoutConsentResponse>;
|
|
@@ -36178,6 +36209,10 @@ export declare type DevConsoleQueryAppUsageTopSitesArgs = {
|
|
|
36178
36209
|
appId: Scalars['ID']['input'];
|
|
36179
36210
|
filters: DevConsoleAppUsageTopSitesFiltersInput;
|
|
36180
36211
|
};
|
|
36212
|
+
export declare type DevConsoleQueryDeveloperSpaceUsageOverviewArgs = {
|
|
36213
|
+
developerSpaceId: Scalars['String']['input'];
|
|
36214
|
+
filters: DevConsoleAppUsageFiltersInput;
|
|
36215
|
+
};
|
|
36181
36216
|
export declare type DevConsoleQueryDownloadAppInstallationsArgs = {
|
|
36182
36217
|
appId: Scalars['ID']['input'];
|
|
36183
36218
|
};
|
|
@@ -104949,6 +104984,10 @@ export declare type JiraHierarchyConfigTask = {
|
|
|
104949
104984
|
issueHierarchyConfig?: Maybe<Array<JiraIssueHierarchyConfigData>>;
|
|
104950
104985
|
taskProgress?: Maybe<JiraLongRunningTaskProgress>;
|
|
104951
104986
|
};
|
|
104987
|
+
export declare type JiraHipaaComplianceResponse = {
|
|
104988
|
+
__typename?: 'JiraHipaaComplianceResponse';
|
|
104989
|
+
isHipaa: Scalars['Boolean']['output'];
|
|
104990
|
+
};
|
|
104952
104991
|
export declare type JiraHistoryActivityFeedItem = {
|
|
104953
104992
|
__typename?: 'JiraHistoryActivityFeedItem';
|
|
104954
104993
|
actor?: Maybe<User>;
|
|
@@ -111118,6 +111157,11 @@ export declare type JiraOutgoingEmailSettings = {
|
|
|
111118
111157
|
emailSystemSettingsDisabled: Scalars['Boolean']['output'];
|
|
111119
111158
|
spamProtectionOnTenantApplicable: Scalars['Boolean']['output'];
|
|
111120
111159
|
};
|
|
111160
|
+
export declare type JiraOutgoingMailConfigResponse = {
|
|
111161
|
+
__typename?: 'JiraOutgoingMailConfigResponse';
|
|
111162
|
+
canEditConfig: Scalars['Boolean']['output'];
|
|
111163
|
+
enabled: Scalars['Boolean']['output'];
|
|
111164
|
+
};
|
|
111121
111165
|
export declare enum JiraOverviewPlanMigrationChangeboardingStatus {
|
|
111122
111166
|
Completed = "COMPLETED",
|
|
111123
111167
|
Triggered = "TRIGGERED"
|
|
@@ -113018,6 +113062,7 @@ export declare type JiraQuery = {
|
|
|
113018
113062
|
groupsForIssues?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
113019
113063
|
hasGlobalPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
113020
113064
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
113065
|
+
hipaaCompliance?: Maybe<JiraHipaaComplianceResponse>;
|
|
113021
113066
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
113022
113067
|
integerUserProperty?: Maybe<JiraEntityPropertyInt>;
|
|
113023
113068
|
isAiEnabledForIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -113106,6 +113151,7 @@ export declare type JiraQuery = {
|
|
|
113106
113151
|
notificationProjectPreference?: Maybe<JiraNotificationProjectPreferences>;
|
|
113107
113152
|
notificationProjectPreferences?: Maybe<Array<Maybe<JiraNotificationProjectPreferences>>>;
|
|
113108
113153
|
opsgenieBaseUrl?: Maybe<Scalars['URL']['output']>;
|
|
113154
|
+
outgoingMailConfig?: Maybe<JiraOutgoingMailConfigResponse>;
|
|
113109
113155
|
permission?: Maybe<JiraPermission>;
|
|
113110
113156
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
113111
113157
|
planById?: Maybe<JiraPlan>;
|
|
@@ -113571,6 +113617,9 @@ export declare type JiraQueryHasProjectPermissionArgs = {
|
|
|
113571
113617
|
permission: JiraProjectPermissionType;
|
|
113572
113618
|
projectKey: Scalars['String']['input'];
|
|
113573
113619
|
};
|
|
113620
|
+
export declare type JiraQueryHipaaComplianceArgs = {
|
|
113621
|
+
cloudId: Scalars['ID']['input'];
|
|
113622
|
+
};
|
|
113574
113623
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
113575
113624
|
projectId: Scalars['ID']['input'];
|
|
113576
113625
|
};
|
|
@@ -113981,6 +114030,9 @@ export declare type JiraQueryNotificationProjectPreferencesArgs = {
|
|
|
113981
114030
|
export declare type JiraQueryOpsgenieBaseUrlArgs = {
|
|
113982
114031
|
cloudId: Scalars['ID']['input'];
|
|
113983
114032
|
};
|
|
114033
|
+
export declare type JiraQueryOutgoingMailConfigArgs = {
|
|
114034
|
+
cloudId: Scalars['ID']['input'];
|
|
114035
|
+
};
|
|
113984
114036
|
export declare type JiraQueryPermissionArgs = {
|
|
113985
114037
|
cloudId: Scalars['ID']['input'];
|
|
113986
114038
|
type: JiraPermissionType;
|
|
@@ -141546,6 +141598,7 @@ export declare type Query = {
|
|
|
141546
141598
|
jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
141547
141599
|
jpdViewsService_hydrateGlobalViews?: Maybe<JpdViewsServiceGlobalViewsHydrationExample>;
|
|
141548
141600
|
jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
|
|
141601
|
+
jpdViewsService_test?: Maybe<Scalars['String']['output']>;
|
|
141549
141602
|
jsmAgentWorkspace_locations?: Maybe<JsmAgentWorkspaceLocations>;
|
|
141550
141603
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
141551
141604
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
@@ -145270,6 +145323,9 @@ export declare type QueryJpdViewsService_HydrateGlobalViewsArgs = {
|
|
|
145270
145323
|
export declare type QueryJpdViewsService_HydrateUserArgs = {
|
|
145271
145324
|
cloudId: Scalars['ID']['input'];
|
|
145272
145325
|
};
|
|
145326
|
+
export declare type QueryJpdViewsService_TestArgs = {
|
|
145327
|
+
cloudId: Scalars['ID']['input'];
|
|
145328
|
+
};
|
|
145273
145329
|
export declare type QueryJsmAgentWorkspace_LocationsArgs = {
|
|
145274
145330
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
145275
145331
|
cloudId: Scalars['ID']['input'];
|