cmx-sdk 0.2.19 → 0.2.21
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/add-studio-QWLCCO5M.js +0 -0
- package/dist/chunk-7TDMLYBI.js +0 -0
- package/dist/chunk-EDXXR5BE.js +0 -0
- package/dist/chunk-FPQYL5GE.js +0 -0
- package/dist/chunk-IIQLQIDP.js +0 -0
- package/dist/chunk-NZQ6SBFS.js +0 -0
- package/dist/chunk-Y3S3K6M3.js +0 -0
- package/dist/chunk-ZBI5OLBT.js +0 -0
- package/dist/index.d.ts +542 -2
- package/dist/index.js +132 -91
- package/dist/index.js.map +1 -1
- package/dist/init-FPFDEEXW.js +0 -0
- package/dist/interactive-menu-5NJTB5LJ.js +0 -0
- package/dist/report-bug-PT7NNFNN.js +0 -0
- package/dist/studio-HAS6DYLO.js +0 -0
- package/dist/styles/cmx-mdx.css +17 -15
- package/dist/update-sdk-ZXMWQF3I.js +0 -0
- package/dist/update-studio-TWCYSYIS.js +0 -0
- package/package.json +16 -16
|
File without changes
|
package/dist/chunk-7TDMLYBI.js
CHANGED
|
File without changes
|
package/dist/chunk-EDXXR5BE.js
CHANGED
|
File without changes
|
package/dist/chunk-FPQYL5GE.js
CHANGED
|
File without changes
|
package/dist/chunk-IIQLQIDP.js
CHANGED
|
File without changes
|
package/dist/chunk-NZQ6SBFS.js
CHANGED
|
File without changes
|
package/dist/chunk-Y3S3K6M3.js
CHANGED
|
File without changes
|
package/dist/chunk-ZBI5OLBT.js
CHANGED
|
File without changes
|
package/dist/index.d.ts
CHANGED
|
@@ -618,6 +618,75 @@ interface CreateFormDefinitionRequest {
|
|
|
618
618
|
enabled?: boolean;
|
|
619
619
|
}
|
|
620
620
|
|
|
621
|
+
/**
|
|
622
|
+
* Generated by orval v8.4.0 🍺
|
|
623
|
+
* Do not edit manually.
|
|
624
|
+
* CMX SDK API
|
|
625
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
626
|
+
* OpenAPI spec version: 1.0.0
|
|
627
|
+
*/
|
|
628
|
+
/**
|
|
629
|
+
* 投稿ステータス
|
|
630
|
+
*/
|
|
631
|
+
type CreateSocialPostRequestStatus = typeof CreateSocialPostRequestStatus[keyof typeof CreateSocialPostRequestStatus];
|
|
632
|
+
declare const CreateSocialPostRequestStatus: {
|
|
633
|
+
readonly draft: "draft";
|
|
634
|
+
readonly scheduled: "scheduled";
|
|
635
|
+
readonly posted: "posted";
|
|
636
|
+
readonly failed: "failed";
|
|
637
|
+
};
|
|
638
|
+
|
|
639
|
+
/**
|
|
640
|
+
* Generated by orval v8.4.0 🍺
|
|
641
|
+
* Do not edit manually.
|
|
642
|
+
* CMX SDK API
|
|
643
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
644
|
+
* OpenAPI spec version: 1.0.0
|
|
645
|
+
*/
|
|
646
|
+
type CreateSocialPostRequestTargetsItemPlatformMeta = {
|
|
647
|
+
[key: string]: unknown | null;
|
|
648
|
+
};
|
|
649
|
+
|
|
650
|
+
/**
|
|
651
|
+
* Generated by orval v8.4.0 🍺
|
|
652
|
+
* Do not edit manually.
|
|
653
|
+
* CMX SDK API
|
|
654
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
655
|
+
* OpenAPI spec version: 1.0.0
|
|
656
|
+
*/
|
|
657
|
+
|
|
658
|
+
type CreateSocialPostRequestTargetsItem = {
|
|
659
|
+
/** SNSアカウントID */
|
|
660
|
+
socialAccountId: string;
|
|
661
|
+
body?: string | null;
|
|
662
|
+
link?: string | null;
|
|
663
|
+
hashtags?: string[] | null;
|
|
664
|
+
scheduledAt?: Date | null;
|
|
665
|
+
platformMeta?: CreateSocialPostRequestTargetsItemPlatformMeta;
|
|
666
|
+
};
|
|
667
|
+
|
|
668
|
+
/**
|
|
669
|
+
* Generated by orval v8.4.0 🍺
|
|
670
|
+
* Do not edit manually.
|
|
671
|
+
* CMX SDK API
|
|
672
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
673
|
+
* OpenAPI spec version: 1.0.0
|
|
674
|
+
*/
|
|
675
|
+
|
|
676
|
+
interface CreateSocialPostRequest {
|
|
677
|
+
/** 関連コンテンツID(任意) */
|
|
678
|
+
contentId?: string | null;
|
|
679
|
+
body: string;
|
|
680
|
+
mediaAssetIds?: string[];
|
|
681
|
+
link?: string | null;
|
|
682
|
+
hashtags?: string[];
|
|
683
|
+
scheduledAt?: Date | null;
|
|
684
|
+
/** 投稿ステータス */
|
|
685
|
+
status?: CreateSocialPostRequestStatus;
|
|
686
|
+
/** 配信ターゲット */
|
|
687
|
+
targets?: CreateSocialPostRequestTargetsItem[];
|
|
688
|
+
}
|
|
689
|
+
|
|
621
690
|
/**
|
|
622
691
|
* Generated by orval v8.4.0 🍺
|
|
623
692
|
* Do not edit manually.
|
|
@@ -1113,6 +1182,48 @@ type GetManageDataTypeSlugParams = {
|
|
|
1113
1182
|
fields?: string;
|
|
1114
1183
|
};
|
|
1115
1184
|
|
|
1185
|
+
/**
|
|
1186
|
+
* Generated by orval v8.4.0 🍺
|
|
1187
|
+
* Do not edit manually.
|
|
1188
|
+
* CMX SDK API
|
|
1189
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
1190
|
+
* OpenAPI spec version: 1.0.0
|
|
1191
|
+
*/
|
|
1192
|
+
type GetManageSocialPostsStatus = typeof GetManageSocialPostsStatus[keyof typeof GetManageSocialPostsStatus];
|
|
1193
|
+
declare const GetManageSocialPostsStatus: {
|
|
1194
|
+
readonly draft: "draft";
|
|
1195
|
+
readonly scheduled: "scheduled";
|
|
1196
|
+
readonly posted: "posted";
|
|
1197
|
+
readonly failed: "failed";
|
|
1198
|
+
};
|
|
1199
|
+
|
|
1200
|
+
/**
|
|
1201
|
+
* Generated by orval v8.4.0 🍺
|
|
1202
|
+
* Do not edit manually.
|
|
1203
|
+
* CMX SDK API
|
|
1204
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
1205
|
+
* OpenAPI spec version: 1.0.0
|
|
1206
|
+
*/
|
|
1207
|
+
|
|
1208
|
+
type GetManageSocialPostsParams = {
|
|
1209
|
+
/**
|
|
1210
|
+
* 投稿ステータス
|
|
1211
|
+
*/
|
|
1212
|
+
status?: GetManageSocialPostsStatus;
|
|
1213
|
+
contentId?: string;
|
|
1214
|
+
scheduledFrom?: Date;
|
|
1215
|
+
scheduledTo?: Date;
|
|
1216
|
+
/**
|
|
1217
|
+
* @minimum 1
|
|
1218
|
+
* @maximum 100
|
|
1219
|
+
*/
|
|
1220
|
+
limit?: number;
|
|
1221
|
+
/**
|
|
1222
|
+
* @minimum 0
|
|
1223
|
+
*/
|
|
1224
|
+
offset?: number | null;
|
|
1225
|
+
};
|
|
1226
|
+
|
|
1116
1227
|
/**
|
|
1117
1228
|
* Generated by orval v8.4.0 🍺
|
|
1118
1229
|
* Do not edit manually.
|
|
@@ -1142,6 +1253,15 @@ type GetPreviewToken200Content = {
|
|
|
1142
1253
|
mdx: string;
|
|
1143
1254
|
status: string;
|
|
1144
1255
|
environment: string;
|
|
1256
|
+
/**
|
|
1257
|
+
* カバー画像URL(deprecated: coverImageAssetId を使用)
|
|
1258
|
+
* @deprecated
|
|
1259
|
+
*/
|
|
1260
|
+
coverImageUrl: string | null;
|
|
1261
|
+
/** カバー画像アセットID */
|
|
1262
|
+
coverImageAssetId: string | null;
|
|
1263
|
+
/** カバー画像外部URL */
|
|
1264
|
+
coverImageExternalUrl: string | null;
|
|
1145
1265
|
};
|
|
1146
1266
|
|
|
1147
1267
|
/**
|
|
@@ -2141,6 +2261,17 @@ interface SdkDeleteFormDefinitionResponse {
|
|
|
2141
2261
|
success: boolean;
|
|
2142
2262
|
}
|
|
2143
2263
|
|
|
2264
|
+
/**
|
|
2265
|
+
* Generated by orval v8.4.0 🍺
|
|
2266
|
+
* Do not edit manually.
|
|
2267
|
+
* CMX SDK API
|
|
2268
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2269
|
+
* OpenAPI spec version: 1.0.0
|
|
2270
|
+
*/
|
|
2271
|
+
interface SdkDeleteSocialPostResponse {
|
|
2272
|
+
success: boolean;
|
|
2273
|
+
}
|
|
2274
|
+
|
|
2144
2275
|
/**
|
|
2145
2276
|
* Generated by orval v8.4.0 🍺
|
|
2146
2277
|
* Do not edit manually.
|
|
@@ -2529,6 +2660,359 @@ interface SdkValidateContentResponse {
|
|
|
2529
2660
|
issues: SdkValidateContentResponseIssuesItem[];
|
|
2530
2661
|
}
|
|
2531
2662
|
|
|
2663
|
+
/**
|
|
2664
|
+
* Generated by orval v8.4.0 🍺
|
|
2665
|
+
* Do not edit manually.
|
|
2666
|
+
* CMX SDK API
|
|
2667
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2668
|
+
* OpenAPI spec version: 1.0.0
|
|
2669
|
+
*/
|
|
2670
|
+
/**
|
|
2671
|
+
* SNSプラットフォーム
|
|
2672
|
+
*/
|
|
2673
|
+
type SocialAccountResponsePlatform = typeof SocialAccountResponsePlatform[keyof typeof SocialAccountResponsePlatform];
|
|
2674
|
+
declare const SocialAccountResponsePlatform: {
|
|
2675
|
+
readonly x: "x";
|
|
2676
|
+
readonly instagram: "instagram";
|
|
2677
|
+
readonly linkedin: "linkedin";
|
|
2678
|
+
readonly threads: "threads";
|
|
2679
|
+
readonly bluesky: "bluesky";
|
|
2680
|
+
readonly pinterest: "pinterest";
|
|
2681
|
+
readonly tiktok: "tiktok";
|
|
2682
|
+
readonly youtube: "youtube";
|
|
2683
|
+
readonly facebook: "facebook";
|
|
2684
|
+
readonly note: "note";
|
|
2685
|
+
};
|
|
2686
|
+
|
|
2687
|
+
/**
|
|
2688
|
+
* Generated by orval v8.4.0 🍺
|
|
2689
|
+
* Do not edit manually.
|
|
2690
|
+
* CMX SDK API
|
|
2691
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2692
|
+
* OpenAPI spec version: 1.0.0
|
|
2693
|
+
*/
|
|
2694
|
+
/**
|
|
2695
|
+
* アカウントステータス
|
|
2696
|
+
*/
|
|
2697
|
+
type SocialAccountResponseStatus = typeof SocialAccountResponseStatus[keyof typeof SocialAccountResponseStatus];
|
|
2698
|
+
declare const SocialAccountResponseStatus: {
|
|
2699
|
+
readonly active: "active";
|
|
2700
|
+
readonly expired: "expired";
|
|
2701
|
+
readonly revoked: "revoked";
|
|
2702
|
+
readonly setup_required: "setup_required";
|
|
2703
|
+
};
|
|
2704
|
+
|
|
2705
|
+
/**
|
|
2706
|
+
* Generated by orval v8.4.0 🍺
|
|
2707
|
+
* Do not edit manually.
|
|
2708
|
+
* CMX SDK API
|
|
2709
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2710
|
+
* OpenAPI spec version: 1.0.0
|
|
2711
|
+
*/
|
|
2712
|
+
|
|
2713
|
+
interface SocialAccountResponse {
|
|
2714
|
+
id: string;
|
|
2715
|
+
/** SNSプラットフォーム */
|
|
2716
|
+
platform: SocialAccountResponsePlatform;
|
|
2717
|
+
accountName: string;
|
|
2718
|
+
accountIdentifier: string;
|
|
2719
|
+
hasCredentials: boolean;
|
|
2720
|
+
/** アカウントステータス */
|
|
2721
|
+
status: SocialAccountResponseStatus;
|
|
2722
|
+
postCount?: number;
|
|
2723
|
+
createdAt: Date;
|
|
2724
|
+
updatedAt: Date;
|
|
2725
|
+
}
|
|
2726
|
+
|
|
2727
|
+
/**
|
|
2728
|
+
* Generated by orval v8.4.0 🍺
|
|
2729
|
+
* Do not edit manually.
|
|
2730
|
+
* CMX SDK API
|
|
2731
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2732
|
+
* OpenAPI spec version: 1.0.0
|
|
2733
|
+
*/
|
|
2734
|
+
|
|
2735
|
+
type SocialAccountListResponse = SocialAccountResponse[];
|
|
2736
|
+
|
|
2737
|
+
/**
|
|
2738
|
+
* Generated by orval v8.4.0 🍺
|
|
2739
|
+
* Do not edit manually.
|
|
2740
|
+
* CMX SDK API
|
|
2741
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2742
|
+
* OpenAPI spec version: 1.0.0
|
|
2743
|
+
*/
|
|
2744
|
+
/**
|
|
2745
|
+
* 投稿ステータス
|
|
2746
|
+
*/
|
|
2747
|
+
type SocialPostListItemStatus = typeof SocialPostListItemStatus[keyof typeof SocialPostListItemStatus];
|
|
2748
|
+
declare const SocialPostListItemStatus: {
|
|
2749
|
+
readonly draft: "draft";
|
|
2750
|
+
readonly scheduled: "scheduled";
|
|
2751
|
+
readonly posted: "posted";
|
|
2752
|
+
readonly failed: "failed";
|
|
2753
|
+
};
|
|
2754
|
+
|
|
2755
|
+
/**
|
|
2756
|
+
* Generated by orval v8.4.0 🍺
|
|
2757
|
+
* Do not edit manually.
|
|
2758
|
+
* CMX SDK API
|
|
2759
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2760
|
+
* OpenAPI spec version: 1.0.0
|
|
2761
|
+
*/
|
|
2762
|
+
/**
|
|
2763
|
+
* SNSプラットフォーム
|
|
2764
|
+
*/
|
|
2765
|
+
type SocialPostListItemTargetSummaryPlatformsItem = typeof SocialPostListItemTargetSummaryPlatformsItem[keyof typeof SocialPostListItemTargetSummaryPlatformsItem];
|
|
2766
|
+
declare const SocialPostListItemTargetSummaryPlatformsItem: {
|
|
2767
|
+
readonly x: "x";
|
|
2768
|
+
readonly instagram: "instagram";
|
|
2769
|
+
readonly linkedin: "linkedin";
|
|
2770
|
+
readonly threads: "threads";
|
|
2771
|
+
readonly bluesky: "bluesky";
|
|
2772
|
+
readonly pinterest: "pinterest";
|
|
2773
|
+
readonly tiktok: "tiktok";
|
|
2774
|
+
readonly youtube: "youtube";
|
|
2775
|
+
readonly facebook: "facebook";
|
|
2776
|
+
readonly note: "note";
|
|
2777
|
+
};
|
|
2778
|
+
|
|
2779
|
+
/**
|
|
2780
|
+
* Generated by orval v8.4.0 🍺
|
|
2781
|
+
* Do not edit manually.
|
|
2782
|
+
* CMX SDK API
|
|
2783
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2784
|
+
* OpenAPI spec version: 1.0.0
|
|
2785
|
+
*/
|
|
2786
|
+
type SocialPostListItemTargetSummaryStatusCounts = {
|
|
2787
|
+
[key: string]: number;
|
|
2788
|
+
};
|
|
2789
|
+
|
|
2790
|
+
/**
|
|
2791
|
+
* Generated by orval v8.4.0 🍺
|
|
2792
|
+
* Do not edit manually.
|
|
2793
|
+
* CMX SDK API
|
|
2794
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2795
|
+
* OpenAPI spec version: 1.0.0
|
|
2796
|
+
*/
|
|
2797
|
+
|
|
2798
|
+
type SocialPostListItemTargetSummary = {
|
|
2799
|
+
total: number;
|
|
2800
|
+
platforms: SocialPostListItemTargetSummaryPlatformsItem[];
|
|
2801
|
+
statusCounts?: SocialPostListItemTargetSummaryStatusCounts;
|
|
2802
|
+
};
|
|
2803
|
+
|
|
2804
|
+
/**
|
|
2805
|
+
* Generated by orval v8.4.0 🍺
|
|
2806
|
+
* Do not edit manually.
|
|
2807
|
+
* CMX SDK API
|
|
2808
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2809
|
+
* OpenAPI spec version: 1.0.0
|
|
2810
|
+
*/
|
|
2811
|
+
|
|
2812
|
+
interface SocialPostListItem {
|
|
2813
|
+
id: string;
|
|
2814
|
+
contentId: string | null;
|
|
2815
|
+
contentTitle?: string | null;
|
|
2816
|
+
body: string;
|
|
2817
|
+
link: string | null;
|
|
2818
|
+
hashtags: string[];
|
|
2819
|
+
scheduledAt: Date | null;
|
|
2820
|
+
/** 投稿ステータス */
|
|
2821
|
+
status: SocialPostListItemStatus;
|
|
2822
|
+
targetSummary: SocialPostListItemTargetSummary;
|
|
2823
|
+
createdAt: Date;
|
|
2824
|
+
updatedAt: Date;
|
|
2825
|
+
}
|
|
2826
|
+
|
|
2827
|
+
/**
|
|
2828
|
+
* Generated by orval v8.4.0 🍺
|
|
2829
|
+
* Do not edit manually.
|
|
2830
|
+
* CMX SDK API
|
|
2831
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2832
|
+
* OpenAPI spec version: 1.0.0
|
|
2833
|
+
*/
|
|
2834
|
+
|
|
2835
|
+
interface SocialPostListResponse {
|
|
2836
|
+
posts: SocialPostListItem[];
|
|
2837
|
+
total: number;
|
|
2838
|
+
}
|
|
2839
|
+
|
|
2840
|
+
/**
|
|
2841
|
+
* Generated by orval v8.4.0 🍺
|
|
2842
|
+
* Do not edit manually.
|
|
2843
|
+
* CMX SDK API
|
|
2844
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2845
|
+
* OpenAPI spec version: 1.0.0
|
|
2846
|
+
*/
|
|
2847
|
+
/**
|
|
2848
|
+
* 投稿ステータス
|
|
2849
|
+
*/
|
|
2850
|
+
type SocialPostResponseStatus = typeof SocialPostResponseStatus[keyof typeof SocialPostResponseStatus];
|
|
2851
|
+
declare const SocialPostResponseStatus: {
|
|
2852
|
+
readonly draft: "draft";
|
|
2853
|
+
readonly scheduled: "scheduled";
|
|
2854
|
+
readonly posted: "posted";
|
|
2855
|
+
readonly failed: "failed";
|
|
2856
|
+
};
|
|
2857
|
+
|
|
2858
|
+
/**
|
|
2859
|
+
* Generated by orval v8.4.0 🍺
|
|
2860
|
+
* Do not edit manually.
|
|
2861
|
+
* CMX SDK API
|
|
2862
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2863
|
+
* OpenAPI spec version: 1.0.0
|
|
2864
|
+
*/
|
|
2865
|
+
/**
|
|
2866
|
+
* SNSプラットフォーム
|
|
2867
|
+
*/
|
|
2868
|
+
type SocialPostResponseTargetsItemPlatform = typeof SocialPostResponseTargetsItemPlatform[keyof typeof SocialPostResponseTargetsItemPlatform];
|
|
2869
|
+
declare const SocialPostResponseTargetsItemPlatform: {
|
|
2870
|
+
readonly x: "x";
|
|
2871
|
+
readonly instagram: "instagram";
|
|
2872
|
+
readonly linkedin: "linkedin";
|
|
2873
|
+
readonly threads: "threads";
|
|
2874
|
+
readonly bluesky: "bluesky";
|
|
2875
|
+
readonly pinterest: "pinterest";
|
|
2876
|
+
readonly tiktok: "tiktok";
|
|
2877
|
+
readonly youtube: "youtube";
|
|
2878
|
+
readonly facebook: "facebook";
|
|
2879
|
+
readonly note: "note";
|
|
2880
|
+
};
|
|
2881
|
+
|
|
2882
|
+
/**
|
|
2883
|
+
* Generated by orval v8.4.0 🍺
|
|
2884
|
+
* Do not edit manually.
|
|
2885
|
+
* CMX SDK API
|
|
2886
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2887
|
+
* OpenAPI spec version: 1.0.0
|
|
2888
|
+
*/
|
|
2889
|
+
type SocialPostResponseTargetsItemPlatformMeta = {
|
|
2890
|
+
[key: string]: unknown | null;
|
|
2891
|
+
} | null;
|
|
2892
|
+
|
|
2893
|
+
/**
|
|
2894
|
+
* Generated by orval v8.4.0 🍺
|
|
2895
|
+
* Do not edit manually.
|
|
2896
|
+
* CMX SDK API
|
|
2897
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2898
|
+
* OpenAPI spec version: 1.0.0
|
|
2899
|
+
*/
|
|
2900
|
+
/**
|
|
2901
|
+
* 投稿ステータス
|
|
2902
|
+
*/
|
|
2903
|
+
type SocialPostResponseTargetsItemStatus = typeof SocialPostResponseTargetsItemStatus[keyof typeof SocialPostResponseTargetsItemStatus];
|
|
2904
|
+
declare const SocialPostResponseTargetsItemStatus: {
|
|
2905
|
+
readonly draft: "draft";
|
|
2906
|
+
readonly scheduled: "scheduled";
|
|
2907
|
+
readonly posted: "posted";
|
|
2908
|
+
readonly failed: "failed";
|
|
2909
|
+
};
|
|
2910
|
+
|
|
2911
|
+
/**
|
|
2912
|
+
* Generated by orval v8.4.0 🍺
|
|
2913
|
+
* Do not edit manually.
|
|
2914
|
+
* CMX SDK API
|
|
2915
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2916
|
+
* OpenAPI spec version: 1.0.0
|
|
2917
|
+
*/
|
|
2918
|
+
|
|
2919
|
+
type SocialPostResponseTargetsItem = {
|
|
2920
|
+
id: string;
|
|
2921
|
+
socialPostId: string;
|
|
2922
|
+
socialAccountId: string;
|
|
2923
|
+
accountName: string;
|
|
2924
|
+
accountIdentifier: string;
|
|
2925
|
+
/** SNSプラットフォーム */
|
|
2926
|
+
platform: SocialPostResponseTargetsItemPlatform;
|
|
2927
|
+
body: string | null;
|
|
2928
|
+
link: string | null;
|
|
2929
|
+
hashtags: string[] | null;
|
|
2930
|
+
scheduledAt: Date | null;
|
|
2931
|
+
platformMeta: SocialPostResponseTargetsItemPlatformMeta;
|
|
2932
|
+
platformPostId: string | null;
|
|
2933
|
+
platformPostUrl: string | null;
|
|
2934
|
+
/** 投稿ステータス */
|
|
2935
|
+
status: SocialPostResponseTargetsItemStatus;
|
|
2936
|
+
errorMessage: string | null;
|
|
2937
|
+
postedAt: Date | null;
|
|
2938
|
+
createdAt: Date;
|
|
2939
|
+
updatedAt: Date;
|
|
2940
|
+
};
|
|
2941
|
+
|
|
2942
|
+
/**
|
|
2943
|
+
* Generated by orval v8.4.0 🍺
|
|
2944
|
+
* Do not edit manually.
|
|
2945
|
+
* CMX SDK API
|
|
2946
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2947
|
+
* OpenAPI spec version: 1.0.0
|
|
2948
|
+
*/
|
|
2949
|
+
/**
|
|
2950
|
+
* SNSプラットフォーム
|
|
2951
|
+
*/
|
|
2952
|
+
type SocialPostResponseTargetSummaryPlatformsItem = typeof SocialPostResponseTargetSummaryPlatformsItem[keyof typeof SocialPostResponseTargetSummaryPlatformsItem];
|
|
2953
|
+
declare const SocialPostResponseTargetSummaryPlatformsItem: {
|
|
2954
|
+
readonly x: "x";
|
|
2955
|
+
readonly instagram: "instagram";
|
|
2956
|
+
readonly linkedin: "linkedin";
|
|
2957
|
+
readonly threads: "threads";
|
|
2958
|
+
readonly bluesky: "bluesky";
|
|
2959
|
+
readonly pinterest: "pinterest";
|
|
2960
|
+
readonly tiktok: "tiktok";
|
|
2961
|
+
readonly youtube: "youtube";
|
|
2962
|
+
readonly facebook: "facebook";
|
|
2963
|
+
readonly note: "note";
|
|
2964
|
+
};
|
|
2965
|
+
|
|
2966
|
+
/**
|
|
2967
|
+
* Generated by orval v8.4.0 🍺
|
|
2968
|
+
* Do not edit manually.
|
|
2969
|
+
* CMX SDK API
|
|
2970
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2971
|
+
* OpenAPI spec version: 1.0.0
|
|
2972
|
+
*/
|
|
2973
|
+
type SocialPostResponseTargetSummaryStatusCounts = {
|
|
2974
|
+
[key: string]: number;
|
|
2975
|
+
};
|
|
2976
|
+
|
|
2977
|
+
/**
|
|
2978
|
+
* Generated by orval v8.4.0 🍺
|
|
2979
|
+
* Do not edit manually.
|
|
2980
|
+
* CMX SDK API
|
|
2981
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2982
|
+
* OpenAPI spec version: 1.0.0
|
|
2983
|
+
*/
|
|
2984
|
+
|
|
2985
|
+
type SocialPostResponseTargetSummary = {
|
|
2986
|
+
total: number;
|
|
2987
|
+
platforms: SocialPostResponseTargetSummaryPlatformsItem[];
|
|
2988
|
+
statusCounts?: SocialPostResponseTargetSummaryStatusCounts;
|
|
2989
|
+
};
|
|
2990
|
+
|
|
2991
|
+
/**
|
|
2992
|
+
* Generated by orval v8.4.0 🍺
|
|
2993
|
+
* Do not edit manually.
|
|
2994
|
+
* CMX SDK API
|
|
2995
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
2996
|
+
* OpenAPI spec version: 1.0.0
|
|
2997
|
+
*/
|
|
2998
|
+
|
|
2999
|
+
interface SocialPostResponse {
|
|
3000
|
+
id: string;
|
|
3001
|
+
contentId: string | null;
|
|
3002
|
+
contentTitle?: string | null;
|
|
3003
|
+
body: string;
|
|
3004
|
+
mediaAssetIds: string[];
|
|
3005
|
+
link: string | null;
|
|
3006
|
+
hashtags: string[];
|
|
3007
|
+
scheduledAt: Date | null;
|
|
3008
|
+
/** 投稿ステータス */
|
|
3009
|
+
status: SocialPostResponseStatus;
|
|
3010
|
+
targetSummary: SocialPostResponseTargetSummary;
|
|
3011
|
+
targets: SocialPostResponseTargetsItem[];
|
|
3012
|
+
createdAt: Date;
|
|
3013
|
+
updatedAt: Date;
|
|
3014
|
+
}
|
|
3015
|
+
|
|
2532
3016
|
/**
|
|
2533
3017
|
* Generated by orval v8.4.0 🍺
|
|
2534
3018
|
* Do not edit manually.
|
|
@@ -2626,6 +3110,43 @@ interface UpdateFormDefinitionRequest {
|
|
|
2626
3110
|
configJson?: UpdateFormDefinitionRequestConfigJson;
|
|
2627
3111
|
}
|
|
2628
3112
|
|
|
3113
|
+
/**
|
|
3114
|
+
* Generated by orval v8.4.0 🍺
|
|
3115
|
+
* Do not edit manually.
|
|
3116
|
+
* CMX SDK API
|
|
3117
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
3118
|
+
* OpenAPI spec version: 1.0.0
|
|
3119
|
+
*/
|
|
3120
|
+
/**
|
|
3121
|
+
* 投稿ステータス
|
|
3122
|
+
*/
|
|
3123
|
+
type UpdateSocialPostRequestStatus = typeof UpdateSocialPostRequestStatus[keyof typeof UpdateSocialPostRequestStatus];
|
|
3124
|
+
declare const UpdateSocialPostRequestStatus: {
|
|
3125
|
+
readonly draft: "draft";
|
|
3126
|
+
readonly scheduled: "scheduled";
|
|
3127
|
+
readonly posted: "posted";
|
|
3128
|
+
readonly failed: "failed";
|
|
3129
|
+
};
|
|
3130
|
+
|
|
3131
|
+
/**
|
|
3132
|
+
* Generated by orval v8.4.0 🍺
|
|
3133
|
+
* Do not edit manually.
|
|
3134
|
+
* CMX SDK API
|
|
3135
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
3136
|
+
* OpenAPI spec version: 1.0.0
|
|
3137
|
+
*/
|
|
3138
|
+
|
|
3139
|
+
interface UpdateSocialPostRequest {
|
|
3140
|
+
contentId?: string | null;
|
|
3141
|
+
body?: string;
|
|
3142
|
+
mediaAssetIds?: string[];
|
|
3143
|
+
link?: string | null;
|
|
3144
|
+
hashtags?: string[];
|
|
3145
|
+
scheduledAt?: Date | null;
|
|
3146
|
+
/** 投稿ステータス */
|
|
3147
|
+
status?: UpdateSocialPostRequestStatus;
|
|
3148
|
+
}
|
|
3149
|
+
|
|
2629
3150
|
/**
|
|
2630
3151
|
* Generated by orval v8.4.0 🍺
|
|
2631
3152
|
* Do not edit manually.
|
|
@@ -2918,11 +3439,29 @@ interface YouTubeProps {
|
|
|
2918
3439
|
}
|
|
2919
3440
|
declare function YouTube({ url, start }: YouTubeProps): react_jsx_runtime.JSX.Element;
|
|
2920
3441
|
|
|
3442
|
+
declare global {
|
|
3443
|
+
interface Window {
|
|
3444
|
+
twttr?: {
|
|
3445
|
+
widgets: {
|
|
3446
|
+
load: (el?: HTMLElement) => void;
|
|
3447
|
+
};
|
|
3448
|
+
};
|
|
3449
|
+
}
|
|
3450
|
+
}
|
|
2921
3451
|
interface TwitterProps {
|
|
2922
3452
|
url: string;
|
|
2923
3453
|
}
|
|
2924
3454
|
declare function Twitter({ url }: TwitterProps): react_jsx_runtime.JSX.Element;
|
|
2925
3455
|
|
|
3456
|
+
declare global {
|
|
3457
|
+
interface Window {
|
|
3458
|
+
instgrm?: {
|
|
3459
|
+
Embeds: {
|
|
3460
|
+
process: () => void;
|
|
3461
|
+
};
|
|
3462
|
+
};
|
|
3463
|
+
}
|
|
3464
|
+
}
|
|
2926
3465
|
interface InstagramProps {
|
|
2927
3466
|
url: string;
|
|
2928
3467
|
}
|
|
@@ -3464,7 +4003,8 @@ declare function quickValidateMdx(mdx: string): {
|
|
|
3464
4003
|
/**
|
|
3465
4004
|
* CMX SDK — MDX Rendering
|
|
3466
4005
|
*
|
|
3467
|
-
* Server-side MDX
|
|
4006
|
+
* Server-side MDX rendering with reference resolution.
|
|
4007
|
+
* Uses safe-mdx (AST-based renderer) for Edge Runtime / Cloudflare Workers compatibility.
|
|
3468
4008
|
* Provides `renderMdx` as an async function for Server Components.
|
|
3469
4009
|
*/
|
|
3470
4010
|
|
|
@@ -3512,4 +4052,4 @@ declare function renderMdx(mdx: string, references?: References, options?: Rende
|
|
|
3512
4052
|
*/
|
|
3513
4053
|
declare function renderMdxPreview(mdx: string, additionalComponents?: Record<string, React.ComponentType<any>>): Promise<React.ReactElement>;
|
|
3514
4054
|
|
|
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 };
|
|
4055
|
+
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 CreateSocialPostRequest, CreateSocialPostRequestStatus, type CreateSocialPostRequestTargetsItem, type CreateSocialPostRequestTargetsItemPlatformMeta, 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 GetManageSocialPostsParams, GetManageSocialPostsStatus, 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 SdkDeleteSocialPostResponse, 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 SocialAccountListResponse, type SocialAccountResponse, SocialAccountResponsePlatform, SocialAccountResponseStatus, type SocialPostListItem, SocialPostListItemStatus, type SocialPostListItemTargetSummary, SocialPostListItemTargetSummaryPlatformsItem, type SocialPostListItemTargetSummaryStatusCounts, type SocialPostListResponse, type SocialPostResponse, SocialPostResponseStatus, type SocialPostResponseTargetSummary, SocialPostResponseTargetSummaryPlatformsItem, type SocialPostResponseTargetSummaryStatusCounts, type SocialPostResponseTargetsItem, SocialPostResponseTargetsItemPlatform, type SocialPostResponseTargetsItemPlatformMeta, SocialPostResponseTargetsItemStatus, type UpdateCollectionRequest, type UpdateContentRequest, type UpdateDataTypeRequest, type UpdateFormDefinitionRequest, type UpdateFormDefinitionRequestConfigJson, type UpdateSocialPostRequest, UpdateSocialPostRequestStatus, 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 };
|