Skip to content

Commit 259ab90

Browse files
author
Teamcity
committed
skip-ci: Release: 0.1.9
1 parent 534059c commit 259ab90

File tree

8 files changed

+57
-126
lines changed

8 files changed

+57
-126
lines changed

.github/workflows/fake-pr-tests.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

adapter/0.1.10.json

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
/**
2+
* Copyright © 2016-2022 by IntegrIT S.A. dba Hackolade. All rights reserved.
3+
*
4+
* The copyright to the computer software herein is the property of IntegrIT S.A.
5+
* The software may be used and/or copied only with the written permission of
6+
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
7+
* the agreement/contract under which the software has been supplied.
8+
*
9+
* {
10+
* "add": {
11+
* "entity": [<names of new property>],
12+
* "container": [<names of new property>],
13+
* "model": [<names of new property>],
14+
* "view": [<names of new property>],
15+
* "field": {
16+
* "<type>": [<names of new property>]
17+
* }
18+
* },
19+
* "delete": {
20+
* "entity": [<names of new property>],
21+
* "container": [<names of new property>],
22+
* "model": [<names of new property>],
23+
* "view": [<names of new property>],
24+
* "field": {
25+
* "<type>": [<names of new property>]
26+
* }
27+
* },
28+
* "modify": {
29+
* "entity": [
30+
* {
31+
* "from": { <properties that identify record> },
32+
* "to": { <properties that need to be changed> }
33+
* }
34+
* ],
35+
* "container": [],
36+
* "model": [],
37+
* "view": [],
38+
* "field": []
39+
* },
40+
* }
41+
*/
42+
{
43+
"modify": {
44+
"container": [
45+
["validateContainer", "name", "code"]
46+
],
47+
"entity": [
48+
["validateEntity", "collectionName", "code"]
49+
],
50+
"field": [
51+
["validateField", "name", "code"]
52+
]
53+
}
54+
}

