@azure-rest/ai-anomaly-detector 1.0.0-alpha.20240925.1 → 1.0.0-alpha.20240927.1
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/package.json +30 -29
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@azure-rest/ai-anomaly-detector",
|
|
3
3
|
"sdk-type": "client",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
|
-
"version": "1.0.0-alpha.
|
|
5
|
+
"version": "1.0.0-alpha.20240927.1",
|
|
6
6
|
"description": "A generated SDK for AnomalyDetectorRest.",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"node",
|
|
@@ -33,75 +33,76 @@
|
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
|
|
36
|
+
"build": "npm run clean && tsc -p . && dev-tool run bundle && mkdirp ./review && dev-tool run extract-api",
|
|
36
37
|
"build:browser": "tsc -p . && dev-tool run bundle",
|
|
38
|
+
"build:debug": "tsc -p . && dev-tool run bundle && dev-tool run extract-api",
|
|
37
39
|
"build:node": "tsc -p . && dev-tool run bundle --browser-test false",
|
|
38
40
|
"build:samples": "echo skipped.",
|
|
39
41
|
"build:test": "tsc -p . && dev-tool run bundle",
|
|
40
|
-
"build:debug": "tsc -p . && dev-tool run bundle && dev-tool run extract-api",
|
|
41
42
|
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
42
43
|
"clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log",
|
|
43
44
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
44
45
|
"extract-api": "rimraf review && mkdirp ./review && dev-tool run extract-api",
|
|
45
46
|
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
46
47
|
"generate:client": "autorest --typescript swagger/README.md && npm run format",
|
|
48
|
+
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
47
49
|
"integration-test:browser": "dev-tool run test:browser",
|
|
48
50
|
"integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 'dist-esm/test/**/*.spec.js'",
|
|
49
|
-
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
50
|
-
"lint:fix": "eslint package.json api-extractor.json src test --fix --fix-type [problem,suggestion]",
|
|
51
51
|
"lint": "eslint package.json api-extractor.json src test",
|
|
52
|
+
"lint:fix": "eslint package.json api-extractor.json src test --fix --fix-type [problem,suggestion]",
|
|
52
53
|
"pack": "npm pack 2>&1",
|
|
54
|
+
"test": "npm run clean && npm run build:test && npm run unit-test",
|
|
53
55
|
"test:browser": "npm run clean && npm run build:test && npm run unit-test:browser",
|
|
54
56
|
"test:node": "npm run clean && npm run build:test && npm run unit-test:node",
|
|
55
|
-
"test": "npm run clean && npm run build:test && npm run unit-test",
|
|
56
57
|
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|
|
57
|
-
"unit-test:node": "dev-tool run test:node-ts-input -- --timeout 1200000 --exclude 'test/**/browser/*.spec.ts' 'test/**/*.spec.ts'",
|
|
58
58
|
"unit-test:browser": "dev-tool run test:browser",
|
|
59
|
-
"
|
|
59
|
+
"unit-test:node": "dev-tool run test:node-ts-input -- --timeout 1200000 --exclude 'test/**/browser/*.spec.ts' 'test/**/*.spec.ts'",
|
|
60
|
+
"update-snippets": "echo skipped"
|
|
60
61
|
},
|
|
61
62
|
"sideEffects": false,
|
|
62
63
|
"autoPublish": false,
|
|
63
64
|
"dependencies": {
|
|
64
|
-
"@azure/core-auth": "^1.3.0",
|
|
65
65
|
"@azure-rest/core-client": "^1.0.0",
|
|
66
|
+
"@azure/core-auth": "^1.3.0",
|
|
67
|
+
"@azure/core-lro": "^2.2.0",
|
|
68
|
+
"@azure/core-paging": "^1.2.0",
|
|
66
69
|
"@azure/core-rest-pipeline": "^1.8.0",
|
|
67
70
|
"@azure/logger": "^1.0.0",
|
|
68
|
-
"tslib": "^2.2.0"
|
|
69
|
-
"@azure/core-paging": "^1.2.0",
|
|
70
|
-
"@azure/core-lro": "^2.2.0"
|
|
71
|
+
"tslib": "^2.2.0"
|
|
71
72
|
},
|
|
72
73
|
"devDependencies": {
|
|
73
|
-
"@
|
|
74
|
-
"
|
|
75
|
-
"@types/node": "^18.0.0",
|
|
76
|
-
"dotenv": "^16.0.0",
|
|
77
|
-
"eslint": "^9.9.0",
|
|
78
|
-
"mkdirp": "^3.0.1",
|
|
79
|
-
"rimraf": "^5.0.5",
|
|
80
|
-
"source-map-support": "^0.5.9",
|
|
81
|
-
"typescript": "~5.6.2",
|
|
74
|
+
"@azure-tools/test-credential": "^1.0.0",
|
|
75
|
+
"@azure-tools/test-recorder": "^3.0.0",
|
|
82
76
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
83
77
|
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
84
|
-
"@azure-tools/test-credential": "^1.0.0",
|
|
85
78
|
"@azure/identity": "^4.0.1",
|
|
86
|
-
"@
|
|
87
|
-
"mocha": "^10.0.0",
|
|
88
|
-
"@types/mocha": "^10.0.0",
|
|
89
|
-
"cross-env": "^7.0.2",
|
|
79
|
+
"@microsoft/api-extractor": "^7.31.1",
|
|
90
80
|
"@types/chai": "^4.2.8",
|
|
81
|
+
"@types/mocha": "^10.0.0",
|
|
82
|
+
"@types/node": "^18.0.0",
|
|
83
|
+
"autorest": "latest",
|
|
91
84
|
"chai": "^4.2.0",
|
|
85
|
+
"cross-env": "^7.0.2",
|
|
86
|
+
"csv-parse": "^5.0.3",
|
|
87
|
+
"dotenv": "^16.0.0",
|
|
88
|
+
"eslint": "^9.9.0",
|
|
89
|
+
"karma": "^6.2.0",
|
|
92
90
|
"karma-chrome-launcher": "^3.0.0",
|
|
93
91
|
"karma-coverage": "^2.0.0",
|
|
94
92
|
"karma-env-preprocessor": "^0.1.1",
|
|
95
93
|
"karma-firefox-launcher": "^1.1.0",
|
|
96
94
|
"karma-junit-reporter": "^2.0.1",
|
|
97
|
-
"karma-mocha-reporter": "^2.2.5",
|
|
98
95
|
"karma-mocha": "^2.0.1",
|
|
96
|
+
"karma-mocha-reporter": "^2.2.5",
|
|
99
97
|
"karma-source-map-support": "~1.4.0",
|
|
100
98
|
"karma-sourcemap-loader": "^0.3.8",
|
|
101
|
-
"
|
|
99
|
+
"mkdirp": "^3.0.1",
|
|
100
|
+
"mocha": "^10.0.0",
|
|
102
101
|
"nyc": "^17.0.0",
|
|
103
|
-
"
|
|
104
|
-
"
|
|
102
|
+
"rimraf": "^5.0.5",
|
|
103
|
+
"source-map-support": "^0.5.9",
|
|
104
|
+
"ts-node": "^10.0.0",
|
|
105
|
+
"typescript": "~5.6.2"
|
|
105
106
|
},
|
|
106
107
|
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/anomalydetector/ai-anomaly-detector-rest/README.md",
|
|
107
108
|
"//metadata": {
|