@runlot/api 0.1.0-rc.31 → 0.1.0-rc.32
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/index.d.ts +23 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +52 -0
- package/dist/index.js.map +1 -1
- package/dist/schema.d.ts +473 -0
- package/dist/schema.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/schema.d.ts
CHANGED
|
@@ -75,6 +75,31 @@ export interface paths {
|
|
|
75
75
|
patch?: never;
|
|
76
76
|
trace?: never;
|
|
77
77
|
};
|
|
78
|
+
"/v1/hooks/ses": {
|
|
79
|
+
parameters: {
|
|
80
|
+
query?: never;
|
|
81
|
+
header?: never;
|
|
82
|
+
path?: never;
|
|
83
|
+
cookie?: never;
|
|
84
|
+
};
|
|
85
|
+
get?: never;
|
|
86
|
+
put?: never;
|
|
87
|
+
/**
|
|
88
|
+
* SES 바운스·불만·배달 웹훅 (SNS 가 부른다, docs/email.md §6.2)
|
|
89
|
+
* @description 사용자가 부르는 경로가 아니다. Amazon SNS 가 HTTPS 구독으로 여기에 SES 사건을
|
|
90
|
+
* 배달한다. 인증은 토큰이 아니라 **SNS 서명**이다 — 인증서 URL 이
|
|
91
|
+
* `sns.<region>.amazonaws.com` 의 https 이고 토픽이 서버의
|
|
92
|
+
* `RUNLOT_SES_SNS_TOPIC_ARN` 과 같을 때만 받는다 (아니면 403).
|
|
93
|
+
* `SubscriptionConfirmation` 은 `SubscribeURL` 을 GET 해 자동으로 끝낸다.
|
|
94
|
+
* 서버에 토픽 ARN 이 없으면 501. 클라이언트 라이브러리는 부르지 않는다.
|
|
95
|
+
*/
|
|
96
|
+
post: operations["sesHook"];
|
|
97
|
+
delete?: never;
|
|
98
|
+
options?: never;
|
|
99
|
+
head?: never;
|
|
100
|
+
patch?: never;
|
|
101
|
+
trace?: never;
|
|
102
|
+
};
|
|
78
103
|
"/v1/me": {
|
|
79
104
|
parameters: {
|
|
80
105
|
query?: never;
|
|
@@ -761,6 +786,129 @@ export interface paths {
|
|
|
761
786
|
patch?: never;
|
|
762
787
|
trace?: never;
|
|
763
788
|
};
|
|
789
|
+
"/v1/orgs/{orgSlug}/projects/{projectName}/email": {
|
|
790
|
+
parameters: {
|
|
791
|
+
query?: never;
|
|
792
|
+
header?: never;
|
|
793
|
+
path: {
|
|
794
|
+
orgSlug: components["parameters"]["OrgSlug"];
|
|
795
|
+
projectName: components["parameters"]["ProjectName"];
|
|
796
|
+
};
|
|
797
|
+
cookie?: never;
|
|
798
|
+
};
|
|
799
|
+
/**
|
|
800
|
+
* 이메일 상태 (`runlot email`)
|
|
801
|
+
* @description 부여 여부·주소·발신자·시간당 상한·최근 발신/수신 계수 (docs/email.md §5).
|
|
802
|
+
* 부여가 없어도 `address`·`from` 은 채워 온다 — "켜면 이런 주소가 됩니다"
|
|
803
|
+
* 의 재료다. `granted` 가 진짜 상태다.
|
|
804
|
+
*
|
|
805
|
+
* viewer 이상.
|
|
806
|
+
*/
|
|
807
|
+
get: operations["getEmail"];
|
|
808
|
+
put?: never;
|
|
809
|
+
/**
|
|
810
|
+
* 이메일을 켠다 (배포가 `"email": true` 를 읽고 부른다)
|
|
811
|
+
* @description **멱등이다.** 요청 본문이 없다 — 주소는 우리가 정하고 (`<project>.<org>.<mail-domain>`),
|
|
812
|
+
* 상한은 요금제가 정한다. 주소는 부여 시점의 이름으로 굳는다.
|
|
813
|
+
*
|
|
814
|
+
* 켜지면 노드가 다음 수렴에서 `env.email` 을 연결하고, 그 주소로 오는
|
|
815
|
+
* 메일이 워커의 `email()` 에 닿는다. 발신과 수신은 같이 켜진다 — 도메인
|
|
816
|
+
* 하나가 두 방향의 이름이다.
|
|
817
|
+
*
|
|
818
|
+
* member 이상. 감사 `email.grant`.
|
|
819
|
+
*/
|
|
820
|
+
post: operations["grantEmail"];
|
|
821
|
+
/**
|
|
822
|
+
* 이메일을 끈다 (`runlot email delete`)
|
|
823
|
+
* @description 그 주소로 오는 메일은 이제 550 이다 — 보낸 쪽 MTA 는 바운스를 받고
|
|
824
|
+
* 다시 안 보낸다. 멱등이다.
|
|
825
|
+
*
|
|
826
|
+
* admin 이상. 감사 `email.revoke`.
|
|
827
|
+
*/
|
|
828
|
+
delete: operations["revokeEmail"];
|
|
829
|
+
options?: never;
|
|
830
|
+
head?: never;
|
|
831
|
+
patch?: never;
|
|
832
|
+
trace?: never;
|
|
833
|
+
};
|
|
834
|
+
"/v1/orgs/{orgSlug}/projects/{projectName}/email/log": {
|
|
835
|
+
parameters: {
|
|
836
|
+
query?: never;
|
|
837
|
+
header?: never;
|
|
838
|
+
path: {
|
|
839
|
+
orgSlug: components["parameters"]["OrgSlug"];
|
|
840
|
+
projectName: components["parameters"]["ProjectName"];
|
|
841
|
+
};
|
|
842
|
+
cookie?: never;
|
|
843
|
+
};
|
|
844
|
+
/**
|
|
845
|
+
* 메일 로그 (`runlot email log`)
|
|
846
|
+
* @description 보낸 것과 받은 것 한 통마다 한 줄, 시각 역순 (docs/email.md §6.1). 봉투·결말·
|
|
847
|
+
* 크기·SPF 결과. 원문은 `…/log/{mailId}/raw`.
|
|
848
|
+
*
|
|
849
|
+
* 보관은 요금제의 지금 값이다 — 무료 30 일, 프로 365 일 (`keepDays`).
|
|
850
|
+
*
|
|
851
|
+
* viewer 이상.
|
|
852
|
+
*/
|
|
853
|
+
get: operations["listMailLog"];
|
|
854
|
+
put?: never;
|
|
855
|
+
post?: never;
|
|
856
|
+
delete?: never;
|
|
857
|
+
options?: never;
|
|
858
|
+
head?: never;
|
|
859
|
+
patch?: never;
|
|
860
|
+
trace?: never;
|
|
861
|
+
};
|
|
862
|
+
"/v1/orgs/{orgSlug}/projects/{projectName}/email/log/{mailId}": {
|
|
863
|
+
parameters: {
|
|
864
|
+
query?: never;
|
|
865
|
+
header?: never;
|
|
866
|
+
path: {
|
|
867
|
+
orgSlug: components["parameters"]["OrgSlug"];
|
|
868
|
+
projectName: components["parameters"]["ProjectName"];
|
|
869
|
+
mailId: string;
|
|
870
|
+
};
|
|
871
|
+
cookie?: never;
|
|
872
|
+
};
|
|
873
|
+
/**
|
|
874
|
+
* 메일 한 통의 메타
|
|
875
|
+
* @description 프로젝트 밖의 id 는 404 다 — 다른 프로젝트의 로그를 id 로 더듬을 수 없다. viewer 이상.
|
|
876
|
+
*/
|
|
877
|
+
get: operations["getMailLog"];
|
|
878
|
+
put?: never;
|
|
879
|
+
post?: never;
|
|
880
|
+
delete?: never;
|
|
881
|
+
options?: never;
|
|
882
|
+
head?: never;
|
|
883
|
+
patch?: never;
|
|
884
|
+
trace?: never;
|
|
885
|
+
};
|
|
886
|
+
"/v1/orgs/{orgSlug}/projects/{projectName}/email/log/{mailId}/raw": {
|
|
887
|
+
parameters: {
|
|
888
|
+
query?: never;
|
|
889
|
+
header?: never;
|
|
890
|
+
path: {
|
|
891
|
+
orgSlug: components["parameters"]["OrgSlug"];
|
|
892
|
+
projectName: components["parameters"]["ProjectName"];
|
|
893
|
+
mailId: string;
|
|
894
|
+
};
|
|
895
|
+
cookie?: never;
|
|
896
|
+
};
|
|
897
|
+
/**
|
|
898
|
+
* 메일 원문 (`message/rfc822`)
|
|
899
|
+
* @description 헤더 포함 원문 그대로. 받은 메일은 우리가 붙인 `Received`·`Authentication-Results`
|
|
900
|
+
* 까지, 보낸 메일은 릴레이에 넘긴 내용으로 조립한 것이다. `.eml` 로 내려받는다.
|
|
901
|
+
* 원문이 없는 줄(`hasRaw: false`)은 404. viewer 이상.
|
|
902
|
+
*/
|
|
903
|
+
get: operations["getMailLogRaw"];
|
|
904
|
+
put?: never;
|
|
905
|
+
post?: never;
|
|
906
|
+
delete?: never;
|
|
907
|
+
options?: never;
|
|
908
|
+
head?: never;
|
|
909
|
+
patch?: never;
|
|
910
|
+
trace?: never;
|
|
911
|
+
};
|
|
764
912
|
"/v1/orgs/{orgSlug}/projects/{projectName}/auth": {
|
|
765
913
|
parameters: {
|
|
766
914
|
query?: never;
|
|
@@ -2539,6 +2687,12 @@ export interface components {
|
|
|
2539
2687
|
*/
|
|
2540
2688
|
framework?: "next";
|
|
2541
2689
|
triggers?: components["schemas"]["ManifestTriggers"];
|
|
2690
|
+
/**
|
|
2691
|
+
* @description 이메일 발신·수신 선언 (docs/email.md). `true` 면 워커가 `env.email`
|
|
2692
|
+
* 을 받고 `export default { email() }` 이 수신 핸들러가 된다. `main`
|
|
2693
|
+
* 이 있어야 뜻이 있다 — 정적 자산만으로는 보낼 코드도 받을 코드도 없다.
|
|
2694
|
+
*/
|
|
2695
|
+
email?: boolean;
|
|
2542
2696
|
};
|
|
2543
2697
|
/**
|
|
2544
2698
|
* @description 예약 실행 (docs/cron.md). 사용자가 `runlot.json` 에 적은 그대로 번들에
|
|
@@ -2657,6 +2811,16 @@ export interface components {
|
|
|
2657
2811
|
* @description 오브젝트 작업 수. 누적값이므로 합계에 포함된다
|
|
2658
2812
|
*/
|
|
2659
2813
|
objOps: number;
|
|
2814
|
+
/**
|
|
2815
|
+
* Format: int64
|
|
2816
|
+
* @description 보낸 메일 통 (docs/email.md §2.2)
|
|
2817
|
+
*/
|
|
2818
|
+
mailOut: number;
|
|
2819
|
+
/**
|
|
2820
|
+
* Format: int64
|
|
2821
|
+
* @description 받은 메일 통
|
|
2822
|
+
*/
|
|
2823
|
+
mailIn: number;
|
|
2660
2824
|
};
|
|
2661
2825
|
/**
|
|
2662
2826
|
* Format: int64
|
|
@@ -2692,6 +2856,86 @@ export interface components {
|
|
|
2692
2856
|
* @description 누적 (델타의 합)
|
|
2693
2857
|
*/
|
|
2694
2858
|
objOps: number;
|
|
2859
|
+
/**
|
|
2860
|
+
* Format: int64
|
|
2861
|
+
* @description 누적 (델타의 합)
|
|
2862
|
+
*/
|
|
2863
|
+
mailOut: number;
|
|
2864
|
+
/**
|
|
2865
|
+
* Format: int64
|
|
2866
|
+
* @description 누적 (델타의 합)
|
|
2867
|
+
*/
|
|
2868
|
+
mailIn: number;
|
|
2869
|
+
};
|
|
2870
|
+
/** @description 프로젝트의 이메일 상태다 (docs/email.md §5). */
|
|
2871
|
+
EmailStatus: {
|
|
2872
|
+
/** @description 켜졌는가. `project_email` 행의 존재가 유일한 표현이다 (0038). */
|
|
2873
|
+
granted: boolean;
|
|
2874
|
+
/**
|
|
2875
|
+
* @description 프로젝트의 메일 도메인. 수신은 `*@<address>` 전부다.
|
|
2876
|
+
* @example matzip.wickedev.runlot.email
|
|
2877
|
+
*/
|
|
2878
|
+
address: string;
|
|
2879
|
+
/**
|
|
2880
|
+
* @description 발신자 주소. `env.email.send` 가 보내는 메일의 From 이다.
|
|
2881
|
+
* @example matzip@matzip.wickedev.runlot.email
|
|
2882
|
+
*/
|
|
2883
|
+
from: string;
|
|
2884
|
+
/** @description 시간당 발신 상한. 인증 메일과 같은 통이다. */
|
|
2885
|
+
perHour: number;
|
|
2886
|
+
/**
|
|
2887
|
+
* Format: int64
|
|
2888
|
+
* @description 지금 시간대에 보낸 통
|
|
2889
|
+
*/
|
|
2890
|
+
sentLastHour: number;
|
|
2891
|
+
/**
|
|
2892
|
+
* Format: int64
|
|
2893
|
+
* @description 지금 시간대에 받은 통
|
|
2894
|
+
*/
|
|
2895
|
+
receivedLastHour: number;
|
|
2896
|
+
/**
|
|
2897
|
+
* Format: int64
|
|
2898
|
+
* @description 최근 24 시간에 보낸 통
|
|
2899
|
+
*/
|
|
2900
|
+
sent24h: number;
|
|
2901
|
+
/**
|
|
2902
|
+
* Format: int64
|
|
2903
|
+
* @description 최근 24 시간에 받은 통
|
|
2904
|
+
*/
|
|
2905
|
+
received24h: number;
|
|
2906
|
+
/** @description 이 배치의 메일 도메인 접미사. 비면 이메일을 켤 수 없다. */
|
|
2907
|
+
mailDomain: string;
|
|
2908
|
+
};
|
|
2909
|
+
/** @description 메일 로그 한 줄 (docs/email.md §6.1). */
|
|
2910
|
+
MailLogEntry: {
|
|
2911
|
+
/** Format: uuid */
|
|
2912
|
+
mailId: string;
|
|
2913
|
+
/** Format: uuid */
|
|
2914
|
+
projectId: string;
|
|
2915
|
+
/** @enum {string} */
|
|
2916
|
+
direction: "in" | "out";
|
|
2917
|
+
/** Format: date-time */
|
|
2918
|
+
at: string;
|
|
2919
|
+
from: string;
|
|
2920
|
+
to: string[];
|
|
2921
|
+
subject: string;
|
|
2922
|
+
/** @description 발신: `sent` → `delivered`·`bounced`·`complained` (릴레이 피드백, docs/email.md §6.2) 또는 `failed` / 수신: `ok`·`rejected`·`no_handler`·`exception` */
|
|
2923
|
+
outcome: string;
|
|
2924
|
+
/** @description 거절 문장·오류 문장 — 사람이 읽는 한 줄 */
|
|
2925
|
+
detail?: string;
|
|
2926
|
+
/** @description 수신의 Authentication-Results */
|
|
2927
|
+
authResults?: string;
|
|
2928
|
+
/** Format: int64 */
|
|
2929
|
+
sizeBytes: number;
|
|
2930
|
+
/** @description 원문이 있는가 */
|
|
2931
|
+
hasRaw: boolean;
|
|
2932
|
+
};
|
|
2933
|
+
MailLogPage: {
|
|
2934
|
+
entries: components["schemas"]["MailLogEntry"][];
|
|
2935
|
+
/** @description 다음 장. 없으면 끝 */
|
|
2936
|
+
cursor?: string;
|
|
2937
|
+
/** @description 이 org 의 보관 일수 */
|
|
2938
|
+
keepDays: number;
|
|
2695
2939
|
};
|
|
2696
2940
|
/**
|
|
2697
2941
|
* @description 프로젝트 전용 오브젝트 스토리지 상태다 (docs/storage.md §7).
|
|
@@ -3278,6 +3522,43 @@ export interface operations {
|
|
|
3278
3522
|
400: components["responses"]["BadRequest"];
|
|
3279
3523
|
};
|
|
3280
3524
|
};
|
|
3525
|
+
sesHook: {
|
|
3526
|
+
parameters: {
|
|
3527
|
+
query?: never;
|
|
3528
|
+
header?: never;
|
|
3529
|
+
path?: never;
|
|
3530
|
+
cookie?: never;
|
|
3531
|
+
};
|
|
3532
|
+
requestBody: {
|
|
3533
|
+
content: {
|
|
3534
|
+
"text/plain": string;
|
|
3535
|
+
};
|
|
3536
|
+
};
|
|
3537
|
+
responses: {
|
|
3538
|
+
/** @description 받았다 (모르는 사건 종류·모르는 id 도 200) */
|
|
3539
|
+
200: {
|
|
3540
|
+
headers: {
|
|
3541
|
+
[name: string]: unknown;
|
|
3542
|
+
};
|
|
3543
|
+
content?: never;
|
|
3544
|
+
};
|
|
3545
|
+
400: components["responses"]["BadRequest"];
|
|
3546
|
+
/** @description SNS 서명이 맞지 않는다 */
|
|
3547
|
+
403: {
|
|
3548
|
+
headers: {
|
|
3549
|
+
[name: string]: unknown;
|
|
3550
|
+
};
|
|
3551
|
+
content?: never;
|
|
3552
|
+
};
|
|
3553
|
+
/** @description 웹훅이 꺼져 있다 */
|
|
3554
|
+
501: {
|
|
3555
|
+
headers: {
|
|
3556
|
+
[name: string]: unknown;
|
|
3557
|
+
};
|
|
3558
|
+
content?: never;
|
|
3559
|
+
};
|
|
3560
|
+
};
|
|
3561
|
+
};
|
|
3281
3562
|
getMe: {
|
|
3282
3563
|
parameters: {
|
|
3283
3564
|
query?: never;
|
|
@@ -4313,6 +4594,198 @@ export interface operations {
|
|
|
4313
4594
|
};
|
|
4314
4595
|
};
|
|
4315
4596
|
};
|
|
4597
|
+
getEmail: {
|
|
4598
|
+
parameters: {
|
|
4599
|
+
query?: never;
|
|
4600
|
+
header?: never;
|
|
4601
|
+
path: {
|
|
4602
|
+
orgSlug: components["parameters"]["OrgSlug"];
|
|
4603
|
+
projectName: components["parameters"]["ProjectName"];
|
|
4604
|
+
};
|
|
4605
|
+
cookie?: never;
|
|
4606
|
+
};
|
|
4607
|
+
requestBody?: never;
|
|
4608
|
+
responses: {
|
|
4609
|
+
/** @description 이메일 상태 */
|
|
4610
|
+
200: {
|
|
4611
|
+
headers: {
|
|
4612
|
+
[name: string]: unknown;
|
|
4613
|
+
};
|
|
4614
|
+
content: {
|
|
4615
|
+
"application/json": components["schemas"]["EmailStatus"];
|
|
4616
|
+
};
|
|
4617
|
+
};
|
|
4618
|
+
403: components["responses"]["Forbidden"];
|
|
4619
|
+
404: components["responses"]["NotFound"];
|
|
4620
|
+
/** @description `no_core` */
|
|
4621
|
+
503: {
|
|
4622
|
+
headers: {
|
|
4623
|
+
[name: string]: unknown;
|
|
4624
|
+
};
|
|
4625
|
+
content: {
|
|
4626
|
+
"application/json": components["schemas"]["Error"];
|
|
4627
|
+
};
|
|
4628
|
+
};
|
|
4629
|
+
};
|
|
4630
|
+
};
|
|
4631
|
+
grantEmail: {
|
|
4632
|
+
parameters: {
|
|
4633
|
+
query?: never;
|
|
4634
|
+
header?: never;
|
|
4635
|
+
path: {
|
|
4636
|
+
orgSlug: components["parameters"]["OrgSlug"];
|
|
4637
|
+
projectName: components["parameters"]["ProjectName"];
|
|
4638
|
+
};
|
|
4639
|
+
cookie?: never;
|
|
4640
|
+
};
|
|
4641
|
+
requestBody?: never;
|
|
4642
|
+
responses: {
|
|
4643
|
+
/** @description 부여 상태 (이미 있었으면 기존 값) */
|
|
4644
|
+
200: {
|
|
4645
|
+
headers: {
|
|
4646
|
+
[name: string]: unknown;
|
|
4647
|
+
};
|
|
4648
|
+
content: {
|
|
4649
|
+
"application/json": components["schemas"]["EmailStatus"];
|
|
4650
|
+
};
|
|
4651
|
+
};
|
|
4652
|
+
403: components["responses"]["Forbidden"];
|
|
4653
|
+
404: components["responses"]["NotFound"];
|
|
4654
|
+
/** @description `email_unavailable` — 이 배치에 메일 도메인이 없다. `email_address_taken` — 다른 프로젝트가 같은 주소를 쥐고 있다 */
|
|
4655
|
+
409: {
|
|
4656
|
+
headers: {
|
|
4657
|
+
[name: string]: unknown;
|
|
4658
|
+
};
|
|
4659
|
+
content: {
|
|
4660
|
+
"application/json": components["schemas"]["Error"];
|
|
4661
|
+
};
|
|
4662
|
+
};
|
|
4663
|
+
/** @description `no_core` */
|
|
4664
|
+
503: {
|
|
4665
|
+
headers: {
|
|
4666
|
+
[name: string]: unknown;
|
|
4667
|
+
};
|
|
4668
|
+
content: {
|
|
4669
|
+
"application/json": components["schemas"]["Error"];
|
|
4670
|
+
};
|
|
4671
|
+
};
|
|
4672
|
+
};
|
|
4673
|
+
};
|
|
4674
|
+
revokeEmail: {
|
|
4675
|
+
parameters: {
|
|
4676
|
+
query?: never;
|
|
4677
|
+
header?: never;
|
|
4678
|
+
path: {
|
|
4679
|
+
orgSlug: components["parameters"]["OrgSlug"];
|
|
4680
|
+
projectName: components["parameters"]["ProjectName"];
|
|
4681
|
+
};
|
|
4682
|
+
cookie?: never;
|
|
4683
|
+
};
|
|
4684
|
+
requestBody?: never;
|
|
4685
|
+
responses: {
|
|
4686
|
+
/** @description 껐다 */
|
|
4687
|
+
204: {
|
|
4688
|
+
headers: {
|
|
4689
|
+
[name: string]: unknown;
|
|
4690
|
+
};
|
|
4691
|
+
content?: never;
|
|
4692
|
+
};
|
|
4693
|
+
403: components["responses"]["Forbidden"];
|
|
4694
|
+
404: components["responses"]["NotFound"];
|
|
4695
|
+
/** @description `no_core` */
|
|
4696
|
+
503: {
|
|
4697
|
+
headers: {
|
|
4698
|
+
[name: string]: unknown;
|
|
4699
|
+
};
|
|
4700
|
+
content: {
|
|
4701
|
+
"application/json": components["schemas"]["Error"];
|
|
4702
|
+
};
|
|
4703
|
+
};
|
|
4704
|
+
};
|
|
4705
|
+
};
|
|
4706
|
+
listMailLog: {
|
|
4707
|
+
parameters: {
|
|
4708
|
+
query?: {
|
|
4709
|
+
/** @description 비면 둘 다 */
|
|
4710
|
+
direction?: "in" | "out";
|
|
4711
|
+
/** @description 앞 장의 `cursor` */
|
|
4712
|
+
cursor?: string;
|
|
4713
|
+
limit?: number;
|
|
4714
|
+
};
|
|
4715
|
+
header?: never;
|
|
4716
|
+
path: {
|
|
4717
|
+
orgSlug: components["parameters"]["OrgSlug"];
|
|
4718
|
+
projectName: components["parameters"]["ProjectName"];
|
|
4719
|
+
};
|
|
4720
|
+
cookie?: never;
|
|
4721
|
+
};
|
|
4722
|
+
requestBody?: never;
|
|
4723
|
+
responses: {
|
|
4724
|
+
/** @description 한 장 */
|
|
4725
|
+
200: {
|
|
4726
|
+
headers: {
|
|
4727
|
+
[name: string]: unknown;
|
|
4728
|
+
};
|
|
4729
|
+
content: {
|
|
4730
|
+
"application/json": components["schemas"]["MailLogPage"];
|
|
4731
|
+
};
|
|
4732
|
+
};
|
|
4733
|
+
403: components["responses"]["Forbidden"];
|
|
4734
|
+
404: components["responses"]["NotFound"];
|
|
4735
|
+
};
|
|
4736
|
+
};
|
|
4737
|
+
getMailLog: {
|
|
4738
|
+
parameters: {
|
|
4739
|
+
query?: never;
|
|
4740
|
+
header?: never;
|
|
4741
|
+
path: {
|
|
4742
|
+
orgSlug: components["parameters"]["OrgSlug"];
|
|
4743
|
+
projectName: components["parameters"]["ProjectName"];
|
|
4744
|
+
mailId: string;
|
|
4745
|
+
};
|
|
4746
|
+
cookie?: never;
|
|
4747
|
+
};
|
|
4748
|
+
requestBody?: never;
|
|
4749
|
+
responses: {
|
|
4750
|
+
/** @description 한 통 */
|
|
4751
|
+
200: {
|
|
4752
|
+
headers: {
|
|
4753
|
+
[name: string]: unknown;
|
|
4754
|
+
};
|
|
4755
|
+
content: {
|
|
4756
|
+
"application/json": components["schemas"]["MailLogEntry"];
|
|
4757
|
+
};
|
|
4758
|
+
};
|
|
4759
|
+
403: components["responses"]["Forbidden"];
|
|
4760
|
+
404: components["responses"]["NotFound"];
|
|
4761
|
+
};
|
|
4762
|
+
};
|
|
4763
|
+
getMailLogRaw: {
|
|
4764
|
+
parameters: {
|
|
4765
|
+
query?: never;
|
|
4766
|
+
header?: never;
|
|
4767
|
+
path: {
|
|
4768
|
+
orgSlug: components["parameters"]["OrgSlug"];
|
|
4769
|
+
projectName: components["parameters"]["ProjectName"];
|
|
4770
|
+
mailId: string;
|
|
4771
|
+
};
|
|
4772
|
+
cookie?: never;
|
|
4773
|
+
};
|
|
4774
|
+
requestBody?: never;
|
|
4775
|
+
responses: {
|
|
4776
|
+
/** @description 원문 */
|
|
4777
|
+
200: {
|
|
4778
|
+
headers: {
|
|
4779
|
+
[name: string]: unknown;
|
|
4780
|
+
};
|
|
4781
|
+
content: {
|
|
4782
|
+
"message/rfc822": string;
|
|
4783
|
+
};
|
|
4784
|
+
};
|
|
4785
|
+
403: components["responses"]["Forbidden"];
|
|
4786
|
+
404: components["responses"]["NotFound"];
|
|
4787
|
+
};
|
|
4788
|
+
};
|
|
4316
4789
|
getAuth: {
|
|
4317
4790
|
parameters: {
|
|
4318
4791
|
query?: never;
|