@forge/cli-shared 8.15.2-next.3-experimental-bb50b30 → 8.15.3-next.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,6 +1,13 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.15.
|
|
3
|
+
## 8.15.3-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [ad5a470]
|
|
8
|
+
- @forge/manifest@12.1.2-next.0
|
|
9
|
+
|
|
10
|
+
## 8.15.2
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
6
13
|
|
|
@@ -9,7 +16,7 @@
|
|
|
9
16
|
- Updated dependencies [beddb18]
|
|
10
17
|
- Updated dependencies [561036a]
|
|
11
18
|
- Updated dependencies [b248c8f]
|
|
12
|
-
- @forge/manifest@12.1.1
|
|
19
|
+
- @forge/manifest@12.1.1
|
|
13
20
|
|
|
14
21
|
## 8.15.2-next.3
|
|
15
22
|
|
|
@@ -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 = {
|
|
@@ -4845,6 +4847,12 @@ export declare type AgentWorkspaceAvailabilityConnection = {
|
|
|
4845
4847
|
pageInfo: AgentWorkspaceAvailabilityPageInfo;
|
|
4846
4848
|
summary: AgentWorkspaceAvailabilitySummary;
|
|
4847
4849
|
};
|
|
4850
|
+
export declare type AgentWorkspaceAvailabilityError = {
|
|
4851
|
+
__typename?: 'AgentWorkspaceAvailabilityError';
|
|
4852
|
+
code: Scalars['String']['output'];
|
|
4853
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
4854
|
+
message: Scalars['String']['output'];
|
|
4855
|
+
};
|
|
4848
4856
|
export declare type AgentWorkspaceAvailabilityInput = {
|
|
4849
4857
|
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4850
4858
|
cloudId: Scalars['ID']['input'];
|
|
@@ -4868,6 +4876,18 @@ export declare enum AgentWorkspaceAvailabilityStatus {
|
|
|
4868
4876
|
Available = "AVAILABLE",
|
|
4869
4877
|
OnBreak = "ON_BREAK"
|
|
4870
4878
|
}
|
|
4879
|
+
export declare type AgentWorkspaceAvailabilityStatusInput = {
|
|
4880
|
+
agentAccountId: Scalars['ID']['input'];
|
|
4881
|
+
cloudId: Scalars['ID']['input'];
|
|
4882
|
+
projectId: Scalars['ID']['input'];
|
|
4883
|
+
status: AgentWorkspaceAvailabilityStatus;
|
|
4884
|
+
};
|
|
4885
|
+
export declare type AgentWorkspaceAvailabilityStatusPayload = {
|
|
4886
|
+
__typename?: 'AgentWorkspaceAvailabilityStatusPayload';
|
|
4887
|
+
availability?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
4888
|
+
errors?: Maybe<Array<AgentWorkspaceAvailabilityError>>;
|
|
4889
|
+
success: Scalars['Boolean']['output'];
|
|
4890
|
+
};
|
|
4871
4891
|
export declare type AgentWorkspaceAvailabilitySummary = {
|
|
4872
4892
|
__typename?: 'AgentWorkspaceAvailabilitySummary';
|
|
4873
4893
|
activeAgents: Scalars['Int']['output'];
|
|
@@ -33729,6 +33749,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
33729
33749
|
updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
33730
33750
|
updateParticipants?: Maybe<CustomerServiceRequestUpdateParticipantsPayload>;
|
|
33731
33751
|
updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
|
|
33752
|
+
updateStatusMapping?: Maybe<CustomerServiceStatusMappingUpdatePayload>;
|
|
33732
33753
|
updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
|
|
33733
33754
|
upsertBranding?: Maybe<CustomerServiceBrandingUpsertPayload>;
|
|
33734
33755
|
};
|
|
@@ -33851,6 +33872,9 @@ export declare type CustomerServiceMutationApiUpdateParticipantsArgs = {
|
|
|
33851
33872
|
export declare type CustomerServiceMutationApiUpdateProductArgs = {
|
|
33852
33873
|
input: CustomerServiceProductUpdateInput;
|
|
33853
33874
|
};
|
|
33875
|
+
export declare type CustomerServiceMutationApiUpdateStatusMappingArgs = {
|
|
33876
|
+
input: CustomerServiceStatusMappingUpdateInput;
|
|
33877
|
+
};
|
|
33854
33878
|
export declare type CustomerServiceMutationApiUpdateTemplateFormArgs = {
|
|
33855
33879
|
helpCenterId: Scalars['ID']['input'];
|
|
33856
33880
|
input: CustomerServiceTemplateFormUpdateInput;
|
|
@@ -34075,6 +34099,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
34075
34099
|
productConnections?: Maybe<CustomerServiceProductConnection>;
|
|
34076
34100
|
products?: Maybe<CustomerServiceProductQueryResult>;
|
|
34077
34101
|
requestByIssueKey?: Maybe<CustomerServiceRequestByKeyResult>;
|
|
34102
|
+
statusMapping?: Maybe<CustomerServiceStatusMappingQueryResult>;
|
|
34078
34103
|
templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
34079
34104
|
templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
|
|
34080
34105
|
};
|
|
@@ -34120,6 +34145,10 @@ export declare type CustomerServiceQueryApiRequestByIssueKeyArgs = {
|
|
|
34120
34145
|
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
34121
34146
|
issueKey: Scalars['String']['input'];
|
|
34122
34147
|
};
|
|
34148
|
+
export declare type CustomerServiceQueryApiStatusMappingArgs = {
|
|
34149
|
+
helpCenterId: Scalars['ID']['input'];
|
|
34150
|
+
workflowId: Scalars['String']['input'];
|
|
34151
|
+
};
|
|
34123
34152
|
export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
34124
34153
|
helpCenterId: Scalars['ID']['input'];
|
|
34125
34154
|
templateFormId: Scalars['ID']['input'];
|
|
@@ -34241,6 +34270,33 @@ export declare enum CustomerServiceStatusKey {
|
|
|
34241
34270
|
Resolved = "RESOLVED",
|
|
34242
34271
|
Submitted = "SUBMITTED"
|
|
34243
34272
|
}
|
|
34273
|
+
export declare type CustomerServiceStatusMapping = {
|
|
34274
|
+
__typename?: 'CustomerServiceStatusMapping';
|
|
34275
|
+
externalLabel: Scalars['String']['output'];
|
|
34276
|
+
jiraStatusId: Scalars['String']['output'];
|
|
34277
|
+
};
|
|
34278
|
+
export declare type CustomerServiceStatusMappingConfig = {
|
|
34279
|
+
__typename?: 'CustomerServiceStatusMappingConfig';
|
|
34280
|
+
customMappings: Array<CustomerServiceStatusMapping>;
|
|
34281
|
+
helpCenterId: Scalars['ID']['output'];
|
|
34282
|
+
workflowId: Scalars['String']['output'];
|
|
34283
|
+
};
|
|
34284
|
+
export declare type CustomerServiceStatusMappingInput = {
|
|
34285
|
+
externalLabel: Scalars['String']['input'];
|
|
34286
|
+
jiraStatusId: Scalars['String']['input'];
|
|
34287
|
+
};
|
|
34288
|
+
export declare type CustomerServiceStatusMappingQueryResult = CustomerServiceStatusMappingConfig | QueryError;
|
|
34289
|
+
export declare type CustomerServiceStatusMappingUpdateInput = {
|
|
34290
|
+
customMappings: Array<CustomerServiceStatusMappingInput>;
|
|
34291
|
+
helpCenterId: Scalars['ID']['input'];
|
|
34292
|
+
workflowId: Scalars['String']['input'];
|
|
34293
|
+
};
|
|
34294
|
+
export declare type CustomerServiceStatusMappingUpdatePayload = {
|
|
34295
|
+
__typename?: 'CustomerServiceStatusMappingUpdatePayload';
|
|
34296
|
+
errors?: Maybe<Array<MutationError>>;
|
|
34297
|
+
success: Scalars['Boolean']['output'];
|
|
34298
|
+
updatedStatusMapping?: Maybe<CustomerServiceStatusMappingConfig>;
|
|
34299
|
+
};
|
|
34244
34300
|
export declare type CustomerServiceStatusPayload = Payload & {
|
|
34245
34301
|
__typename?: 'CustomerServiceStatusPayload';
|
|
34246
34302
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -36005,6 +36061,12 @@ export declare type DevConsoleDeveloperSpace = {
|
|
|
36005
36061
|
version: Scalars['Int']['output'];
|
|
36006
36062
|
versionId: Scalars['Int']['output'];
|
|
36007
36063
|
};
|
|
36064
|
+
export declare type DevConsoleDeveloperSpaceAppUsage = {
|
|
36065
|
+
__typename?: 'DevConsoleDeveloperSpaceAppUsage';
|
|
36066
|
+
appId: Scalars['String']['output'];
|
|
36067
|
+
overage: DevConsoleDeveloperSpaceResourceTotals;
|
|
36068
|
+
usage: DevConsoleDeveloperSpaceResourceTotals;
|
|
36069
|
+
};
|
|
36008
36070
|
export declare type DevConsoleDeveloperSpaceDetails = {
|
|
36009
36071
|
__typename?: 'DevConsoleDeveloperSpaceDetails';
|
|
36010
36072
|
logo?: Maybe<Scalars['String']['output']>;
|
|
@@ -36057,6 +36119,21 @@ export declare enum DevConsoleDeveloperSpacePublishStatus {
|
|
|
36057
36119
|
Private = "PRIVATE",
|
|
36058
36120
|
Public = "PUBLIC"
|
|
36059
36121
|
}
|
|
36122
|
+
export declare type DevConsoleDeveloperSpaceResourceTotal = {
|
|
36123
|
+
__typename?: 'DevConsoleDeveloperSpaceResourceTotal';
|
|
36124
|
+
total: Scalars['String']['output'];
|
|
36125
|
+
unit: Scalars['String']['output'];
|
|
36126
|
+
};
|
|
36127
|
+
export declare type DevConsoleDeveloperSpaceResourceTotals = {
|
|
36128
|
+
__typename?: 'DevConsoleDeveloperSpaceResourceTotals';
|
|
36129
|
+
functionCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36130
|
+
kvsRead?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36131
|
+
kvsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36132
|
+
logsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36133
|
+
sqlCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36134
|
+
sqlRequests?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36135
|
+
sqlStorage?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
36136
|
+
};
|
|
36060
36137
|
export declare type DevConsoleDeveloperSpaceSettingsPayload = Payload & {
|
|
36061
36138
|
__typename?: 'DevConsoleDeveloperSpaceSettingsPayload';
|
|
36062
36139
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -36066,6 +36143,13 @@ export declare enum DevConsoleDeveloperSpaceType {
|
|
|
36066
36143
|
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
36067
36144
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
36068
36145
|
}
|
|
36146
|
+
export declare type DevConsoleDeveloperSpaceUsageOverviewResponse = {
|
|
36147
|
+
__typename?: 'DevConsoleDeveloperSpaceUsageOverviewResponse';
|
|
36148
|
+
appUsage: Array<DevConsoleDeveloperSpaceAppUsage>;
|
|
36149
|
+
error?: Maybe<QueryError>;
|
|
36150
|
+
overage: DevConsoleDeveloperSpaceResourceTotals;
|
|
36151
|
+
usage: DevConsoleDeveloperSpaceResourceTotals;
|
|
36152
|
+
};
|
|
36069
36153
|
export declare type DevConsoleDeveloperSpaceUserPermissionsResponse = {
|
|
36070
36154
|
__typename?: 'DevConsoleDeveloperSpaceUserPermissionsResponse';
|
|
36071
36155
|
permissions: DevConsoleDeveloperSpacePermissions;
|
|
@@ -36149,6 +36233,7 @@ export declare type DevConsoleQuery = {
|
|
|
36149
36233
|
appResourceUsageDetailedView?: Maybe<DevConsoleAppResourceUsageDetailedViewResponse>;
|
|
36150
36234
|
appUsageOverview?: Maybe<DevConsoleAppUsageOverviewResponse>;
|
|
36151
36235
|
appUsageTopSites?: Maybe<DevConsoleAppUsageTopSitesResponse>;
|
|
36236
|
+
developerSpaceUsageOverview?: Maybe<DevConsoleDeveloperSpaceUsageOverviewResponse>;
|
|
36152
36237
|
downloadAppInstallations?: Maybe<DevConsoleDownloadAppInstallationsResponse>;
|
|
36153
36238
|
fetchDownloadAppInstallationsStatus?: Maybe<DevConsoleFetchDownloadAppInstallationsStatusResponse>;
|
|
36154
36239
|
getAppsWithoutConsent?: Maybe<DevConsoleAppsWithoutConsentResponse>;
|
|
@@ -36178,6 +36263,10 @@ export declare type DevConsoleQueryAppUsageTopSitesArgs = {
|
|
|
36178
36263
|
appId: Scalars['ID']['input'];
|
|
36179
36264
|
filters: DevConsoleAppUsageTopSitesFiltersInput;
|
|
36180
36265
|
};
|
|
36266
|
+
export declare type DevConsoleQueryDeveloperSpaceUsageOverviewArgs = {
|
|
36267
|
+
developerSpaceId: Scalars['String']['input'];
|
|
36268
|
+
filters: DevConsoleAppUsageFiltersInput;
|
|
36269
|
+
};
|
|
36181
36270
|
export declare type DevConsoleQueryDownloadAppInstallationsArgs = {
|
|
36182
36271
|
appId: Scalars['ID']['input'];
|
|
36183
36272
|
};
|
|
@@ -42932,7 +43021,9 @@ export declare type GraphIntegrationMcpAdminManagementMcpToolNode = {
|
|
|
42932
43021
|
};
|
|
42933
43022
|
export declare enum GraphIntegrationMcpAdminManagementMcpToolStatus {
|
|
42934
43023
|
Allow = "ALLOW",
|
|
43024
|
+
AllowServerRemoved = "ALLOW_SERVER_REMOVED",
|
|
42935
43025
|
Deny = "DENY",
|
|
43026
|
+
DenyServerRemoved = "DENY_SERVER_REMOVED",
|
|
42936
43027
|
NewToolDeny = "NEW_TOOL_DENY"
|
|
42937
43028
|
}
|
|
42938
43029
|
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
@@ -104949,6 +105040,10 @@ export declare type JiraHierarchyConfigTask = {
|
|
|
104949
105040
|
issueHierarchyConfig?: Maybe<Array<JiraIssueHierarchyConfigData>>;
|
|
104950
105041
|
taskProgress?: Maybe<JiraLongRunningTaskProgress>;
|
|
104951
105042
|
};
|
|
105043
|
+
export declare type JiraHipaaComplianceResponse = {
|
|
105044
|
+
__typename?: 'JiraHipaaComplianceResponse';
|
|
105045
|
+
isHipaa: Scalars['Boolean']['output'];
|
|
105046
|
+
};
|
|
104952
105047
|
export declare type JiraHistoryActivityFeedItem = {
|
|
104953
105048
|
__typename?: 'JiraHistoryActivityFeedItem';
|
|
104954
105049
|
actor?: Maybe<User>;
|
|
@@ -111118,6 +111213,11 @@ export declare type JiraOutgoingEmailSettings = {
|
|
|
111118
111213
|
emailSystemSettingsDisabled: Scalars['Boolean']['output'];
|
|
111119
111214
|
spamProtectionOnTenantApplicable: Scalars['Boolean']['output'];
|
|
111120
111215
|
};
|
|
111216
|
+
export declare type JiraOutgoingMailConfigResponse = {
|
|
111217
|
+
__typename?: 'JiraOutgoingMailConfigResponse';
|
|
111218
|
+
canEditConfig: Scalars['Boolean']['output'];
|
|
111219
|
+
enabled: Scalars['Boolean']['output'];
|
|
111220
|
+
};
|
|
111121
111221
|
export declare enum JiraOverviewPlanMigrationChangeboardingStatus {
|
|
111122
111222
|
Completed = "COMPLETED",
|
|
111123
111223
|
Triggered = "TRIGGERED"
|
|
@@ -113018,6 +113118,7 @@ export declare type JiraQuery = {
|
|
|
113018
113118
|
groupsForIssues?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
113019
113119
|
hasGlobalPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
113020
113120
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
113121
|
+
hipaaCompliance?: Maybe<JiraHipaaComplianceResponse>;
|
|
113021
113122
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
113022
113123
|
integerUserProperty?: Maybe<JiraEntityPropertyInt>;
|
|
113023
113124
|
isAiEnabledForIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -113106,6 +113207,7 @@ export declare type JiraQuery = {
|
|
|
113106
113207
|
notificationProjectPreference?: Maybe<JiraNotificationProjectPreferences>;
|
|
113107
113208
|
notificationProjectPreferences?: Maybe<Array<Maybe<JiraNotificationProjectPreferences>>>;
|
|
113108
113209
|
opsgenieBaseUrl?: Maybe<Scalars['URL']['output']>;
|
|
113210
|
+
outgoingMailConfig?: Maybe<JiraOutgoingMailConfigResponse>;
|
|
113109
113211
|
permission?: Maybe<JiraPermission>;
|
|
113110
113212
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
113111
113213
|
planById?: Maybe<JiraPlan>;
|
|
@@ -113571,6 +113673,9 @@ export declare type JiraQueryHasProjectPermissionArgs = {
|
|
|
113571
113673
|
permission: JiraProjectPermissionType;
|
|
113572
113674
|
projectKey: Scalars['String']['input'];
|
|
113573
113675
|
};
|
|
113676
|
+
export declare type JiraQueryHipaaComplianceArgs = {
|
|
113677
|
+
cloudId: Scalars['ID']['input'];
|
|
113678
|
+
};
|
|
113574
113679
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
113575
113680
|
projectId: Scalars['ID']['input'];
|
|
113576
113681
|
};
|
|
@@ -113981,6 +114086,9 @@ export declare type JiraQueryNotificationProjectPreferencesArgs = {
|
|
|
113981
114086
|
export declare type JiraQueryOpsgenieBaseUrlArgs = {
|
|
113982
114087
|
cloudId: Scalars['ID']['input'];
|
|
113983
114088
|
};
|
|
114089
|
+
export declare type JiraQueryOutgoingMailConfigArgs = {
|
|
114090
|
+
cloudId: Scalars['ID']['input'];
|
|
114091
|
+
};
|
|
113984
114092
|
export declare type JiraQueryPermissionArgs = {
|
|
113985
114093
|
cloudId: Scalars['ID']['input'];
|
|
113986
114094
|
type: JiraPermissionType;
|
|
@@ -133235,6 +133343,7 @@ export declare type Mutation = {
|
|
|
133235
133343
|
agentWorkspace_deleteSkill?: Maybe<AgentWorkspaceSkillDeletePayload>;
|
|
133236
133344
|
agentWorkspace_deleteUserSkill?: Maybe<AgentWorkspaceDeleteUserSkillPayload>;
|
|
133237
133345
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
133346
|
+
agentWorkspace_setAvailabilityStatus?: Maybe<AgentWorkspaceAvailabilityStatusPayload>;
|
|
133238
133347
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
133239
133348
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
133240
133349
|
agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalogUpdateResponse>;
|
|
@@ -134514,6 +134623,9 @@ export declare type MutationAgentWorkspace_EndBreakArgs = {
|
|
|
134514
134623
|
agentId: Scalars['ID']['input'];
|
|
134515
134624
|
cloudId: Scalars['ID']['input'];
|
|
134516
134625
|
};
|
|
134626
|
+
export declare type MutationAgentWorkspace_SetAvailabilityStatusArgs = {
|
|
134627
|
+
input: AgentWorkspaceAvailabilityStatusInput;
|
|
134628
|
+
};
|
|
134517
134629
|
export declare type MutationAgentWorkspace_SetDefaultCapacityArgs = {
|
|
134518
134630
|
input: AgentWorkspaceSetDefaultCapacityInput;
|
|
134519
134631
|
};
|