blend-kit 1.0.1 → 1.0.2
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/antlr.readme +1 -0
- package/dist/ai-models/api-label/APILabelHelper.js +76 -0
- package/dist/ai-models/api-label/APILabelHelper.ts +34 -0
- package/dist/ai-models/api-label/labels.json +1 -0
- package/dist/ai-models/api-label/model.json +1 -0
- package/dist/ai-models/api-label/weights.bin +0 -0
- package/dist/ai-models/api-label/wordIndex.json +1 -0
- package/dist/ai-models/tokenizer.js +18 -0
- package/dist/ai-models/tokenizer.ts +16 -0
- package/dist/commands/ui.js +15 -0
- package/dist/helper/ExpressHelper.js +18 -12
- package/dist/helper/FrontEndApiHelper.js +12 -14
- package/dist/helper/FrontEndReactApiHelper.js +6 -6
- package/dist/helper/MongoHelper.js +9 -2
- package/dist/helper/RNHelper.js +7 -0
- package/dist/helper/ReactHelper.js +10 -2
- package/dist/helper/grammarHelper/BlendApiGrammarHelper.js +44 -5
- package/dist/helper/grammarHelper/BlendMongoGrammarHelper.js +2 -1
- package/dist/index.js +2 -2
- package/dist/parser/blendExpress/src/grammar/BlendExpressLexer.js +201 -0
- package/dist/parser/blendExpress/src/grammar/BlendExpressListener.js +3 -0
- package/dist/parser/blendExpress/src/grammar/BlendExpressParser.js +961 -0
- package/dist/parser/blendReact/src/grammar/BlendReactLexer.js +1 -1
- package/dist/server.js +31 -0
- package/dist/types/apiOperationTypes.js +8 -1
- package/package.json +6 -3
- package/src/ai-models/api-label/APILabelHelper.ts +34 -0
- package/src/ai-models/api-label/labels.json +1 -0
- package/src/ai-models/api-label/model.json +1 -0
- package/src/ai-models/api-label/weights.bin +0 -0
- package/src/ai-models/api-label/wordIndex.json +1 -0
- package/src/ai-models/tokenizer.ts +16 -0
- package/src/grammar/.antlr/BlendApiLexer.java +2 -2
- package/src/grammar/.antlr/BlendExpress.interp +70 -0
- package/src/grammar/.antlr/BlendExpress.tokens +44 -0
- package/src/grammar/.antlr/BlendExpressLexer.interp +89 -0
- package/src/grammar/.antlr/BlendExpressLexer.java +237 -0
- package/src/grammar/.antlr/BlendExpressLexer.tokens +44 -0
- package/src/grammar/.antlr/BlendExpressParser.java +767 -0
- package/src/grammar/.antlr/BlendMongo.interp +3 -1
- package/src/grammar/.antlr/BlendMongo.tokens +5 -3
- package/src/grammar/.antlr/BlendMongoLexer.interp +4 -1
- package/src/grammar/.antlr/BlendMongoLexer.java +99 -95
- package/src/grammar/.antlr/BlendMongoLexer.tokens +5 -3
- package/src/grammar/.antlr/BlendMongoParser.java +11 -11
- package/src/grammar/.antlr/BlendReactLexer.interp +1 -1
- package/src/grammar/.antlr/BlendReactLexer.java +1 -1
- package/src/grammar/BlendExpress.g4 +26 -0
- package/src/grammar/BlendMongo.g4 +1 -1
- package/src/grammar/BlendReact.g4 +1 -1
- package/src/helper/ExpressHelper.ts +153 -141
- package/src/helper/FrontEndApiHelper.ts +13 -14
- package/src/helper/FrontEndReactApiHelper.ts +6 -6
- package/src/helper/MongoHelper.ts +9 -2
- package/src/helper/RNHelper.ts +76 -70
- package/src/helper/ReactHelper.ts +10 -2
- package/src/helper/grammarHelper/BlendApiGrammarHelper.ts +46 -6
- package/src/helper/grammarHelper/BlendMongoGrammarHelper.ts +4 -3
- package/src/index.ts +3 -2
- package/src/parser/blendExpress/src/grammar/BlendExpress.interp +70 -0
- package/src/parser/blendExpress/src/grammar/BlendExpress.tokens +44 -0
- package/src/parser/blendExpress/src/grammar/BlendExpressLexer.interp +89 -0
- package/src/parser/blendExpress/src/grammar/BlendExpressLexer.tokens +44 -0
- package/src/parser/blendExpress/src/grammar/BlendExpressLexer.ts +193 -0
- package/src/parser/blendExpress/src/grammar/BlendExpressListener.ts +145 -0
- package/src/parser/blendExpress/src/grammar/BlendExpressParser.ts +968 -0
- package/src/parser/blendReact/src/grammar/BlendReactLexer.interp +1 -1
- package/src/parser/blendReact/src/grammar/BlendReactLexer.ts +1 -1
- package/src/types/apiOperationTypes.ts +12 -0
- package/tsconfig.json +1 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
T__0=1
|
|
2
|
+
T__1=2
|
|
3
|
+
T__2=3
|
|
4
|
+
T__3=4
|
|
5
|
+
T__4=5
|
|
6
|
+
T__5=6
|
|
7
|
+
T__6=7
|
|
8
|
+
T__7=8
|
|
9
|
+
T__8=9
|
|
10
|
+
T__9=10
|
|
11
|
+
T__10=11
|
|
12
|
+
T__11=12
|
|
13
|
+
T__12=13
|
|
14
|
+
T__13=14
|
|
15
|
+
T__14=15
|
|
16
|
+
T__15=16
|
|
17
|
+
T__16=17
|
|
18
|
+
T__17=18
|
|
19
|
+
T__18=19
|
|
20
|
+
T__19=20
|
|
21
|
+
HTTP_METHOD=21
|
|
22
|
+
IDENTIFIER=22
|
|
23
|
+
CAPITAL_IDENTIFIER=23
|
|
24
|
+
WS=24
|
|
25
|
+
'section'=1
|
|
26
|
+
'{'=2
|
|
27
|
+
'}'=3
|
|
28
|
+
'module'=4
|
|
29
|
+
'api'=5
|
|
30
|
+
'('=6
|
|
31
|
+
')'=7
|
|
32
|
+
'authenticated'=8
|
|
33
|
+
'input('=9
|
|
34
|
+
','=10
|
|
35
|
+
'output('=11
|
|
36
|
+
':'=12
|
|
37
|
+
'[]'=13
|
|
38
|
+
'?'=14
|
|
39
|
+
'->'=15
|
|
40
|
+
'string'=16
|
|
41
|
+
'number'=17
|
|
42
|
+
'boolean'=18
|
|
43
|
+
'any'=19
|
|
44
|
+
'object'=20
|