shoal-web-sdk 0.0.120 → 0.0.121
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/sdk/types.gen.d.ts +8 -0
- package/dist/sdk/zod.gen.d.ts +5 -0
- package/dist/sdk/zod.gen.js +6 -1
- package/package.json +1 -1
package/dist/sdk/types.gen.d.ts
CHANGED
|
@@ -566,6 +566,10 @@ export type NextPageToken = string;
|
|
|
566
566
|
* Connected app key code reference from Kinde.
|
|
567
567
|
*/
|
|
568
568
|
export type KeyCodeRef = string;
|
|
569
|
+
/**
|
|
570
|
+
* Optional callback URL override for the connected app flow. Ignored when an empty string is provided.
|
|
571
|
+
*/
|
|
572
|
+
export type OverrideCallbackUrl = string;
|
|
569
573
|
/**
|
|
570
574
|
* Identity ID to delete.
|
|
571
575
|
*/
|
|
@@ -938,6 +942,10 @@ export type GetConnectedAppUrlData = {
|
|
|
938
942
|
* Connected app key code reference from Kinde.
|
|
939
943
|
*/
|
|
940
944
|
key_code_ref: string;
|
|
945
|
+
/**
|
|
946
|
+
* Optional callback URL override for the connected app flow. Ignored when an empty string is provided.
|
|
947
|
+
*/
|
|
948
|
+
override_callback_url?: string;
|
|
941
949
|
};
|
|
942
950
|
url: '/auth/account/connected-app-url';
|
|
943
951
|
};
|
package/dist/sdk/zod.gen.d.ts
CHANGED
|
@@ -1198,6 +1198,10 @@ export declare const zNextPageToken: z.ZodString;
|
|
|
1198
1198
|
* Connected app key code reference from Kinde.
|
|
1199
1199
|
*/
|
|
1200
1200
|
export declare const zKeyCodeRef: z.ZodString;
|
|
1201
|
+
/**
|
|
1202
|
+
* Optional callback URL override for the connected app flow. Ignored when an empty string is provided.
|
|
1203
|
+
*/
|
|
1204
|
+
export declare const zOverrideCallbackUrl: z.ZodString;
|
|
1201
1205
|
/**
|
|
1202
1206
|
* Identity ID to delete.
|
|
1203
1207
|
*/
|
|
@@ -1767,6 +1771,7 @@ export declare const zGetConnectedAppUrlData: z.ZodObject<{
|
|
|
1767
1771
|
path: z.ZodOptional<z.ZodNever>;
|
|
1768
1772
|
query: z.ZodObject<{
|
|
1769
1773
|
key_code_ref: z.ZodString;
|
|
1774
|
+
override_callback_url: z.ZodOptional<z.ZodString>;
|
|
1770
1775
|
}, z.core.$strip>;
|
|
1771
1776
|
}, z.core.$strip>;
|
|
1772
1777
|
/**
|
package/dist/sdk/zod.gen.js
CHANGED
|
@@ -592,6 +592,10 @@ export const zNextPageToken = z.string();
|
|
|
592
592
|
* Connected app key code reference from Kinde.
|
|
593
593
|
*/
|
|
594
594
|
export const zKeyCodeRef = z.string();
|
|
595
|
+
/**
|
|
596
|
+
* Optional callback URL override for the connected app flow. Ignored when an empty string is provided.
|
|
597
|
+
*/
|
|
598
|
+
export const zOverrideCallbackUrl = z.string();
|
|
595
599
|
/**
|
|
596
600
|
* Identity ID to delete.
|
|
597
601
|
*/
|
|
@@ -702,7 +706,8 @@ export const zGetConnectedAppUrlData = z.object({
|
|
|
702
706
|
body: z.optional(z.never()),
|
|
703
707
|
path: z.optional(z.never()),
|
|
704
708
|
query: z.object({
|
|
705
|
-
key_code_ref: z.string()
|
|
709
|
+
key_code_ref: z.string(),
|
|
710
|
+
override_callback_url: z.optional(z.string())
|
|
706
711
|
})
|
|
707
712
|
});
|
|
708
713
|
/**
|