Skip to content

Commit

Permalink
Update analytics call (#2665)
Browse files Browse the repository at this point in the history
  • Loading branch information
niclim authored Jan 17, 2024
1 parent 9708efa commit c358c0d
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 25 deletions.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "openapi-workspaces",
"license": "MIT",
"private": true,
"version": "0.53.22-0",
"version": "0.53.22",
"workspaces": [
"projects/json-pointer-helpers",
"projects/openapi-io",
Expand All @@ -27,6 +27,5 @@
"**/*.+(js|jsx|ts|tsx|json|css)": [
"yarn prettier --write"
]
},
"stableVersion": "0.53.21"
}
}
5 changes: 2 additions & 3 deletions projects/fastify-capture/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/fastify-capture",
"license": "MIT",
"packageManager": "[email protected]",
"version": "0.53.22-0",
"version": "0.53.22",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down Expand Up @@ -37,6 +37,5 @@
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"stableVersion": "0.53.21"
}
}
5 changes: 2 additions & 3 deletions projects/json-pointer-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/json-pointer-helpers",
"license": "MIT",
"packageManager": "[email protected]",
"version": "0.53.22-0",
"version": "0.53.22",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down Expand Up @@ -32,6 +32,5 @@
"dependencies": {
"jsonpointer": "^5.0.1",
"minimatch": "9.0.3"
},
"stableVersion": "0.53.21"
}
}
5 changes: 2 additions & 3 deletions projects/openapi-io/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/openapi-io",
"license": "MIT",
"packageManager": "[email protected]",
"version": "0.53.22-0",
"version": "0.53.22",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down Expand Up @@ -57,6 +57,5 @@
"upath": "^2.0.1",
"yaml": "^2.3.2",
"yaml-ast-parser": "^0.0.43"
},
"stableVersion": "0.53.21"
}
}
5 changes: 2 additions & 3 deletions projects/openapi-utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/openapi-utilities",
"license": "MIT",
"packageManager": "[email protected]",
"version": "0.53.22-0",
"version": "0.53.22",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down Expand Up @@ -53,6 +53,5 @@
"ts-invariant": "^0.9.3",
"url-join": "^4.0.1",
"yaml-ast-parser": "^0.0.43"
},
"stableVersion": "0.53.21"
}
}
5 changes: 2 additions & 3 deletions projects/optic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/optic",
"license": "MIT",
"packageManager": "[email protected]",
"version": "0.53.22-0",
"version": "0.53.22",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down Expand Up @@ -138,6 +138,5 @@
"node18-win-x64"
],
"outputPath": "../../dist"
},
"stableVersion": "0.53.21"
}
}
2 changes: 1 addition & 1 deletion projects/optic/src/commands/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ async function authenticateInteractive(config: OpticCliConfig) {
config.isAuthenticated = true;
config.userId = token.startsWith('opat')
? token.slice(4).split('.')[0]
: token;
: token.split('.')[0];

trackEvent('cli.login');
await flushEvents();
Expand Down
5 changes: 2 additions & 3 deletions projects/rulesets-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/rulesets-base",
"license": "MIT",
"packageManager": "[email protected]",
"version": "0.53.22-0",
"version": "0.53.22",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down Expand Up @@ -40,6 +40,5 @@
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"stableVersion": "0.53.21"
}
}
5 changes: 2 additions & 3 deletions projects/standard-rulesets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/standard-rulesets",
"license": "MIT",
"packageManager": "[email protected]",
"version": "0.53.22-0",
"version": "0.53.22",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down Expand Up @@ -45,6 +45,5 @@
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"stableVersion": "0.53.21"
}
}

0 comments on commit c358c0d

Please sign in to comment.