@supernova-studio/model 1.12.2 → 1.13.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 +23 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -893,6 +893,19 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
893
893
|
errorReason: string;
|
|
894
894
|
max?: number | undefined;
|
|
895
895
|
}>;
|
|
896
|
+
forgeActiveProjects: z.ZodObject<{
|
|
897
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
898
|
+
errorMessage: z.ZodString;
|
|
899
|
+
errorReason: z.ZodString;
|
|
900
|
+
}, "strip", z.ZodTypeAny, {
|
|
901
|
+
errorMessage: string;
|
|
902
|
+
errorReason: string;
|
|
903
|
+
max?: number | undefined;
|
|
904
|
+
}, {
|
|
905
|
+
errorMessage: string;
|
|
906
|
+
errorReason: string;
|
|
907
|
+
max?: number | undefined;
|
|
908
|
+
}>;
|
|
896
909
|
}, "strip", z.ZodTypeAny, {
|
|
897
910
|
analytics: {
|
|
898
911
|
errorMessage: string;
|
|
@@ -1021,6 +1034,11 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
1021
1034
|
errorReason: string;
|
|
1022
1035
|
max?: number | undefined;
|
|
1023
1036
|
};
|
|
1037
|
+
forgeActiveProjects: {
|
|
1038
|
+
errorMessage: string;
|
|
1039
|
+
errorReason: string;
|
|
1040
|
+
max?: number | undefined;
|
|
1041
|
+
};
|
|
1024
1042
|
}, {
|
|
1025
1043
|
analytics: {
|
|
1026
1044
|
errorMessage: string;
|
|
@@ -1149,6 +1167,11 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
1149
1167
|
errorReason: string;
|
|
1150
1168
|
max?: number | undefined;
|
|
1151
1169
|
};
|
|
1170
|
+
forgeActiveProjects: {
|
|
1171
|
+
errorMessage: string;
|
|
1172
|
+
errorReason: string;
|
|
1173
|
+
max?: number | undefined;
|
|
1174
|
+
};
|
|
1152
1175
|
}>;
|
|
1153
1176
|
type FeaturesSummary = z.infer<typeof FeaturesSummary>;
|
|
1154
1177
|
|
package/dist/index.d.ts
CHANGED
|
@@ -893,6 +893,19 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
893
893
|
errorReason: string;
|
|
894
894
|
max?: number | undefined;
|
|
895
895
|
}>;
|
|
896
|
+
forgeActiveProjects: z.ZodObject<{
|
|
897
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
898
|
+
errorMessage: z.ZodString;
|
|
899
|
+
errorReason: z.ZodString;
|
|
900
|
+
}, "strip", z.ZodTypeAny, {
|
|
901
|
+
errorMessage: string;
|
|
902
|
+
errorReason: string;
|
|
903
|
+
max?: number | undefined;
|
|
904
|
+
}, {
|
|
905
|
+
errorMessage: string;
|
|
906
|
+
errorReason: string;
|
|
907
|
+
max?: number | undefined;
|
|
908
|
+
}>;
|
|
896
909
|
}, "strip", z.ZodTypeAny, {
|
|
897
910
|
analytics: {
|
|
898
911
|
errorMessage: string;
|
|
@@ -1021,6 +1034,11 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
1021
1034
|
errorReason: string;
|
|
1022
1035
|
max?: number | undefined;
|
|
1023
1036
|
};
|
|
1037
|
+
forgeActiveProjects: {
|
|
1038
|
+
errorMessage: string;
|
|
1039
|
+
errorReason: string;
|
|
1040
|
+
max?: number | undefined;
|
|
1041
|
+
};
|
|
1024
1042
|
}, {
|
|
1025
1043
|
analytics: {
|
|
1026
1044
|
errorMessage: string;
|
|
@@ -1149,6 +1167,11 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
1149
1167
|
errorReason: string;
|
|
1150
1168
|
max?: number | undefined;
|
|
1151
1169
|
};
|
|
1170
|
+
forgeActiveProjects: {
|
|
1171
|
+
errorMessage: string;
|
|
1172
|
+
errorReason: string;
|
|
1173
|
+
max?: number | undefined;
|
|
1174
|
+
};
|
|
1152
1175
|
}>;
|
|
1153
1176
|
type FeaturesSummary = z.infer<typeof FeaturesSummary>;
|
|
1154
1177
|
|
package/dist/index.js
CHANGED
|
@@ -159,7 +159,8 @@ var FeaturesSummary = _zod.z.object({
|
|
|
159
159
|
designSystemRoles: featureToggleSchema,
|
|
160
160
|
documentationPageRedirects: featureToggleSchema,
|
|
161
161
|
analytics: featureLimitedSchema,
|
|
162
|
-
designSystemFileSize: featureLimitedSchema
|
|
162
|
+
designSystemFileSize: featureLimitedSchema,
|
|
163
|
+
forgeActiveProjects: featureLimitedSchema
|
|
163
164
|
});
|
|
164
165
|
|
|
165
166
|
// src/billing/invoice.ts
|