![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@acoustic-content-sdk/redux-feature-auth-content
Advanced tools
Implementation of a redux feature to manage authoring content.
Implementation of the feature store that manages content items.
Home > @acoustic-content-sdk/redux-feature-auth-content
Implementation of a redux feature to manage authoring content.
Function | Description |
---|---|
isAuthoringContentItem(aValue) |
Interface | Description |
---|---|
AuthContentEmbedItemPayload | |
AuthContentFeatureState | |
AuthContentPropertyUpdatePayload |
Home > @acoustic-content-sdk/redux-feature-auth-content > isAuthoringContentItem
Signature:
export declare function isAuthoringContentItem(aValue: any): aValue is AuthoringContentItem;
Parameter | Type | Description |
---|---|---|
aValue | any |
Returns:
aValue is AuthoringContentItem
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthContentEmbedItemPayload
Signature:
export interface AuthContentEmbedItemPayload
Property | Type | Description |
---|---|---|
accessor | AccessorType | |
bInsert | boolean | |
id | AuthoringContentItem | string | |
item | AuthoringContentItem | string |
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthContentFeatureState
Signature:
export interface AuthContentFeatureState
Property | Type | Description |
---|---|---|
authContent | AuthoringContentState |
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthContentPropertyUpdatePayload
Signature:
export interface AuthContentPropertyUpdatePayload
Property | Type | Description |
---|---|---|
accessor | AccessorType | |
id | string | |
value | any |
Home > @acoustic-content-sdk/redux-feature-auth-content > ACTION_ADD_AUTH_CONTENT_IF_NONEXISTENT
Signature:
ACTION_ADD_AUTH_CONTENT_IF_NONEXISTENT = "ACTION_ADD_AUTH_CONTENT_IF_NONEXISTENT"
Home > @acoustic-content-sdk/redux-feature-auth-content > ACTION_ADD_AUTH_CONTENT
Signature:
ACTION_ADD_AUTH_CONTENT = "ACTION_ADD_AUTH_CONTENT"
Home > @acoustic-content-sdk/redux-feature-auth-content > ACTION_AUTH_CONTENT_EMBED_ITEM
Signature:
ACTION_AUTH_CONTENT_EMBED_ITEM = "ACTION_AUTH_CONTENT_EMBED_ITEM"
Home > @acoustic-content-sdk/redux-feature-auth-content > ACTION_AUTH_CONTENT_PROPERTY_UPDATE
Signature:
ACTION_AUTH_CONTENT_PROPERTY_UPDATE = "ACTION_AUTH_CONTENT_PROPERTY_UPDATE"
Home > @acoustic-content-sdk/redux-feature-auth-content > ACTION_GUARANTEE_AUTH_CONTENT
Signature:
ACTION_GUARANTEE_AUTH_CONTENT = "ACTION_GUARANTEE_AUTH_CONTENT"
Home > @acoustic-content-sdk/redux-feature-auth-content > ACTION_LOAD_AUTH_CONTENT
Signature:
ACTION_LOAD_AUTH_CONTENT = "ACTION_LOAD_AUTH_CONTENT"
Home > @acoustic-content-sdk/redux-feature-auth-content > ACTION_REMOVE_AUTH_CONTENT
Signature:
ACTION_REMOVE_AUTH_CONTENT = "ACTION_REMOVE_AUTH_CONTENT"
Home > @acoustic-content-sdk/redux-feature-auth-content > ACTION_SAVE_AUTH_CONTENT_BATCH
Signature:
ACTION_SAVE_AUTH_CONTENT_BATCH = "ACTION_SAVE_AUTH_CONTENT_BATCH"
Home > @acoustic-content-sdk/redux-feature-auth-content > ACTION_SAVE_AUTH_CONTENT
Signature:
ACTION_SAVE_AUTH_CONTENT = "ACTION_SAVE_AUTH_CONTENT"
Home > @acoustic-content-sdk/redux-feature-auth-content > ACTION_SET_AUTH_CONTENT
Do not add a side effect to this action
Signature:
ACTION_SET_AUTH_CONTENT = "ACTION_SET_AUTH_CONTENT"
Home > @acoustic-content-sdk/redux-feature-auth-content > addAuthoringContentAction
Signature:
addAuthoringContentAction: UnaryFunction<AuthoringContentItem, AddAuthoringContentAction>
Home > @acoustic-content-sdk/redux-feature-auth-content > addAuthoringContentIfNonExistentAction
Adds this content item to the store only if the item does not exist, yet. If the item does not exist, this triggers a addAuthoringContentAction.
Signature:
addAuthoringContentIfNonExistentAction: UnaryFunction<AuthoringContentItem, AddAuthoringContentIfNonExistentAction>
Home > @acoustic-content-sdk/redux-feature-auth-content > AUTH_CONTENT_FEATURE
Signature:
AUTH_CONTENT_FEATURE = "authContent"
Home > @acoustic-content-sdk/redux-feature-auth-content > authContentEmbedItem
Signature:
authContentEmbedItem: UnaryFunction<AuthContentEmbedItemPayload, AuthContentEmbedItemAction>
Home > @acoustic-content-sdk/redux-feature-auth-content > authContentFeatureReducer
Signature:
authContentFeatureReducer: {
authContent: import("redux").Reducer<Record<string, import("@acoustic-content-sdk/api").AuthoringContentItem>, import("./auth.content.actions").AuthoringContentActions>;
}
Home > @acoustic-content-sdk/redux-feature-auth-content > authContentPropertyUpdateAction
Signature:
authContentPropertyUpdateAction: (id: string, accessor: string, value: any) => AuthContentPropertyUpdateAction
Home > @acoustic-content-sdk/redux-feature-auth-content > authoringContentFeature
Exposes the feature module selector
Signature:
authoringContentFeature: import("@acoustic-content-sdk/redux-store").ReduxFeatureModule<Record<string, import("@acoustic-content-sdk/api").AuthoringContentItem>, AuthContentFeatureState, import("redux").AnyAction, import("redux").AnyAction, any>
Home > @acoustic-content-sdk/redux-feature-auth-content > authoringContentReducer
reducers for authoring content
Signature:
authoringContentReducer: Reducer<AuthoringContentState, AuthoringContentActions>
Home > @acoustic-content-sdk/redux-feature-auth-content > guaranteeAuthoringContentAction
Loads the content item if it does not exist. If the item does not exist, this triggers a loadAuthoringContentAction.
Signature:
guaranteeAuthoringContentAction: UnaryFunction<string, GuaranteeAuthoringContentAction>
Home > @acoustic-content-sdk/redux-feature-auth-content > loadAuthoringContentAction
Signature:
loadAuthoringContentAction: UnaryFunction<string, LoadAuthoringContentAction>
Home > @acoustic-content-sdk/redux-feature-auth-content > migrateContentItems
Signature:
migrateContentItems: (contentItems: AuthoringContentItem[]) => AuthoringContentItem[]
Home > @acoustic-content-sdk/redux-feature-auth-content > MODULE
Module name
Signature:
MODULE = "@acoustic-content-sdk/redux-feature-auth-content"
Home > @acoustic-content-sdk/redux-feature-auth-content > removeAuthoringContentAction
Signature:
removeAuthoringContentAction: UnaryFunction<string, RemoveAuthoringContentAction>
Home > @acoustic-content-sdk/redux-feature-auth-content > saveAuthoringContentAction
Signature:
saveAuthoringContentAction: UnaryFunction<AuthoringContentSaveItem, SaveAuthoringContentAction>
Home > @acoustic-content-sdk/redux-feature-auth-content > saveAuthoringContentBatchAction
Signature:
saveAuthoringContentBatchAction: UnaryFunction<AuthoringContentBatchItems, SaveAuthoringContentBatchAction>
Home > @acoustic-content-sdk/redux-feature-auth-content > selectAuthContentFeature
Select the auth.contenting feature
Signature:
selectAuthContentFeature: import("rxjs").UnaryFunction<Record<string, any>, Record<string, import("@acoustic-content-sdk/api").AuthoringContentItem>>
Home > @acoustic-content-sdk/redux-feature-auth-content > selectAuthoringContentItem
Signature:
selectAuthoringContentItem: UnaryFunction<string, UnaryFunction<AuthoringContentState, AuthoringContentItem>>
Home > @acoustic-content-sdk/redux-feature-auth-content > setAuthoringContentAction
Signature:
setAuthoringContentAction: UnaryFunction<AuthoringContentItem, SetAuthoringContentAction>
Home > @acoustic-content-sdk/redux-feature-auth-content > VERSION
Version and build number of the package
Signature:
VERSION: {
version: {
major: string;
minor: string;
patch: string;
branch: string;
};
build: Date;
}
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthContentEmbedItemAction
Signature:
export declare type AuthContentEmbedItemAction = PayloadAction<AuthContentEmbedItemPayload>;
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthoringContentActions
Signature:
export declare type AuthoringContentActions = AddAuthoringContentAction | SetAuthoringContentAction | RemoveAuthoringContentAction;
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthoringContentActionsPayload
Signature:
export declare type AuthoringContentActionsPayload = AuthoringContentItem | string;
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthoringContentBatchItems
Signature:
export declare type AuthoringContentBatchItems = AuthoringContentSaveItem[];
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthoringContentSaveItem
Signature:
export declare type AuthoringContentSaveItem = AuthoringContentItem | string;
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthoringContentState
Signature:
export declare type AuthoringContentState = Record<string, AuthoringContentItem>;
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthContentEmbedItemPayload > accessor
Signature:
accessor: AccessorType;
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthContentEmbedItemPayload > bInsert
Signature:
bInsert?: boolean;
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthContentEmbedItemPayload > id
Signature:
id: AuthoringContentItem | string;
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthContentEmbedItemPayload > item
Signature:
item: AuthoringContentItem | string;
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthContentPropertyUpdatePayload > accessor
Signature:
accessor: AccessorType;
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthContentPropertyUpdatePayload > id
Signature:
id: string;
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthContentPropertyUpdatePayload > value
Signature:
value: any;
Home > @acoustic-content-sdk/redux-feature-auth-content > AuthContentFeatureState > authContent
Signature:
[AUTH_CONTENT_FEATURE]: AuthoringContentState;
FAQs
Implementation of a redux feature to manage authoring content.
The npm package @acoustic-content-sdk/redux-feature-auth-content receives a total of 5 weekly downloads. As such, @acoustic-content-sdk/redux-feature-auth-content popularity was classified as not popular.
We found that @acoustic-content-sdk/redux-feature-auth-content demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.