Skip to content

Commit e8d2d8b

Browse files
7.1.0-beta.2 release (#49)
1 parent f4c03e2 commit e8d2d8b

5 files changed

Lines changed: 16 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [7.1.0-beta.2] - revision 2023-10-15
5+
6+
### Fixed
7+
- OAuth authorization redirect url fixed to `https://klaviyo.com/oauth/authorize`
8+
9+
410
## [7.1.0-beta.1] - revision 2023-10-15
511

612
### Changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Klaviyo Typescript SDK
22

3-
- SDK version: 7.1.0-beta.1
3+
- SDK version: 7.1.0-beta.2
44

55
- Revision: 2023-10-15
66

@@ -47,7 +47,7 @@ This SDK is organized into the following resources:
4747

4848
You can install this library using `npm`.
4949

50-
`npm install [email protected].1`
50+
`npm install [email protected].2`
5151

5252

5353
## source code

api/apis.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import {AxiosRequestConfig, AxiosResponse, AxiosHeaders, isAxiosError} from "axi
3434
export { RequestFile } from '../model/models';
3535

3636
const revision = "2023-10-15";
37-
const userAgent = "klaviyo-api-node/7.1.0-beta.1";
37+
const userAgent = "klaviyo-api-node/7.1.0-beta.2";
3838

3939
export class RetryOptions {
4040

@@ -284,7 +284,7 @@ interface TokenServerResponse {
284284

285285
export class OAuthApi {
286286

287-
protected authorizeUrl = "https://a.klaviyo.com/oauth/authorize"
287+
protected authorizeUrl = "https://klaviyo.com/oauth/authorize"
288288
protected tokenUrl = "https://a.klaviyo.com/oauth/token"
289289

290290
constructor(

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "klaviyo-api",
3-
"version": "7.1.0-beta.1",
3+
"version": "7.1.0-beta.2",
44
"description": "A typescript client for the Klaviyo API",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)