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.
- package/dist/contracts.cjs +1 -1
- package/dist/contracts.cjs.map +1 -1
- package/dist/contracts.mjs +1 -1
- package/dist/contracts.mjs.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{sdk-BHIxsxUT.mjs → sdk-CL6dA6kV.mjs} +65 -6
- package/dist/sdk-CL6dA6kV.mjs.map +1 -0
- package/dist/{sdk-C0q5dV-6.cjs → sdk-CwOXzusx.cjs} +65 -6
- package/dist/sdk-CwOXzusx.cjs.map +1 -0
- package/dist/ui.cjs +1 -1
- package/dist/ui.d.cts +1 -0
- package/dist/ui.d.mts +1 -0
- package/dist/ui.mjs +1 -1
- package/package.json +1 -1
- package/dist/sdk-BHIxsxUT.mjs.map +0 -1
- package/dist/sdk-C0q5dV-6.cjs.map +0 -1
package/dist/contracts.mjs
CHANGED
|
@@ -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))
|