kcl-lib 0.10.0a2__cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 0.12.3__cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
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.
- kcl_lib/_kcl_lib.cpython-37m-aarch64-linux-gnu.so +0 -0
- kcl_lib/api/__init__.py +90 -90
- kcl_lib/api/service.py +210 -251
- kcl_lib/api/spec_pb2.py +199 -177
- kcl_lib/api/spec_pb2.pyi +241 -236
- kcl_lib-0.12.3.dist-info/METADATA +19 -0
- kcl_lib-0.12.3.dist-info/RECORD +11 -0
- kcl_lib-0.12.3.dist-info/WHEEL +5 -0
- kcl_lib-0.10.0a2.dist-info/METADATA +0 -722
- kcl_lib-0.10.0a2.dist-info/RECORD +0 -11
- kcl_lib-0.10.0a2.dist-info/WHEEL +0 -4
|
Binary file
|
kcl_lib/api/__init__.py
CHANGED
|
@@ -5,63 +5,63 @@ from .spec_pb2 import (
|
|
|
5
5
|
Argument,
|
|
6
6
|
Error,
|
|
7
7
|
Message,
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
8
|
+
PingArgs,
|
|
9
|
+
PingResult,
|
|
10
|
+
GetVersionArgs,
|
|
11
|
+
GetVersionResult,
|
|
12
|
+
ListMethodArgs,
|
|
13
|
+
ListMethodResult,
|
|
14
|
+
ParseFileArgs,
|
|
15
|
+
ParseFileResult,
|
|
16
|
+
ParseProgramArgs,
|
|
17
|
+
ParseProgramResult,
|
|
18
|
+
LoadPackageArgs,
|
|
19
|
+
LoadPackageResult,
|
|
20
|
+
ListOptionsResult,
|
|
21
21
|
OptionHelp,
|
|
22
22
|
Symbol,
|
|
23
23
|
Scope,
|
|
24
24
|
SymbolIndex,
|
|
25
25
|
ScopeIndex,
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
26
|
+
ExecProgramArgs,
|
|
27
|
+
ExecProgramResult,
|
|
28
|
+
BuildProgramArgs,
|
|
29
|
+
BuildProgramResult,
|
|
30
|
+
ExecArtifactArgs,
|
|
31
|
+
FormatCodeArgs,
|
|
32
|
+
FormatCodeResult,
|
|
33
|
+
FormatPathArgs,
|
|
34
|
+
FormatPathResult,
|
|
35
|
+
LintPathArgs,
|
|
36
|
+
LintPathResult,
|
|
37
|
+
OverrideFileArgs,
|
|
38
|
+
OverrideFileResult,
|
|
39
|
+
ListVariablesOptions,
|
|
40
40
|
VariableList,
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
ListVariablesArgs,
|
|
42
|
+
ListVariablesResult,
|
|
43
43
|
Variable,
|
|
44
44
|
MapEntry,
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
45
|
+
GetSchemaTypeMappingArgs,
|
|
46
|
+
GetSchemaTypeMappingResult,
|
|
47
|
+
ValidateCodeArgs,
|
|
48
|
+
ValidateCodeResult,
|
|
49
49
|
Position,
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
50
|
+
ListDepFilesArgs,
|
|
51
|
+
ListDepFilesResult,
|
|
52
|
+
LoadSettingsFilesArgs,
|
|
53
|
+
LoadSettingsFilesResult,
|
|
54
54
|
CliConfig,
|
|
55
55
|
KeyValuePair,
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
56
|
+
RenameArgs,
|
|
57
|
+
RenameResult,
|
|
58
|
+
RenameCodeArgs,
|
|
59
|
+
RenameCodeResult,
|
|
60
|
+
TestArgs,
|
|
61
|
+
TestResult,
|
|
62
62
|
TestCaseInfo,
|
|
63
|
-
|
|
64
|
-
|
|
63
|
+
UpdateDependenciesArgs,
|
|
64
|
+
UpdateDependenciesResult,
|
|
65
65
|
KclType,
|
|
66
66
|
Decorator,
|
|
67
67
|
Example,
|
|
@@ -74,63 +74,63 @@ __all__ = [
|
|
|
74
74
|
"Argument",
|
|
75
75
|
"Error",
|
|
76
76
|
"Message",
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
77
|
+
"PingArgs",
|
|
78
|
+
"PingResult",
|
|
79
|
+
"GetVersionArgs",
|
|
80
|
+
"GetVersionResult",
|
|
81
|
+
"ListMethodArgs",
|
|
82
|
+
"ListMethodResult",
|
|
83
|
+
"ParseFileArgs",
|
|
84
|
+
"ParseFileResult",
|
|
85
|
+
"ParseProgramArgs",
|
|
86
|
+
"ParseProgramResult",
|
|
87
|
+
"LoadPackageArgs",
|
|
88
|
+
"LoadPackageResult",
|
|
89
|
+
"ListOptionsResult",
|
|
90
90
|
"OptionHelp",
|
|
91
91
|
"Symbol",
|
|
92
92
|
"Scope",
|
|
93
93
|
"SymbolIndex",
|
|
94
94
|
"ScopeIndex",
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
95
|
+
"ExecProgramArgs",
|
|
96
|
+
"ExecProgramResult",
|
|
97
|
+
"BuildProgramArgs",
|
|
98
|
+
"BuildProgramResult",
|
|
99
|
+
"ExecArtifactArgs",
|
|
100
|
+
"FormatCodeArgs",
|
|
101
|
+
"FormatCodeResult",
|
|
102
|
+
"FormatPathArgs",
|
|
103
|
+
"FormatPathResult",
|
|
104
|
+
"LintPathArgs",
|
|
105
|
+
"LintPathResult",
|
|
106
|
+
"OverrideFileArgs",
|
|
107
|
+
"OverrideFileResult",
|
|
108
|
+
"ListVariablesOptions",
|
|
109
109
|
"VariableList",
|
|
110
|
-
"
|
|
111
|
-
"
|
|
110
|
+
"ListVariablesArgs",
|
|
111
|
+
"ListVariablesResult",
|
|
112
112
|
"Variable",
|
|
113
113
|
"MapEntry",
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
114
|
+
"GetSchemaTypeMappingArgs",
|
|
115
|
+
"GetSchemaTypeMappingResult",
|
|
116
|
+
"ValidateCodeArgs",
|
|
117
|
+
"ValidateCodeResult",
|
|
118
118
|
"Position",
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
119
|
+
"ListDepFilesArgs",
|
|
120
|
+
"ListDepFilesResult",
|
|
121
|
+
"LoadSettingsFilesArgs",
|
|
122
|
+
"LoadSettingsFilesResult",
|
|
123
123
|
"CliConfig",
|
|
124
124
|
"KeyValuePair",
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
125
|
+
"RenameArgs",
|
|
126
|
+
"RenameResult",
|
|
127
|
+
"RenameCodeArgs",
|
|
128
|
+
"RenameCodeResult",
|
|
129
|
+
"TestArgs",
|
|
130
|
+
"TestResult",
|
|
131
131
|
"TestCaseInfo",
|
|
132
|
-
"
|
|
133
|
-
"
|
|
132
|
+
"UpdateDependenciesArgs",
|
|
133
|
+
"UpdateDependenciesResult",
|
|
134
134
|
"KclType",
|
|
135
135
|
"Decorator",
|
|
136
136
|
"Example",
|