authhero 0.20.0 → 0.20.2
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/authhero.cjs +19 -143
- package/dist/authhero.d.ts +6 -0
- package/dist/authhero.mjs +8602 -32954
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -1587,6 +1587,7 @@ export declare const codeInsertSchema: z.ZodObject<{
|
|
|
1587
1587
|
"oauth2_state",
|
|
1588
1588
|
"ticket"
|
|
1589
1589
|
]>;
|
|
1590
|
+
code_verifier: z.ZodOptional<z.ZodString>;
|
|
1590
1591
|
expires_at: z.ZodString;
|
|
1591
1592
|
used_at: z.ZodOptional<z.ZodString>;
|
|
1592
1593
|
user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1597,6 +1598,7 @@ export declare const codeInsertSchema: z.ZodObject<{
|
|
|
1597
1598
|
expires_at: string;
|
|
1598
1599
|
user_id?: string | undefined;
|
|
1599
1600
|
connection_id?: string | undefined;
|
|
1601
|
+
code_verifier?: string | undefined;
|
|
1600
1602
|
used_at?: string | undefined;
|
|
1601
1603
|
}, {
|
|
1602
1604
|
code_id: string;
|
|
@@ -1605,6 +1607,7 @@ export declare const codeInsertSchema: z.ZodObject<{
|
|
|
1605
1607
|
expires_at: string;
|
|
1606
1608
|
user_id?: string | undefined;
|
|
1607
1609
|
connection_id?: string | undefined;
|
|
1610
|
+
code_verifier?: string | undefined;
|
|
1608
1611
|
used_at?: string | undefined;
|
|
1609
1612
|
}>;
|
|
1610
1613
|
export type CodeInsert = z.infer<typeof codeInsertSchema>;
|
|
@@ -1621,6 +1624,7 @@ export declare const codeSchema: z.ZodObject<{
|
|
|
1621
1624
|
"oauth2_state",
|
|
1622
1625
|
"ticket"
|
|
1623
1626
|
]>;
|
|
1627
|
+
code_verifier: z.ZodOptional<z.ZodString>;
|
|
1624
1628
|
expires_at: z.ZodString;
|
|
1625
1629
|
used_at: z.ZodOptional<z.ZodString>;
|
|
1626
1630
|
user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1632,6 +1636,7 @@ export declare const codeSchema: z.ZodObject<{
|
|
|
1632
1636
|
expires_at: string;
|
|
1633
1637
|
user_id?: string | undefined;
|
|
1634
1638
|
connection_id?: string | undefined;
|
|
1639
|
+
code_verifier?: string | undefined;
|
|
1635
1640
|
used_at?: string | undefined;
|
|
1636
1641
|
}, {
|
|
1637
1642
|
created_at: string;
|
|
@@ -1641,6 +1646,7 @@ export declare const codeSchema: z.ZodObject<{
|
|
|
1641
1646
|
expires_at: string;
|
|
1642
1647
|
user_id?: string | undefined;
|
|
1643
1648
|
connection_id?: string | undefined;
|
|
1649
|
+
code_verifier?: string | undefined;
|
|
1644
1650
|
used_at?: string | undefined;
|
|
1645
1651
|
}>;
|
|
1646
1652
|
export type Code = z.infer<typeof codeSchema>;
|