wenum 2.4.0 → 2.4.1
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/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/package.json +1 -1
- package/src/contentViolation.ts +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -350,7 +350,7 @@ declare function getAvatarR2FolderByEntityType(entityType: EntityType): AvatarR2
|
|
|
350
350
|
declare function getAvatarR2CdnUrl(folder: AvatarR2Folder, pageID: string, imageID: string, size: ImageSize): string;
|
|
351
351
|
//#endregion
|
|
352
352
|
//#region src/contentViolation.d.ts
|
|
353
|
-
type ContentViolationType = 'spam' | 'harassment' | 'hate_speech' | 'nudity' | 'violence' | 'false_info' | 'other';
|
|
353
|
+
type ContentViolationType = 'none' | 'spam' | 'harassment' | 'hate_speech' | 'nudity' | 'violence' | 'false_info' | 'other';
|
|
354
354
|
interface ContentViolationOption {
|
|
355
355
|
key: ContentViolationType;
|
|
356
356
|
label: string;
|
package/dist/index.d.mts
CHANGED
|
@@ -350,7 +350,7 @@ declare function getAvatarR2FolderByEntityType(entityType: EntityType): AvatarR2
|
|
|
350
350
|
declare function getAvatarR2CdnUrl(folder: AvatarR2Folder, pageID: string, imageID: string, size: ImageSize): string;
|
|
351
351
|
//#endregion
|
|
352
352
|
//#region src/contentViolation.d.ts
|
|
353
|
-
type ContentViolationType = 'spam' | 'harassment' | 'hate_speech' | 'nudity' | 'violence' | 'false_info' | 'other';
|
|
353
|
+
type ContentViolationType = 'none' | 'spam' | 'harassment' | 'hate_speech' | 'nudity' | 'violence' | 'false_info' | 'other';
|
|
354
354
|
interface ContentViolationOption {
|
|
355
355
|
key: ContentViolationType;
|
|
356
356
|
label: string;
|
package/package.json
CHANGED
package/src/contentViolation.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type ContentViolationType = 'spam' | 'harassment' | 'hate_speech' | 'nudity' | 'violence' | 'false_info' | 'other';
|
|
1
|
+
export type ContentViolationType = 'none' | 'spam' | 'harassment' | 'hate_speech' | 'nudity' | 'violence' | 'false_info' | 'other';
|
|
2
2
|
|
|
3
3
|
export interface ContentViolationOption {
|
|
4
4
|
key: ContentViolationType;
|