domain0 0.2.1 → 0.3.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.
@@ -238,6 +238,7 @@ const ProviderImplementationSchema = zod.z.enum([
238
238
  ]).meta({ id: "ProviderImplementation" });
239
239
  const AuthorizationMethodSchema = zod.z.enum([
240
240
  "oauth2_pkce",
241
+ "oauth2_authorization_code",
241
242
  "api_token",
242
243
  "api_key",
243
244
  "basic",
@@ -1115,10 +1116,10 @@ const Domain0WhiteLabelThemeSchema = zod.z.object({
1115
1116
  "light",
1116
1117
  "dark",
1117
1118
  "system"
1118
- ]).default("system"),
1119
+ ]).default("light"),
1119
1120
  light: LightThemePaletteSchema.prefault({}),
1120
1121
  dark: DarkThemePaletteSchema.prefault({}),
1121
- backdrop: BackdropHexColorSchema.default("#111827B8"),
1122
+ backdrop: BackdropHexColorSchema.default("#2B21FF26"),
1122
1123
  widthPx: zod.z.number().int().min(320).max(960).default(672),
1123
1124
  dialogRadiusPx: zod.z.number().int().min(0).max(48).default(20),
1124
1125
  buttonRadiusPx: zod.z.number().int().min(0).max(999).default(999),