shoal-web-sdk 0.0.120 → 0.0.122
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 +9 -1
- package/dist/sdk/zod.gen.d.ts +14 -9
- package/dist/sdk/zod.gen.js +7 -2
- package/package.json +1 -1
package/dist/sdk/types.gen.d.ts
CHANGED
|
@@ -358,7 +358,7 @@ export type QueueNodeProps = {
|
|
|
358
358
|
foobar?: string;
|
|
359
359
|
};
|
|
360
360
|
export type ProxyNodeProps = {
|
|
361
|
-
|
|
361
|
+
subdomain?: string;
|
|
362
362
|
};
|
|
363
363
|
export type VmNodeProps = {
|
|
364
364
|
os?: string;
|
|
@@ -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
|
@@ -604,7 +604,7 @@ export declare const zQueueNodeProps: z.ZodObject<{
|
|
|
604
604
|
foobar: z.ZodOptional<z.ZodString>;
|
|
605
605
|
}, z.core.$strip>;
|
|
606
606
|
export declare const zProxyNodeProps: z.ZodObject<{
|
|
607
|
-
|
|
607
|
+
subdomain: z.ZodOptional<z.ZodString>;
|
|
608
608
|
}, z.core.$strip>;
|
|
609
609
|
export declare const zVmNodeProps: z.ZodObject<{
|
|
610
610
|
os: z.ZodOptional<z.ZodString>;
|
|
@@ -738,7 +738,7 @@ export declare const zNode: z.ZodObject<{
|
|
|
738
738
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
739
739
|
typ: z.ZodLiteral<"proxy">;
|
|
740
740
|
}, z.core.$strip>, z.ZodObject<{
|
|
741
|
-
|
|
741
|
+
subdomain: z.ZodOptional<z.ZodString>;
|
|
742
742
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
743
743
|
typ: z.ZodLiteral<"vm">;
|
|
744
744
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -880,7 +880,7 @@ export declare const zNodes: z.ZodObject<{
|
|
|
880
880
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
881
881
|
typ: z.ZodLiteral<"proxy">;
|
|
882
882
|
}, z.core.$strip>, z.ZodObject<{
|
|
883
|
-
|
|
883
|
+
subdomain: z.ZodOptional<z.ZodString>;
|
|
884
884
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
885
885
|
typ: z.ZodLiteral<"vm">;
|
|
886
886
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1024,7 +1024,7 @@ export declare const zGraph: z.ZodObject<{
|
|
|
1024
1024
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1025
1025
|
typ: z.ZodLiteral<"proxy">;
|
|
1026
1026
|
}, z.core.$strip>, z.ZodObject<{
|
|
1027
|
-
|
|
1027
|
+
subdomain: z.ZodOptional<z.ZodString>;
|
|
1028
1028
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1029
1029
|
typ: z.ZodLiteral<"vm">;
|
|
1030
1030
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -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
|
*/
|
|
@@ -1368,7 +1372,7 @@ export declare const zFetchGraphM2mResponse: z.ZodObject<{
|
|
|
1368
1372
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1369
1373
|
typ: z.ZodLiteral<"proxy">;
|
|
1370
1374
|
}, z.core.$strip>, z.ZodObject<{
|
|
1371
|
-
|
|
1375
|
+
subdomain: z.ZodOptional<z.ZodString>;
|
|
1372
1376
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1373
1377
|
typ: z.ZodLiteral<"vm">;
|
|
1374
1378
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1512,7 +1516,7 @@ export declare const zUpdateGraphM2mData: z.ZodObject<{
|
|
|
1512
1516
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1513
1517
|
typ: z.ZodLiteral<"proxy">;
|
|
1514
1518
|
}, z.core.$strip>, z.ZodObject<{
|
|
1515
|
-
|
|
1519
|
+
subdomain: z.ZodOptional<z.ZodString>;
|
|
1516
1520
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1517
1521
|
typ: z.ZodLiteral<"vm">;
|
|
1518
1522
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1670,7 +1674,7 @@ export declare const zFetchNodeM2mResponse: z.ZodObject<{
|
|
|
1670
1674
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1671
1675
|
typ: z.ZodLiteral<"proxy">;
|
|
1672
1676
|
}, z.core.$strip>, z.ZodObject<{
|
|
1673
|
-
|
|
1677
|
+
subdomain: z.ZodOptional<z.ZodString>;
|
|
1674
1678
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1675
1679
|
typ: z.ZodLiteral<"vm">;
|
|
1676
1680
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -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
|
/**
|
|
@@ -2432,7 +2437,7 @@ export declare const zGetGraphOverviewResponse: z.ZodObject<{
|
|
|
2432
2437
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2433
2438
|
typ: z.ZodLiteral<"proxy">;
|
|
2434
2439
|
}, z.core.$strip>, z.ZodObject<{
|
|
2435
|
-
|
|
2440
|
+
subdomain: z.ZodOptional<z.ZodString>;
|
|
2436
2441
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2437
2442
|
typ: z.ZodLiteral<"vm">;
|
|
2438
2443
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2576,7 +2581,7 @@ export declare const zUpdateGraphStateData: z.ZodObject<{
|
|
|
2576
2581
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2577
2582
|
typ: z.ZodLiteral<"proxy">;
|
|
2578
2583
|
}, z.core.$strip>, z.ZodObject<{
|
|
2579
|
-
|
|
2584
|
+
subdomain: z.ZodOptional<z.ZodString>;
|
|
2580
2585
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2581
2586
|
typ: z.ZodLiteral<"vm">;
|
|
2582
2587
|
}, z.core.$strip>, z.ZodObject<{
|
package/dist/sdk/zod.gen.js
CHANGED
|
@@ -399,7 +399,7 @@ export const zQueueNodeProps = z.object({
|
|
|
399
399
|
foobar: z.optional(z.string())
|
|
400
400
|
});
|
|
401
401
|
export const zProxyNodeProps = z.object({
|
|
402
|
-
|
|
402
|
+
subdomain: z.optional(z.string())
|
|
403
403
|
});
|
|
404
404
|
export const zVmNodeProps = z.object({
|
|
405
405
|
os: z.optional(z.string())
|
|
@@ -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
|
/**
|