@supernova-studio/model 1.7.0 → 1.8.0
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 +16 -5
- package/dist/index.d.ts +16 -5
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -3
- 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(),
|
|
@@ -5801,7 +5802,8 @@ var FlaggedFeature = z183.enum([
|
|
|
5801
5802
|
"PulsarCacheSdk",
|
|
5802
5803
|
"PulsarPreloadData",
|
|
5803
5804
|
"PulsarConcurrencyMode",
|
|
5804
|
-
"PulsarConcurrency"
|
|
5805
|
+
"PulsarConcurrency",
|
|
5806
|
+
"PulsarProfilerMode"
|
|
5805
5807
|
]);
|
|
5806
5808
|
var FeatureFlagMap = z183.record(FlaggedFeature, z183.boolean());
|
|
5807
5809
|
var FeatureFlag = z183.object({
|
|
@@ -5809,7 +5811,8 @@ var FeatureFlag = z183.object({
|
|
|
5809
5811
|
feature: FlaggedFeature,
|
|
5810
5812
|
createdAt: z183.coerce.date(),
|
|
5811
5813
|
enabled: z183.boolean(),
|
|
5812
|
-
designSystemId: z183.string().optional()
|
|
5814
|
+
designSystemId: z183.string().optional(),
|
|
5815
|
+
data: z183.record(z183.any()).nullable().optional()
|
|
5813
5816
|
});
|
|
5814
5817
|
|
|
5815
5818
|
// src/integrations/external-oauth-request.ts
|