@digi-frontend/dgate-api-documentation 1.0.81 → 1.0.83
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/dist/styles.css
CHANGED
|
@@ -917,6 +917,117 @@
|
|
|
917
917
|
width: 0.625rem;
|
|
918
918
|
aspect-ratio: 1/1;
|
|
919
919
|
border-radius: 100%;
|
|
920
|
+
}.json-editor-container {
|
|
921
|
+
overflow: hidden;
|
|
922
|
+
border-bottom-right-radius: 0.3125rem;
|
|
923
|
+
border-bottom-left-radius: 0.3125rem;
|
|
924
|
+
}
|
|
925
|
+
.json-editor-container .json-editor-label {
|
|
926
|
+
font-size: 0.875rem;
|
|
927
|
+
font-weight: 600;
|
|
928
|
+
line-height: 1.25rem;
|
|
929
|
+
margin-bottom: 0.3125rem;
|
|
930
|
+
}
|
|
931
|
+
.json-editor-container .json-editor {
|
|
932
|
+
display: flex;
|
|
933
|
+
flex-direction: column;
|
|
934
|
+
background-color: #142452;
|
|
935
|
+
width: 100%;
|
|
936
|
+
outline: 1px solid transparent;
|
|
937
|
+
position: relative;
|
|
938
|
+
overflow: hidden;
|
|
939
|
+
}
|
|
940
|
+
.json-editor-container .json-editor .actions-container {
|
|
941
|
+
width: 100%;
|
|
942
|
+
height: 5rem;
|
|
943
|
+
padding: 1.25rem;
|
|
944
|
+
border-radius: 0 0 0.3125rem 0.3125rem;
|
|
945
|
+
background: #101e47;
|
|
946
|
+
display: flex;
|
|
947
|
+
flex-direction: row;
|
|
948
|
+
gap: 1.25rem;
|
|
949
|
+
align-items: center;
|
|
950
|
+
}
|
|
951
|
+
.json-editor-container .json-editor .actions-container .validate {
|
|
952
|
+
color: #fff;
|
|
953
|
+
text-align: center;
|
|
954
|
+
font-size: 1rem;
|
|
955
|
+
font-style: normal;
|
|
956
|
+
font-weight: 600;
|
|
957
|
+
line-height: 1.25rem;
|
|
958
|
+
width: 8.75rem;
|
|
959
|
+
padding: 0.625rem 2.25rem;
|
|
960
|
+
background-color: rgba(240, 248, 255, 0);
|
|
961
|
+
border-radius: 0.3125rem;
|
|
962
|
+
border: 0.0625rem solid #4d75d8;
|
|
963
|
+
cursor: pointer;
|
|
964
|
+
}
|
|
965
|
+
.json-editor-container .json-editor .actions-container .validate:disabled {
|
|
966
|
+
color: #babdcc;
|
|
967
|
+
border-color: #a2a5b6;
|
|
968
|
+
}
|
|
969
|
+
.json-editor-container .json-editor .actions-container .beautify {
|
|
970
|
+
color: #fff;
|
|
971
|
+
text-align: center;
|
|
972
|
+
font-size: 1rem;
|
|
973
|
+
font-style: normal;
|
|
974
|
+
font-weight: 600;
|
|
975
|
+
line-height: 1.25rem;
|
|
976
|
+
width: 8.75rem;
|
|
977
|
+
padding: 0.625rem 2.25rem;
|
|
978
|
+
background-color: rgba(240, 248, 255, 0);
|
|
979
|
+
border-radius: 0.3125rem;
|
|
980
|
+
border: 1px solid #babdcc;
|
|
981
|
+
cursor: pointer;
|
|
982
|
+
}
|
|
983
|
+
.json-editor-container .json-editor .actions-container .beautify:disabled {
|
|
984
|
+
color: #a2a5b6;
|
|
985
|
+
border-color: #a2a5b6;
|
|
986
|
+
}
|
|
987
|
+
.json-editor-container .json-editor textarea {
|
|
988
|
+
width: 100%;
|
|
989
|
+
padding: 1.25rem;
|
|
990
|
+
font-size: 0.875rem;
|
|
991
|
+
font-style: normal;
|
|
992
|
+
font-weight: 400;
|
|
993
|
+
line-height: 1.25rem;
|
|
994
|
+
color: white;
|
|
995
|
+
height: 25rem;
|
|
996
|
+
background-color: #142452;
|
|
997
|
+
border: none;
|
|
998
|
+
resize: none;
|
|
999
|
+
}
|
|
1000
|
+
.json-editor-container .json-editor textarea:focus, .json-editor-container .json-editor textarea:focus-within, .json-editor-container .json-editor textarea:focus-visible .json-editor-container .json-editor textarea:active {
|
|
1001
|
+
outline: none;
|
|
1002
|
+
border: none;
|
|
1003
|
+
}
|
|
1004
|
+
.json-editor-container .json-editor textarea::-webkit-scrollbar {
|
|
1005
|
+
width: 0.5rem;
|
|
1006
|
+
}
|
|
1007
|
+
.json-editor-container .json-editor textarea::-webkit-scrollbar-track {
|
|
1008
|
+
background-color: #828699;
|
|
1009
|
+
border: none;
|
|
1010
|
+
border-color: transparent;
|
|
1011
|
+
border-top-left-radius: 0;
|
|
1012
|
+
}
|
|
1013
|
+
.json-editor-container .json-editor textarea::-webkit-scrollbar-thumb {
|
|
1014
|
+
background-color: #d8dae5;
|
|
1015
|
+
border: none;
|
|
1016
|
+
border-color: transparent;
|
|
1017
|
+
border-radius: 0;
|
|
1018
|
+
}
|
|
1019
|
+
.json-editor-container .json-editor.invalid {
|
|
1020
|
+
outline: 1px solid #ce2828 !important;
|
|
1021
|
+
}
|
|
1022
|
+
.json-editor-container .error-message {
|
|
1023
|
+
color: #ce2828;
|
|
1024
|
+
font-size: 0.75rem;
|
|
1025
|
+
line-height: 1.25rem;
|
|
1026
|
+
margin-top: 0.625rem;
|
|
1027
|
+
}
|
|
1028
|
+
.json-editor-container.disabled .json-editor textarea {
|
|
1029
|
+
background-color: white;
|
|
1030
|
+
color: #12131a;
|
|
920
1031
|
}:root {
|
|
921
1032
|
--white: #fff;
|
|
922
1033
|
--Gray-5: #f1f2f6;
|
|
@@ -1291,117 +1402,6 @@ div.endBtnIcon {
|
|
|
1291
1402
|
.tableSectionContainer .descArrow path,
|
|
1292
1403
|
.tableSectionContainer .defaultSortArrow path {
|
|
1293
1404
|
fill: var(--Gray-50);
|
|
1294
|
-
}.json-editor-container {
|
|
1295
|
-
overflow: hidden;
|
|
1296
|
-
border-bottom-right-radius: 0.3125rem;
|
|
1297
|
-
border-bottom-left-radius: 0.3125rem;
|
|
1298
|
-
}
|
|
1299
|
-
.json-editor-container .json-editor-label {
|
|
1300
|
-
font-size: 0.875rem;
|
|
1301
|
-
font-weight: 600;
|
|
1302
|
-
line-height: 1.25rem;
|
|
1303
|
-
margin-bottom: 0.3125rem;
|
|
1304
|
-
}
|
|
1305
|
-
.json-editor-container .json-editor {
|
|
1306
|
-
display: flex;
|
|
1307
|
-
flex-direction: column;
|
|
1308
|
-
background-color: #142452;
|
|
1309
|
-
width: 100%;
|
|
1310
|
-
outline: 1px solid transparent;
|
|
1311
|
-
position: relative;
|
|
1312
|
-
overflow: hidden;
|
|
1313
|
-
}
|
|
1314
|
-
.json-editor-container .json-editor .actions-container {
|
|
1315
|
-
width: 100%;
|
|
1316
|
-
height: 5rem;
|
|
1317
|
-
padding: 1.25rem;
|
|
1318
|
-
border-radius: 0 0 0.3125rem 0.3125rem;
|
|
1319
|
-
background: #101e47;
|
|
1320
|
-
display: flex;
|
|
1321
|
-
flex-direction: row;
|
|
1322
|
-
gap: 1.25rem;
|
|
1323
|
-
align-items: center;
|
|
1324
|
-
}
|
|
1325
|
-
.json-editor-container .json-editor .actions-container .validate {
|
|
1326
|
-
color: #fff;
|
|
1327
|
-
text-align: center;
|
|
1328
|
-
font-size: 1rem;
|
|
1329
|
-
font-style: normal;
|
|
1330
|
-
font-weight: 600;
|
|
1331
|
-
line-height: 1.25rem;
|
|
1332
|
-
width: 8.75rem;
|
|
1333
|
-
padding: 0.625rem 2.25rem;
|
|
1334
|
-
background-color: rgba(240, 248, 255, 0);
|
|
1335
|
-
border-radius: 0.3125rem;
|
|
1336
|
-
border: 0.0625rem solid #4d75d8;
|
|
1337
|
-
cursor: pointer;
|
|
1338
|
-
}
|
|
1339
|
-
.json-editor-container .json-editor .actions-container .validate:disabled {
|
|
1340
|
-
color: #babdcc;
|
|
1341
|
-
border-color: #a2a5b6;
|
|
1342
|
-
}
|
|
1343
|
-
.json-editor-container .json-editor .actions-container .beautify {
|
|
1344
|
-
color: #fff;
|
|
1345
|
-
text-align: center;
|
|
1346
|
-
font-size: 1rem;
|
|
1347
|
-
font-style: normal;
|
|
1348
|
-
font-weight: 600;
|
|
1349
|
-
line-height: 1.25rem;
|
|
1350
|
-
width: 8.75rem;
|
|
1351
|
-
padding: 0.625rem 2.25rem;
|
|
1352
|
-
background-color: rgba(240, 248, 255, 0);
|
|
1353
|
-
border-radius: 0.3125rem;
|
|
1354
|
-
border: 1px solid #babdcc;
|
|
1355
|
-
cursor: pointer;
|
|
1356
|
-
}
|
|
1357
|
-
.json-editor-container .json-editor .actions-container .beautify:disabled {
|
|
1358
|
-
color: #a2a5b6;
|
|
1359
|
-
border-color: #a2a5b6;
|
|
1360
|
-
}
|
|
1361
|
-
.json-editor-container .json-editor textarea {
|
|
1362
|
-
width: 100%;
|
|
1363
|
-
padding: 1.25rem;
|
|
1364
|
-
font-size: 0.875rem;
|
|
1365
|
-
font-style: normal;
|
|
1366
|
-
font-weight: 400;
|
|
1367
|
-
line-height: 1.25rem;
|
|
1368
|
-
color: white;
|
|
1369
|
-
height: 25rem;
|
|
1370
|
-
background-color: #142452;
|
|
1371
|
-
border: none;
|
|
1372
|
-
resize: none;
|
|
1373
|
-
}
|
|
1374
|
-
.json-editor-container .json-editor textarea:focus, .json-editor-container .json-editor textarea:focus-within, .json-editor-container .json-editor textarea:focus-visible .json-editor-container .json-editor textarea:active {
|
|
1375
|
-
outline: none;
|
|
1376
|
-
border: none;
|
|
1377
|
-
}
|
|
1378
|
-
.json-editor-container .json-editor textarea::-webkit-scrollbar {
|
|
1379
|
-
width: 0.5rem;
|
|
1380
|
-
}
|
|
1381
|
-
.json-editor-container .json-editor textarea::-webkit-scrollbar-track {
|
|
1382
|
-
background-color: #828699;
|
|
1383
|
-
border: none;
|
|
1384
|
-
border-color: transparent;
|
|
1385
|
-
border-top-left-radius: 0;
|
|
1386
|
-
}
|
|
1387
|
-
.json-editor-container .json-editor textarea::-webkit-scrollbar-thumb {
|
|
1388
|
-
background-color: #d8dae5;
|
|
1389
|
-
border: none;
|
|
1390
|
-
border-color: transparent;
|
|
1391
|
-
border-radius: 0;
|
|
1392
|
-
}
|
|
1393
|
-
.json-editor-container .json-editor.invalid {
|
|
1394
|
-
outline: 1px solid #ce2828 !important;
|
|
1395
|
-
}
|
|
1396
|
-
.json-editor-container .error-message {
|
|
1397
|
-
color: #ce2828;
|
|
1398
|
-
font-size: 0.75rem;
|
|
1399
|
-
line-height: 1.25rem;
|
|
1400
|
-
margin-top: 0.625rem;
|
|
1401
|
-
}
|
|
1402
|
-
.json-editor-container.disabled .json-editor textarea {
|
|
1403
|
-
background-color: white;
|
|
1404
|
-
color: #12131a;
|
|
1405
1405
|
}.api-docs-api-tree {
|
|
1406
1406
|
width: 100%;
|
|
1407
1407
|
max-width: 12.5rem;
|
|
@@ -1557,11 +1557,12 @@ div.endBtnIcon {
|
|
|
1557
1557
|
.api-docs-api-tree__endpoint--patch .api-docs-api-tree__endpoint-method {
|
|
1558
1558
|
color: #58e2c2;
|
|
1559
1559
|
}.api_docs_header {
|
|
1560
|
-
height:
|
|
1560
|
+
height: 3.125rem;
|
|
1561
1561
|
background-color: #f0f1f2;
|
|
1562
1562
|
display: flex;
|
|
1563
1563
|
align-items: center;
|
|
1564
1564
|
padding: 0 1rem;
|
|
1565
|
+
z-index: 1;
|
|
1565
1566
|
}
|
|
1566
1567
|
.api_docs_header .header_content {
|
|
1567
1568
|
width: 100%;
|
|
@@ -1583,7 +1584,7 @@ div.endBtnIcon {
|
|
|
1583
1584
|
line-height: 1.25rem;
|
|
1584
1585
|
}
|
|
1585
1586
|
.api_docs_header .search_filter_btn:hover:not(:disabled) {
|
|
1586
|
-
color: #000000;
|
|
1587
|
+
color: #000000 !important;
|
|
1587
1588
|
}
|
|
1588
1589
|
.api_docs_header .search_filter_btn:hover {
|
|
1589
1590
|
color: #000;
|
|
@@ -1616,14 +1617,14 @@ div.endBtnIcon {
|
|
|
1616
1617
|
border: none !important;
|
|
1617
1618
|
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
|
|
1618
1619
|
padding: 0.4rem;
|
|
1619
|
-
width:
|
|
1620
|
-
font-size:
|
|
1620
|
+
width: 9.4875rem;
|
|
1621
|
+
font-size: 1rem;
|
|
1621
1622
|
font-weight: 400;
|
|
1622
1623
|
line-height: 1.234rem;
|
|
1623
1624
|
height: 2.25rem;
|
|
1624
1625
|
}
|
|
1625
1626
|
.api_docs_header .api_btn:hover:not(:disabled) {
|
|
1626
|
-
color: #000000;
|
|
1627
|
+
color: #000000 !important;
|
|
1627
1628
|
}
|
|
1628
1629
|
.api_docs_header .api_btn svg {
|
|
1629
1630
|
margin-right: 0.4075rem;
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
.api_docs_header {
|
|
2
|
-
height:
|
|
2
|
+
height: 3.125rem;
|
|
3
3
|
background-color: #f0f1f2;
|
|
4
4
|
display: flex;
|
|
5
5
|
align-items: center;
|
|
6
6
|
padding: 0 1rem;
|
|
7
|
+
z-index: 1;
|
|
7
8
|
|
|
8
9
|
.header_content {
|
|
9
10
|
width: 100%;
|
|
@@ -27,7 +28,7 @@
|
|
|
27
28
|
line-height: 1.25rem;
|
|
28
29
|
|
|
29
30
|
&:hover:not(:disabled) {
|
|
30
|
-
color: #000000;
|
|
31
|
+
color: #000000 !important;
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
&:hover {
|
|
@@ -67,14 +68,14 @@
|
|
|
67
68
|
border: none !important;
|
|
68
69
|
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
|
|
69
70
|
padding: 0.4rem;
|
|
70
|
-
width:
|
|
71
|
-
font-size:
|
|
71
|
+
width: 9.4875rem;
|
|
72
|
+
font-size: 1rem;
|
|
72
73
|
font-weight: 400;
|
|
73
74
|
line-height: 1.234rem;
|
|
74
75
|
height: 2.25rem;
|
|
75
76
|
|
|
76
77
|
&:hover:not(:disabled) {
|
|
77
|
-
color: #000000;
|
|
78
|
+
color: #000000 !important;
|
|
78
79
|
}
|
|
79
80
|
|
|
80
81
|
svg {
|
package/variables.txt
CHANGED
package/the_npm_commands.sh
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bash
|
|
2
|
-
#export CODEARTIFACT_AUTH_TOKEN=`aws codeartifact get-authorization-token --domain digitinary --domain-owner 650046438355 --region eu-central-1 --query authorizationToken --output text`
|
|
3
|
-
|
|
4
|
-
set -e
|
|
5
|
-
|
|
6
|
-
npm install
|
|
7
|
-
|
|
8
|
-
npm version patch --no-git-tag-version
|
|
9
|
-
|
|
10
|
-
npm run build
|
|
11
|
-
|
|
12
|
-
npm publish
|