@dev-crew-berlin/enter-js-utils 0.93.1 → 0.95.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.
|
@@ -1252,15 +1252,17 @@ export type components = {
|
|
|
1252
1252
|
paid: boolean;
|
|
1253
1253
|
/** Title */
|
|
1254
1254
|
title?: string | null;
|
|
1255
|
-
|
|
1256
|
-
* Provider
|
|
1257
|
-
* @enum {string}
|
|
1258
|
-
*/
|
|
1259
|
-
provider: "manual" | "sepa" | "sofort" | "credit" | "prepay" | "call2pay" | "handypay" | "paypal" | "stripe";
|
|
1255
|
+
provider: components["schemas"]["PaymentProvider"];
|
|
1260
1256
|
/** Reference */
|
|
1261
1257
|
reference?: string | null;
|
|
1262
1258
|
/** Amount */
|
|
1263
1259
|
amount: number;
|
|
1260
|
+
/**
|
|
1261
|
+
* Currency
|
|
1262
|
+
* @default CHF
|
|
1263
|
+
* @enum {string}
|
|
1264
|
+
*/
|
|
1265
|
+
currency?: "USD" | "EUR" | "CHF";
|
|
1264
1266
|
/** Testmode */
|
|
1265
1267
|
testmode: boolean;
|
|
1266
1268
|
};
|
|
@@ -1286,7 +1288,10 @@ export type components = {
|
|
|
1286
1288
|
attendeeId: string;
|
|
1287
1289
|
/** Instancename */
|
|
1288
1290
|
instanceName: string;
|
|
1291
|
+
provider?: components["schemas"]["PaymentProvider"] | null;
|
|
1289
1292
|
};
|
|
1293
|
+
/** @enum {string} */
|
|
1294
|
+
PaymentProvider: "manual" | "sepa" | "credit" | "bank_transfer" | "paypal" | "stripe";
|
|
1290
1295
|
/** PublicAttendee */
|
|
1291
1296
|
"PublicAttendee-Input": {
|
|
1292
1297
|
/** Id */
|
|
@@ -2149,6 +2154,9 @@ export type operations = {
|
|
|
2149
2154
|
/** Rendered Email Content */
|
|
2150
2155
|
rendered_email_content_instances__instance_name__attendees__attendee_id__emails__email_name__render_get: {
|
|
2151
2156
|
parameters: {
|
|
2157
|
+
query?: {
|
|
2158
|
+
mailing_id?: string | null;
|
|
2159
|
+
};
|
|
2152
2160
|
header?: {
|
|
2153
2161
|
"x-enter-device-name"?: string | null;
|
|
2154
2162
|
};
|