@supernova-studio/model 1.7.0 → 1.8.1
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 +19 -5
- package/dist/index.d.ts +19 -5
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5651,7 +5651,8 @@ var ExportJobDebugContext = z177.object({
|
|
|
5651
5651
|
preloadData: z177.string().optional(),
|
|
5652
5652
|
concurrencyMode: z177.string().optional(),
|
|
5653
5653
|
cacheSdk: z177.boolean().optional(),
|
|
5654
|
-
logSdkNetwork: z177.boolean().optional()
|
|
5654
|
+
logSdkNetwork: z177.boolean().optional(),
|
|
5655
|
+
profilerMode: z177.string().optional()
|
|
5655
5656
|
});
|
|
5656
5657
|
var ExportJobContext = z177.object({
|
|
5657
5658
|
apiUrl: z177.string(),
|
|
@@ -5680,7 +5681,8 @@ var ExporterFunctionPayload = z178.object({
|
|
|
5680
5681
|
exportJobId: z178.string(),
|
|
5681
5682
|
exportContextId: z178.string(),
|
|
5682
5683
|
designSystemId: z178.string(),
|
|
5683
|
-
workspaceId: z178.string()
|
|
5684
|
+
workspaceId: z178.string(),
|
|
5685
|
+
exporterId: z178.string()
|
|
5684
5686
|
});
|
|
5685
5687
|
|
|
5686
5688
|
// src/export/export-jobs.ts
|
|
@@ -5801,7 +5803,8 @@ var FlaggedFeature = z183.enum([
|
|
|
5801
5803
|
"PulsarCacheSdk",
|
|
5802
5804
|
"PulsarPreloadData",
|
|
5803
5805
|
"PulsarConcurrencyMode",
|
|
5804
|
-
"PulsarConcurrency"
|
|
5806
|
+
"PulsarConcurrency",
|
|
5807
|
+
"PulsarProfilerMode"
|
|
5805
5808
|
]);
|
|
5806
5809
|
var FeatureFlagMap = z183.record(FlaggedFeature, z183.boolean());
|
|
5807
5810
|
var FeatureFlag = z183.object({
|
|
@@ -5809,7 +5812,8 @@ var FeatureFlag = z183.object({
|
|
|
5809
5812
|
feature: FlaggedFeature,
|
|
5810
5813
|
createdAt: z183.coerce.date(),
|
|
5811
5814
|
enabled: z183.boolean(),
|
|
5812
|
-
designSystemId: z183.string().optional()
|
|
5815
|
+
designSystemId: z183.string().optional(),
|
|
5816
|
+
data: z183.record(z183.any()).nullable().optional()
|
|
5813
5817
|
});
|
|
5814
5818
|
|
|
5815
5819
|
// src/integrations/external-oauth-request.ts
|