@forge/cli-shared 3.9.0-next.2 → 3.9.1-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,5 +1,28 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.9.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [b34b84d]
|
|
8
|
+
- @forge/manifest@4.9.1-next.0
|
|
9
|
+
|
|
10
|
+
## 3.9.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- d1c1588: Enable rowspan on table
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 1fe0ee9: Bumping dependencies via Renovate:
|
|
19
|
+
|
|
20
|
+
- case
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [0fc09ac]
|
|
23
|
+
- Updated dependencies [a302f62]
|
|
24
|
+
- @forge/manifest@4.9.0
|
|
25
|
+
|
|
3
26
|
## 3.9.0-next.2
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -1092,6 +1092,63 @@ export declare type AppsFilter = {
|
|
|
1092
1092
|
isPublishable?: Maybe<Scalars['Boolean']>;
|
|
1093
1093
|
migrationKey?: Maybe<Scalars['String']>;
|
|
1094
1094
|
};
|
|
1095
|
+
export declare type AquaIssueContext = {
|
|
1096
|
+
__typename?: 'AquaIssueContext';
|
|
1097
|
+
commentId?: Maybe<Scalars['Long']>;
|
|
1098
|
+
issueId?: Maybe<Scalars['Long']>;
|
|
1099
|
+
};
|
|
1100
|
+
export declare type AquaNotificationDetails = {
|
|
1101
|
+
__typename?: 'AquaNotificationDetails';
|
|
1102
|
+
message?: Maybe<Scalars['String']>;
|
|
1103
|
+
};
|
|
1104
|
+
export declare type AquaOutgoingEmailLog = Node & {
|
|
1105
|
+
__typename?: 'AquaOutgoingEmailLog';
|
|
1106
|
+
id: Scalars['ID'];
|
|
1107
|
+
logs?: Maybe<AquaOutgoingEmailLogConnection>;
|
|
1108
|
+
};
|
|
1109
|
+
export declare type AquaOutgoingEmailLogLogsArgs = {
|
|
1110
|
+
after?: Maybe<Scalars['String']>;
|
|
1111
|
+
before?: Maybe<Scalars['String']>;
|
|
1112
|
+
first?: Maybe<Scalars['Int']>;
|
|
1113
|
+
last?: Maybe<Scalars['Int']>;
|
|
1114
|
+
};
|
|
1115
|
+
export declare type AquaOutgoingEmailLogConnection = {
|
|
1116
|
+
__typename?: 'AquaOutgoingEmailLogConnection';
|
|
1117
|
+
edges?: Maybe<Array<Maybe<AquaOutgoingEmailLogItemEdge>>>;
|
|
1118
|
+
pageInfo: PageInfo;
|
|
1119
|
+
};
|
|
1120
|
+
export declare type AquaOutgoingEmailLogItem = {
|
|
1121
|
+
__typename?: 'AquaOutgoingEmailLogItem';
|
|
1122
|
+
actionTimestamp: Scalars['DateTime'];
|
|
1123
|
+
author?: Maybe<User>;
|
|
1124
|
+
issueContext?: Maybe<AquaIssueContext>;
|
|
1125
|
+
notificationDetails?: Maybe<AquaNotificationDetails>;
|
|
1126
|
+
notificationSubType?: Maybe<Scalars['String']>;
|
|
1127
|
+
notificationType?: Maybe<Scalars['String']>;
|
|
1128
|
+
projectContext?: Maybe<AquaProjectContext>;
|
|
1129
|
+
recipient?: Maybe<User>;
|
|
1130
|
+
};
|
|
1131
|
+
export declare type AquaOutgoingEmailLogItemEdge = {
|
|
1132
|
+
__typename?: 'AquaOutgoingEmailLogItemEdge';
|
|
1133
|
+
cursor: Scalars['String'];
|
|
1134
|
+
node?: Maybe<AquaOutgoingEmailLogItem>;
|
|
1135
|
+
};
|
|
1136
|
+
export declare type AquaOutgoingEmailLogsQueryApi = {
|
|
1137
|
+
__typename?: 'AquaOutgoingEmailLogsQueryApi';
|
|
1138
|
+
GetNotificationLogs?: Maybe<AquaOutgoingEmailLogsQueryResult>;
|
|
1139
|
+
};
|
|
1140
|
+
export declare type AquaOutgoingEmailLogsQueryApiGetNotificationLogsArgs = {
|
|
1141
|
+
fromTimestamp?: Maybe<Scalars['DateTime']>;
|
|
1142
|
+
notificationSubtype?: Maybe<Scalars['String']>;
|
|
1143
|
+
notificationType?: Maybe<Scalars['String']>;
|
|
1144
|
+
projectId?: Maybe<Scalars['Long']>;
|
|
1145
|
+
toTimestamp?: Maybe<Scalars['DateTime']>;
|
|
1146
|
+
};
|
|
1147
|
+
export declare type AquaOutgoingEmailLogsQueryResult = AquaOutgoingEmailLog | QueryError;
|
|
1148
|
+
export declare type AquaProjectContext = {
|
|
1149
|
+
__typename?: 'AquaProjectContext';
|
|
1150
|
+
id?: Maybe<Scalars['Long']>;
|
|
1151
|
+
};
|
|
1095
1152
|
export declare type ArchivePolarisInsightsPayload = Payload & {
|
|
1096
1153
|
__typename?: 'ArchivePolarisInsightsPayload';
|
|
1097
1154
|
success: Scalars['Boolean'];
|
|
@@ -7856,6 +7913,15 @@ export declare enum ForgeAuditLogsActionType {
|
|
|
7856
7913
|
ContributorAdded = "CONTRIBUTOR_ADDED",
|
|
7857
7914
|
ContributorRemoved = "CONTRIBUTOR_REMOVED"
|
|
7858
7915
|
}
|
|
7916
|
+
export declare type ForgeAuditLogsAppContributor = {
|
|
7917
|
+
__typename?: 'ForgeAuditLogsAppContributor';
|
|
7918
|
+
contributor?: Maybe<User>;
|
|
7919
|
+
};
|
|
7920
|
+
export declare type ForgeAuditLogsAppContributorResult = ForgeAuditLogsAppContributorsData | QueryError;
|
|
7921
|
+
export declare type ForgeAuditLogsAppContributorsData = {
|
|
7922
|
+
__typename?: 'ForgeAuditLogsAppContributorsData';
|
|
7923
|
+
appContributors?: Maybe<Array<Maybe<ForgeAuditLogsAppContributor>>>;
|
|
7924
|
+
};
|
|
7859
7925
|
export declare type ForgeAuditLogsConnection = {
|
|
7860
7926
|
__typename?: 'ForgeAuditLogsConnection';
|
|
7861
7927
|
edges: Array<ForgeAuditLogEdge>;
|
|
@@ -7866,6 +7932,7 @@ export declare type ForgeAuditLogsQuery = {
|
|
|
7866
7932
|
__typename?: 'ForgeAuditLogsQuery';
|
|
7867
7933
|
appId: Scalars['ID'];
|
|
7868
7934
|
auditLogs?: Maybe<ForgeAuditLogsResult>;
|
|
7935
|
+
contributors?: Maybe<ForgeAuditLogsAppContributorResult>;
|
|
7869
7936
|
};
|
|
7870
7937
|
export declare type ForgeAuditLogsQueryAuditLogsArgs = {
|
|
7871
7938
|
input: ForgeAuditLogsQueryInput;
|
|
@@ -18492,6 +18559,8 @@ export declare type PolarisProject = {
|
|
|
18492
18559
|
snippetProviders?: Maybe<Array<PolarisSnippetProvider>>;
|
|
18493
18560
|
refreshing: PolarisRefreshStatus;
|
|
18494
18561
|
onboarded: Scalars['Boolean'];
|
|
18562
|
+
onboardTemplate?: Maybe<Scalars['String']>;
|
|
18563
|
+
onboardedAt?: Maybe<Scalars['String']>;
|
|
18495
18564
|
template?: Maybe<PolarisProjectTemplate>;
|
|
18496
18565
|
selectedDeliveryProject?: Maybe<Scalars['ID']>;
|
|
18497
18566
|
ideas: Array<PolarisIdea>;
|
|
@@ -18990,7 +19059,6 @@ export declare type Query = {
|
|
|
18990
19059
|
polarisInsights?: Maybe<Array<PolarisInsight>>;
|
|
18991
19060
|
polarisInsight?: Maybe<PolarisInsight>;
|
|
18992
19061
|
polarisInsightsWithErrors?: Maybe<Array<PolarisInsight>>;
|
|
18993
|
-
polarisConnectAppByClientID?: Maybe<PolarisConnectApp>;
|
|
18994
19062
|
polarisLabels?: Maybe<Array<LabelUsage>>;
|
|
18995
19063
|
polarisTermsConsent?: Maybe<PolarisTermsConsent>;
|
|
18996
19064
|
polarisSnippetPropertiesConfig?: Maybe<PolarisSnippetPropertiesConfig>;
|
|
@@ -19025,6 +19093,7 @@ export declare type Query = {
|
|
|
19025
19093
|
activities?: Maybe<Activities>;
|
|
19026
19094
|
activity?: Maybe<Activity>;
|
|
19027
19095
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
19096
|
+
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
19028
19097
|
shepherd?: Maybe<ShepherdQuery>;
|
|
19029
19098
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
19030
19099
|
jsw?: Maybe<JswQuery>;
|
|
@@ -19228,9 +19297,6 @@ export declare type QueryPolarisInsightArgs = {
|
|
|
19228
19297
|
export declare type QueryPolarisInsightsWithErrorsArgs = {
|
|
19229
19298
|
project: Scalars['ID'];
|
|
19230
19299
|
};
|
|
19231
|
-
export declare type QueryPolarisConnectAppByClientIdArgs = {
|
|
19232
|
-
oauthClientID: Scalars['ID'];
|
|
19233
|
-
};
|
|
19234
19300
|
export declare type QueryPolarisLabelsArgs = {
|
|
19235
19301
|
projectID: Scalars['ID'];
|
|
19236
19302
|
};
|
|
@@ -19318,6 +19384,9 @@ export declare type QueryNodeArgs = {
|
|
|
19318
19384
|
export declare type QueryCustomerServiceArgs = {
|
|
19319
19385
|
cloudId: Scalars['ID'];
|
|
19320
19386
|
};
|
|
19387
|
+
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
19388
|
+
cloudId: Scalars['ID'];
|
|
19389
|
+
};
|
|
19321
19390
|
export declare type QueryBoardScopeArgs = {
|
|
19322
19391
|
boardId: Scalars['ID'];
|
|
19323
19392
|
};
|
|
@@ -19480,6 +19549,7 @@ export declare enum RateLimitingCurrency {
|
|
|
19480
19549
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
19481
19550
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
19482
19551
|
ForgeAuditLogsCurrency = "FORGE_AUDIT_LOGS_CURRENCY",
|
|
19552
|
+
ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
|
|
19483
19553
|
HelpCenterCurrency = "HELP_CENTER_CURRENCY",
|
|
19484
19554
|
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY"
|
|
19485
19555
|
}
|
|
@@ -21019,6 +21089,8 @@ export declare type ShepherdAlertQueriesByAriArgs = {
|
|
|
21019
21089
|
};
|
|
21020
21090
|
export declare type ShepherdAlertQueriesByWorkspaceArgs = {
|
|
21021
21091
|
aaid?: Maybe<Scalars['ID']>;
|
|
21092
|
+
after?: Maybe<Scalars['String']>;
|
|
21093
|
+
first?: Maybe<Scalars['Int']>;
|
|
21022
21094
|
workspaceId: Scalars['ID'];
|
|
21023
21095
|
};
|
|
21024
21096
|
export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
|
|
@@ -21070,6 +21142,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
21070
21142
|
export declare type ShepherdAlertsConnection = {
|
|
21071
21143
|
__typename?: 'ShepherdAlertsConnection';
|
|
21072
21144
|
edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
|
|
21145
|
+
pageInfo: PageInfo;
|
|
21073
21146
|
};
|
|
21074
21147
|
export declare type ShepherdAlertsResult = QueryError | ShepherdAlertsConnection;
|
|
21075
21148
|
export declare type ShepherdAppInfo = {
|