mailmeteor 0.0.3 → 0.0.5

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.
Files changed (58) hide show
  1. package/dist/index.cjs +431 -137
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.d.ts +1637 -481
  4. package/dist/index.mjs +431 -137
  5. package/dist/index.mjs.map +1 -1
  6. package/dist/types/generated-sdk/client/client.gen.d.ts.map +1 -1
  7. package/dist/types/generated-sdk/client/types.gen.d.ts.map +1 -1
  8. package/dist/types/generated-sdk/client/utils.gen.d.ts.map +1 -1
  9. package/dist/types/generated-sdk/core/auth.gen.d.ts.map +1 -1
  10. package/dist/types/generated-sdk/core/bodySerializer.gen.d.ts.map +1 -1
  11. package/dist/types/generated-sdk/core/params.gen.d.ts.map +1 -1
  12. package/dist/types/generated-sdk/core/pathSerializer.gen.d.ts.map +1 -1
  13. package/dist/types/generated-sdk/core/queryKeySerializer.gen.d.ts.map +1 -1
  14. package/dist/types/generated-sdk/core/serverSentEvents.gen.d.ts.map +1 -1
  15. package/dist/types/generated-sdk/core/types.gen.d.ts.map +1 -1
  16. package/dist/types/generated-sdk/core/utils.gen.d.ts.map +1 -1
  17. package/dist/types/generated-sdk/index.d.ts +2 -2
  18. package/dist/types/generated-sdk/index.d.ts.map +1 -1
  19. package/dist/types/generated-sdk/sdk.gen.d.ts +189 -71
  20. package/dist/types/generated-sdk/sdk.gen.d.ts.map +1 -1
  21. package/dist/types/generated-sdk/types.gen.d.ts +1393 -467
  22. package/dist/types/generated-sdk/types.gen.d.ts.map +1 -1
  23. package/dist/types/index.d.ts +5 -1
  24. package/dist/types/index.d.ts.map +1 -1
  25. package/package.json +1 -1
  26. package/dist/generated-sdk/client/client.gen.d.ts +0 -3
  27. package/dist/generated-sdk/client/client.gen.d.ts.map +0 -1
  28. package/dist/generated-sdk/client/index.d.ts +0 -9
  29. package/dist/generated-sdk/client/index.d.ts.map +0 -1
  30. package/dist/generated-sdk/client/types.gen.d.ts +0 -118
  31. package/dist/generated-sdk/client/types.gen.d.ts.map +0 -1
  32. package/dist/generated-sdk/client/utils.gen.d.ts +0 -34
  33. package/dist/generated-sdk/client/utils.gen.d.ts.map +0 -1
  34. package/dist/generated-sdk/client.gen.d.ts +0 -13
  35. package/dist/generated-sdk/client.gen.d.ts.map +0 -1
  36. package/dist/generated-sdk/core/auth.gen.d.ts +0 -19
  37. package/dist/generated-sdk/core/auth.gen.d.ts.map +0 -1
  38. package/dist/generated-sdk/core/bodySerializer.gen.d.ts +0 -26
  39. package/dist/generated-sdk/core/bodySerializer.gen.d.ts.map +0 -1
  40. package/dist/generated-sdk/core/params.gen.d.ts +0 -44
  41. package/dist/generated-sdk/core/params.gen.d.ts.map +0 -1
  42. package/dist/generated-sdk/core/pathSerializer.gen.d.ts +0 -34
  43. package/dist/generated-sdk/core/pathSerializer.gen.d.ts.map +0 -1
  44. package/dist/generated-sdk/core/queryKeySerializer.gen.d.ts +0 -19
  45. package/dist/generated-sdk/core/queryKeySerializer.gen.d.ts.map +0 -1
  46. package/dist/generated-sdk/core/serverSentEvents.gen.d.ts +0 -72
  47. package/dist/generated-sdk/core/serverSentEvents.gen.d.ts.map +0 -1
  48. package/dist/generated-sdk/core/types.gen.d.ts +0 -79
  49. package/dist/generated-sdk/core/types.gen.d.ts.map +0 -1
  50. package/dist/generated-sdk/core/utils.gen.d.ts +0 -20
  51. package/dist/generated-sdk/core/utils.gen.d.ts.map +0 -1
  52. package/dist/generated-sdk/index.d.ts +0 -4
  53. package/dist/generated-sdk/index.d.ts.map +0 -1
  54. package/dist/generated-sdk/sdk.gen.d.ts +0 -112
  55. package/dist/generated-sdk/sdk.gen.d.ts.map +0 -1
  56. package/dist/generated-sdk/types.gen.d.ts +0 -426
  57. package/dist/generated-sdk/types.gen.d.ts.map +0 -1
  58. package/dist/index.d.ts.map +0 -1
