@novu/api 0.0.1-alpha.68 → 0.0.1-alpha.74

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 (82) hide show
  1. package/README.md +2 -2
  2. package/docs/sdks/messages/README.md +1 -1
  3. package/docs/sdks/novunotifications/README.md +5 -5
  4. package/funcs/messagesDeleteByTransactionId.d.ts +1 -1
  5. package/funcs/messagesDeleteByTransactionId.d.ts.map +1 -1
  6. package/funcs/messagesDeleteByTransactionId.js.map +1 -1
  7. package/funcs/{subscribersNotificationsRetrieve.d.ts → subscribersNotificationsFeed.d.ts} +2 -2
  8. package/funcs/subscribersNotificationsFeed.d.ts.map +1 -0
  9. package/funcs/{subscribersNotificationsRetrieve.js → subscribersNotificationsFeed.js} +4 -4
  10. package/funcs/subscribersNotificationsFeed.js.map +1 -0
  11. package/lib/config.d.ts +2 -2
  12. package/lib/config.js +2 -2
  13. package/models/components/actor.d.ts +62 -0
  14. package/models/components/actor.d.ts.map +1 -0
  15. package/models/components/actor.js +86 -0
  16. package/models/components/actor.js.map +1 -0
  17. package/models/components/actortypeenum.d.ts +40 -0
  18. package/models/components/actortypeenum.d.ts.map +1 -0
  19. package/models/components/actortypeenum.js +55 -0
  20. package/models/components/actortypeenum.js.map +1 -0
  21. package/models/components/channeltypeenum.d.ts +37 -0
  22. package/models/components/channeltypeenum.d.ts.map +1 -0
  23. package/models/components/channeltypeenum.js +53 -0
  24. package/models/components/channeltypeenum.js.map +1 -0
  25. package/models/components/feedresponsedto.d.ts +20 -4
  26. package/models/components/feedresponsedto.d.ts.map +1 -1
  27. package/models/components/feedresponsedto.js +5 -4
  28. package/models/components/feedresponsedto.js.map +1 -1
  29. package/models/components/index.d.ts +4 -0
  30. package/models/components/index.d.ts.map +1 -1
  31. package/models/components/index.js +4 -0
  32. package/models/components/index.js.map +1 -1
  33. package/models/components/markmessageactionasseendto.d.ts +15 -15
  34. package/models/components/markmessageactionasseendto.d.ts.map +1 -1
  35. package/models/components/markmessageactionasseendto.js +20 -18
  36. package/models/components/markmessageactionasseendto.js.map +1 -1
  37. package/models/components/messageactionresult.d.ts +15 -15
  38. package/models/components/messageactionresult.d.ts.map +1 -1
  39. package/models/components/messageactionresult.js +18 -18
  40. package/models/components/messageactionresult.js.map +1 -1
  41. package/models/components/notificationdto.d.ts +248 -0
  42. package/models/components/notificationdto.d.ts.map +1 -0
  43. package/models/components/notificationdto.js +187 -0
  44. package/models/components/notificationdto.js.map +1 -0
  45. package/models/components/triggereventrequestdto.d.ts +13 -13
  46. package/models/components/triggereventrequestdto.d.ts.map +1 -1
  47. package/models/components/triggereventrequestdto.js +16 -17
  48. package/models/components/triggereventrequestdto.js.map +1 -1
  49. package/models/operations/messagescontrollerdeletemessagesbytransactionid.d.ts +8 -8
  50. package/models/operations/messagescontrollerdeletemessagesbytransactionid.d.ts.map +1 -1
  51. package/models/operations/messagescontrollerdeletemessagesbytransactionid.js +14 -13
  52. package/models/operations/messagescontrollerdeletemessagesbytransactionid.js.map +1 -1
  53. package/models/operations/messagescontrollergetmessages.d.ts +1 -36
  54. package/models/operations/messagescontrollergetmessages.d.ts.map +1 -1
  55. package/models/operations/messagescontrollergetmessages.js +3 -26
  56. package/models/operations/messagescontrollergetmessages.js.map +1 -1
  57. package/package.json +1 -1
  58. package/sdk/messages.d.ts +1 -1
  59. package/sdk/messages.d.ts.map +1 -1
  60. package/sdk/messages.js.map +1 -1
  61. package/sdk/novunotifications.d.ts +1 -1
  62. package/sdk/novunotifications.d.ts.map +1 -1
  63. package/sdk/novunotifications.js +3 -3
  64. package/sdk/novunotifications.js.map +1 -1
  65. package/src/funcs/messagesDeleteByTransactionId.ts +1 -1
  66. package/src/funcs/{subscribersNotificationsRetrieve.ts → subscribersNotificationsFeed.ts} +1 -1
  67. package/src/lib/config.ts +2 -2
  68. package/src/models/components/actor.ts +123 -0
  69. package/src/models/components/actortypeenum.ts +41 -0
  70. package/src/models/components/channeltypeenum.ts +36 -0
  71. package/src/models/components/feedresponsedto.ts +29 -8
  72. package/src/models/components/index.ts +4 -0
  73. package/src/models/components/markmessageactionasseendto.ts +36 -24
  74. package/src/models/components/messageactionresult.ts +24 -31
  75. package/src/models/components/notificationdto.ts +367 -0
  76. package/src/models/components/triggereventrequestdto.ts +31 -20
  77. package/src/models/operations/messagescontrollerdeletemessagesbytransactionid.ts +14 -16
  78. package/src/models/operations/messagescontrollergetmessages.ts +3 -32
  79. package/src/sdk/messages.ts +1 -1
  80. package/src/sdk/novunotifications.ts +3 -3
  81. package/funcs/subscribersNotificationsRetrieve.d.ts.map +0 -1
  82. package/funcs/subscribersNotificationsRetrieve.js.map +0 -1
