@authhero/kysely-adapter 0.13.0 → 0.13.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.
@@ -1497,9 +1497,11 @@ declare const loginInsertSchema: z.ZodObject<{
1497
1497
  state: z.ZodOptional<z.ZodString>;
1498
1498
  nonce: z.ZodOptional<z.ZodString>;
1499
1499
  scope: z.ZodOptional<z.ZodString>;
1500
+ prompt: z.ZodOptional<z.ZodString>;
1500
1501
  code_challenge_method: z.ZodOptional<z.ZodNativeEnum<typeof CodeChallengeMethod>>;
1501
1502
  code_challenge: z.ZodOptional<z.ZodString>;
1502
1503
  username: z.ZodOptional<z.ZodString>;
1504
+ ui_locales: z.ZodOptional<z.ZodString>;
1503
1505
  }, "strip", z.ZodTypeAny, {
1504
1506
  client_id: string;
1505
1507
  username?: string | undefined;
@@ -1511,8 +1513,10 @@ declare const loginInsertSchema: z.ZodObject<{
1511
1513
  state?: string | undefined;
1512
1514
  nonce?: string | undefined;
1513
1515
  scope?: string | undefined;
1516
+ prompt?: string | undefined;
1514
1517
  code_challenge_method?: CodeChallengeMethod | undefined;
1515
1518
  code_challenge?: string | undefined;
1519
+ ui_locales?: string | undefined;
1516
1520
  }, {
1517
1521
  client_id: string;
1518
1522
  username?: string | undefined;
@@ -1524,8 +1528,10 @@ declare const loginInsertSchema: z.ZodObject<{
1524
1528
  state?: string | undefined;
1525
1529
  nonce?: string | undefined;
1526
1530
  scope?: string | undefined;
1531
+ prompt?: string | undefined;
1527
1532
  code_challenge_method?: CodeChallengeMethod | undefined;
1528
1533
  code_challenge?: string | undefined;
1534
+ ui_locales?: string | undefined;
1529
1535
  }>;
1530
1536
  expires_at: z.ZodString;
1531
1537
  deleted_at: z.ZodOptional<z.ZodString>;
@@ -1543,8 +1549,10 @@ declare const loginInsertSchema: z.ZodObject<{
1543
1549
  state?: string | undefined;
1544
1550
  nonce?: string | undefined;
1545
1551
  scope?: string | undefined;
1552
+ prompt?: string | undefined;
1546
1553
  code_challenge_method?: CodeChallengeMethod | undefined;
1547
1554
  code_challenge?: string | undefined;
1555
+ ui_locales?: string | undefined;
1548
1556
  };
1549
1557
  auth0Client?: string | undefined;
1550
1558
  deleted_at?: string | undefined;
@@ -1562,8 +1570,10 @@ declare const loginInsertSchema: z.ZodObject<{
1562
1570
  state?: string | undefined;
1563
1571
  nonce?: string | undefined;
1564
1572
  scope?: string | undefined;
1573
+ prompt?: string | undefined;
1565
1574
  code_challenge_method?: CodeChallengeMethod | undefined;
1566
1575
  code_challenge?: string | undefined;
1576
+ ui_locales?: string | undefined;
1567
1577
  };
1568
1578
  auth0Client?: string | undefined;
1569
1579
  deleted_at?: string | undefined;
@@ -1585,9 +1595,11 @@ declare const loginSchema: z.ZodObject<{
1585
1595
  state: z.ZodOptional<z.ZodString>;
1586
1596
  nonce: z.ZodOptional<z.ZodString>;
1587
1597
  scope: z.ZodOptional<z.ZodString>;
1598
+ prompt: z.ZodOptional<z.ZodString>;
1588
1599
  code_challenge_method: z.ZodOptional<z.ZodNativeEnum<typeof CodeChallengeMethod>>;
1589
1600
  code_challenge: z.ZodOptional<z.ZodString>;
1590
1601
  username: z.ZodOptional<z.ZodString>;
1602
+ ui_locales: z.ZodOptional<z.ZodString>;
1591
1603
  }, "strip", z.ZodTypeAny, {
1592
1604
  client_id: string;
1593
1605
  username?: string | undefined;
@@ -1599,8 +1611,10 @@ declare const loginSchema: z.ZodObject<{
1599
1611
  state?: string | undefined;
1600
1612
  nonce?: string | undefined;
1601
1613
  scope?: string | undefined;
1614
+ prompt?: string | undefined;
1602
1615
  code_challenge_method?: CodeChallengeMethod | undefined;
1603
1616
  code_challenge?: string | undefined;
1617
+ ui_locales?: string | undefined;
1604
1618
  }, {
1605
1619
  client_id: string;
1606
1620
  username?: string | undefined;
@@ -1612,8 +1626,10 @@ declare const loginSchema: z.ZodObject<{
1612
1626
  state?: string | undefined;
1613
1627
  nonce?: string | undefined;
1614
1628
  scope?: string | undefined;
1629
+ prompt?: string | undefined;
1615
1630
  code_challenge_method?: CodeChallengeMethod | undefined;
1616
1631
  code_challenge?: string | undefined;
1632
+ ui_locales?: string | undefined;
1617
1633
  }>;
1618
1634
  expires_at: z.ZodString;
1619
1635
  deleted_at: z.ZodOptional<z.ZodString>;
@@ -1634,8 +1650,10 @@ declare const loginSchema: z.ZodObject<{
1634
1650
  state?: string | undefined;
1635
1651
  nonce?: string | undefined;
1636
1652
  scope?: string | undefined;
1653
+ prompt?: string | undefined;
1637
1654
  code_challenge_method?: CodeChallengeMethod | undefined;
1638
1655
  code_challenge?: string | undefined;
1656
+ ui_locales?: string | undefined;
1639
1657
  };
1640
1658
  auth0Client?: string | undefined;
1641
1659
  deleted_at?: string | undefined;
@@ -1656,8 +1674,10 @@ declare const loginSchema: z.ZodObject<{
1656
1674
  state?: string | undefined;
1657
1675
  nonce?: string | undefined;
1658
1676
  scope?: string | undefined;
1677
+ prompt?: string | undefined;
1659
1678
  code_challenge_method?: CodeChallengeMethod | undefined;
1660
1679
  code_challenge?: string | undefined;
1680
+ ui_locales?: string | undefined;
1661
1681
  };
1662
1682
  auth0Client?: string | undefined;
1663
1683
  deleted_at?: string | undefined;