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.
@@ -304,7 +304,7 @@ const ProviderSchema = z.object({
304
304
  name: z.string().trim().min(1),
305
305
  referenceUrl: ProviderReferenceUrlSchema,
306
306
  implementation: ProviderImplementationSchema,
307
- availableAuthorizationMethods: z.array(AuthorizationMethodSchema).refine((methods) => new Set(methods).size === methods.length, "Authorization methods must be unique"),
307
+ availableAuthorizationMethods: 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."),
308
308
  capabilities: ProviderCapabilitiesSchema,
309
309
  detection: ProviderDetectionSchema,
310
310
  limitations: z.array(z.string().min(1))