perspectapi-ts-sdk 6.1.0 → 6.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/v2/types.ts +2 -0
package/dist/index.d.mts
CHANGED
|
@@ -1222,6 +1222,7 @@ interface V2Content extends V2Object {
|
|
|
1222
1222
|
title: string;
|
|
1223
1223
|
content: string;
|
|
1224
1224
|
markdown: string | null;
|
|
1225
|
+
excerpt: string | null;
|
|
1225
1226
|
slug: string;
|
|
1226
1227
|
slug_prefix: string | null;
|
|
1227
1228
|
type: "post" | "page" | "block";
|
|
@@ -1238,6 +1239,7 @@ interface V2ContentCreateParams {
|
|
|
1238
1239
|
title: string;
|
|
1239
1240
|
content: string;
|
|
1240
1241
|
markdown?: string;
|
|
1242
|
+
excerpt?: string;
|
|
1241
1243
|
custom?: Record<string, unknown>;
|
|
1242
1244
|
slug?: string;
|
|
1243
1245
|
slug_prefix?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1222,6 +1222,7 @@ interface V2Content extends V2Object {
|
|
|
1222
1222
|
title: string;
|
|
1223
1223
|
content: string;
|
|
1224
1224
|
markdown: string | null;
|
|
1225
|
+
excerpt: string | null;
|
|
1225
1226
|
slug: string;
|
|
1226
1227
|
slug_prefix: string | null;
|
|
1227
1228
|
type: "post" | "page" | "block";
|
|
@@ -1238,6 +1239,7 @@ interface V2ContentCreateParams {
|
|
|
1238
1239
|
title: string;
|
|
1239
1240
|
content: string;
|
|
1240
1241
|
markdown?: string;
|
|
1242
|
+
excerpt?: string;
|
|
1241
1243
|
custom?: Record<string, unknown>;
|
|
1242
1244
|
slug?: string;
|
|
1243
1245
|
slug_prefix?: string;
|
package/package.json
CHANGED
package/src/v2/types.ts
CHANGED
|
@@ -71,6 +71,7 @@ export interface V2Content extends V2Object {
|
|
|
71
71
|
title: string;
|
|
72
72
|
content: string;
|
|
73
73
|
markdown: string | null;
|
|
74
|
+
excerpt: string | null;
|
|
74
75
|
slug: string;
|
|
75
76
|
slug_prefix: string | null;
|
|
76
77
|
type: "post" | "page" | "block";
|
|
@@ -88,6 +89,7 @@ export interface V2ContentCreateParams {
|
|
|
88
89
|
title: string;
|
|
89
90
|
content: string;
|
|
90
91
|
markdown?: string;
|
|
92
|
+
excerpt?: string;
|
|
91
93
|
custom?: Record<string, unknown>;
|
|
92
94
|
slug?: string;
|
|
93
95
|
slug_prefix?: string;
|