@supernova-studio/model 1.40.1 → 1.40.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
@@ -332,7 +332,6 @@ declare const AuthV2Request: z.ZodObject<{
332
332
  codeChallengeMethod: z.ZodString;
333
333
  redirectUri: z.ZodString;
334
334
  sessionId: z.ZodString;
335
- clientApp: z.ZodOptional<z.ZodString>;
336
335
  }, "strip", z.ZodTypeAny, {
337
336
  state: string;
338
337
  codeChallenge: string;
@@ -340,7 +339,6 @@ declare const AuthV2Request: z.ZodObject<{
340
339
  redirectUri: string;
341
340
  sessionId: string;
342
341
  code?: string | undefined;
343
- clientApp?: string | undefined;
344
342
  }, {
345
343
  state: string;
346
344
  codeChallenge: string;
@@ -348,7 +346,6 @@ declare const AuthV2Request: z.ZodObject<{
348
346
  redirectUri: string;
349
347
  sessionId: string;
350
348
  code?: string | undefined;
351
- clientApp?: string | undefined;
352
349
  }>;
353
350
  type AuthV2Request = z.infer<typeof AuthV2Request>;
354
351
 
@@ -153655,26 +153652,26 @@ type FeatureFlagWithDefaults = keyof typeof FeatureFlagDefaults;
153655
153652
  type FeatureFlagDefaultsTypes = {
153656
153653
  [K in FeatureFlagWithDefaults]: (typeof FeatureFlagDefaults)[K];
153657
153654
  };
153658
- declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>;
153655
+ declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode", "ForgeE2BTemplate"]>;
153659
153656
  type FlaggedFeature = z.infer<typeof FlaggedFeature>;
153660
- declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>, z.ZodBoolean>;
153657
+ declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode", "ForgeE2BTemplate"]>, z.ZodBoolean>;
153661
153658
  type FeatureFlagMap = z.infer<typeof FeatureFlagMap>;
153662
153659
  declare const FeatureFlag: z.ZodObject<{
153663
153660
  id: z.ZodString;
153664
- feature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>;
153661
+ feature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode", "ForgeE2BTemplate"]>;
153665
153662
  createdAt: z.ZodDate;
153666
153663
  enabled: z.ZodBoolean;
153667
153664
  designSystemId: z.ZodOptional<z.ZodString>;
153668
153665
  data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
153669
153666
  }, "strip", z.ZodTypeAny, {
153670
- feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "SparseCheckoutEnabled" | "NoTagsNoBlobsCheckoutEnabled" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode";
153667
+ feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "SparseCheckoutEnabled" | "NoTagsNoBlobsCheckoutEnabled" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode" | "ForgeE2BTemplate";
153671
153668
  id: string;
153672
153669
  createdAt: Date;
153673
153670
  enabled: boolean;
153674
153671
  data?: Record<string, any> | null | undefined;
153675
153672
  designSystemId?: string | undefined;
153676
153673
  }, {
153677
- feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "SparseCheckoutEnabled" | "NoTagsNoBlobsCheckoutEnabled" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode";
153674
+ feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "SparseCheckoutEnabled" | "NoTagsNoBlobsCheckoutEnabled" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode" | "ForgeE2BTemplate";
153678
153675
  id: string;
153679
153676
  createdAt: Date;
153680
153677
  enabled: boolean;
@@ -157474,6 +157471,8 @@ declare const ProjectFeature: z.ZodObject<{
157474
157471
  name: z.ZodString;
157475
157472
  projectId: z.ZodString;
157476
157473
  sectionId: z.ZodOptional<z.ZodString>;
157474
+ e2bTemplateId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
157475
+ e2bIterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
157477
157476
  sortOrder: z.ZodDefault<z.ZodNumber>;
157478
157477
  status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
157479
157478
  updatedAt: z.ZodOptional<z.ZodDate>;
@@ -157496,6 +157495,8 @@ declare const ProjectFeature: z.ZodObject<{
157496
157495
  threadId?: string | undefined;
157497
157496
  sectionId?: string | undefined;
157498
157497
  isArchived?: boolean | undefined;
157498
+ e2bTemplateId?: string | null | undefined;
157499
+ e2bIterationId?: string | null | undefined;
157499
157500
  lastReplyTimestamp?: Date | undefined;
157500
157501
  }, {
157501
157502
  id: string;
@@ -157510,6 +157511,8 @@ declare const ProjectFeature: z.ZodObject<{
157510
157511
  sortOrder?: number | undefined;
157511
157512
  sectionId?: string | undefined;
157512
157513
  isArchived?: boolean | undefined;
157514
+ e2bTemplateId?: string | null | undefined;
157515
+ e2bIterationId?: string | null | undefined;
157513
157516
  numberOfIterations?: number | undefined;
157514
157517
  numberOfBookmarkedIterations?: number | undefined;
157515
157518
  lastReplyTimestamp?: Date | undefined;
@@ -188135,6 +188138,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
188135
188138
  name: z.ZodString;
188136
188139
  projectId: z.ZodString;
188137
188140
  sectionId: z.ZodOptional<z.ZodString>;
188141
+ e2bTemplateId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
188142
+ e2bIterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
188138
188143
  sortOrder: z.ZodDefault<z.ZodNumber>;
188139
188144
  status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
188140
188145
  updatedAt: z.ZodOptional<z.ZodDate>;
@@ -188157,6 +188162,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
188157
188162
  threadId?: string | undefined;
188158
188163
  sectionId?: string | undefined;
188159
188164
  isArchived?: boolean | undefined;
188165
+ e2bTemplateId?: string | null | undefined;
188166
+ e2bIterationId?: string | null | undefined;
188160
188167
  lastReplyTimestamp?: Date | undefined;
188161
188168
  }, {
188162
188169
  id: string;
@@ -188171,6 +188178,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
188171
188178
  sortOrder?: number | undefined;
188172
188179
  sectionId?: string | undefined;
188173
188180
  isArchived?: boolean | undefined;
188181
+ e2bTemplateId?: string | null | undefined;
188182
+ e2bIterationId?: string | null | undefined;
188174
188183
  numberOfIterations?: number | undefined;
188175
188184
  numberOfBookmarkedIterations?: number | undefined;
188176
188185
  lastReplyTimestamp?: Date | undefined;
@@ -188241,6 +188250,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
188241
188250
  threadId?: string | undefined;
188242
188251
  sectionId?: string | undefined;
188243
188252
  isArchived?: boolean | undefined;
188253
+ e2bTemplateId?: string | null | undefined;
188254
+ e2bIterationId?: string | null | undefined;
188244
188255
  lastReplyTimestamp?: Date | undefined;
188245
188256
  }[];
188246
188257
  artifacts: {
@@ -188288,6 +188299,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
188288
188299
  sortOrder?: number | undefined;
188289
188300
  sectionId?: string | undefined;
188290
188301
  isArchived?: boolean | undefined;
188302
+ e2bTemplateId?: string | null | undefined;
188303
+ e2bIterationId?: string | null | undefined;
188291
188304
  numberOfIterations?: number | undefined;
188292
188305
  numberOfBookmarkedIterations?: number | undefined;
188293
188306
  lastReplyTimestamp?: Date | undefined;
@@ -188373,6 +188386,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
188373
188386
  name: z.ZodString;
188374
188387
  projectId: z.ZodString;
188375
188388
  sectionId: z.ZodOptional<z.ZodString>;
188389
+ e2bTemplateId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
188390
+ e2bIterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
188376
188391
  sortOrder: z.ZodDefault<z.ZodNumber>;
188377
188392
  status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
188378
188393
  updatedAt: z.ZodOptional<z.ZodDate>;
@@ -188395,6 +188410,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
188395
188410
  threadId?: string | undefined;
188396
188411
  sectionId?: string | undefined;
188397
188412
  isArchived?: boolean | undefined;
188413
+ e2bTemplateId?: string | null | undefined;
188414
+ e2bIterationId?: string | null | undefined;
188398
188415
  lastReplyTimestamp?: Date | undefined;
188399
188416
  }, {
188400
188417
  id: string;
@@ -188409,6 +188426,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
188409
188426
  sortOrder?: number | undefined;
188410
188427
  sectionId?: string | undefined;
188411
188428
  isArchived?: boolean | undefined;
188429
+ e2bTemplateId?: string | null | undefined;
188430
+ e2bIterationId?: string | null | undefined;
188412
188431
  numberOfIterations?: number | undefined;
188413
188432
  numberOfBookmarkedIterations?: number | undefined;
188414
188433
  lastReplyTimestamp?: Date | undefined;
@@ -188483,6 +188502,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
188483
188502
  threadId?: string | undefined;
188484
188503
  sectionId?: string | undefined;
188485
188504
  isArchived?: boolean | undefined;
188505
+ e2bTemplateId?: string | null | undefined;
188506
+ e2bIterationId?: string | null | undefined;
188486
188507
  lastReplyTimestamp?: Date | undefined;
188487
188508
  }[] | undefined;
188488
188509
  executedTransactionIds?: string[] | undefined;
@@ -188535,6 +188556,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
188535
188556
  sortOrder?: number | undefined;
188536
188557
  sectionId?: string | undefined;
188537
188558
  isArchived?: boolean | undefined;
188559
+ e2bTemplateId?: string | null | undefined;
188560
+ e2bIterationId?: string | null | undefined;
188538
188561
  numberOfIterations?: number | undefined;
188539
188562
  numberOfBookmarkedIterations?: number | undefined;
188540
188563
  lastReplyTimestamp?: Date | undefined;
package/dist/index.d.ts CHANGED
@@ -332,7 +332,6 @@ declare const AuthV2Request: z.ZodObject<{
332
332
  codeChallengeMethod: z.ZodString;
333
333
  redirectUri: z.ZodString;
334
334
  sessionId: z.ZodString;
335
- clientApp: z.ZodOptional<z.ZodString>;
336
335
  }, "strip", z.ZodTypeAny, {
337
336
  state: string;
338
337
  codeChallenge: string;
@@ -340,7 +339,6 @@ declare const AuthV2Request: z.ZodObject<{
340
339
  redirectUri: string;
341
340
  sessionId: string;
342
341
  code?: string | undefined;
343
- clientApp?: string | undefined;
344
342
  }, {
345
343
  state: string;
346
344
  codeChallenge: string;
@@ -348,7 +346,6 @@ declare const AuthV2Request: z.ZodObject<{
348
346
  redirectUri: string;
349
347
  sessionId: string;
350
348
  code?: string | undefined;
351
- clientApp?: string | undefined;
352
349
  }>;
353
350
  type AuthV2Request = z.infer<typeof AuthV2Request>;
354
351
 
@@ -153655,26 +153652,26 @@ type FeatureFlagWithDefaults = keyof typeof FeatureFlagDefaults;
153655
153652
  type FeatureFlagDefaultsTypes = {
153656
153653
  [K in FeatureFlagWithDefaults]: (typeof FeatureFlagDefaults)[K];
153657
153654
  };
153658
- declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>;
153655
+ declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode", "ForgeE2BTemplate"]>;
153659
153656
  type FlaggedFeature = z.infer<typeof FlaggedFeature>;
153660
- declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>, z.ZodBoolean>;
153657
+ declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode", "ForgeE2BTemplate"]>, z.ZodBoolean>;
153661
153658
  type FeatureFlagMap = z.infer<typeof FeatureFlagMap>;
153662
153659
  declare const FeatureFlag: z.ZodObject<{
153663
153660
  id: z.ZodString;
153664
- feature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode"]>;
153661
+ feature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle", "FigmaImporterV3", "SparseCheckoutEnabled", "NoTagsNoBlobsCheckoutEnabled", "PulsarDebugMode", "PulsarLogSdkNetwork", "PulsarCacheSdk", "PulsarPreloadData", "PulsarConcurrencyMode", "PulsarConcurrency", "PulsarProfilerMode", "ForgeE2BTemplate"]>;
153665
153662
  createdAt: z.ZodDate;
153666
153663
  enabled: z.ZodBoolean;
153667
153664
  designSystemId: z.ZodOptional<z.ZodString>;
153668
153665
  data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
153669
153666
  }, "strip", z.ZodTypeAny, {
153670
- feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "SparseCheckoutEnabled" | "NoTagsNoBlobsCheckoutEnabled" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode";
153667
+ feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "SparseCheckoutEnabled" | "NoTagsNoBlobsCheckoutEnabled" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode" | "ForgeE2BTemplate";
153671
153668
  id: string;
153672
153669
  createdAt: Date;
153673
153670
  enabled: boolean;
153674
153671
  data?: Record<string, any> | null | undefined;
153675
153672
  designSystemId?: string | undefined;
153676
153673
  }, {
153677
- feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "SparseCheckoutEnabled" | "NoTagsNoBlobsCheckoutEnabled" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode";
153674
+ feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle" | "FigmaImporterV3" | "SparseCheckoutEnabled" | "NoTagsNoBlobsCheckoutEnabled" | "PulsarDebugMode" | "PulsarLogSdkNetwork" | "PulsarCacheSdk" | "PulsarPreloadData" | "PulsarConcurrencyMode" | "PulsarConcurrency" | "PulsarProfilerMode" | "ForgeE2BTemplate";
153678
153675
  id: string;
153679
153676
  createdAt: Date;
153680
153677
  enabled: boolean;
@@ -157474,6 +157471,8 @@ declare const ProjectFeature: z.ZodObject<{
157474
157471
  name: z.ZodString;
157475
157472
  projectId: z.ZodString;
157476
157473
  sectionId: z.ZodOptional<z.ZodString>;
157474
+ e2bTemplateId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
157475
+ e2bIterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
157477
157476
  sortOrder: z.ZodDefault<z.ZodNumber>;
157478
157477
  status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
157479
157478
  updatedAt: z.ZodOptional<z.ZodDate>;
@@ -157496,6 +157495,8 @@ declare const ProjectFeature: z.ZodObject<{
157496
157495
  threadId?: string | undefined;
157497
157496
  sectionId?: string | undefined;
157498
157497
  isArchived?: boolean | undefined;
157498
+ e2bTemplateId?: string | null | undefined;
157499
+ e2bIterationId?: string | null | undefined;
157499
157500
  lastReplyTimestamp?: Date | undefined;
157500
157501
  }, {
157501
157502
  id: string;
@@ -157510,6 +157511,8 @@ declare const ProjectFeature: z.ZodObject<{
157510
157511
  sortOrder?: number | undefined;
157511
157512
  sectionId?: string | undefined;
157512
157513
  isArchived?: boolean | undefined;
157514
+ e2bTemplateId?: string | null | undefined;
157515
+ e2bIterationId?: string | null | undefined;
157513
157516
  numberOfIterations?: number | undefined;
157514
157517
  numberOfBookmarkedIterations?: number | undefined;
157515
157518
  lastReplyTimestamp?: Date | undefined;
@@ -188135,6 +188138,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
188135
188138
  name: z.ZodString;
188136
188139
  projectId: z.ZodString;
188137
188140
  sectionId: z.ZodOptional<z.ZodString>;
188141
+ e2bTemplateId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
188142
+ e2bIterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
188138
188143
  sortOrder: z.ZodDefault<z.ZodNumber>;
188139
188144
  status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
188140
188145
  updatedAt: z.ZodOptional<z.ZodDate>;
@@ -188157,6 +188162,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
188157
188162
  threadId?: string | undefined;
188158
188163
  sectionId?: string | undefined;
188159
188164
  isArchived?: boolean | undefined;
188165
+ e2bTemplateId?: string | null | undefined;
188166
+ e2bIterationId?: string | null | undefined;
188160
188167
  lastReplyTimestamp?: Date | undefined;
188161
188168
  }, {
188162
188169
  id: string;
@@ -188171,6 +188178,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
188171
188178
  sortOrder?: number | undefined;
188172
188179
  sectionId?: string | undefined;
188173
188180
  isArchived?: boolean | undefined;
188181
+ e2bTemplateId?: string | null | undefined;
188182
+ e2bIterationId?: string | null | undefined;
188174
188183
  numberOfIterations?: number | undefined;
188175
188184
  numberOfBookmarkedIterations?: number | undefined;
188176
188185
  lastReplyTimestamp?: Date | undefined;
@@ -188241,6 +188250,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
188241
188250
  threadId?: string | undefined;
188242
188251
  sectionId?: string | undefined;
188243
188252
  isArchived?: boolean | undefined;
188253
+ e2bTemplateId?: string | null | undefined;
188254
+ e2bIterationId?: string | null | undefined;
188244
188255
  lastReplyTimestamp?: Date | undefined;
188245
188256
  }[];
188246
188257
  artifacts: {
@@ -188288,6 +188299,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
188288
188299
  sortOrder?: number | undefined;
188289
188300
  sectionId?: string | undefined;
188290
188301
  isArchived?: boolean | undefined;
188302
+ e2bTemplateId?: string | null | undefined;
188303
+ e2bIterationId?: string | null | undefined;
188291
188304
  numberOfIterations?: number | undefined;
188292
188305
  numberOfBookmarkedIterations?: number | undefined;
188293
188306
  lastReplyTimestamp?: Date | undefined;
@@ -188373,6 +188386,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
188373
188386
  name: z.ZodString;
188374
188387
  projectId: z.ZodString;
188375
188388
  sectionId: z.ZodOptional<z.ZodString>;
188389
+ e2bTemplateId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
188390
+ e2bIterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
188376
188391
  sortOrder: z.ZodDefault<z.ZodNumber>;
188377
188392
  status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
188378
188393
  updatedAt: z.ZodOptional<z.ZodDate>;
@@ -188395,6 +188410,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
188395
188410
  threadId?: string | undefined;
188396
188411
  sectionId?: string | undefined;
188397
188412
  isArchived?: boolean | undefined;
188413
+ e2bTemplateId?: string | null | undefined;
188414
+ e2bIterationId?: string | null | undefined;
188398
188415
  lastReplyTimestamp?: Date | undefined;
188399
188416
  }, {
188400
188417
  id: string;
@@ -188409,6 +188426,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
188409
188426
  sortOrder?: number | undefined;
188410
188427
  sectionId?: string | undefined;
188411
188428
  isArchived?: boolean | undefined;
188429
+ e2bTemplateId?: string | null | undefined;
188430
+ e2bIterationId?: string | null | undefined;
188412
188431
  numberOfIterations?: number | undefined;
188413
188432
  numberOfBookmarkedIterations?: number | undefined;
188414
188433
  lastReplyTimestamp?: Date | undefined;
@@ -188483,6 +188502,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
188483
188502
  threadId?: string | undefined;
188484
188503
  sectionId?: string | undefined;
188485
188504
  isArchived?: boolean | undefined;
188505
+ e2bTemplateId?: string | null | undefined;
188506
+ e2bIterationId?: string | null | undefined;
188486
188507
  lastReplyTimestamp?: Date | undefined;
188487
188508
  }[] | undefined;
188488
188509
  executedTransactionIds?: string[] | undefined;
@@ -188535,6 +188556,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
188535
188556
  sortOrder?: number | undefined;
188536
188557
  sectionId?: string | undefined;
188537
188558
  isArchived?: boolean | undefined;
188559
+ e2bTemplateId?: string | null | undefined;
188560
+ e2bIterationId?: string | null | undefined;
188538
188561
  numberOfIterations?: number | undefined;
188539
188562
  numberOfBookmarkedIterations?: number | undefined;
188540
188563
  lastReplyTimestamp?: Date | undefined;
package/dist/index.js CHANGED
@@ -35,8 +35,7 @@ var AuthV2Request = _zod.z.object({
35
35
  codeChallenge: _zod.z.string(),
36
36
  codeChallengeMethod: _zod.z.string(),
37
37
  redirectUri: _zod.z.string(),
38
- sessionId: _zod.z.string(),
39
- clientApp: _zod.z.string().optional()
38
+ sessionId: _zod.z.string()
40
39
  });
41
40
 
42
41
  // src/auth/session.ts
@@ -5966,6 +5965,8 @@ var ProjectFeature = _zod.z.object({
5966
5965
  name: _zod.z.string(),
5967
5966
  projectId: _zod.z.string(),
5968
5967
  sectionId: Id.optional(),
5968
+ e2bTemplateId: _zod.z.string().nullish(),
5969
+ e2bIterationId: _zod.z.string().nullish(),
5969
5970
  sortOrder: SortOrder.default(0),
5970
5971
  status: ProjectFeatureStatus.default("Draft"),
5971
5972
  updatedAt: _zod.z.coerce.date().optional(),
@@ -6538,7 +6539,8 @@ var FlaggedFeature = _zod.z.enum([
6538
6539
  "PulsarPreloadData",
6539
6540
  "PulsarConcurrencyMode",
6540
6541
  "PulsarConcurrency",
6541
- "PulsarProfilerMode"
6542
+ "PulsarProfilerMode",
6543
+ "ForgeE2BTemplate"
6542
6544
  ]);
6543
6545
  var FeatureFlagDefaults = {
6544
6546
  DocumentationIgnoreSnapshotsOnPublish: "route-bff+route-p3"