@wvdsh/api 0.1.11 → 0.1.13

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.
@@ -117,7 +117,6 @@ export interface SDKUser {
117
117
  }
118
118
  export interface SDKConfig {
119
119
  convexCloudUrl: string;
120
- convexHttpUrl: string;
121
120
  wavedashUser: SDKUser;
122
121
  gameCloudId: GenericId<'gameClouds'>;
123
122
  ugcHost: string;
@@ -288,6 +288,9 @@ export type PublicApiType = {
288
288
  ugcId: Id<"userGeneratedContent">;
289
289
  uploadUrl?: string;
290
290
  }>;
291
+ deleteUGCItem: FunctionReference<"mutation", "public", {
292
+ ugcId: Id<"userGeneratedContent">;
293
+ }, null>;
291
294
  finishUGCUpload: FunctionReference<"mutation", "public", {
292
295
  success: boolean;
293
296
  ugcId: Id<"userGeneratedContent">;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wvdsh/api",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "description": "Public API types and shared constants for the Wavedash platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",