@supernova-studio/client 1.14.1 → 1.14.2

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.d.mts CHANGED
@@ -79473,7 +79473,10 @@ declare const DTOUpdateForgeProjectContext: z$1.ZodObject<{
79473
79473
  customRegistryUrl?: string | undefined;
79474
79474
  password?: string | undefined;
79475
79475
  }>>;
79476
+ } & {
79477
+ id: z$1.ZodString;
79476
79478
  }, "strip", z$1.ZodTypeAny, {
79479
+ id: string;
79477
79480
  name?: string | undefined;
79478
79481
  meta?: {
79479
79482
  name: string;
@@ -79505,6 +79508,7 @@ declare const DTOUpdateForgeProjectContext: z$1.ZodObject<{
79505
79508
  content: string;
79506
79509
  } | undefined;
79507
79510
  }, {
79511
+ id: string;
79508
79512
  name?: string | undefined;
79509
79513
  meta?: {
79510
79514
  name: string;
package/dist/index.d.ts CHANGED
@@ -79473,7 +79473,10 @@ declare const DTOUpdateForgeProjectContext: z$1.ZodObject<{
79473
79473
  customRegistryUrl?: string | undefined;
79474
79474
  password?: string | undefined;
79475
79475
  }>>;
79476
+ } & {
79477
+ id: z$1.ZodString;
79476
79478
  }, "strip", z$1.ZodTypeAny, {
79479
+ id: string;
79477
79480
  name?: string | undefined;
79478
79481
  meta?: {
79479
79482
  name: string;
@@ -79505,6 +79508,7 @@ declare const DTOUpdateForgeProjectContext: z$1.ZodObject<{
79505
79508
  content: string;
79506
79509
  } | undefined;
79507
79510
  }, {
79511
+ id: string;
79508
79512
  name?: string | undefined;
79509
79513
  meta?: {
79510
79514
  name: string;
package/dist/index.js CHANGED
@@ -9156,7 +9156,7 @@ var DTOCreateForgeProjectContext = DTOForgeProjectContext.pick({
9156
9156
  tailwindConfig: true,
9157
9157
  styling: true
9158
9158
  }).extend({ npmProxySettings: DTONpmRegistryConfig });
9159
- var DTOUpdateForgeProjectContext = DTOCreateForgeProjectContext.partial();
9159
+ var DTOUpdateForgeProjectContext = DTOCreateForgeProjectContext.partial().extend({ id: _zod.z.string() });
9160
9160
  var DTOForgeProjectContextGetResponse = _zod.z.object({ context: DTOForgeProjectContext });
9161
9161
  var DTOForgeProjectContextListResponse = _zod.z.object({ contexts: _zod.z.array(DTOForgeProjectContext) });
9162
9162
  var DTOForgeProjectContextCreateResponse = _zod.z.object({ context: DTOForgeProjectContext });