@leaflow/sdk 0.0.0-dev.113.g5d6fb99

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.
Files changed (49) hide show
  1. package/dist/account/v1/index.d.ts +38 -0
  2. package/dist/account/v1/index.js +5 -0
  3. package/dist/account/v1/schema.d.ts +866 -0
  4. package/dist/account/v1/schema.js +5 -0
  5. package/dist/assistant/v1/index.d.ts +68 -0
  6. package/dist/assistant/v1/index.js +5 -0
  7. package/dist/assistant/v1/schema.d.ts +1884 -0
  8. package/dist/assistant/v1/schema.js +5 -0
  9. package/dist/canopy/v1/index.d.ts +36 -0
  10. package/dist/canopy/v1/index.js +5 -0
  11. package/dist/canopy/v1/schema.d.ts +1100 -0
  12. package/dist/canopy/v1/schema.js +5 -0
  13. package/dist/compute/v1/index.d.ts +200 -0
  14. package/dist/compute/v1/index.js +5 -0
  15. package/dist/compute/v1/schema.d.ts +4439 -0
  16. package/dist/compute/v1/schema.js +5 -0
  17. package/dist/gen/account/v1/schema.d.ts +866 -0
  18. package/dist/gen/account/v1/schema.js +5 -0
  19. package/dist/gen/assistant/v1/schema.d.ts +1884 -0
  20. package/dist/gen/assistant/v1/schema.js +5 -0
  21. package/dist/gen/canopy/v1/schema.d.ts +1100 -0
  22. package/dist/gen/canopy/v1/schema.js +5 -0
  23. package/dist/gen/compute/v1/schema.d.ts +4439 -0
  24. package/dist/gen/compute/v1/schema.js +5 -0
  25. package/dist/gen/iam/v1/schema.d.ts +1230 -0
  26. package/dist/gen/iam/v1/schema.js +5 -0
  27. package/dist/gen/monitoring/v1/schema.d.ts +2291 -0
  28. package/dist/gen/monitoring/v1/schema.js +5 -0
  29. package/dist/gen/tunnel/v1/schema.d.ts +845 -0
  30. package/dist/gen/tunnel/v1/schema.js +5 -0
  31. package/dist/iam/v1/index.d.ts +56 -0
  32. package/dist/iam/v1/index.js +5 -0
  33. package/dist/iam/v1/schema.d.ts +1230 -0
  34. package/dist/iam/v1/schema.js +5 -0
  35. package/dist/index.d.ts +7 -0
  36. package/dist/index.js +6 -0
  37. package/dist/monitoring/v1/index.d.ts +80 -0
  38. package/dist/monitoring/v1/index.js +5 -0
  39. package/dist/monitoring/v1/schema.d.ts +2291 -0
  40. package/dist/monitoring/v1/schema.js +5 -0
  41. package/dist/src/client.d.ts +57 -0
  42. package/dist/src/client.js +41 -0
  43. package/dist/src/index.d.ts +9 -0
  44. package/dist/src/index.js +1 -0
  45. package/dist/tunnel/v1/index.d.ts +34 -0
  46. package/dist/tunnel/v1/index.js +5 -0
  47. package/dist/tunnel/v1/schema.d.ts +845 -0
  48. package/dist/tunnel/v1/schema.js +5 -0
  49. package/package.json +73 -0
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This file was auto-generated by openapi-typescript.
3
+ * Do not make direct changes to the file.
4
+ */
5
+ export {};
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "@leaflow/sdk",
3
+ "version": "0.0.0-dev.113.g5d6fb99",
4
+ "description": "Leaflow 平台 API 的 TypeScript SDK",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/LeaflowNET/sdk.git"
9
+ },
10
+ "type": "module",
11
+ "main": "./dist/index.js",
12
+ "types": "./dist/index.d.ts",
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ },
18
+ "./account/v1": {
19
+ "types": "./dist/account/v1/index.d.ts",
20
+ "default": "./dist/account/v1/index.js"
21
+ },
22
+ "./assistant/v1": {
23
+ "types": "./dist/assistant/v1/index.d.ts",
24
+ "default": "./dist/assistant/v1/index.js"
25
+ },
26
+ "./canopy/v1": {
27
+ "types": "./dist/canopy/v1/index.d.ts",
28
+ "default": "./dist/canopy/v1/index.js"
29
+ },
30
+ "./compute/v1": {
31
+ "types": "./dist/compute/v1/index.d.ts",
32
+ "default": "./dist/compute/v1/index.js"
33
+ },
34
+ "./iam/v1": {
35
+ "types": "./dist/iam/v1/index.d.ts",
36
+ "default": "./dist/iam/v1/index.js"
37
+ },
38
+ "./monitoring/v1": {
39
+ "types": "./dist/monitoring/v1/index.d.ts",
40
+ "default": "./dist/monitoring/v1/index.js"
41
+ },
42
+ "./tunnel/v1": {
43
+ "types": "./dist/tunnel/v1/index.d.ts",
44
+ "default": "./dist/tunnel/v1/index.js"
45
+ }
46
+ },
47
+ "files": [
48
+ "dist"
49
+ ],
50
+ "sideEffects": false,
51
+ "scripts": {
52
+ "generate": "node ../scripts/generate-ts.mjs && python3 ../scripts/generate-go.py",
53
+ "build": "tsc -p tsconfig.build.json",
54
+ "typecheck": "tsc -p tsconfig.json --noEmit",
55
+ "prepublishOnly": "npm run build"
56
+ },
57
+ "devDependencies": {
58
+ "openapi-typescript": "7.13.0",
59
+ "typescript": "^5.9.3",
60
+ "openapi-fetch": "^0.17.0"
61
+ },
62
+ "publishConfig": {
63
+ "access": "public"
64
+ },
65
+ "peerDependencies": {
66
+ "openapi-fetch": ">=0.14"
67
+ },
68
+ "peerDependenciesMeta": {
69
+ "openapi-fetch": {
70
+ "optional": true
71
+ }
72
+ }
73
+ }