@@ -1,426 +0,0 @@
1
- export type ClientOptions = {
2
- baseUrl: `${string}://${string}/v1` | (string & {});
3
- };
4
- export type ErrorResponse = {
5
- error: {
6
- status: number;
7
- code?: 'url_invalid' | 'authentication_required' | 'rate_limit' | 'resource_missing' | 'resource_conflict' | 'resource_exhausted' | 'resource_already_exists' | 'resource_action_required' | 'account_verification_required' | 'account_unauthorized' | 'account_blocked' | 'parameter_missing' | 'parameter_invalid' | 'esp_unsupported' | 'unknown_error' | 'api_error' | 'quota_exceeded' | 'sender_missing_service' | 'sender_insufficient_permission' | 'admin_role_required' | 'TEST_ERROR';
8
- message: string;
9
- type?: string;
10
- details?: {
11
- [key: string]: unknown;
12
- };
13
- };
14
- message: string;
15
- code?: 'url_invalid' | 'authentication_required' | 'rate_limit' | 'resource_missing' | 'resource_conflict' | 'resource_exhausted' | 'resource_already_exists' | 'resource_action_required' | 'account_verification_required' | 'account_unauthorized' | 'account_blocked' | 'parameter_missing' | 'parameter_invalid' | 'esp_unsupported' | 'unknown_error' | 'api_error' | 'quota_exceeded' | 'sender_missing_service' | 'sender_insufficient_permission' | 'admin_role_required' | 'TEST_ERROR';
16
- };
17
- export type AddonsResponse200 = {
18
- senders?: {
19
- included_per_seat: number;
20
- included_total: number;
21
- used: number;
22
- extra: {
23
- price_amount: number;
24
- currency: string;
25
- quantity_per_addon: number;
26
- interval: 'day' | 'week' | 'month' | 'year';
27
- subscribed: number;
28
- } | null;
29
- };
30
- email_warmups?: {
31
- included_per_seat: number;
32
- included_total: number;
33
- used: number;
34
- extra: {
35
- price_amount: number;
36
- currency: string;
37
- quantity_per_addon: number;
38
- interval: 'day' | 'week' | 'month' | 'year';
39
- subscribed: number;
40
- } | null;
41
- };
42
- };
43
- export type PreviewBody = {
44
- plan: 'free' | 'starter' | 'pro' | 'premium' | 'business';
45
- billing_period: 'month' | 'year';
46
- };
47
- export type PreviewParams = {
48
- addon: 'senders' | 'email_warmups';
49
- };
50
- export type PreviewResponse200 = {
51
- discount_percents: Array<number>;
52
- total_excluding_tax: number;
53
- total: number;
54
- amount_due: number;
55
- added_from_balance: number;
56
- consumed_balance: number;
57
- credited_to_balance: number;
58
- lines: Array<{
59
- amount: number;
60
- billing_period: 'day' | 'week' | 'month' | 'year';
61
- proration: boolean;
62
- plan?: 'free' | 'starter' | 'pro' | 'premium' | 'business';
63
- addon?: 'senders' | 'email_warmups';
64
- }>;
65
- next_renewal: number;
66
- total_tax_amounts: Array<{
67
- amount: number;
68
- }>;
69
- };
70
- export type AddonBody = {
71
- quantity: number;
72
- };
73
- export type AddonParams = {
74
- addon: 'senders' | 'email_warmups';
75
- };
76
- export type AddonResponse200 = Array<{
77
- id: string;
78
- email: string;
79
- usage: number;
80
- }>;
81
- export type SubscriptionResponse200 = {
82
- status: 'confirmation_required' | 'success' | 'payment_failed';
83
- client_secret?: string;
84
- failure_code?: string;
85
- };
86
- export type SubscriptionBody = {
87
- plan: 'free' | 'starter' | 'pro' | 'premium' | 'business';
88
- billing_period: 'month' | 'year';
89
- };
90
- export type PricesQuery = {
91
- currency: string;
92
- };
93
- export type PricesResponse200 = {
94
- free?: {
95
- month: number;
96
- year: number;
97
- };
98
- starter?: {
99
- month: number;
100
- year: number;
101
- };
102
- pro?: {
103
- month: number;
104
- year: number;
105
- };
106
- premium?: {
107
- month: number;
108
- year: number;
109
- };
110
- business?: {
111
- month: number;
112
- year: number;
113
- };
114
- };
115
- export type OpenapiJsonResponse200 = unknown;
116
- export type BillingAddonsGetAddonsData = {
117
- body?: never;
118
- path?: never;
119
- query?: never;
120
- url: '/billing/addons';
121
- };
122
- export type BillingAddonsGetAddonsErrors = {
123
- /**
124
- * Error response
125
- */
126
- default: ErrorResponse;
127
- };
128
- export type BillingAddonsGetAddonsError = BillingAddonsGetAddonsErrors[keyof BillingAddonsGetAddonsErrors];
129
- export type BillingAddonsGetAddonsResponses = {
130
- /**
131
- * Response
132
- */
133
- 200: {
134
- senders?: {
135
- included_per_seat: number;
136
- included_total: number;
137
- used: number;
138
- extra: {
139
- price_amount: number;
140
- currency: string;
141
- quantity_per_addon: number;
142
- interval: 'day' | 'week' | 'month' | 'year';
143
- subscribed: number;
144
- } | null;
145
- };
146
- email_warmups?: {
147
- included_per_seat: number;
148
- included_total: number;
149
- used: number;
150
- extra: {
151
- price_amount: number;
152
- currency: string;
153
- quantity_per_addon: number;
154
- interval: 'day' | 'week' | 'month' | 'year';
155
- subscribed: number;
156
- } | null;
157
- };
158
- };
159
- };
160
- export type BillingAddonsGetAddonsResponse = BillingAddonsGetAddonsResponses[keyof BillingAddonsGetAddonsResponses];
161
- export type BillingAddonsPreviewUpdateData = {
162
- body?: {
163
- quantity: number;
164
- };
165
- path: {
166
- addon: 'senders' | 'email_warmups';
167
- };
168
- query?: never;
169
- url: '/billing/addons/{addon}/preview';
170
- };
171
- export type BillingAddonsPreviewUpdateErrors = {
172
- /**
173
- * Error response
174
- */
175
- default: ErrorResponse;
176
- };
177
- export type BillingAddonsPreviewUpdateError = BillingAddonsPreviewUpdateErrors[keyof BillingAddonsPreviewUpdateErrors];
178
- export type BillingAddonsPreviewUpdateResponses = {
179
- /**
180
- * Response
181
- */
182
- 200: {
183
- discount_percents: Array<number>;
184
- total_excluding_tax: number;
185
- total: number;
186
- amount_due: number;
187
- added_from_balance: number;
188
- consumed_balance: number;
189
- credited_to_balance: number;
190
- };
191
- };
192
- export type BillingAddonsPreviewUpdateResponse = BillingAddonsPreviewUpdateResponses[keyof BillingAddonsPreviewUpdateResponses];
193
- export type BillingAddonsGetAddonUsagesData = {
194
- body?: never;
195
- path: {
196
- addon: 'senders' | 'email_warmups';
197
- };
198
- query?: never;
199
- url: '/billing/addons/{addon}';
200
- };
201
- export type BillingAddonsGetAddonUsagesErrors = {
202
- /**
203
- * Error response
204
- */
205
- default: ErrorResponse;
206
- };
207
- export type BillingAddonsGetAddonUsagesError = BillingAddonsGetAddonUsagesErrors[keyof BillingAddonsGetAddonUsagesErrors];
208
- export type BillingAddonsGetAddonUsagesResponses = {
209
- /**
210
- * Response
211
- */
212
- 200: Array<{
213
- id: string;
214
- email: string;
215
- usage: number;
216
- }>;
217
- };
218
- export type BillingAddonsGetAddonUsagesResponse = BillingAddonsGetAddonUsagesResponses[keyof BillingAddonsGetAddonUsagesResponses];
219
- export type BillingAddonsUpdateData = {
220
- body?: {
221
- quantity: number;
222
- };
223
- path: {
224
- addon: 'senders' | 'email_warmups';
225
- };
226
- query?: never;
227
- url: '/billing/addons/{addon}';
228
- };
229
- export type BillingAddonsUpdateErrors = {
230
- /**
231
- * Error response
232
- */
233
- default: ErrorResponse;
234
- };
235
- export type BillingAddonsUpdateError = BillingAddonsUpdateErrors[keyof BillingAddonsUpdateErrors];
236
- export type BillingAddonsUpdateResponses = {
237
- /**
238
- * Response
239
- */
240
- 200: {
241
- status: 'confirmation_required' | 'success' | 'payment_failed';
242
- client_secret?: string;
243
- failure_code?: string;
244
- };
245
- };
246
- export type BillingAddonsUpdateResponse = BillingAddonsUpdateResponses[keyof BillingAddonsUpdateResponses];
247
- export type BillingSubscriptionGetData = {
248
- body?: never;
249
- path?: never;
250
- query?: never;
251
- url: '/billing/subscription';
252
- };
253
- export type BillingSubscriptionGetErrors = {
254
- /**
255
- * Error response
256
- */
257
- default: ErrorResponse;
258
- };
259
- export type BillingSubscriptionGetError = BillingSubscriptionGetErrors[keyof BillingSubscriptionGetErrors];
260
- export type BillingSubscriptionGetResponses = {
261
- /**
262
- * Response
263
- */
264
- 200: {
265
- id: string;
266
- created_at: number;
267
- current_period_start: number;
268
- current_period_end: number;
269
- quantity: number;
270
- currency: string;
271
- amount: number | null;
272
- discount_percentage?: number | null;
273
- name: string | null;
274
- billing_period: 'day' | 'week' | 'month' | 'year' | null;
275
- plan: 'free' | 'starter' | 'pro' | 'premium' | 'business' | null;
276
- default_payment_method: {
277
- type: string;
278
- brand?: string | null;
279
- last4: string | null;
280
- exp_month: number | null;
281
- exp_year: number | null;
282
- bank_name?: string | null;
283
- } | null;
284
- addons: {
285
- senders?: {
286
- quantity: number;
287
- };
288
- email_warmups?: {
289
- quantity: number;
290
- };
291
- };
292
- } | null;
293
- };
294
- export type BillingSubscriptionGetResponse = BillingSubscriptionGetResponses[keyof BillingSubscriptionGetResponses];
295
- export type BillingSubscriptionUpdateData = {
296
- body?: {
297
- plan: 'free' | 'starter' | 'pro' | 'premium' | 'business';
298
- billing_period: 'month' | 'year';
299
- };
300
- path?: never;
301
- query?: never;
302
- url: '/billing/subscription';
303
- };
304
- export type BillingSubscriptionUpdateErrors = {
305
- /**
306
- * Error response
307
- */
308
- default: ErrorResponse;
309
- };
310
- export type BillingSubscriptionUpdateError = BillingSubscriptionUpdateErrors[keyof BillingSubscriptionUpdateErrors];
311
- export type BillingSubscriptionUpdateResponses = {
312
- /**
313
- * Response
314
- */
315
- 200: {
316
- status: 'confirmation_required' | 'success' | 'payment_failed';
317
- client_secret?: string;
318
- failure_code?: string;
319
- };
320
- };
321
- export type BillingSubscriptionUpdateResponse = BillingSubscriptionUpdateResponses[keyof BillingSubscriptionUpdateResponses];
322
- export type BillingSubscriptionPreviewUpdateData = {
323
- body?: {
324
- plan: 'free' | 'starter' | 'pro' | 'premium' | 'business';
325
- billing_period: 'month' | 'year';
326
- };
327
- path?: never;
328
- query?: never;
329
- url: '/billing/subscription/preview';
330
- };
331
- export type BillingSubscriptionPreviewUpdateErrors = {
332
- /**
333
- * Error response
334
- */
335
- default: ErrorResponse;
336
- };
337
- export type BillingSubscriptionPreviewUpdateError = BillingSubscriptionPreviewUpdateErrors[keyof BillingSubscriptionPreviewUpdateErrors];
338
- export type BillingSubscriptionPreviewUpdateResponses = {
339
- /**
340
- * Response
341
- */
342
- 200: {
343
- discount_percents: Array<number>;
344
- total_excluding_tax: number;
345
- total: number;
346
- amount_due: number;
347
- added_from_balance: number;
348
- consumed_balance: number;
349
- credited_to_balance: number;
350
- lines: Array<{
351
- amount: number;
352
- billing_period: 'day' | 'week' | 'month' | 'year';
353
- proration: boolean;
354
- plan?: 'free' | 'starter' | 'pro' | 'premium' | 'business';
355
- addon?: 'senders' | 'email_warmups';
356
- }>;
357
- next_renewal: number;
358
- total_tax_amounts: Array<{
359
- amount: number;
360
- }>;
361
- };
362
- };
363
- export type BillingSubscriptionPreviewUpdateResponse = BillingSubscriptionPreviewUpdateResponses[keyof BillingSubscriptionPreviewUpdateResponses];
364
- export type BillingGetPricesData = {
365
- body?: never;
366
- path?: never;
367
- query: {
368
- currency: string;
369
- };
370
- url: '/billing/prices';
371
- };
372
- export type BillingGetPricesErrors = {
373
- /**
374
- * Error response
375
- */
376
- default: ErrorResponse;
377
- };
378
- export type BillingGetPricesError = BillingGetPricesErrors[keyof BillingGetPricesErrors];
379
- export type BillingGetPricesResponses = {
380
- /**
381
- * Response
382
- */
383
- 200: {
384
- free?: {
385
- month: number;
386
- year: number;
387
- };
388
- starter?: {
389
- month: number;
390
- year: number;
391
- };
392
- pro?: {
393
- month: number;
394
- year: number;
395
- };
396
- premium?: {
397
- month: number;
398
- year: number;
399
- };
400
- business?: {
401
- month: number;
402
- year: number;
403
- };
404
- };
405
- };
406
- export type BillingGetPricesResponse = BillingGetPricesResponses[keyof BillingGetPricesResponses];
407
- export type GetOpenapiJsonData = {
408
- body?: never;
409
- path?: never;
410
- query?: never;
411
- url: '/openapi.json';
412
- };
413
- export type GetOpenapiJsonErrors = {
414
- /**
415
- * Error response
416
- */
417
- default: ErrorResponse;
418
- };
419
- export type GetOpenapiJsonError = GetOpenapiJsonErrors[keyof GetOpenapiJsonErrors];
420
- export type GetOpenapiJsonResponses = {
421
- /**
422
- * Response
423
- */
424
- 200: unknown;
425
- };
426
- //# sourceMappingURL=types.gen.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.gen.d.ts","sourceRoot":"","sources":["../../../src/generated-sdk/types.gen.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AAErF,OAAO,KAAK,eAAe,MAAM,2BAA2B,CAAA;AAE5D,MAAM,WAAW,gBAAgB;IAC/B;;OAEG;IACH,GAAG,EAAE,MAAM,CAAA;IACX;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB;AAED;;GAEG;AACH,qBAAa,aAAa;IACxB,OAAO,CAAC,MAAM,CAAQ;IAEtB,SAAgB,aAAa,EAAE,aAAa,CAAA;IAC5C,SAAgB,mBAAmB,EAAE,mBAAmB,CAAA;IACxD,SAAgB,OAAO,EAAE,OAAO,CAAA;gBAEpB,MAAM,EAAE,gBAAgB;IAkBpC;;OAEG;IACI,SAAS,CAAC,GAAG,EAAE,MAAM;CAS7B"}