@kya-os/provider-registry 0.1.2 → 0.1.3

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/schemas.d.ts CHANGED
@@ -305,7 +305,7 @@ export declare const ProviderDefinitionSchema: z.ZodObject<{
305
305
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
306
306
  }, "strip", z.ZodTypeAny, {
307
307
  id: string;
308
- authType: "none" | "password" | "oauth2" | "magic_link" | "otp" | "passkey" | "verifiable_credential";
308
+ authType: "oauth2" | "password" | "verifiable_credential" | "passkey" | "magic_link" | "otp" | "none";
309
309
  defaultScopes?: string[] | undefined;
310
310
  displayName?: string | undefined;
311
311
  oauthProviderId?: string | undefined;
@@ -354,7 +354,7 @@ export declare const ProviderDefinitionSchema: z.ZodObject<{
354
354
  metadata?: Record<string, unknown> | undefined;
355
355
  }, {
356
356
  id: string;
357
- authType: "none" | "password" | "oauth2" | "magic_link" | "otp" | "passkey" | "verifiable_credential";
357
+ authType: "oauth2" | "password" | "verifiable_credential" | "passkey" | "magic_link" | "otp" | "none";
358
358
  defaultScopes?: string[] | undefined;
359
359
  displayName?: string | undefined;
360
360
  oauthProviderId?: string | undefined;
@@ -561,7 +561,7 @@ export declare const ProviderConfigSchema: z.ZodObject<{
561
561
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
562
562
  }, "strip", z.ZodTypeAny, {
563
563
  id: string;
564
- authType: "none" | "password" | "oauth2" | "magic_link" | "otp" | "passkey" | "verifiable_credential";
564
+ authType: "oauth2" | "password" | "verifiable_credential" | "passkey" | "magic_link" | "otp" | "none";
565
565
  defaultScopes?: string[] | undefined;
566
566
  displayName?: string | undefined;
567
567
  oauthProviderId?: string | undefined;
@@ -610,7 +610,7 @@ export declare const ProviderConfigSchema: z.ZodObject<{
610
610
  metadata?: Record<string, unknown> | undefined;
611
611
  }, {
612
612
  id: string;
613
- authType: "none" | "password" | "oauth2" | "magic_link" | "otp" | "passkey" | "verifiable_credential";
613
+ authType: "oauth2" | "password" | "verifiable_credential" | "passkey" | "magic_link" | "otp" | "none";
614
614
  defaultScopes?: string[] | undefined;
615
615
  displayName?: string | undefined;
616
616
  oauthProviderId?: string | undefined;
@@ -661,7 +661,7 @@ export declare const ProviderConfigSchema: z.ZodObject<{
661
661
  }, "strip", z.ZodTypeAny, {
662
662
  providers: {
663
663
  id: string;
664
- authType: "none" | "password" | "oauth2" | "magic_link" | "otp" | "passkey" | "verifiable_credential";
664
+ authType: "oauth2" | "password" | "verifiable_credential" | "passkey" | "magic_link" | "otp" | "none";
665
665
  defaultScopes?: string[] | undefined;
666
666
  displayName?: string | undefined;
667
667
  oauthProviderId?: string | undefined;
@@ -712,7 +712,7 @@ export declare const ProviderConfigSchema: z.ZodObject<{
712
712
  }, {
713
713
  providers: {
714
714
  id: string;
715
- authType: "none" | "password" | "oauth2" | "magic_link" | "otp" | "passkey" | "verifiable_credential";
715
+ authType: "oauth2" | "password" | "verifiable_credential" | "passkey" | "magic_link" | "otp" | "none";
716
716
  defaultScopes?: string[] | undefined;
717
717
  displayName?: string | undefined;
718
718
  oauthProviderId?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kya-os/provider-registry",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "description": "Single source of truth for provider definitions and provider-type mapping",
6
6
  "main": "dist/index.js",
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "sideEffects": false,
25
25
  "dependencies": {
26
- "@kya-os/contracts": "^1.7.8",
26
+ "@kya-os/contracts": "^1.7.9",
27
27
  "zod": "^3.25.76"
28
28
  },
29
29
  "devDependencies": {