cmx-sdk 0.2.15 → 0.2.17

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.ts CHANGED
@@ -222,6 +222,15 @@ interface PublicContentDetail {
222
222
  slug: string;
223
223
  title: string;
224
224
  description: string | null;
225
+ /**
226
+ * カバー画像URL(deprecated: coverImageAssetId を使用)
227
+ * @deprecated
228
+ */
229
+ coverImageUrl: string | null;
230
+ /** カバー画像アセットID */
231
+ coverImageAssetId: string | null;
232
+ /** カバー画像外部URL */
233
+ coverImageExternalUrl: string | null;
225
234
  publishedAt: string | null;
226
235
  updatedAt: string | null;
227
236
  mdx: string;
@@ -306,6 +315,15 @@ interface PublicContentListItem {
306
315
  slug: string;
307
316
  title: string;
308
317
  description: string | null;
318
+ /**
319
+ * カバー画像URL(deprecated: coverImageAssetId を使用)
320
+ * @deprecated
321
+ */
322
+ coverImageUrl: string | null;
323
+ /** カバー画像アセットID */
324
+ coverImageAssetId: string | null;
325
+ /** カバー画像外部URL */
326
+ coverImageExternalUrl: string | null;
309
327
  publishedAt: string | null;
310
328
  updatedAt: string | null;
311
329
  }
@@ -453,8 +471,15 @@ interface CreateContentRequest {
453
471
  * @maxLength 1000
454
472
  */
455
473
  summary?: string;
456
- /** カバー画像URL */
474
+ /**
475
+ * カバー画像URL(deprecated: coverImageAssetId を使用)
476
+ * @deprecated
477
+ */
457
478
  coverImageUrl?: string;
479
+ /** カバー画像アセットID */
480
+ coverImageAssetId?: string | null;
481
+ /** カバー画像外部URL(アセットシステム外の画像) */
482
+ coverImageExternalUrl?: string | null;
458
483
  /** 作成と同時に公開する */
459
484
  autoPublish?: boolean;
460
485
  }
@@ -956,7 +981,7 @@ type GetManageCollectionPresetsParams = {
956
981
  */
957
982
  type GetManageContentsIdParams = {
958
983
  /**
959
- * 取得するフィールド(カンマ区切り)。指定可能: id, collectionId, slug, title, description, summary, coverImageUrl, status, parentId, sortOrder, locale, publishedAt, createdAt, updatedAt, mdx, frontmatterJson, seoJson
984
+ * 取得するフィールド(カンマ区切り)。指定可能: id, collectionId, slug, title, description, summary, coverImageUrl, coverImageAssetId, coverImageExternalUrl, status, parentId, sortOrder, locale, publishedAt, createdAt, updatedAt, mdx, frontmatterJson, seoJson
960
985
  */
961
986
  fields?: string;
962
987
  };
@@ -990,7 +1015,7 @@ type GetManageContentsParams = {
990
1015
  */
991
1016
  offset?: number | null;
992
1017
  /**
993
- * 取得するフィールド(カンマ区切り)。指定可能: id, collectionId, slug, title, description, summary, coverImageUrl, status, parentId, sortOrder, locale, publishedAt, createdAt, updatedAt
1018
+ * 取得するフィールド(カンマ区切り)。指定可能: id, collectionId, slug, title, description, summary, coverImageUrl, coverImageAssetId, coverImageExternalUrl, status, parentId, sortOrder, locale, publishedAt, createdAt, updatedAt
994
1019
  */
995
1020
  fields?: string;
996
1021
  };
@@ -1004,7 +1029,7 @@ type GetManageContentsParams = {
1004
1029
  */
1005
1030
  type GetManageDataTypeSlugIdParams = {
1006
1031
  /**
1007
- * 取得するフィールド(カンマ区切り)。指定可能: id, dataTypeId, dataJson, status, sortOrder, createdAt, updatedAt
1032
+ * 取得するフィールド(カンマ区切り)。指定可能: id, dataTypeId, dataJson, aiSummary, status, sortOrder, createdAt, updatedAt
1008
1033
  */
1009
1034
  fields?: string;
1010
1035
  };
@@ -1083,7 +1108,7 @@ type GetManageDataTypeSlugParams = {
1083
1108
  */
1084
1109
  offset?: number | null;
1085
1110
  /**
1086
- * 取得するエントリフィールド(カンマ区切り)。指定可能: id, dataTypeId, dataJson, status, sortOrder, createdAt, updatedAt
1111
+ * 取得するエントリフィールド(カンマ区切り)。指定可能: id, dataTypeId, dataJson, aiSummary, status, sortOrder, createdAt, updatedAt
1087
1112
  */
1088
1113
  fields?: string;
1089
1114
  };
@@ -1419,6 +1444,38 @@ interface SdkAnalyticsDailyListResponse {
1419
1444
  metrics: SdkAnalyticsDailyMetric[];
1420
1445
  }
1421
1446
 
1447
+ /**
1448
+ * Generated by orval v8.4.0 🍺
1449
+ * Do not edit manually.
1450
+ * CMX SDK API
1451
+ * CMX SDK API(コンテンツ配信+管理)
1452
+ * OpenAPI spec version: 1.0.0
1453
+ */
1454
+ type SdkBugSeverity = typeof SdkBugSeverity[keyof typeof SdkBugSeverity];
1455
+ declare const SdkBugSeverity: {
1456
+ readonly low: "low";
1457
+ readonly medium: "medium";
1458
+ readonly high: "high";
1459
+ readonly critical: "critical";
1460
+ };
1461
+
1462
+ /**
1463
+ * Generated by orval v8.4.0 🍺
1464
+ * Do not edit manually.
1465
+ * CMX SDK API
1466
+ * CMX SDK API(コンテンツ配信+管理)
1467
+ * OpenAPI spec version: 1.0.0
1468
+ */
1469
+
1470
+ interface SdkBugReportResponse {
1471
+ id: string;
1472
+ title: string;
1473
+ severity: SdkBugSeverity;
1474
+ status: string;
1475
+ githubIssueUrl: string | null;
1476
+ createdAt: string;
1477
+ }
1478
+
1422
1479
  /**
1423
1480
  * Generated by orval v8.4.0 🍺
1424
1481
  * Do not edit manually.
@@ -1577,7 +1634,13 @@ interface SdkContentDetail {
1577
1634
  title: string;
1578
1635
  description: string | null;
1579
1636
  summary: string | null;
1637
+ /**
1638
+ * カバー画像URL(deprecated: coverImageAssetId を使用)
1639
+ * @deprecated
1640
+ */
1580
1641
  coverImageUrl: string | null;
1642
+ coverImageAssetId: string | null;
1643
+ coverImageExternalUrl: string | null;
1581
1644
  frontmatterJson: SdkContentDetailFrontmatterJson;
1582
1645
  seoJson: SdkContentDetailSeoJson;
1583
1646
  status: ContentStatus;
@@ -1605,7 +1668,13 @@ interface SdkContentItem {
1605
1668
  title: string;
1606
1669
  description: string | null;
1607
1670
  summary: string | null;
1671
+ /**
1672
+ * カバー画像URL(deprecated: coverImageAssetId を使用)
1673
+ * @deprecated
1674
+ */
1608
1675
  coverImageUrl: string | null;
1676
+ coverImageAssetId: string | null;
1677
+ coverImageExternalUrl: string | null;
1609
1678
  status: ContentStatus;
1610
1679
  parentId: string | null;
1611
1680
  sortOrder: number;
@@ -1677,6 +1746,51 @@ interface SdkContentReferencesResponse {
1677
1746
  references: SdkContentReferencesResponseReferencesItem[];
1678
1747
  }
1679
1748
 
1749
+ /**
1750
+ * Generated by orval v8.4.0 🍺
1751
+ * Do not edit manually.
1752
+ * CMX SDK API
1753
+ * CMX SDK API(コンテンツ配信+管理)
1754
+ * OpenAPI spec version: 1.0.0
1755
+ */
1756
+ /**
1757
+ * 環境情報
1758
+ */
1759
+ type SdkCreateBugReportBodyEnvironmentInfo = {
1760
+ [key: string]: unknown | null;
1761
+ };
1762
+
1763
+ /**
1764
+ * Generated by orval v8.4.0 🍺
1765
+ * Do not edit manually.
1766
+ * CMX SDK API
1767
+ * CMX SDK API(コンテンツ配信+管理)
1768
+ * OpenAPI spec version: 1.0.0
1769
+ */
1770
+
1771
+ interface SdkCreateBugReportBody {
1772
+ /**
1773
+ * バグの概要タイトル
1774
+ * @minLength 1
1775
+ * @maxLength 500
1776
+ */
1777
+ title: string;
1778
+ /**
1779
+ * バグの詳細説明
1780
+ * @minLength 1
1781
+ */
1782
+ description: string;
1783
+ severity?: SdkBugSeverity & unknown;
1784
+ /** 再現手順 */
1785
+ stepsToReproduce?: string;
1786
+ /** エラーメッセージ全文 */
1787
+ errorMessage?: string;
1788
+ /** 環境情報 */
1789
+ environmentInfo?: SdkCreateBugReportBodyEnvironmentInfo;
1790
+ /** 実行した CLI コマンド */
1791
+ cliCommand?: string;
1792
+ }
1793
+
1680
1794
  /**
1681
1795
  * Generated by orval v8.4.0 🍺
1682
1796
  * Do not edit manually.
@@ -1778,6 +1892,8 @@ interface SdkCreateEntryRequest {
1778
1892
  dataJson: SdkCreateEntryRequestDataJson;
1779
1893
  /** データエントリのステータス */
1780
1894
  status?: SdkCreateEntryRequestStatus;
1895
+ /** AI向けサマリ */
1896
+ aiSummary?: string | null;
1781
1897
  }
1782
1898
 
1783
1899
  /**
@@ -1877,6 +1993,7 @@ interface SdkDataEntryResponse {
1877
1993
  id: string;
1878
1994
  dataTypeId: string;
1879
1995
  dataJson: SdkDataEntryResponseDataJson;
1996
+ aiSummary: string | null;
1880
1997
  /** データエントリのステータス */
1881
1998
  status: SdkDataEntryResponseStatus;
1882
1999
  sortOrder: number;
@@ -2339,6 +2456,8 @@ interface SdkUpdateEntryRequest {
2339
2456
  /** データエントリのステータス */
2340
2457
  status?: SdkUpdateEntryRequestStatus;
2341
2458
  sortOrder?: number;
2459
+ /** AI向けサマリ */
2460
+ aiSummary?: string | null;
2342
2461
  }
2343
2462
 
2344
2463
  /**
@@ -2451,8 +2570,15 @@ interface UpdateContentRequest {
2451
2570
  * @maxLength 1000
2452
2571
  */
2453
2572
  summary?: string | null;
2454
- /** カバー画像URL */
2573
+ /**
2574
+ * カバー画像URL(deprecated: coverImageAssetId を使用)
2575
+ * @deprecated
2576
+ */
2455
2577
  coverImageUrl?: string | null;
2578
+ /** カバー画像アセットID */
2579
+ coverImageAssetId?: string | null;
2580
+ /** カバー画像外部URL(アセットシステム外の画像) */
2581
+ coverImageExternalUrl?: string | null;
2456
2582
  }
2457
2583
 
2458
2584
  /**
@@ -2515,6 +2641,10 @@ type getCollectionsSlugContentsResponse200 = {
2515
2641
  data: CollectionContentsResponse;
2516
2642
  status: 200;
2517
2643
  };
2644
+ type getCollectionsSlugContentsResponse400 = {
2645
+ data: ErrorResponse;
2646
+ status: 400;
2647
+ };
2518
2648
  type getCollectionsSlugContentsResponse401 = {
2519
2649
  data: ErrorResponse;
2520
2650
  status: 401;
@@ -2530,7 +2660,7 @@ type getCollectionsSlugContentsResponse500 = {
2530
2660
  type getCollectionsSlugContentsResponseSuccess = (getCollectionsSlugContentsResponse200) & {
2531
2661
  headers: Headers;
2532
2662
  };
2533
- type getCollectionsSlugContentsResponseError = (getCollectionsSlugContentsResponse401 | getCollectionsSlugContentsResponse404 | getCollectionsSlugContentsResponse500) & {
2663
+ type getCollectionsSlugContentsResponseError = (getCollectionsSlugContentsResponse400 | getCollectionsSlugContentsResponse401 | getCollectionsSlugContentsResponse404 | getCollectionsSlugContentsResponse500) & {
2534
2664
  headers: Headers;
2535
2665
  };
2536
2666
  type getCollectionsSlugContentsResponse = (getCollectionsSlugContentsResponseSuccess | getCollectionsSlugContentsResponseError);
@@ -3149,8 +3279,8 @@ declare const componentSchemas: {
3149
3279
  assetId: z.ZodString;
3150
3280
  alt: z.ZodOptional<z.ZodString>;
3151
3281
  size: z.ZodDefault<z.ZodEnum<{
3152
- thumbnail: "thumbnail";
3153
3282
  medium: "medium";
3283
+ thumbnail: "thumbnail";
3154
3284
  large: "large";
3155
3285
  original: "original";
3156
3286
  }>>;
@@ -3382,4 +3512,4 @@ declare function renderMdx(mdx: string, references?: References, options?: Rende
3382
3512
  */
3383
3513
  declare function renderMdxPreview(mdx: string, additionalComponents?: Record<string, React.ComponentType<any>>): Promise<React.ReactElement>;
3384
3514
 
3385
- export { type ApiResponse, type AssetReference, type AssetReferenceVariants, BlogCard, Button, CACHE_TAGS, Callout, CmxApiError, type CollectionConfig, type CollectionConfigDefaults, type CollectionContentDetailResponse, type CollectionContentsOptions, type CollectionContentsResponse, type CollectionListResponse, type CollectionResponse, CollectionType, type ComponentDefinition, type ComponentName, type ContentReference, ContentStatus, type CreateCollectionRequest, type CreateContentRequest, type CreateDataTypeRequest, type CreateFormDefinitionRequest, type DataEntriesOptions, type DataEntryDetailResponse, type DataEntryItem, type DataListResponse, type DataTypeConfig, type DataTypeResponse, type DeleteManageContentsIdParams, type DeleteManageDataTypeSlugIdParams, Embed, type ErrorResponse, type ErrorResponseDetails, type FetchOptions, type FieldDefinition, type FieldOptions, type FieldOptionsChoicesItem, FieldType, type FormDefinitionResponse, type FormDefinitionResponseConfigJson, type GetAnalyticsDailyParams, type GetCollectionsSlugContentsParams, GetCollectionsSlugContentsSortBy, GetCollectionsSlugContentsSortOrder, type GetDataTypeSlugParams, GetDataTypeSlugSortBy, GetDataTypeSlugSortOrder, type GetManageCollectionPresets200, type GetManageCollectionPresetsParams, GetManageCollectionPresetsType, type GetManageContentsIdParams, type GetManageContentsParams, type GetManageDataTypeSlugIdParams, type GetManageDataTypeSlugParams, GetManageDataTypeSlugSortBy, GetManageDataTypeSlugSortOrder, GetManageDataTypeSlugStatus, type GetPreviewToken200, type GetPreviewToken200Collection, type GetPreviewToken200Content, type GetPreviewToken200References, type GetPreviewToken200ReferencesAssets, type GetPreviewToken200ReferencesAssetsVariants, type GetPreviewToken200ReferencesContents, Image, type PreviewResponse, type PublicCollectionInfo, type PublicContentDetail, type PublicContentListItem, type PublicContentParent, type PublicFetcherOptions, type PublicSubmissionRequest, type PublicSubmissionRequestData, type PublicSubmissionResponse, type ReferenceField, ReferenceFieldReferenceType, type References, type ReferencesAssets, type ReferencesContents, type RenderOptions, type RenderResult, type ResolvedReferences, type RevalidationConfig, type SchemaCollection, type SchemaDataType, type SchemaFieldDefinition, type SchemaFieldOption, type SchemaFieldOptionChoicesItem, type SchemaFormDefinition, type SchemaResponse, type SdkAddCollectionDataTypeRequest, SdkAddCollectionDataTypeRequestReferenceType, type SdkAnalyticsDailyListResponse, type SdkAnalyticsDailyMetric, type SdkAnalyticsDailyMetricRawJson, type SdkCollectionDataTypeResponse, type SdkComponentDefinition, type SdkComponentDefinitionPropsSchema, type SdkComponentProp, type SdkComponentSuccessResponse, type SdkComponentSyncRequest, type SdkContentDetail, type SdkContentDetailFrontmatterJson, type SdkContentDetailSeoJson, type SdkContentDetailSeoJsonStructuredData, type SdkContentItem, type SdkContentListResponse, type SdkContentReferencesResponse, type SdkContentReferencesResponseReferencesItem, type SdkContentReferencesResponseReferencesItemDataEntriesItem, type SdkContentReferencesResponseReferencesItemDataEntriesItemData, type SdkCreateContentResponse, type SdkCreateContentResponseWarningsItem, SdkCreateContentResponseWarningsItemIssueType, SdkCreateContentResponseWarningsItemTargetType, type SdkCreateEntryRequest, type SdkCreateEntryRequestDataJson, SdkCreateEntryRequestStatus, type SdkCustomComponentResponse, type SdkCustomComponentResponsePropsSchema, SdkCustomComponentResponseStatus, type SdkCustomComponentsListResponse, type SdkDataEntriesListResponse, type SdkDataEntryDeletionImpactItem, type SdkDataEntryDeletionImpactResponse, type SdkDataEntryDetailResponse, type SdkDataEntryResponse, type SdkDataEntryResponseDataJson, SdkDataEntryResponseStatus, type SdkDataTypeInfo, type SdkDeleteCollectionDataTypeResponse, type SdkDeleteCollectionResponse, type SdkDeleteContentResponse, type SdkDeleteDataEntryResponse, type SdkDeleteDataTypeResponse, type SdkDeleteFormDefinitionResponse, type SdkDocResponse, SdkDocType, type SdkLinkExistingDataTypeRequest, SdkLinkExistingDataTypeRequestReferenceType, type SdkPreset, SdkPresetReferenceType, type SdkPublishContentResponse, type SdkRequestReviewResponse, type SdkRuntimeSettingsResponse, type SdkRuntimeSettingsResponseSettings, type SdkRuntimeSettingsResponseSettingsAnalytics, SdkRuntimeSettingsResponseSettingsAnalyticsProvider, type SdkRuntimeSettingsResponseSettingsAnalyticsTracking, type SdkRuntimeSettingsResponseSettingsRevalidation, type SdkSetContentReferencesRequest, type SdkSetContentReferencesRequestReferencesItem, type SdkSetContentReferencesResponse, type SdkUpdateContentResponse, type SdkUpdateContentResponseWarningsItem, SdkUpdateContentResponseWarningsItemIssueType, SdkUpdateContentResponseWarningsItemTargetType, type SdkUpdateEntryRequest, type SdkUpdateEntryRequestDataJson, SdkUpdateEntryRequestStatus, type SdkUpsertDocBody, type SdkValidateContentResponse, type SdkValidateContentResponseIssuesItem, SdkValidateContentResponseIssuesItemIssueType, SdkValidateContentResponseIssuesItemTargetType, type UpdateCollectionRequest, type UpdateContentRequest, type UpdateDataTypeRequest, type UpdateFormDefinitionRequest, type UpdateFormDefinitionRequestConfigJson, type ValidationError, type ValidationResult, basicComponents, componentCatalog, componentSchemas, customComponents, fetchAnalyticsDailyMetrics, fetchRuntimeSettings, getAnalyticsDaily, getCatalogForAI, getCollectionContentDetail, getCollectionContentDetailOrThrow, getCollectionContents, getCollectionContentsOrThrow, getCollections, getCollectionsSlugContents, getCollectionsSlugContentsContentSlug, getComponentsByCategory, getComponentsWithReferences, getDataEntries, getDataEntriesOrThrow, getDataEntry, getDataEntryOrThrow, getDataTypeSlug, getGetAnalyticsDailyUrl, getGetCollectionsSlugContentsContentSlugUrl, getGetCollectionsSlugContentsUrl, getGetDataTypeSlugUrl, getGetPreviewTokenUrl, getGetRuntimeSettingsUrl, getPreviewByToken, getPreviewToken, getRuntimeSettings, getSchema, getSdkApiBaseUrl, getSdkApiToken, isValidComponent, markdownComponents, mdxComponents, quickValidateMdx, renderMdx, renderMdxPreview, sdkCustomInstance, sdkFetchWithTags, sdkFetcher, sdkPostFetcher, submitFormData, validateComponentProps, validateMdx };
3515
+ export { type ApiResponse, type AssetReference, type AssetReferenceVariants, BlogCard, Button, CACHE_TAGS, Callout, CmxApiError, type CollectionConfig, type CollectionConfigDefaults, type CollectionContentDetailResponse, type CollectionContentsOptions, type CollectionContentsResponse, type CollectionListResponse, type CollectionResponse, CollectionType, type ComponentDefinition, type ComponentName, type ContentReference, ContentStatus, type CreateCollectionRequest, type CreateContentRequest, type CreateDataTypeRequest, type CreateFormDefinitionRequest, type DataEntriesOptions, type DataEntryDetailResponse, type DataEntryItem, type DataListResponse, type DataTypeConfig, type DataTypeResponse, type DeleteManageContentsIdParams, type DeleteManageDataTypeSlugIdParams, Embed, type ErrorResponse, type ErrorResponseDetails, type FetchOptions, type FieldDefinition, type FieldOptions, type FieldOptionsChoicesItem, FieldType, type FormDefinitionResponse, type FormDefinitionResponseConfigJson, type GetAnalyticsDailyParams, type GetCollectionsSlugContentsParams, GetCollectionsSlugContentsSortBy, GetCollectionsSlugContentsSortOrder, type GetDataTypeSlugParams, GetDataTypeSlugSortBy, GetDataTypeSlugSortOrder, type GetManageCollectionPresets200, type GetManageCollectionPresetsParams, GetManageCollectionPresetsType, type GetManageContentsIdParams, type GetManageContentsParams, type GetManageDataTypeSlugIdParams, type GetManageDataTypeSlugParams, GetManageDataTypeSlugSortBy, GetManageDataTypeSlugSortOrder, GetManageDataTypeSlugStatus, type GetPreviewToken200, type GetPreviewToken200Collection, type GetPreviewToken200Content, type GetPreviewToken200References, type GetPreviewToken200ReferencesAssets, type GetPreviewToken200ReferencesAssetsVariants, type GetPreviewToken200ReferencesContents, Image, type PreviewResponse, type PublicCollectionInfo, type PublicContentDetail, type PublicContentListItem, type PublicContentParent, type PublicFetcherOptions, type PublicSubmissionRequest, type PublicSubmissionRequestData, type PublicSubmissionResponse, type ReferenceField, ReferenceFieldReferenceType, type References, type ReferencesAssets, type ReferencesContents, type RenderOptions, type RenderResult, type ResolvedReferences, type RevalidationConfig, type SchemaCollection, type SchemaDataType, type SchemaFieldDefinition, type SchemaFieldOption, type SchemaFieldOptionChoicesItem, type SchemaFormDefinition, type SchemaResponse, type SdkAddCollectionDataTypeRequest, SdkAddCollectionDataTypeRequestReferenceType, type SdkAnalyticsDailyListResponse, type SdkAnalyticsDailyMetric, type SdkAnalyticsDailyMetricRawJson, type SdkBugReportResponse, SdkBugSeverity, type SdkCollectionDataTypeResponse, type SdkComponentDefinition, type SdkComponentDefinitionPropsSchema, type SdkComponentProp, type SdkComponentSuccessResponse, type SdkComponentSyncRequest, type SdkContentDetail, type SdkContentDetailFrontmatterJson, type SdkContentDetailSeoJson, type SdkContentDetailSeoJsonStructuredData, type SdkContentItem, type SdkContentListResponse, type SdkContentReferencesResponse, type SdkContentReferencesResponseReferencesItem, type SdkContentReferencesResponseReferencesItemDataEntriesItem, type SdkContentReferencesResponseReferencesItemDataEntriesItemData, type SdkCreateBugReportBody, type SdkCreateBugReportBodyEnvironmentInfo, type SdkCreateContentResponse, type SdkCreateContentResponseWarningsItem, SdkCreateContentResponseWarningsItemIssueType, SdkCreateContentResponseWarningsItemTargetType, type SdkCreateEntryRequest, type SdkCreateEntryRequestDataJson, SdkCreateEntryRequestStatus, type SdkCustomComponentResponse, type SdkCustomComponentResponsePropsSchema, SdkCustomComponentResponseStatus, type SdkCustomComponentsListResponse, type SdkDataEntriesListResponse, type SdkDataEntryDeletionImpactItem, type SdkDataEntryDeletionImpactResponse, type SdkDataEntryDetailResponse, type SdkDataEntryResponse, type SdkDataEntryResponseDataJson, SdkDataEntryResponseStatus, type SdkDataTypeInfo, type SdkDeleteCollectionDataTypeResponse, type SdkDeleteCollectionResponse, type SdkDeleteContentResponse, type SdkDeleteDataEntryResponse, type SdkDeleteDataTypeResponse, type SdkDeleteFormDefinitionResponse, type SdkDocResponse, SdkDocType, type SdkLinkExistingDataTypeRequest, SdkLinkExistingDataTypeRequestReferenceType, type SdkPreset, SdkPresetReferenceType, type SdkPublishContentResponse, type SdkRequestReviewResponse, type SdkRuntimeSettingsResponse, type SdkRuntimeSettingsResponseSettings, type SdkRuntimeSettingsResponseSettingsAnalytics, SdkRuntimeSettingsResponseSettingsAnalyticsProvider, type SdkRuntimeSettingsResponseSettingsAnalyticsTracking, type SdkRuntimeSettingsResponseSettingsRevalidation, type SdkSetContentReferencesRequest, type SdkSetContentReferencesRequestReferencesItem, type SdkSetContentReferencesResponse, type SdkUpdateContentResponse, type SdkUpdateContentResponseWarningsItem, SdkUpdateContentResponseWarningsItemIssueType, SdkUpdateContentResponseWarningsItemTargetType, type SdkUpdateEntryRequest, type SdkUpdateEntryRequestDataJson, SdkUpdateEntryRequestStatus, type SdkUpsertDocBody, type SdkValidateContentResponse, type SdkValidateContentResponseIssuesItem, SdkValidateContentResponseIssuesItemIssueType, SdkValidateContentResponseIssuesItemTargetType, type UpdateCollectionRequest, type UpdateContentRequest, type UpdateDataTypeRequest, type UpdateFormDefinitionRequest, type UpdateFormDefinitionRequestConfigJson, type ValidationError, type ValidationResult, basicComponents, componentCatalog, componentSchemas, customComponents, fetchAnalyticsDailyMetrics, fetchRuntimeSettings, getAnalyticsDaily, getCatalogForAI, getCollectionContentDetail, getCollectionContentDetailOrThrow, getCollectionContents, getCollectionContentsOrThrow, getCollections, getCollectionsSlugContents, getCollectionsSlugContentsContentSlug, getComponentsByCategory, getComponentsWithReferences, getDataEntries, getDataEntriesOrThrow, getDataEntry, getDataEntryOrThrow, getDataTypeSlug, getGetAnalyticsDailyUrl, getGetCollectionsSlugContentsContentSlugUrl, getGetCollectionsSlugContentsUrl, getGetDataTypeSlugUrl, getGetPreviewTokenUrl, getGetRuntimeSettingsUrl, getPreviewByToken, getPreviewToken, getRuntimeSettings, getSchema, getSdkApiBaseUrl, getSdkApiToken, isValidComponent, markdownComponents, mdxComponents, quickValidateMdx, renderMdx, renderMdxPreview, sdkCustomInstance, sdkFetchWithTags, sdkFetcher, sdkPostFetcher, submitFormData, validateComponentProps, validateMdx };