forward_engineering/api.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "DocumentDB",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"versionDate": "2023-08-03",
55
"author": "hackolade",
66
"engines": {

properties_pane/container_level/containerLevelConfig.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,6 @@ making sure that you maintain a proper JSON format.
119119
"lowerTab": "Details",
120120
"containerLevelKeys": [],
121121
"structure": [
122-
{
123-
"propertyKeyword": "name",
124-
"validation": {
125-
"regex": "^[\\s\\S]{1,63}$",
126-
"required": true
127-
}
128-
},
129122
{
130123
"propertyKeyword": "code",
131124
"validation": {

properties_pane/entity_level/entityLevelConfig.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,6 @@ making sure that you maintain a proper JSON format.
118118
{
119119
"lowerTab": "Details",
120120
"structure": [
121-
{
122-
"propertyKeyword": "collectionName",
123-
"validation": {
124-
"regex": "^[\\s\\S]{1,57}$",
125-
"required": true
126-
}
127-
},
128121
{
129122
"propertyKeyword": "code",
130123
"validation": {

properties_pane/field_level/fieldLevelConfig.json

Lines changed: 0 additions & 91 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,6 @@ making sure that you maintain a proper JSON format.
118118
"lowerTab": "JsonDetails",
119119
"structure": {
120120
"objectId": [
121-
{
122-
"fieldKeyword": "name",
123-
"validation": {
124-
"regex": "^(\\$id|\\$ref|\\$db|(?![\\s\\S]*\\.)(?!\\$[\\s\\S]*)([\\s\\S]*))$",
125-
"required": true
126-
}
127-
},
128121
{
129122
"fieldKeyword": "code",
130123
"validation": {
@@ -144,13 +137,6 @@ making sure that you maintain a proper JSON format.
144137
"comments"
145138
],
146139
"string": [
147-
{
148-
"fieldKeyword": "name",
149-
"validation": {
150-
"regex": "^(\\$id|\\$ref|\\$db|(?![\\s\\S]*\\.)(?!\\$[\\s\\S]*)([\\s\\S]*))$",
151-
"required": true
152-
}
153-
},
154140
{
155141
"fieldKeyword": "code",
156142
"validation": {
@@ -176,13 +162,6 @@ making sure that you maintain a proper JSON format.
176162
"comments"
177163
],
178164
"numeric": [
179-
{
180-
"fieldKeyword": "name",
181-
"validation": {
182-
"regex": "^(\\$id|\\$ref|\\$db|(?![\\s\\S]*\\.)(?!\\$[\\s\\S]*)([\\s\\S]*))$",
183-
"required": true
184-
}
185-
},
186165
{
187166
"fieldKeyword": "code",
188167
"validation": {
@@ -218,13 +197,6 @@ making sure that you maintain a proper JSON format.
218197
"comments"
219198
],
220199
"boolean": [
221-
{
222-
"fieldKeyword": "name",
223-
"validation": {
224-
"regex": "^(\\$id|\\$ref|\\$db|(?![\\s\\S]*\\.)(?!\\$[\\s\\S]*)([\\s\\S]*))$",
225-
"required": true
226-
}
227-
},
228200
{
229201
"fieldKeyword": "code",
230202
"validation": {
@@ -241,13 +213,6 @@ making sure that you maintain a proper JSON format.
241213
"comments"
242214
],
243215
"object": [
244-
{
245-
"fieldKeyword": "name",
246-
"validation": {
247-
"regex": "^(\\$id|\\$ref|\\$db|(?![\\s\\S]*\\.)(?!\\$[\\s\\S]*)([\\s\\S]*))$",
248-
"required": true
249-
}
250-
},
251216
{
252217
"fieldKeyword": "code",
253218
"validation": {
@@ -265,13 +230,6 @@ making sure that you maintain a proper JSON format.
265230
"comments"
266231
],
267232
"array": [
268-
{
269-
"fieldKeyword": "name",
270-
"validation": {
271-
"regex": "^(\\$id|\\$ref|\\$db|(?![\\s\\S]*\\.)(?!\\$[\\s\\S]*)([\\s\\S]*))$",
272-
"required": true
273-
}
274-
},
275233
{
276234
"fieldKeyword": "code",
277235
"validation": {
@@ -290,13 +248,6 @@ making sure that you maintain a proper JSON format.
290248
"comments"
291249
],
292250
"binary": [
293-
{
294-
"fieldKeyword": "name",
295-
"validation": {
296-
"regex": "^(\\$id|\\$ref|\\$db|(?![\\s\\S]*\\.)(?!\\$[\\s\\S]*)([\\s\\S]*))$",
297-
"required": true
298-
}
299-
},
300251
{
301252
"fieldKeyword": "code",
302253
"validation": {
@@ -312,13 +263,6 @@ making sure that you maintain a proper JSON format.
312263
"comments"
313264
],
314265
"date": [
315-
{
316-
"fieldKeyword": "name",
317-
"validation": {
318-
"regex": "^(\\$id|\\$ref|\\$db|(?![\\s\\S]*\\.)(?!\\$[\\s\\S]*)([\\s\\S]*))$",
319-
"required": true
320-
}
321-
},
322266
{
323267
"fieldKeyword": "code",
324268
"validation": {
@@ -343,13 +287,6 @@ making sure that you maintain a proper JSON format.
343287
"comments"
344288
],
345289
"timestamp": [
346-
{
347-
"fieldKeyword": "name",
348-
"validation": {
349-
"regex": "^(\\$id|\\$ref|\\$db|(?![\\s\\S]*\\.)(?!\\$[\\s\\S]*)([\\s\\S]*))$",
350-
"required": true
351-
}
352-
},
353290
{
354291
"fieldKeyword": "code",
355292
"validation": {
@@ -366,13 +303,6 @@ making sure that you maintain a proper JSON format.
366303
"comments"
367304
],
368305
"regex": [
369-
{
370-
"fieldKeyword": "name",
371-
"validation": {
372-
"regex": "^(\\$id|\\$ref|\\$db|(?![\\s\\S]*\\.)(?!\\$[\\s\\S]*)([\\s\\S]*))$",
373-
"required": true
374-
}
375-
},
376306
{
377307
"fieldKeyword": "code",
378308
"validation": {
@@ -389,13 +319,6 @@ making sure that you maintain a proper JSON format.
389319
"comments"
390320
],
391321
"null": [
392-
{
393-
"fieldKeyword": "name",
394-
"validation": {
395-
"regex": "^(\\$id|\\$ref|\\$db|(?![\\s\\S]*\\.)(?!\\$[\\s\\S]*)([\\s\\S]*))$",
396-
"required": true
397-
}
398-
},
399322
{
400323
"fieldKeyword": "code",
401324
"validation": {
@@ -408,13 +331,6 @@ making sure that you maintain a proper JSON format.
408331
"comments"
409332
],
410333
"minKey": [
411-
{
412-
"fieldKeyword": "name",
413-
"validation": {
414-
"regex": "^(\\$id|\\$ref|\\$db|(?![\\s\\S]*\\.)(?!\\$[\\s\\S]*)([\\s\\S]*))$",
415-
"required": true
416-
}
417-
},
418334
{
419335
"fieldKeyword": "code",
420336
"validation": {
@@ -431,13 +347,6 @@ making sure that you maintain a proper JSON format.
431347
"comments"
432348
],
433349
"maxKey": [
434-
{
435-
"fieldKeyword": "name",
436-
"validation": {
437-
"regex": "^(\\$id|\\$ref|\\$db|(?![\\s\\S]*\\.)(?!\\$[\\s\\S]*)([\\s\\S]*))$",
438-
"required": true
439-
}
440-
},
441350
{
442351
"fieldKeyword": "code",
443352
"validation": {

reverse_engineering/api.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)