svix 1.97.0 → 1.98.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.
- package/dist/request.d.ts +1 -1
- package/dist/request.js +1 -1
- package/package.json +1 -1
- package/src/request.ts +1 -1
package/dist/request.d.ts
CHANGED
package/dist/request.js
CHANGED
|
@@ -11,7 +11,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.SvixRequest = exports.HttpMethod = exports.LIB_VERSION = void 0;
|
|
13
13
|
const util_1 = require("./util");
|
|
14
|
-
exports.LIB_VERSION = "1.
|
|
14
|
+
exports.LIB_VERSION = "1.98.0";
|
|
15
15
|
function getUserAgent() {
|
|
16
16
|
var fields = [`svix-libs/${exports.LIB_VERSION}/javascript`];
|
|
17
17
|
if (process !== undefined) {
|
package/package.json
CHANGED
package/src/request.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ApiException, type XOR } from "./util";
|
|
2
2
|
import type { HttpErrorOut, HTTPValidationError } from "./HttpErrors";
|
|
3
3
|
|
|
4
|
-
export const LIB_VERSION = "1.
|
|
4
|
+
export const LIB_VERSION = "1.98.0";
|
|
5
5
|
|
|
6
6
|
function getUserAgent() {
|
|
7
7
|
var fields = [`svix-libs/${LIB_VERSION}/javascript`];
|