sdk/types
Esta página aún no está disponible en tu idioma.
Interfaces
Section titled “Interfaces”BaseCacheObject
Section titled “BaseCacheObject”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:155
Represents a base cache object with a timestamp of the last cache update.
Extended by
Section titled “Extended by”PageDataCacheObject
MetaOnlyPageDataCacheObject
SiteConfigCacheObject
VersionCacheObject
FolderTreeCacheObject
FolderListCacheObject
Properties
Section titled “Properties”lastCacheUpdate
Section titled “lastCacheUpdate”lastCacheUpdate: Date;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:156
CombinedPageData
Section titled “CombinedPageData”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:283
Represents the combined data for a page, extending the stripped page data.
CombinedPageData
Extends
Section titled “Extends”Properties
Section titled “Properties”authorData
Section titled “authorData”authorData: | undefined | { avatar: null | string; createdAt: null | Date; email: null | string; emailVerified: boolean; id: string; name: string; notifications: null | string; password: null | string; updatedAt: null | Date; url: null | string; username: string;};
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:290
authorId
Section titled “authorId”authorId: null | string;
Inherited from
Section titled “Inherited from”PageDataStripped.authorId
categories
Section titled “categories”categories: { description: string; id: number; meta: unknown; name: string; parent: null | number; slug: string; }[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:285
An array of categories selected for the page.
description
Section titled “description”description: string;
id: number;
meta: unknown;
name: string;
parent
Section titled “parent”parent: null | number;
slug: string;
contentLang
Section titled “contentLang”contentLang: string;
Inherited from
Section titled “Inherited from”PageDataStripped.contentLang
contributorIds
Section titled “contributorIds”contributorIds: string[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:284
An array of contributor IDs associated with the page.
contributorsData
Section titled “contributorsData”contributorsData: { avatar: null | string; createdAt: null | Date; email: null | string; emailVerified: boolean; id: string; name: string; notifications: null | string; password: null | string; updatedAt: null | Date; url: null | string; username: string; }[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:291
avatar
Section titled “avatar”avatar: null | string;
createdAt
Section titled “createdAt”createdAt: null | Date;
email: null | string;
emailVerified
Section titled “emailVerified”emailVerified: boolean;
id: string;
name: string;
notifications
Section titled “notifications”notifications: null | string;
password
Section titled “password”password: null | string;
updatedAt
Section titled “updatedAt”updatedAt: null | Date;
url: null | string;
username
Section titled “username”username: string;
defaultContent
Section titled “defaultContent”defaultContent: | undefined | { content: null | string; contentId: string; contentLang: string; id: string;};
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:288
description
Section titled “description”description: string;
Inherited from
Section titled “Inherited from”PageDataStripped.description
draft: null | boolean;
Inherited from
Section titled “Inherited from”PageDataStripped.draft
heroImage
Section titled “heroImage”heroImage: string;
Inherited from
Section titled “Inherited from”PageDataStripped.heroImage
id: string;
Inherited from
Section titled “Inherited from”PageDataStripped.id
multiLangContent
Section titled “multiLangContent”multiLangContent: { content: null | string; contentId: string; contentLang: string; id: string; }[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:287
content
Section titled “content”content: null | string;
contentId
Section titled “contentId”contentId: string;
contentLang
Section titled “contentLang”contentLang: string;
id: string;
package
Section titled “package”package: string;
Inherited from
Section titled “Inherited from”PageDataStripped.package
parentFolder
Section titled “parentFolder”parentFolder: null | string;
Inherited from
Section titled “Inherited from”PageDataStripped.parentFolder
publishedAt
Section titled “publishedAt”publishedAt: Date;
Inherited from
Section titled “Inherited from”PageDataStripped.publishedAt
showAuthor
Section titled “showAuthor”showAuthor: null | boolean;
Inherited from
Section titled “Inherited from”PageDataStripped.showAuthor
showContributors
Section titled “showContributors”showContributors: null | boolean;
Inherited from
Section titled “Inherited from”PageDataStripped.showContributors
showOnNav
Section titled “showOnNav”showOnNav: boolean;
Inherited from
Section titled “Inherited from”PageDataStripped.showOnNav
slug: string;
Inherited from
Section titled “Inherited from”PageDataStripped.slug
tags: { description: string; id: number; meta: unknown; name: string; slug: string; }[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:286
An array of tags selected for the page.
description
Section titled “description”description: string;
id: number;
meta: unknown;
name: string;
slug: string;
title: string;
Inherited from
Section titled “Inherited from”PageDataStripped.title
updatedAt
Section titled “updatedAt”updatedAt: null | Date;
Inherited from
Section titled “Inherited from”PageDataStripped.updatedAt
urlRoute
Section titled “urlRoute”urlRoute: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:289
CombinedUserData
Section titled “CombinedUserData”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:267
Interface representing combined user data.
This interface extends tsUsersSelect
and includes additional properties
for OAuth data and permissions data.
CombinedUserData
Extends
Section titled “Extends”Properties
Section titled “Properties”avatar
Section titled “avatar”avatar: null | string;
Inherited from
Section titled “Inherited from”tsUsersSelect.avatar
createdAt
Section titled “createdAt”createdAt: null | Date;
Inherited from
Section titled “Inherited from”tsUsersSelect.createdAt
email: null | string;
Inherited from
Section titled “Inherited from”tsUsersSelect.email
emailVerified
Section titled “emailVerified”emailVerified: boolean;
Inherited from
Section titled “Inherited from”tsUsersSelect.emailVerified
id: string;
Inherited from
Section titled “Inherited from”tsUsersSelect.id
name: string;
Inherited from
Section titled “Inherited from”tsUsersSelect.name
notifications
Section titled “notifications”notifications: null | string;
Inherited from
Section titled “Inherited from”tsUsersSelect.notifications
oAuthData
Section titled “oAuthData”oAuthData: | undefined | { provider: string; providerUserId: string; userId: string; }[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:268
An array of OAuth account data or undefined.
password
Section titled “password”password: null | string;
Inherited from
Section titled “Inherited from”tsUsersSelect.password
permissionsData
Section titled “permissionsData”permissionsData: | undefined | { rank: string; user: string;};
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:269
Permissions data or undefined.
updatedAt
Section titled “updatedAt”updatedAt: null | Date;
Inherited from
Section titled “Inherited from”tsUsersSelect.updatedAt
url: null | string;
Inherited from
Section titled “Inherited from”tsUsersSelect.url
username
Section titled “username”username: string;
Inherited from
Section titled “Inherited from”tsUsersSelect.username
DeletionResponse
Section titled “DeletionResponse”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:300
Interface representing the response received after a deletion operation.
Properties
Section titled “Properties”message
Section titled “message”message: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:302
A message providing additional information about the deletion operation.
status
Section titled “status”status: "error" | "success";
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:301
The status of the deletion operation.
diffItem
Section titled “diffItem”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:109
Properties
Section titled “Properties”diff: null | string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:116
id: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:110
pageContentStart
Section titled “pageContentStart”pageContentStart: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:115
pageId
Section titled “pageId”pageId: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:112
pageMetaData
Section titled “pageMetaData”pageMetaData: unknown;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:114
timestamp
Section titled “timestamp”timestamp: null | Date;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:113
userId
Section titled “userId”userId: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:111
diffReturn
Section titled “diffReturn”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:119
Extends
Section titled “Extends”Omit
<diffItem
,"pageMetaData"
>
Properties
Section titled “Properties”diff: null | string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:116
Inherited from
Section titled “Inherited from”Omit.diff
id: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:110
Inherited from
Section titled “Inherited from”Omit.id
pageContentStart
Section titled “pageContentStart”pageContentStart: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:115
Inherited from
Section titled “Inherited from”Omit.pageContentStart
pageId
Section titled “pageId”pageId: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:112
Inherited from
Section titled “Inherited from”Omit.pageId
pageMetaData
Section titled “pageMetaData”pageMetaData: { end: Partial<{ authorId: null | string; categories: unknown; contentLang: string; contributorIds: unknown; description: string; draft: null | boolean; heroImage: string; id: string; package: string; parentFolder: null | string; publishedAt: Date; showAuthor: null | boolean; showContributors: null | boolean; showOnNav: boolean; slug: string; tags: unknown; title: string; updatedAt: null | Date; }>; start: Partial<{ authorId: null | string; categories: unknown; contentLang: string; contributorIds: unknown; description: string; draft: null | boolean; heroImage: string; id: string; package: string; parentFolder: null | string; publishedAt: Date; showAuthor: null | boolean; showContributors: null | boolean; showOnNav: boolean; slug: string; tags: unknown; title: string; updatedAt: null | Date; }>;};
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:120
end: Partial<{ authorId: null | string; categories: unknown; contentLang: string; contributorIds: unknown; description: string; draft: null | boolean; heroImage: string; id: string; package: string; parentFolder: null | string; publishedAt: Date; showAuthor: null | boolean; showContributors: null | boolean; showOnNav: boolean; slug: string; tags: unknown; title: string; updatedAt: null | Date;}>;
start: Partial<{ authorId: null | string; categories: unknown; contentLang: string; contributorIds: unknown; description: string; draft: null | boolean; heroImage: string; id: string; package: string; parentFolder: null | string; publishedAt: Date; showAuthor: null | boolean; showContributors: null | boolean; showOnNav: boolean; slug: string; tags: unknown; title: string; updatedAt: null | Date;}>;
timestamp
Section titled “timestamp”timestamp: null | Date;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:113
Inherited from
Section titled “Inherited from”Omit.timestamp
userId
Section titled “userId”userId: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:111
Inherited from
Section titled “Inherited from”Omit.userId
FolderListCacheObject
Section titled “FolderListCacheObject”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:231
Represents a cache object for folder list data. Extends the BaseCacheObject interface.
FolderListCacheObject
Extends
Section titled “Extends”Properties
Section titled “Properties”data: FolderListItem[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:232
The folder list data to be cached.
lastCacheUpdate
Section titled “lastCacheUpdate”lastCacheUpdate: Date;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:156
Inherited from
Section titled “Inherited from”BaseCacheObject
.lastCacheUpdate
FolderListItem
Section titled “FolderListItem”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:136
Properties
Section titled “Properties”id: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:137
name: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:138
parent?
Section titled “parent?”optional parent: null | string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:139
FolderNode
Section titled “FolderNode”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:128
Properties
Section titled “Properties”children
Section titled “children”children: FolderNode[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:133
id: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:129
name: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:130
page: boolean;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:131
pageData
Section titled “pageData”pageData: | null | CombinedPageData;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:132
FolderTreeCacheObject
Section titled “FolderTreeCacheObject”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:218
Represents a cache object for folder tree data. Extends the BaseCacheObject interface.
FolderTreeCacheObject
Extends
Section titled “Extends”Properties
Section titled “Properties”data: FolderNode[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:219
The folder tree data to be cached.
lastCacheUpdate
Section titled “lastCacheUpdate”lastCacheUpdate: Date;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:156
Inherited from
Section titled “Inherited from”BaseCacheObject
.lastCacheUpdate
MetaOnlyPageDataCacheObject
Section titled “MetaOnlyPageDataCacheObject”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:181
Represents a cache object for page data. Extends the BaseCacheObject interface.
MetaOnlyPageDataCacheObject
Extends
Section titled “Extends”Properties
Section titled “Properties”data: MetaOnlyPageData;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:182
The combined page data to be cached.
lastCacheUpdate
Section titled “lastCacheUpdate”lastCacheUpdate: Date;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:156
Inherited from
Section titled “Inherited from”BaseCacheObject
.lastCacheUpdate
PageDataCacheObject
Section titled “PageDataCacheObject”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:168
Represents a cache object for page data. Extends the BaseCacheObject interface.
PageDataCacheObject
Extends
Section titled “Extends”Properties
Section titled “Properties”data: CombinedPageData;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:169
The combined page data to be cached.
lastCacheUpdate
Section titled “lastCacheUpdate”lastCacheUpdate: Date;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:156
Inherited from
Section titled “Inherited from”BaseCacheObject
.lastCacheUpdate
PageInsert
Section titled “PageInsert”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:308
Represents the data required to insert a new page.
Properties
Section titled “Properties”pageContent
Section titled “pageContent”pageContent: CombinedInsertContent;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:310
pageData
Section titled “pageData”pageData: { authorId: null | string; categories: unknown; contentLang: string; contributorIds: unknown; description: string; draft: null | boolean; heroImage: string; id: string; package: string; parentFolder: null | string; publishedAt: Date; showAuthor: null | boolean; showContributors: null | boolean; showOnNav: boolean; slug: string; tags: unknown; title: string; updatedAt: null | Date;};
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:309
authorId?
Section titled “authorId?”optional authorId: null | string;
categories?
Section titled “categories?”optional categories: unknown;
contentLang?
Section titled “contentLang?”optional contentLang: string;
contributorIds?
Section titled “contributorIds?”optional contributorIds: unknown;
description
Section titled “description”description: string;
draft?
Section titled “draft?”optional draft: null | boolean;
heroImage?
Section titled “heroImage?”optional heroImage: string;
optional id: string;
package?
Section titled “package?”optional package: string;
parentFolder?
Section titled “parentFolder?”optional parentFolder: null | string;
publishedAt?
Section titled “publishedAt?”optional publishedAt: Date;
showAuthor?
Section titled “showAuthor?”optional showAuthor: null | boolean;
showContributors?
Section titled “showContributors?”optional showContributors: null | boolean;
showOnNav?
Section titled “showOnNav?”optional showOnNav: boolean;
slug: string;
optional tags: unknown;
title: string;
updatedAt?
Section titled “updatedAt?”optional updatedAt: null | Date;
SiteConfigCacheObject
Section titled “SiteConfigCacheObject”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:194
Represents a cache object for site configuration. Extends the BaseCacheObject interface.
SiteConfigCacheObject
Extends
Section titled “Extends”Properties
Section titled “Properties”data: SiteConfig;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:195
The site configuration data.
lastCacheUpdate
Section titled “lastCacheUpdate”lastCacheUpdate: Date;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:156
Inherited from
Section titled “Inherited from”BaseCacheObject
.lastCacheUpdate
StudioCMSCacheObject
Section titled “StudioCMSCacheObject”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:238
Represents a cache object that stores pages and site configuration data.
Properties
Section titled “Properties”pages: Map<string, PageDataCacheObject>;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:239
siteConfig
Section titled “siteConfig”siteConfig: | undefined | SiteConfigCacheObject;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:240
version
Section titled “version”version: | undefined | VersionCacheObject;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:241
VersionCacheObject
Section titled “VersionCacheObject”Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:205
Represents a cache object that includes version information.
Extends
Section titled “Extends”Properties
Section titled “Properties”lastCacheUpdate
Section titled “lastCacheUpdate”lastCacheUpdate: Date;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:156
Inherited from
Section titled “Inherited from”BaseCacheObject
.lastCacheUpdate
version
Section titled “version”version: string;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:206
The version of the cache object.
Type Aliases
Section titled “Type Aliases”addDatabaseEntryInsertPage
Section titled “addDatabaseEntryInsertPage”type addDatabaseEntryInsertPage = { pageContent: PageContentReturnId[]; pageData: PageDataReturnId[];};
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:250
Represents the structure for adding a database entry for a page.
Properties
Section titled “Properties”pageContent
Section titled “pageContent”pageContent: PageContentReturnId[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:252
An array of page content objects with return IDs.
pageData
Section titled “pageData”pageData: PageDataReturnId[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:251
An array of page data objects with return IDs.
AstroDBVirtualModule
Section titled “AstroDBVirtualModule”type AstroDBVirtualModule = __module;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:142
DiffReturnType<T>
Section titled “DiffReturnType<T>”type DiffReturnType<T> = T extends diffItem ? diffReturn : diffReturn[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:126
Type Parameters
Section titled “Type Parameters”T
MetaOnlyPageData
Section titled “MetaOnlyPageData”type MetaOnlyPageData = Omit<CombinedPageData, "multiLangContent" | "defaultContent">;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:99
MultiPageInsert
Section titled “MultiPageInsert”type MultiPageInsert = PageInsert[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:316
Represents an array of PageInsert objects.
PageDataCacheReturnType<T>
Section titled “PageDataCacheReturnType<T>”type PageDataCacheReturnType<T> = T extends PageDataCacheObject ? MetaOnlyPageDataCacheObject : MetaOnlyPageDataCacheObject[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:105
Type Parameters
Section titled “Type Parameters”T
PageDataReturnType<T>
Section titled “PageDataReturnType<T>”type PageDataReturnType<T> = T extends CombinedPageData ? MetaOnlyPageData : MetaOnlyPageData[];
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:101
Type Parameters
Section titled “Type Parameters”T
PaginateInput
Section titled “PaginateInput”type PaginateInput = { limit: number; offset: number;};
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:94
Properties
Section titled “Properties”limit: number;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:95
offset
Section titled “offset”offset: number;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:96
STUDIOCMS_SDK_CACHE
Section titled “STUDIOCMS_SDK_CACHE”type STUDIOCMS_SDK_CACHE = typeof cacheModule;
Defined in: studiocms/packages/studiocms/src/sdk/types/index.ts:150
Type representing the return type of the STUDIOCMS_SDK_CACHEModule
function.
References
Section titled “References”AvailableLists
Section titled “AvailableLists”Re-exports AvailableLists
CacheConfig
Section titled “CacheConfig”Re-exports CacheConfig
CombinedInsertContent
Section titled “CombinedInsertContent”Re-exports CombinedInsertContent
CombinedRank
Section titled “CombinedRank”Re-exports CombinedRank
DatabaseTables
Section titled “DatabaseTables”Re-exports DatabaseTables
PageContentReturnId
Section titled “PageContentReturnId”Re-exports PageContentReturnId
PageDataCategoriesInsertResponse
Section titled “PageDataCategoriesInsertResponse”Re-exports PageDataCategoriesInsertResponse
PageDataReturnId
Section titled “PageDataReturnId”Re-exports PageDataReturnId
PageDataStripped
Section titled “PageDataStripped”Re-exports PageDataStripped
PageDataTagsInsertResponse
Section titled “PageDataTagsInsertResponse”Re-exports PageDataTagsInsertResponse
ProcessedCacheConfig
Section titled “ProcessedCacheConfig”Re-exports ProcessedCacheConfig
ProcessedSDKConfig
Section titled “ProcessedSDKConfig”Re-exports ProcessedSDKConfig
SingleRank
Section titled “SingleRank”Re-exports SingleRank
SiteConfig
Section titled “SiteConfig”Re-exports SiteConfig
tsDiffTrackingInsert
Section titled “tsDiffTrackingInsert”Re-exports tsDiffTrackingInsert
tsDiffTrackingSelect
Section titled “tsDiffTrackingSelect”Re-exports tsDiffTrackingSelect
tsEmailVerificationTokensInsert
Section titled “tsEmailVerificationTokensInsert”Re-exports tsEmailVerificationTokensInsert
tsEmailVerificationTokensSelect
Section titled “tsEmailVerificationTokensSelect”Re-exports tsEmailVerificationTokensSelect
tsNotificationSettingsInsert
Section titled “tsNotificationSettingsInsert”Re-exports tsNotificationSettingsInsert
tsNotificationSettingsSelect
Section titled “tsNotificationSettingsSelect”Re-exports tsNotificationSettingsSelect
tsOAuthAccountsSelect
Section titled “tsOAuthAccountsSelect”Re-exports tsOAuthAccountsSelect
tsPageContentInsert
Section titled “tsPageContentInsert”Re-exports tsPageContentInsert
tsPageContentSelect
Section titled “tsPageContentSelect”Re-exports tsPageContentSelect
tsPageDataCategoriesInsert
Section titled “tsPageDataCategoriesInsert”Re-exports tsPageDataCategoriesInsert
tsPageDataCategoriesSelect
Section titled “tsPageDataCategoriesSelect”Re-exports tsPageDataCategoriesSelect
tsPageDataInsert
Section titled “tsPageDataInsert”Re-exports tsPageDataInsert
tsPageDataSelect
Section titled “tsPageDataSelect”Re-exports tsPageDataSelect
tsPageDataTagsInsert
Section titled “tsPageDataTagsInsert”Re-exports tsPageDataTagsInsert
tsPageDataTagsSelect
Section titled “tsPageDataTagsSelect”Re-exports tsPageDataTagsSelect
tsPageFolderInsert
Section titled “tsPageFolderInsert”Re-exports tsPageFolderInsert
tsPageFolderSelect
Section titled “tsPageFolderSelect”Re-exports tsPageFolderSelect
tsPermissionsInsert
Section titled “tsPermissionsInsert”Re-exports tsPermissionsInsert
tsPermissionsSelect
Section titled “tsPermissionsSelect”Re-exports tsPermissionsSelect
tsSessionTableInsert
Section titled “tsSessionTableInsert”Re-exports tsSessionTableInsert
tsSessionTableSelect
Section titled “tsSessionTableSelect”Re-exports tsSessionTableSelect
tsSiteConfigInsert
Section titled “tsSiteConfigInsert”Re-exports tsSiteConfigInsert
tsSiteConfigSelect
Section titled “tsSiteConfigSelect”Re-exports tsSiteConfigSelect
tsUsersInsert
Section titled “tsUsersInsert”Re-exports tsUsersInsert
tsUsersSelect
Section titled “tsUsersSelect”Re-exports tsUsersSelect
tsUsersUpdate
Section titled “tsUsersUpdate”Re-exports tsUsersUpdate