Skip to content

Commit

Permalink
Merge pull request #507 from XeroAPI/replace-preinstall-script
Browse files Browse the repository at this point in the history
replaces preinstall script with prepare script
  • Loading branch information
RettBehrens authored Mar 19, 2021
2 parents 09621f2 + 78b8b27 commit b63afa6
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 20 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xero-node",
"version": "4.10.4",
"version": "4.11.0",
"description": "Xero NodeJS OAuth 2.0 client for xero-node",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -11,7 +11,7 @@
"url": "git://github.com/XeroAPI/xero-node.git"
},
"scripts": {
"preinstall": "npx npm-force-resolutions",
"prepare": "npx npm-force-resolutions",
"build": "tsc",
"test": "jest"
},
Expand Down
2 changes: 1 addition & 1 deletion src/gen/api/accountingApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export enum AccountingApiApiKeys {

export class AccountingApi {
protected _basePath = defaultBasePath;
protected defaultHeaders : any = {'user-agent': 'xero-node-4.10.4'};
protected defaultHeaders : any = {'user-agent': 'xero-node-4.11.0'};
protected _useQuerystring : boolean = false;
protected binaryHeaders : any = {};

Expand Down
2 changes: 1 addition & 1 deletion src/gen/api/assetApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export enum AssetApiApiKeys {

export class AssetApi {
protected _basePath = defaultBasePath;
protected defaultHeaders : any = {'user-agent': 'xero-node-4.10.4'};
protected defaultHeaders : any = {'user-agent': 'xero-node-4.11.0'};
protected _useQuerystring : boolean = false;
protected binaryHeaders : any = {};

Expand Down
2 changes: 1 addition & 1 deletion src/gen/api/bankfeedsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export enum BankFeedsApiApiKeys {

export class BankFeedsApi {
protected _basePath = defaultBasePath;
protected defaultHeaders : any = {'user-agent': 'xero-node-4.10.4'};
protected defaultHeaders : any = {'user-agent': 'xero-node-4.11.0'};
protected _useQuerystring : boolean = false;
protected binaryHeaders : any = {};

Expand Down
2 changes: 1 addition & 1 deletion src/gen/api/filesApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export enum FilesApiApiKeys {

export class FilesApi {
protected _basePath = defaultBasePath;
protected defaultHeaders : any = {'user-agent': 'xero-node-4.10.4'};
protected defaultHeaders : any = {'user-agent': 'xero-node-4.11.0'};
protected _useQuerystring : boolean = false;
protected binaryHeaders : any = {};

Expand Down
2 changes: 1 addition & 1 deletion src/gen/api/payrollAUApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export enum PayrollAuApiApiKeys {

export class PayrollAuApi {
protected _basePath = defaultBasePath;
protected defaultHeaders : any = {'user-agent': 'xero-node-4.10.4'};
protected defaultHeaders : any = {'user-agent': 'xero-node-4.11.0'};
protected _useQuerystring : boolean = false;
protected binaryHeaders : any = {};

Expand Down
2 changes: 1 addition & 1 deletion src/gen/api/payrollNZApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export enum PayrollNzApiApiKeys {

export class PayrollNzApi {
protected _basePath = defaultBasePath;
protected defaultHeaders : any = {'user-agent': 'xero-node-4.10.4'};
protected defaultHeaders : any = {'user-agent': 'xero-node-4.11.0'};
protected _useQuerystring : boolean = false;
protected binaryHeaders : any = {};

Expand Down
2 changes: 1 addition & 1 deletion src/gen/api/payrollUKApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export enum PayrollUkApiApiKeys {

export class PayrollUkApi {
protected _basePath = defaultBasePath;
protected defaultHeaders : any = {'user-agent': 'xero-node-4.10.4'};
protected defaultHeaders : any = {'user-agent': 'xero-node-4.11.0'};
protected _useQuerystring : boolean = false;
protected binaryHeaders : any = {};

Expand Down
2 changes: 1 addition & 1 deletion src/gen/api/projectApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export enum ProjectApiApiKeys {

export class ProjectApi {
protected _basePath = defaultBasePath;
protected defaultHeaders : any = {'user-agent': 'xero-node-4.10.4'};
protected defaultHeaders : any = {'user-agent': 'xero-node-4.11.0'};
protected _useQuerystring : boolean = false;
protected binaryHeaders : any = {};

Expand Down

0 comments on commit b63afa6

Please sign in to comment.