@novu/api 0.0.1-alpha.82 → 0.0.1-alpha.83

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.
@@ -109,7 +109,7 @@ async function subscribersMessagesMarkAll(client, markAllMessageAsRequestDto, su
109
109
  const responseFields = {
110
110
  HttpMeta: { Response: response, Request: req },
111
111
  };
112
- const [result] = await M.match(M.json(200, operations.SubscribersControllerMarkAllUnreadAsReadResponse$inboundSchema, { hdrs: true, key: "Result" }), M.fail([409, 429, 503]), M.fail(["4XX", "5XX"]))(response, { extraFields: responseFields });
112
+ const [result] = await M.match(M.json(201, operations.SubscribersControllerMarkAllUnreadAsReadResponse$inboundSchema, { hdrs: true, key: "Result" }), M.fail([409, 429, 503]), M.fail(["4XX", "5XX"]))(response, { extraFields: responseFields });
113
113
  if (!result.ok) {
114
114
  return result;
115
115
  }
package/lib/config.d.ts CHANGED
@@ -27,8 +27,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
27
27
  export declare const SDK_METADATA: {
28
28
  readonly language: "typescript";
29
29
  readonly openapiDocVersion: "1.0";
30
- readonly sdkVersion: "0.0.1-alpha.82";
30
+ readonly sdkVersion: "0.0.1-alpha.83";
31
31
  readonly genVersion: "2.474.15";
32
- readonly userAgent: "speakeasy-sdk/typescript 0.0.1-alpha.82 2.474.15 1.0 @novu/api";
32
+ readonly userAgent: "speakeasy-sdk/typescript 0.0.1-alpha.83 2.474.15 1.0 @novu/api";
33
33
  };
34
34
  //# sourceMappingURL=config.d.ts.map
package/lib/config.js CHANGED
@@ -30,8 +30,8 @@ exports.serverURLFromOptions = serverURLFromOptions;
30
30
  exports.SDK_METADATA = {
31
31
  language: "typescript",
32
32
  openapiDocVersion: "1.0",
33
- sdkVersion: "0.0.1-alpha.82",
33
+ sdkVersion: "0.0.1-alpha.83",
34
34
  genVersion: "2.474.15",
35
- userAgent: "speakeasy-sdk/typescript 0.0.1-alpha.82 2.474.15 1.0 @novu/api",
35
+ userAgent: "speakeasy-sdk/typescript 0.0.1-alpha.83 2.474.15 1.0 @novu/api",
36
36
  };
37
37
  //# sourceMappingURL=config.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@novu/api",
3
- "version": "0.0.1-alpha.82",
3
+ "version": "0.0.1-alpha.83",
4
4
  "author": "Novu",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
@@ -144,7 +144,7 @@ export async function subscribersMessagesMarkAll(
144
144
  | ConnectionError
145
145
  >(
146
146
  M.json(
147
- 200,
147
+ 201,
148
148
  operations.SubscribersControllerMarkAllUnreadAsReadResponse$inboundSchema,
149
149
  { hdrs: true, key: "Result" },
150
150
  ),
package/src/lib/config.ts CHANGED
@@ -55,7 +55,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
55
55
  export const SDK_METADATA = {
56
56
  language: "typescript",
57
57
  openapiDocVersion: "1.0",
58
- sdkVersion: "0.0.1-alpha.82",
58
+ sdkVersion: "0.0.1-alpha.83",
59
59
  genVersion: "2.474.15",
60
- userAgent: "speakeasy-sdk/typescript 0.0.1-alpha.82 2.474.15 1.0 @novu/api",
60
+ userAgent: "speakeasy-sdk/typescript 0.0.1-alpha.83 2.474.15 1.0 @novu/api",
61
61
  } as const;