fix(backend): correct app
-type notification schema (#14471)
This commit is contained in:
parent
b6fdd71957
commit
3e85052754
@ -85,7 +85,7 @@ export type MiNotification = {
|
|||||||
/**
|
/**
|
||||||
* アプリ通知のbody
|
* アプリ通知のbody
|
||||||
*/
|
*/
|
||||||
customBody: string | null;
|
customBody: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* アプリ通知のheader
|
* アプリ通知のheader
|
||||||
|
@ -311,11 +311,11 @@ export const packedNotificationSchema = {
|
|||||||
},
|
},
|
||||||
header: {
|
header: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
optional: false, nullable: false,
|
optional: false, nullable: true,
|
||||||
},
|
},
|
||||||
icon: {
|
icon: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
optional: false, nullable: false,
|
optional: false, nullable: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
|
@ -4253,7 +4253,7 @@ export type components = {
|
|||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'achievementEarned';
|
type: 'achievementEarned';
|
||||||
achievement: string;
|
achievement: string;
|
||||||
} | {
|
} | ({
|
||||||
/** Format: id */
|
/** Format: id */
|
||||||
id: string;
|
id: string;
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
@ -4261,9 +4261,9 @@ export type components = {
|
|||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: 'app';
|
type: 'app';
|
||||||
body: string;
|
body: string;
|
||||||
header: string;
|
header: string | null;
|
||||||
icon: string;
|
icon: string | null;
|
||||||
} | {
|
}) | {
|
||||||
/** Format: id */
|
/** Format: id */
|
||||||
id: string;
|
id: string;
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
|
Loading…
Reference in New Issue
Block a user