@rezamirzapour/pod-sdk 1.0.10 → 1.0.11

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.mts CHANGED
@@ -156,7 +156,17 @@ interface CheckCaptchaOptions {
156
156
  value: string;
157
157
  hash: string;
158
158
  }
159
- type CheckCaptchaResponse = boolean;
159
+ interface CheckCaptchaResponse {
160
+ hasError: boolean;
161
+ errorCode: number;
162
+ message: any[];
163
+ result: boolean | any[];
164
+ metaData?: any[];
165
+ refId?: string;
166
+ referenceNumber?: number;
167
+ count?: number;
168
+ aggregations?: number;
169
+ }
160
170
 
161
171
  interface CaptchaServiceOptions {
162
172
  baseUrl: string;
@@ -170,11 +180,11 @@ declare class CaptchaService {
170
180
  /**
171
181
  * Get a new captcha image
172
182
  */
173
- get(): Promise<PodResponse<GenerateCaptchaResponse>>;
183
+ get(): Promise<GenerateCaptchaResponse>;
174
184
  /**
175
185
  * Check if the entered captcha value is valid
176
186
  */
177
- check(options: CheckCaptchaOptions): Promise<PodResponse<CheckCaptchaResponse>>;
187
+ check(options: CheckCaptchaOptions): Promise<CheckCaptchaResponse>;
178
188
  }
179
189
 
180
190
  interface SearchTimelineParamMetaQuery<T extends object = any> {
@@ -2737,6 +2747,7 @@ interface CmsRequestOptions<TSubject = any> {
2737
2747
  cache?: RequestCache;
2738
2748
  headers?: HeadersInit;
2739
2749
  signal?: AbortSignal;
2750
+ queryArrayFormat?: 'repeat' | 'comma' | 'brackets' | 'indices';
2740
2751
  }
2741
2752
  interface TagCategoryItem {
2742
2753
  id: number;
@@ -2871,6 +2882,7 @@ declare class CmsProductService {
2871
2882
  private apiToken;
2872
2883
  private revalidate;
2873
2884
  constructor(options: CmsProductServiceOptions);
2885
+ private normalizeParams;
2874
2886
  private get commonHeaders();
2875
2887
  private get managingHeaders();
2876
2888
  /**
@@ -3123,6 +3135,7 @@ declare class CmsService {
3123
3135
  */
3124
3136
  readonly tags: CmsTagService;
3125
3137
  constructor(options: CmsServiceOptions);
3138
+ private normalizeParams;
3126
3139
  private get commonHeaders();
3127
3140
  private get managingHeaders();
3128
3141
  /**
@@ -3402,6 +3415,47 @@ declare const SANDBOX_POD_URLS: Required<PodUrlsConfig>;
3402
3415
  */
3403
3416
  declare function resolvePodUrls(urls?: PodUrlsConfig, sandbox?: boolean): Required<PodUrlsConfig>;
3404
3417
 
3418
+ type OpenApiHttpMethod = 'get' | 'post' | 'put' | 'patch' | 'delete' | 'head';
3419
+ type OpenApiBodyKind = 'json' | 'form' | 'multipart' | 'binary';
3420
+ type OpenApiResponseKind = 'json' | 'binary' | 'empty';
3421
+ type OpenApiSecurityKind = 'apiToken' | 'bearer' | 'basic' | 'clientId' | 'podFormToken' | 'cmsPublic' | 'cmsManage' | 'signature' | 'none';
3422
+ interface PodOpenApiOptions {
3423
+ /** Overrides the generated document title. */
3424
+ title?: string;
3425
+ /** Overrides the API document version. */
3426
+ version?: string;
3427
+ /** Uses the SDK sandbox URL set as the Swagger servers. */
3428
+ sandbox?: boolean;
3429
+ /** Applies the same URL overrides accepted by `PodSdk`. */
3430
+ urls?: PodUrlsConfig;
3431
+ }
3432
+ interface PodOpenApiEndpoint {
3433
+ tag: string;
3434
+ method: OpenApiHttpMethod;
3435
+ path: string;
3436
+ operationId: string;
3437
+ summary: string;
3438
+ /** SDK methods backed by this HTTP operation (aliases included). */
3439
+ sdkMethods?: string[];
3440
+ query?: string[];
3441
+ body?: OpenApiBodyKind;
3442
+ bodyRequired?: boolean;
3443
+ response?: OpenApiResponseKind;
3444
+ security?: OpenApiSecurityKind;
3445
+ deprecated?: boolean;
3446
+ }
3447
+ /**
3448
+ * Canonical registry for every HTTP operation exposed by the SDK services.
3449
+ * It is exported so consumers can build filtered documentation or API clients.
3450
+ */
3451
+ declare const POD_OPENAPI_ENDPOINTS: readonly PodOpenApiEndpoint[];
3452
+ /** Creates a Swagger UI compatible OpenAPI 3 document for all POD SDK services. */
3453
+ declare function createPodOpenApiDocument(options?: PodOpenApiOptions): any;
3454
+ /** Default production Swagger document. */
3455
+ declare const POD_OPENAPI_DOCUMENT: any;
3456
+ /** Familiar Swagger-oriented alias for consumers. */
3457
+ declare const podSwaggerDocument: any;
3458
+
3405
3459
  /**
3406
3460
  * Cryptographic and encoding utilities for POD Platform services.
3407
3461
  * Uses standard Web Crypto API (supported natively in Node.js 18+, Browsers, and Edge).
@@ -3409,4 +3463,4 @@ declare function resolvePodUrls(urls?: PodUrlsConfig, sandbox?: boolean): Requir
3409
3463
  declare function encodeBase64(str: string): string;
3410
3464
  declare function generatePodSignatureHeader(keyId: string, privateKeyPem?: string): Promise<string>;
3411
3465
 
3412
- export { type AccessLevel, type AddCommentParams, type AddContentParams, type AddCustomPostParams, type AddCustomPostResponse, type AddProductParams, type ApiPageLink, type ApiPageList, type ApiSimplePageList, type ArchiveParams, type ArchiveProductParams, type BatchPublishParams, type BatchPublishProductParams, type BatchUnpublishParams, type BatchUnpublishProductParams, type Business, type CachePolicy, CaptchaService, type CaptchaServiceOptions, type CheckCaptchaOptions, type CheckCaptchaResponse, CmsDataFormatter, type CmsMetadata, CmsProductService, type CmsProductServiceOptions, type CmsRequestOptions, CmsService, type CmsServiceOptions, CmsTagService, type CmsTagServiceOptions, type CommentItem, type ContentBody, type CreateFolderParams, type CreateLinkParams, type CreateTagCategoryParams, type CreateTagTreeItemParams, type CreateUserGroupParams, type CreateWorkspaceParams, type CustomPostCrudConfig, CustomPostCrudService, type CustomPostItem, CustomPostService, type CustomPostServiceOptions, DEFAULT_POD_URLS, type DownloadFileParams, type DownloadImageParams, type DownloadThumbnailParams, type DownloadZipParams, type EditContentParams, type EditProductParams, type FileVersion, type FinalizeResumableParams, type FormattedGetContentResponse, type FormattedGetProductResponse, type FormattedProductSubject, type FormattedSubject, type GenerateCaptchaResponse, type GetBookmarksParams, type GetCategoriesParams, type GetCategoryResponse, type GetCommentListParams, type GetCommentsParams, type GetContentByEntityIdParams, type GetContentParams, type GetContentResponse, type GetCustomPostParams, type GetCustomPostResponse, type GetFolderChildrenParams, type GetInfOfGraduatedByGraduateDateResponse, type GetProductByEntityIdParams, type GetProductParams, type GetProductResponse, type GetReactionsParams, type GetSessionClassInCurrentDayResponse, type GetTagCategoriesResponse, type GetTagTreeParams, type GetTagTreeResponse, type GetUploadLinkParams, type HandshakeResponse, type IumsResponse, IumsService, type IumsServiceOptions, type LikeCommentParams, type LikePostParams, type MakePublicParams, type MetaContent, type Metadata, NotificationService, type NotificationServiceOptions, type PaginationParams, type PodFormCreationDto, type PodFormDownloadLinkParams, type PodFormExportParams, type PodFormField, type PodFormFolderDto, type PodFormGetParams, type PodFormId, type PodFormItem, type PodFormJson, type PodFormListParams, type PodFormOtpParams, type PodFormPaymentListParams, type PodFormPreviewParams, type PodFormRequestOptions, type PodFormResponse, type PodFormResponseCreationDto, type PodFormResponseInitiationDto, type PodFormResponseListParams, PodFormService, type PodFormServiceOptions, type PodFormSettingsUpdateDto, type PodFormTemplateDto, type PodFormUpdateDto, type PodResponse, PodSdk, type PodSdkConfig, type PodUrlsConfig, PodspaceBookmarksService, type PodspaceBookmarksServiceOptions, PodspaceFilesService, type PodspaceFilesServiceOptions, PodspaceFoldersService, type PodspaceFoldersServiceOptions, PodspaceLinksService, type PodspaceLinksServiceOptions, PodspaceMeService, type PodspaceMeServiceOptions, PodspaceMetadataService, type PodspaceMetadataServiceOptions, type PodspaceRequestOptions, type PodspaceRestResponse, PodspaceResumableService, type PodspaceResumableServiceOptions, PodspaceService, type PodspaceServiceOptions, PodspaceSharesService, type PodspaceSharesServiceOptions, PodspaceTagsService, type PodspaceTagsServiceOptions, PodspaceTrashService, type PodspaceTrashServiceOptions, PodspaceUploadDownloadService, type PodspaceUploadDownloadServiceOptions, type PodspaceUploadResponse, type PodspaceUploadResult, type PodspaceUser, PodspaceUserGroupsService, type PodspaceUserGroupsServiceOptions, PodspaceWorkspacesService, type PodspaceWorkspacesServiceOptions, type ProductBody, type ProductItem, type ProductItemWithFormatted, type Rate, type ReplaceFileParams, type ResultItem, type ResultItemWithFormatted, SANDBOX_POD_URLS, type SearchFilesParams, type SearchTimelineByMetadataParam, type SearchTimelineParamMetaQuery, type SearchTimelineResponse, type SearchTimelineResultItem, type SendOtpOptions, type SendSmsParams, type SendSmsResponse, type SeoType, type Share, type ShareAccess, type ShareEntityParams, type ShareType, type SocialResponse, SocialService, type SocialServiceOptions, type SpaceEntity, type SpaceFile, type SpaceFolder, SsoService, type SsoServiceOptions, type SsoUserProfile, type Subject, type TagCategoryItem, type TagCategoryListParams, type TagTreeAncestorsParams, type TagTreeMetadata, type TagtreesType, type ThumbnailStatus, type TimelineResponse, type TimelineSearchBody, type TokenResponse, type UpdateCustomPostParams, type UpdateLinkParams, type UpdateTagCategoryParams, type UpdateTagTreeItemParams, type UpdateWorkspaceParams, type UploadFileParams, type UploadImageBase64Params, type UploadMultipleFilesParams, type UserGroup, type UserPlan, type UserPostInfo, type UserUsageReport, type VerifyResponse, type Workspace, type WorkspaceMember, createPodSdk, PodSdk as default, encodeBase64, generatePodSignatureHeader, resolvePodUrls };
3466
+ export { type AccessLevel, type AddCommentParams, type AddContentParams, type AddCustomPostParams, type AddCustomPostResponse, type AddProductParams, type ApiPageLink, type ApiPageList, type ApiSimplePageList, type ArchiveParams, type ArchiveProductParams, type BatchPublishParams, type BatchPublishProductParams, type BatchUnpublishParams, type BatchUnpublishProductParams, type Business, type CachePolicy, CaptchaService, type CaptchaServiceOptions, type CheckCaptchaOptions, type CheckCaptchaResponse, CmsDataFormatter, type CmsMetadata, CmsProductService, type CmsProductServiceOptions, type CmsRequestOptions, CmsService, type CmsServiceOptions, CmsTagService, type CmsTagServiceOptions, type CommentItem, type ContentBody, type CreateFolderParams, type CreateLinkParams, type CreateTagCategoryParams, type CreateTagTreeItemParams, type CreateUserGroupParams, type CreateWorkspaceParams, type CustomPostCrudConfig, CustomPostCrudService, type CustomPostItem, CustomPostService, type CustomPostServiceOptions, DEFAULT_POD_URLS, type DownloadFileParams, type DownloadImageParams, type DownloadThumbnailParams, type DownloadZipParams, type EditContentParams, type EditProductParams, type FileVersion, type FinalizeResumableParams, type FormattedGetContentResponse, type FormattedGetProductResponse, type FormattedProductSubject, type FormattedSubject, type GenerateCaptchaResponse, type GetBookmarksParams, type GetCategoriesParams, type GetCategoryResponse, type GetCommentListParams, type GetCommentsParams, type GetContentByEntityIdParams, type GetContentParams, type GetContentResponse, type GetCustomPostParams, type GetCustomPostResponse, type GetFolderChildrenParams, type GetInfOfGraduatedByGraduateDateResponse, type GetProductByEntityIdParams, type GetProductParams, type GetProductResponse, type GetReactionsParams, type GetSessionClassInCurrentDayResponse, type GetTagCategoriesResponse, type GetTagTreeParams, type GetTagTreeResponse, type GetUploadLinkParams, type HandshakeResponse, type IumsResponse, IumsService, type IumsServiceOptions, type LikeCommentParams, type LikePostParams, type MakePublicParams, type MetaContent, type Metadata, NotificationService, type NotificationServiceOptions, type OpenApiBodyKind, type OpenApiHttpMethod, type OpenApiResponseKind, type OpenApiSecurityKind, POD_OPENAPI_DOCUMENT, POD_OPENAPI_ENDPOINTS, type PaginationParams, type PodFormCreationDto, type PodFormDownloadLinkParams, type PodFormExportParams, type PodFormField, type PodFormFolderDto, type PodFormGetParams, type PodFormId, type PodFormItem, type PodFormJson, type PodFormListParams, type PodFormOtpParams, type PodFormPaymentListParams, type PodFormPreviewParams, type PodFormRequestOptions, type PodFormResponse, type PodFormResponseCreationDto, type PodFormResponseInitiationDto, type PodFormResponseListParams, PodFormService, type PodFormServiceOptions, type PodFormSettingsUpdateDto, type PodFormTemplateDto, type PodFormUpdateDto, type PodOpenApiEndpoint, type PodOpenApiOptions, type PodResponse, PodSdk, type PodSdkConfig, type PodUrlsConfig, PodspaceBookmarksService, type PodspaceBookmarksServiceOptions, PodspaceFilesService, type PodspaceFilesServiceOptions, PodspaceFoldersService, type PodspaceFoldersServiceOptions, PodspaceLinksService, type PodspaceLinksServiceOptions, PodspaceMeService, type PodspaceMeServiceOptions, PodspaceMetadataService, type PodspaceMetadataServiceOptions, type PodspaceRequestOptions, type PodspaceRestResponse, PodspaceResumableService, type PodspaceResumableServiceOptions, PodspaceService, type PodspaceServiceOptions, PodspaceSharesService, type PodspaceSharesServiceOptions, PodspaceTagsService, type PodspaceTagsServiceOptions, PodspaceTrashService, type PodspaceTrashServiceOptions, PodspaceUploadDownloadService, type PodspaceUploadDownloadServiceOptions, type PodspaceUploadResponse, type PodspaceUploadResult, type PodspaceUser, PodspaceUserGroupsService, type PodspaceUserGroupsServiceOptions, PodspaceWorkspacesService, type PodspaceWorkspacesServiceOptions, type ProductBody, type ProductItem, type ProductItemWithFormatted, type Rate, type ReplaceFileParams, type ResultItem, type ResultItemWithFormatted, SANDBOX_POD_URLS, type SearchFilesParams, type SearchTimelineByMetadataParam, type SearchTimelineParamMetaQuery, type SearchTimelineResponse, type SearchTimelineResultItem, type SendOtpOptions, type SendSmsParams, type SendSmsResponse, type SeoType, type Share, type ShareAccess, type ShareEntityParams, type ShareType, type SocialResponse, SocialService, type SocialServiceOptions, type SpaceEntity, type SpaceFile, type SpaceFolder, SsoService, type SsoServiceOptions, type SsoUserProfile, type Subject, type TagCategoryItem, type TagCategoryListParams, type TagTreeAncestorsParams, type TagTreeMetadata, type TagtreesType, type ThumbnailStatus, type TimelineResponse, type TimelineSearchBody, type TokenResponse, type UpdateCustomPostParams, type UpdateLinkParams, type UpdateTagCategoryParams, type UpdateTagTreeItemParams, type UpdateWorkspaceParams, type UploadFileParams, type UploadImageBase64Params, type UploadMultipleFilesParams, type UserGroup, type UserPlan, type UserPostInfo, type UserUsageReport, type VerifyResponse, type Workspace, type WorkspaceMember, createPodOpenApiDocument, createPodSdk, PodSdk as default, encodeBase64, generatePodSignatureHeader, podSwaggerDocument, resolvePodUrls };
package/dist/index.d.ts CHANGED
@@ -156,7 +156,17 @@ interface CheckCaptchaOptions {
156
156
  value: string;
157
157
  hash: string;
158
158
  }
159
- type CheckCaptchaResponse = boolean;
159
+ interface CheckCaptchaResponse {
160
+ hasError: boolean;
161
+ errorCode: number;
162
+ message: any[];
163
+ result: boolean | any[];
164
+ metaData?: any[];
165
+ refId?: string;
166
+ referenceNumber?: number;
167
+ count?: number;
168
+ aggregations?: number;
169
+ }
160
170
 
161
171
  interface CaptchaServiceOptions {
162
172
  baseUrl: string;
@@ -170,11 +180,11 @@ declare class CaptchaService {
170
180
  /**
171
181
  * Get a new captcha image
172
182
  */
173
- get(): Promise<PodResponse<GenerateCaptchaResponse>>;
183
+ get(): Promise<GenerateCaptchaResponse>;
174
184
  /**
175
185
  * Check if the entered captcha value is valid
176
186
  */
177
- check(options: CheckCaptchaOptions): Promise<PodResponse<CheckCaptchaResponse>>;
187
+ check(options: CheckCaptchaOptions): Promise<CheckCaptchaResponse>;
178
188
  }
179
189
 
180
190
  interface SearchTimelineParamMetaQuery<T extends object = any> {
@@ -2737,6 +2747,7 @@ interface CmsRequestOptions<TSubject = any> {
2737
2747
  cache?: RequestCache;
2738
2748
  headers?: HeadersInit;
2739
2749
  signal?: AbortSignal;
2750
+ queryArrayFormat?: 'repeat' | 'comma' | 'brackets' | 'indices';
2740
2751
  }
2741
2752
  interface TagCategoryItem {
2742
2753
  id: number;
@@ -2871,6 +2882,7 @@ declare class CmsProductService {
2871
2882
  private apiToken;
2872
2883
  private revalidate;
2873
2884
  constructor(options: CmsProductServiceOptions);
2885
+ private normalizeParams;
2874
2886
  private get commonHeaders();
2875
2887
  private get managingHeaders();
2876
2888
  /**
@@ -3123,6 +3135,7 @@ declare class CmsService {
3123
3135
  */
3124
3136
  readonly tags: CmsTagService;
3125
3137
  constructor(options: CmsServiceOptions);
3138
+ private normalizeParams;
3126
3139
  private get commonHeaders();
3127
3140
  private get managingHeaders();
3128
3141
  /**
@@ -3402,6 +3415,47 @@ declare const SANDBOX_POD_URLS: Required<PodUrlsConfig>;
3402
3415
  */
3403
3416
  declare function resolvePodUrls(urls?: PodUrlsConfig, sandbox?: boolean): Required<PodUrlsConfig>;
3404
3417
 
3418
+ type OpenApiHttpMethod = 'get' | 'post' | 'put' | 'patch' | 'delete' | 'head';
3419
+ type OpenApiBodyKind = 'json' | 'form' | 'multipart' | 'binary';
3420
+ type OpenApiResponseKind = 'json' | 'binary' | 'empty';
3421
+ type OpenApiSecurityKind = 'apiToken' | 'bearer' | 'basic' | 'clientId' | 'podFormToken' | 'cmsPublic' | 'cmsManage' | 'signature' | 'none';
3422
+ interface PodOpenApiOptions {
3423
+ /** Overrides the generated document title. */
3424
+ title?: string;
3425
+ /** Overrides the API document version. */
3426
+ version?: string;
3427
+ /** Uses the SDK sandbox URL set as the Swagger servers. */
3428
+ sandbox?: boolean;
3429
+ /** Applies the same URL overrides accepted by `PodSdk`. */
3430
+ urls?: PodUrlsConfig;
3431
+ }
3432
+ interface PodOpenApiEndpoint {
3433
+ tag: string;
3434
+ method: OpenApiHttpMethod;
3435
+ path: string;
3436
+ operationId: string;
3437
+ summary: string;
3438
+ /** SDK methods backed by this HTTP operation (aliases included). */
3439
+ sdkMethods?: string[];
3440
+ query?: string[];
3441
+ body?: OpenApiBodyKind;
3442
+ bodyRequired?: boolean;
3443
+ response?: OpenApiResponseKind;
3444
+ security?: OpenApiSecurityKind;
3445
+ deprecated?: boolean;
3446
+ }
3447
+ /**
3448
+ * Canonical registry for every HTTP operation exposed by the SDK services.
3449
+ * It is exported so consumers can build filtered documentation or API clients.
3450
+ */
3451
+ declare const POD_OPENAPI_ENDPOINTS: readonly PodOpenApiEndpoint[];
3452
+ /** Creates a Swagger UI compatible OpenAPI 3 document for all POD SDK services. */
3453
+ declare function createPodOpenApiDocument(options?: PodOpenApiOptions): any;
3454
+ /** Default production Swagger document. */
3455
+ declare const POD_OPENAPI_DOCUMENT: any;
3456
+ /** Familiar Swagger-oriented alias for consumers. */
3457
+ declare const podSwaggerDocument: any;
3458
+
3405
3459
  /**
3406
3460
  * Cryptographic and encoding utilities for POD Platform services.
3407
3461
  * Uses standard Web Crypto API (supported natively in Node.js 18+, Browsers, and Edge).
@@ -3409,4 +3463,4 @@ declare function resolvePodUrls(urls?: PodUrlsConfig, sandbox?: boolean): Requir
3409
3463
  declare function encodeBase64(str: string): string;
3410
3464
  declare function generatePodSignatureHeader(keyId: string, privateKeyPem?: string): Promise<string>;
3411
3465
 
3412
- export { type AccessLevel, type AddCommentParams, type AddContentParams, type AddCustomPostParams, type AddCustomPostResponse, type AddProductParams, type ApiPageLink, type ApiPageList, type ApiSimplePageList, type ArchiveParams, type ArchiveProductParams, type BatchPublishParams, type BatchPublishProductParams, type BatchUnpublishParams, type BatchUnpublishProductParams, type Business, type CachePolicy, CaptchaService, type CaptchaServiceOptions, type CheckCaptchaOptions, type CheckCaptchaResponse, CmsDataFormatter, type CmsMetadata, CmsProductService, type CmsProductServiceOptions, type CmsRequestOptions, CmsService, type CmsServiceOptions, CmsTagService, type CmsTagServiceOptions, type CommentItem, type ContentBody, type CreateFolderParams, type CreateLinkParams, type CreateTagCategoryParams, type CreateTagTreeItemParams, type CreateUserGroupParams, type CreateWorkspaceParams, type CustomPostCrudConfig, CustomPostCrudService, type CustomPostItem, CustomPostService, type CustomPostServiceOptions, DEFAULT_POD_URLS, type DownloadFileParams, type DownloadImageParams, type DownloadThumbnailParams, type DownloadZipParams, type EditContentParams, type EditProductParams, type FileVersion, type FinalizeResumableParams, type FormattedGetContentResponse, type FormattedGetProductResponse, type FormattedProductSubject, type FormattedSubject, type GenerateCaptchaResponse, type GetBookmarksParams, type GetCategoriesParams, type GetCategoryResponse, type GetCommentListParams, type GetCommentsParams, type GetContentByEntityIdParams, type GetContentParams, type GetContentResponse, type GetCustomPostParams, type GetCustomPostResponse, type GetFolderChildrenParams, type GetInfOfGraduatedByGraduateDateResponse, type GetProductByEntityIdParams, type GetProductParams, type GetProductResponse, type GetReactionsParams, type GetSessionClassInCurrentDayResponse, type GetTagCategoriesResponse, type GetTagTreeParams, type GetTagTreeResponse, type GetUploadLinkParams, type HandshakeResponse, type IumsResponse, IumsService, type IumsServiceOptions, type LikeCommentParams, type LikePostParams, type MakePublicParams, type MetaContent, type Metadata, NotificationService, type NotificationServiceOptions, type PaginationParams, type PodFormCreationDto, type PodFormDownloadLinkParams, type PodFormExportParams, type PodFormField, type PodFormFolderDto, type PodFormGetParams, type PodFormId, type PodFormItem, type PodFormJson, type PodFormListParams, type PodFormOtpParams, type PodFormPaymentListParams, type PodFormPreviewParams, type PodFormRequestOptions, type PodFormResponse, type PodFormResponseCreationDto, type PodFormResponseInitiationDto, type PodFormResponseListParams, PodFormService, type PodFormServiceOptions, type PodFormSettingsUpdateDto, type PodFormTemplateDto, type PodFormUpdateDto, type PodResponse, PodSdk, type PodSdkConfig, type PodUrlsConfig, PodspaceBookmarksService, type PodspaceBookmarksServiceOptions, PodspaceFilesService, type PodspaceFilesServiceOptions, PodspaceFoldersService, type PodspaceFoldersServiceOptions, PodspaceLinksService, type PodspaceLinksServiceOptions, PodspaceMeService, type PodspaceMeServiceOptions, PodspaceMetadataService, type PodspaceMetadataServiceOptions, type PodspaceRequestOptions, type PodspaceRestResponse, PodspaceResumableService, type PodspaceResumableServiceOptions, PodspaceService, type PodspaceServiceOptions, PodspaceSharesService, type PodspaceSharesServiceOptions, PodspaceTagsService, type PodspaceTagsServiceOptions, PodspaceTrashService, type PodspaceTrashServiceOptions, PodspaceUploadDownloadService, type PodspaceUploadDownloadServiceOptions, type PodspaceUploadResponse, type PodspaceUploadResult, type PodspaceUser, PodspaceUserGroupsService, type PodspaceUserGroupsServiceOptions, PodspaceWorkspacesService, type PodspaceWorkspacesServiceOptions, type ProductBody, type ProductItem, type ProductItemWithFormatted, type Rate, type ReplaceFileParams, type ResultItem, type ResultItemWithFormatted, SANDBOX_POD_URLS, type SearchFilesParams, type SearchTimelineByMetadataParam, type SearchTimelineParamMetaQuery, type SearchTimelineResponse, type SearchTimelineResultItem, type SendOtpOptions, type SendSmsParams, type SendSmsResponse, type SeoType, type Share, type ShareAccess, type ShareEntityParams, type ShareType, type SocialResponse, SocialService, type SocialServiceOptions, type SpaceEntity, type SpaceFile, type SpaceFolder, SsoService, type SsoServiceOptions, type SsoUserProfile, type Subject, type TagCategoryItem, type TagCategoryListParams, type TagTreeAncestorsParams, type TagTreeMetadata, type TagtreesType, type ThumbnailStatus, type TimelineResponse, type TimelineSearchBody, type TokenResponse, type UpdateCustomPostParams, type UpdateLinkParams, type UpdateTagCategoryParams, type UpdateTagTreeItemParams, type UpdateWorkspaceParams, type UploadFileParams, type UploadImageBase64Params, type UploadMultipleFilesParams, type UserGroup, type UserPlan, type UserPostInfo, type UserUsageReport, type VerifyResponse, type Workspace, type WorkspaceMember, createPodSdk, PodSdk as default, encodeBase64, generatePodSignatureHeader, resolvePodUrls };
3466
+ export { type AccessLevel, type AddCommentParams, type AddContentParams, type AddCustomPostParams, type AddCustomPostResponse, type AddProductParams, type ApiPageLink, type ApiPageList, type ApiSimplePageList, type ArchiveParams, type ArchiveProductParams, type BatchPublishParams, type BatchPublishProductParams, type BatchUnpublishParams, type BatchUnpublishProductParams, type Business, type CachePolicy, CaptchaService, type CaptchaServiceOptions, type CheckCaptchaOptions, type CheckCaptchaResponse, CmsDataFormatter, type CmsMetadata, CmsProductService, type CmsProductServiceOptions, type CmsRequestOptions, CmsService, type CmsServiceOptions, CmsTagService, type CmsTagServiceOptions, type CommentItem, type ContentBody, type CreateFolderParams, type CreateLinkParams, type CreateTagCategoryParams, type CreateTagTreeItemParams, type CreateUserGroupParams, type CreateWorkspaceParams, type CustomPostCrudConfig, CustomPostCrudService, type CustomPostItem, CustomPostService, type CustomPostServiceOptions, DEFAULT_POD_URLS, type DownloadFileParams, type DownloadImageParams, type DownloadThumbnailParams, type DownloadZipParams, type EditContentParams, type EditProductParams, type FileVersion, type FinalizeResumableParams, type FormattedGetContentResponse, type FormattedGetProductResponse, type FormattedProductSubject, type FormattedSubject, type GenerateCaptchaResponse, type GetBookmarksParams, type GetCategoriesParams, type GetCategoryResponse, type GetCommentListParams, type GetCommentsParams, type GetContentByEntityIdParams, type GetContentParams, type GetContentResponse, type GetCustomPostParams, type GetCustomPostResponse, type GetFolderChildrenParams, type GetInfOfGraduatedByGraduateDateResponse, type GetProductByEntityIdParams, type GetProductParams, type GetProductResponse, type GetReactionsParams, type GetSessionClassInCurrentDayResponse, type GetTagCategoriesResponse, type GetTagTreeParams, type GetTagTreeResponse, type GetUploadLinkParams, type HandshakeResponse, type IumsResponse, IumsService, type IumsServiceOptions, type LikeCommentParams, type LikePostParams, type MakePublicParams, type MetaContent, type Metadata, NotificationService, type NotificationServiceOptions, type OpenApiBodyKind, type OpenApiHttpMethod, type OpenApiResponseKind, type OpenApiSecurityKind, POD_OPENAPI_DOCUMENT, POD_OPENAPI_ENDPOINTS, type PaginationParams, type PodFormCreationDto, type PodFormDownloadLinkParams, type PodFormExportParams, type PodFormField, type PodFormFolderDto, type PodFormGetParams, type PodFormId, type PodFormItem, type PodFormJson, type PodFormListParams, type PodFormOtpParams, type PodFormPaymentListParams, type PodFormPreviewParams, type PodFormRequestOptions, type PodFormResponse, type PodFormResponseCreationDto, type PodFormResponseInitiationDto, type PodFormResponseListParams, PodFormService, type PodFormServiceOptions, type PodFormSettingsUpdateDto, type PodFormTemplateDto, type PodFormUpdateDto, type PodOpenApiEndpoint, type PodOpenApiOptions, type PodResponse, PodSdk, type PodSdkConfig, type PodUrlsConfig, PodspaceBookmarksService, type PodspaceBookmarksServiceOptions, PodspaceFilesService, type PodspaceFilesServiceOptions, PodspaceFoldersService, type PodspaceFoldersServiceOptions, PodspaceLinksService, type PodspaceLinksServiceOptions, PodspaceMeService, type PodspaceMeServiceOptions, PodspaceMetadataService, type PodspaceMetadataServiceOptions, type PodspaceRequestOptions, type PodspaceRestResponse, PodspaceResumableService, type PodspaceResumableServiceOptions, PodspaceService, type PodspaceServiceOptions, PodspaceSharesService, type PodspaceSharesServiceOptions, PodspaceTagsService, type PodspaceTagsServiceOptions, PodspaceTrashService, type PodspaceTrashServiceOptions, PodspaceUploadDownloadService, type PodspaceUploadDownloadServiceOptions, type PodspaceUploadResponse, type PodspaceUploadResult, type PodspaceUser, PodspaceUserGroupsService, type PodspaceUserGroupsServiceOptions, PodspaceWorkspacesService, type PodspaceWorkspacesServiceOptions, type ProductBody, type ProductItem, type ProductItemWithFormatted, type Rate, type ReplaceFileParams, type ResultItem, type ResultItemWithFormatted, SANDBOX_POD_URLS, type SearchFilesParams, type SearchTimelineByMetadataParam, type SearchTimelineParamMetaQuery, type SearchTimelineResponse, type SearchTimelineResultItem, type SendOtpOptions, type SendSmsParams, type SendSmsResponse, type SeoType, type Share, type ShareAccess, type ShareEntityParams, type ShareType, type SocialResponse, SocialService, type SocialServiceOptions, type SpaceEntity, type SpaceFile, type SpaceFolder, SsoService, type SsoServiceOptions, type SsoUserProfile, type Subject, type TagCategoryItem, type TagCategoryListParams, type TagTreeAncestorsParams, type TagTreeMetadata, type TagtreesType, type ThumbnailStatus, type TimelineResponse, type TimelineSearchBody, type TokenResponse, type UpdateCustomPostParams, type UpdateLinkParams, type UpdateTagCategoryParams, type UpdateTagTreeItemParams, type UpdateWorkspaceParams, type UploadFileParams, type UploadImageBase64Params, type UploadMultipleFilesParams, type UserGroup, type UserPlan, type UserPostInfo, type UserUsageReport, type VerifyResponse, type Workspace, type WorkspaceMember, createPodOpenApiDocument, createPodSdk, PodSdk as default, encodeBase64, generatePodSignatureHeader, podSwaggerDocument, resolvePodUrls };