@capgo/cli 7.84.2 → 7.84.4
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.js +200 -200
- package/dist/package.json +1 -1
- package/dist/src/schemas/build.d.ts +2 -2
- package/dist/src/schemas/sdk.d.ts +2 -2
- package/dist/src/sdk.js +78 -78
- package/dist/src/utils.d.ts +2 -13
- package/package.json +1 -1
package/dist/src/utils.d.ts
CHANGED
|
@@ -258,21 +258,10 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
258
258
|
native_packages?: import("./types/supabase.types").Json[] | null;
|
|
259
259
|
owner_org: string;
|
|
260
260
|
r2_path?: string | null;
|
|
261
|
-
session_key
|
|
262
|
-
/**
|
|
263
|
-
* Event description
|
|
264
|
-
* example: "joe@example.com joined waitlist"
|
|
265
|
-
*/
|
|
266
|
-
? /**
|
|
267
|
-
* Event description
|
|
268
|
-
* example: "joe@example.com joined waitlist"
|
|
269
|
-
*/: string | null;
|
|
261
|
+
session_key?: string | null;
|
|
270
262
|
storage_provider?: string;
|
|
271
263
|
updated_at?: string | null;
|
|
272
|
-
user_id
|
|
273
|
-
* User ID
|
|
274
|
-
* example: "user-123"
|
|
275
|
-
*/: string | null;
|
|
264
|
+
user_id?: string | null;
|
|
276
265
|
};
|
|
277
266
|
Update: {
|
|
278
267
|
app_id?: string;
|