@xpoz/xpoz 0.6.5 → 0.6.6

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.cjs CHANGED
@@ -298,7 +298,7 @@ function coerce(value) {
298
298
  }
299
299
 
300
300
  // src/version.ts
301
- var VERSION = "0.6.5";
301
+ var VERSION = "0.6.6";
302
302
 
303
303
  // src/mcp/transport.ts
304
304
  var USER_AGENT = `xpoz-ts-sdk/${VERSION}`;
package/dist/index.d.cts CHANGED
@@ -550,6 +550,7 @@ interface TiktokPost {
550
550
  hashtags?: string[] | null;
551
551
  duration?: number | null;
552
552
  videoUrl?: string[] | null;
553
+ transcriptsJson?: Record<string, string> | null;
553
554
  createdAt?: string | null;
554
555
  createdAtTimestamp?: number | null;
555
556
  createdAtDate?: string | null;
@@ -777,7 +778,7 @@ declare class OperationCancelledError extends XpozError {
777
778
  constructor(operationId: string);
778
779
  }
779
780
 
780
- declare const VERSION = "0.6.5";
781
+ declare const VERSION = "0.6.6";
781
782
 
782
783
  declare function checkForUpdates(): Promise<void>;
783
784
 
package/dist/index.d.ts CHANGED
@@ -550,6 +550,7 @@ interface TiktokPost {
550
550
  hashtags?: string[] | null;
551
551
  duration?: number | null;
552
552
  videoUrl?: string[] | null;
553
+ transcriptsJson?: Record<string, string> | null;
553
554
  createdAt?: string | null;
554
555
  createdAtTimestamp?: number | null;
555
556
  createdAtDate?: string | null;
@@ -777,7 +778,7 @@ declare class OperationCancelledError extends XpozError {
777
778
  constructor(operationId: string);
778
779
  }
779
780
 
780
- declare const VERSION = "0.6.5";
781
+ declare const VERSION = "0.6.6";
781
782
 
782
783
  declare function checkForUpdates(): Promise<void>;
783
784
 
package/dist/index.js CHANGED
@@ -248,7 +248,7 @@ function coerce(value) {
248
248
  }
249
249
 
250
250
  // src/version.ts
251
- var VERSION = "0.6.5";
251
+ var VERSION = "0.6.6";
252
252
 
253
253
  // src/mcp/transport.ts
254
254
  var USER_AGENT = `xpoz-ts-sdk/${VERSION}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xpoz/xpoz",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "description": "TypeScript SDK for the Xpoz social media intelligence platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",