domain0 0.2.0 → 0.2.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.
@@ -305,7 +305,7 @@ const ProviderSchema = zod.z.object({
305
305
  name: zod.z.string().trim().min(1),
306
306
  referenceUrl: ProviderReferenceUrlSchema,
307
307
  implementation: ProviderImplementationSchema,
308
- availableAuthorizationMethods: zod.z.array(AuthorizationMethodSchema).refine((methods) => new Set(methods).size === methods.length, "Authorization methods must be unique"),
308
+ availableAuthorizationMethods: zod.z.array(AuthorizationMethodSchema).refine((methods) => new Set(methods).size === methods.length, "Authorization methods must be unique").describe("Available methods ordered from highest to lowest provider autonomy."),
309
309
  capabilities: ProviderCapabilitiesSchema,
310
310
  detection: ProviderDetectionSchema,
311
311
  limitations: zod.z.array(zod.z.string().min(1))