cmx-sdk 0.2.6 → 0.2.7
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/README.md +16 -0
- package/dist/add-studio-YUDYE2OH.js +72 -0
- package/dist/{chunk-XPP5MZKG.js → chunk-7TDMLYBI.js} +17 -45
- package/dist/chunk-EDXXR5BE.js +80 -0
- package/dist/chunk-FPQYL5GE.js +128 -0
- package/dist/chunk-NZQ6SBFS.js +35 -0
- package/dist/chunk-S3TFTN6H.js +64 -0
- package/dist/cli.js +1107 -622
- package/dist/index.d.ts +251 -384
- package/dist/index.js +109 -28
- package/dist/index.js.map +1 -1
- package/dist/{init-NDNG5Q5T.js → init-FLRQXJX4.js} +23 -51
- package/dist/interactive-menu-QKE6FMPN.js +80 -0
- package/dist/studio-HAS6DYLO.js +8 -0
- package/dist/update-sdk-ZDFOSMN4.js +10 -0
- package/dist/update-studio-TWCYSYIS.js +14 -0
- package/package.json +17 -10
- package/dist/add-studio-J7M7KOWM.js +0 -125
- package/dist/interactive-menu-RPPCBCOU.js +0 -66
- package/dist/studio-3YGVKWS4.js +0 -7
package/dist/index.d.ts
CHANGED
|
@@ -93,21 +93,18 @@ declare const CACHE_TAGS: {
|
|
|
93
93
|
};
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
|
-
* Generated by orval
|
|
96
|
+
* Generated by orval v8.4.0 🍺
|
|
97
97
|
* Do not edit manually.
|
|
98
98
|
* CMX SDK API
|
|
99
99
|
* CMX SDK API(コンテンツ配信+管理)
|
|
100
100
|
* OpenAPI spec version: 1.0.0
|
|
101
101
|
*/
|
|
102
|
-
/**
|
|
103
|
-
* @nullable
|
|
104
|
-
*/
|
|
105
102
|
type AssetReferenceVariants = {
|
|
106
103
|
[key: string]: string;
|
|
107
104
|
} | null;
|
|
108
105
|
|
|
109
106
|
/**
|
|
110
|
-
* Generated by orval
|
|
107
|
+
* Generated by orval v8.4.0 🍺
|
|
111
108
|
* Do not edit manually.
|
|
112
109
|
* CMX SDK API
|
|
113
110
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -117,18 +114,14 @@ type AssetReferenceVariants = {
|
|
|
117
114
|
interface AssetReference {
|
|
118
115
|
id: string;
|
|
119
116
|
url: string;
|
|
120
|
-
/** @nullable */
|
|
121
117
|
variants: AssetReferenceVariants;
|
|
122
|
-
/** @nullable */
|
|
123
118
|
alt: string | null;
|
|
124
|
-
/** @nullable */
|
|
125
119
|
width: number | null;
|
|
126
|
-
/** @nullable */
|
|
127
120
|
height: number | null;
|
|
128
121
|
}
|
|
129
122
|
|
|
130
123
|
/**
|
|
131
|
-
* Generated by orval
|
|
124
|
+
* Generated by orval v8.4.0 🍺
|
|
132
125
|
* Do not edit manually.
|
|
133
126
|
* CMX SDK API
|
|
134
127
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -139,7 +132,7 @@ type CollectionConfigDefaults = {
|
|
|
139
132
|
};
|
|
140
133
|
|
|
141
134
|
/**
|
|
142
|
-
* Generated by orval
|
|
135
|
+
* Generated by orval v8.4.0 🍺
|
|
143
136
|
* Do not edit manually.
|
|
144
137
|
* CMX SDK API
|
|
145
138
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -157,26 +150,23 @@ interface RevalidationConfig {
|
|
|
157
150
|
}
|
|
158
151
|
|
|
159
152
|
/**
|
|
160
|
-
* Generated by orval
|
|
153
|
+
* Generated by orval v8.4.0 🍺
|
|
161
154
|
* Do not edit manually.
|
|
162
155
|
* CMX SDK API
|
|
163
156
|
* CMX SDK API(コンテンツ配信+管理)
|
|
164
157
|
* OpenAPI spec version: 1.0.0
|
|
165
158
|
*/
|
|
166
159
|
|
|
167
|
-
|
|
168
|
-
* @nullable
|
|
169
|
-
*/
|
|
170
|
-
type CollectionConfig = {
|
|
160
|
+
interface CollectionConfig {
|
|
171
161
|
/** @minimum 0 */
|
|
172
162
|
maxDepth?: number;
|
|
173
163
|
requiredFields?: string[];
|
|
174
164
|
defaults?: CollectionConfigDefaults;
|
|
175
165
|
revalidation?: RevalidationConfig;
|
|
176
|
-
}
|
|
166
|
+
}
|
|
177
167
|
|
|
178
168
|
/**
|
|
179
|
-
* Generated by orval
|
|
169
|
+
* Generated by orval v8.4.0 🍺
|
|
180
170
|
* Do not edit manually.
|
|
181
171
|
* CMX SDK API
|
|
182
172
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -191,7 +181,7 @@ declare const CollectionType: {
|
|
|
191
181
|
};
|
|
192
182
|
|
|
193
183
|
/**
|
|
194
|
-
* Generated by orval
|
|
184
|
+
* Generated by orval v8.4.0 🍺
|
|
195
185
|
* Do not edit manually.
|
|
196
186
|
* CMX SDK API
|
|
197
187
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -202,29 +192,25 @@ interface PublicCollectionInfo {
|
|
|
202
192
|
id: string;
|
|
203
193
|
slug: string;
|
|
204
194
|
name: string;
|
|
205
|
-
/** @nullable */
|
|
206
195
|
description: string | null;
|
|
207
196
|
type: CollectionType;
|
|
208
197
|
}
|
|
209
198
|
|
|
210
199
|
/**
|
|
211
|
-
* Generated by orval
|
|
200
|
+
* Generated by orval v8.4.0 🍺
|
|
212
201
|
* Do not edit manually.
|
|
213
202
|
* CMX SDK API
|
|
214
203
|
* CMX SDK API(コンテンツ配信+管理)
|
|
215
204
|
* OpenAPI spec version: 1.0.0
|
|
216
205
|
*/
|
|
217
|
-
|
|
218
|
-
* @nullable
|
|
219
|
-
*/
|
|
220
|
-
type PublicContentParent = {
|
|
206
|
+
interface PublicContentParent {
|
|
221
207
|
id: string;
|
|
222
208
|
slug: string;
|
|
223
209
|
title: string;
|
|
224
|
-
}
|
|
210
|
+
}
|
|
225
211
|
|
|
226
212
|
/**
|
|
227
|
-
* Generated by orval
|
|
213
|
+
* Generated by orval v8.4.0 🍺
|
|
228
214
|
* Do not edit manually.
|
|
229
215
|
* CMX SDK API
|
|
230
216
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -235,18 +221,27 @@ interface PublicContentDetail {
|
|
|
235
221
|
id: string;
|
|
236
222
|
slug: string;
|
|
237
223
|
title: string;
|
|
238
|
-
/** @nullable */
|
|
239
224
|
description: string | null;
|
|
240
|
-
/** @nullable */
|
|
241
225
|
publishedAt: string | null;
|
|
242
226
|
mdx: string;
|
|
243
|
-
/** @nullable */
|
|
244
227
|
parentId: string | null;
|
|
245
|
-
parent: PublicContentParent;
|
|
228
|
+
parent: PublicContentParent | null;
|
|
246
229
|
}
|
|
247
230
|
|
|
248
231
|
/**
|
|
249
|
-
* Generated by orval
|
|
232
|
+
* Generated by orval v8.4.0 🍺
|
|
233
|
+
* Do not edit manually.
|
|
234
|
+
* CMX SDK API
|
|
235
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
236
|
+
* OpenAPI spec version: 1.0.0
|
|
237
|
+
*/
|
|
238
|
+
|
|
239
|
+
type ReferencesAssets = {
|
|
240
|
+
[key: string]: AssetReference;
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* Generated by orval v8.4.0 🍺
|
|
250
245
|
* Do not edit manually.
|
|
251
246
|
* CMX SDK API
|
|
252
247
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -256,12 +251,11 @@ interface ContentReference {
|
|
|
256
251
|
id: string;
|
|
257
252
|
title: string;
|
|
258
253
|
slug: string;
|
|
259
|
-
/** @nullable */
|
|
260
254
|
description: string | null;
|
|
261
255
|
}
|
|
262
256
|
|
|
263
257
|
/**
|
|
264
|
-
* Generated by orval
|
|
258
|
+
* Generated by orval v8.4.0 🍺
|
|
265
259
|
* Do not edit manually.
|
|
266
260
|
* CMX SDK API
|
|
267
261
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -273,19 +267,7 @@ type ReferencesContents = {
|
|
|
273
267
|
};
|
|
274
268
|
|
|
275
269
|
/**
|
|
276
|
-
* Generated by orval
|
|
277
|
-
* Do not edit manually.
|
|
278
|
-
* CMX SDK API
|
|
279
|
-
* CMX SDK API(コンテンツ配信+管理)
|
|
280
|
-
* OpenAPI spec version: 1.0.0
|
|
281
|
-
*/
|
|
282
|
-
|
|
283
|
-
type ReferencesAssets = {
|
|
284
|
-
[key: string]: AssetReference;
|
|
285
|
-
};
|
|
286
|
-
|
|
287
|
-
/**
|
|
288
|
-
* Generated by orval v7.17.2 🍺
|
|
270
|
+
* Generated by orval v8.4.0 🍺
|
|
289
271
|
* Do not edit manually.
|
|
290
272
|
* CMX SDK API
|
|
291
273
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -298,7 +280,7 @@ interface References {
|
|
|
298
280
|
}
|
|
299
281
|
|
|
300
282
|
/**
|
|
301
|
-
* Generated by orval
|
|
283
|
+
* Generated by orval v8.4.0 🍺
|
|
302
284
|
* Do not edit manually.
|
|
303
285
|
* CMX SDK API
|
|
304
286
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -312,7 +294,7 @@ interface CollectionContentDetailResponse {
|
|
|
312
294
|
}
|
|
313
295
|
|
|
314
296
|
/**
|
|
315
|
-
* Generated by orval
|
|
297
|
+
* Generated by orval v8.4.0 🍺
|
|
316
298
|
* Do not edit manually.
|
|
317
299
|
* CMX SDK API
|
|
318
300
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -322,14 +304,12 @@ interface PublicContentListItem {
|
|
|
322
304
|
id: string;
|
|
323
305
|
slug: string;
|
|
324
306
|
title: string;
|
|
325
|
-
/** @nullable */
|
|
326
307
|
description: string | null;
|
|
327
|
-
/** @nullable */
|
|
328
308
|
publishedAt: string | null;
|
|
329
309
|
}
|
|
330
310
|
|
|
331
311
|
/**
|
|
332
|
-
* Generated by orval
|
|
312
|
+
* Generated by orval v8.4.0 🍺
|
|
333
313
|
* Do not edit manually.
|
|
334
314
|
* CMX SDK API
|
|
335
315
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -346,7 +326,7 @@ interface CollectionContentsResponse {
|
|
|
346
326
|
}
|
|
347
327
|
|
|
348
328
|
/**
|
|
349
|
-
* Generated by orval
|
|
329
|
+
* Generated by orval v8.4.0 🍺
|
|
350
330
|
* Do not edit manually.
|
|
351
331
|
* CMX SDK API
|
|
352
332
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -359,7 +339,7 @@ declare const ReferenceFieldReferenceType: {
|
|
|
359
339
|
};
|
|
360
340
|
|
|
361
341
|
/**
|
|
362
|
-
* Generated by orval
|
|
342
|
+
* Generated by orval v8.4.0 🍺
|
|
363
343
|
* Do not edit manually.
|
|
364
344
|
* CMX SDK API
|
|
365
345
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -385,7 +365,7 @@ interface ReferenceField {
|
|
|
385
365
|
}
|
|
386
366
|
|
|
387
367
|
/**
|
|
388
|
-
* Generated by orval
|
|
368
|
+
* Generated by orval v8.4.0 🍺
|
|
389
369
|
* Do not edit manually.
|
|
390
370
|
* CMX SDK API
|
|
391
371
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -397,16 +377,15 @@ interface CollectionResponse {
|
|
|
397
377
|
type: CollectionType;
|
|
398
378
|
slug: string;
|
|
399
379
|
name: string;
|
|
400
|
-
/** @nullable */
|
|
401
380
|
description: string | null;
|
|
402
|
-
configJson: CollectionConfig;
|
|
381
|
+
configJson: CollectionConfig | null;
|
|
403
382
|
referenceFields?: ReferenceField[];
|
|
404
383
|
createdAt: Date;
|
|
405
384
|
updatedAt: Date;
|
|
406
385
|
}
|
|
407
386
|
|
|
408
387
|
/**
|
|
409
|
-
* Generated by orval
|
|
388
|
+
* Generated by orval v8.4.0 🍺
|
|
410
389
|
* Do not edit manually.
|
|
411
390
|
* CMX SDK API
|
|
412
391
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -416,7 +395,7 @@ interface CollectionResponse {
|
|
|
416
395
|
type CollectionListResponse = CollectionResponse[];
|
|
417
396
|
|
|
418
397
|
/**
|
|
419
|
-
* Generated by orval
|
|
398
|
+
* Generated by orval v8.4.0 🍺
|
|
420
399
|
* Do not edit manually.
|
|
421
400
|
* CMX SDK API
|
|
422
401
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -436,7 +415,7 @@ interface CreateCollectionRequest {
|
|
|
436
415
|
}
|
|
437
416
|
|
|
438
417
|
/**
|
|
439
|
-
* Generated by orval
|
|
418
|
+
* Generated by orval v8.4.0 🍺
|
|
440
419
|
* Do not edit manually.
|
|
441
420
|
* CMX SDK API
|
|
442
421
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -454,33 +433,7 @@ interface CreateContentRequest {
|
|
|
454
433
|
}
|
|
455
434
|
|
|
456
435
|
/**
|
|
457
|
-
* Generated by orval
|
|
458
|
-
* Do not edit manually.
|
|
459
|
-
* CMX SDK API
|
|
460
|
-
* CMX SDK API(コンテンツ配信+管理)
|
|
461
|
-
* OpenAPI spec version: 1.0.0
|
|
462
|
-
*/
|
|
463
|
-
type FieldType = typeof FieldType[keyof typeof FieldType];
|
|
464
|
-
declare const FieldType: {
|
|
465
|
-
readonly text: "text";
|
|
466
|
-
readonly textarea: "textarea";
|
|
467
|
-
readonly richtext: "richtext";
|
|
468
|
-
readonly number: "number";
|
|
469
|
-
readonly boolean: "boolean";
|
|
470
|
-
readonly date: "date";
|
|
471
|
-
readonly datetime: "datetime";
|
|
472
|
-
readonly select: "select";
|
|
473
|
-
readonly multiselect: "multiselect";
|
|
474
|
-
readonly relation: "relation";
|
|
475
|
-
readonly image: "image";
|
|
476
|
-
readonly file: "file";
|
|
477
|
-
readonly json: "json";
|
|
478
|
-
readonly url: "url";
|
|
479
|
-
readonly email: "email";
|
|
480
|
-
};
|
|
481
|
-
|
|
482
|
-
/**
|
|
483
|
-
* Generated by orval v7.17.2 🍺
|
|
436
|
+
* Generated by orval v8.4.0 🍺
|
|
484
437
|
* Do not edit manually.
|
|
485
438
|
* CMX SDK API
|
|
486
439
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -492,7 +445,7 @@ type FieldOptionsChoicesItem = {
|
|
|
492
445
|
};
|
|
493
446
|
|
|
494
447
|
/**
|
|
495
|
-
* Generated by orval
|
|
448
|
+
* Generated by orval v8.4.0 🍺
|
|
496
449
|
* Do not edit manually.
|
|
497
450
|
* CMX SDK API
|
|
498
451
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -515,20 +468,33 @@ interface FieldOptions {
|
|
|
515
468
|
}
|
|
516
469
|
|
|
517
470
|
/**
|
|
518
|
-
* Generated by orval
|
|
471
|
+
* Generated by orval v8.4.0 🍺
|
|
519
472
|
* Do not edit manually.
|
|
520
473
|
* CMX SDK API
|
|
521
474
|
* CMX SDK API(コンテンツ配信+管理)
|
|
522
475
|
* OpenAPI spec version: 1.0.0
|
|
523
476
|
*/
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
477
|
+
type FieldType = typeof FieldType[keyof typeof FieldType];
|
|
478
|
+
declare const FieldType: {
|
|
479
|
+
readonly text: "text";
|
|
480
|
+
readonly textarea: "textarea";
|
|
481
|
+
readonly richtext: "richtext";
|
|
482
|
+
readonly number: "number";
|
|
483
|
+
readonly boolean: "boolean";
|
|
484
|
+
readonly date: "date";
|
|
485
|
+
readonly datetime: "datetime";
|
|
486
|
+
readonly select: "select";
|
|
487
|
+
readonly multiselect: "multiselect";
|
|
488
|
+
readonly relation: "relation";
|
|
489
|
+
readonly image: "image";
|
|
490
|
+
readonly file: "file";
|
|
491
|
+
readonly json: "json";
|
|
492
|
+
readonly url: "url";
|
|
493
|
+
readonly email: "email";
|
|
494
|
+
};
|
|
529
495
|
|
|
530
496
|
/**
|
|
531
|
-
* Generated by orval
|
|
497
|
+
* Generated by orval v8.4.0 🍺
|
|
532
498
|
* Do not edit manually.
|
|
533
499
|
* CMX SDK API
|
|
534
500
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -556,15 +522,12 @@ interface FieldDefinition {
|
|
|
556
522
|
/** ヘルプテキスト */
|
|
557
523
|
description?: string;
|
|
558
524
|
options?: FieldOptions;
|
|
559
|
-
/**
|
|
560
|
-
|
|
561
|
-
* @nullable
|
|
562
|
-
*/
|
|
563
|
-
defaultValue?: FieldDefinitionDefaultValue;
|
|
525
|
+
/** 未入力時のデフォルト値 */
|
|
526
|
+
defaultValue?: unknown | null;
|
|
564
527
|
}
|
|
565
528
|
|
|
566
529
|
/**
|
|
567
|
-
* Generated by orval
|
|
530
|
+
* Generated by orval v8.4.0 🍺
|
|
568
531
|
* Do not edit manually.
|
|
569
532
|
* CMX SDK API
|
|
570
533
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -584,7 +547,7 @@ interface CreateDataTypeRequest {
|
|
|
584
547
|
}
|
|
585
548
|
|
|
586
549
|
/**
|
|
587
|
-
* Generated by orval
|
|
550
|
+
* Generated by orval v8.4.0 🍺
|
|
588
551
|
* Do not edit manually.
|
|
589
552
|
* CMX SDK API
|
|
590
553
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -604,7 +567,7 @@ interface CreateFormDefinitionRequest {
|
|
|
604
567
|
}
|
|
605
568
|
|
|
606
569
|
/**
|
|
607
|
-
* Generated by orval
|
|
570
|
+
* Generated by orval v8.4.0 🍺
|
|
608
571
|
* Do not edit manually.
|
|
609
572
|
* CMX SDK API
|
|
610
573
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -615,7 +578,7 @@ interface DataEntryDetailResponse {
|
|
|
615
578
|
}
|
|
616
579
|
|
|
617
580
|
/**
|
|
618
|
-
* Generated by orval
|
|
581
|
+
* Generated by orval v8.4.0 🍺
|
|
619
582
|
* Do not edit manually.
|
|
620
583
|
* CMX SDK API
|
|
621
584
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -626,7 +589,7 @@ interface DataEntryItem {
|
|
|
626
589
|
}
|
|
627
590
|
|
|
628
591
|
/**
|
|
629
|
-
* Generated by orval
|
|
592
|
+
* Generated by orval v8.4.0 🍺
|
|
630
593
|
* Do not edit manually.
|
|
631
594
|
* CMX SDK API
|
|
632
595
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -643,25 +606,22 @@ interface DataListResponse {
|
|
|
643
606
|
}
|
|
644
607
|
|
|
645
608
|
/**
|
|
646
|
-
* Generated by orval
|
|
609
|
+
* Generated by orval v8.4.0 🍺
|
|
647
610
|
* Do not edit manually.
|
|
648
611
|
* CMX SDK API
|
|
649
612
|
* CMX SDK API(コンテンツ配信+管理)
|
|
650
613
|
* OpenAPI spec version: 1.0.0
|
|
651
614
|
*/
|
|
652
615
|
|
|
653
|
-
|
|
654
|
-
* @nullable
|
|
655
|
-
*/
|
|
656
|
-
type DataTypeConfig = {
|
|
616
|
+
interface DataTypeConfig {
|
|
657
617
|
icon?: string;
|
|
658
618
|
listDisplayFields?: string[];
|
|
659
619
|
titleField?: string;
|
|
660
620
|
revalidation?: RevalidationConfig;
|
|
661
|
-
}
|
|
621
|
+
}
|
|
662
622
|
|
|
663
623
|
/**
|
|
664
|
-
* Generated by orval
|
|
624
|
+
* Generated by orval v8.4.0 🍺
|
|
665
625
|
* Do not edit manually.
|
|
666
626
|
* CMX SDK API
|
|
667
627
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -672,19 +632,17 @@ interface DataTypeResponse {
|
|
|
672
632
|
id: string;
|
|
673
633
|
slug: string;
|
|
674
634
|
name: string;
|
|
675
|
-
/** @nullable */
|
|
676
635
|
description: string | null;
|
|
677
636
|
fields: FieldDefinition[];
|
|
678
|
-
/** @nullable */
|
|
679
637
|
displayField: string | null;
|
|
680
|
-
configJson?: DataTypeConfig;
|
|
638
|
+
configJson?: DataTypeConfig | null;
|
|
681
639
|
entryCount?: number;
|
|
682
640
|
createdAt: Date;
|
|
683
641
|
updatedAt: Date;
|
|
684
642
|
}
|
|
685
643
|
|
|
686
644
|
/**
|
|
687
|
-
* Generated by orval
|
|
645
|
+
* Generated by orval v8.4.0 🍺
|
|
688
646
|
* Do not edit manually.
|
|
689
647
|
* CMX SDK API
|
|
690
648
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -693,13 +651,12 @@ interface DataTypeResponse {
|
|
|
693
651
|
type DeleteManageDataTypeSlugIdParams = {
|
|
694
652
|
/**
|
|
695
653
|
* 参照中でも強制削除するか
|
|
696
|
-
* @nullable
|
|
697
654
|
*/
|
|
698
655
|
force?: boolean | null;
|
|
699
656
|
};
|
|
700
657
|
|
|
701
658
|
/**
|
|
702
|
-
* Generated by orval
|
|
659
|
+
* Generated by orval v8.4.0 🍺
|
|
703
660
|
* Do not edit manually.
|
|
704
661
|
* CMX SDK API
|
|
705
662
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -710,7 +667,7 @@ type ErrorResponseDetails = {
|
|
|
710
667
|
};
|
|
711
668
|
|
|
712
669
|
/**
|
|
713
|
-
* Generated by orval
|
|
670
|
+
* Generated by orval v8.4.0 🍺
|
|
714
671
|
* Do not edit manually.
|
|
715
672
|
* CMX SDK API
|
|
716
673
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -724,21 +681,18 @@ interface ErrorResponse {
|
|
|
724
681
|
}
|
|
725
682
|
|
|
726
683
|
/**
|
|
727
|
-
* Generated by orval
|
|
684
|
+
* Generated by orval v8.4.0 🍺
|
|
728
685
|
* Do not edit manually.
|
|
729
686
|
* CMX SDK API
|
|
730
687
|
* CMX SDK API(コンテンツ配信+管理)
|
|
731
688
|
* OpenAPI spec version: 1.0.0
|
|
732
689
|
*/
|
|
733
|
-
/**
|
|
734
|
-
* @nullable
|
|
735
|
-
*/
|
|
736
690
|
type FormDefinitionResponseConfigJson = {
|
|
737
691
|
[key: string]: unknown | null;
|
|
738
692
|
} | null;
|
|
739
693
|
|
|
740
694
|
/**
|
|
741
|
-
* Generated by orval
|
|
695
|
+
* Generated by orval v8.4.0 🍺
|
|
742
696
|
* Do not edit manually.
|
|
743
697
|
* CMX SDK API
|
|
744
698
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -749,11 +703,9 @@ interface FormDefinitionResponse {
|
|
|
749
703
|
id: string;
|
|
750
704
|
slug: string;
|
|
751
705
|
name: string;
|
|
752
|
-
/** @nullable */
|
|
753
706
|
description: string | null;
|
|
754
707
|
fields: FieldDefinition[];
|
|
755
708
|
enabled: boolean;
|
|
756
|
-
/** @nullable */
|
|
757
709
|
configJson?: FormDefinitionResponseConfigJson;
|
|
758
710
|
submissionCount?: number;
|
|
759
711
|
createdAt: Date;
|
|
@@ -761,7 +713,7 @@ interface FormDefinitionResponse {
|
|
|
761
713
|
}
|
|
762
714
|
|
|
763
715
|
/**
|
|
764
|
-
* Generated by orval
|
|
716
|
+
* Generated by orval v8.4.0 🍺
|
|
765
717
|
* Do not edit manually.
|
|
766
718
|
* CMX SDK API
|
|
767
719
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -774,7 +726,7 @@ declare const GetCollectionsSlugContentsSortBy: {
|
|
|
774
726
|
};
|
|
775
727
|
|
|
776
728
|
/**
|
|
777
|
-
* Generated by orval
|
|
729
|
+
* Generated by orval v8.4.0 🍺
|
|
778
730
|
* Do not edit manually.
|
|
779
731
|
* CMX SDK API
|
|
780
732
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -787,7 +739,7 @@ declare const GetCollectionsSlugContentsSortOrder: {
|
|
|
787
739
|
};
|
|
788
740
|
|
|
789
741
|
/**
|
|
790
|
-
* Generated by orval
|
|
742
|
+
* Generated by orval v8.4.0 🍺
|
|
791
743
|
* Do not edit manually.
|
|
792
744
|
* CMX SDK API
|
|
793
745
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -804,7 +756,6 @@ type GetCollectionsSlugContentsParams = {
|
|
|
804
756
|
limit?: number;
|
|
805
757
|
/**
|
|
806
758
|
* @minimum 0
|
|
807
|
-
* @nullable
|
|
808
759
|
*/
|
|
809
760
|
offset?: number | null;
|
|
810
761
|
/**
|
|
@@ -814,7 +765,7 @@ type GetCollectionsSlugContentsParams = {
|
|
|
814
765
|
};
|
|
815
766
|
|
|
816
767
|
/**
|
|
817
|
-
* Generated by orval
|
|
768
|
+
* Generated by orval v8.4.0 🍺
|
|
818
769
|
* Do not edit manually.
|
|
819
770
|
* CMX SDK API
|
|
820
771
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -828,7 +779,7 @@ declare const GetDataTypeSlugSortBy: {
|
|
|
828
779
|
};
|
|
829
780
|
|
|
830
781
|
/**
|
|
831
|
-
* Generated by orval
|
|
782
|
+
* Generated by orval v8.4.0 🍺
|
|
832
783
|
* Do not edit manually.
|
|
833
784
|
* CMX SDK API
|
|
834
785
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -841,7 +792,7 @@ declare const GetDataTypeSlugSortOrder: {
|
|
|
841
792
|
};
|
|
842
793
|
|
|
843
794
|
/**
|
|
844
|
-
* Generated by orval
|
|
795
|
+
* Generated by orval v8.4.0 🍺
|
|
845
796
|
* Do not edit manually.
|
|
846
797
|
* CMX SDK API
|
|
847
798
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -857,7 +808,6 @@ type GetDataTypeSlugParams = {
|
|
|
857
808
|
limit?: number;
|
|
858
809
|
/**
|
|
859
810
|
* @minimum 0
|
|
860
|
-
* @nullable
|
|
861
811
|
*/
|
|
862
812
|
offset?: number | null;
|
|
863
813
|
/**
|
|
@@ -867,7 +817,7 @@ type GetDataTypeSlugParams = {
|
|
|
867
817
|
};
|
|
868
818
|
|
|
869
819
|
/**
|
|
870
|
-
* Generated by orval
|
|
820
|
+
* Generated by orval v8.4.0 🍺
|
|
871
821
|
* Do not edit manually.
|
|
872
822
|
* CMX SDK API
|
|
873
823
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -880,7 +830,7 @@ declare const SdkPresetReferenceType: {
|
|
|
880
830
|
};
|
|
881
831
|
|
|
882
832
|
/**
|
|
883
|
-
* Generated by orval
|
|
833
|
+
* Generated by orval v8.4.0 🍺
|
|
884
834
|
* Do not edit manually.
|
|
885
835
|
* CMX SDK API
|
|
886
836
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -898,7 +848,7 @@ interface SdkPreset {
|
|
|
898
848
|
}
|
|
899
849
|
|
|
900
850
|
/**
|
|
901
|
-
* Generated by orval
|
|
851
|
+
* Generated by orval v8.4.0 🍺
|
|
902
852
|
* Do not edit manually.
|
|
903
853
|
* CMX SDK API
|
|
904
854
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -912,7 +862,7 @@ type GetManageCollectionPresets200 = {
|
|
|
912
862
|
};
|
|
913
863
|
|
|
914
864
|
/**
|
|
915
|
-
* Generated by orval
|
|
865
|
+
* Generated by orval v8.4.0 🍺
|
|
916
866
|
* Do not edit manually.
|
|
917
867
|
* CMX SDK API
|
|
918
868
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -927,7 +877,7 @@ declare const GetManageCollectionPresetsType: {
|
|
|
927
877
|
};
|
|
928
878
|
|
|
929
879
|
/**
|
|
930
|
-
* Generated by orval
|
|
880
|
+
* Generated by orval v8.4.0 🍺
|
|
931
881
|
* Do not edit manually.
|
|
932
882
|
* CMX SDK API
|
|
933
883
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -942,20 +892,7 @@ type GetManageCollectionPresetsParams = {
|
|
|
942
892
|
};
|
|
943
893
|
|
|
944
894
|
/**
|
|
945
|
-
* Generated by orval
|
|
946
|
-
* Do not edit manually.
|
|
947
|
-
* CMX SDK API
|
|
948
|
-
* CMX SDK API(コンテンツ配信+管理)
|
|
949
|
-
* OpenAPI spec version: 1.0.0
|
|
950
|
-
*/
|
|
951
|
-
type GetManageDataTypeSlugStatus = typeof GetManageDataTypeSlugStatus[keyof typeof GetManageDataTypeSlugStatus];
|
|
952
|
-
declare const GetManageDataTypeSlugStatus: {
|
|
953
|
-
readonly draft: "draft";
|
|
954
|
-
readonly published: "published";
|
|
955
|
-
};
|
|
956
|
-
|
|
957
|
-
/**
|
|
958
|
-
* Generated by orval v7.17.2 🍺
|
|
895
|
+
* Generated by orval v8.4.0 🍺
|
|
959
896
|
* Do not edit manually.
|
|
960
897
|
* CMX SDK API
|
|
961
898
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -969,7 +906,7 @@ declare const GetManageDataTypeSlugSortBy: {
|
|
|
969
906
|
};
|
|
970
907
|
|
|
971
908
|
/**
|
|
972
|
-
* Generated by orval
|
|
909
|
+
* Generated by orval v8.4.0 🍺
|
|
973
910
|
* Do not edit manually.
|
|
974
911
|
* CMX SDK API
|
|
975
912
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -982,7 +919,20 @@ declare const GetManageDataTypeSlugSortOrder: {
|
|
|
982
919
|
};
|
|
983
920
|
|
|
984
921
|
/**
|
|
985
|
-
* Generated by orval
|
|
922
|
+
* Generated by orval v8.4.0 🍺
|
|
923
|
+
* Do not edit manually.
|
|
924
|
+
* CMX SDK API
|
|
925
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
926
|
+
* OpenAPI spec version: 1.0.0
|
|
927
|
+
*/
|
|
928
|
+
type GetManageDataTypeSlugStatus = typeof GetManageDataTypeSlugStatus[keyof typeof GetManageDataTypeSlugStatus];
|
|
929
|
+
declare const GetManageDataTypeSlugStatus: {
|
|
930
|
+
readonly draft: "draft";
|
|
931
|
+
readonly published: "published";
|
|
932
|
+
};
|
|
933
|
+
|
|
934
|
+
/**
|
|
935
|
+
* Generated by orval v8.4.0 🍺
|
|
986
936
|
* Do not edit manually.
|
|
987
937
|
* CMX SDK API
|
|
988
938
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1011,39 +961,17 @@ type GetManageDataTypeSlugParams = {
|
|
|
1011
961
|
/**
|
|
1012
962
|
* オフセット
|
|
1013
963
|
* @minimum 0
|
|
1014
|
-
* @nullable
|
|
1015
964
|
*/
|
|
1016
965
|
offset?: number | null;
|
|
1017
966
|
};
|
|
1018
967
|
|
|
1019
968
|
/**
|
|
1020
|
-
* Generated by orval
|
|
1021
|
-
* Do not edit manually.
|
|
1022
|
-
* CMX SDK API
|
|
1023
|
-
* CMX SDK API(コンテンツ配信+管理)
|
|
1024
|
-
* OpenAPI spec version: 1.0.0
|
|
1025
|
-
*/
|
|
1026
|
-
type GetPreviewToken200Content = {
|
|
1027
|
-
id: string;
|
|
1028
|
-
slug: string;
|
|
1029
|
-
title: string;
|
|
1030
|
-
/** @nullable */
|
|
1031
|
-
description: string | null;
|
|
1032
|
-
mdx: string;
|
|
1033
|
-
status: string;
|
|
1034
|
-
environment: string;
|
|
1035
|
-
};
|
|
1036
|
-
|
|
1037
|
-
/**
|
|
1038
|
-
* Generated by orval v7.17.2 🍺
|
|
969
|
+
* Generated by orval v8.4.0 🍺
|
|
1039
970
|
* Do not edit manually.
|
|
1040
971
|
* CMX SDK API
|
|
1041
972
|
* CMX SDK API(コンテンツ配信+管理)
|
|
1042
973
|
* OpenAPI spec version: 1.0.0
|
|
1043
974
|
*/
|
|
1044
|
-
/**
|
|
1045
|
-
* @nullable
|
|
1046
|
-
*/
|
|
1047
975
|
type GetPreviewToken200Collection = {
|
|
1048
976
|
id: string;
|
|
1049
977
|
slug: string;
|
|
@@ -1052,38 +980,35 @@ type GetPreviewToken200Collection = {
|
|
|
1052
980
|
} | null;
|
|
1053
981
|
|
|
1054
982
|
/**
|
|
1055
|
-
* Generated by orval
|
|
983
|
+
* Generated by orval v8.4.0 🍺
|
|
1056
984
|
* Do not edit manually.
|
|
1057
985
|
* CMX SDK API
|
|
1058
986
|
* CMX SDK API(コンテンツ配信+管理)
|
|
1059
987
|
* OpenAPI spec version: 1.0.0
|
|
1060
988
|
*/
|
|
1061
|
-
type
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
989
|
+
type GetPreviewToken200Content = {
|
|
990
|
+
id: string;
|
|
991
|
+
slug: string;
|
|
992
|
+
title: string;
|
|
993
|
+
description: string | null;
|
|
994
|
+
mdx: string;
|
|
995
|
+
status: string;
|
|
996
|
+
environment: string;
|
|
1069
997
|
};
|
|
1070
998
|
|
|
1071
999
|
/**
|
|
1072
|
-
* Generated by orval
|
|
1000
|
+
* Generated by orval v8.4.0 🍺
|
|
1073
1001
|
* Do not edit manually.
|
|
1074
1002
|
* CMX SDK API
|
|
1075
1003
|
* CMX SDK API(コンテンツ配信+管理)
|
|
1076
1004
|
* OpenAPI spec version: 1.0.0
|
|
1077
1005
|
*/
|
|
1078
|
-
/**
|
|
1079
|
-
* @nullable
|
|
1080
|
-
*/
|
|
1081
1006
|
type GetPreviewToken200ReferencesAssetsVariants = {
|
|
1082
1007
|
[key: string]: string;
|
|
1083
1008
|
} | null;
|
|
1084
1009
|
|
|
1085
1010
|
/**
|
|
1086
|
-
* Generated by orval
|
|
1011
|
+
* Generated by orval v8.4.0 🍺
|
|
1087
1012
|
* Do not edit manually.
|
|
1088
1013
|
* CMX SDK API
|
|
1089
1014
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1094,19 +1019,31 @@ type GetPreviewToken200ReferencesAssets = {
|
|
|
1094
1019
|
[key: string]: {
|
|
1095
1020
|
id: string;
|
|
1096
1021
|
url: string;
|
|
1097
|
-
/** @nullable */
|
|
1098
1022
|
variants: GetPreviewToken200ReferencesAssetsVariants;
|
|
1099
|
-
/** @nullable */
|
|
1100
1023
|
alt: string | null;
|
|
1101
|
-
/** @nullable */
|
|
1102
1024
|
width: number | null;
|
|
1103
|
-
/** @nullable */
|
|
1104
1025
|
height: number | null;
|
|
1105
1026
|
};
|
|
1106
1027
|
};
|
|
1107
1028
|
|
|
1108
1029
|
/**
|
|
1109
|
-
* Generated by orval
|
|
1030
|
+
* Generated by orval v8.4.0 🍺
|
|
1031
|
+
* Do not edit manually.
|
|
1032
|
+
* CMX SDK API
|
|
1033
|
+
* CMX SDK API(コンテンツ配信+管理)
|
|
1034
|
+
* OpenAPI spec version: 1.0.0
|
|
1035
|
+
*/
|
|
1036
|
+
type GetPreviewToken200ReferencesContents = {
|
|
1037
|
+
[key: string]: {
|
|
1038
|
+
id: string;
|
|
1039
|
+
title: string;
|
|
1040
|
+
slug: string;
|
|
1041
|
+
description: string | null;
|
|
1042
|
+
};
|
|
1043
|
+
};
|
|
1044
|
+
|
|
1045
|
+
/**
|
|
1046
|
+
* Generated by orval v8.4.0 🍺
|
|
1110
1047
|
* Do not edit manually.
|
|
1111
1048
|
* CMX SDK API
|
|
1112
1049
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1119,7 +1056,7 @@ type GetPreviewToken200References = {
|
|
|
1119
1056
|
};
|
|
1120
1057
|
|
|
1121
1058
|
/**
|
|
1122
|
-
* Generated by orval
|
|
1059
|
+
* Generated by orval v8.4.0 🍺
|
|
1123
1060
|
* Do not edit manually.
|
|
1124
1061
|
* CMX SDK API
|
|
1125
1062
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1128,13 +1065,12 @@ type GetPreviewToken200References = {
|
|
|
1128
1065
|
|
|
1129
1066
|
type GetPreviewToken200 = {
|
|
1130
1067
|
content: GetPreviewToken200Content;
|
|
1131
|
-
/** @nullable */
|
|
1132
1068
|
collection: GetPreviewToken200Collection;
|
|
1133
1069
|
references: GetPreviewToken200References;
|
|
1134
1070
|
};
|
|
1135
1071
|
|
|
1136
1072
|
/**
|
|
1137
|
-
* Generated by orval
|
|
1073
|
+
* Generated by orval v8.4.0 🍺
|
|
1138
1074
|
* Do not edit manually.
|
|
1139
1075
|
* CMX SDK API
|
|
1140
1076
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1148,7 +1084,7 @@ type PublicSubmissionRequestData = {
|
|
|
1148
1084
|
};
|
|
1149
1085
|
|
|
1150
1086
|
/**
|
|
1151
|
-
* Generated by orval
|
|
1087
|
+
* Generated by orval v8.4.0 🍺
|
|
1152
1088
|
* Do not edit manually.
|
|
1153
1089
|
* CMX SDK API
|
|
1154
1090
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1163,7 +1099,7 @@ interface PublicSubmissionRequest {
|
|
|
1163
1099
|
}
|
|
1164
1100
|
|
|
1165
1101
|
/**
|
|
1166
|
-
* Generated by orval
|
|
1102
|
+
* Generated by orval v8.4.0 🍺
|
|
1167
1103
|
* Do not edit manually.
|
|
1168
1104
|
* CMX SDK API
|
|
1169
1105
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1175,7 +1111,7 @@ interface PublicSubmissionResponse {
|
|
|
1175
1111
|
}
|
|
1176
1112
|
|
|
1177
1113
|
/**
|
|
1178
|
-
* Generated by orval
|
|
1114
|
+
* Generated by orval v8.4.0 🍺
|
|
1179
1115
|
* Do not edit manually.
|
|
1180
1116
|
* CMX SDK API
|
|
1181
1117
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1186,12 +1122,11 @@ interface SchemaCollection {
|
|
|
1186
1122
|
slug: string;
|
|
1187
1123
|
name: string;
|
|
1188
1124
|
type: CollectionType;
|
|
1189
|
-
/** @nullable */
|
|
1190
1125
|
description: string | null;
|
|
1191
1126
|
}
|
|
1192
1127
|
|
|
1193
1128
|
/**
|
|
1194
|
-
* Generated by orval
|
|
1129
|
+
* Generated by orval v8.4.0 🍺
|
|
1195
1130
|
* Do not edit manually.
|
|
1196
1131
|
* CMX SDK API
|
|
1197
1132
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1203,7 +1138,7 @@ type SchemaFieldOptionChoicesItem = {
|
|
|
1203
1138
|
};
|
|
1204
1139
|
|
|
1205
1140
|
/**
|
|
1206
|
-
* Generated by orval
|
|
1141
|
+
* Generated by orval v8.4.0 🍺
|
|
1207
1142
|
* Do not edit manually.
|
|
1208
1143
|
* CMX SDK API
|
|
1209
1144
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1217,7 +1152,7 @@ interface SchemaFieldOption {
|
|
|
1217
1152
|
}
|
|
1218
1153
|
|
|
1219
1154
|
/**
|
|
1220
|
-
* Generated by orval
|
|
1155
|
+
* Generated by orval v8.4.0 🍺
|
|
1221
1156
|
* Do not edit manually.
|
|
1222
1157
|
* CMX SDK API
|
|
1223
1158
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1234,7 +1169,7 @@ interface SchemaFieldDefinition {
|
|
|
1234
1169
|
}
|
|
1235
1170
|
|
|
1236
1171
|
/**
|
|
1237
|
-
* Generated by orval
|
|
1172
|
+
* Generated by orval v8.4.0 🍺
|
|
1238
1173
|
* Do not edit manually.
|
|
1239
1174
|
* CMX SDK API
|
|
1240
1175
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1248,7 +1183,7 @@ interface SchemaDataType {
|
|
|
1248
1183
|
}
|
|
1249
1184
|
|
|
1250
1185
|
/**
|
|
1251
|
-
* Generated by orval
|
|
1186
|
+
* Generated by orval v8.4.0 🍺
|
|
1252
1187
|
* Do not edit manually.
|
|
1253
1188
|
* CMX SDK API
|
|
1254
1189
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1262,7 +1197,7 @@ interface SchemaFormDefinition {
|
|
|
1262
1197
|
}
|
|
1263
1198
|
|
|
1264
1199
|
/**
|
|
1265
|
-
* Generated by orval
|
|
1200
|
+
* Generated by orval v8.4.0 🍺
|
|
1266
1201
|
* Do not edit manually.
|
|
1267
1202
|
* CMX SDK API
|
|
1268
1203
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1276,7 +1211,7 @@ interface SchemaResponse {
|
|
|
1276
1211
|
}
|
|
1277
1212
|
|
|
1278
1213
|
/**
|
|
1279
|
-
* Generated by orval
|
|
1214
|
+
* Generated by orval v8.4.0 🍺
|
|
1280
1215
|
* Do not edit manually.
|
|
1281
1216
|
* CMX SDK API
|
|
1282
1217
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1292,7 +1227,7 @@ declare const SdkAddCollectionDataTypeRequestReferenceType: {
|
|
|
1292
1227
|
};
|
|
1293
1228
|
|
|
1294
1229
|
/**
|
|
1295
|
-
* Generated by orval
|
|
1230
|
+
* Generated by orval v8.4.0 🍺
|
|
1296
1231
|
* Do not edit manually.
|
|
1297
1232
|
* CMX SDK API
|
|
1298
1233
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1317,48 +1252,24 @@ interface SdkAddCollectionDataTypeRequest {
|
|
|
1317
1252
|
}
|
|
1318
1253
|
|
|
1319
1254
|
/**
|
|
1320
|
-
* Generated by orval
|
|
1255
|
+
* Generated by orval v8.4.0 🍺
|
|
1321
1256
|
* Do not edit manually.
|
|
1322
1257
|
* CMX SDK API
|
|
1323
1258
|
* CMX SDK API(コンテンツ配信+管理)
|
|
1324
1259
|
* OpenAPI spec version: 1.0.0
|
|
1325
1260
|
*/
|
|
1326
1261
|
|
|
1327
|
-
type
|
|
1262
|
+
type SdkCollectionDataTypeResponse = DataTypeResponse & {
|
|
1328
1263
|
referenceField?: ReferenceField;
|
|
1329
1264
|
};
|
|
1330
1265
|
|
|
1331
1266
|
/**
|
|
1332
|
-
* Generated by orval
|
|
1333
|
-
* Do not edit manually.
|
|
1334
|
-
* CMX SDK API
|
|
1335
|
-
* CMX SDK API(コンテンツ配信+管理)
|
|
1336
|
-
* OpenAPI spec version: 1.0.0
|
|
1337
|
-
*/
|
|
1338
|
-
|
|
1339
|
-
type SdkCollectionDataTypeResponse = DataTypeResponse & SdkCollectionDataTypeResponseAllOf;
|
|
1340
|
-
|
|
1341
|
-
/**
|
|
1342
|
-
* Generated by orval v7.17.2 🍺
|
|
1267
|
+
* Generated by orval v8.4.0 🍺
|
|
1343
1268
|
* Do not edit manually.
|
|
1344
1269
|
* CMX SDK API
|
|
1345
1270
|
* CMX SDK API(コンテンツ配信+管理)
|
|
1346
1271
|
* OpenAPI spec version: 1.0.0
|
|
1347
1272
|
*/
|
|
1348
|
-
/**
|
|
1349
|
-
* デフォルト値
|
|
1350
|
-
* @nullable
|
|
1351
|
-
*/
|
|
1352
|
-
type SdkComponentPropDefault = unknown | null;
|
|
1353
|
-
|
|
1354
|
-
/**
|
|
1355
|
-
* Generated by orval v7.17.2 🍺
|
|
1356
|
-
* Do not edit manually.
|
|
1357
|
-
* CMX SDK API
|
|
1358
|
-
* CMX SDK API(コンテンツ配信+管理)
|
|
1359
|
-
* OpenAPI spec version: 1.0.0
|
|
1360
|
-
*/
|
|
1361
|
-
|
|
1362
1273
|
interface SdkComponentProp {
|
|
1363
1274
|
/** プロパティの型(string, number, boolean, など) */
|
|
1364
1275
|
type: string;
|
|
@@ -1366,15 +1277,12 @@ interface SdkComponentProp {
|
|
|
1366
1277
|
description?: string;
|
|
1367
1278
|
/** 必須かどうか */
|
|
1368
1279
|
required?: boolean;
|
|
1369
|
-
/**
|
|
1370
|
-
|
|
1371
|
-
* @nullable
|
|
1372
|
-
*/
|
|
1373
|
-
default?: SdkComponentPropDefault;
|
|
1280
|
+
/** デフォルト値 */
|
|
1281
|
+
default?: unknown | null;
|
|
1374
1282
|
}
|
|
1375
1283
|
|
|
1376
1284
|
/**
|
|
1377
|
-
* Generated by orval
|
|
1285
|
+
* Generated by orval v8.4.0 🍺
|
|
1378
1286
|
* Do not edit manually.
|
|
1379
1287
|
* CMX SDK API
|
|
1380
1288
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1389,7 +1297,7 @@ type SdkComponentDefinitionPropsSchema = {
|
|
|
1389
1297
|
};
|
|
1390
1298
|
|
|
1391
1299
|
/**
|
|
1392
|
-
* Generated by orval
|
|
1300
|
+
* Generated by orval v8.4.0 🍺
|
|
1393
1301
|
* Do not edit manually.
|
|
1394
1302
|
* CMX SDK API
|
|
1395
1303
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1419,7 +1327,7 @@ interface SdkComponentDefinition {
|
|
|
1419
1327
|
}
|
|
1420
1328
|
|
|
1421
1329
|
/**
|
|
1422
|
-
* Generated by orval
|
|
1330
|
+
* Generated by orval v8.4.0 🍺
|
|
1423
1331
|
* Do not edit manually.
|
|
1424
1332
|
* CMX SDK API
|
|
1425
1333
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1434,7 +1342,7 @@ interface SdkComponentSuccessResponse {
|
|
|
1434
1342
|
}
|
|
1435
1343
|
|
|
1436
1344
|
/**
|
|
1437
|
-
* Generated by orval
|
|
1345
|
+
* Generated by orval v8.4.0 🍺
|
|
1438
1346
|
* Do not edit manually.
|
|
1439
1347
|
* CMX SDK API
|
|
1440
1348
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1447,7 +1355,7 @@ interface SdkComponentSyncRequest {
|
|
|
1447
1355
|
}
|
|
1448
1356
|
|
|
1449
1357
|
/**
|
|
1450
|
-
* Generated by orval
|
|
1358
|
+
* Generated by orval v8.4.0 🍺
|
|
1451
1359
|
* Do not edit manually.
|
|
1452
1360
|
* CMX SDK API
|
|
1453
1361
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1458,7 +1366,7 @@ type SdkContentReferencesResponseReferencesItemDataEntriesItemData = {
|
|
|
1458
1366
|
};
|
|
1459
1367
|
|
|
1460
1368
|
/**
|
|
1461
|
-
* Generated by orval
|
|
1369
|
+
* Generated by orval v8.4.0 🍺
|
|
1462
1370
|
* Do not edit manually.
|
|
1463
1371
|
* CMX SDK API
|
|
1464
1372
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1471,7 +1379,7 @@ type SdkContentReferencesResponseReferencesItemDataEntriesItem = {
|
|
|
1471
1379
|
};
|
|
1472
1380
|
|
|
1473
1381
|
/**
|
|
1474
|
-
* Generated by orval
|
|
1382
|
+
* Generated by orval v8.4.0 🍺
|
|
1475
1383
|
* Do not edit manually.
|
|
1476
1384
|
* CMX SDK API
|
|
1477
1385
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1484,7 +1392,7 @@ type SdkContentReferencesResponseReferencesItem = {
|
|
|
1484
1392
|
};
|
|
1485
1393
|
|
|
1486
1394
|
/**
|
|
1487
|
-
* Generated by orval
|
|
1395
|
+
* Generated by orval v8.4.0 🍺
|
|
1488
1396
|
* Do not edit manually.
|
|
1489
1397
|
* CMX SDK API
|
|
1490
1398
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1496,7 +1404,7 @@ interface SdkContentReferencesResponse {
|
|
|
1496
1404
|
}
|
|
1497
1405
|
|
|
1498
1406
|
/**
|
|
1499
|
-
* Generated by orval
|
|
1407
|
+
* Generated by orval v8.4.0 🍺
|
|
1500
1408
|
* Do not edit manually.
|
|
1501
1409
|
* CMX SDK API
|
|
1502
1410
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1510,7 +1418,7 @@ declare const SdkCreateContentResponseWarningsItemIssueType: {
|
|
|
1510
1418
|
};
|
|
1511
1419
|
|
|
1512
1420
|
/**
|
|
1513
|
-
* Generated by orval
|
|
1421
|
+
* Generated by orval v8.4.0 🍺
|
|
1514
1422
|
* Do not edit manually.
|
|
1515
1423
|
* CMX SDK API
|
|
1516
1424
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1523,7 +1431,7 @@ declare const SdkCreateContentResponseWarningsItemTargetType: {
|
|
|
1523
1431
|
};
|
|
1524
1432
|
|
|
1525
1433
|
/**
|
|
1526
|
-
* Generated by orval
|
|
1434
|
+
* Generated by orval v8.4.0 🍺
|
|
1527
1435
|
* Do not edit manually.
|
|
1528
1436
|
* CMX SDK API
|
|
1529
1437
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1540,7 +1448,7 @@ type SdkCreateContentResponseWarningsItem = {
|
|
|
1540
1448
|
};
|
|
1541
1449
|
|
|
1542
1450
|
/**
|
|
1543
|
-
* Generated by orval
|
|
1451
|
+
* Generated by orval v8.4.0 🍺
|
|
1544
1452
|
* Do not edit manually.
|
|
1545
1453
|
* CMX SDK API
|
|
1546
1454
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1554,7 +1462,7 @@ interface SdkCreateContentResponse {
|
|
|
1554
1462
|
}
|
|
1555
1463
|
|
|
1556
1464
|
/**
|
|
1557
|
-
* Generated by orval
|
|
1465
|
+
* Generated by orval v8.4.0 🍺
|
|
1558
1466
|
* Do not edit manually.
|
|
1559
1467
|
* CMX SDK API
|
|
1560
1468
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1565,7 +1473,7 @@ type SdkCreateEntryRequestDataJson = {
|
|
|
1565
1473
|
};
|
|
1566
1474
|
|
|
1567
1475
|
/**
|
|
1568
|
-
* Generated by orval
|
|
1476
|
+
* Generated by orval v8.4.0 🍺
|
|
1569
1477
|
* Do not edit manually.
|
|
1570
1478
|
* CMX SDK API
|
|
1571
1479
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1581,7 +1489,7 @@ declare const SdkCreateEntryRequestStatus: {
|
|
|
1581
1489
|
};
|
|
1582
1490
|
|
|
1583
1491
|
/**
|
|
1584
|
-
* Generated by orval
|
|
1492
|
+
* Generated by orval v8.4.0 🍺
|
|
1585
1493
|
* Do not edit manually.
|
|
1586
1494
|
* CMX SDK API
|
|
1587
1495
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1595,32 +1503,32 @@ interface SdkCreateEntryRequest {
|
|
|
1595
1503
|
}
|
|
1596
1504
|
|
|
1597
1505
|
/**
|
|
1598
|
-
* Generated by orval
|
|
1506
|
+
* Generated by orval v8.4.0 🍺
|
|
1599
1507
|
* Do not edit manually.
|
|
1600
1508
|
* CMX SDK API
|
|
1601
1509
|
* CMX SDK API(コンテンツ配信+管理)
|
|
1602
1510
|
* OpenAPI spec version: 1.0.0
|
|
1603
1511
|
*/
|
|
1604
|
-
type
|
|
1605
|
-
|
|
1606
|
-
readonly requested: "requested";
|
|
1607
|
-
readonly ready: "ready";
|
|
1608
|
-
readonly deprecated: "deprecated";
|
|
1512
|
+
type SdkCustomComponentResponsePropsSchema = {
|
|
1513
|
+
[key: string]: unknown | null;
|
|
1609
1514
|
};
|
|
1610
1515
|
|
|
1611
1516
|
/**
|
|
1612
|
-
* Generated by orval
|
|
1517
|
+
* Generated by orval v8.4.0 🍺
|
|
1613
1518
|
* Do not edit manually.
|
|
1614
1519
|
* CMX SDK API
|
|
1615
1520
|
* CMX SDK API(コンテンツ配信+管理)
|
|
1616
1521
|
* OpenAPI spec version: 1.0.0
|
|
1617
1522
|
*/
|
|
1618
|
-
type
|
|
1619
|
-
|
|
1523
|
+
type SdkCustomComponentResponseStatus = typeof SdkCustomComponentResponseStatus[keyof typeof SdkCustomComponentResponseStatus];
|
|
1524
|
+
declare const SdkCustomComponentResponseStatus: {
|
|
1525
|
+
readonly requested: "requested";
|
|
1526
|
+
readonly ready: "ready";
|
|
1527
|
+
readonly deprecated: "deprecated";
|
|
1620
1528
|
};
|
|
1621
1529
|
|
|
1622
1530
|
/**
|
|
1623
|
-
* Generated by orval
|
|
1531
|
+
* Generated by orval v8.4.0 🍺
|
|
1624
1532
|
* Do not edit manually.
|
|
1625
1533
|
* CMX SDK API
|
|
1626
1534
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1631,18 +1539,16 @@ interface SdkCustomComponentResponse {
|
|
|
1631
1539
|
id: string;
|
|
1632
1540
|
name: string;
|
|
1633
1541
|
displayName: string;
|
|
1634
|
-
/** @nullable */
|
|
1635
1542
|
description: string | null;
|
|
1636
1543
|
status: SdkCustomComponentResponseStatus;
|
|
1637
1544
|
propsSchema: SdkCustomComponentResponsePropsSchema;
|
|
1638
|
-
/** @nullable */
|
|
1639
1545
|
examples: string[] | null;
|
|
1640
1546
|
createdAt: string;
|
|
1641
1547
|
updatedAt: string;
|
|
1642
1548
|
}
|
|
1643
1549
|
|
|
1644
1550
|
/**
|
|
1645
|
-
* Generated by orval
|
|
1551
|
+
* Generated by orval v8.4.0 🍺
|
|
1646
1552
|
* Do not edit manually.
|
|
1647
1553
|
* CMX SDK API
|
|
1648
1554
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1654,25 +1560,7 @@ interface SdkCustomComponentsListResponse {
|
|
|
1654
1560
|
}
|
|
1655
1561
|
|
|
1656
1562
|
/**
|
|
1657
|
-
* Generated by orval
|
|
1658
|
-
* Do not edit manually.
|
|
1659
|
-
* CMX SDK API
|
|
1660
|
-
* CMX SDK API(コンテンツ配信+管理)
|
|
1661
|
-
* OpenAPI spec version: 1.0.0
|
|
1662
|
-
*/
|
|
1663
|
-
|
|
1664
|
-
interface SdkDataTypeInfo {
|
|
1665
|
-
id: string;
|
|
1666
|
-
slug: string;
|
|
1667
|
-
name: string;
|
|
1668
|
-
/** @nullable */
|
|
1669
|
-
description: string | null;
|
|
1670
|
-
fields: FieldDefinition[];
|
|
1671
|
-
configJson?: DataTypeConfig;
|
|
1672
|
-
}
|
|
1673
|
-
|
|
1674
|
-
/**
|
|
1675
|
-
* Generated by orval v7.17.2 🍺
|
|
1563
|
+
* Generated by orval v8.4.0 🍺
|
|
1676
1564
|
* Do not edit manually.
|
|
1677
1565
|
* CMX SDK API
|
|
1678
1566
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1683,7 +1571,7 @@ type SdkDataEntryResponseDataJson = {
|
|
|
1683
1571
|
};
|
|
1684
1572
|
|
|
1685
1573
|
/**
|
|
1686
|
-
* Generated by orval
|
|
1574
|
+
* Generated by orval v8.4.0 🍺
|
|
1687
1575
|
* Do not edit manually.
|
|
1688
1576
|
* CMX SDK API
|
|
1689
1577
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1699,44 +1587,43 @@ declare const SdkDataEntryResponseStatus: {
|
|
|
1699
1587
|
};
|
|
1700
1588
|
|
|
1701
1589
|
/**
|
|
1702
|
-
* Generated by orval
|
|
1590
|
+
* Generated by orval v8.4.0 🍺
|
|
1703
1591
|
* Do not edit manually.
|
|
1704
1592
|
* CMX SDK API
|
|
1705
1593
|
* CMX SDK API(コンテンツ配信+管理)
|
|
1706
1594
|
* OpenAPI spec version: 1.0.0
|
|
1707
1595
|
*/
|
|
1708
|
-
type SdkDataEntryResponseCreatedAt = Date | string;
|
|
1709
1596
|
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1597
|
+
interface SdkDataEntryResponse {
|
|
1598
|
+
id: string;
|
|
1599
|
+
dataTypeId: string;
|
|
1600
|
+
dataJson: SdkDataEntryResponseDataJson;
|
|
1601
|
+
/** データエントリのステータス */
|
|
1602
|
+
status: SdkDataEntryResponseStatus;
|
|
1603
|
+
sortOrder: number;
|
|
1604
|
+
createdAt: Date;
|
|
1605
|
+
updatedAt: Date;
|
|
1606
|
+
}
|
|
1718
1607
|
|
|
1719
1608
|
/**
|
|
1720
|
-
* Generated by orval
|
|
1609
|
+
* Generated by orval v8.4.0 🍺
|
|
1721
1610
|
* Do not edit manually.
|
|
1722
1611
|
* CMX SDK API
|
|
1723
1612
|
* CMX SDK API(コンテンツ配信+管理)
|
|
1724
1613
|
* OpenAPI spec version: 1.0.0
|
|
1725
1614
|
*/
|
|
1726
1615
|
|
|
1727
|
-
interface
|
|
1616
|
+
interface SdkDataTypeInfo {
|
|
1728
1617
|
id: string;
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
createdAt: SdkDataEntryResponseCreatedAt;
|
|
1735
|
-
updatedAt: SdkDataEntryResponseUpdatedAt;
|
|
1618
|
+
slug: string;
|
|
1619
|
+
name: string;
|
|
1620
|
+
description: string | null;
|
|
1621
|
+
fields: FieldDefinition[];
|
|
1622
|
+
configJson?: DataTypeConfig | null;
|
|
1736
1623
|
}
|
|
1737
1624
|
|
|
1738
1625
|
/**
|
|
1739
|
-
* Generated by orval
|
|
1626
|
+
* Generated by orval v8.4.0 🍺
|
|
1740
1627
|
* Do not edit manually.
|
|
1741
1628
|
* CMX SDK API
|
|
1742
1629
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1749,7 +1636,7 @@ interface SdkDataEntriesListResponse {
|
|
|
1749
1636
|
}
|
|
1750
1637
|
|
|
1751
1638
|
/**
|
|
1752
|
-
* Generated by orval
|
|
1639
|
+
* Generated by orval v8.4.0 🍺
|
|
1753
1640
|
* Do not edit manually.
|
|
1754
1641
|
* CMX SDK API
|
|
1755
1642
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1764,7 +1651,7 @@ interface SdkDataEntryDeletionImpactItem {
|
|
|
1764
1651
|
}
|
|
1765
1652
|
|
|
1766
1653
|
/**
|
|
1767
|
-
* Generated by orval
|
|
1654
|
+
* Generated by orval v8.4.0 🍺
|
|
1768
1655
|
* Do not edit manually.
|
|
1769
1656
|
* CMX SDK API
|
|
1770
1657
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1780,7 +1667,7 @@ interface SdkDataEntryDeletionImpactResponse {
|
|
|
1780
1667
|
}
|
|
1781
1668
|
|
|
1782
1669
|
/**
|
|
1783
|
-
* Generated by orval
|
|
1670
|
+
* Generated by orval v8.4.0 🍺
|
|
1784
1671
|
* Do not edit manually.
|
|
1785
1672
|
* CMX SDK API
|
|
1786
1673
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1793,7 +1680,7 @@ interface SdkDataEntryDetailResponse {
|
|
|
1793
1680
|
}
|
|
1794
1681
|
|
|
1795
1682
|
/**
|
|
1796
|
-
* Generated by orval
|
|
1683
|
+
* Generated by orval v8.4.0 🍺
|
|
1797
1684
|
* Do not edit manually.
|
|
1798
1685
|
* CMX SDK API
|
|
1799
1686
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1804,7 +1691,7 @@ interface SdkDeleteCollectionDataTypeResponse {
|
|
|
1804
1691
|
}
|
|
1805
1692
|
|
|
1806
1693
|
/**
|
|
1807
|
-
* Generated by orval
|
|
1694
|
+
* Generated by orval v8.4.0 🍺
|
|
1808
1695
|
* Do not edit manually.
|
|
1809
1696
|
* CMX SDK API
|
|
1810
1697
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1815,7 +1702,7 @@ interface SdkDeleteCollectionResponse {
|
|
|
1815
1702
|
}
|
|
1816
1703
|
|
|
1817
1704
|
/**
|
|
1818
|
-
* Generated by orval
|
|
1705
|
+
* Generated by orval v8.4.0 🍺
|
|
1819
1706
|
* Do not edit manually.
|
|
1820
1707
|
* CMX SDK API
|
|
1821
1708
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1826,7 +1713,7 @@ interface SdkDeleteDataEntryResponse {
|
|
|
1826
1713
|
}
|
|
1827
1714
|
|
|
1828
1715
|
/**
|
|
1829
|
-
* Generated by orval
|
|
1716
|
+
* Generated by orval v8.4.0 🍺
|
|
1830
1717
|
* Do not edit manually.
|
|
1831
1718
|
* CMX SDK API
|
|
1832
1719
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1837,7 +1724,7 @@ interface SdkDeleteDataTypeResponse {
|
|
|
1837
1724
|
}
|
|
1838
1725
|
|
|
1839
1726
|
/**
|
|
1840
|
-
* Generated by orval
|
|
1727
|
+
* Generated by orval v8.4.0 🍺
|
|
1841
1728
|
* Do not edit manually.
|
|
1842
1729
|
* CMX SDK API
|
|
1843
1730
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1848,7 +1735,7 @@ interface SdkDeleteFormDefinitionResponse {
|
|
|
1848
1735
|
}
|
|
1849
1736
|
|
|
1850
1737
|
/**
|
|
1851
|
-
* Generated by orval
|
|
1738
|
+
* Generated by orval v8.4.0 🍺
|
|
1852
1739
|
* Do not edit manually.
|
|
1853
1740
|
* CMX SDK API
|
|
1854
1741
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1864,7 +1751,7 @@ declare const SdkLinkExistingDataTypeRequestReferenceType: {
|
|
|
1864
1751
|
};
|
|
1865
1752
|
|
|
1866
1753
|
/**
|
|
1867
|
-
* Generated by orval
|
|
1754
|
+
* Generated by orval v8.4.0 🍺
|
|
1868
1755
|
* Do not edit manually.
|
|
1869
1756
|
* CMX SDK API
|
|
1870
1757
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1892,7 +1779,7 @@ interface SdkLinkExistingDataTypeRequest {
|
|
|
1892
1779
|
}
|
|
1893
1780
|
|
|
1894
1781
|
/**
|
|
1895
|
-
* Generated by orval
|
|
1782
|
+
* Generated by orval v8.4.0 🍺
|
|
1896
1783
|
* Do not edit manually.
|
|
1897
1784
|
* CMX SDK API
|
|
1898
1785
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1906,7 +1793,7 @@ interface SdkPublishContentResponse {
|
|
|
1906
1793
|
}
|
|
1907
1794
|
|
|
1908
1795
|
/**
|
|
1909
|
-
* Generated by orval
|
|
1796
|
+
* Generated by orval v8.4.0 🍺
|
|
1910
1797
|
* Do not edit manually.
|
|
1911
1798
|
* CMX SDK API
|
|
1912
1799
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1919,7 +1806,7 @@ interface SdkRequestReviewResponse {
|
|
|
1919
1806
|
}
|
|
1920
1807
|
|
|
1921
1808
|
/**
|
|
1922
|
-
* Generated by orval
|
|
1809
|
+
* Generated by orval v8.4.0 🍺
|
|
1923
1810
|
* Do not edit manually.
|
|
1924
1811
|
* CMX SDK API
|
|
1925
1812
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1931,7 +1818,7 @@ type SdkSetContentReferencesRequestReferencesItem = {
|
|
|
1931
1818
|
};
|
|
1932
1819
|
|
|
1933
1820
|
/**
|
|
1934
|
-
* Generated by orval
|
|
1821
|
+
* Generated by orval v8.4.0 🍺
|
|
1935
1822
|
* Do not edit manually.
|
|
1936
1823
|
* CMX SDK API
|
|
1937
1824
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1943,7 +1830,7 @@ interface SdkSetContentReferencesRequest {
|
|
|
1943
1830
|
}
|
|
1944
1831
|
|
|
1945
1832
|
/**
|
|
1946
|
-
* Generated by orval
|
|
1833
|
+
* Generated by orval v8.4.0 🍺
|
|
1947
1834
|
* Do not edit manually.
|
|
1948
1835
|
* CMX SDK API
|
|
1949
1836
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1954,7 +1841,7 @@ interface SdkSetContentReferencesResponse {
|
|
|
1954
1841
|
}
|
|
1955
1842
|
|
|
1956
1843
|
/**
|
|
1957
|
-
* Generated by orval
|
|
1844
|
+
* Generated by orval v8.4.0 🍺
|
|
1958
1845
|
* Do not edit manually.
|
|
1959
1846
|
* CMX SDK API
|
|
1960
1847
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1965,7 +1852,7 @@ type SdkUpdateEntryRequestDataJson = {
|
|
|
1965
1852
|
};
|
|
1966
1853
|
|
|
1967
1854
|
/**
|
|
1968
|
-
* Generated by orval
|
|
1855
|
+
* Generated by orval v8.4.0 🍺
|
|
1969
1856
|
* Do not edit manually.
|
|
1970
1857
|
* CMX SDK API
|
|
1971
1858
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1981,7 +1868,7 @@ declare const SdkUpdateEntryRequestStatus: {
|
|
|
1981
1868
|
};
|
|
1982
1869
|
|
|
1983
1870
|
/**
|
|
1984
|
-
* Generated by orval
|
|
1871
|
+
* Generated by orval v8.4.0 🍺
|
|
1985
1872
|
* Do not edit manually.
|
|
1986
1873
|
* CMX SDK API
|
|
1987
1874
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -1996,7 +1883,7 @@ interface SdkUpdateEntryRequest {
|
|
|
1996
1883
|
}
|
|
1997
1884
|
|
|
1998
1885
|
/**
|
|
1999
|
-
* Generated by orval
|
|
1886
|
+
* Generated by orval v8.4.0 🍺
|
|
2000
1887
|
* Do not edit manually.
|
|
2001
1888
|
* CMX SDK API
|
|
2002
1889
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -2008,13 +1895,12 @@ interface UpdateCollectionRequest {
|
|
|
2008
1895
|
slug?: string;
|
|
2009
1896
|
/** @minLength 1 */
|
|
2010
1897
|
name?: string;
|
|
2011
|
-
/** @nullable */
|
|
2012
1898
|
description?: string | null;
|
|
2013
1899
|
configJson?: CollectionConfig;
|
|
2014
1900
|
}
|
|
2015
1901
|
|
|
2016
1902
|
/**
|
|
2017
|
-
* Generated by orval
|
|
1903
|
+
* Generated by orval v8.4.0 🍺
|
|
2018
1904
|
* Do not edit manually.
|
|
2019
1905
|
* CMX SDK API
|
|
2020
1906
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -2024,7 +1910,6 @@ interface UpdateCollectionRequest {
|
|
|
2024
1910
|
interface UpdateDataTypeRequest {
|
|
2025
1911
|
/** @minLength 1 */
|
|
2026
1912
|
name?: string;
|
|
2027
|
-
/** @nullable */
|
|
2028
1913
|
description?: string | null;
|
|
2029
1914
|
fields?: FieldDefinition[];
|
|
2030
1915
|
displayField?: string;
|
|
@@ -2032,7 +1917,7 @@ interface UpdateDataTypeRequest {
|
|
|
2032
1917
|
}
|
|
2033
1918
|
|
|
2034
1919
|
/**
|
|
2035
|
-
* Generated by orval
|
|
1920
|
+
* Generated by orval v8.4.0 🍺
|
|
2036
1921
|
* Do not edit manually.
|
|
2037
1922
|
* CMX SDK API
|
|
2038
1923
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -2043,7 +1928,7 @@ type UpdateFormDefinitionRequestConfigJson = {
|
|
|
2043
1928
|
};
|
|
2044
1929
|
|
|
2045
1930
|
/**
|
|
2046
|
-
* Generated by orval
|
|
1931
|
+
* Generated by orval v8.4.0 🍺
|
|
2047
1932
|
* Do not edit manually.
|
|
2048
1933
|
* CMX SDK API
|
|
2049
1934
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -2053,7 +1938,6 @@ type UpdateFormDefinitionRequestConfigJson = {
|
|
|
2053
1938
|
interface UpdateFormDefinitionRequest {
|
|
2054
1939
|
/** @minLength 1 */
|
|
2055
1940
|
name?: string;
|
|
2056
|
-
/** @nullable */
|
|
2057
1941
|
description?: string | null;
|
|
2058
1942
|
fields?: FieldDefinition[];
|
|
2059
1943
|
enabled?: boolean;
|
|
@@ -2061,7 +1945,7 @@ interface UpdateFormDefinitionRequest {
|
|
|
2061
1945
|
}
|
|
2062
1946
|
|
|
2063
1947
|
/**
|
|
2064
|
-
* Generated by orval
|
|
1948
|
+
* Generated by orval v8.4.0 🍺
|
|
2065
1949
|
* Do not edit manually.
|
|
2066
1950
|
* CMX SDK API
|
|
2067
1951
|
* CMX SDK API(コンテンツ配信+管理)
|
|
@@ -2465,63 +2349,46 @@ declare const mdxComponents: {
|
|
|
2465
2349
|
declare const componentSchemas: {
|
|
2466
2350
|
readonly BlogCard: z.ZodObject<{
|
|
2467
2351
|
contentId: z.ZodString;
|
|
2468
|
-
},
|
|
2469
|
-
contentId: string;
|
|
2470
|
-
}, {
|
|
2471
|
-
contentId: string;
|
|
2472
|
-
}>;
|
|
2352
|
+
}, z.core.$strip>;
|
|
2473
2353
|
readonly Image: z.ZodObject<{
|
|
2474
2354
|
assetId: z.ZodString;
|
|
2475
2355
|
alt: z.ZodOptional<z.ZodString>;
|
|
2476
|
-
size: z.ZodDefault<z.ZodEnum<
|
|
2356
|
+
size: z.ZodDefault<z.ZodEnum<{
|
|
2357
|
+
thumbnail: "thumbnail";
|
|
2358
|
+
medium: "medium";
|
|
2359
|
+
large: "large";
|
|
2360
|
+
original: "original";
|
|
2361
|
+
}>>;
|
|
2477
2362
|
caption: z.ZodOptional<z.ZodString>;
|
|
2478
|
-
},
|
|
2479
|
-
size: "thumbnail" | "medium" | "large" | "original";
|
|
2480
|
-
assetId: string;
|
|
2481
|
-
alt?: string | undefined;
|
|
2482
|
-
caption?: string | undefined;
|
|
2483
|
-
}, {
|
|
2484
|
-
assetId: string;
|
|
2485
|
-
size?: "thumbnail" | "medium" | "large" | "original" | undefined;
|
|
2486
|
-
alt?: string | undefined;
|
|
2487
|
-
caption?: string | undefined;
|
|
2488
|
-
}>;
|
|
2363
|
+
}, z.core.$strip>;
|
|
2489
2364
|
readonly Callout: z.ZodObject<{
|
|
2490
|
-
type: z.ZodDefault<z.ZodEnum<
|
|
2365
|
+
type: z.ZodDefault<z.ZodEnum<{
|
|
2366
|
+
error: "error";
|
|
2367
|
+
info: "info";
|
|
2368
|
+
warning: "warning";
|
|
2369
|
+
success: "success";
|
|
2370
|
+
tip: "tip";
|
|
2371
|
+
}>>;
|
|
2491
2372
|
title: z.ZodOptional<z.ZodString>;
|
|
2492
2373
|
children: z.ZodString;
|
|
2493
|
-
},
|
|
2494
|
-
type: "error" | "info" | "warning" | "success" | "tip";
|
|
2495
|
-
children: string;
|
|
2496
|
-
title?: string | undefined;
|
|
2497
|
-
}, {
|
|
2498
|
-
children: string;
|
|
2499
|
-
type?: "error" | "info" | "warning" | "success" | "tip" | undefined;
|
|
2500
|
-
title?: string | undefined;
|
|
2501
|
-
}>;
|
|
2374
|
+
}, z.core.$strip>;
|
|
2502
2375
|
readonly Embed: z.ZodObject<{
|
|
2503
2376
|
url: z.ZodString;
|
|
2504
|
-
type: z.ZodDefault<z.ZodEnum<
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
type?: "youtube" | "twitter" | "generic" | undefined;
|
|
2511
|
-
}>;
|
|
2377
|
+
type: z.ZodDefault<z.ZodEnum<{
|
|
2378
|
+
youtube: "youtube";
|
|
2379
|
+
twitter: "twitter";
|
|
2380
|
+
generic: "generic";
|
|
2381
|
+
}>>;
|
|
2382
|
+
}, z.core.$strip>;
|
|
2512
2383
|
readonly Button: z.ZodObject<{
|
|
2513
2384
|
href: z.ZodString;
|
|
2514
2385
|
children: z.ZodString;
|
|
2515
|
-
variant: z.ZodDefault<z.ZodEnum<
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
},
|
|
2521
|
-
href: string;
|
|
2522
|
-
children: string;
|
|
2523
|
-
variant?: "primary" | "secondary" | "outline" | undefined;
|
|
2524
|
-
}>;
|
|
2386
|
+
variant: z.ZodDefault<z.ZodEnum<{
|
|
2387
|
+
primary: "primary";
|
|
2388
|
+
secondary: "secondary";
|
|
2389
|
+
outline: "outline";
|
|
2390
|
+
}>>;
|
|
2391
|
+
}, z.core.$strip>;
|
|
2525
2392
|
};
|
|
2526
2393
|
type ComponentName = keyof typeof componentSchemas;
|
|
2527
2394
|
type ComponentSource = "standard" | "custom";
|
|
@@ -2646,4 +2513,4 @@ declare function renderMdx(mdx: string, references?: References, options?: Rende
|
|
|
2646
2513
|
*/
|
|
2647
2514
|
declare function renderMdxPreview(mdx: string, additionalComponents?: Record<string, React.ComponentType<any>>): Promise<React.ReactElement>;
|
|
2648
2515
|
|
|
2649
|
-
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, type CreateCollectionRequest, type CreateContentRequest, type CreateDataTypeRequest, type CreateFormDefinitionRequest, type DataEntriesOptions, type DataEntryDetailResponse, type DataEntryItem, type DataListResponse, type DataTypeConfig, type DataTypeResponse, type DeleteManageDataTypeSlugIdParams, Embed, type ErrorResponse, type ErrorResponseDetails, type FetchOptions, type FieldDefinition, type
|
|
2516
|
+
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, type CreateCollectionRequest, type CreateContentRequest, type CreateDataTypeRequest, type CreateFormDefinitionRequest, type DataEntriesOptions, type DataEntryDetailResponse, type DataEntryItem, type DataListResponse, type DataTypeConfig, type DataTypeResponse, type DeleteManageDataTypeSlugIdParams, Embed, type ErrorResponse, type ErrorResponseDetails, type FetchOptions, type FieldDefinition, type FieldOptions, type FieldOptionsChoicesItem, FieldType, type FormDefinitionResponse, type FormDefinitionResponseConfigJson, type GetCollectionsSlugContentsParams, GetCollectionsSlugContentsSortBy, GetCollectionsSlugContentsSortOrder, type GetDataTypeSlugParams, GetDataTypeSlugSortBy, GetDataTypeSlugSortOrder, type GetManageCollectionPresets200, type GetManageCollectionPresetsParams, GetManageCollectionPresetsType, 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 SdkCollectionDataTypeResponse, type SdkComponentDefinition, type SdkComponentDefinitionPropsSchema, type SdkComponentProp, type SdkComponentSuccessResponse, type SdkComponentSyncRequest, 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 SdkDeleteDataEntryResponse, type SdkDeleteDataTypeResponse, type SdkDeleteFormDefinitionResponse, type SdkLinkExistingDataTypeRequest, SdkLinkExistingDataTypeRequestReferenceType, type SdkPreset, SdkPresetReferenceType, type SdkPublishContentResponse, type SdkRequestReviewResponse, type SdkSetContentReferencesRequest, type SdkSetContentReferencesRequestReferencesItem, type SdkSetContentReferencesResponse, type SdkUpdateEntryRequest, type SdkUpdateEntryRequestDataJson, SdkUpdateEntryRequestStatus, type UpdateCollectionRequest, type UpdateDataTypeRequest, type UpdateFormDefinitionRequest, type UpdateFormDefinitionRequestConfigJson, type ValidationError, type ValidationResult, basicComponents, componentCatalog, componentSchemas, customComponents, getCatalogForAI, getCollectionContentDetail, getCollectionContentDetailOrThrow, getCollectionContents, getCollectionContentsOrThrow, getCollections, getCollectionsSlugContents, getCollectionsSlugContentsContentSlug, getComponentsByCategory, getComponentsWithReferences, getDataEntries, getDataEntriesOrThrow, getDataEntry, getDataEntryOrThrow, getDataTypeSlug, getGetCollectionsSlugContentsContentSlugUrl, getGetCollectionsSlugContentsUrl, getGetDataTypeSlugUrl, getGetPreviewTokenUrl, getPreviewByToken, getPreviewToken, getSchema, getSdkApiBaseUrl, getSdkApiToken, isValidComponent, markdownComponents, mdxComponents, quickValidateMdx, renderMdx, renderMdxPreview, sdkCustomInstance, sdkFetchWithTags, sdkFetcher, sdkPostFetcher, submitFormData, validateComponentProps, validateMdx };
|