Skip to content

Commit dfab0ed

Browse files
author
Lasim
committed
feature(backend): re-build the global settings - added name param
1 parent 772c0fa commit dfab0ed

File tree

21 files changed

+5508
-32
lines changed

21 files changed

+5508
-32
lines changed

services/backend/api-spec.json

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6121,6 +6121,16 @@
61216121
"maxLength": 255,
61226122
"pattern": "^[a-zA-Z0-9._-]+$"
61236123
},
6124+
"name": {
6125+
"anyOf": [
6126+
{
6127+
"type": "string"
6128+
},
6129+
{
6130+
"type": "null"
6131+
}
6132+
]
6133+
},
61246134
"value": {
61256135
"type": "string"
61266136
},
@@ -6290,6 +6300,9 @@
62906300
"maxLength": 255,
62916301
"pattern": "^[a-zA-Z0-9._-]+$"
62926302
},
6303+
"name": {
6304+
"type": "string"
6305+
},
62936306
"value": {
62946307
"type": [
62956308
"string",
@@ -6356,6 +6369,16 @@
63566369
"maxLength": 255,
63576370
"pattern": "^[a-zA-Z0-9._-]+$"
63586371
},
6372+
"name": {
6373+
"anyOf": [
6374+
{
6375+
"type": "string"
6376+
},
6377+
{
6378+
"type": "null"
6379+
}
6380+
]
6381+
},
63596382
"value": {
63606383
"type": "string"
63616384
},
@@ -6623,6 +6646,16 @@
66236646
"maxLength": 255,
66246647
"pattern": "^[a-zA-Z0-9._-]+$"
66256648
},
6649+
"name": {
6650+
"anyOf": [
6651+
{
6652+
"type": "string"
6653+
},
6654+
{
6655+
"type": "null"
6656+
}
6657+
]
6658+
},
66266659
"value": {
66276660
"type": "string"
66286661
},
@@ -6821,6 +6854,9 @@
68216854
"schema": {
68226855
"type": "object",
68236856
"properties": {
6857+
"name": {
6858+
"type": "string"
6859+
},
68246860
"value": {
68256861
"type": "string",
68266862
"minLength": 1
@@ -6881,6 +6917,16 @@
68816917
"maxLength": 255,
68826918
"pattern": "^[a-zA-Z0-9._-]+$"
68836919
},
6920+
"name": {
6921+
"anyOf": [
6922+
{
6923+
"type": "string"
6924+
},
6925+
{
6926+
"type": "null"
6927+
}
6928+
]
6929+
},
68846930
"value": {
68856931
"type": "string"
68866932
},
@@ -7345,6 +7391,16 @@
73457391
"maxLength": 255,
73467392
"pattern": "^[a-zA-Z0-9._-]+$"
73477393
},
7394+
"name": {
7395+
"anyOf": [
7396+
{
7397+
"type": "string"
7398+
},
7399+
{
7400+
"type": "null"
7401+
}
7402+
]
7403+
},
73487404
"value": {
73497405
"type": "string"
73507406
},
@@ -7555,6 +7611,9 @@
75557611
"maxLength": 255,
75567612
"pattern": "^[a-zA-Z0-9._-]+$"
75577613
},
7614+
"name": {
7615+
"type": "string"
7616+
},
75587617
"value": {
75597618
"type": [
75607619
"string",
@@ -7630,6 +7689,16 @@
76307689
"maxLength": 255,
76317690
"pattern": "^[a-zA-Z0-9._-]+$"
76327691
},
7692+
"name": {
7693+
"anyOf": [
7694+
{
7695+
"type": "string"
7696+
},
7697+
{
7698+
"type": "null"
7699+
}
7700+
]
7701+
},
76337702
"value": {
76347703
"type": "string"
76357704
},
@@ -7732,6 +7801,16 @@
77327801
"maxLength": 255,
77337802
"pattern": "^[a-zA-Z0-9._-]+$"
77347803
},
7804+
"name": {
7805+
"anyOf": [
7806+
{
7807+
"type": "string"
7808+
},
7809+
{
7810+
"type": "null"
7811+
}
7812+
]
7813+
},
77357814
"value": {
77367815
"type": "string"
77377816
},
@@ -8022,6 +8101,16 @@
80228101
"maxLength": 255,
80238102
"pattern": "^[a-zA-Z0-9._-]+$"
80248103
},
8104+
"name": {
8105+
"anyOf": [
8106+
{
8107+
"type": "string"
8108+
},
8109+
{
8110+
"type": "null"
8111+
}
8112+
]
8113+
},
80258114
"value": {
80268115
"type": "string"
80278116
},
@@ -8245,6 +8334,16 @@
82458334
"maxLength": 255,
82468335
"pattern": "^[a-zA-Z0-9._-]+$"
82478336
},
8337+
"name": {
8338+
"anyOf": [
8339+
{
8340+
"type": "string"
8341+
},
8342+
{
8343+
"type": "null"
8344+
}
8345+
]
8346+
},
82488347
"value": {
82498348
"type": "string"
82508349
},

