-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaudiences.ts
More file actions
569 lines (501 loc) · 13.9 KB
/
audiences.ts
File metadata and controls
569 lines (501 loc) · 13.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../core/resource';
import * as AudiencesAPI from './audiences';
import { APIPromise } from '../core/api-promise';
import { EntriesCursor, type EntriesCursorParams, PagePromise } from '../core/pagination';
import { RequestOptions } from '../internal/request-options';
import { path } from '../internal/utils/path';
/**
* Audiences define sets of users that can be targeted for notifications.
*/
export class Audiences extends APIResource {
/**
* Retrieve an audience by its key in a given environment.
*
* @example
* ```ts
* const audience = await client.audiences.retrieve(
* 'audience_key',
* { environment: 'development' },
* );
* ```
*/
retrieve(
audienceKey: string,
query: AudienceRetrieveParams,
options?: RequestOptions,
): APIPromise<Audience> {
return this._client.get(path`/v1/audiences/${audienceKey}`, { query, ...options });
}
/**
* Returns a paginated list of audiences for the given environment.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const audience of client.audiences.list({
* environment: 'development',
* })) {
* // ...
* }
* ```
*/
list(query: AudienceListParams, options?: RequestOptions): PagePromise<AudiencesEntriesCursor, Audience> {
return this._client.getAPIList('/v1/audiences', EntriesCursor<Audience>, { query, ...options });
}
/**
* Archives a given audience across all environments.
*
* @example
* ```ts
* const response = await client.audiences.archive(
* 'audience_key',
* { environment: 'development' },
* );
* ```
*/
archive(
audienceKey: string,
params: AudienceArchiveParams,
options?: RequestOptions,
): APIPromise<AudienceArchiveResponse> {
const { environment } = params;
return this._client.delete(path`/v1/audiences/${audienceKey}`, { query: { environment }, ...options });
}
/**
* Updates an audience of a given key, or creates a new one if it does not yet
* exist.
*
* @example
* ```ts
* const response = await client.audiences.upsert(
* 'audience_key',
* {
* environment: 'development',
* audience: { name: 'Premium users', type: 'dynamic' },
* },
* );
* ```
*/
upsert(
audienceKey: string,
params: AudienceUpsertParams,
options?: RequestOptions,
): APIPromise<AudienceUpsertResponse> {
const { environment, annotate, branch, commit, commit_message, force, ...body } = params;
return this._client.put(path`/v1/audiences/${audienceKey}`, {
query: { environment, annotate, branch, commit, commit_message, force },
body,
...options,
});
}
/**
* Validates an audience payload without persisting it.
*
* @example
* ```ts
* const response = await client.audiences.validate(
* 'audience_key',
* {
* environment: 'development',
* audience: { name: 'Premium users', type: 'dynamic' },
* },
* );
* ```
*/
validate(
audienceKey: string,
params: AudienceValidateParams,
options?: RequestOptions,
): APIPromise<AudienceValidateResponse> {
const { environment, branch, ...body } = params;
return this._client.put(path`/v1/audiences/${audienceKey}/validate`, {
query: { environment, branch },
body,
...options,
});
}
}
export type AudiencesEntriesCursor = EntriesCursor<Audience>;
/**
* An audience defines a set of users that can be targeted for notifications. Can
* be either a `StaticAudience` (members explicitly added/removed) or a
* `DynamicAudience` (members determined by segment conditions).
*/
export type Audience = StaticAudience | DynamicAudience;
/**
* A condition to evaluate for audience membership.
*/
export interface AudienceCondition {
/**
* The operator to use when evaluating the condition.
*/
operator:
| 'equal_to'
| 'not_equal_to'
| 'greater_than'
| 'less_than'
| 'greater_than_or_equal_to'
| 'less_than_or_equal_to'
| 'contains'
| 'not_contains'
| 'contains_all'
| 'not_contains_all'
| 'is_timestamp_before'
| 'is_timestamp_on_or_after'
| 'is_timestamp_between'
| 'is_between'
| 'empty'
| 'not_empty'
| 'exists'
| 'not_exists'
| 'is_timestamp'
| 'is_audience_member'
| 'is_not_audience_member';
/**
* The property to be evaluated. Properties are dynamic values using path
* expressions like `recipient.plan` or `recipient.created_at`.
*/
property: string;
/**
* The argument to compare against. Can be a static value (string, number, boolean)
* or a dynamic path expression.
*/
argument?: string | null;
}
/**
* A dynamic audience where membership is determined by segment conditions
* evaluated at runtime.
*/
export interface DynamicAudience {
/**
* The timestamp of when the audience was created.
*/
created_at: string;
/**
* The slug of the environment in which the audience exists.
*/
environment: string;
/**
* The unique key of the audience.
*/
key: string;
/**
* The name of the audience.
*/
name: string;
/**
* A list of segments that define the dynamic audience membership criteria. Each
* segment contains one or more conditions joined by AND. Multiple segments are
* joined by OR.
*/
segments: Array<DynamicAudience.Segment>;
/**
* The type of audience. Always `dynamic` for dynamic audiences.
*/
type: 'dynamic';
/**
* The timestamp of when the audience was last updated.
*/
updated_at: string;
/**
* A description of the audience.
*/
description?: string | null;
/**
* The SHA hash of the audience data.
*/
sha?: string | null;
}
export namespace DynamicAudience {
export interface Segment {
/**
* A list of conditions within this segment, joined by AND.
*/
conditions: Array<AudiencesAPI.AudienceCondition>;
}
}
/**
* A static audience where members are explicitly added or removed via the API.
*/
export interface StaticAudience {
/**
* The timestamp of when the audience was created.
*/
created_at: string;
/**
* The slug of the environment in which the audience exists.
*/
environment: string;
/**
* The unique key of the audience.
*/
key: string;
/**
* The name of the audience.
*/
name: string;
/**
* The type of audience. Always `static` for static audiences.
*/
type: 'static';
/**
* The timestamp of when the audience was last updated.
*/
updated_at: string;
/**
* A description of the audience.
*/
description?: string | null;
/**
* The SHA hash of the audience data.
*/
sha?: string | null;
}
/**
* The response from archiving an audience.
*/
export interface AudienceArchiveResponse {
/**
* The result of the archive operation.
*/
result: string;
}
/**
* Wraps the Audience response under the `audience` key.
*/
export interface AudienceUpsertResponse {
/**
* An audience defines a set of users that can be targeted for notifications. Can
* be either a `StaticAudience` (members explicitly added/removed) or a
* `DynamicAudience` (members determined by segment conditions).
*/
audience: Audience;
}
/**
* Wraps the Audience response under the `audience` key.
*/
export interface AudienceValidateResponse {
/**
* An audience defines a set of users that can be targeted for notifications. Can
* be either a `StaticAudience` (members explicitly added/removed) or a
* `DynamicAudience` (members determined by segment conditions).
*/
audience: Audience;
}
export interface AudienceRetrieveParams {
/**
* The environment slug.
*/
environment: string;
/**
* Whether to annotate the resource. Only used in the Knock CLI.
*/
annotate?: boolean;
/**
* The slug of a branch to use. This option can only be used when `environment` is
* `"development"`.
*/
branch?: string;
/**
* Whether to hide uncommitted changes. When true, only committed changes will be
* returned. When false, both committed and uncommitted changes will be returned.
*/
hide_uncommitted_changes?: boolean;
}
export interface AudienceListParams extends EntriesCursorParams {
/**
* The environment slug.
*/
environment: string;
/**
* Whether to annotate the resource. Only used in the Knock CLI.
*/
annotate?: boolean;
/**
* The slug of a branch to use. This option can only be used when `environment` is
* `"development"`.
*/
branch?: string;
/**
* Whether to hide uncommitted changes. When true, only committed changes will be
* returned. When false, both committed and uncommitted changes will be returned.
*/
hide_uncommitted_changes?: boolean;
}
export interface AudienceArchiveParams {
/**
* The environment slug.
*/
environment: string;
}
export interface AudienceUpsertParams {
/**
* Query param: The environment slug.
*/
environment: string;
/**
* Body param: An audience object with attributes to create or update an audience.
* Use `type: static` for audiences with explicitly managed members, or
* `type: dynamic` for audiences with segment-based membership.
*/
audience: AudienceUpsertParams.StaticAudienceRequest | AudienceUpsertParams.DynamicAudienceRequest;
/**
* Query param: Whether to annotate the resource. Only used in the Knock CLI.
*/
annotate?: boolean;
/**
* Query param: The slug of a branch to use. This option can only be used when
* `environment` is `"development"`.
*/
branch?: string;
/**
* Query param: Whether to commit the resource at the same time as modifying it.
*/
commit?: boolean;
/**
* Query param: The message to commit the resource with, only used if `commit` is
* `true`.
*/
commit_message?: string;
/**
* Query param: When set to true, forces the upsert to override existing content
* regardless of environment restrictions. This bypasses the development-only
* environment check and origin environment checks.
*/
force?: boolean;
}
export namespace AudienceUpsertParams {
/**
* Request body for creating/updating a static audience.
*/
export interface StaticAudienceRequest {
/**
* The name of the audience.
*/
name: string;
/**
* The type of audience. Set to `static` for static audiences.
*/
type: 'static';
/**
* A description of the audience.
*/
description?: string | null;
}
/**
* Request body for creating/updating a dynamic audience.
*/
export interface DynamicAudienceRequest {
/**
* The name of the audience.
*/
name: string;
/**
* The type of audience. Set to `dynamic` for dynamic audiences.
*/
type: 'dynamic';
/**
* A description of the audience.
*/
description?: string | null;
/**
* A list of segments that define the dynamic audience membership criteria. Each
* segment contains one or more conditions joined by AND. Multiple segments are
* joined by OR.
*/
segments?: Array<DynamicAudienceRequest.Segment>;
}
export namespace DynamicAudienceRequest {
export interface Segment {
/**
* A list of conditions within this segment, joined by AND.
*/
conditions: Array<AudiencesAPI.AudienceCondition>;
}
}
}
export interface AudienceValidateParams {
/**
* Query param: The environment slug.
*/
environment: string;
/**
* Body param: An audience object with attributes to create or update an audience.
* Use `type: static` for audiences with explicitly managed members, or
* `type: dynamic` for audiences with segment-based membership.
*/
audience: AudienceValidateParams.StaticAudienceRequest | AudienceValidateParams.DynamicAudienceRequest;
/**
* Query param: The slug of a branch to use. This option can only be used when
* `environment` is `"development"`.
*/
branch?: string;
}
export namespace AudienceValidateParams {
/**
* Request body for creating/updating a static audience.
*/
export interface StaticAudienceRequest {
/**
* The name of the audience.
*/
name: string;
/**
* The type of audience. Set to `static` for static audiences.
*/
type: 'static';
/**
* A description of the audience.
*/
description?: string | null;
}
/**
* Request body for creating/updating a dynamic audience.
*/
export interface DynamicAudienceRequest {
/**
* The name of the audience.
*/
name: string;
/**
* The type of audience. Set to `dynamic` for dynamic audiences.
*/
type: 'dynamic';
/**
* A description of the audience.
*/
description?: string | null;
/**
* A list of segments that define the dynamic audience membership criteria. Each
* segment contains one or more conditions joined by AND. Multiple segments are
* joined by OR.
*/
segments?: Array<DynamicAudienceRequest.Segment>;
}
export namespace DynamicAudienceRequest {
export interface Segment {
/**
* A list of conditions within this segment, joined by AND.
*/
conditions: Array<AudiencesAPI.AudienceCondition>;
}
}
}
export declare namespace Audiences {
export {
type Audience as Audience,
type AudienceCondition as AudienceCondition,
type DynamicAudience as DynamicAudience,
type StaticAudience as StaticAudience,
type AudienceArchiveResponse as AudienceArchiveResponse,
type AudienceUpsertResponse as AudienceUpsertResponse,
type AudienceValidateResponse as AudienceValidateResponse,
type AudiencesEntriesCursor as AudiencesEntriesCursor,
type AudienceRetrieveParams as AudienceRetrieveParams,
type AudienceListParams as AudienceListParams,
type AudienceArchiveParams as AudienceArchiveParams,
type AudienceUpsertParams as AudienceUpsertParams,
type AudienceValidateParams as AudienceValidateParams,
};
}