@intlayer/backend 8.7.11 → 8.7.13
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/README.md +27 -1
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/solid.json +4990 -0
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/svelte.json +4987 -0
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/vue.json +4975 -0
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/intlayer_with_astro_lit.json +9936 -8930
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/intlayer_with_astro_vanilla.json +7963 -6949
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/readme.json +12908 -12288
- package/dist/esm/controllers/oAuth2.controller.mjs +21 -1
- package/dist/esm/controllers/oAuth2.controller.mjs.map +1 -1
- package/dist/esm/controllers/stripe.controller.mjs +86 -2
- package/dist/esm/controllers/stripe.controller.mjs.map +1 -1
- package/dist/esm/controllers/translation.controller.mjs +2 -0
- package/dist/esm/controllers/translation.controller.mjs.map +1 -1
- package/dist/esm/emails/InviteUserEmail.mjs +1541 -1
- package/dist/esm/emails/InviteUserEmail.mjs.map +1 -1
- package/dist/esm/emails/MagicLinkEmail.mjs +1128 -1
- package/dist/esm/emails/MagicLinkEmail.mjs.map +1 -1
- package/dist/esm/emails/OAuthTokenCreatedEmail.mjs +1389 -1
- package/dist/esm/emails/OAuthTokenCreatedEmail.mjs.map +1 -1
- package/dist/esm/emails/PasswordChangeConfirmation.mjs +814 -1
- package/dist/esm/emails/PasswordChangeConfirmation.mjs.map +1 -1
- package/dist/esm/emails/ResetUserPassword.mjs +1132 -1
- package/dist/esm/emails/ResetUserPassword.mjs.map +1 -1
- package/dist/esm/emails/SubscriptionPaymentCancellation.mjs +913 -1
- package/dist/esm/emails/SubscriptionPaymentCancellation.mjs.map +1 -1
- package/dist/esm/emails/SubscriptionPaymentError.mjs +908 -1
- package/dist/esm/emails/SubscriptionPaymentError.mjs.map +1 -1
- package/dist/esm/emails/SubscriptionPaymentSuccess.mjs +935 -1
- package/dist/esm/emails/SubscriptionPaymentSuccess.mjs.map +1 -1
- package/dist/esm/emails/ValidateUserEmail.mjs +1111 -1
- package/dist/esm/emails/ValidateUserEmail.mjs.map +1 -1
- package/dist/esm/emails/Welcome.mjs +1004 -1
- package/dist/esm/emails/Welcome.mjs.map +1 -1
- package/dist/esm/emails/index.mjs +7 -7
- package/dist/esm/index.mjs +8 -2
- package/dist/esm/index.mjs.map +1 -1
- package/dist/esm/middlewares/oAuth2.middleware.mjs +2 -2
- package/dist/esm/middlewares/oAuth2.middleware.mjs.map +1 -1
- package/dist/esm/routes/audit.routes.mjs +5 -4
- package/dist/esm/routes/audit.routes.mjs.map +1 -1
- package/dist/esm/routes/dictionary.routes.mjs +4 -3
- package/dist/esm/routes/dictionary.routes.mjs.map +1 -1
- package/dist/esm/routes/organization.routes.mjs +3 -2
- package/dist/esm/routes/organization.routes.mjs.map +1 -1
- package/dist/esm/routes/paramsSchemas.mjs +67 -0
- package/dist/esm/routes/paramsSchemas.mjs.map +1 -0
- package/dist/esm/routes/project.routes.mjs +2 -1
- package/dist/esm/routes/project.routes.mjs.map +1 -1
- package/dist/esm/routes/showcaseProject.routes.mjs +5 -4
- package/dist/esm/routes/showcaseProject.routes.mjs.map +1 -1
- package/dist/esm/routes/stripe.routes.mjs +19 -1
- package/dist/esm/routes/stripe.routes.mjs.map +1 -1
- package/dist/esm/routes/tags.routes.mjs +3 -2
- package/dist/esm/routes/tags.routes.mjs.map +1 -1
- package/dist/esm/routes/translate.routes.mjs +6 -5
- package/dist/esm/routes/translate.routes.mjs.map +1 -1
- package/dist/esm/routes/user.routes.mjs +5 -4
- package/dist/esm/routes/user.routes.mjs.map +1 -1
- package/dist/esm/schemas/oAuth2.schema.mjs +1 -1
- package/dist/esm/schemas/oAuth2.schema.mjs.map +1 -1
- package/dist/esm/services/email.service.mjs +338 -38
- package/dist/esm/services/email.service.mjs.map +1 -1
- package/dist/esm/services/oAuth2.service.mjs +20 -2
- package/dist/esm/services/oAuth2.service.mjs.map +1 -1
- package/dist/esm/services/subscription.service.mjs +5 -2
- package/dist/esm/services/subscription.service.mjs.map +1 -1
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/solid.json +4990 -0
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/svelte.json +4987 -0
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/vue.json +4975 -0
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/intlayer_with_astro_lit.json +9936 -8930
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/intlayer_with_astro_vanilla.json +7963 -6949
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/readme.json +12908 -12288
- package/dist/esm/utils/auth/getAuth.mjs +6 -0
- package/dist/esm/utils/auth/getAuth.mjs.map +1 -1
- package/dist/esm/utils/errors/errorCodes.mjs +3917 -287
- package/dist/esm/utils/errors/errorCodes.mjs.map +1 -1
- package/dist/esm/utils/mongoDB/connectDB.mjs +5 -0
- package/dist/esm/utils/mongoDB/connectDB.mjs.map +1 -1
- package/dist/esm/utils/oAuth2.mjs +6 -2
- package/dist/esm/utils/oAuth2.mjs.map +1 -1
- package/dist/esm/utils/plan.mjs +13 -1
- package/dist/esm/utils/plan.mjs.map +1 -1
- package/dist/types/controllers/oAuth2.controller.d.ts +11 -1
- package/dist/types/controllers/oAuth2.controller.d.ts.map +1 -1
- package/dist/types/controllers/stripe.controller.d.ts +22 -2
- package/dist/types/controllers/stripe.controller.d.ts.map +1 -1
- package/dist/types/controllers/translation.controller.d.ts.map +1 -1
- package/dist/types/emails/InviteUserEmail.d.ts +181 -1
- package/dist/types/emails/InviteUserEmail.d.ts.map +1 -1
- package/dist/types/emails/MagicLinkEmail.d.ts +106 -1
- package/dist/types/emails/MagicLinkEmail.d.ts.map +1 -1
- package/dist/types/emails/OAuthTokenCreatedEmail.d.ts +166 -1
- package/dist/types/emails/OAuthTokenCreatedEmail.d.ts.map +1 -1
- package/dist/types/emails/PasswordChangeConfirmation.d.ts +91 -1
- package/dist/types/emails/PasswordChangeConfirmation.d.ts.map +1 -1
- package/dist/types/emails/ResetUserPassword.d.ts +106 -1
- package/dist/types/emails/ResetUserPassword.d.ts.map +1 -1
- package/dist/types/emails/SubscriptionPaymentCancellation.d.ts +151 -1
- package/dist/types/emails/SubscriptionPaymentCancellation.d.ts.map +1 -1
- package/dist/types/emails/SubscriptionPaymentError.d.ts +151 -1
- package/dist/types/emails/SubscriptionPaymentError.d.ts.map +1 -1
- package/dist/types/emails/SubscriptionPaymentSuccess.d.ts +151 -1
- package/dist/types/emails/SubscriptionPaymentSuccess.d.ts.map +1 -1
- package/dist/types/emails/ValidateUserEmail.d.ts +106 -1
- package/dist/types/emails/ValidateUserEmail.d.ts.map +1 -1
- package/dist/types/emails/Welcome.d.ts +106 -1
- package/dist/types/emails/Welcome.d.ts.map +1 -1
- package/dist/types/emails/index.d.ts +7 -7
- package/dist/types/export.d.ts +3 -3
- package/dist/types/middlewares/oAuth2.middleware.d.ts.map +1 -1
- package/dist/types/routes/audit.routes.d.ts.map +1 -1
- package/dist/types/routes/dictionary.routes.d.ts.map +1 -1
- package/dist/types/routes/organization.routes.d.ts.map +1 -1
- package/dist/types/routes/paramsSchemas.d.ts +102 -0
- package/dist/types/routes/paramsSchemas.d.ts.map +1 -0
- package/dist/types/routes/project.routes.d.ts.map +1 -1
- package/dist/types/routes/showcaseProject.routes.d.ts.map +1 -1
- package/dist/types/routes/stripe.routes.d.ts +15 -0
- package/dist/types/routes/stripe.routes.d.ts.map +1 -1
- package/dist/types/routes/tags.routes.d.ts.map +1 -1
- package/dist/types/routes/translate.routes.d.ts.map +1 -1
- package/dist/types/routes/user.routes.d.ts.map +1 -1
- package/dist/types/schemas/dictionary.schema.d.ts +6 -6
- package/dist/types/schemas/discussion.schema.d.ts +9 -9
- package/dist/types/schemas/organization.schema.d.ts +9 -9
- package/dist/types/schemas/plans.schema.d.ts +6 -6
- package/dist/types/schemas/project.schema.d.ts +12 -12
- package/dist/types/schemas/session.schema.d.ts +8 -8
- package/dist/types/schemas/showcaseProject.schema.d.ts +19 -19
- package/dist/types/schemas/tag.schema.d.ts +7 -7
- package/dist/types/services/email.service.d.ts.map +1 -1
- package/dist/types/services/oAuth2.service.d.ts +6 -1
- package/dist/types/services/oAuth2.service.d.ts.map +1 -1
- package/dist/types/types/plan.types.d.ts +2 -2
- package/dist/types/utils/errors/errorCodes.d.ts +3634 -4
- package/dist/types/utils/errors/errorCodes.d.ts.map +1 -1
- package/dist/types/utils/mongoDB/connectDB.d.ts.map +1 -1
- package/dist/types/utils/oAuth2.d.ts +3 -1
- package/dist/types/utils/oAuth2.d.ts.map +1 -1
- package/dist/types/utils/plan.d.ts +2 -1
- package/dist/types/utils/plan.d.ts.map +1 -1
- package/package.json +14 -13
|
@@ -39,6 +39,156 @@ declare const SubscriptionPaymentErrorES: {
|
|
|
39
39
|
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
40
40
|
PreviewProps: SubscriptionPaymentErrorProps;
|
|
41
41
|
};
|
|
42
|
+
declare const SubscriptionPaymentErrorRU: {
|
|
43
|
+
({
|
|
44
|
+
username,
|
|
45
|
+
planName,
|
|
46
|
+
organizationName,
|
|
47
|
+
errorDate,
|
|
48
|
+
retryPaymentLink
|
|
49
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
50
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
51
|
+
};
|
|
52
|
+
declare const SubscriptionPaymentErrorJA: {
|
|
53
|
+
({
|
|
54
|
+
username,
|
|
55
|
+
planName,
|
|
56
|
+
organizationName,
|
|
57
|
+
errorDate,
|
|
58
|
+
retryPaymentLink
|
|
59
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
60
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
61
|
+
};
|
|
62
|
+
declare const SubscriptionPaymentErrorKO: {
|
|
63
|
+
({
|
|
64
|
+
username,
|
|
65
|
+
planName,
|
|
66
|
+
organizationName,
|
|
67
|
+
errorDate,
|
|
68
|
+
retryPaymentLink
|
|
69
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
70
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
71
|
+
};
|
|
72
|
+
declare const SubscriptionPaymentErrorZH: {
|
|
73
|
+
({
|
|
74
|
+
username,
|
|
75
|
+
planName,
|
|
76
|
+
organizationName,
|
|
77
|
+
errorDate,
|
|
78
|
+
retryPaymentLink
|
|
79
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
80
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
81
|
+
};
|
|
82
|
+
declare const SubscriptionPaymentErrorDE: {
|
|
83
|
+
({
|
|
84
|
+
username,
|
|
85
|
+
planName,
|
|
86
|
+
organizationName,
|
|
87
|
+
errorDate,
|
|
88
|
+
retryPaymentLink
|
|
89
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
90
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
91
|
+
};
|
|
92
|
+
declare const SubscriptionPaymentErrorAR: {
|
|
93
|
+
({
|
|
94
|
+
username,
|
|
95
|
+
planName,
|
|
96
|
+
organizationName,
|
|
97
|
+
errorDate,
|
|
98
|
+
retryPaymentLink
|
|
99
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
100
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
101
|
+
};
|
|
102
|
+
declare const SubscriptionPaymentErrorIT: {
|
|
103
|
+
({
|
|
104
|
+
username,
|
|
105
|
+
planName,
|
|
106
|
+
organizationName,
|
|
107
|
+
errorDate,
|
|
108
|
+
retryPaymentLink
|
|
109
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
110
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
111
|
+
};
|
|
112
|
+
declare const SubscriptionPaymentErrorEN_GB: {
|
|
113
|
+
({
|
|
114
|
+
username,
|
|
115
|
+
planName,
|
|
116
|
+
organizationName,
|
|
117
|
+
errorDate,
|
|
118
|
+
retryPaymentLink
|
|
119
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
120
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
121
|
+
};
|
|
122
|
+
declare const SubscriptionPaymentErrorPT: {
|
|
123
|
+
({
|
|
124
|
+
username,
|
|
125
|
+
planName,
|
|
126
|
+
organizationName,
|
|
127
|
+
errorDate,
|
|
128
|
+
retryPaymentLink
|
|
129
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
130
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
131
|
+
};
|
|
132
|
+
declare const SubscriptionPaymentErrorHI: {
|
|
133
|
+
({
|
|
134
|
+
username,
|
|
135
|
+
planName,
|
|
136
|
+
organizationName,
|
|
137
|
+
errorDate,
|
|
138
|
+
retryPaymentLink
|
|
139
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
140
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
141
|
+
};
|
|
142
|
+
declare const SubscriptionPaymentErrorTR: {
|
|
143
|
+
({
|
|
144
|
+
username,
|
|
145
|
+
planName,
|
|
146
|
+
organizationName,
|
|
147
|
+
errorDate,
|
|
148
|
+
retryPaymentLink
|
|
149
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
150
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
151
|
+
};
|
|
152
|
+
declare const SubscriptionPaymentErrorPL: {
|
|
153
|
+
({
|
|
154
|
+
username,
|
|
155
|
+
planName,
|
|
156
|
+
organizationName,
|
|
157
|
+
errorDate,
|
|
158
|
+
retryPaymentLink
|
|
159
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
160
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
161
|
+
};
|
|
162
|
+
declare const SubscriptionPaymentErrorID: {
|
|
163
|
+
({
|
|
164
|
+
username,
|
|
165
|
+
planName,
|
|
166
|
+
organizationName,
|
|
167
|
+
errorDate,
|
|
168
|
+
retryPaymentLink
|
|
169
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
170
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
171
|
+
};
|
|
172
|
+
declare const SubscriptionPaymentErrorVI: {
|
|
173
|
+
({
|
|
174
|
+
username,
|
|
175
|
+
planName,
|
|
176
|
+
organizationName,
|
|
177
|
+
errorDate,
|
|
178
|
+
retryPaymentLink
|
|
179
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
180
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
181
|
+
};
|
|
182
|
+
declare const SubscriptionPaymentErrorUK: {
|
|
183
|
+
({
|
|
184
|
+
username,
|
|
185
|
+
planName,
|
|
186
|
+
organizationName,
|
|
187
|
+
errorDate,
|
|
188
|
+
retryPaymentLink
|
|
189
|
+
}: SubscriptionPaymentErrorProps): _$react_jsx_runtime0.JSX.Element;
|
|
190
|
+
PreviewProps: SubscriptionPaymentErrorProps;
|
|
191
|
+
};
|
|
42
192
|
//#endregion
|
|
43
|
-
export { SubscriptionPaymentErrorEN, SubscriptionPaymentErrorES, SubscriptionPaymentErrorFR, SubscriptionPaymentErrorProps };
|
|
193
|
+
export { SubscriptionPaymentErrorAR, SubscriptionPaymentErrorDE, SubscriptionPaymentErrorEN, SubscriptionPaymentErrorEN_GB, SubscriptionPaymentErrorES, SubscriptionPaymentErrorFR, SubscriptionPaymentErrorHI, SubscriptionPaymentErrorID, SubscriptionPaymentErrorIT, SubscriptionPaymentErrorJA, SubscriptionPaymentErrorKO, SubscriptionPaymentErrorPL, SubscriptionPaymentErrorPT, SubscriptionPaymentErrorProps, SubscriptionPaymentErrorRU, SubscriptionPaymentErrorTR, SubscriptionPaymentErrorUK, SubscriptionPaymentErrorVI, SubscriptionPaymentErrorZH };
|
|
44
194
|
//# sourceMappingURL=SubscriptionPaymentError.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SubscriptionPaymentError.d.ts","names":[],"sources":["../../../src/emails/SubscriptionPaymentError.tsx"],"mappings":";;;KAcY,6BAAA;EACV,QAAA;EACA,KAAA;EACA,QAAA;EACA,gBAAA;EACA,SAAA;EACA,gBAAA;AAAA;AAAA,cAIW,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAmDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
1
|
+
{"version":3,"file":"SubscriptionPaymentError.d.ts","names":[],"sources":["../../../src/emails/SubscriptionPaymentError.tsx"],"mappings":";;;KAcY,6BAAA;EACV,QAAA;EACA,KAAA;EACA,QAAA;EACA,gBAAA;EACA,SAAA;EACA,gBAAA;AAAA;AAAA,cAIW,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAmDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAgDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAiDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAiDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDnB,6BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAiDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAmDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDnB,0BAAA;EAAA;;;;;;KAMV,6BAAA,GAA6B,oBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
@@ -39,6 +39,156 @@ declare const SubscriptionPaymentSuccessES: {
|
|
|
39
39
|
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
40
40
|
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
41
41
|
};
|
|
42
|
+
declare const SubscriptionPaymentSuccessRU: {
|
|
43
|
+
({
|
|
44
|
+
username,
|
|
45
|
+
planName,
|
|
46
|
+
organizationName,
|
|
47
|
+
subscriptionStartDate,
|
|
48
|
+
manageSubscriptionLink
|
|
49
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
50
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
51
|
+
};
|
|
52
|
+
declare const SubscriptionPaymentSuccessJA: {
|
|
53
|
+
({
|
|
54
|
+
username,
|
|
55
|
+
planName,
|
|
56
|
+
organizationName,
|
|
57
|
+
subscriptionStartDate,
|
|
58
|
+
manageSubscriptionLink
|
|
59
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
60
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
61
|
+
};
|
|
62
|
+
declare const SubscriptionPaymentSuccessKO: {
|
|
63
|
+
({
|
|
64
|
+
username,
|
|
65
|
+
planName,
|
|
66
|
+
organizationName,
|
|
67
|
+
subscriptionStartDate,
|
|
68
|
+
manageSubscriptionLink
|
|
69
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
70
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
71
|
+
};
|
|
72
|
+
declare const SubscriptionPaymentSuccessZH: {
|
|
73
|
+
({
|
|
74
|
+
username,
|
|
75
|
+
planName,
|
|
76
|
+
organizationName,
|
|
77
|
+
subscriptionStartDate,
|
|
78
|
+
manageSubscriptionLink
|
|
79
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
80
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
81
|
+
};
|
|
82
|
+
declare const SubscriptionPaymentSuccessDE: {
|
|
83
|
+
({
|
|
84
|
+
username,
|
|
85
|
+
planName,
|
|
86
|
+
organizationName,
|
|
87
|
+
subscriptionStartDate,
|
|
88
|
+
manageSubscriptionLink
|
|
89
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
90
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
91
|
+
};
|
|
92
|
+
declare const SubscriptionPaymentSuccessAR: {
|
|
93
|
+
({
|
|
94
|
+
username,
|
|
95
|
+
planName,
|
|
96
|
+
organizationName,
|
|
97
|
+
subscriptionStartDate,
|
|
98
|
+
manageSubscriptionLink
|
|
99
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
100
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
101
|
+
};
|
|
102
|
+
declare const SubscriptionPaymentSuccessIT: {
|
|
103
|
+
({
|
|
104
|
+
username,
|
|
105
|
+
planName,
|
|
106
|
+
organizationName,
|
|
107
|
+
subscriptionStartDate,
|
|
108
|
+
manageSubscriptionLink
|
|
109
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
110
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
111
|
+
};
|
|
112
|
+
declare const SubscriptionPaymentSuccessEN_GB: {
|
|
113
|
+
({
|
|
114
|
+
username,
|
|
115
|
+
planName,
|
|
116
|
+
organizationName,
|
|
117
|
+
subscriptionStartDate,
|
|
118
|
+
manageSubscriptionLink
|
|
119
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
120
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
121
|
+
};
|
|
122
|
+
declare const SubscriptionPaymentSuccessPT: {
|
|
123
|
+
({
|
|
124
|
+
username,
|
|
125
|
+
planName,
|
|
126
|
+
organizationName,
|
|
127
|
+
subscriptionStartDate,
|
|
128
|
+
manageSubscriptionLink
|
|
129
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
130
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
131
|
+
};
|
|
132
|
+
declare const SubscriptionPaymentSuccessHI: {
|
|
133
|
+
({
|
|
134
|
+
username,
|
|
135
|
+
planName,
|
|
136
|
+
organizationName,
|
|
137
|
+
subscriptionStartDate,
|
|
138
|
+
manageSubscriptionLink
|
|
139
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
140
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
141
|
+
};
|
|
142
|
+
declare const SubscriptionPaymentSuccessTR: {
|
|
143
|
+
({
|
|
144
|
+
username,
|
|
145
|
+
planName,
|
|
146
|
+
organizationName,
|
|
147
|
+
subscriptionStartDate,
|
|
148
|
+
manageSubscriptionLink
|
|
149
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
150
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
151
|
+
};
|
|
152
|
+
declare const SubscriptionPaymentSuccessPL: {
|
|
153
|
+
({
|
|
154
|
+
username,
|
|
155
|
+
planName,
|
|
156
|
+
organizationName,
|
|
157
|
+
subscriptionStartDate,
|
|
158
|
+
manageSubscriptionLink
|
|
159
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
160
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
161
|
+
};
|
|
162
|
+
declare const SubscriptionPaymentSuccessID: {
|
|
163
|
+
({
|
|
164
|
+
username,
|
|
165
|
+
planName,
|
|
166
|
+
organizationName,
|
|
167
|
+
subscriptionStartDate,
|
|
168
|
+
manageSubscriptionLink
|
|
169
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
170
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
171
|
+
};
|
|
172
|
+
declare const SubscriptionPaymentSuccessVI: {
|
|
173
|
+
({
|
|
174
|
+
username,
|
|
175
|
+
planName,
|
|
176
|
+
organizationName,
|
|
177
|
+
subscriptionStartDate,
|
|
178
|
+
manageSubscriptionLink
|
|
179
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
180
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
181
|
+
};
|
|
182
|
+
declare const SubscriptionPaymentSuccessUK: {
|
|
183
|
+
({
|
|
184
|
+
username,
|
|
185
|
+
planName,
|
|
186
|
+
organizationName,
|
|
187
|
+
subscriptionStartDate,
|
|
188
|
+
manageSubscriptionLink
|
|
189
|
+
}: SubscriptionPaymentSuccessProps): _$react_jsx_runtime0.JSX.Element;
|
|
190
|
+
PreviewProps: SubscriptionPaymentSuccessProps;
|
|
191
|
+
};
|
|
42
192
|
//#endregion
|
|
43
|
-
export { SubscriptionPaymentSuccessEN, SubscriptionPaymentSuccessES, SubscriptionPaymentSuccessFR, SubscriptionPaymentSuccessProps };
|
|
193
|
+
export { SubscriptionPaymentSuccessAR, SubscriptionPaymentSuccessDE, SubscriptionPaymentSuccessEN, SubscriptionPaymentSuccessEN_GB, SubscriptionPaymentSuccessES, SubscriptionPaymentSuccessFR, SubscriptionPaymentSuccessHI, SubscriptionPaymentSuccessID, SubscriptionPaymentSuccessIT, SubscriptionPaymentSuccessJA, SubscriptionPaymentSuccessKO, SubscriptionPaymentSuccessPL, SubscriptionPaymentSuccessPT, SubscriptionPaymentSuccessProps, SubscriptionPaymentSuccessRU, SubscriptionPaymentSuccessTR, SubscriptionPaymentSuccessUK, SubscriptionPaymentSuccessVI, SubscriptionPaymentSuccessZH };
|
|
44
194
|
//# sourceMappingURL=SubscriptionPaymentSuccess.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SubscriptionPaymentSuccess.d.ts","names":[],"sources":["../../../src/emails/SubscriptionPaymentSuccess.tsx"],"mappings":";;;KAcY,+BAAA;EACV,QAAA;EACA,KAAA;EACA,QAAA;EACA,gBAAA;EACA,qBAAA;EACA,sBAAA;AAAA;AAAA,cAGW,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
1
|
+
{"version":3,"file":"SubscriptionPaymentSuccess.d.ts","names":[],"sources":["../../../src/emails/SubscriptionPaymentSuccess.tsx"],"mappings":";;;KAcY,+BAAA;EACV,QAAA;EACA,KAAA;EACA,QAAA;EACA,gBAAA;EACA,qBAAA;EACA,sBAAA;AAAA;AAAA,cAGW,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAmDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAiDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,+BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAkDrB,4BAAA;EAAA;;;;;;KAMV,+BAAA,GAA+B,oBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
@@ -26,6 +26,111 @@ declare const ValidateUserEmailES: {
|
|
|
26
26
|
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
27
27
|
PreviewProps: ValidateUserEmailProps;
|
|
28
28
|
};
|
|
29
|
+
declare const ValidateUserEmailRU: {
|
|
30
|
+
({
|
|
31
|
+
username,
|
|
32
|
+
validationLink
|
|
33
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
34
|
+
PreviewProps: ValidateUserEmailProps;
|
|
35
|
+
};
|
|
36
|
+
declare const ValidateUserEmailJA: {
|
|
37
|
+
({
|
|
38
|
+
username,
|
|
39
|
+
validationLink
|
|
40
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
41
|
+
PreviewProps: ValidateUserEmailProps;
|
|
42
|
+
};
|
|
43
|
+
declare const ValidateUserEmailKO: {
|
|
44
|
+
({
|
|
45
|
+
username,
|
|
46
|
+
validationLink
|
|
47
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
48
|
+
PreviewProps: ValidateUserEmailProps;
|
|
49
|
+
};
|
|
50
|
+
declare const ValidateUserEmailZH: {
|
|
51
|
+
({
|
|
52
|
+
username,
|
|
53
|
+
validationLink
|
|
54
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
55
|
+
PreviewProps: ValidateUserEmailProps;
|
|
56
|
+
};
|
|
57
|
+
declare const ValidateUserEmailDE: {
|
|
58
|
+
({
|
|
59
|
+
username,
|
|
60
|
+
validationLink
|
|
61
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
62
|
+
PreviewProps: ValidateUserEmailProps;
|
|
63
|
+
};
|
|
64
|
+
declare const ValidateUserEmailAR: {
|
|
65
|
+
({
|
|
66
|
+
username,
|
|
67
|
+
validationLink
|
|
68
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
69
|
+
PreviewProps: ValidateUserEmailProps;
|
|
70
|
+
};
|
|
71
|
+
declare const ValidateUserEmailIT: {
|
|
72
|
+
({
|
|
73
|
+
username,
|
|
74
|
+
validationLink
|
|
75
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
76
|
+
PreviewProps: ValidateUserEmailProps;
|
|
77
|
+
};
|
|
78
|
+
declare const ValidateUserEmailEN_GB: {
|
|
79
|
+
({
|
|
80
|
+
username,
|
|
81
|
+
validationLink
|
|
82
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
83
|
+
PreviewProps: ValidateUserEmailProps;
|
|
84
|
+
};
|
|
85
|
+
declare const ValidateUserEmailPT: {
|
|
86
|
+
({
|
|
87
|
+
username,
|
|
88
|
+
validationLink
|
|
89
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
90
|
+
PreviewProps: ValidateUserEmailProps;
|
|
91
|
+
};
|
|
92
|
+
declare const ValidateUserEmailHI: {
|
|
93
|
+
({
|
|
94
|
+
username,
|
|
95
|
+
validationLink
|
|
96
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
97
|
+
PreviewProps: ValidateUserEmailProps;
|
|
98
|
+
};
|
|
99
|
+
declare const ValidateUserEmailTR: {
|
|
100
|
+
({
|
|
101
|
+
username,
|
|
102
|
+
validationLink
|
|
103
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
104
|
+
PreviewProps: ValidateUserEmailProps;
|
|
105
|
+
};
|
|
106
|
+
declare const ValidateUserEmailPL: {
|
|
107
|
+
({
|
|
108
|
+
username,
|
|
109
|
+
validationLink
|
|
110
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
111
|
+
PreviewProps: ValidateUserEmailProps;
|
|
112
|
+
};
|
|
113
|
+
declare const ValidateUserEmailID: {
|
|
114
|
+
({
|
|
115
|
+
username,
|
|
116
|
+
validationLink
|
|
117
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
118
|
+
PreviewProps: ValidateUserEmailProps;
|
|
119
|
+
};
|
|
120
|
+
declare const ValidateUserEmailVI: {
|
|
121
|
+
({
|
|
122
|
+
username,
|
|
123
|
+
validationLink
|
|
124
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
125
|
+
PreviewProps: ValidateUserEmailProps;
|
|
126
|
+
};
|
|
127
|
+
declare const ValidateUserEmailUK: {
|
|
128
|
+
({
|
|
129
|
+
username,
|
|
130
|
+
validationLink
|
|
131
|
+
}: ValidateUserEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
132
|
+
PreviewProps: ValidateUserEmailProps;
|
|
133
|
+
};
|
|
29
134
|
//#endregion
|
|
30
|
-
export { ValidateUserEmailEN, ValidateUserEmailES, ValidateUserEmailFR, ValidateUserEmailProps };
|
|
135
|
+
export { ValidateUserEmailAR, ValidateUserEmailDE, ValidateUserEmailEN, ValidateUserEmailEN_GB, ValidateUserEmailES, ValidateUserEmailFR, ValidateUserEmailHI, ValidateUserEmailID, ValidateUserEmailIT, ValidateUserEmailJA, ValidateUserEmailKO, ValidateUserEmailPL, ValidateUserEmailPT, ValidateUserEmailProps, ValidateUserEmailRU, ValidateUserEmailTR, ValidateUserEmailUK, ValidateUserEmailVI, ValidateUserEmailZH };
|
|
31
136
|
//# sourceMappingURL=ValidateUserEmail.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ValidateUserEmail.d.ts","names":[],"sources":["../../../src/emails/ValidateUserEmail.tsx"],"mappings":";;;KAgBY,sBAAA;EACV,QAAA;EACA,cAAA;AAAA;AAAA,cAGW,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA8DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA6DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
1
|
+
{"version":3,"file":"ValidateUserEmail.d.ts","names":[],"sources":["../../../src/emails/ValidateUserEmail.tsx"],"mappings":";;;KAgBY,sBAAA;EACV,QAAA;EACA,cAAA;AAAA;AAAA,cAGW,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA8DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA6DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA6DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA+DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA2DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA6DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA2DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA+DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA6DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA8DZ,sBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA8DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA8DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA6DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA6DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA8DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA8DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA6DZ,mBAAA;EAAA;;;KAGV,sBAAA,GAAsB,oBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
@@ -26,6 +26,111 @@ declare const WelcomeEmailES: {
|
|
|
26
26
|
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
27
27
|
PreviewProps: WelcomeEmailProps;
|
|
28
28
|
};
|
|
29
|
+
declare const WelcomeEmailRU: {
|
|
30
|
+
({
|
|
31
|
+
username,
|
|
32
|
+
loginLink
|
|
33
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
34
|
+
PreviewProps: WelcomeEmailProps;
|
|
35
|
+
};
|
|
36
|
+
declare const WelcomeEmailJA: {
|
|
37
|
+
({
|
|
38
|
+
username,
|
|
39
|
+
loginLink
|
|
40
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
41
|
+
PreviewProps: WelcomeEmailProps;
|
|
42
|
+
};
|
|
43
|
+
declare const WelcomeEmailKO: {
|
|
44
|
+
({
|
|
45
|
+
username,
|
|
46
|
+
loginLink
|
|
47
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
48
|
+
PreviewProps: WelcomeEmailProps;
|
|
49
|
+
};
|
|
50
|
+
declare const WelcomeEmailZH: {
|
|
51
|
+
({
|
|
52
|
+
username,
|
|
53
|
+
loginLink
|
|
54
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
55
|
+
PreviewProps: WelcomeEmailProps;
|
|
56
|
+
};
|
|
57
|
+
declare const WelcomeEmailDE: {
|
|
58
|
+
({
|
|
59
|
+
username,
|
|
60
|
+
loginLink
|
|
61
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
62
|
+
PreviewProps: WelcomeEmailProps;
|
|
63
|
+
};
|
|
64
|
+
declare const WelcomeEmailAR: {
|
|
65
|
+
({
|
|
66
|
+
username,
|
|
67
|
+
loginLink
|
|
68
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
69
|
+
PreviewProps: WelcomeEmailProps;
|
|
70
|
+
};
|
|
71
|
+
declare const WelcomeEmailIT: {
|
|
72
|
+
({
|
|
73
|
+
username,
|
|
74
|
+
loginLink
|
|
75
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
76
|
+
PreviewProps: WelcomeEmailProps;
|
|
77
|
+
};
|
|
78
|
+
declare const WelcomeEmailEN_GB: {
|
|
79
|
+
({
|
|
80
|
+
username,
|
|
81
|
+
loginLink
|
|
82
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
83
|
+
PreviewProps: WelcomeEmailProps;
|
|
84
|
+
};
|
|
85
|
+
declare const WelcomeEmailPT: {
|
|
86
|
+
({
|
|
87
|
+
username,
|
|
88
|
+
loginLink
|
|
89
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
90
|
+
PreviewProps: WelcomeEmailProps;
|
|
91
|
+
};
|
|
92
|
+
declare const WelcomeEmailHI: {
|
|
93
|
+
({
|
|
94
|
+
username,
|
|
95
|
+
loginLink
|
|
96
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
97
|
+
PreviewProps: WelcomeEmailProps;
|
|
98
|
+
};
|
|
99
|
+
declare const WelcomeEmailTR: {
|
|
100
|
+
({
|
|
101
|
+
username,
|
|
102
|
+
loginLink
|
|
103
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
104
|
+
PreviewProps: WelcomeEmailProps;
|
|
105
|
+
};
|
|
106
|
+
declare const WelcomeEmailPL: {
|
|
107
|
+
({
|
|
108
|
+
username,
|
|
109
|
+
loginLink
|
|
110
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
111
|
+
PreviewProps: WelcomeEmailProps;
|
|
112
|
+
};
|
|
113
|
+
declare const WelcomeEmailID: {
|
|
114
|
+
({
|
|
115
|
+
username,
|
|
116
|
+
loginLink
|
|
117
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
118
|
+
PreviewProps: WelcomeEmailProps;
|
|
119
|
+
};
|
|
120
|
+
declare const WelcomeEmailVI: {
|
|
121
|
+
({
|
|
122
|
+
username,
|
|
123
|
+
loginLink
|
|
124
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
125
|
+
PreviewProps: WelcomeEmailProps;
|
|
126
|
+
};
|
|
127
|
+
declare const WelcomeEmailUK: {
|
|
128
|
+
({
|
|
129
|
+
username,
|
|
130
|
+
loginLink
|
|
131
|
+
}: WelcomeEmailProps): _$react_jsx_runtime0.JSX.Element;
|
|
132
|
+
PreviewProps: WelcomeEmailProps;
|
|
133
|
+
};
|
|
29
134
|
//#endregion
|
|
30
|
-
export { WelcomeEmailEN, WelcomeEmailES, WelcomeEmailFR, WelcomeEmailProps };
|
|
135
|
+
export { WelcomeEmailAR, WelcomeEmailDE, WelcomeEmailEN, WelcomeEmailEN_GB, WelcomeEmailES, WelcomeEmailFR, WelcomeEmailHI, WelcomeEmailID, WelcomeEmailIT, WelcomeEmailJA, WelcomeEmailKO, WelcomeEmailPL, WelcomeEmailPT, WelcomeEmailProps, WelcomeEmailRU, WelcomeEmailTR, WelcomeEmailUK, WelcomeEmailVI, WelcomeEmailZH };
|
|
31
136
|
//# sourceMappingURL=Welcome.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Welcome.d.ts","names":[],"sources":["../../../src/emails/Welcome.tsx"],"mappings":";;;KAgBY,iBAAA;EACV,QAAA;EACA,SAAA;AAAA;AAAA,cAGW,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA2D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA2D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
1
|
+
{"version":3,"file":"Welcome.d.ts","names":[],"sources":["../../../src/emails/Welcome.tsx"],"mappings":";;;KAgBY,iBAAA;EACV,QAAA;EACA,SAAA;AAAA;AAAA,cAGW,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA2D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA2D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA0D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA0D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAyD5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA0D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cAyD5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA0D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA0D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA0D5D,iBAAA;EAAA;;;KAGV,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA0DP,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA2D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA0D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA2D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA0D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA0D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA;;;cA0D5D,cAAA;EAAA;;;KAA2C,iBAAA,GAAiB,oBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { InviteUserEmailEN, InviteUserEmailES, InviteUserEmailFR, InviteUserEmailProps } from "./InviteUserEmail.js";
|
|
2
|
-
import { OAuthTokenCreatedEmailEN, OAuthTokenCreatedEmailES, OAuthTokenCreatedEmailFR, OAuthTokenCreatedEmailProps } from "./OAuthTokenCreatedEmail.js";
|
|
3
|
-
import { PasswordChangeConfirmationEmailEN, PasswordChangeConfirmationEmailES, PasswordChangeConfirmationEmailFR, PasswordChangeConfirmationEmailProps } from "./PasswordChangeConfirmation.js";
|
|
4
|
-
import { ResetPasswordEmailEN, ResetPasswordEmailES, ResetPasswordEmailFR, ResetPasswordEmailProps } from "./ResetUserPassword.js";
|
|
5
|
-
import { ValidateUserEmailEN, ValidateUserEmailES, ValidateUserEmailFR, ValidateUserEmailProps } from "./ValidateUserEmail.js";
|
|
6
|
-
import { WelcomeEmailEN, WelcomeEmailES, WelcomeEmailFR, WelcomeEmailProps } from "./Welcome.js";
|
|
7
|
-
export { InviteUserEmailEN, InviteUserEmailES, InviteUserEmailFR, InviteUserEmailProps, OAuthTokenCreatedEmailEN, OAuthTokenCreatedEmailES, OAuthTokenCreatedEmailFR, OAuthTokenCreatedEmailProps, PasswordChangeConfirmationEmailEN, PasswordChangeConfirmationEmailES, PasswordChangeConfirmationEmailFR, PasswordChangeConfirmationEmailProps, ResetPasswordEmailEN, ResetPasswordEmailES, ResetPasswordEmailFR, ResetPasswordEmailProps, ValidateUserEmailEN, ValidateUserEmailES, ValidateUserEmailFR, ValidateUserEmailProps, WelcomeEmailEN, WelcomeEmailES, WelcomeEmailFR, WelcomeEmailProps };
|
|
1
|
+
import { InviteUserEmailAR, InviteUserEmailDE, InviteUserEmailEN, InviteUserEmailEN_GB, InviteUserEmailES, InviteUserEmailFR, InviteUserEmailHI, InviteUserEmailID, InviteUserEmailIT, InviteUserEmailJA, InviteUserEmailKO, InviteUserEmailPL, InviteUserEmailPT, InviteUserEmailProps, InviteUserEmailRU, InviteUserEmailTR, InviteUserEmailUK, InviteUserEmailVI, InviteUserEmailZH } from "./InviteUserEmail.js";
|
|
2
|
+
import { OAuthTokenCreatedEmailAR, OAuthTokenCreatedEmailDE, OAuthTokenCreatedEmailEN, OAuthTokenCreatedEmailEN_GB, OAuthTokenCreatedEmailES, OAuthTokenCreatedEmailFR, OAuthTokenCreatedEmailHI, OAuthTokenCreatedEmailID, OAuthTokenCreatedEmailIT, OAuthTokenCreatedEmailJA, OAuthTokenCreatedEmailKO, OAuthTokenCreatedEmailPL, OAuthTokenCreatedEmailPT, OAuthTokenCreatedEmailProps, OAuthTokenCreatedEmailRU, OAuthTokenCreatedEmailTR, OAuthTokenCreatedEmailUK, OAuthTokenCreatedEmailVI, OAuthTokenCreatedEmailZH } from "./OAuthTokenCreatedEmail.js";
|
|
3
|
+
import { PasswordChangeConfirmationEmailAR, PasswordChangeConfirmationEmailDE, PasswordChangeConfirmationEmailEN, PasswordChangeConfirmationEmailEN_GB, PasswordChangeConfirmationEmailES, PasswordChangeConfirmationEmailFR, PasswordChangeConfirmationEmailHI, PasswordChangeConfirmationEmailID, PasswordChangeConfirmationEmailIT, PasswordChangeConfirmationEmailJA, PasswordChangeConfirmationEmailKO, PasswordChangeConfirmationEmailPL, PasswordChangeConfirmationEmailPT, PasswordChangeConfirmationEmailProps, PasswordChangeConfirmationEmailRU, PasswordChangeConfirmationEmailTR, PasswordChangeConfirmationEmailUK, PasswordChangeConfirmationEmailVI, PasswordChangeConfirmationEmailZH } from "./PasswordChangeConfirmation.js";
|
|
4
|
+
import { ResetPasswordEmailAR, ResetPasswordEmailDE, ResetPasswordEmailEN, ResetPasswordEmailEN_GB, ResetPasswordEmailES, ResetPasswordEmailFR, ResetPasswordEmailHI, ResetPasswordEmailID, ResetPasswordEmailIT, ResetPasswordEmailJA, ResetPasswordEmailKO, ResetPasswordEmailPL, ResetPasswordEmailPT, ResetPasswordEmailProps, ResetPasswordEmailRU, ResetPasswordEmailTR, ResetPasswordEmailUK, ResetPasswordEmailVI, ResetPasswordEmailZH } from "./ResetUserPassword.js";
|
|
5
|
+
import { ValidateUserEmailAR, ValidateUserEmailDE, ValidateUserEmailEN, ValidateUserEmailEN_GB, ValidateUserEmailES, ValidateUserEmailFR, ValidateUserEmailHI, ValidateUserEmailID, ValidateUserEmailIT, ValidateUserEmailJA, ValidateUserEmailKO, ValidateUserEmailPL, ValidateUserEmailPT, ValidateUserEmailProps, ValidateUserEmailRU, ValidateUserEmailTR, ValidateUserEmailUK, ValidateUserEmailVI, ValidateUserEmailZH } from "./ValidateUserEmail.js";
|
|
6
|
+
import { WelcomeEmailAR, WelcomeEmailDE, WelcomeEmailEN, WelcomeEmailEN_GB, WelcomeEmailES, WelcomeEmailFR, WelcomeEmailHI, WelcomeEmailID, WelcomeEmailIT, WelcomeEmailJA, WelcomeEmailKO, WelcomeEmailPL, WelcomeEmailPT, WelcomeEmailProps, WelcomeEmailRU, WelcomeEmailTR, WelcomeEmailUK, WelcomeEmailVI, WelcomeEmailZH } from "./Welcome.js";
|
|
7
|
+
export { InviteUserEmailAR, InviteUserEmailDE, InviteUserEmailEN, InviteUserEmailEN_GB, InviteUserEmailES, InviteUserEmailFR, InviteUserEmailHI, InviteUserEmailID, InviteUserEmailIT, InviteUserEmailJA, InviteUserEmailKO, InviteUserEmailPL, InviteUserEmailPT, InviteUserEmailProps, InviteUserEmailRU, InviteUserEmailTR, InviteUserEmailUK, InviteUserEmailVI, InviteUserEmailZH, OAuthTokenCreatedEmailAR, OAuthTokenCreatedEmailDE, OAuthTokenCreatedEmailEN, OAuthTokenCreatedEmailEN_GB, OAuthTokenCreatedEmailES, OAuthTokenCreatedEmailFR, OAuthTokenCreatedEmailHI, OAuthTokenCreatedEmailID, OAuthTokenCreatedEmailIT, OAuthTokenCreatedEmailJA, OAuthTokenCreatedEmailKO, OAuthTokenCreatedEmailPL, OAuthTokenCreatedEmailPT, OAuthTokenCreatedEmailProps, OAuthTokenCreatedEmailRU, OAuthTokenCreatedEmailTR, OAuthTokenCreatedEmailUK, OAuthTokenCreatedEmailVI, OAuthTokenCreatedEmailZH, PasswordChangeConfirmationEmailAR, PasswordChangeConfirmationEmailDE, PasswordChangeConfirmationEmailEN, PasswordChangeConfirmationEmailEN_GB, PasswordChangeConfirmationEmailES, PasswordChangeConfirmationEmailFR, PasswordChangeConfirmationEmailHI, PasswordChangeConfirmationEmailID, PasswordChangeConfirmationEmailIT, PasswordChangeConfirmationEmailJA, PasswordChangeConfirmationEmailKO, PasswordChangeConfirmationEmailPL, PasswordChangeConfirmationEmailPT, PasswordChangeConfirmationEmailProps, PasswordChangeConfirmationEmailRU, PasswordChangeConfirmationEmailTR, PasswordChangeConfirmationEmailUK, PasswordChangeConfirmationEmailVI, PasswordChangeConfirmationEmailZH, ResetPasswordEmailAR, ResetPasswordEmailDE, ResetPasswordEmailEN, ResetPasswordEmailEN_GB, ResetPasswordEmailES, ResetPasswordEmailFR, ResetPasswordEmailHI, ResetPasswordEmailID, ResetPasswordEmailIT, ResetPasswordEmailJA, ResetPasswordEmailKO, ResetPasswordEmailPL, ResetPasswordEmailPT, ResetPasswordEmailProps, ResetPasswordEmailRU, ResetPasswordEmailTR, ResetPasswordEmailUK, ResetPasswordEmailVI, ResetPasswordEmailZH, ValidateUserEmailAR, ValidateUserEmailDE, ValidateUserEmailEN, ValidateUserEmailEN_GB, ValidateUserEmailES, ValidateUserEmailFR, ValidateUserEmailHI, ValidateUserEmailID, ValidateUserEmailIT, ValidateUserEmailJA, ValidateUserEmailKO, ValidateUserEmailPL, ValidateUserEmailPT, ValidateUserEmailProps, ValidateUserEmailRU, ValidateUserEmailTR, ValidateUserEmailUK, ValidateUserEmailVI, ValidateUserEmailZH, WelcomeEmailAR, WelcomeEmailDE, WelcomeEmailEN, WelcomeEmailEN_GB, WelcomeEmailES, WelcomeEmailFR, WelcomeEmailHI, WelcomeEmailID, WelcomeEmailIT, WelcomeEmailJA, WelcomeEmailKO, WelcomeEmailPL, WelcomeEmailPT, WelcomeEmailProps, WelcomeEmailRU, WelcomeEmailTR, WelcomeEmailUK, WelcomeEmailVI, WelcomeEmailZH };
|
package/dist/types/export.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ import { GitHubAuthCallbackBody, GitHubAuthCallbackResult, GitHubCheckConfigBody
|
|
|
16
16
|
import { GitLabAuthCallbackBody, GitLabAuthCallbackResult, GitLabCheckConfigBody, GitLabCheckConfigResult, GitLabGetAuthUrlQuerystring, GitLabGetAuthUrlResult, GitLabGetConfigFileBody, GitLabGetConfigFileResult, GitLabListProjectsQuerystring, GitLabListProjectsResult } from "./controllers/gitlab.controller.js";
|
|
17
17
|
import { NewsletterSubscriptionBody, NewsletterSubscriptionResult, NewsletterUnsubscriptionBody, getNewsletterStatus, subscribeToNewsletter, unsubscribeFromNewsletter } from "./controllers/newsletter.controller.js";
|
|
18
18
|
import { OAuth2Token, OAuth2TokenDocument, OAuth2TokenModelType, OAuth2TokenSchema } from "./types/oAuth2.types.js";
|
|
19
|
-
import { GetOAuth2TokenBody, GetOAuth2TokenResult, getOAuth2AccessToken } from "./controllers/oAuth2.controller.js";
|
|
19
|
+
import { ExtendOAuth2TokenResult, GetOAuth2TokenBody, GetOAuth2TokenResult, extendOAuth2Token, getOAuth2AccessToken } from "./controllers/oAuth2.controller.js";
|
|
20
20
|
import { AddOrganizationBody, AddOrganizationMemberBody, AddOrganizationMemberResult, AddOrganizationResult, DeleteOrganizationResult, GetOrganizationParam, GetOrganizationResult, GetOrganizationsParams, GetOrganizationsResult, SelectOrganizationParam, SelectOrganizationResult, UnselectOrganizationResult, UpdateOrganizationBody, UpdateOrganizationMembersBody, UpdateOrganizationMembersByIdBody, UpdateOrganizationMembersByIdParams, UpdateOrganizationMembersByIdResult, UpdateOrganizationMembersResult, UpdateOrganizationResult, addOrganization, addOrganizationMember, deleteOrganization, getOrganization, getOrganizations, selectOrganization, unselectOrganization, updateOrganization, updateOrganizationMembers, updateOrganizationMembersById } from "./controllers/organization.controller.js";
|
|
21
21
|
import { AddProjectBody, AddProjectResult, DeleteProjectResult, GetCIConfigurationResult, GetProjectsParams, GetProjectsResult, ProjectMemberByIdOption, PushCIConfigurationResult, PushProjectConfigurationBody, PushProjectConfigurationResult, SelectProjectParam, SelectProjectResult, TriggerBuildResult, TriggerWebhookBody, TriggerWebhookResult, UnselectProjectResult, UpdateProjectBody, UpdateProjectMembersBody, UpdateProjectMembersResult, UpdateProjectResult, addProject, deleteProject, getCIConfiguration, getProjects, pushCIConfiguration, pushProjectConfiguration, selectProject, triggerBuild, triggerWebhook, unselectProject, updateProject, updateProjectMembers } from "./controllers/project.controller.js";
|
|
22
22
|
import { AddNewAccessKeyBody, AddNewAccessKeyResponse, DeleteAccessKeyBody, DeleteAccessKeyResponse, RefreshAccessKeyBody, RefreshAccessKeyResponse, addNewAccessKey, deleteAccessKey, refreshAccessKey } from "./controllers/projectAccessKey.controller.js";
|
|
@@ -24,7 +24,7 @@ import { DiscoverUrlsResult, GetRecursiveAuditStatusResult, RecursiveAuditJobInf
|
|
|
24
24
|
import { SearchDocResult, SearchDocUtilParams, SearchDocUtilResult, searchDocUtil } from "./controllers/search.controller.js";
|
|
25
25
|
import { ShowcaseProject, ShowcaseProjectAPI, ShowcaseProjectData, ShowcaseProjectDocument, ShowcaseProjectModelType, ShowcaseProjectStatus, ShowcaseScanDetails } from "./types/showcaseProject.types.js";
|
|
26
26
|
import { DeleteShowcaseProjectParams, GetOtherShowcaseProjectsQuery, GetOtherShowcaseProjectsResult, GetShowcaseProjectByIdParams, GetShowcaseProjectByIdResult, GetShowcaseProjectsQuery, GetShowcaseProjectsResult, ScanShowcaseProjectParams, SubmitShowcaseProjectBody, SubmitShowcaseProjectResult, ToggleShowcaseDownvoteBody, ToggleShowcaseDownvoteResult, ToggleShowcaseUpvoteBody, ToggleShowcaseUpvoteResult, UpdateShowcaseProjectBody, UpdateShowcaseProjectParams, UpdateShowcaseProjectResult, deleteShowcaseProjectHandler, getOtherShowcaseProjects, getShowcaseProjectById, getShowcaseProjects, scanShowcaseProject, submitShowcaseProject, toggleShowcaseDownvote, toggleShowcaseUpvote, updateShowcaseProjectHandler } from "./controllers/showcaseProject.controller.js";
|
|
27
|
-
import { CancelSubscriptionResult, GetCheckoutSessionBody, GetCheckoutSessionResult, GetPricingBody, GetPricingResult, cancelSubscription, getPricing, getSubscription } from "./controllers/stripe.controller.js";
|
|
27
|
+
import { CancelSubscriptionResult, CreatePortalSessionResult, GetCheckoutSessionBody, GetCheckoutSessionResult, GetInvoicesResult, GetPaymentMethodResult, GetPricingBody, GetPricingResult, cancelSubscription, createPortalSession, getInvoices, getPaymentMethod, getPricing, getSubscription } from "./controllers/stripe.controller.js";
|
|
28
28
|
import { AddTagBody, AddTagResult, DeleteTagParams, DeleteTagResult, GetTagsParams, GetTagsResult, UpdateTagBody, UpdateTagParams, UpdateTagResult, addTag, deleteTag, getTags, updateTag } from "./controllers/tag.controller.js";
|
|
29
29
|
import { TranslateDictionariesBody, TranslateDictionariesResult, getTranslationStatus, pauseTranslationJob, restartTranslationJob, resumeTranslationJob, retryTranslationJob, stopTranslationJob, translateDictionaries } from "./controllers/translation.controller.js";
|
|
30
30
|
import { CreateUserBody, CreateUserResult, DeleteUserParams, DeleteUserResult, GetUserByEmailParams, GetUserByEmailResult, GetUserByIdParams, GetUserByIdResult, GetUsersParams, GetUsersResult, UpdateUserBody, UpdateUserResult, VerifyEmailStatusSSEParams, createUser, deleteUser, getUserByEmail, getUserById, getUsers, sendVerificationUpdate, updateUser, verifyEmailStatusSSE } from "./controllers/user.controller.js";
|
|
@@ -43,4 +43,4 @@ import { getUserRoutes } from "./routes/user.routes.js";
|
|
|
43
43
|
import { AuditEvent } from "./services/audit/types.js";
|
|
44
44
|
import { Session, SessionAPI, SessionContext, SessionData, SessionDataApi, SessionDocument, SessionModelType, SessionSchema } from "./types/session.types.js";
|
|
45
45
|
import { Auth, formatSession, getAuth } from "./utils/auth/getAuth.js";
|
|
46
|
-
export { AIConfig, AIOptions, AIProvider, AccessKeyData, AddDictionaryBody, AddDictionaryResult, AddNewAccessKeyBody, AddNewAccessKeyResponse, AddOrganizationBody, AddOrganizationMemberBody, AddOrganizationMemberResult, AddOrganizationResult, AddProjectBody, AddProjectResult, AddTagBody, AddTagResult, AskDocQuestionBody, AskDocQuestionResult, AuditContentDeclarationBody, AuditContentDeclarationFieldBody, AuditContentDeclarationFieldResult, AuditContentDeclarationMetadataBody, AuditContentDeclarationMetadataResult, AuditContentDeclarationResult, type AuditEvent, AuditTagBody, AuditTagResult, Auth, AutocompleteBody, AutocompleteResponse, BaseRepository, type BitbucketAuthCallbackBody, type BitbucketAuthCallbackResult, type BitbucketCheckConfigBody, type BitbucketCheckConfigResult, type BitbucketGetAuthUrlQuerystring, type BitbucketGetAuthUrlResult, type BitbucketGetConfigFileBody, type BitbucketGetConfigFileResult, type BitbucketListReposQuerystring, type BitbucketListReposResult, BitbucketRepository, CancelSubscriptionResult, ChatCompletionRequestMessage, CheckDictionaryChangeSSEParams, ContentVersion, CreateUserBody, CreateUserResult, CustomQueryBody, CustomQueryResult, DeleteAccessKeyBody, DeleteAccessKeyResponse, DeleteDictionaryParam, DeleteDictionaryResult, DeleteOrganizationResult, DeleteProjectResult, DeleteShowcaseProjectParams, DeleteTagParams, DeleteTagResult, DeleteUserParams, DeleteUserResult, Dictionary, DictionaryAPI, DictionaryCreationData, DictionaryData, DictionaryDocument, DictionaryModelType, DictionarySchema, DiscoverUrlsResult, Discussion, DiscussionAPI, DiscussionDocument, DiscussionModelType, DiscussionSchema, EmailsList, GetCIConfigurationResult, GetCheckoutSessionBody, GetCheckoutSessionResult, GetDictionariesKeysResult, GetDictionariesParams, GetDictionariesResult, GetDictionariesUpdateTimestampResult, GetDictionaryParams, GetDictionaryQuery, GetDictionaryResult, GetDiscussionsParams, GetDiscussionsResult, GetOAuth2TokenBody, GetOAuth2TokenResult, GetOrganizationParam, GetOrganizationResult, GetOrganizationsParams, GetOrganizationsResult, GetOtherShowcaseProjectsQuery, GetOtherShowcaseProjectsResult, GetPricingBody, GetPricingResult, GetProjectsParams, GetProjectsResult, GetRecursiveAuditStatusResult, GetShowcaseProjectByIdParams, GetShowcaseProjectByIdResult, GetShowcaseProjectsQuery, GetShowcaseProjectsResult, GetTagsParams, GetTagsResult, GetUserByEmailParams, GetUserByEmailResult, GetUserByIdParams, GetUserByIdResult, GetUsersParams, GetUsersResult, type GitHubAuthCallbackBody, type GitHubAuthCallbackResult, type GitHubCheckConfigBody, type GitHubCheckConfigResult, type GitHubGetAuthUrlQuerystring, type GitHubGetAuthUrlResult, type GitHubGetConfigFileBody, type GitHubGetConfigFileResult, type GitHubListReposQuerystring, type GitHubListReposResult, GitHubRepository, type GitLabAuthCallbackBody, type GitLabAuthCallbackResult, type GitLabCheckConfigBody, type GitLabCheckConfigResult, type GitLabGetAuthUrlQuerystring, type GitLabGetAuthUrlResult, type GitLabGetConfigFileBody, type GitLabGetConfigFileResult, type GitLabListProjectsQuerystring, type GitLabListProjectsResult, GitLabRepository, HttpStatusCodes, Message, MessageEventData, NewsletterSubscriptionBody, NewsletterSubscriptionResult, NewsletterUnsubscriptionBody, OAuth2Access, OAuth2AccessAPI, OAuth2AccessContext, OAuth2AccessData, OAuth2Token, OAuth2TokenDocument, OAuth2TokenModelType, OAuth2TokenSchema, Object$1 as Object, Organization, OrganizationAPI, OrganizationCreationData, OrganizationData, OrganizationDocument, OrganizationModelType, OrganizationSchema, PaginatedResponse, Plan, PlanAPI, PlanData, PlanDocument, PlanModelType, PlanSchema, PlanType, Project, ProjectAPI, ProjectConfigCI, ProjectConfiguration, ProjectCreationData, ProjectData, ProjectDocument, ProjectMemberByIdOption, ProjectModelType, ProjectSchema, PushCIConfigurationResult, PushDictionariesBody, PushDictionariesResult, PushProjectConfigurationBody, PushProjectConfigurationResult, RecursiveAuditJobInfo, RecursiveAuditPageInfo, RefreshAccessKeyBody, RefreshAccessKeyResponse, RepositoryConnection, RepositoryProvider, ResponseData, ScanShowcaseProjectParams, SearchDocResult, SearchDocUtilParams, SearchDocUtilResult, SelectOrganizationParam, SelectOrganizationResult, SelectProjectParam, SelectProjectResult, SendDictionaryUpdateArg, Session, SessionAPI, SessionContext, SessionData, SessionDataApi, SessionDocument, SessionModelType, SessionSchema, ShowcaseProject, ShowcaseProjectAPI, ShowcaseProjectData, ShowcaseProjectDocument, ShowcaseProjectModelType, ShowcaseProjectStatus, ShowcaseScanDetails, StartRecursiveAuditResult, Status, SubmitShowcaseProjectBody, SubmitShowcaseProjectResult, Tag, TagAPI, TagCreationData, TagData, TagDocument, TagModelType, TagSchema, ToggleShowcaseDownvoteBody, ToggleShowcaseDownvoteResult, ToggleShowcaseUpvoteBody, ToggleShowcaseUpvoteResult, TranslateDictionariesBody, TranslateDictionariesResult, TranslateJSONBody, TranslateJSONResult, TriggerBuildResult, TriggerWebhookBody, TriggerWebhookResult, UnselectOrganizationResult, UnselectProjectResult, UpdateDictionaryBody, UpdateDictionaryParam, UpdateDictionaryResult, UpdateOrganizationBody, UpdateOrganizationMembersBody, UpdateOrganizationMembersByIdBody, UpdateOrganizationMembersByIdParams, UpdateOrganizationMembersByIdResult, UpdateOrganizationMembersResult, UpdateOrganizationResult, UpdateProjectBody, UpdateProjectMembersBody, UpdateProjectMembersResult, UpdateProjectResult, UpdateShowcaseProjectBody, UpdateShowcaseProjectParams, UpdateShowcaseProjectResult, UpdateTagBody, UpdateTagParams, UpdateTagResult, UpdateUserBody, UpdateUserResult, User, UserAPI, UserData, UserDocument, UserModelType, UserSchema, VerifyEmailStatusSSEParams, VersionedContent, VersionedContentEl, Webhook, addDictionary, addNewAccessKey, addOrganization, addOrganizationMember, addProject, addTag, askDocQuestion, auditContentDeclaration, auditContentDeclarationField, auditContentDeclarationMetadata, auditGetHandler, auditTag, autocomplete, cancelRecursiveAudit, cancelSubscription, createUser, customQuery, deleteAccessKey, deleteDictionary, deleteOrganization, deleteProject, deleteShowcaseProjectHandler, deleteTag, deleteUser, discoverUrls, formatPaginatedResponse, formatResponse, formatSession, getAiRoutes, getAuditRoutes, getAuth, getBitbucketRoutes, getCIConfiguration, getDictionaries, getDictionariesKeys, getDictionariesUpdateTimestamp, getDictionaryByKey, getDictionaryRoutes, getDiscussions, getGithubRoutes, getGitlabRoutes, getNewsletterRoutes, getNewsletterStatus, getOAuth2AccessToken, getOrganization, getOrganizationRoutes, getOrganizations, getOtherShowcaseProjects, getPricing, getProjectRoutes, getProjects, getRecursiveAuditStatus, getShowcaseProjectById, getShowcaseProjectRoutes, getShowcaseProjects, getSubscription, getTags, getTranslationStatus, getTranslationsRoutes, getUserByEmail, getUserById, getUserRoutes, getUsers, listenChangeSSE, pauseRecursiveAudit, pauseTranslationJob, pushCIConfiguration, pushDictionaries, pushProjectConfiguration, refreshAccessKey, restartTranslationJob, resumeRecursiveAudit, resumeTranslationJob, retryTranslationJob, scanShowcaseProject, searchDocUtil, selectOrganization, selectProject, sendDictionaryUpdate, sendVerificationUpdate, startRecursiveAudit, stopTranslationJob, submitShowcaseProject, subscribeToNewsletter, toggleShowcaseDownvote, toggleShowcaseUpvote, translateDictionaries, translateJSON, triggerBuild, triggerWebhook, unselectOrganization, unselectProject, unsubscribeFromNewsletter, updateDictionary, updateOrganization, updateOrganizationMembers, updateOrganizationMembersById, updateProject, updateProjectMembers, updateShowcaseProjectHandler, updateTag, updateUser, verifyEmailStatusSSE };
|
|
46
|
+
export { AIConfig, AIOptions, AIProvider, AccessKeyData, AddDictionaryBody, AddDictionaryResult, AddNewAccessKeyBody, AddNewAccessKeyResponse, AddOrganizationBody, AddOrganizationMemberBody, AddOrganizationMemberResult, AddOrganizationResult, AddProjectBody, AddProjectResult, AddTagBody, AddTagResult, AskDocQuestionBody, AskDocQuestionResult, AuditContentDeclarationBody, AuditContentDeclarationFieldBody, AuditContentDeclarationFieldResult, AuditContentDeclarationMetadataBody, AuditContentDeclarationMetadataResult, AuditContentDeclarationResult, type AuditEvent, AuditTagBody, AuditTagResult, Auth, AutocompleteBody, AutocompleteResponse, BaseRepository, type BitbucketAuthCallbackBody, type BitbucketAuthCallbackResult, type BitbucketCheckConfigBody, type BitbucketCheckConfigResult, type BitbucketGetAuthUrlQuerystring, type BitbucketGetAuthUrlResult, type BitbucketGetConfigFileBody, type BitbucketGetConfigFileResult, type BitbucketListReposQuerystring, type BitbucketListReposResult, BitbucketRepository, CancelSubscriptionResult, ChatCompletionRequestMessage, CheckDictionaryChangeSSEParams, ContentVersion, CreatePortalSessionResult, CreateUserBody, CreateUserResult, CustomQueryBody, CustomQueryResult, DeleteAccessKeyBody, DeleteAccessKeyResponse, DeleteDictionaryParam, DeleteDictionaryResult, DeleteOrganizationResult, DeleteProjectResult, DeleteShowcaseProjectParams, DeleteTagParams, DeleteTagResult, DeleteUserParams, DeleteUserResult, Dictionary, DictionaryAPI, DictionaryCreationData, DictionaryData, DictionaryDocument, DictionaryModelType, DictionarySchema, DiscoverUrlsResult, Discussion, DiscussionAPI, DiscussionDocument, DiscussionModelType, DiscussionSchema, EmailsList, ExtendOAuth2TokenResult, GetCIConfigurationResult, GetCheckoutSessionBody, GetCheckoutSessionResult, GetDictionariesKeysResult, GetDictionariesParams, GetDictionariesResult, GetDictionariesUpdateTimestampResult, GetDictionaryParams, GetDictionaryQuery, GetDictionaryResult, GetDiscussionsParams, GetDiscussionsResult, GetInvoicesResult, GetOAuth2TokenBody, GetOAuth2TokenResult, GetOrganizationParam, GetOrganizationResult, GetOrganizationsParams, GetOrganizationsResult, GetOtherShowcaseProjectsQuery, GetOtherShowcaseProjectsResult, GetPaymentMethodResult, GetPricingBody, GetPricingResult, GetProjectsParams, GetProjectsResult, GetRecursiveAuditStatusResult, GetShowcaseProjectByIdParams, GetShowcaseProjectByIdResult, GetShowcaseProjectsQuery, GetShowcaseProjectsResult, GetTagsParams, GetTagsResult, GetUserByEmailParams, GetUserByEmailResult, GetUserByIdParams, GetUserByIdResult, GetUsersParams, GetUsersResult, type GitHubAuthCallbackBody, type GitHubAuthCallbackResult, type GitHubCheckConfigBody, type GitHubCheckConfigResult, type GitHubGetAuthUrlQuerystring, type GitHubGetAuthUrlResult, type GitHubGetConfigFileBody, type GitHubGetConfigFileResult, type GitHubListReposQuerystring, type GitHubListReposResult, GitHubRepository, type GitLabAuthCallbackBody, type GitLabAuthCallbackResult, type GitLabCheckConfigBody, type GitLabCheckConfigResult, type GitLabGetAuthUrlQuerystring, type GitLabGetAuthUrlResult, type GitLabGetConfigFileBody, type GitLabGetConfigFileResult, type GitLabListProjectsQuerystring, type GitLabListProjectsResult, GitLabRepository, HttpStatusCodes, Message, MessageEventData, NewsletterSubscriptionBody, NewsletterSubscriptionResult, NewsletterUnsubscriptionBody, OAuth2Access, OAuth2AccessAPI, OAuth2AccessContext, OAuth2AccessData, OAuth2Token, OAuth2TokenDocument, OAuth2TokenModelType, OAuth2TokenSchema, Object$1 as Object, Organization, OrganizationAPI, OrganizationCreationData, OrganizationData, OrganizationDocument, OrganizationModelType, OrganizationSchema, PaginatedResponse, Plan, PlanAPI, PlanData, PlanDocument, PlanModelType, PlanSchema, PlanType, Project, ProjectAPI, ProjectConfigCI, ProjectConfiguration, ProjectCreationData, ProjectData, ProjectDocument, ProjectMemberByIdOption, ProjectModelType, ProjectSchema, PushCIConfigurationResult, PushDictionariesBody, PushDictionariesResult, PushProjectConfigurationBody, PushProjectConfigurationResult, RecursiveAuditJobInfo, RecursiveAuditPageInfo, RefreshAccessKeyBody, RefreshAccessKeyResponse, RepositoryConnection, RepositoryProvider, ResponseData, ScanShowcaseProjectParams, SearchDocResult, SearchDocUtilParams, SearchDocUtilResult, SelectOrganizationParam, SelectOrganizationResult, SelectProjectParam, SelectProjectResult, SendDictionaryUpdateArg, Session, SessionAPI, SessionContext, SessionData, SessionDataApi, SessionDocument, SessionModelType, SessionSchema, ShowcaseProject, ShowcaseProjectAPI, ShowcaseProjectData, ShowcaseProjectDocument, ShowcaseProjectModelType, ShowcaseProjectStatus, ShowcaseScanDetails, StartRecursiveAuditResult, Status, SubmitShowcaseProjectBody, SubmitShowcaseProjectResult, Tag, TagAPI, TagCreationData, TagData, TagDocument, TagModelType, TagSchema, ToggleShowcaseDownvoteBody, ToggleShowcaseDownvoteResult, ToggleShowcaseUpvoteBody, ToggleShowcaseUpvoteResult, TranslateDictionariesBody, TranslateDictionariesResult, TranslateJSONBody, TranslateJSONResult, TriggerBuildResult, TriggerWebhookBody, TriggerWebhookResult, UnselectOrganizationResult, UnselectProjectResult, UpdateDictionaryBody, UpdateDictionaryParam, UpdateDictionaryResult, UpdateOrganizationBody, UpdateOrganizationMembersBody, UpdateOrganizationMembersByIdBody, UpdateOrganizationMembersByIdParams, UpdateOrganizationMembersByIdResult, UpdateOrganizationMembersResult, UpdateOrganizationResult, UpdateProjectBody, UpdateProjectMembersBody, UpdateProjectMembersResult, UpdateProjectResult, UpdateShowcaseProjectBody, UpdateShowcaseProjectParams, UpdateShowcaseProjectResult, UpdateTagBody, UpdateTagParams, UpdateTagResult, UpdateUserBody, UpdateUserResult, User, UserAPI, UserData, UserDocument, UserModelType, UserSchema, VerifyEmailStatusSSEParams, VersionedContent, VersionedContentEl, Webhook, addDictionary, addNewAccessKey, addOrganization, addOrganizationMember, addProject, addTag, askDocQuestion, auditContentDeclaration, auditContentDeclarationField, auditContentDeclarationMetadata, auditGetHandler, auditTag, autocomplete, cancelRecursiveAudit, cancelSubscription, createPortalSession, createUser, customQuery, deleteAccessKey, deleteDictionary, deleteOrganization, deleteProject, deleteShowcaseProjectHandler, deleteTag, deleteUser, discoverUrls, extendOAuth2Token, formatPaginatedResponse, formatResponse, formatSession, getAiRoutes, getAuditRoutes, getAuth, getBitbucketRoutes, getCIConfiguration, getDictionaries, getDictionariesKeys, getDictionariesUpdateTimestamp, getDictionaryByKey, getDictionaryRoutes, getDiscussions, getGithubRoutes, getGitlabRoutes, getInvoices, getNewsletterRoutes, getNewsletterStatus, getOAuth2AccessToken, getOrganization, getOrganizationRoutes, getOrganizations, getOtherShowcaseProjects, getPaymentMethod, getPricing, getProjectRoutes, getProjects, getRecursiveAuditStatus, getShowcaseProjectById, getShowcaseProjectRoutes, getShowcaseProjects, getSubscription, getTags, getTranslationStatus, getTranslationsRoutes, getUserByEmail, getUserById, getUserRoutes, getUsers, listenChangeSSE, pauseRecursiveAudit, pauseTranslationJob, pushCIConfiguration, pushDictionaries, pushProjectConfiguration, refreshAccessKey, restartTranslationJob, resumeRecursiveAudit, resumeTranslationJob, retryTranslationJob, scanShowcaseProject, searchDocUtil, selectOrganization, selectProject, sendDictionaryUpdate, sendVerificationUpdate, startRecursiveAudit, stopTranslationJob, submitShowcaseProject, subscribeToNewsletter, toggleShowcaseDownvote, toggleShowcaseUpvote, translateDictionaries, translateJSON, triggerBuild, triggerWebhook, unselectOrganization, unselectProject, unsubscribeFromNewsletter, updateDictionary, updateOrganization, updateOrganizationMembers, updateOrganizationMembersById, updateProject, updateProjectMembers, updateShowcaseProjectHandler, updateTag, updateUser, verifyEmailStatusSSE };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oAuth2.middleware.d.ts","names":[],"sources":["../../../src/middlewares/oAuth2.middleware.ts"],"mappings":";;;;;
|
|
1
|
+
{"version":3,"file":"oAuth2.middleware.d.ts","names":[],"sources":["../../../src/middlewares/oAuth2.middleware.ts"],"mappings":";;;;;YA2BY,cAAA;IACR,KAAA,GAAQ,YAAA;EAAA;AAAA;AAAA,KAIA,4BAAA,GAA+B,cAAA;EACzC,KAAA,EAAO,YAAA;AAAA;AAAA,cAGI,mBAAA,GACX,OAAA,EAAS,cAAA,EACT,MAAA,EAAQ,YAAA,KAAY,OAAA;AAAA,cAOT,gBAAA,GACX,OAAA,EAAS,cAAA,EACT,KAAA,EAAO,YAAA,KACN,OAAA"}
|