@musakui/fedi
Advanced tools
Comparing version 0.0.8 to 0.0.9
@@ -20,3 +20,3 @@ import { | ||
/** @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object */ | ||
export interface BaseObject<T = string> extends WithContext { | ||
export interface BaseObject<T = string> { | ||
type: T | ||
@@ -50,9 +50,18 @@ id?: string | null | ||
/* | ||
export type ActorTypes = typeof ACTOR_TYPES[number] | ||
export type ObjectTypes = typeof OBJECT_TYPES[number] | ||
*/ | ||
export type ActorTypes = 'Application' | 'Group' | 'Organization' | 'Person' | 'Service' | ||
export type ObjectTypes = 'Article' | 'Audio' | 'Document' | 'Event' | 'Image' | 'Note' | 'Page' | 'Place' | 'Profile' | 'Relationship' | 'Tombstone' | 'Video' | ||
/** @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-activity */ | ||
export type ActivtyTypes = typeof ACTIVTY_TYPES[number] | ||
export type ActivtyTypes = 'Accept' | 'Add' | 'Announce' | 'Block' | 'Create' | 'Delete' | 'Dislike' | 'Flag' | 'Follow' | 'Ignore' | 'Join' | 'Leave' | 'Like' | 'Reject' | 'Remove' | 'Undo' | 'Update' | ||
// export type ActivtyTypes = typeof ACTIVTY_TYPES[number] | ||
/** @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-intransitiveactivity */ | ||
export type IntransitiveActivtyTypes = typeof INTRANSITIVE_ACTIVTY_TYPES[number] | ||
export type IntransitiveActivtyTypes = 'Arrive' | 'Question' | 'Travel' | ||
// export type IntransitiveActivtyTypes = typeof INTRANSITIVE_ACTIVTY_TYPES[number] |
@@ -10,3 +10,3 @@ { | ||
"repository": "github:musakui/fedi", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"type": "module", | ||
@@ -13,0 +13,0 @@ "files": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20609
651