@capgo/cli 8.1.4 → 8.1.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.js +404 -404
- package/dist/package.json +1 -1
- package/dist/src/sdk.js +223 -223
- package/dist/src/utils.d.ts +6 -1
- package/package.json +1 -1
package/dist/src/utils.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export declare const UPLOAD_TIMEOUT = 120000;
|
|
|
18
18
|
export declare const ALERT_UPLOAD_SIZE_BYTES: number;
|
|
19
19
|
export declare const MAX_UPLOAD_LENGTH_BYTES: number;
|
|
20
20
|
export declare const MAX_CHUNK_SIZE_BYTES: number;
|
|
21
|
+
export declare const TUS_UPLOAD_RETRY_DELAYS: number[];
|
|
21
22
|
export declare const PACKNAME = "package.json";
|
|
22
23
|
export type ArrayElement<ArrayType extends readonly unknown[]> = ArrayType extends readonly (infer ElementType)[] ? ElementType : never;
|
|
23
24
|
export type Organization = ArrayElement<Database['public']['Functions']['get_orgs_v7']['Returns']>;
|
|
@@ -2033,7 +2034,11 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
2033
2034
|
};
|
|
2034
2035
|
Update: {
|
|
2035
2036
|
child_role_id?: string;
|
|
2036
|
-
parent_role_id
|
|
2037
|
+
parent_role_id
|
|
2038
|
+
/**
|
|
2039
|
+
* Read directory recursively and return full paths for all files
|
|
2040
|
+
*/
|
|
2041
|
+
?: string;
|
|
2037
2042
|
};
|
|
2038
2043
|
Relationships: [{
|
|
2039
2044
|
foreignKeyName: "role_hierarchy_child_role_id_fkey";
|