@@ -40,7 +40,7 @@ export type To = TopicPayloadDto | SubscriberPayloadDto | string;
40
40
  *
41
41
  * If a new actor object is provided, we will create a new subscriber in our system
42
42
  */
43
- export type Actor = SubscriberPayloadDto | string;
43
+ export type TriggerEventRequestDtoActor = SubscriberPayloadDto | string;
44
44
 
45
45
  /**
46
46
  * It is used to specify a tenant context during trigger event.
@@ -149,43 +149,54 @@ export function toFromJSON(
149
149
  }
150
150
 
151
151
  /** @internal */
152
- export const Actor$inboundSchema: z.ZodType<Actor, z.ZodTypeDef, unknown> = z
153
- .union([SubscriberPayloadDto$inboundSchema, z.string()]);
152
+ export const TriggerEventRequestDtoActor$inboundSchema: z.ZodType<
153
+ TriggerEventRequestDtoActor,
154
+ z.ZodTypeDef,
155
+ unknown
156
+ > = z.union([SubscriberPayloadDto$inboundSchema, z.string()]);
154
157
 
155
158
  /** @internal */
156
- export type Actor$Outbound = SubscriberPayloadDto$Outbound | string;
159
+ export type TriggerEventRequestDtoActor$Outbound =
160
+ | SubscriberPayloadDto$Outbound
161
+ | string;
157
162
 
158
163
  /** @internal */
159
- export const Actor$outboundSchema: z.ZodType<
160
- Actor$Outbound,
164
+ export const TriggerEventRequestDtoActor$outboundSchema: z.ZodType<
165
+ TriggerEventRequestDtoActor$Outbound,
161
166
  z.ZodTypeDef,
162
- Actor
167
+ TriggerEventRequestDtoActor
163
168
  > = z.union([SubscriberPayloadDto$outboundSchema, z.string()]);
164
169
 
165
170
  /**
166
171
  * @internal
167
172
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
168
173
  */
