Simplify release notes workflow
This commit is contained in:
228
frontend/src/api/schema.d.ts
vendored
228
frontend/src/api/schema.d.ts
vendored
@@ -164,22 +164,6 @@ export interface paths {
|
||||
patch?: never;
|
||||
trace?: never;
|
||||
};
|
||||
"/api/developer/release-commits/import": {
|
||||
parameters: {
|
||||
query?: never;
|
||||
header?: never;
|
||||
path?: never;
|
||||
cookie?: never;
|
||||
};
|
||||
get?: never;
|
||||
put?: never;
|
||||
post: operations["SocializeApiModulesReleaseCommunicationsHandlersImportDeveloperReleaseCommitsHandler"];
|
||||
delete?: never;
|
||||
options?: never;
|
||||
head?: never;
|
||||
patch?: never;
|
||||
trace?: never;
|
||||
};
|
||||
"/api/developer/release-commits": {
|
||||
parameters: {
|
||||
query?: never;
|
||||
@@ -260,7 +244,7 @@ export interface paths {
|
||||
patch?: never;
|
||||
trace?: never;
|
||||
};
|
||||
"/api/developer/release-updates/{id}/send-email": {
|
||||
"/api/developer/release-commits/refresh": {
|
||||
parameters: {
|
||||
query?: never;
|
||||
header?: never;
|
||||
@@ -269,7 +253,7 @@ export interface paths {
|
||||
};
|
||||
get?: never;
|
||||
put?: never;
|
||||
post: operations["SocializeApiModulesReleaseCommunicationsHandlersSendDeveloperReleaseUpdateEmailHandler"];
|
||||
post: operations["SocializeApiModulesReleaseCommunicationsHandlersRefreshDeveloperReleaseCommitsHandler"];
|
||||
delete?: never;
|
||||
options?: never;
|
||||
head?: never;
|
||||
@@ -292,6 +276,22 @@ export interface paths {
|
||||
patch?: never;
|
||||
trace?: never;
|
||||
};
|
||||
"/api/developer/release-commits/{sha}/link-first-release": {
|
||||
parameters: {
|
||||
query?: never;
|
||||
header?: never;
|
||||
path?: never;
|
||||
cookie?: never;
|
||||
};
|
||||
get?: never;
|
||||
put?: never;
|
||||
post: operations["SocializeApiModulesReleaseCommunicationsHandlersLinkFirstReleaseCommitsHandler"];
|
||||
delete?: never;
|
||||
options?: never;
|
||||
head?: never;
|
||||
patch?: never;
|
||||
trace?: never;
|
||||
};
|
||||
"/api/developer/release-commits/{sha}/unlink": {
|
||||
parameters: {
|
||||
query?: never;
|
||||
@@ -1471,15 +1471,12 @@ export interface components {
|
||||
/** Format: guid */
|
||||
id?: string;
|
||||
title?: string;
|
||||
summary?: string;
|
||||
body?: string | null;
|
||||
category?: string;
|
||||
importance?: string;
|
||||
audience?: string;
|
||||
description?: string;
|
||||
titleEn?: string;
|
||||
descriptionEn?: string;
|
||||
titleFr?: string;
|
||||
descriptionFr?: string;
|
||||
status?: string;
|
||||
deploymentLabel?: string | null;
|
||||
buildVersion?: string | null;
|
||||
commitRange?: string | null;
|
||||
/** Format: date-time */
|
||||
createdAt?: string;
|
||||
/** Format: date-time */
|
||||
@@ -1488,25 +1485,13 @@ export interface components {
|
||||
publishedAt?: string | null;
|
||||
/** Format: date-time */
|
||||
archivedAt?: string | null;
|
||||
/** Format: guid */
|
||||
manualEmailSentByUserId?: string | null;
|
||||
/** Format: date-time */
|
||||
manualEmailSentAt?: string | null;
|
||||
manualEmailAudience?: string | null;
|
||||
/** Format: int32 */
|
||||
manualEmailRecipientCount?: number | null;
|
||||
isRead?: boolean;
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsHandlersCreateDeveloperReleaseUpdateRequest: {
|
||||
title: string;
|
||||
summary: string;
|
||||
body?: string | null;
|
||||
category: string;
|
||||
importance: string;
|
||||
audience: string;
|
||||
deploymentLabel?: string | null;
|
||||
buildVersion?: string | null;
|
||||
commitRange?: string | null;
|
||||
titleEn: string;
|
||||
descriptionEn: string;
|
||||
titleFr: string;
|
||||
descriptionFr: string;
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsContractsReleaseUpdateUnreadSummaryDto: {
|
||||
/** Format: int32 */
|
||||
@@ -1515,15 +1500,6 @@ export interface components {
|
||||
importantUnreadCount?: number;
|
||||
updates?: components["schemas"]["SocializeApiModulesReleaseCommunicationsContractsReleaseUpdateDto"][];
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsContractsReleaseCommitImportResultDto: {
|
||||
/** Format: int32 */
|
||||
importedCount?: number;
|
||||
/** Format: int32 */
|
||||
updatedCount?: number;
|
||||
/** Format: int32 */
|
||||
skippedCount?: number;
|
||||
commits?: components["schemas"]["SocializeApiModulesReleaseCommunicationsContractsReleaseCommitDto"][];
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsContractsReleaseCommitDto: {
|
||||
sha?: string;
|
||||
shortSha?: string;
|
||||
@@ -1545,52 +1521,32 @@ export interface components {
|
||||
/** Format: date-time */
|
||||
updatedAt?: string;
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsHandlersImportDeveloperReleaseCommitsRequest: {
|
||||
sinceSha?: string | null;
|
||||
untilSha?: string | null;
|
||||
sourceBranch?: string | null;
|
||||
deploymentLabel?: string | null;
|
||||
commits?: components["schemas"]["SocializeApiModulesReleaseCommunicationsHandlersImportDeveloperReleaseCommitDto"][] | null;
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsHandlersImportDeveloperReleaseCommitDto: {
|
||||
sha?: string;
|
||||
shortSha?: string | null;
|
||||
subject?: string;
|
||||
authorName?: string | null;
|
||||
authorEmail?: string | null;
|
||||
/** Format: date-time */
|
||||
authoredAt?: string | null;
|
||||
/** Format: date-time */
|
||||
committedAt?: string | null;
|
||||
sourceBranch?: string | null;
|
||||
deploymentLabel?: string | null;
|
||||
externalUrl?: string | null;
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsContractsReleaseUpdateEmailSendResultDto: {
|
||||
SocializeApiModulesReleaseCommunicationsContractsReleaseCommitRefreshResultDto: {
|
||||
/** Format: int32 */
|
||||
recipientCount?: number;
|
||||
/** Format: date-time */
|
||||
sentAt?: string;
|
||||
testMode?: boolean;
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsHandlersSendDeveloperReleaseUpdateEmailRequest: {
|
||||
testMode?: boolean;
|
||||
confirmResend?: boolean;
|
||||
createdCount?: number;
|
||||
/** Format: int32 */
|
||||
updatedCount?: number;
|
||||
/** Format: int32 */
|
||||
skippedCount?: number;
|
||||
commits?: components["schemas"]["SocializeApiModulesReleaseCommunicationsContractsReleaseCommitDto"][];
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsHandlersLinkDeveloperReleaseCommitRequest: {
|
||||
/** Format: guid */
|
||||
releaseUpdateId?: string;
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsContractsReleaseCommitBulkLinkResultDto: {
|
||||
/** Format: int32 */
|
||||
linkedCount?: number;
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsHandlersLinkFirstReleaseCommitsRequest: {
|
||||
/** Format: guid */
|
||||
releaseUpdateId?: string;
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsHandlersUpdateDeveloperReleaseUpdateRequest: {
|
||||
title: string;
|
||||
summary: string;
|
||||
body?: string | null;
|
||||
category: string;
|
||||
importance: string;
|
||||
audience: string;
|
||||
deploymentLabel?: string | null;
|
||||
buildVersion?: string | null;
|
||||
commitRange?: string | null;
|
||||
titleEn: string;
|
||||
descriptionEn: string;
|
||||
titleFr: string;
|
||||
descriptionFr: string;
|
||||
};
|
||||
SocializeApiModulesOrganizationsHandlersOrganizationMemberDto: {
|
||||
/** Format: guid */
|
||||
@@ -2871,44 +2827,6 @@ export interface operations {
|
||||
};
|
||||
};
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsHandlersImportDeveloperReleaseCommitsHandler: {
|
||||
parameters: {
|
||||
query?: never;
|
||||
header?: never;
|
||||
path?: never;
|
||||
cookie?: never;
|
||||
};
|
||||
requestBody: {
|
||||
content: {
|
||||
"application/json": components["schemas"]["SocializeApiModulesReleaseCommunicationsHandlersImportDeveloperReleaseCommitsRequest"];
|
||||
};
|
||||
};
|
||||
responses: {
|
||||
/** @description Success */
|
||||
200: {
|
||||
headers: {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content: {
|
||||
"application/json": components["schemas"]["SocializeApiModulesReleaseCommunicationsContractsReleaseCommitImportResultDto"];
|
||||
};
|
||||
};
|
||||
/** @description Unauthorized */
|
||||
401: {
|
||||
headers: {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content?: never;
|
||||
};
|
||||
/** @description Forbidden */
|
||||
403: {
|
||||
headers: {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content?: never;
|
||||
};
|
||||
};
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsHandlersListDeveloperReleaseCommitsHandler: {
|
||||
parameters: {
|
||||
query?: never;
|
||||
@@ -3058,20 +2976,14 @@ export interface operations {
|
||||
};
|
||||
};
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsHandlersSendDeveloperReleaseUpdateEmailHandler: {
|
||||
SocializeApiModulesReleaseCommunicationsHandlersRefreshDeveloperReleaseCommitsHandler: {
|
||||
parameters: {
|
||||
query?: never;
|
||||
header?: never;
|
||||
path: {
|
||||
id: string;
|
||||
};
|
||||
path?: never;
|
||||
cookie?: never;
|
||||
};
|
||||
requestBody: {
|
||||
content: {
|
||||
"application/json": components["schemas"]["SocializeApiModulesReleaseCommunicationsHandlersSendDeveloperReleaseUpdateEmailRequest"];
|
||||
};
|
||||
};
|
||||
requestBody?: never;
|
||||
responses: {
|
||||
/** @description Success */
|
||||
200: {
|
||||
@@ -3079,7 +2991,7 @@ export interface operations {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content: {
|
||||
"application/json": components["schemas"]["SocializeApiModulesReleaseCommunicationsContractsReleaseUpdateEmailSendResultDto"];
|
||||
"application/json": components["schemas"]["SocializeApiModulesReleaseCommunicationsContractsReleaseCommitRefreshResultDto"];
|
||||
};
|
||||
};
|
||||
/** @description Unauthorized */
|
||||
@@ -3138,6 +3050,46 @@ export interface operations {
|
||||
};
|
||||
};
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsHandlersLinkFirstReleaseCommitsHandler: {
|
||||
parameters: {
|
||||
query?: never;
|
||||
header?: never;
|
||||
path: {
|
||||
sha: string;
|
||||
};
|
||||
cookie?: never;
|
||||
};
|
||||
requestBody: {
|
||||
content: {
|
||||
"application/json": components["schemas"]["SocializeApiModulesReleaseCommunicationsHandlersLinkFirstReleaseCommitsRequest"];
|
||||
};
|
||||
};
|
||||
responses: {
|
||||
/** @description Success */
|
||||
200: {
|
||||
headers: {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content: {
|
||||
"application/json": components["schemas"]["SocializeApiModulesReleaseCommunicationsContractsReleaseCommitBulkLinkResultDto"];
|
||||
};
|
||||
};
|
||||
/** @description Unauthorized */
|
||||
401: {
|
||||
headers: {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content?: never;
|
||||
};
|
||||
/** @description Forbidden */
|
||||
403: {
|
||||
headers: {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content?: never;
|
||||
};
|
||||
};
|
||||
};
|
||||
SocializeApiModulesReleaseCommunicationsHandlersUnlinkDeveloperReleaseCommitHandler: {
|
||||
parameters: {
|
||||
query?: never;
|
||||
|
||||
Reference in New Issue
Block a user