Skip to content

Commit

Permalink
bumping package version
Browse files Browse the repository at this point in the history
  • Loading branch information
Maldris committed Aug 15, 2024
1 parent e3d29fb commit 35081af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arlula/core",
"version": "2.3.0",
"version": "3.0.0",
"description": "JavaScript and TypeScript SDK for the Arlula satellite imagery API",
"author": {
"name": "Scott Owens",
Expand Down
2 changes: 1 addition & 1 deletion src/util/request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function authProvider(user: string, pass:string): requestBuilder {
method: method,
headers: {
"Authorization": "Basic " + Buffer.from(user + ":" + pass).toString("base64"),
"X-User-Agent": `arlula-js 2.3.0, API-ver 2022-08, server nodejs ${process.version}; ${process.arch} ${process.platform}`,
"X-User-Agent": `arlula-js 3.0.0, API-ver 2022-08, server nodejs ${process.version}; ${process.arch} ${process.platform}`,
"Content-Type": typeof body != "string" ? "application/json" : "text/plain",
},
body: body ? (typeof body != "string" ? JSON.stringify(body) : body) : undefined,
Expand Down

0 comments on commit 35081af

Please sign in to comment.