Type Alias ChangeStoresAPI

Index

Properties

clearCache: typeof changeStores.clearCache

Clears the cache for change-stores api requests.

getChangeStore: typeof getChangeStore

Get change store by Id.

getChangeStore(
"507f1f77bcf86cd799439011"
)

The id of the change store.

GetChangeStoreHttpError

getChangeStoreChanges: typeof getChangeStoreChanges

Retrieve changes for the specified change store.

getChangeStoreChanges(
"507f1f77bcf86cd799439011",
{
page: "1a2b3c",
limit: 100,
sort: "+createdAt"
}
)

The id of the change store.

an object with query parameters

GetChangeStoreChangesHttpError

getChangeStoreChangesTabularViews: typeof getChangeStoreChangesTabularViews

Retrieve changes in tabular view.

getChangeStoreChangesTabularViews(
"507f1f77bcf86cd799439011",
{
page: "1a2b3c",
limit: 100
}
)

The id of the change store.

an object with query parameters

GetChangeStoreChangesTabularViewsHttpError

getChangeStores: typeof getChangeStores

Get a list of change-stores.

getChangeStores(
{
page: "1a2b3c",
limit: 100,
sort: "+storeName",
spaceId: "personal"
}
)

an object with query parameters

GetChangeStoresHttpError