@ayurak/aribot-cli 1.0.11 → 1.0.12

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/cli.js CHANGED
@@ -37,7 +37,7 @@ const program = new commander_1.Command();
37
37
  program
38
38
  .name('aribot')
39
39
  .description('Aribot - Economic, Regulatory & Security APIs for Modern Applications')
40
- .version('1.0.10');
40
+ .version('1.0.12');
41
41
  // Helper to get auth headers
42
42
  function getHeaders() {
43
43
  const apiKey = config.get('apiKey');
package/dist/sdk.js CHANGED
@@ -69,7 +69,7 @@ exports.runComplianceCheck = runComplianceCheck;
69
69
  const fs = __importStar(require("fs"));
70
70
  const path = __importStar(require("path"));
71
71
  const crypto = __importStar(require("crypto"));
72
- const VERSION = '1.0.11';
72
+ const VERSION = '1.0.12';
73
73
  const DEFAULT_BASE_URL = 'https://api.aribot.ayurak.com/aribot-api';
74
74
  // =============================================================================
75
75
  // ERRORS
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ayurak/aribot-cli",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Aribot - Economic, Regulatory & Security APIs for Modern Applications. Advanced multi-framework threat modeling (STRIDE, PASTA, NIST, Aristiun), 100+ compliance standards, Cloud Security, FinOps, and Red Team automation.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/cli.ts CHANGED
@@ -36,7 +36,7 @@ const program = new Command();
36
36
  program
37
37
  .name('aribot')
38
38
  .description('Aribot - Economic, Regulatory & Security APIs for Modern Applications')
39
- .version('1.0.10');
39
+ .version('1.0.12');
40
40
 
41
41
  // Helper to get auth headers
42
42
  function getHeaders(): Record<string, string> {
package/src/sdk.ts CHANGED
@@ -33,7 +33,7 @@ import * as fs from 'fs';
33
33
  import * as path from 'path';
34
34
  import * as crypto from 'crypto';
35
35
 
36
- const VERSION = '1.0.11';
36
+ const VERSION = '1.0.12';
37
37
  const DEFAULT_BASE_URL = 'https://api.aribot.ayurak.com/aribot-api';
38
38
 
39
39
  // =============================================================================