@channel.io/app-sdk-core 0.26.0 → 0.27.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.
- package/dist/extensions/calendar.d.ts +2 -2
- package/dist/extensions/commerce.d.ts +12 -12
- package/dist/extensions/config.d.ts +80 -80
- package/dist/extensions/hook.d.ts +274 -0
- package/dist/extensions/hook.d.ts.map +1 -1
- package/dist/extensions/hook.js +11 -2
- package/dist/extensions/hook.js.map +1 -1
- package/dist/extensions/index.d.ts +1 -0
- package/dist/extensions/index.d.ts.map +1 -1
- package/dist/extensions/index.js +1 -0
- package/dist/extensions/index.js.map +1 -1
- package/dist/extensions/notebook.d.ts +6 -6
- package/dist/extensions/oauth.d.ts +204 -19
- package/dist/extensions/oauth.d.ts.map +1 -1
- package/dist/extensions/oauth.js +38 -0
- package/dist/extensions/oauth.js.map +1 -1
- package/dist/gen/channel/app/sdk/v1/common.zod.d.ts +4 -4
- package/dist/gen/channel/app/sdk/v1/extension.d.ts +31 -1
- package/dist/gen/channel/app/sdk/v1/extension.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts +451 -150
- package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/extension.zod.js +21 -0
- package/dist/gen/channel/app/sdk/v1/extension.zod.js.map +1 -1
- package/dist/gen/channel/app/sdk/v1/native.d.ts +5 -0
- package/dist/gen/channel/app/sdk/v1/native.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/native.js.map +1 -1
- package/dist/gen/channel/app/sdk/v1/native.zod.d.ts +107 -6
- package/dist/gen/channel/app/sdk/v1/native.zod.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/native.zod.js +5 -0
- package/dist/gen/channel/app/sdk/v1/native.zod.js.map +1 -1
- package/dist/schemas/native.d.ts +168 -10
- package/dist/schemas/native.d.ts.map +1 -1
- package/dist/schemas/native.js +4 -1
- package/dist/schemas/native.js.map +1 -1
- package/package.json +1 -1
|
@@ -519,48 +519,95 @@ export declare const OAuthFlowProtoSchema: z.ZodObject<{
|
|
|
519
519
|
targetAuthScope: z.ZodOptional<z.ZodString>;
|
|
520
520
|
authorizationURL: z.ZodOptional<z.ZodString>;
|
|
521
521
|
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
522
|
+
steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
523
|
+
id: z.ZodOptional<z.ZodString>;
|
|
524
|
+
title: z.ZodOptional<z.ZodString>;
|
|
525
|
+
description: z.ZodOptional<z.ZodString>;
|
|
526
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
527
|
+
status: z.ZodOptional<z.ZodString>;
|
|
528
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
529
|
+
}, "strip", z.ZodTypeAny, {
|
|
530
|
+
status?: string | undefined;
|
|
531
|
+
description?: string | undefined;
|
|
532
|
+
id?: string | undefined;
|
|
533
|
+
title?: string | undefined;
|
|
534
|
+
icon?: string | undefined;
|
|
535
|
+
detail?: string | undefined;
|
|
536
|
+
}, {
|
|
537
|
+
status?: string | undefined;
|
|
538
|
+
description?: string | undefined;
|
|
539
|
+
id?: string | undefined;
|
|
540
|
+
title?: string | undefined;
|
|
541
|
+
icon?: string | undefined;
|
|
542
|
+
detail?: string | undefined;
|
|
543
|
+
}>, "many">>;
|
|
522
544
|
}, "strip", z.ZodTypeAny, {
|
|
523
545
|
id?: string | undefined;
|
|
524
546
|
key?: string | undefined;
|
|
525
|
-
phase?: string | undefined;
|
|
526
547
|
expiresAt?: string | undefined;
|
|
548
|
+
phase?: string | undefined;
|
|
527
549
|
targetAuthScope?: string | undefined;
|
|
528
550
|
authorizationURL?: string | undefined;
|
|
529
551
|
canResume?: boolean | undefined;
|
|
552
|
+
steps?: {
|
|
553
|
+
status?: string | undefined;
|
|
554
|
+
description?: string | undefined;
|
|
555
|
+
id?: string | undefined;
|
|
556
|
+
title?: string | undefined;
|
|
557
|
+
icon?: string | undefined;
|
|
558
|
+
detail?: string | undefined;
|
|
559
|
+
}[] | undefined;
|
|
530
560
|
}, {
|
|
531
561
|
id?: string | undefined;
|
|
532
562
|
key?: string | undefined;
|
|
533
|
-
phase?: string | undefined;
|
|
534
563
|
expiresAt?: string | undefined;
|
|
564
|
+
phase?: string | undefined;
|
|
535
565
|
targetAuthScope?: string | undefined;
|
|
536
566
|
authorizationURL?: string | undefined;
|
|
537
567
|
canResume?: boolean | undefined;
|
|
568
|
+
steps?: {
|
|
569
|
+
status?: string | undefined;
|
|
570
|
+
description?: string | undefined;
|
|
571
|
+
id?: string | undefined;
|
|
572
|
+
title?: string | undefined;
|
|
573
|
+
icon?: string | undefined;
|
|
574
|
+
detail?: string | undefined;
|
|
575
|
+
}[] | undefined;
|
|
538
576
|
}>;
|
|
539
577
|
export type OAuthFlowProto = z.infer<typeof OAuthFlowProtoSchema>;
|
|
540
578
|
export declare const GetOAuthFlowParamsProtoSchema: z.ZodObject<{
|
|
541
579
|
flowId: z.ZodOptional<z.ZodString>;
|
|
580
|
+
language: z.ZodOptional<z.ZodString>;
|
|
542
581
|
}, "strip", z.ZodTypeAny, {
|
|
582
|
+
language?: string | undefined;
|
|
543
583
|
flowId?: string | undefined;
|
|
544
584
|
}, {
|
|
585
|
+
language?: string | undefined;
|
|
545
586
|
flowId?: string | undefined;
|
|
546
587
|
}>;
|
|
547
588
|
export type GetOAuthFlowParamsProto = z.infer<typeof GetOAuthFlowParamsProtoSchema>;
|
|
548
589
|
export declare const ResumeOAuthFlowParamsProtoSchema: z.ZodObject<{
|
|
549
590
|
flowId: z.ZodOptional<z.ZodString>;
|
|
550
591
|
resumeNonce: z.ZodOptional<z.ZodString>;
|
|
592
|
+
language: z.ZodOptional<z.ZodString>;
|
|
551
593
|
}, "strip", z.ZodTypeAny, {
|
|
594
|
+
language?: string | undefined;
|
|
552
595
|
flowId?: string | undefined;
|
|
553
596
|
resumeNonce?: string | undefined;
|
|
554
597
|
}, {
|
|
598
|
+
language?: string | undefined;
|
|
555
599
|
flowId?: string | undefined;
|
|
556
600
|
resumeNonce?: string | undefined;
|
|
557
601
|
}>;
|
|
558
602
|
export type ResumeOAuthFlowParamsProto = z.infer<typeof ResumeOAuthFlowParamsProtoSchema>;
|
|
559
603
|
export declare const CancelOAuthFlowParamsProtoSchema: z.ZodObject<{
|
|
560
604
|
flowId: z.ZodOptional<z.ZodString>;
|
|
605
|
+
language: z.ZodOptional<z.ZodString>;
|
|
561
606
|
}, "strip", z.ZodTypeAny, {
|
|
607
|
+
language?: string | undefined;
|
|
562
608
|
flowId?: string | undefined;
|
|
563
609
|
}, {
|
|
610
|
+
language?: string | undefined;
|
|
564
611
|
flowId?: string | undefined;
|
|
565
612
|
}>;
|
|
566
613
|
export type CancelOAuthFlowParamsProto = z.infer<typeof CancelOAuthFlowParamsProtoSchema>;
|
|
@@ -573,42 +620,96 @@ export declare const OAuthFlowResultProtoSchema: z.ZodObject<{
|
|
|
573
620
|
targetAuthScope: z.ZodOptional<z.ZodString>;
|
|
574
621
|
authorizationURL: z.ZodOptional<z.ZodString>;
|
|
575
622
|
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
623
|
+
steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
624
|
+
id: z.ZodOptional<z.ZodString>;
|
|
625
|
+
title: z.ZodOptional<z.ZodString>;
|
|
626
|
+
description: z.ZodOptional<z.ZodString>;
|
|
627
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
628
|
+
status: z.ZodOptional<z.ZodString>;
|
|
629
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
630
|
+
}, "strip", z.ZodTypeAny, {
|
|
631
|
+
status?: string | undefined;
|
|
632
|
+
description?: string | undefined;
|
|
633
|
+
id?: string | undefined;
|
|
634
|
+
title?: string | undefined;
|
|
635
|
+
icon?: string | undefined;
|
|
636
|
+
detail?: string | undefined;
|
|
637
|
+
}, {
|
|
638
|
+
status?: string | undefined;
|
|
639
|
+
description?: string | undefined;
|
|
640
|
+
id?: string | undefined;
|
|
641
|
+
title?: string | undefined;
|
|
642
|
+
icon?: string | undefined;
|
|
643
|
+
detail?: string | undefined;
|
|
644
|
+
}>, "many">>;
|
|
576
645
|
}, "strip", z.ZodTypeAny, {
|
|
577
646
|
id?: string | undefined;
|
|
578
647
|
key?: string | undefined;
|
|
579
|
-
phase?: string | undefined;
|
|
580
648
|
expiresAt?: string | undefined;
|
|
649
|
+
phase?: string | undefined;
|
|
581
650
|
targetAuthScope?: string | undefined;
|
|
582
651
|
authorizationURL?: string | undefined;
|
|
583
652
|
canResume?: boolean | undefined;
|
|
653
|
+
steps?: {
|
|
654
|
+
status?: string | undefined;
|
|
655
|
+
description?: string | undefined;
|
|
656
|
+
id?: string | undefined;
|
|
657
|
+
title?: string | undefined;
|
|
658
|
+
icon?: string | undefined;
|
|
659
|
+
detail?: string | undefined;
|
|
660
|
+
}[] | undefined;
|
|
584
661
|
}, {
|
|
585
662
|
id?: string | undefined;
|
|
586
663
|
key?: string | undefined;
|
|
587
|
-
phase?: string | undefined;
|
|
588
664
|
expiresAt?: string | undefined;
|
|
665
|
+
phase?: string | undefined;
|
|
589
666
|
targetAuthScope?: string | undefined;
|
|
590
667
|
authorizationURL?: string | undefined;
|
|
591
668
|
canResume?: boolean | undefined;
|
|
669
|
+
steps?: {
|
|
670
|
+
status?: string | undefined;
|
|
671
|
+
description?: string | undefined;
|
|
672
|
+
id?: string | undefined;
|
|
673
|
+
title?: string | undefined;
|
|
674
|
+
icon?: string | undefined;
|
|
675
|
+
detail?: string | undefined;
|
|
676
|
+
}[] | undefined;
|
|
592
677
|
}>>>;
|
|
593
678
|
}, "strip", z.ZodTypeAny, {
|
|
594
679
|
flow?: {
|
|
595
680
|
id?: string | undefined;
|
|
596
681
|
key?: string | undefined;
|
|
597
|
-
phase?: string | undefined;
|
|
598
682
|
expiresAt?: string | undefined;
|
|
683
|
+
phase?: string | undefined;
|
|
599
684
|
targetAuthScope?: string | undefined;
|
|
600
685
|
authorizationURL?: string | undefined;
|
|
601
686
|
canResume?: boolean | undefined;
|
|
687
|
+
steps?: {
|
|
688
|
+
status?: string | undefined;
|
|
689
|
+
description?: string | undefined;
|
|
690
|
+
id?: string | undefined;
|
|
691
|
+
title?: string | undefined;
|
|
692
|
+
icon?: string | undefined;
|
|
693
|
+
detail?: string | undefined;
|
|
694
|
+
}[] | undefined;
|
|
602
695
|
} | undefined;
|
|
603
696
|
}, {
|
|
604
697
|
flow?: {
|
|
605
698
|
id?: string | undefined;
|
|
606
699
|
key?: string | undefined;
|
|
607
|
-
phase?: string | undefined;
|
|
608
700
|
expiresAt?: string | undefined;
|
|
701
|
+
phase?: string | undefined;
|
|
609
702
|
targetAuthScope?: string | undefined;
|
|
610
703
|
authorizationURL?: string | undefined;
|
|
611
704
|
canResume?: boolean | undefined;
|
|
705
|
+
steps?: {
|
|
706
|
+
status?: string | undefined;
|
|
707
|
+
description?: string | undefined;
|
|
708
|
+
id?: string | undefined;
|
|
709
|
+
title?: string | undefined;
|
|
710
|
+
icon?: string | undefined;
|
|
711
|
+
detail?: string | undefined;
|
|
712
|
+
}[] | undefined;
|
|
612
713
|
} | undefined;
|
|
613
714
|
}>;
|
|
614
715
|
export type OAuthFlowResultProto = z.infer<typeof OAuthFlowResultProtoSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"native.zod.d.ts","sourceRoot":"","sources":["../../../../../../src/gen/channel/app/sdk/v1/native.zod.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"native.zod.d.ts","sourceRoot":"","sources":["../../../../../../src/gen/channel/app/sdk/v1/native.zod.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
import { FunctionContextProtoSchema } from "./context.zod.js";
|
|
4
4
|
import { FunctionErrorProtoSchema } from "./error.zod.js";
|
|
5
|
+
import { OAuthFlowStepProtoSchema } from "./extension.zod.js";
|
|
5
6
|
export const NativeFunctionRequestProtoSchema = z.object({
|
|
6
7
|
method: z.string().optional(),
|
|
7
8
|
params: z.any().optional(),
|
|
@@ -78,16 +79,20 @@ export const OAuthFlowProtoSchema = z.object({
|
|
|
78
79
|
targetAuthScope: z.string().optional(),
|
|
79
80
|
authorizationURL: z.string().optional(),
|
|
80
81
|
canResume: z.boolean().optional(),
|
|
82
|
+
steps: z.array(OAuthFlowStepProtoSchema).optional(),
|
|
81
83
|
});
|
|
82
84
|
export const GetOAuthFlowParamsProtoSchema = z.object({
|
|
83
85
|
flowId: z.string().optional(),
|
|
86
|
+
language: z.string().optional(),
|
|
84
87
|
});
|
|
85
88
|
export const ResumeOAuthFlowParamsProtoSchema = z.object({
|
|
86
89
|
flowId: z.string().optional(),
|
|
87
90
|
resumeNonce: z.string().optional(),
|
|
91
|
+
language: z.string().optional(),
|
|
88
92
|
});
|
|
89
93
|
export const CancelOAuthFlowParamsProtoSchema = z.object({
|
|
90
94
|
flowId: z.string().optional(),
|
|
95
|
+
language: z.string().optional(),
|
|
91
96
|
});
|
|
92
97
|
export const OAuthFlowResultProtoSchema = z.object({
|
|
93
98
|
flow: z.lazy(() => OAuthFlowProtoSchema).optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"native.zod.js","sourceRoot":"","sources":["../../../../../../src/gen/channel/app/sdk/v1/native.zod.ts"],"names":[],"mappings":"AAAA,iEAAiE;AAEjE,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,0BAA0B,EAAE,MAAM,kBAAkB,CAAC;AAC9D,OAAO,EAAE,wBAAwB,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"native.zod.js","sourceRoot":"","sources":["../../../../../../src/gen/channel/app/sdk/v1/native.zod.ts"],"names":[],"mappings":"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"}
|
package/dist/schemas/native.d.ts
CHANGED
|
@@ -485,46 +485,93 @@ export declare const NativeOAuthFlowSchema: z.ZodObject<{
|
|
|
485
485
|
targetAuthScope: z.ZodOptional<z.ZodString>;
|
|
486
486
|
authorizationURL: z.ZodOptional<z.ZodString>;
|
|
487
487
|
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
488
|
+
steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
489
|
+
id: z.ZodEnum<["before", "oauth", "after"]>;
|
|
490
|
+
title: z.ZodString;
|
|
491
|
+
description: z.ZodOptional<z.ZodString>;
|
|
492
|
+
icon: z.ZodEnum<["installation", "account", "organization", "permission", "settings"]>;
|
|
493
|
+
status: z.ZodEnum<["pending", "in_progress", "completed", "failed", "unknown"]>;
|
|
494
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
495
|
+
}, "strict", z.ZodTypeAny, {
|
|
496
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
497
|
+
id: "oauth" | "before" | "after";
|
|
498
|
+
title: string;
|
|
499
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
500
|
+
description?: string | undefined;
|
|
501
|
+
detail?: string | undefined;
|
|
502
|
+
}, {
|
|
503
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
504
|
+
id: "oauth" | "before" | "after";
|
|
505
|
+
title: string;
|
|
506
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
507
|
+
description?: string | undefined;
|
|
508
|
+
detail?: string | undefined;
|
|
509
|
+
}>, "many">>;
|
|
488
510
|
}, "strict", z.ZodTypeAny, {
|
|
489
511
|
id: string;
|
|
490
|
-
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
491
512
|
expiresAt: string;
|
|
513
|
+
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
492
514
|
key?: string | undefined;
|
|
493
515
|
targetAuthScope?: string | undefined;
|
|
494
516
|
authorizationURL?: string | undefined;
|
|
495
517
|
canResume?: boolean | undefined;
|
|
518
|
+
steps?: {
|
|
519
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
520
|
+
id: "oauth" | "before" | "after";
|
|
521
|
+
title: string;
|
|
522
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
523
|
+
description?: string | undefined;
|
|
524
|
+
detail?: string | undefined;
|
|
525
|
+
}[] | undefined;
|
|
496
526
|
}, {
|
|
497
527
|
id: string;
|
|
498
|
-
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
499
528
|
expiresAt: string;
|
|
529
|
+
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
500
530
|
key?: string | undefined;
|
|
501
531
|
targetAuthScope?: string | undefined;
|
|
502
532
|
authorizationURL?: string | undefined;
|
|
503
533
|
canResume?: boolean | undefined;
|
|
534
|
+
steps?: {
|
|
535
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
536
|
+
id: "oauth" | "before" | "after";
|
|
537
|
+
title: string;
|
|
538
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
539
|
+
description?: string | undefined;
|
|
540
|
+
detail?: string | undefined;
|
|
541
|
+
}[] | undefined;
|
|
504
542
|
}>;
|
|
505
543
|
export declare const NativeGetOAuthFlowParamsSchema: z.ZodObject<{
|
|
506
544
|
flowId: z.ZodString;
|
|
545
|
+
language: z.ZodOptional<z.ZodString>;
|
|
507
546
|
}, "strict", z.ZodTypeAny, {
|
|
508
547
|
flowId: string;
|
|
548
|
+
language?: string | undefined;
|
|
509
549
|
}, {
|
|
510
550
|
flowId: string;
|
|
551
|
+
language?: string | undefined;
|
|
511
552
|
}>;
|
|
512
553
|
export declare const NativeResumeOAuthFlowParamsSchema: z.ZodObject<{
|
|
513
554
|
flowId: z.ZodString;
|
|
514
555
|
resumeNonce: z.ZodOptional<z.ZodString>;
|
|
556
|
+
language: z.ZodOptional<z.ZodString>;
|
|
515
557
|
}, "strict", z.ZodTypeAny, {
|
|
516
558
|
flowId: string;
|
|
559
|
+
language?: string | undefined;
|
|
517
560
|
resumeNonce?: string | undefined;
|
|
518
561
|
}, {
|
|
519
562
|
flowId: string;
|
|
563
|
+
language?: string | undefined;
|
|
520
564
|
resumeNonce?: string | undefined;
|
|
521
565
|
}>;
|
|
522
566
|
export declare const NativeCancelOAuthFlowParamsSchema: z.ZodObject<{
|
|
523
567
|
flowId: z.ZodString;
|
|
568
|
+
language: z.ZodOptional<z.ZodString>;
|
|
524
569
|
}, "strict", z.ZodTypeAny, {
|
|
525
570
|
flowId: string;
|
|
571
|
+
language?: string | undefined;
|
|
526
572
|
}, {
|
|
527
573
|
flowId: string;
|
|
574
|
+
language?: string | undefined;
|
|
528
575
|
}>;
|
|
529
576
|
export declare const NativeOAuthFlowResultSchema: z.ZodObject<{
|
|
530
577
|
flow: z.ZodOptional<z.ZodObject<{
|
|
@@ -535,42 +582,96 @@ export declare const NativeOAuthFlowResultSchema: z.ZodObject<{
|
|
|
535
582
|
targetAuthScope: z.ZodOptional<z.ZodString>;
|
|
536
583
|
authorizationURL: z.ZodOptional<z.ZodString>;
|
|
537
584
|
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
585
|
+
steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
586
|
+
id: z.ZodEnum<["before", "oauth", "after"]>;
|
|
587
|
+
title: z.ZodString;
|
|
588
|
+
description: z.ZodOptional<z.ZodString>;
|
|
589
|
+
icon: z.ZodEnum<["installation", "account", "organization", "permission", "settings"]>;
|
|
590
|
+
status: z.ZodEnum<["pending", "in_progress", "completed", "failed", "unknown"]>;
|
|
591
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
592
|
+
}, "strict", z.ZodTypeAny, {
|
|
593
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
594
|
+
id: "oauth" | "before" | "after";
|
|
595
|
+
title: string;
|
|
596
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
597
|
+
description?: string | undefined;
|
|
598
|
+
detail?: string | undefined;
|
|
599
|
+
}, {
|
|
600
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
601
|
+
id: "oauth" | "before" | "after";
|
|
602
|
+
title: string;
|
|
603
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
604
|
+
description?: string | undefined;
|
|
605
|
+
detail?: string | undefined;
|
|
606
|
+
}>, "many">>;
|
|
538
607
|
}, "strict", z.ZodTypeAny, {
|
|
539
608
|
id: string;
|
|
540
|
-
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
541
609
|
expiresAt: string;
|
|
610
|
+
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
542
611
|
key?: string | undefined;
|
|
543
612
|
targetAuthScope?: string | undefined;
|
|
544
613
|
authorizationURL?: string | undefined;
|
|
545
614
|
canResume?: boolean | undefined;
|
|
615
|
+
steps?: {
|
|
616
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
617
|
+
id: "oauth" | "before" | "after";
|
|
618
|
+
title: string;
|
|
619
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
620
|
+
description?: string | undefined;
|
|
621
|
+
detail?: string | undefined;
|
|
622
|
+
}[] | undefined;
|
|
546
623
|
}, {
|
|
547
624
|
id: string;
|
|
548
|
-
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
549
625
|
expiresAt: string;
|
|
626
|
+
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
550
627
|
key?: string | undefined;
|
|
551
628
|
targetAuthScope?: string | undefined;
|
|
552
629
|
authorizationURL?: string | undefined;
|
|
553
630
|
canResume?: boolean | undefined;
|
|
631
|
+
steps?: {
|
|
632
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
633
|
+
id: "oauth" | "before" | "after";
|
|
634
|
+
title: string;
|
|
635
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
636
|
+
description?: string | undefined;
|
|
637
|
+
detail?: string | undefined;
|
|
638
|
+
}[] | undefined;
|
|
554
639
|
}>>;
|
|
555
640
|
}, "strict", z.ZodTypeAny, {
|
|
556
641
|
flow?: {
|
|
557
642
|
id: string;
|
|
558
|
-
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
559
643
|
expiresAt: string;
|
|
644
|
+
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
560
645
|
key?: string | undefined;
|
|
561
646
|
targetAuthScope?: string | undefined;
|
|
562
647
|
authorizationURL?: string | undefined;
|
|
563
648
|
canResume?: boolean | undefined;
|
|
649
|
+
steps?: {
|
|
650
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
651
|
+
id: "oauth" | "before" | "after";
|
|
652
|
+
title: string;
|
|
653
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
654
|
+
description?: string | undefined;
|
|
655
|
+
detail?: string | undefined;
|
|
656
|
+
}[] | undefined;
|
|
564
657
|
} | undefined;
|
|
565
658
|
}, {
|
|
566
659
|
flow?: {
|
|
567
660
|
id: string;
|
|
568
|
-
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
569
661
|
expiresAt: string;
|
|
662
|
+
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
570
663
|
key?: string | undefined;
|
|
571
664
|
targetAuthScope?: string | undefined;
|
|
572
665
|
authorizationURL?: string | undefined;
|
|
573
666
|
canResume?: boolean | undefined;
|
|
667
|
+
steps?: {
|
|
668
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
669
|
+
id: "oauth" | "before" | "after";
|
|
670
|
+
title: string;
|
|
671
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
672
|
+
description?: string | undefined;
|
|
673
|
+
detail?: string | undefined;
|
|
674
|
+
}[] | undefined;
|
|
574
675
|
} | undefined;
|
|
575
676
|
}>;
|
|
576
677
|
export declare const nativeFunctionSchemaDefinitions: ({
|
|
@@ -578,10 +679,13 @@ export declare const nativeFunctionSchemaDefinitions: ({
|
|
|
578
679
|
description: string;
|
|
579
680
|
input: z.ZodObject<{
|
|
580
681
|
flowId: z.ZodString;
|
|
682
|
+
language: z.ZodOptional<z.ZodString>;
|
|
581
683
|
}, "strict", z.ZodTypeAny, {
|
|
582
684
|
flowId: string;
|
|
685
|
+
language?: string | undefined;
|
|
583
686
|
}, {
|
|
584
687
|
flowId: string;
|
|
688
|
+
language?: string | undefined;
|
|
585
689
|
}>;
|
|
586
690
|
output: z.ZodObject<{
|
|
587
691
|
flow: z.ZodOptional<z.ZodObject<{
|
|
@@ -592,42 +696,96 @@ export declare const nativeFunctionSchemaDefinitions: ({
|
|
|
592
696
|
targetAuthScope: z.ZodOptional<z.ZodString>;
|
|
593
697
|
authorizationURL: z.ZodOptional<z.ZodString>;
|
|
594
698
|
canResume: z.ZodOptional<z.ZodBoolean>;
|
|
699
|
+
steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
700
|
+
id: z.ZodEnum<["before", "oauth", "after"]>;
|
|
701
|
+
title: z.ZodString;
|
|
702
|
+
description: z.ZodOptional<z.ZodString>;
|
|
703
|
+
icon: z.ZodEnum<["installation", "account", "organization", "permission", "settings"]>;
|
|
704
|
+
status: z.ZodEnum<["pending", "in_progress", "completed", "failed", "unknown"]>;
|
|
705
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
706
|
+
}, "strict", z.ZodTypeAny, {
|
|
707
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
708
|
+
id: "oauth" | "before" | "after";
|
|
709
|
+
title: string;
|
|
710
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
711
|
+
description?: string | undefined;
|
|
712
|
+
detail?: string | undefined;
|
|
713
|
+
}, {
|
|
714
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
715
|
+
id: "oauth" | "before" | "after";
|
|
716
|
+
title: string;
|
|
717
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
718
|
+
description?: string | undefined;
|
|
719
|
+
detail?: string | undefined;
|
|
720
|
+
}>, "many">>;
|
|
595
721
|
}, "strict", z.ZodTypeAny, {
|
|
596
722
|
id: string;
|
|
597
|
-
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
598
723
|
expiresAt: string;
|
|
724
|
+
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
599
725
|
key?: string | undefined;
|
|
600
726
|
targetAuthScope?: string | undefined;
|
|
601
727
|
authorizationURL?: string | undefined;
|
|
602
728
|
canResume?: boolean | undefined;
|
|
729
|
+
steps?: {
|
|
730
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
731
|
+
id: "oauth" | "before" | "after";
|
|
732
|
+
title: string;
|
|
733
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
734
|
+
description?: string | undefined;
|
|
735
|
+
detail?: string | undefined;
|
|
736
|
+
}[] | undefined;
|
|
603
737
|
}, {
|
|
604
738
|
id: string;
|
|
605
|
-
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
606
739
|
expiresAt: string;
|
|
740
|
+
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
607
741
|
key?: string | undefined;
|
|
608
742
|
targetAuthScope?: string | undefined;
|
|
609
743
|
authorizationURL?: string | undefined;
|
|
610
744
|
canResume?: boolean | undefined;
|
|
745
|
+
steps?: {
|
|
746
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
747
|
+
id: "oauth" | "before" | "after";
|
|
748
|
+
title: string;
|
|
749
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
750
|
+
description?: string | undefined;
|
|
751
|
+
detail?: string | undefined;
|
|
752
|
+
}[] | undefined;
|
|
611
753
|
}>>;
|
|
612
754
|
}, "strict", z.ZodTypeAny, {
|
|
613
755
|
flow?: {
|
|
614
756
|
id: string;
|
|
615
|
-
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
616
757
|
expiresAt: string;
|
|
758
|
+
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
617
759
|
key?: string | undefined;
|
|
618
760
|
targetAuthScope?: string | undefined;
|
|
619
761
|
authorizationURL?: string | undefined;
|
|
620
762
|
canResume?: boolean | undefined;
|
|
763
|
+
steps?: {
|
|
764
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
765
|
+
id: "oauth" | "before" | "after";
|
|
766
|
+
title: string;
|
|
767
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
768
|
+
description?: string | undefined;
|
|
769
|
+
detail?: string | undefined;
|
|
770
|
+
}[] | undefined;
|
|
621
771
|
} | undefined;
|
|
622
772
|
}, {
|
|
623
773
|
flow?: {
|
|
624
774
|
id: string;
|
|
625
|
-
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
626
775
|
expiresAt: string;
|
|
776
|
+
phase: "oauth" | "before" | "after" | "completed" | "canceled";
|
|
627
777
|
key?: string | undefined;
|
|
628
778
|
targetAuthScope?: string | undefined;
|
|
629
779
|
authorizationURL?: string | undefined;
|
|
630
780
|
canResume?: boolean | undefined;
|
|
781
|
+
steps?: {
|
|
782
|
+
status: "completed" | "unknown" | "pending" | "in_progress" | "failed";
|
|
783
|
+
id: "oauth" | "before" | "after";
|
|
784
|
+
title: string;
|
|
785
|
+
icon: "installation" | "account" | "organization" | "permission" | "settings";
|
|
786
|
+
description?: string | undefined;
|
|
787
|
+
detail?: string | undefined;
|
|
788
|
+
}[] | undefined;
|
|
631
789
|
} | undefined;
|
|
632
790
|
}>;
|
|
633
791
|
} | {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"native.d.ts","sourceRoot":"","sources":["../../src/schemas/native.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"native.d.ts","sourceRoot":"","sources":["../../src/schemas/native.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAK3D,eAAO,MAAM,wBAAwB,mQAUnC,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;EAMzC,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMzC,CAAC;AAEH,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAK/C,CAAC;AAEH,eAAO,MAAM,oCAAoC;;;;;;EAE/C,CAAC;AAEH,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMrD,CAAC;AAEH,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGrD,CAAC;AAEH,eAAO,MAAM,uCAAuC;;;;;;;;;;;;EAIlD,CAAC;AAEH,eAAO,MAAM,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAElD,CAAC;AAEH,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;EAKnD,CAAC;AAEH,eAAO,MAAM,wCAAwC;;;;;;;;;EAGnD,CAAC;AAEH,eAAO,MAAM,wCAAwC;;;;;;EAEnD,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;EAKzC,CAAC;AAEH,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAInD,CAAC;AAEH,eAAO,MAAM,+CAA+C;;;;;;;;;EAKjD,CAAC;AAEZ,eAAO,MAAM,oCAAoC;;;;;;;;;EAKtC,CAAC;AAEZ,eAAO,MAAM,+CAA+C;;;;;;;;;;;;;;;;;;;;;;;;EAKjD,CAAC;AAEZ,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWvB,CAAC;AAEZ,eAAO,MAAM,8BAA8B;;;;;;;;;EAEhC,CAAC;AAEZ,eAAO,MAAM,iCAAiC;;;;;;;;;;;;EAMnC,CAAC;AAEZ,eAAO,MAAM,iCAAiC;;;;;;;;;EAAiC,CAAC;AAEhF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE7B,CAAC;AASZ,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAyDA,CAAC;AAE7C,wBAAgB,wBAAwB,IAAI,cAAc,EAAE,CAO3D"}
|
package/dist/schemas/native.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { OAuthFlowStepSchema } from "../extensions/oauth.js";
|
|
1
2
|
import { z } from "zod";
|
|
2
3
|
import { zodToJsonSchema } from "../utils/zod-to-json-schema.js";
|
|
3
4
|
const NativeNonEmptyStringSchema = z.string().min(1);
|
|
@@ -105,15 +106,17 @@ export const NativeOAuthFlowSchema = z
|
|
|
105
106
|
targetAuthScope: z.string().optional(),
|
|
106
107
|
authorizationURL: z.string().url().optional(),
|
|
107
108
|
canResume: z.boolean().optional(),
|
|
109
|
+
steps: z.array(OAuthFlowStepSchema).optional(),
|
|
108
110
|
})
|
|
109
111
|
.strict();
|
|
110
112
|
export const NativeGetOAuthFlowParamsSchema = z
|
|
111
|
-
.object({ flowId: NativeNonEmptyStringSchema })
|
|
113
|
+
.object({ flowId: NativeNonEmptyStringSchema, language: z.string().optional() })
|
|
112
114
|
.strict();
|
|
113
115
|
export const NativeResumeOAuthFlowParamsSchema = z
|
|
114
116
|
.object({
|
|
115
117
|
flowId: NativeNonEmptyStringSchema,
|
|
116
118
|
resumeNonce: NativeNonEmptyStringSchema.optional(),
|
|
119
|
+
language: z.string().optional(),
|
|
117
120
|
})
|
|
118
121
|
.strict();
|
|
119
122
|
export const NativeCancelOAuthFlowParamsSchema = NativeGetOAuthFlowParamsSchema;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"native.js","sourceRoot":"","sources":["../../src/schemas/native.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"native.js","sourceRoot":"","sources":["../../src/schemas/native.ts"],"names":[],"mappings":"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"}
|