@trycourier/courier 6.2.3 → 6.3.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.
Files changed (59) hide show
  1. package/Client.d.ts +2 -1
  2. package/Client.js +3 -2
  3. package/api/client/requests/SendMessageRequest.d.ts +2 -1
  4. package/api/resources/audiences/client/Client.js +5 -5
  5. package/api/resources/auditEvents/client/Client.js +2 -2
  6. package/api/resources/authTokens/client/Client.js +1 -1
  7. package/api/resources/automations/client/Client.js +2 -2
  8. package/api/resources/brands/client/Client.js +5 -5
  9. package/api/resources/bulk/client/Client.d.ts +2 -1
  10. package/api/resources/bulk/client/Client.js +7 -6
  11. package/api/resources/bulk/client/requests/BulkCreateJobParams.d.ts +2 -1
  12. package/api/resources/inbound/client/Client.js +1 -1
  13. package/api/resources/lists/client/Client.js +10 -10
  14. package/api/resources/messages/client/Client.js +6 -6
  15. package/api/resources/notifications/client/Client.js +6 -6
  16. package/api/resources/profiles/client/Client.d.ts +13 -0
  17. package/api/resources/profiles/client/Client.js +62 -7
  18. package/api/resources/profiles/types/UserProfilePatch.d.ts +11 -0
  19. package/api/resources/profiles/types/UserProfilePatch.js +5 -0
  20. package/api/resources/profiles/types/index.d.ts +1 -0
  21. package/api/resources/profiles/types/index.js +1 -0
  22. package/api/resources/send/types/BaseMessage.d.ts +1 -1
  23. package/api/resources/send/types/Delay.d.ts +3 -1
  24. package/api/resources/templates/client/Client.js +1 -1
  25. package/api/resources/tenants/client/Client.js +7 -7
  26. package/api/resources/translations/client/Client.js +2 -2
  27. package/api/resources/users/resources/preferences/client/Client.js +3 -3
  28. package/api/resources/users/resources/tenants/client/Client.js +5 -5
  29. package/api/resources/users/resources/tokens/client/Client.js +6 -6
  30. package/dist/Client.d.ts +2 -1
  31. package/dist/Client.js +3 -2
  32. package/dist/api/client/requests/SendMessageRequest.d.ts +2 -1
  33. package/dist/api/resources/audiences/client/Client.js +5 -5
  34. package/dist/api/resources/auditEvents/client/Client.js +2 -2
  35. package/dist/api/resources/authTokens/client/Client.js +1 -1
  36. package/dist/api/resources/automations/client/Client.js +2 -2
  37. package/dist/api/resources/brands/client/Client.js +5 -5
  38. package/dist/api/resources/bulk/client/Client.d.ts +2 -1
  39. package/dist/api/resources/bulk/client/Client.js +7 -6
  40. package/dist/api/resources/bulk/client/requests/BulkCreateJobParams.d.ts +2 -1
  41. package/dist/api/resources/inbound/client/Client.js +1 -1
  42. package/dist/api/resources/lists/client/Client.js +10 -10
  43. package/dist/api/resources/messages/client/Client.js +6 -6
  44. package/dist/api/resources/notifications/client/Client.js +6 -6
  45. package/dist/api/resources/profiles/client/Client.d.ts +13 -0
  46. package/dist/api/resources/profiles/client/Client.js +62 -7
  47. package/dist/api/resources/profiles/types/UserProfilePatch.d.ts +11 -0
  48. package/dist/api/resources/profiles/types/UserProfilePatch.js +5 -0
  49. package/dist/api/resources/profiles/types/index.d.ts +1 -0
  50. package/dist/api/resources/profiles/types/index.js +1 -0
  51. package/dist/api/resources/send/types/BaseMessage.d.ts +1 -1
  52. package/dist/api/resources/send/types/Delay.d.ts +3 -1
  53. package/dist/api/resources/templates/client/Client.js +1 -1
  54. package/dist/api/resources/tenants/client/Client.js +7 -7
  55. package/dist/api/resources/translations/client/Client.js +2 -2
  56. package/dist/api/resources/users/resources/preferences/client/Client.js +3 -3
  57. package/dist/api/resources/users/resources/tenants/client/Client.js +5 -5
  58. package/dist/api/resources/users/resources/tokens/client/Client.js +6 -6
  59. package/package.json +1 -1
@@ -58,3 +58,4 @@ __exportStar(require("./WebhookMethod"), exports);
58
58
  __exportStar(require("./WebhookAuthentication"), exports);
59
59
  __exportStar(require("./WebhookAuthMode"), exports);
60
60
  __exportStar(require("./WebhookProfileType"), exports);
