clarifai-web-grpc 1.0.0
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/.github/workflows/ci.yml +41 -0
- package/.husky/commit-msg +4 -0
- package/.husky/pre-commit +4 -0
- package/.mocharc.yml +5 -0
- package/CHANGELOG.md +6 -0
- package/LICENCE +13 -0
- package/README.md +43 -0
- package/VERSION +1 -0
- package/dist/google/api/annotations_pb.d.ts +1 -0
- package/dist/google/api/annotations_pb.js +32 -0
- package/dist/google/api/http_pb.d.ts +1 -0
- package/dist/google/api/http_pb.js +813 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +7 -0
- package/dist/proto/clarifai/api/resources_pb.d.ts +1 -0
- package/dist/proto/clarifai/api/resources_pb.js +32957 -0
- package/dist/proto/clarifai/api/serviceServiceClientPb.d.ts +275 -0
- package/dist/proto/clarifai/api/serviceServiceClientPb.js +904 -0
- package/dist/proto/clarifai/api/service_pb.d.ts +1 -0
- package/dist/proto/clarifai/api/service_pb.js +38791 -0
- package/dist/proto/clarifai/api/status/status_code_pb.d.ts +1 -0
- package/dist/proto/clarifai/api/status/status_code_pb.js +312 -0
- package/dist/proto/clarifai/api/status/status_pb.d.ts +1 -0
- package/dist/proto/clarifai/api/status/status_pb.js +473 -0
- package/dist/proto/clarifai/api/utils/extensions_pb.d.ts +1 -0
- package/dist/proto/clarifai/api/utils/extensions_pb.js +52 -0
- package/dist/proto/clarifai/api/utils/test_proto_pb.d.ts +1 -0
- package/dist/proto/clarifai/api/utils/test_proto_pb.js +521 -0
- package/dist/proto/clarifai/auth/scope/scope_pb.d.ts +1 -0
- package/dist/proto/clarifai/auth/scope/scope_pb.js +294 -0
- package/dist/proto/clarifai/auth/types/types_pb.d.ts +1 -0
- package/dist/proto/clarifai/auth/types/types_pb.js +26 -0
- package/dist/proto/clarifai/auth/util/extension_pb.d.ts +1 -0
- package/dist/proto/clarifai/auth/util/extension_pb.js +80 -0
- package/dist/resources.d.ts +1 -0
- package/dist/resources.js +1 -0
- package/dist/service.d.ts +1 -0
- package/dist/service.js +1 -0
- package/google/api/annotations_grpc_pb.js +1 -0
- package/google/api/annotations_pb.js +47 -0
- package/google/api/http_grpc_pb.js +1 -0
- package/google/api/http_pb.js +1005 -0
- package/index.ts +9 -0
- package/package.json +52 -0
- package/proto/clarifai/api/resources_pb.d.ts +5052 -0
- package/proto/clarifai/api/resources_pb.js +41204 -0
- package/proto/clarifai/api/serviceServiceClientPb.ts +3002 -0
- package/proto/clarifai/api/service_pb.d.ts +5582 -0
- package/proto/clarifai/api/service_pb.js +47897 -0
- package/proto/clarifai/api/status/status_code_pb.d.ts +296 -0
- package/proto/clarifai/api/status/status_code_pb.js +314 -0
- package/proto/clarifai/api/status/status_pb.d.ts +73 -0
- package/proto/clarifai/api/status/status_pb.js +580 -0
- package/proto/clarifai/api/utils/extensions_pb.d.ts +4 -0
- package/proto/clarifai/api/utils/extensions_pb.js +95 -0
- package/proto/clarifai/api/utils/test_proto_pb.d.ts +81 -0
- package/proto/clarifai/api/utils/test_proto_pb.js +640 -0
- package/proto/clarifai/auth/scope/scope_pb.d.ts +92 -0
- package/proto/clarifai/auth/scope/scope_pb.js +363 -0
- package/proto/clarifai/auth/types/types_pb.d.ts +10 -0
- package/proto/clarifai/auth/types/types_pb.js +28 -0
- package/proto/clarifai/auth/util/extension_pb.d.ts +6 -0
- package/proto/clarifai/auth/util/extension_pb.js +151 -0
- package/resources.ts +1 -0
- package/service.desc +10 -0
- package/service.ts +1 -0
- package/tests/basic.test.ts +14 -0
- package/tsconfig.json +25 -0
package/tsconfig.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "es6",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"strict": true,
|
|
6
|
+
"declaration": true,
|
|
7
|
+
"allowJs": true,
|
|
8
|
+
"outDir": "./dist",
|
|
9
|
+
"moduleResolution": "node"
|
|
10
|
+
},
|
|
11
|
+
"include": [
|
|
12
|
+
"./index.ts",
|
|
13
|
+
"./resources.ts",
|
|
14
|
+
"./service.ts",
|
|
15
|
+
"proto/",
|
|
16
|
+
],
|
|
17
|
+
"exclude": [
|
|
18
|
+
"node_modules"
|
|
19
|
+
],
|
|
20
|
+
"ts-node": {
|
|
21
|
+
"compilerOptions": {
|
|
22
|
+
"module": "CommonJS"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|