@kithinji/pod 1.0.13 → 1.0.14

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/main.js CHANGED
@@ -2297,6 +2297,7 @@ function generateStubCode(componentInfo) {
2297
2297
  JSX,
2298
2298
  OSC,
2299
2299
  HttpClient,
2300
+ symbolValueReviver
2300
2301
  } from "@kithinji/orca";
2301
2302
 
2302
2303
  @Component()
@@ -2328,7 +2329,8 @@ export class ${className} extends OrcaComponent {
2328
2329
 
2329
2330
  const subscription = this.http.post<JSX.Element>(
2330
2331
  \`\${this.oscUrl}?c=${className}\`, {
2331
- body: this.props
2332
+ body: this.props,
2333
+ reviver: symbolValueReviver,
2332
2334
  }
2333
2335
  ).subscribe((jsx: JSX.Element) => {
2334
2336
  const action = jsx.action || "insert";
@@ -4539,7 +4541,7 @@ function printNextSteps(projectName, env, services) {
4539
4541
 
4540
4542
  // src/main.ts
4541
4543
  var program = new Command();
4542
- program.name("pod").description("Pod cli tool").version("1.0.13");
4544
+ program.name("pod").description("Pod cli tool").version("1.0.14");
4543
4545
  program.command("new <name>").description("Start a new Pod Project").action(async (name) => {
4544
4546
  await addNew(name);
4545
4547
  const appDir = path13.resolve(process.cwd(), name);