@tscircuit/fake-snippets 0.0.126 → 0.0.127
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/bundle.js +5 -4
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1570,6 +1570,7 @@ declare const createDatabase: ({ seed }?: {
|
|
|
1570
1570
|
is_personal_org?: boolean;
|
|
1571
1571
|
owner_account_id: string;
|
|
1572
1572
|
github_handle?: string;
|
|
1573
|
+
org_display_name?: string;
|
|
1573
1574
|
}) => {
|
|
1574
1575
|
created_at: string;
|
|
1575
1576
|
org_id: string;
|
|
@@ -2132,6 +2133,7 @@ declare const createDatabase: ({ seed }?: {
|
|
|
2132
2133
|
is_personal_org?: boolean;
|
|
2133
2134
|
owner_account_id: string;
|
|
2134
2135
|
github_handle?: string;
|
|
2136
|
+
org_display_name?: string;
|
|
2135
2137
|
}) => {
|
|
2136
2138
|
created_at: string;
|
|
2137
2139
|
org_id: string;
|
package/dist/index.js
CHANGED
|
@@ -2446,6 +2446,7 @@ export const SquareWaveModule = () => (
|
|
|
2446
2446
|
completed_at: null
|
|
2447
2447
|
});
|
|
2448
2448
|
const testOrg = db.addOrganization({
|
|
2449
|
+
org_display_name: "Test Organization",
|
|
2449
2450
|
name: "test-organization",
|
|
2450
2451
|
github_handle: "tscircuit",
|
|
2451
2452
|
owner_account_id: account_id
|
|
@@ -3816,6 +3817,7 @@ var initializer = combine(databaseSchema.parse({}), (set, get) => ({
|
|
|
3816
3817
|
github_handle: organization.github_handle,
|
|
3817
3818
|
is_personal_org: organization.is_personal_org || false,
|
|
3818
3819
|
created_at: (/* @__PURE__ */ new Date()).toISOString(),
|
|
3820
|
+
org_display_name: organization.org_display_name ?? organization.name,
|
|
3819
3821
|
...organization
|
|
3820
3822
|
};
|
|
3821
3823
|
set((state) => ({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tscircuit/fake-snippets",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.127",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"@tscircuit/3d-viewer": "^0.0.407",
|
|
85
85
|
"@tscircuit/assembly-viewer": "^0.0.5",
|
|
86
86
|
"@tscircuit/create-snippet-url": "^0.0.8",
|
|
87
|
-
"@tscircuit/eval": "^0.0.
|
|
87
|
+
"@tscircuit/eval": "^0.0.424",
|
|
88
88
|
"@tscircuit/layout": "^0.0.29",
|
|
89
89
|
"@tscircuit/mm": "^0.0.8",
|
|
90
90
|
"@tscircuit/pcb-viewer": "^1.11.218",
|