rapida-partner 1.16.8 → 1.16.10
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.
|
@@ -18,13 +18,13 @@ export interface IProject {
|
|
|
18
18
|
businessPlan?: IBusinessPLan;
|
|
19
19
|
businessRules?: IBusinessRule[];
|
|
20
20
|
flow:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
21
|
+
| "backofficeByInvitationWithoutPermissions"
|
|
22
|
+
| "backofficeByInvitationAndPermissionsByComponent"
|
|
23
|
+
| "backofficeOpenedWithoutPermissions"
|
|
24
|
+
| "backofficeOpenedAndPermissionsByComponent"
|
|
25
|
+
| "marketplace"
|
|
26
|
+
| "landingPage"
|
|
27
|
+
| "socialNetwork";
|
|
28
28
|
frontend?: IFrontend;
|
|
29
29
|
backend?: IBackend;
|
|
30
30
|
modules?: IModule[];
|
|
@@ -56,11 +56,15 @@ export interface IBusinessRule {
|
|
|
56
56
|
type: "frontend" | "backend" | "both";
|
|
57
57
|
details: string;
|
|
58
58
|
};
|
|
59
|
+
backendComplementaryCode?: string;
|
|
60
|
+
frontendComplementaryCode?: string;
|
|
59
61
|
}[];
|
|
60
62
|
implementation?: {
|
|
61
63
|
type: "frontend" | "backend" | "both";
|
|
62
64
|
details: string;
|
|
63
65
|
};
|
|
66
|
+
backendComplementaryCode?: string;
|
|
67
|
+
frontendComplementaryCode?: string;
|
|
64
68
|
};
|
|
65
69
|
}
|
|
66
70
|
|
|
@@ -16,13 +16,26 @@
|
|
|
16
16
|
"properties": {
|
|
17
17
|
"type": {
|
|
18
18
|
"type": "string",
|
|
19
|
-
"enum": [
|
|
19
|
+
"enum": [
|
|
20
|
+
"frontend",
|
|
21
|
+
"backend",
|
|
22
|
+
"both"
|
|
23
|
+
]
|
|
20
24
|
},
|
|
21
25
|
"details": {
|
|
22
26
|
"type": "string"
|
|
23
27
|
}
|
|
24
28
|
},
|
|
25
|
-
"required": [
|
|
29
|
+
"required": [
|
|
30
|
+
"type",
|
|
31
|
+
"details"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"backendComplementaryCode": {
|
|
35
|
+
"type": "string"
|
|
36
|
+
},
|
|
37
|
+
"frontendComplementaryCode": {
|
|
38
|
+
"type": "string"
|
|
26
39
|
},
|
|
27
40
|
"subrules": {
|
|
28
41
|
"type": "array",
|
|
@@ -40,13 +53,26 @@
|
|
|
40
53
|
"properties": {
|
|
41
54
|
"type": {
|
|
42
55
|
"type": "string",
|
|
43
|
-
"enum": [
|
|
56
|
+
"enum": [
|
|
57
|
+
"frontend",
|
|
58
|
+
"backend",
|
|
59
|
+
"both"
|
|
60
|
+
]
|
|
44
61
|
},
|
|
45
62
|
"details": {
|
|
46
63
|
"type": "string"
|
|
47
64
|
}
|
|
48
65
|
},
|
|
49
|
-
"required": [
|
|
66
|
+
"required": [
|
|
67
|
+
"type",
|
|
68
|
+
"details"
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
"backendComplementaryCode": {
|
|
72
|
+
"type": "string"
|
|
73
|
+
},
|
|
74
|
+
"frontendComplementaryCode": {
|
|
75
|
+
"type": "string"
|
|
50
76
|
}
|
|
51
77
|
}
|
|
52
78
|
}
|
|
@@ -46,7 +46,10 @@
|
|
|
46
46
|
"type": "array",
|
|
47
47
|
"items": {
|
|
48
48
|
"type": "string",
|
|
49
|
-
"enum": [
|
|
49
|
+
"enum": [
|
|
50
|
+
"cpf",
|
|
51
|
+
"cnpj"
|
|
52
|
+
]
|
|
50
53
|
}
|
|
51
54
|
},
|
|
52
55
|
"todo": {
|
|
@@ -81,7 +84,10 @@
|
|
|
81
84
|
},
|
|
82
85
|
"paramType": {
|
|
83
86
|
"type": "string",
|
|
84
|
-
"enum": [
|
|
87
|
+
"enum": [
|
|
88
|
+
"query",
|
|
89
|
+
"path"
|
|
90
|
+
]
|
|
85
91
|
},
|
|
86
92
|
"populate": {
|
|
87
93
|
"type": "array",
|
|
@@ -142,7 +148,10 @@
|
|
|
142
148
|
},
|
|
143
149
|
"paramType": {
|
|
144
150
|
"type": "string",
|
|
145
|
-
"enum": [
|
|
151
|
+
"enum": [
|
|
152
|
+
"query",
|
|
153
|
+
"path"
|
|
154
|
+
]
|
|
146
155
|
},
|
|
147
156
|
"populate": {
|
|
148
157
|
"type": "array",
|
|
@@ -181,7 +190,18 @@
|
|
|
181
190
|
},
|
|
182
191
|
"isMultiple": {
|
|
183
192
|
"type": "boolean"
|
|
193
|
+
},
|
|
194
|
+
"elementsToClearOnValueChange": {
|
|
195
|
+
"type": "array",
|
|
196
|
+
"items": {
|
|
197
|
+
"type": "string"
|
|
198
|
+
}
|
|
184
199
|
}
|
|
185
200
|
},
|
|
186
|
-
"required": [
|
|
187
|
-
|
|
201
|
+
"required": [
|
|
202
|
+
"type",
|
|
203
|
+
"dataType",
|
|
204
|
+
"name",
|
|
205
|
+
"label"
|
|
206
|
+
]
|
|
207
|
+
}
|