services/backend/api-spec.yaml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4214,6 +4214,10 @@ paths:
42144214
minLength: 1
42154215
maxLength: 255
42164216
pattern: ^[a-zA-Z0-9._-]+$
4217+
name:
4218+
anyOf:
4219+
- type: string
4220+
- type: "null"
42174221
value:
42184222
type: string
42194223
type:
@@ -4331,6 +4335,8 @@ paths:
43314335
minLength: 1
43324336
maxLength: 255
43334337
pattern: ^[a-zA-Z0-9._-]+$
4338+
name:
4339+
type: string
43344340
value:
43354341
type:
43364342
- string
@@ -4379,6 +4385,10 @@ paths:
43794385
minLength: 1
43804386
maxLength: 255
43814387
pattern: ^[a-zA-Z0-9._-]+$
4388+
name:
4389+
anyOf:
4390+
- type: string
4391+
- type: "null"
43824392
value:
43834393
type: string
43844394
type:
@@ -4565,6 +4575,10 @@ paths:
45654575
minLength: 1
45664576
maxLength: 255
45674577
pattern: ^[a-zA-Z0-9._-]+$
4578+
name:
4579+
anyOf:
4580+
- type: string
4581+
- type: "null"
45684582
value:
45694583
type: string
45704584
type:
@@ -4701,6 +4715,8 @@ paths:
47014715
schema:
47024716
type: object
47034717
properties:
4718+
name:
4719+
type: string
47044720
value:
47054721
type: string
47064722
minLength: 1
@@ -4743,6 +4759,10 @@ paths:
47434759
minLength: 1
47444760
maxLength: 255
47454761
pattern: ^[a-zA-Z0-9._-]+$
4762+
name:
4763+
anyOf:
4764+
- type: string
4765+
- type: "null"
47464766
value:
47474767
type: string
47484768
type:
@@ -5065,6 +5085,10 @@ paths:
50655085
minLength: 1
50665086
maxLength: 255
50675087
pattern: ^[a-zA-Z0-9._-]+$
5088+
name:
5089+
anyOf:
5090+
- type: string
5091+
- type: "null"
50685092
value:
50695093
type: string
50705094
type:
@@ -5212,6 +5236,8 @@ paths:
52125236
minLength: 1
52135237
maxLength: 255
52145238
pattern: ^[a-zA-Z0-9._-]+$
5239+
name:
5240+
type: string
52155241
value:
52165242
type:
52175243
- string
@@ -5265,6 +5291,10 @@ paths:
52655291
minLength: 1
52665292
maxLength: 255
52675293
pattern: ^[a-zA-Z0-9._-]+$
5294+
name:
5295+
anyOf:
5296+
- type: string
5297+
- type: "null"
52685298
value:
52695299
type: string
52705300
type:
@@ -5339,6 +5369,10 @@ paths:
53395369
minLength: 1
53405370
maxLength: 255
53415371
pattern: ^[a-zA-Z0-9._-]+$
5372+
name:
5373+
anyOf:
5374+
- type: string
5375+
- type: "null"
53425376
value:
53435377
type: string
53445378
type:
@@ -5540,6 +5574,10 @@ paths:
55405574
minLength: 1
55415575
maxLength: 255
55425576
pattern: ^[a-zA-Z0-9._-]+$
5577+
name:
5578+
anyOf:
5579+
- type: string
5580+
- type: "null"
55435581
value:
55445582
type: string
55455583
type:
@@ -5696,6 +5734,10 @@ paths:
56965734
minLength: 1
56975735
maxLength: 255
56985736
pattern: ^[a-zA-Z0-9._-]+$
5737+
name:
5738+
anyOf:
5739+
- type: string
5740+
- type: "null"
56995741
value:
57005742
type: string
57015743
type:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE "globalSettings" ADD COLUMN "name" text;

0 commit comments

Comments
 (0)