@tscircuit/fake-snippets 0.0.166 → 0.0.167

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 CHANGED
@@ -445,6 +445,7 @@ var publicOrgSchema = z.object({
445
445
  package_count: z.number(),
446
446
  avatar_url: z.string().nullable().optional(),
447
447
  github_handle: z.string().nullable(),
448
+ github_installation_handles: z.array(z.string()).optional(),
448
449
  tscircuit_handle: z.string().nullable(),
449
450
  created_at: z.string(),
450
451
  user_permissions: userPermissionsSchema.optional()
package/dist/schema.d.ts CHANGED
@@ -1456,6 +1456,7 @@ declare const publicOrgSchema: z.ZodObject<{
1456
1456
  package_count: z.ZodNumber;
1457
1457
  avatar_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1458
1458
  github_handle: z.ZodNullable<z.ZodString>;
1459
+ github_installation_handles: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1459
1460
  tscircuit_handle: z.ZodNullable<z.ZodString>;
1460
1461
  created_at: z.ZodString;
1461
1462
  user_permissions: z.ZodOptional<z.ZodObject<{
@@ -1480,6 +1481,7 @@ declare const publicOrgSchema: z.ZodObject<{
1480
1481
  package_count: number;
1481
1482
  avatar_url?: string | null | undefined;
1482
1483
  display_name?: string | undefined;
1484
+ github_installation_handles?: string[] | undefined;
1483
1485
  user_permissions?: {
1484
1486
  can_manage_org?: boolean | undefined;
1485
1487
  can_manage_package?: boolean | undefined;
@@ -1496,6 +1498,7 @@ declare const publicOrgSchema: z.ZodObject<{
1496
1498
  package_count: number;
1497
1499
  avatar_url?: string | null | undefined;
1498
1500
  display_name?: string | undefined;
1501
+ github_installation_handles?: string[] | undefined;
1499
1502
  user_permissions?: {
1500
1503
  can_manage_org?: boolean | undefined;
1501
1504
  can_manage_package?: boolean | undefined;
package/dist/schema.js CHANGED
@@ -439,6 +439,7 @@ var publicOrgSchema = z.object({
439
439
  package_count: z.number(),
440
440
  avatar_url: z.string().nullable().optional(),
441
441
  github_handle: z.string().nullable(),
442
+ github_installation_handles: z.array(z.string()).optional(),
442
443
  tscircuit_handle: z.string().nullable(),
443
444
  created_at: z.string(),
444
445
  user_permissions: userPermissionsSchema.optional()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/fake-snippets",
3
- "version": "0.0.166",
3
+ "version": "0.0.167",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -84,12 +84,12 @@
84
84
  "@tscircuit/3d-viewer": "^0.0.448",
85
85
  "@tscircuit/assembly-viewer": "^0.0.5",
86
86
  "@tscircuit/create-snippet-url": "^0.0.8",
87
- "@tscircuit/eval": "^0.0.537",
87
+ "@tscircuit/eval": "^0.0.538",
88
88
  "@tscircuit/layout": "^0.0.29",
89
89
  "@tscircuit/mm": "^0.0.8",
90
90
  "@tscircuit/pcb-viewer": "^1.11.256",
91
91
  "@tscircuit/prompt-benchmarks": "^0.0.28",
92
- "@tscircuit/runframe": "^0.0.1399",
92
+ "@tscircuit/runframe": "^0.0.1403",
93
93
  "@tscircuit/schematic-viewer": "^2.0.46",
94
94
  "@tscircuit/simple-3d-svg": "^0.0.41",
95
95
  "@types/babel__standalone": "^7.1.7",
@@ -111,6 +111,7 @@
111
111
  "@vitejs/plugin-react": "^4.3.1",
112
112
  "autoprefixer": "^10.4.20",
113
113
  "circuit-json-to-bom-csv": "^0.0.7",
114
+ "circuit-json-to-gerber": "^0.0.46",
114
115
  "circuit-json-to-gltf": "^0.0.14",
115
116
  "circuit-json-to-kicad": "^0.0.22",
116
117
  "circuit-json-to-lbrn": "^0.0.23",