169
- export namespace Actor$ {
170
- /** @deprecated use `Actor$inboundSchema` instead. */
171
- export const inboundSchema = Actor$inboundSchema;
172
- /** @deprecated use `Actor$outboundSchema` instead. */
173
- export const outboundSchema = Actor$outboundSchema;
174
- /** @deprecated use `Actor$Outbound` instead. */
175
- export type Outbound = Actor$Outbound;
174
+ export namespace TriggerEventRequestDtoActor$ {
175
+ /** @deprecated use `TriggerEventRequestDtoActor$inboundSchema` instead. */
176
+ export const inboundSchema = TriggerEventRequestDtoActor$inboundSchema;
177
+ /** @deprecated use `TriggerEventRequestDtoActor$outboundSchema` instead. */
178
+ export const outboundSchema = TriggerEventRequestDtoActor$outboundSchema;
179
+ /** @deprecated use `TriggerEventRequestDtoActor$Outbound` instead. */
180
+ export type Outbound = TriggerEventRequestDtoActor$Outbound;
176
181
  }
177
182
 
178
- export function actorToJSON(actor: Actor): string {
179
- return JSON.stringify(Actor$outboundSchema.parse(actor));
183
+ export function triggerEventRequestDtoActorToJSON(
184
+ triggerEventRequestDtoActor: TriggerEventRequestDtoActor,
185
+ ): string {
186
+ return JSON.stringify(
187
+ TriggerEventRequestDtoActor$outboundSchema.parse(
188
+ triggerEventRequestDtoActor,
189
+ ),
190
+ );
180
191
  }
181
192
 
182
- export function actorFromJSON(
193
+ export function triggerEventRequestDtoActorFromJSON(
183
194
  jsonString: string,
184
- ): SafeParseResult<Actor, SDKValidationError> {
195
+ ): SafeParseResult<TriggerEventRequestDtoActor, SDKValidationError> {
185
196
  return safeParse(
186
197
  jsonString,
187
- (x) => Actor$inboundSchema.parse(JSON.parse(x)),
188
- `Failed to parse 'Actor' from JSON`,
198
+ (x) => TriggerEventRequestDtoActor$inboundSchema.parse(JSON.parse(x)),
199
+ `Failed to parse 'TriggerEventRequestDtoActor' from JSON`,
189
200
  );
190
201
  }
191
202
 
@@ -12,7 +12,7 @@ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
12
12
  /**
13
13
  * The channel of the message to be deleted
14
14
  */
15
- export const QueryParamChannel = {
15
+ export const Channel = {
16
16
  InApp: "in_app",
17
17
  Email: "email",
18
18
  Sms: "sms",
@@ -22,13 +22,13 @@ export const QueryParamChannel = {
22
22
  /**
23
23
  * The channel of the message to be deleted
24
24
  */
25
- export type QueryParamChannel = ClosedEnum<typeof QueryParamChannel>;
25
+ export type Channel = ClosedEnum<typeof Channel>;
26
26
 
27
27
  export type MessagesControllerDeleteMessagesByTransactionIdRequest = {
28
28
  /**
29
29
  * The channel of the message to be deleted
30
30
  */
31
- channel?: QueryParamChannel | undefined;
31
+ channel?: Channel | undefined;
32
32
  transactionId: string;
33
33
  };
34
34
 
@@ -37,24 +37,22 @@ export type MessagesControllerDeleteMessagesByTransactionIdResponse = {
37
37
  };
38
38
 
39
39
  /** @internal */
40
- export const QueryParamChannel$inboundSchema: z.ZodNativeEnum<
41
- typeof QueryParamChannel
42
- > = z.nativeEnum(QueryParamChannel);
40
+ export const Channel$inboundSchema: z.ZodNativeEnum<typeof Channel> = z
41
+ .nativeEnum(Channel);
43
42
 
44
43
  /** @internal */
45
- export const QueryParamChannel$outboundSchema: z.ZodNativeEnum<
46
- typeof QueryParamChannel
47
- > = QueryParamChannel$inboundSchema;
44
+ export const Channel$outboundSchema: z.ZodNativeEnum<typeof Channel> =
45
+ Channel$inboundSchema;
48
46
 
49
47
  /**
50
48
  * @internal
51
49
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
52
50
  */
53
- export namespace QueryParamChannel$ {
54
- /** @deprecated use `QueryParamChannel$inboundSchema` instead. */
55
- export const inboundSchema = QueryParamChannel$inboundSchema;
56
- /** @deprecated use `QueryParamChannel$outboundSchema` instead. */
57
- export const outboundSchema = QueryParamChannel$outboundSchema;
51
+ export namespace Channel$ {
52
+ /** @deprecated use `Channel$inboundSchema` instead. */
53
+ export const inboundSchema = Channel$inboundSchema;
54
+ /** @deprecated use `Channel$outboundSchema` instead. */
55
+ export const outboundSchema = Channel$outboundSchema;
58
56
  }
59
57
 
60
58
  /** @internal */
@@ -64,7 +62,7 @@ export const MessagesControllerDeleteMessagesByTransactionIdRequest$inboundSchem
64
62
  z.ZodTypeDef,
65
63
  unknown
66
64
  > = z.object({
67
- channel: QueryParamChannel$inboundSchema.optional(),
65
+ channel: Channel$inboundSchema.optional(),
68
66
  transactionId: z.string(),
69
67
  });
70
68
 
@@ -81,7 +79,7 @@ export const MessagesControllerDeleteMessagesByTransactionIdRequest$outboundSche
81
79
  z.ZodTypeDef,
82
80
  MessagesControllerDeleteMessagesByTransactionIdRequest
83
81
  > = z.object({
84
- channel: QueryParamChannel$outboundSchema.optional(),
82
+ channel: Channel$outboundSchema.optional(),
85
83
  transactionId: z.string(),
86
84
  });
87
85
 
@@ -5,22 +5,12 @@
5
5
  import * as z from "zod";
6
6
  import { remap as remap$ } from "../../lib/primitives.js";
7
7
  import { safeParse } from "../../lib/schemas.js";
8
- import { ClosedEnum } from "../../types/enums.js";
9
8
  import { Result as SafeParseResult } from "../../types/fp.js";
10
9
  import * as components from "../components/index.js";
11
10
  import { SDKValidationError } from "../errors/sdkvalidationerror.js";
12
11
 
13
- export const Channel = {
14
- InApp: "in_app",
15
- Email: "email",
16
- Sms: "sms",
17
- Chat: "chat",
18
- Push: "push",
19
- } as const;
20
- export type Channel = ClosedEnum<typeof Channel>;
21
-
22
12
  export type MessagesControllerGetMessagesRequest = {
23
- channel?: Channel | undefined;
13
+ channel?: components.ChannelTypeEnum | undefined;
24
14
  subscriberId?: string | undefined;
25
15
  transactionId?: Array<string> | undefined;
26
16
  page?: number | undefined;
@@ -32,32 +22,13 @@ export type MessagesControllerGetMessagesResponse = {
32
22
  result: components.ActivitiesResponseDto;
33
23
  };
34
24
 
35
- /** @internal */
36
- export const Channel$inboundSchema: z.ZodNativeEnum<typeof Channel> = z
37
- .nativeEnum(Channel);
38
-
39
- /** @internal */
40
- export const Channel$outboundSchema: z.ZodNativeEnum<typeof Channel> =
41
- Channel$inboundSchema;
42
-
43
- /**
44
- * @internal
45
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
46
- */
47
- export namespace Channel$ {
48
- /** @deprecated use `Channel$inboundSchema` instead. */
49
- export const inboundSchema = Channel$inboundSchema;
50
- /** @deprecated use `Channel$outboundSchema` instead. */
51
- export const outboundSchema = Channel$outboundSchema;
52
- }
53
-
54
25
  /** @internal */
55
26
  export const MessagesControllerGetMessagesRequest$inboundSchema: z.ZodType<
56
27
  MessagesControllerGetMessagesRequest,
57
28
  z.ZodTypeDef,
58
29
  unknown
59
30
  > = z.object({
60
- channel: Channel$inboundSchema.optional(),
31
+ channel: components.ChannelTypeEnum$inboundSchema.optional(),
61
32
  subscriberId: z.string().optional(),
62
33
  transactionId: z.array(z.string()).optional(),
63
34
  page: z.number().default(0),
@@ -79,7 +50,7 @@ export const MessagesControllerGetMessagesRequest$outboundSchema: z.ZodType<
79
50
  z.ZodTypeDef,
80
51
  MessagesControllerGetMessagesRequest
81
52
  > = z.object({
82
- channel: Channel$outboundSchema.optional(),
53
+ channel: components.ChannelTypeEnum$outboundSchema.optional(),
83
54
  subscriberId: z.string().optional(),
84
55
  transactionId: z.array(z.string()).optional(),
85
56
  page: z.number().default(0),
@@ -52,7 +52,7 @@ export class Messages extends ClientSDK {
52
52
  */
53
53
  async deleteByTransactionId(
54
54
  transactionId: string,
55
- channel?: operations.QueryParamChannel | undefined,
55
+ channel?: operations.Channel | undefined,
56
56
  options?: RequestOptions,
57
57
  ): Promise<
58
58
  | operations.MessagesControllerDeleteMessagesByTransactionIdResponse
@@ -2,7 +2,7 @@
2
2
  * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
3
  */
4
4
 
5
- import { subscribersNotificationsRetrieve } from "../funcs/subscribersNotificationsRetrieve.js";
5
+ import { subscribersNotificationsFeed } from "../funcs/subscribersNotificationsFeed.js";
6
6
  import { subscribersNotificationsUnseenCount } from "../funcs/subscribersNotificationsUnseenCount.js";
7
7
  import { ClientSDK, RequestOptions } from "../lib/sdks.js";
8
8
  import * as operations from "../models/operations/index.js";
@@ -12,11 +12,11 @@ export class NovuNotifications extends ClientSDK {
12
12
  /**
13
13
  * Get in-app notification feed for a particular subscriber
14
14
  */
15
- async retrieve(
15
+ async feed(
16
16
  request: operations.SubscribersControllerGetNotificationsFeedRequest,
17
17
  options?: RequestOptions,
18
18
  ): Promise<operations.SubscribersControllerGetNotificationsFeedResponse> {
19
- return unwrapAsync(subscribersNotificationsRetrieve(
19
+ return unwrapAsync(subscribersNotificationsFeed(
20
20
  this,
21
21
  request,
22
22
  options,
@@ -1 +0,0 @@
1
- {"version":3,"file":"subscribersNotificationsRetrieve.d.ts","sourceRoot":"","sources":["../src/funcs/subscribersNotificationsRetrieve.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAItC,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAGhD,OAAO,EACL,eAAe,EACf,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,EACnB,qBAAqB,EACtB,MAAM,sCAAsC,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AACxD,OAAO,EAAE,kBAAkB,EAAE,MAAM,wCAAwC,CAAC;AAC5E,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAExC;;GAEG;AACH,wBAAsB,gCAAgC,CACpD,MAAM,EAAE,QAAQ,EAChB,OAAO,EAAE,UAAU,CAAC,gDAAgD,EACpE,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CACR,MAAM,CACJ,UAAU,CAAC,iDAAiD,EAC1D,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,mBAAmB,GACnB,mBAAmB,GACnB,mBAAmB,GACnB,eAAe,CAClB,CACF,CAqHA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"subscribersNotificationsRetrieve.js","sourceRoot":"","sources":["../src/funcs/subscribersNotificationsRetrieve.ts"],"names":[],"mappings":"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"}