61
+ __exportStar(require("./UserProfilePatch"), exports);
@@ -21,7 +21,7 @@ export interface BaseMessage {
21
21
  routing?: Courier.Routing;
22
22
  /** Time in ms to attempt the channel before failing over to the next available channel. */
23
23
  timeout?: Courier.Timeout;
24
- /** Defines the time to wait before delivering the message. */
24
+ /** Defines the time to wait before delivering the message. You can specify one of the following options. Duration with the number of milliseconds to delay. Until with an ISO 8601 timestamp that specifies when it should be delivered. Until with an OpenStreetMap opening_hours-like format that specifies the [Delivery Window](https://www.courier.com/docs/platform/sending/failover/#delivery-window) (e.g., 'Mo-Fr 08:00-18:00pm') */
25
25
  delay?: Courier.Delay;
26
26
  /**
27
27
  * "Expiry allows you to set an absolute or relative time in which a message expires.
@@ -3,5 +3,7 @@
3
3
  */
4
4
  export interface Delay {
5
5
  /** The duration of the delay in milliseconds. */
6
- duration: number;
6
+ duration?: number;
7
+ /** An ISO 8601 timestamp that specifies when it should be delivered or an OpenStreetMap opening_hours-like format that specifies the [Delivery Window](https://www.courier.com/docs/platform/sending/failover/#delivery-window) (e.g., 'Mo-Fr 08:00-18:00pm') */
8
+ until?: string;
7
9
  }
@@ -73,7 +73,7 @@ class Templates {
73
73
  Authorization: yield this._getAuthorizationHeader(),
74
74
  "X-Fern-Language": "JavaScript",
75
75
  "X-Fern-SDK-Name": "@trycourier/courier",
76
- "X-Fern-SDK-Version": "v6.2.3",
76
+ "X-Fern-SDK-Version": "v6.3.0",
77
77
  "X-Fern-Runtime": core.RUNTIME.type,
78
78
  "X-Fern-Runtime-Version": core.RUNTIME.version,
79
79
  },
@@ -90,7 +90,7 @@ class Tenants {
90
90
  Authorization: yield this._getAuthorizationHeader(),
91
91
  "X-Fern-Language": "JavaScript",
92
92
  "X-Fern-SDK-Name": "@trycourier/courier",
93
- "X-Fern-SDK-Version": "v6.2.3",
93
+ "X-Fern-SDK-Version": "v6.3.0",
94
94
  "X-Fern-Runtime": core.RUNTIME.type,
95
95
  "X-Fern-Runtime-Version": core.RUNTIME.version,
96
96
  },
@@ -147,7 +147,7 @@ class Tenants {
147
147
  Authorization: yield this._getAuthorizationHeader(),
148
148
  "X-Fern-Language": "JavaScript",
149
149
  "X-Fern-SDK-Name": "@trycourier/courier",
150
- "X-Fern-SDK-Version": "v6.2.3",
150
+ "X-Fern-SDK-Version": "v6.3.0",
151
151
  "X-Fern-Runtime": core.RUNTIME.type,
152
152
  "X-Fern-Runtime-Version": core.RUNTIME.version,
153
153
  },
@@ -216,7 +216,7 @@ class Tenants {
216
216
  Authorization: yield this._getAuthorizationHeader(),
217
217
  "X-Fern-Language": "JavaScript",
218
218
  "X-Fern-SDK-Name": "@trycourier/courier",
219
- "X-Fern-SDK-Version": "v6.2.3",
219
+ "X-Fern-SDK-Version": "v6.3.0",
220
220
  "X-Fern-Runtime": core.RUNTIME.type,
221
221
  "X-Fern-Runtime-Version": core.RUNTIME.version,
222
222
  },
@@ -266,7 +266,7 @@ class Tenants {
266
266
  Authorization: yield this._getAuthorizationHeader(),
267
267
  "X-Fern-Language": "JavaScript",
268
268
  "X-Fern-SDK-Name": "@trycourier/courier",
269
- "X-Fern-SDK-Version": "v6.2.3",
269
+ "X-Fern-SDK-Version": "v6.3.0",
270
270
  "X-Fern-Runtime": core.RUNTIME.type,
271
271
  "X-Fern-Runtime-Version": core.RUNTIME.version,
272
272
  },
@@ -329,7 +329,7 @@ class Tenants {
329
329
  Authorization: yield this._getAuthorizationHeader(),
330
330
  "X-Fern-Language": "JavaScript",
331
331
  "X-Fern-SDK-Name": "@trycourier/courier",
332
- "X-Fern-SDK-Version": "v6.2.3",
332
+ "X-Fern-SDK-Version": "v6.3.0",
333
333
  "X-Fern-Runtime": core.RUNTIME.type,
334
334
  "X-Fern-Runtime-Version": core.RUNTIME.version,
335
335
  },
@@ -390,7 +390,7 @@ class Tenants {
390
390
  Authorization: yield this._getAuthorizationHeader(),
391
391
  "X-Fern-Language": "JavaScript",
392
392
  "X-Fern-SDK-Name": "@trycourier/courier",
393
- "X-Fern-SDK-Version": "v6.2.3",
393
+ "X-Fern-SDK-Version": "v6.3.0",
394
394
  "X-Fern-Runtime": core.RUNTIME.type,
395
395
  "X-Fern-Runtime-Version": core.RUNTIME.version,
396
396
  },
@@ -441,7 +441,7 @@ class Tenants {
441
441
  Authorization: yield this._getAuthorizationHeader(),
442
442
  "X-Fern-Language": "JavaScript",
443
443
  "X-Fern-SDK-Name": "@trycourier/courier",
444
- "X-Fern-SDK-Version": "v6.2.3",
444
+ "X-Fern-SDK-Version": "v6.3.0",
445
445
  "X-Fern-Runtime": core.RUNTIME.type,
446
446
  "X-Fern-Runtime-Version": core.RUNTIME.version,
447
447
  },
@@ -70,7 +70,7 @@ class Translations {
70
70
  Authorization: yield this._getAuthorizationHeader(),
71
71
  "X-Fern-Language": "JavaScript",
72
72
  "X-Fern-SDK-Name": "@trycourier/courier",
73
- "X-Fern-SDK-Version": "v6.2.3",
73
+ "X-Fern-SDK-Version": "v6.3.0",
74
74
  "X-Fern-Runtime": core.RUNTIME.type,
75
75
  "X-Fern-Runtime-Version": core.RUNTIME.version,
76
76
  },
@@ -130,7 +130,7 @@ class Translations {
130
130
  Authorization: yield this._getAuthorizationHeader(),
131
131
  "X-Fern-Language": "JavaScript",
132
132
  "X-Fern-SDK-Name": "@trycourier/courier",
133
- "X-Fern-SDK-Version": "v6.2.3",
133
+ "X-Fern-SDK-Version": "v6.3.0",
134
134
  "X-Fern-Runtime": core.RUNTIME.type,
135
135
  "X-Fern-Runtime-Version": core.RUNTIME.version,
136
136
  },
@@ -88,7 +88,7 @@ class Preferences {
88
88
  Authorization: yield this._getAuthorizationHeader(),
89
89
  "X-Fern-Language": "JavaScript",
90
90
  "X-Fern-SDK-Name": "@trycourier/courier",
91
- "X-Fern-SDK-Version": "v6.2.3",
91
+ "X-Fern-SDK-Version": "v6.3.0",
92
92
  "X-Fern-Runtime": core.RUNTIME.type,
93
93
  "X-Fern-Runtime-Version": core.RUNTIME.version,
94
94
  },
@@ -156,7 +156,7 @@ class Preferences {
156
156
  Authorization: yield this._getAuthorizationHeader(),
157
157
  "X-Fern-Language": "JavaScript",
158
158
  "X-Fern-SDK-Name": "@trycourier/courier",
159
- "X-Fern-SDK-Version": "v6.2.3",
159
+ "X-Fern-SDK-Version": "v6.3.0",
160
160
  "X-Fern-Runtime": core.RUNTIME.type,
161
161
  "X-Fern-Runtime-Version": core.RUNTIME.version,
162
162
  },
@@ -228,7 +228,7 @@ class Preferences {
228
228
  Authorization: yield this._getAuthorizationHeader(),
229
229
  "X-Fern-Language": "JavaScript",
230
230
  "X-Fern-SDK-Name": "@trycourier/courier",
231
- "X-Fern-SDK-Version": "v6.2.3",
231
+ "X-Fern-SDK-Version": "v6.3.0",
232
232
  "X-Fern-Runtime": core.RUNTIME.type,
233
233
  "X-Fern-Runtime-Version": core.RUNTIME.version,
234
234
  },
@@ -82,7 +82,7 @@ class Tenants {
82
82
  Authorization: yield this._getAuthorizationHeader(),
83
83
  "X-Fern-Language": "JavaScript",
84
84
  "X-Fern-SDK-Name": "@trycourier/courier",
85
- "X-Fern-SDK-Version": "v6.2.3",
85
+ "X-Fern-SDK-Version": "v6.3.0",
86
86
  "X-Fern-Runtime": core.RUNTIME.type,
87
87
  "X-Fern-Runtime-Version": core.RUNTIME.version,
88
88
  },
@@ -146,7 +146,7 @@ class Tenants {
146
146
  Authorization: yield this._getAuthorizationHeader(),
147
147
  "X-Fern-Language": "JavaScript",
148
148
  "X-Fern-SDK-Name": "@trycourier/courier",
149
- "X-Fern-SDK-Version": "v6.2.3",
149
+ "X-Fern-SDK-Version": "v6.3.0",
150
150
  "X-Fern-Runtime": core.RUNTIME.type,
151
151
  "X-Fern-Runtime-Version": core.RUNTIME.version,
152
152
  },
@@ -198,7 +198,7 @@ class Tenants {
198
198
  Authorization: yield this._getAuthorizationHeader(),
199
199
  "X-Fern-Language": "JavaScript",
200
200
  "X-Fern-SDK-Name": "@trycourier/courier",
201
- "X-Fern-SDK-Version": "v6.2.3",
201
+ "X-Fern-SDK-Version": "v6.3.0",
202
202
  "X-Fern-Runtime": core.RUNTIME.type,
203
203
  "X-Fern-Runtime-Version": core.RUNTIME.version,
204
204
  },
@@ -250,7 +250,7 @@ class Tenants {
250
250
  Authorization: yield this._getAuthorizationHeader(),
251
251
  "X-Fern-Language": "JavaScript",
252
252
  "X-Fern-SDK-Name": "@trycourier/courier",
253
- "X-Fern-SDK-Version": "v6.2.3",
253
+ "X-Fern-SDK-Version": "v6.3.0",
254
254
  "X-Fern-Runtime": core.RUNTIME.type,
255
255
  "X-Fern-Runtime-Version": core.RUNTIME.version,
256
256
  },
@@ -313,7 +313,7 @@ class Tenants {
313
313
  Authorization: yield this._getAuthorizationHeader(),
314
314
  "X-Fern-Language": "JavaScript",
315
315
  "X-Fern-SDK-Name": "@trycourier/courier",
316
- "X-Fern-SDK-Version": "v6.2.3",
316
+ "X-Fern-SDK-Version": "v6.3.0",
317
317
  "X-Fern-Runtime": core.RUNTIME.type,
318
318
  "X-Fern-Runtime-Version": core.RUNTIME.version,
319
319
  },
@@ -69,7 +69,7 @@ class Tokens {
69
69
  Authorization: yield this._getAuthorizationHeader(),
70
70
  "X-Fern-Language": "JavaScript",
71
71
  "X-Fern-SDK-Name": "@trycourier/courier",
72
- "X-Fern-SDK-Version": "v6.2.3",
72
+ "X-Fern-SDK-Version": "v6.3.0",
73
73
  "X-Fern-Runtime": core.RUNTIME.type,
74
74
  "X-Fern-Runtime-Version": core.RUNTIME.version,
75
75
  },
@@ -150,7 +150,7 @@ class Tokens {
150
150
  Authorization: yield this._getAuthorizationHeader(),
151
151
  "X-Fern-Language": "JavaScript",
152
152
  "X-Fern-SDK-Name": "@trycourier/courier",
153
- "X-Fern-SDK-Version": "v6.2.3",
153
+ "X-Fern-SDK-Version": "v6.3.0",
154
154
  "X-Fern-Runtime": core.RUNTIME.type,
155
155
  "X-Fern-Runtime-Version": core.RUNTIME.version,
156
156
  },
@@ -217,7 +217,7 @@ class Tokens {
217
217
  Authorization: yield this._getAuthorizationHeader(),
218
218
  "X-Fern-Language": "JavaScript",
219
219
  "X-Fern-SDK-Name": "@trycourier/courier",
220
- "X-Fern-SDK-Version": "v6.2.3",
220
+ "X-Fern-SDK-Version": "v6.3.0",
221
221
  "X-Fern-Runtime": core.RUNTIME.type,
222
222
  "X-Fern-Runtime-Version": core.RUNTIME.version,
223
223
  },
@@ -277,7 +277,7 @@ class Tokens {
277
277
  Authorization: yield this._getAuthorizationHeader(),
278
278
  "X-Fern-Language": "JavaScript",
279
279
  "X-Fern-SDK-Name": "@trycourier/courier",
280
- "X-Fern-SDK-Version": "v6.2.3",
280
+ "X-Fern-SDK-Version": "v6.3.0",
281
281
  "X-Fern-Runtime": core.RUNTIME.type,
282
282
  "X-Fern-Runtime-Version": core.RUNTIME.version,
283
283
  },
@@ -335,7 +335,7 @@ class Tokens {
335
335
  Authorization: yield this._getAuthorizationHeader(),
336
336
  "X-Fern-Language": "JavaScript",
337
337
  "X-Fern-SDK-Name": "@trycourier/courier",
338
- "X-Fern-SDK-Version": "v6.2.3",
338
+ "X-Fern-SDK-Version": "v6.3.0",
339
339
  "X-Fern-Runtime": core.RUNTIME.type,
340
340
  "X-Fern-Runtime-Version": core.RUNTIME.version,
341
341
  },
@@ -390,7 +390,7 @@ class Tokens {
390
390
  Authorization: yield this._getAuthorizationHeader(),
391
391
  "X-Fern-Language": "JavaScript",
392
392
  "X-Fern-SDK-Name": "@trycourier/courier",
393
- "X-Fern-SDK-Version": "v6.2.3",
393
+ "X-Fern-SDK-Version": "v6.3.0",
394
394
  "X-Fern-Runtime": core.RUNTIME.type,
395
395
  "X-Fern-Runtime-Version": core.RUNTIME.version,
396
396
  },
package/dist/Client.d.ts CHANGED
@@ -116,7 +116,8 @@ export declare class CourierClient {
116
116
  * criteria: Courier.Criteria.NoEscalation
117
117
  * },
118
118
  * delay: {
119
- * duration: 1
119
+ * duration: 1,
120
+ * until: "string"
120
121
  * },
121
122
  * expiry: {
122
123
  * expires_at: "string",
package/dist/Client.js CHANGED
@@ -141,7 +141,8 @@ class CourierClient {
141
141
  * criteria: Courier.Criteria.NoEscalation
142
142
  * },
143
143
  * delay: {
144
- * duration: 1
144
+ * duration: 1,
145
+ * until: "string"
145
146
  * },
146
147
  * expiry: {
147
148
  * expires_at: "string",
@@ -165,7 +166,7 @@ class CourierClient {
165
166
  Authorization: yield this._getAuthorizationHeader(),
166
167
  "X-Fern-Language": "JavaScript",
167
168
  "X-Fern-SDK-Name": "@trycourier/courier",
168
- "X-Fern-SDK-Version": "v6.2.3",
169
+ "X-Fern-SDK-Version": "v6.3.0",
169
170
  "X-Fern-Runtime": core.RUNTIME.type,
170
171
  "X-Fern-Runtime-Version": core.RUNTIME.version,
171
172
  "Idempotency-Key": (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey) != null ? requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey : undefined,
@@ -76,7 +76,8 @@ import * as Courier from "../../index";
76
76
  * criteria: Courier.Criteria.NoEscalation
77
77
  * },
78
78
  * delay: {
79
- * duration: 1
79
+ * duration: 1,
80
+ * until: "string"
80
81
  * },
81
82
  * expiry: {
82
83
  * expires_at: "string",
@@ -67,7 +67,7 @@ class Audiences {
67
67
  Authorization: yield this._getAuthorizationHeader(),
68
68
  "X-Fern-Language": "JavaScript",
69
69
  "X-Fern-SDK-Name": "@trycourier/courier",
70
- "X-Fern-SDK-Version": "v6.2.3",
70
+ "X-Fern-SDK-Version": "v6.3.0",
71
71
  "X-Fern-Runtime": core.RUNTIME.type,
72
72
  "X-Fern-Runtime-Version": core.RUNTIME.version,
73
73
  },
@@ -127,7 +127,7 @@ class Audiences {
127
127
  Authorization: yield this._getAuthorizationHeader(),
128
128
  "X-Fern-Language": "JavaScript",
129
129
  "X-Fern-SDK-Name": "@trycourier/courier",
130
- "X-Fern-SDK-Version": "v6.2.3",
130
+ "X-Fern-SDK-Version": "v6.3.0",
131
131
  "X-Fern-Runtime": core.RUNTIME.type,
132
132
  "X-Fern-Runtime-Version": core.RUNTIME.version,
133
133
  },
@@ -179,7 +179,7 @@ class Audiences {
179
179
  Authorization: yield this._getAuthorizationHeader(),
180
180
  "X-Fern-Language": "JavaScript",
181
181
  "X-Fern-SDK-Name": "@trycourier/courier",
182
- "X-Fern-SDK-Version": "v6.2.3",
182
+ "X-Fern-SDK-Version": "v6.3.0",
183
183
  "X-Fern-Runtime": core.RUNTIME.type,
184
184
  "X-Fern-Runtime-Version": core.RUNTIME.version,
185
185
  },
@@ -240,7 +240,7 @@ class Audiences {
240
240
  Authorization: yield this._getAuthorizationHeader(),
241
241
  "X-Fern-Language": "JavaScript",
242
242
  "X-Fern-SDK-Name": "@trycourier/courier",
243
- "X-Fern-SDK-Version": "v6.2.3",
243
+ "X-Fern-SDK-Version": "v6.3.0",
244
244
  "X-Fern-Runtime": core.RUNTIME.type,
245
245
  "X-Fern-Runtime-Version": core.RUNTIME.version,
246
246
  },
@@ -306,7 +306,7 @@ class Audiences {
306
306
  Authorization: yield this._getAuthorizationHeader(),
307
307
  "X-Fern-Language": "JavaScript",
308
308
  "X-Fern-SDK-Name": "@trycourier/courier",
309
- "X-Fern-SDK-Version": "v6.2.3",
309
+ "X-Fern-SDK-Version": "v6.3.0",
310
310
  "X-Fern-Runtime": core.RUNTIME.type,
311
311
  "X-Fern-Runtime-Version": core.RUNTIME.version,
312
312
  },
@@ -73,7 +73,7 @@ class AuditEvents {
73
73
  Authorization: yield this._getAuthorizationHeader(),
74
74
  "X-Fern-Language": "JavaScript",
75
75
  "X-Fern-SDK-Name": "@trycourier/courier",
76
- "X-Fern-SDK-Version": "v6.2.3",
76
+ "X-Fern-SDK-Version": "v6.3.0",
77
77
  "X-Fern-Runtime": core.RUNTIME.type,
78
78
  "X-Fern-Runtime-Version": core.RUNTIME.version,
79
79
  },
@@ -125,7 +125,7 @@ class AuditEvents {
125
125
  Authorization: yield this._getAuthorizationHeader(),
126
126
  "X-Fern-Language": "JavaScript",
127
127
  "X-Fern-SDK-Name": "@trycourier/courier",
128
- "X-Fern-SDK-Version": "v6.2.3",
128
+ "X-Fern-SDK-Version": "v6.3.0",
129
129
  "X-Fern-Runtime": core.RUNTIME.type,
130
130
  "X-Fern-Runtime-Version": core.RUNTIME.version,
131
131
  },
@@ -69,7 +69,7 @@ class AuthTokens {
69
69
  Authorization: yield this._getAuthorizationHeader(),
70
70
  "X-Fern-Language": "JavaScript",
71
71
  "X-Fern-SDK-Name": "@trycourier/courier",
72
- "X-Fern-SDK-Version": "v6.2.3",
72
+ "X-Fern-SDK-Version": "v6.3.0",
73
73
  "X-Fern-Runtime": core.RUNTIME.type,
74
74
  "X-Fern-Runtime-Version": core.RUNTIME.version,
75
75
  "Idempotency-Key": (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey) != null ? requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey : undefined,
@@ -79,7 +79,7 @@ class Automations {
79
79
  Authorization: yield this._getAuthorizationHeader(),
80
80
  "X-Fern-Language": "JavaScript",
81
81
  "X-Fern-SDK-Name": "@trycourier/courier",
82
- "X-Fern-SDK-Version": "v6.2.3",
82
+ "X-Fern-SDK-Version": "v6.3.0",
83
83
  "X-Fern-Runtime": core.RUNTIME.type,
84
84
  "X-Fern-Runtime-Version": core.RUNTIME.version,
85
85
  "Idempotency-Key": (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey) != null ? requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey : undefined,
@@ -151,7 +151,7 @@ class Automations {
151
151
  Authorization: yield this._getAuthorizationHeader(),
152
152
  "X-Fern-Language": "JavaScript",
153
153
  "X-Fern-SDK-Name": "@trycourier/courier",
154
- "X-Fern-SDK-Version": "v6.2.3",
154
+ "X-Fern-SDK-Version": "v6.3.0",
155
155
  "X-Fern-Runtime": core.RUNTIME.type,
156
156
  "X-Fern-Runtime-Version": core.RUNTIME.version,
157
157
  "Idempotency-Key": (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey) != null ? requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey : undefined,
@@ -97,7 +97,7 @@ class Brands {
97
97
  Authorization: yield this._getAuthorizationHeader(),
98
98
  "X-Fern-Language": "JavaScript",
99
99
  "X-Fern-SDK-Name": "@trycourier/courier",
100
- "X-Fern-SDK-Version": "v6.2.3",
100
+ "X-Fern-SDK-Version": "v6.3.0",
101
101
  "X-Fern-Runtime": core.RUNTIME.type,
102
102
  "X-Fern-Runtime-Version": core.RUNTIME.version,
103
103
  "Idempotency-Key": (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey) != null ? requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey : undefined,
@@ -160,7 +160,7 @@ class Brands {
160
160
  Authorization: yield this._getAuthorizationHeader(),
161
161
  "X-Fern-Language": "JavaScript",
162
162
  "X-Fern-SDK-Name": "@trycourier/courier",
163
- "X-Fern-SDK-Version": "v6.2.3",
163
+ "X-Fern-SDK-Version": "v6.3.0",
164
164
  "X-Fern-Runtime": core.RUNTIME.type,
165
165
  "X-Fern-Runtime-Version": core.RUNTIME.version,
166
166
  },
@@ -218,7 +218,7 @@ class Brands {
218
218
  Authorization: yield this._getAuthorizationHeader(),
219
219
  "X-Fern-Language": "JavaScript",
220
220
  "X-Fern-SDK-Name": "@trycourier/courier",
221
- "X-Fern-SDK-Version": "v6.2.3",
221
+ "X-Fern-SDK-Version": "v6.3.0",
222
222
  "X-Fern-Runtime": core.RUNTIME.type,
223
223
  "X-Fern-Runtime-Version": core.RUNTIME.version,
224
224
  },
@@ -272,7 +272,7 @@ class Brands {
272
272
  Authorization: yield this._getAuthorizationHeader(),
273
273
  "X-Fern-Language": "JavaScript",
274
274
  "X-Fern-SDK-Name": "@trycourier/courier",
275
- "X-Fern-SDK-Version": "v6.2.3",
275
+ "X-Fern-SDK-Version": "v6.3.0",
276
276
  "X-Fern-Runtime": core.RUNTIME.type,
277
277
  "X-Fern-Runtime-Version": core.RUNTIME.version,
278
278
  },
@@ -356,7 +356,7 @@ class Brands {
356
356
  Authorization: yield this._getAuthorizationHeader(),
357
357
  "X-Fern-Language": "JavaScript",
358
358
  "X-Fern-SDK-Name": "@trycourier/courier",
359
- "X-Fern-SDK-Version": "v6.2.3",
359
+ "X-Fern-SDK-Version": "v6.3.0",
360
360
  "X-Fern-Runtime": core.RUNTIME.type,
361
361
  "X-Fern-Runtime-Version": core.RUNTIME.version,
362
362
  },
@@ -94,7 +94,8 @@ export declare class Bulk {
94
94
  * criteria: Courier.Criteria.NoEscalation
95
95
  * },
96
96
  * delay: {
97
- * duration: 1
97
+ * duration: 1,
98
+ * until: "string"
98
99
  * },
99
100
  * expiry: {
100
101
  * expires_at: "string",
@@ -120,7 +120,8 @@ class Bulk {
120
120
  * criteria: Courier.Criteria.NoEscalation
121
121
  * },
122
122
  * delay: {
123
- * duration: 1
123
+ * duration: 1,
124
+ * until: "string"
124
125
  * },
125
126
  * expiry: {
126
127
  * expires_at: "string",
@@ -155,7 +156,7 @@ class Bulk {
155
156
  Authorization: yield this._getAuthorizationHeader(),
156
157
  "X-Fern-Language": "JavaScript",
157
158
  "X-Fern-SDK-Name": "@trycourier/courier",
158
- "X-Fern-SDK-Version": "v6.2.3",
159
+ "X-Fern-SDK-Version": "v6.3.0",
159
160
  "X-Fern-Runtime": core.RUNTIME.type,
160
161
  "X-Fern-Runtime-Version": core.RUNTIME.version,
161
162
  "Idempotency-Key": (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey) != null ? requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey : undefined,
@@ -246,7 +247,7 @@ class Bulk {
246
247
  Authorization: yield this._getAuthorizationHeader(),
247
248
  "X-Fern-Language": "JavaScript",
248
249
  "X-Fern-SDK-Name": "@trycourier/courier",
249
- "X-Fern-SDK-Version": "v6.2.3",
250
+ "X-Fern-SDK-Version": "v6.3.0",
250
251
  "X-Fern-Runtime": core.RUNTIME.type,
251
252
  "X-Fern-Runtime-Version": core.RUNTIME.version,
252
253
  "Idempotency-Key": (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey) != null ? requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey : undefined,
@@ -302,7 +303,7 @@ class Bulk {
302
303
  Authorization: yield this._getAuthorizationHeader(),
303
304
  "X-Fern-Language": "JavaScript",
304
305
  "X-Fern-SDK-Name": "@trycourier/courier",
305
- "X-Fern-SDK-Version": "v6.2.3",
306
+ "X-Fern-SDK-Version": "v6.3.0",
306
307
  "X-Fern-Runtime": core.RUNTIME.type,
307
308
  "X-Fern-Runtime-Version": core.RUNTIME.version,
308
309
  "Idempotency-Key": (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey) != null ? requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey : undefined,
@@ -362,7 +363,7 @@ class Bulk {
362
363
  Authorization: yield this._getAuthorizationHeader(),
363
364
  "X-Fern-Language": "JavaScript",
364
365
  "X-Fern-SDK-Name": "@trycourier/courier",
365
- "X-Fern-SDK-Version": "v6.2.3",
366
+ "X-Fern-SDK-Version": "v6.3.0",
366
367
  "X-Fern-Runtime": core.RUNTIME.type,
367
368
  "X-Fern-Runtime-Version": core.RUNTIME.version,
368
369
  },
@@ -420,7 +421,7 @@ class Bulk {
420
421
  Authorization: yield this._getAuthorizationHeader(),
421
422
  "X-Fern-Language": "JavaScript",
422
423
  "X-Fern-SDK-Name": "@trycourier/courier",
423
- "X-Fern-SDK-Version": "v6.2.3",
424
+ "X-Fern-SDK-Version": "v6.3.0",
424
425
  "X-Fern-Runtime": core.RUNTIME.type,
425
426
  "X-Fern-Runtime-Version": core.RUNTIME.version,
426
427
  },
@@ -69,7 +69,8 @@ import * as Courier from "../../../../index";
69
69
  * criteria: Courier.Criteria.NoEscalation
70
70
  * },
71
71
  * delay: {
72
- * duration: 1
72
+ * duration: 1,
73
+ * until: "string"
73
74
  * },
74
75
  * expiry: {
75
76
  * expires_at: "string",
@@ -78,7 +78,7 @@ class Inbound {
78
78
  Authorization: yield this._getAuthorizationHeader(),
79
79
  "X-Fern-Language": "JavaScript",
80
80
  "X-Fern-SDK-Name": "@trycourier/courier",
81
- "X-Fern-SDK-Version": "v6.2.3",
81
+ "X-Fern-SDK-Version": "v6.3.0",
82
82
  "X-Fern-Runtime": core.RUNTIME.type,
83
83
  "X-Fern-Runtime-Version": core.RUNTIME.version,
84
84
  },
@@ -80,7 +80,7 @@ class Lists {
80
80
  Authorization: yield this._getAuthorizationHeader(),
81
81
  "X-Fern-Language": "JavaScript",
82
82
  "X-Fern-SDK-Name": "@trycourier/courier",
83
- "X-Fern-SDK-Version": "v6.2.3",
83
+ "X-Fern-SDK-Version": "v6.3.0",
84
84
  "X-Fern-Runtime": core.RUNTIME.type,
85
85
  "X-Fern-Runtime-Version": core.RUNTIME.version,
86
86
  },
@@ -139,7 +139,7 @@ class Lists {
139
139
  Authorization: yield this._getAuthorizationHeader(),
140
140
  "X-Fern-Language": "JavaScript",
141
141
  "X-Fern-SDK-Name": "@trycourier/courier",
142
- "X-Fern-SDK-Version": "v6.2.3",
142
+ "X-Fern-SDK-Version": "v6.3.0",
143
143
  "X-Fern-Runtime": core.RUNTIME.type,
144
144
  "X-Fern-Runtime-Version": core.RUNTIME.version,
145
145
  },
@@ -202,7 +202,7 @@ class Lists {
202
202
  Authorization: yield this._getAuthorizationHeader(),
203
203
  "X-Fern-Language": "JavaScript",
204
204
  "X-Fern-SDK-Name": "@trycourier/courier",
205
- "X-Fern-SDK-Version": "v6.2.3",
205
+ "X-Fern-SDK-Version": "v6.3.0",
206
206
  "X-Fern-Runtime": core.RUNTIME.type,
207
207
  "X-Fern-Runtime-Version": core.RUNTIME.version,
208
208
  },
@@ -254,7 +254,7 @@ class Lists {
254
254
  Authorization: yield this._getAuthorizationHeader(),
255
255
  "X-Fern-Language": "JavaScript",
256
256
  "X-Fern-SDK-Name": "@trycourier/courier",
257
- "X-Fern-SDK-Version": "v6.2.3",
257
+ "X-Fern-SDK-Version": "v6.3.0",
258
258
  "X-Fern-Runtime": core.RUNTIME.type,
259
259
  "X-Fern-Runtime-Version": core.RUNTIME.version,
260
260
  },
@@ -305,7 +305,7 @@ class Lists {
305
305
  Authorization: yield this._getAuthorizationHeader(),
306
306
  "X-Fern-Language": "JavaScript",
307
307
  "X-Fern-SDK-Name": "@trycourier/courier",
308
- "X-Fern-SDK-Version": "v6.2.3",
308
+ "X-Fern-SDK-Version": "v6.3.0",
309
309
  "X-Fern-Runtime": core.RUNTIME.type,
310
310
  "X-Fern-Runtime-Version": core.RUNTIME.version,
311
311
  },
@@ -366,7 +366,7 @@ class Lists {
366
366
  Authorization: yield this._getAuthorizationHeader(),
367
367
  "X-Fern-Language": "JavaScript",
368
368
  "X-Fern-SDK-Name": "@trycourier/courier",
369
- "X-Fern-SDK-Version": "v6.2.3",
369
+ "X-Fern-SDK-Version": "v6.3.0",
370
370
  "X-Fern-Runtime": core.RUNTIME.type,
371
371
  "X-Fern-Runtime-Version": core.RUNTIME.version,
372
372
  },
@@ -434,7 +434,7 @@ class Lists {
434
434
  Authorization: yield this._getAuthorizationHeader(),
435
435
  "X-Fern-Language": "JavaScript",
436
436
  "X-Fern-SDK-Name": "@trycourier/courier",
437
- "X-Fern-SDK-Version": "v6.2.3",
437
+ "X-Fern-SDK-Version": "v6.3.0",
438
438
  "X-Fern-Runtime": core.RUNTIME.type,
439
439
  "X-Fern-Runtime-Version": core.RUNTIME.version,
440
440
  },
@@ -502,7 +502,7 @@ class Lists {
502
502
  Authorization: yield this._getAuthorizationHeader(),
503
503
  "X-Fern-Language": "JavaScript",
504
504
  "X-Fern-SDK-Name": "@trycourier/courier",
505
- "X-Fern-SDK-Version": "v6.2.3",
505
+ "X-Fern-SDK-Version": "v6.3.0",
506
506
  "X-Fern-Runtime": core.RUNTIME.type,
507
507
  "X-Fern-Runtime-Version": core.RUNTIME.version,
508
508
  "Idempotency-Key": (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey) != null ? requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.idempotencyKey : undefined,
@@ -568,7 +568,7 @@ class Lists {
568
568
  Authorization: yield this._getAuthorizationHeader(),
569
569
  "X-Fern-Language": "JavaScript",
570
570
  "X-Fern-SDK-Name": "@trycourier/courier",
571
- "X-Fern-SDK-Version": "v6.2.3",
571
+ "X-Fern-SDK-Version": "v6.3.0",
572
572
  "X-Fern-Runtime": core.RUNTIME.type,
573
573
  "X-Fern-Runtime-Version": core.RUNTIME.version,
574
574
  },
@@ -623,7 +623,7 @@ class Lists {
623
623
  Authorization: yield this._getAuthorizationHeader(),
624
624
  "X-Fern-Language": "JavaScript",
625
625
  "X-Fern-SDK-Name": "@trycourier/courier",
626
- "X-Fern-SDK-Version": "v6.2.3",
626
+ "X-Fern-SDK-Version": "v6.3.0",
627
627
  "X-Fern-Runtime": core.RUNTIME.type,
628
628
  "X-Fern-Runtime-Version": core.RUNTIME.version,
629
629
  },