@authhero/kysely-adapter 10.31.0 → 10.32.0

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.
@@ -6758,12 +6758,13 @@ declare const sqlFormSchema: z.ZodObject<{
6758
6758
  css?: string | undefined;
6759
6759
  } | undefined;
6760
6760
  }>;
6761
- declare const sqlResourceServerSchema: z.ZodObject<{
6761
+ declare const sqlResourceServerSchema: z.ZodObject<Omit<{
6762
6762
  tenant_id: z.ZodString;
6763
6763
  scopes: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6764
6764
  options: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6765
6765
  skip_consent_for_verifiable_first_party_clients: z.ZodOptional<z.ZodNumber>;
6766
6766
  allow_offline_access: z.ZodOptional<z.ZodNumber>;
6767
+ verification_key: z.ZodOptional<z.ZodString>;
6767
6768
  name: z.ZodString;
6768
6769
  identifier: z.ZodString;
6769
6770
  signing_alg: z.ZodOptional<z.ZodString>;
@@ -6772,7 +6773,7 @@ declare const sqlResourceServerSchema: z.ZodObject<{
6772
6773
  token_lifetime_for_web: z.ZodOptional<z.ZodNumber>;
6773
6774
  verificationKey: z.ZodOptional<z.ZodString>;
6774
6775
  id: z.ZodOptional<z.ZodString>;
6775
- }, "strip", z.ZodTypeAny, {
6776
+ }, "verificationKey">, "strip", z.ZodTypeAny, {
6776
6777
  options: string;
6777
6778
  tenant_id: string;
6778
6779
  name: string;
@@ -6781,11 +6782,11 @@ declare const sqlResourceServerSchema: z.ZodObject<{
6781
6782
  id?: string | undefined;
6782
6783
  skip_consent_for_verifiable_first_party_clients?: number | undefined;
6783
6784
  allow_offline_access?: number | undefined;
6785
+ verification_key?: string | undefined;
6784
6786
  signing_alg?: string | undefined;
6785
6787
  signing_secret?: string | undefined;
6786
6788
  token_lifetime?: number | undefined;
6787
6789
  token_lifetime_for_web?: number | undefined;
6788
- verificationKey?: string | undefined;
6789
6790
  }, {
6790
6791
  tenant_id: string;
6791
6792
  name: string;
@@ -6795,11 +6796,11 @@ declare const sqlResourceServerSchema: z.ZodObject<{
6795
6796
  scopes?: string | undefined;
6796
6797
  skip_consent_for_verifiable_first_party_clients?: number | undefined;
6797
6798
  allow_offline_access?: number | undefined;
6799
+ verification_key?: string | undefined;
6798
6800
  signing_alg?: string | undefined;
6799
6801
  signing_secret?: string | undefined;
6800
6802
  token_lifetime?: number | undefined;
6801
6803
  token_lifetime_for_web?: number | undefined;
6802
- verificationKey?: string | undefined;
6803
6804
  }>;
6804
6805
  declare const sqlRuleSchema: z.ZodObject<{
6805
6806
  tenant_id: z.ZodString;