perspectapi-ts-sdk 5.4.4 → 5.4.5
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
|
@@ -3112,6 +3112,8 @@ interface V2Media extends V2Object {
|
|
|
3112
3112
|
width: number | null;
|
|
3113
3113
|
height: number | null;
|
|
3114
3114
|
filesize: number | null;
|
|
3115
|
+
caption: string | null;
|
|
3116
|
+
alt_text: string | null;
|
|
3115
3117
|
}
|
|
3116
3118
|
interface V2Content extends V2Object {
|
|
3117
3119
|
object: "content";
|
package/dist/index.d.ts
CHANGED
|
@@ -3112,6 +3112,8 @@ interface V2Media extends V2Object {
|
|
|
3112
3112
|
width: number | null;
|
|
3113
3113
|
height: number | null;
|
|
3114
3114
|
filesize: number | null;
|
|
3115
|
+
caption: string | null;
|
|
3116
|
+
alt_text: string | null;
|
|
3115
3117
|
}
|
|
3116
3118
|
interface V2Content extends V2Object {
|
|
3117
3119
|
object: "content";
|
package/package.json
CHANGED