We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfc63dc commit c16e5dbCopy full SHA for c16e5db
lib/types.ts
@@ -2417,9 +2417,16 @@ type AudienceObject = {
2417
audienceGroupId: number;
2418
};
2419
2420
+type RedeliveryObject = {
2421
+ type: "redelivery";
2422
+ requestId: string;
2423
+};
2424
+
2425
export type ReceieptObject =
2426
| AudienceObject
- | FilterOperatorObject<AudienceObject>;
2427
+ | RedeliveryObject
2428
+ | FilterOperatorObject<AudienceObject>
2429
+ | FilterOperatorObject<RedeliveryObject>;
2430
2431
type DemographicAge =
2432
| "age_15"
0 commit comments