@neta-art/cohub 1.15.0 → 1.15.1
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/chunks/http.d.ts +13 -1
- package/package.json +1 -1
package/dist/chunks/http.d.ts
CHANGED
|
@@ -582,6 +582,8 @@ type SpaceConfigInput = {
|
|
|
582
582
|
};
|
|
583
583
|
type CreateSpaceModInput = {
|
|
584
584
|
modSpaceId: string;
|
|
585
|
+
name?: string | null;
|
|
586
|
+
mountSlug?: string | null;
|
|
585
587
|
enabled?: boolean;
|
|
586
588
|
};
|
|
587
589
|
type CreateSpaceInput = {
|
|
@@ -888,6 +890,9 @@ type SpaceModListItem = {
|
|
|
888
890
|
id: string;
|
|
889
891
|
spaceId: string;
|
|
890
892
|
modSpaceId: string;
|
|
893
|
+
name: string | null;
|
|
894
|
+
mountSlug: string;
|
|
895
|
+
mountPath: string;
|
|
891
896
|
enabled: boolean;
|
|
892
897
|
sortOrder: number;
|
|
893
898
|
createdBy: string;
|
|
@@ -1566,21 +1571,28 @@ declare class SpaceModsApi {
|
|
|
1566
1571
|
}>;
|
|
1567
1572
|
create(input: {
|
|
1568
1573
|
modSpaceId: string;
|
|
1569
|
-
|
|
1574
|
+
name?: string | null;
|
|
1575
|
+
mountSlug?: string | null;
|
|
1570
1576
|
}): Promise<{
|
|
1571
1577
|
item: SpaceModListItem;
|
|
1578
|
+
sandboxRestarting: boolean;
|
|
1572
1579
|
}>;
|
|
1573
1580
|
update(modId: string, input: {
|
|
1581
|
+
name?: string | null;
|
|
1582
|
+
mountSlug?: string;
|
|
1574
1583
|
enabled?: boolean;
|
|
1575
1584
|
sortOrder?: number;
|
|
1576
1585
|
}): Promise<{
|
|
1577
1586
|
item: SpaceModListItem;
|
|
1587
|
+
sandboxRestarting: boolean;
|
|
1578
1588
|
}>;
|
|
1579
1589
|
remove(modId: string): Promise<{
|
|
1580
1590
|
ok: true;
|
|
1591
|
+
sandboxRestarting: boolean;
|
|
1581
1592
|
}>;
|
|
1582
1593
|
reorder(ids: string[]): Promise<{
|
|
1583
1594
|
items: SpaceModListItem[];
|
|
1595
|
+
sandboxRestarting: boolean;
|
|
1584
1596
|
}>;
|
|
1585
1597
|
}
|
|
1586
1598
|
declare class SpaceEnvApi {
|