@creopse/vue 0.0.48 → 0.0.50
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/index.cjs +9 -9
- package/dist/index.js +9 -9
- package/dist/index.mjs +1061 -1023
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/types/composables/config.d.ts +1 -1
- package/types/core/props-manager.d.ts +99 -0
- package/types/types/plugin.d.ts +1 -1
|
@@ -158,6 +158,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
158
158
|
readonly name: string;
|
|
159
159
|
readonly displayName: string;
|
|
160
160
|
readonly description: string;
|
|
161
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
161
162
|
readonly createdAt?: string | undefined;
|
|
162
163
|
readonly updatedAt?: string | undefined;
|
|
163
164
|
}[] | undefined;
|
|
@@ -167,11 +168,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
167
168
|
readonly name: string;
|
|
168
169
|
readonly displayName: string;
|
|
169
170
|
readonly description: string;
|
|
171
|
+
readonly guardName: string;
|
|
170
172
|
readonly permissions?: readonly {
|
|
171
173
|
readonly id?: number | undefined;
|
|
172
174
|
readonly name: string;
|
|
173
175
|
readonly displayName: string;
|
|
174
176
|
readonly description: string;
|
|
177
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
175
178
|
readonly createdAt?: string | undefined;
|
|
176
179
|
readonly updatedAt?: string | undefined;
|
|
177
180
|
}[] | undefined;
|
|
@@ -263,6 +266,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
263
266
|
readonly name: string;
|
|
264
267
|
readonly displayName: string;
|
|
265
268
|
readonly description: string;
|
|
269
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
266
270
|
readonly createdAt?: string | undefined;
|
|
267
271
|
readonly updatedAt?: string | undefined;
|
|
268
272
|
}[] | undefined;
|
|
@@ -272,11 +276,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
272
276
|
readonly name: string;
|
|
273
277
|
readonly displayName: string;
|
|
274
278
|
readonly description: string;
|
|
279
|
+
readonly guardName: string;
|
|
275
280
|
readonly permissions?: readonly {
|
|
276
281
|
readonly id?: number | undefined;
|
|
277
282
|
readonly name: string;
|
|
278
283
|
readonly displayName: string;
|
|
279
284
|
readonly description: string;
|
|
285
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
280
286
|
readonly createdAt?: string | undefined;
|
|
281
287
|
readonly updatedAt?: string | undefined;
|
|
282
288
|
}[] | undefined;
|
|
@@ -413,6 +419,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
413
419
|
readonly name: string;
|
|
414
420
|
readonly displayName: string;
|
|
415
421
|
readonly description: string;
|
|
422
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
416
423
|
readonly createdAt?: string | undefined;
|
|
417
424
|
readonly updatedAt?: string | undefined;
|
|
418
425
|
}[] | undefined;
|
|
@@ -422,11 +429,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
422
429
|
readonly name: string;
|
|
423
430
|
readonly displayName: string;
|
|
424
431
|
readonly description: string;
|
|
432
|
+
readonly guardName: string;
|
|
425
433
|
readonly permissions?: readonly {
|
|
426
434
|
readonly id?: number | undefined;
|
|
427
435
|
readonly name: string;
|
|
428
436
|
readonly displayName: string;
|
|
429
437
|
readonly description: string;
|
|
438
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
430
439
|
readonly createdAt?: string | undefined;
|
|
431
440
|
readonly updatedAt?: string | undefined;
|
|
432
441
|
}[] | undefined;
|
|
@@ -543,6 +552,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
543
552
|
readonly name: string;
|
|
544
553
|
readonly displayName: string;
|
|
545
554
|
readonly description: string;
|
|
555
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
546
556
|
readonly createdAt?: string | undefined;
|
|
547
557
|
readonly updatedAt?: string | undefined;
|
|
548
558
|
}[] | undefined;
|
|
@@ -552,11 +562,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
552
562
|
readonly name: string;
|
|
553
563
|
readonly displayName: string;
|
|
554
564
|
readonly description: string;
|
|
565
|
+
readonly guardName: string;
|
|
555
566
|
readonly permissions?: readonly {
|
|
556
567
|
readonly id?: number | undefined;
|
|
557
568
|
readonly name: string;
|
|
558
569
|
readonly displayName: string;
|
|
559
570
|
readonly description: string;
|
|
571
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
560
572
|
readonly createdAt?: string | undefined;
|
|
561
573
|
readonly updatedAt?: string | undefined;
|
|
562
574
|
}[] | undefined;
|
|
@@ -648,6 +660,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
648
660
|
readonly name: string;
|
|
649
661
|
readonly displayName: string;
|
|
650
662
|
readonly description: string;
|
|
663
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
651
664
|
readonly createdAt?: string | undefined;
|
|
652
665
|
readonly updatedAt?: string | undefined;
|
|
653
666
|
}[] | undefined;
|
|
@@ -657,11 +670,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
657
670
|
readonly name: string;
|
|
658
671
|
readonly displayName: string;
|
|
659
672
|
readonly description: string;
|
|
673
|
+
readonly guardName: string;
|
|
660
674
|
readonly permissions?: readonly {
|
|
661
675
|
readonly id?: number | undefined;
|
|
662
676
|
readonly name: string;
|
|
663
677
|
readonly displayName: string;
|
|
664
678
|
readonly description: string;
|
|
679
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
665
680
|
readonly createdAt?: string | undefined;
|
|
666
681
|
readonly updatedAt?: string | undefined;
|
|
667
682
|
}[] | undefined;
|
|
@@ -798,6 +813,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
798
813
|
readonly name: string;
|
|
799
814
|
readonly displayName: string;
|
|
800
815
|
readonly description: string;
|
|
816
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
801
817
|
readonly createdAt?: string | undefined;
|
|
802
818
|
readonly updatedAt?: string | undefined;
|
|
803
819
|
}[] | undefined;
|
|
@@ -807,11 +823,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
807
823
|
readonly name: string;
|
|
808
824
|
readonly displayName: string;
|
|
809
825
|
readonly description: string;
|
|
826
|
+
readonly guardName: string;
|
|
810
827
|
readonly permissions?: readonly {
|
|
811
828
|
readonly id?: number | undefined;
|
|
812
829
|
readonly name: string;
|
|
813
830
|
readonly displayName: string;
|
|
814
831
|
readonly description: string;
|
|
832
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
815
833
|
readonly createdAt?: string | undefined;
|
|
816
834
|
readonly updatedAt?: string | undefined;
|
|
817
835
|
}[] | undefined;
|
|
@@ -963,6 +981,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
963
981
|
readonly name: string;
|
|
964
982
|
readonly displayName: string;
|
|
965
983
|
readonly description: string;
|
|
984
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
966
985
|
readonly createdAt?: string | undefined;
|
|
967
986
|
readonly updatedAt?: string | undefined;
|
|
968
987
|
}[] | undefined;
|
|
@@ -972,11 +991,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
972
991
|
readonly name: string;
|
|
973
992
|
readonly displayName: string;
|
|
974
993
|
readonly description: string;
|
|
994
|
+
readonly guardName: string;
|
|
975
995
|
readonly permissions?: readonly {
|
|
976
996
|
readonly id?: number | undefined;
|
|
977
997
|
readonly name: string;
|
|
978
998
|
readonly displayName: string;
|
|
979
999
|
readonly description: string;
|
|
1000
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
980
1001
|
readonly createdAt?: string | undefined;
|
|
981
1002
|
readonly updatedAt?: string | undefined;
|
|
982
1003
|
}[] | undefined;
|
|
@@ -1068,6 +1089,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1068
1089
|
readonly name: string;
|
|
1069
1090
|
readonly displayName: string;
|
|
1070
1091
|
readonly description: string;
|
|
1092
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1071
1093
|
readonly createdAt?: string | undefined;
|
|
1072
1094
|
readonly updatedAt?: string | undefined;
|
|
1073
1095
|
}[] | undefined;
|
|
@@ -1077,11 +1099,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1077
1099
|
readonly name: string;
|
|
1078
1100
|
readonly displayName: string;
|
|
1079
1101
|
readonly description: string;
|
|
1102
|
+
readonly guardName: string;
|
|
1080
1103
|
readonly permissions?: readonly {
|
|
1081
1104
|
readonly id?: number | undefined;
|
|
1082
1105
|
readonly name: string;
|
|
1083
1106
|
readonly displayName: string;
|
|
1084
1107
|
readonly description: string;
|
|
1108
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1085
1109
|
readonly createdAt?: string | undefined;
|
|
1086
1110
|
readonly updatedAt?: string | undefined;
|
|
1087
1111
|
}[] | undefined;
|
|
@@ -1201,6 +1225,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1201
1225
|
readonly name: string;
|
|
1202
1226
|
readonly displayName: string;
|
|
1203
1227
|
readonly description: string;
|
|
1228
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1204
1229
|
readonly createdAt?: string | undefined;
|
|
1205
1230
|
readonly updatedAt?: string | undefined;
|
|
1206
1231
|
}[] | undefined;
|
|
@@ -1210,11 +1235,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1210
1235
|
readonly name: string;
|
|
1211
1236
|
readonly displayName: string;
|
|
1212
1237
|
readonly description: string;
|
|
1238
|
+
readonly guardName: string;
|
|
1213
1239
|
readonly permissions?: readonly {
|
|
1214
1240
|
readonly id?: number | undefined;
|
|
1215
1241
|
readonly name: string;
|
|
1216
1242
|
readonly displayName: string;
|
|
1217
1243
|
readonly description: string;
|
|
1244
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1218
1245
|
readonly createdAt?: string | undefined;
|
|
1219
1246
|
readonly updatedAt?: string | undefined;
|
|
1220
1247
|
}[] | undefined;
|
|
@@ -1342,6 +1369,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1342
1369
|
readonly name: string;
|
|
1343
1370
|
readonly displayName: string;
|
|
1344
1371
|
readonly description: string;
|
|
1372
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1345
1373
|
readonly createdAt?: string | undefined;
|
|
1346
1374
|
readonly updatedAt?: string | undefined;
|
|
1347
1375
|
}[] | undefined;
|
|
@@ -1351,11 +1379,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1351
1379
|
readonly name: string;
|
|
1352
1380
|
readonly displayName: string;
|
|
1353
1381
|
readonly description: string;
|
|
1382
|
+
readonly guardName: string;
|
|
1354
1383
|
readonly permissions?: readonly {
|
|
1355
1384
|
readonly id?: number | undefined;
|
|
1356
1385
|
readonly name: string;
|
|
1357
1386
|
readonly displayName: string;
|
|
1358
1387
|
readonly description: string;
|
|
1388
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1359
1389
|
readonly createdAt?: string | undefined;
|
|
1360
1390
|
readonly updatedAt?: string | undefined;
|
|
1361
1391
|
}[] | undefined;
|
|
@@ -1447,6 +1477,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1447
1477
|
readonly name: string;
|
|
1448
1478
|
readonly displayName: string;
|
|
1449
1479
|
readonly description: string;
|
|
1480
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1450
1481
|
readonly createdAt?: string | undefined;
|
|
1451
1482
|
readonly updatedAt?: string | undefined;
|
|
1452
1483
|
}[] | undefined;
|
|
@@ -1456,11 +1487,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1456
1487
|
readonly name: string;
|
|
1457
1488
|
readonly displayName: string;
|
|
1458
1489
|
readonly description: string;
|
|
1490
|
+
readonly guardName: string;
|
|
1459
1491
|
readonly permissions?: readonly {
|
|
1460
1492
|
readonly id?: number | undefined;
|
|
1461
1493
|
readonly name: string;
|
|
1462
1494
|
readonly displayName: string;
|
|
1463
1495
|
readonly description: string;
|
|
1496
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1464
1497
|
readonly createdAt?: string | undefined;
|
|
1465
1498
|
readonly updatedAt?: string | undefined;
|
|
1466
1499
|
}[] | undefined;
|
|
@@ -1585,6 +1618,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1585
1618
|
readonly name: string;
|
|
1586
1619
|
readonly displayName: string;
|
|
1587
1620
|
readonly description: string;
|
|
1621
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1588
1622
|
readonly createdAt?: string | undefined;
|
|
1589
1623
|
readonly updatedAt?: string | undefined;
|
|
1590
1624
|
}[] | undefined;
|
|
@@ -1594,11 +1628,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1594
1628
|
readonly name: string;
|
|
1595
1629
|
readonly displayName: string;
|
|
1596
1630
|
readonly description: string;
|
|
1631
|
+
readonly guardName: string;
|
|
1597
1632
|
readonly permissions?: readonly {
|
|
1598
1633
|
readonly id?: number | undefined;
|
|
1599
1634
|
readonly name: string;
|
|
1600
1635
|
readonly displayName: string;
|
|
1601
1636
|
readonly description: string;
|
|
1637
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1602
1638
|
readonly createdAt?: string | undefined;
|
|
1603
1639
|
readonly updatedAt?: string | undefined;
|
|
1604
1640
|
}[] | undefined;
|
|
@@ -1716,6 +1752,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1716
1752
|
readonly name: string;
|
|
1717
1753
|
readonly displayName: string;
|
|
1718
1754
|
readonly description: string;
|
|
1755
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1719
1756
|
readonly createdAt?: string | undefined;
|
|
1720
1757
|
readonly updatedAt?: string | undefined;
|
|
1721
1758
|
}[] | undefined;
|
|
@@ -1725,11 +1762,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1725
1762
|
readonly name: string;
|
|
1726
1763
|
readonly displayName: string;
|
|
1727
1764
|
readonly description: string;
|
|
1765
|
+
readonly guardName: string;
|
|
1728
1766
|
readonly permissions?: readonly {
|
|
1729
1767
|
readonly id?: number | undefined;
|
|
1730
1768
|
readonly name: string;
|
|
1731
1769
|
readonly displayName: string;
|
|
1732
1770
|
readonly description: string;
|
|
1771
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1733
1772
|
readonly createdAt?: string | undefined;
|
|
1734
1773
|
readonly updatedAt?: string | undefined;
|
|
1735
1774
|
}[] | undefined;
|
|
@@ -1821,6 +1860,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1821
1860
|
readonly name: string;
|
|
1822
1861
|
readonly displayName: string;
|
|
1823
1862
|
readonly description: string;
|
|
1863
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1824
1864
|
readonly createdAt?: string | undefined;
|
|
1825
1865
|
readonly updatedAt?: string | undefined;
|
|
1826
1866
|
}[] | undefined;
|
|
@@ -1830,11 +1870,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1830
1870
|
readonly name: string;
|
|
1831
1871
|
readonly displayName: string;
|
|
1832
1872
|
readonly description: string;
|
|
1873
|
+
readonly guardName: string;
|
|
1833
1874
|
readonly permissions?: readonly {
|
|
1834
1875
|
readonly id?: number | undefined;
|
|
1835
1876
|
readonly name: string;
|
|
1836
1877
|
readonly displayName: string;
|
|
1837
1878
|
readonly description: string;
|
|
1879
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1838
1880
|
readonly createdAt?: string | undefined;
|
|
1839
1881
|
readonly updatedAt?: string | undefined;
|
|
1840
1882
|
}[] | undefined;
|
|
@@ -1971,6 +2013,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1971
2013
|
readonly name: string;
|
|
1972
2014
|
readonly displayName: string;
|
|
1973
2015
|
readonly description: string;
|
|
2016
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1974
2017
|
readonly createdAt?: string | undefined;
|
|
1975
2018
|
readonly updatedAt?: string | undefined;
|
|
1976
2019
|
}[] | undefined;
|
|
@@ -1980,11 +2023,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
1980
2023
|
readonly name: string;
|
|
1981
2024
|
readonly displayName: string;
|
|
1982
2025
|
readonly description: string;
|
|
2026
|
+
readonly guardName: string;
|
|
1983
2027
|
readonly permissions?: readonly {
|
|
1984
2028
|
readonly id?: number | undefined;
|
|
1985
2029
|
readonly name: string;
|
|
1986
2030
|
readonly displayName: string;
|
|
1987
2031
|
readonly description: string;
|
|
2032
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
1988
2033
|
readonly createdAt?: string | undefined;
|
|
1989
2034
|
readonly updatedAt?: string | undefined;
|
|
1990
2035
|
}[] | undefined;
|
|
@@ -2115,6 +2160,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2115
2160
|
readonly name: string;
|
|
2116
2161
|
readonly displayName: string;
|
|
2117
2162
|
readonly description: string;
|
|
2163
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2118
2164
|
readonly createdAt?: string | undefined;
|
|
2119
2165
|
readonly updatedAt?: string | undefined;
|
|
2120
2166
|
}[] | undefined;
|
|
@@ -2124,11 +2170,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2124
2170
|
readonly name: string;
|
|
2125
2171
|
readonly displayName: string;
|
|
2126
2172
|
readonly description: string;
|
|
2173
|
+
readonly guardName: string;
|
|
2127
2174
|
readonly permissions?: readonly {
|
|
2128
2175
|
readonly id?: number | undefined;
|
|
2129
2176
|
readonly name: string;
|
|
2130
2177
|
readonly displayName: string;
|
|
2131
2178
|
readonly description: string;
|
|
2179
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2132
2180
|
readonly createdAt?: string | undefined;
|
|
2133
2181
|
readonly updatedAt?: string | undefined;
|
|
2134
2182
|
}[] | undefined;
|
|
@@ -2220,6 +2268,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2220
2268
|
readonly name: string;
|
|
2221
2269
|
readonly displayName: string;
|
|
2222
2270
|
readonly description: string;
|
|
2271
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2223
2272
|
readonly createdAt?: string | undefined;
|
|
2224
2273
|
readonly updatedAt?: string | undefined;
|
|
2225
2274
|
}[] | undefined;
|
|
@@ -2229,11 +2278,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2229
2278
|
readonly name: string;
|
|
2230
2279
|
readonly displayName: string;
|
|
2231
2280
|
readonly description: string;
|
|
2281
|
+
readonly guardName: string;
|
|
2232
2282
|
readonly permissions?: readonly {
|
|
2233
2283
|
readonly id?: number | undefined;
|
|
2234
2284
|
readonly name: string;
|
|
2235
2285
|
readonly displayName: string;
|
|
2236
2286
|
readonly description: string;
|
|
2287
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2237
2288
|
readonly createdAt?: string | undefined;
|
|
2238
2289
|
readonly updatedAt?: string | undefined;
|
|
2239
2290
|
}[] | undefined;
|
|
@@ -2353,6 +2404,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2353
2404
|
readonly name: string;
|
|
2354
2405
|
readonly displayName: string;
|
|
2355
2406
|
readonly description: string;
|
|
2407
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2356
2408
|
readonly createdAt?: string | undefined;
|
|
2357
2409
|
readonly updatedAt?: string | undefined;
|
|
2358
2410
|
}[] | undefined;
|
|
@@ -2362,11 +2414,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2362
2414
|
readonly name: string;
|
|
2363
2415
|
readonly displayName: string;
|
|
2364
2416
|
readonly description: string;
|
|
2417
|
+
readonly guardName: string;
|
|
2365
2418
|
readonly permissions?: readonly {
|
|
2366
2419
|
readonly id?: number | undefined;
|
|
2367
2420
|
readonly name: string;
|
|
2368
2421
|
readonly displayName: string;
|
|
2369
2422
|
readonly description: string;
|
|
2423
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2370
2424
|
readonly createdAt?: string | undefined;
|
|
2371
2425
|
readonly updatedAt?: string | undefined;
|
|
2372
2426
|
}[] | undefined;
|
|
@@ -2494,6 +2548,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2494
2548
|
readonly name: string;
|
|
2495
2549
|
readonly displayName: string;
|
|
2496
2550
|
readonly description: string;
|
|
2551
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2497
2552
|
readonly createdAt?: string | undefined;
|
|
2498
2553
|
readonly updatedAt?: string | undefined;
|
|
2499
2554
|
}[] | undefined;
|
|
@@ -2503,11 +2558,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2503
2558
|
readonly name: string;
|
|
2504
2559
|
readonly displayName: string;
|
|
2505
2560
|
readonly description: string;
|
|
2561
|
+
readonly guardName: string;
|
|
2506
2562
|
readonly permissions?: readonly {
|
|
2507
2563
|
readonly id?: number | undefined;
|
|
2508
2564
|
readonly name: string;
|
|
2509
2565
|
readonly displayName: string;
|
|
2510
2566
|
readonly description: string;
|
|
2567
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2511
2568
|
readonly createdAt?: string | undefined;
|
|
2512
2569
|
readonly updatedAt?: string | undefined;
|
|
2513
2570
|
}[] | undefined;
|
|
@@ -2599,6 +2656,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2599
2656
|
readonly name: string;
|
|
2600
2657
|
readonly displayName: string;
|
|
2601
2658
|
readonly description: string;
|
|
2659
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2602
2660
|
readonly createdAt?: string | undefined;
|
|
2603
2661
|
readonly updatedAt?: string | undefined;
|
|
2604
2662
|
}[] | undefined;
|
|
@@ -2608,11 +2666,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2608
2666
|
readonly name: string;
|
|
2609
2667
|
readonly displayName: string;
|
|
2610
2668
|
readonly description: string;
|
|
2669
|
+
readonly guardName: string;
|
|
2611
2670
|
readonly permissions?: readonly {
|
|
2612
2671
|
readonly id?: number | undefined;
|
|
2613
2672
|
readonly name: string;
|
|
2614
2673
|
readonly displayName: string;
|
|
2615
2674
|
readonly description: string;
|
|
2675
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2616
2676
|
readonly createdAt?: string | undefined;
|
|
2617
2677
|
readonly updatedAt?: string | undefined;
|
|
2618
2678
|
}[] | undefined;
|
|
@@ -2737,6 +2797,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2737
2797
|
readonly name: string;
|
|
2738
2798
|
readonly displayName: string;
|
|
2739
2799
|
readonly description: string;
|
|
2800
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2740
2801
|
readonly createdAt?: string | undefined;
|
|
2741
2802
|
readonly updatedAt?: string | undefined;
|
|
2742
2803
|
}[] | undefined;
|
|
@@ -2746,11 +2807,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2746
2807
|
readonly name: string;
|
|
2747
2808
|
readonly displayName: string;
|
|
2748
2809
|
readonly description: string;
|
|
2810
|
+
readonly guardName: string;
|
|
2749
2811
|
readonly permissions?: readonly {
|
|
2750
2812
|
readonly id?: number | undefined;
|
|
2751
2813
|
readonly name: string;
|
|
2752
2814
|
readonly displayName: string;
|
|
2753
2815
|
readonly description: string;
|
|
2816
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2754
2817
|
readonly createdAt?: string | undefined;
|
|
2755
2818
|
readonly updatedAt?: string | undefined;
|
|
2756
2819
|
}[] | undefined;
|
|
@@ -2861,6 +2924,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2861
2924
|
readonly name: string;
|
|
2862
2925
|
readonly displayName: string;
|
|
2863
2926
|
readonly description: string;
|
|
2927
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2864
2928
|
readonly createdAt?: string | undefined;
|
|
2865
2929
|
readonly updatedAt?: string | undefined;
|
|
2866
2930
|
}[] | undefined;
|
|
@@ -2870,11 +2934,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
2870
2934
|
readonly name: string;
|
|
2871
2935
|
readonly displayName: string;
|
|
2872
2936
|
readonly description: string;
|
|
2937
|
+
readonly guardName: string;
|
|
2873
2938
|
readonly permissions?: readonly {
|
|
2874
2939
|
readonly id?: number | undefined;
|
|
2875
2940
|
readonly name: string;
|
|
2876
2941
|
readonly displayName: string;
|
|
2877
2942
|
readonly description: string;
|
|
2943
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
2878
2944
|
readonly createdAt?: string | undefined;
|
|
2879
2945
|
readonly updatedAt?: string | undefined;
|
|
2880
2946
|
}[] | undefined;
|
|
@@ -3049,6 +3115,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3049
3115
|
readonly name: string;
|
|
3050
3116
|
readonly displayName: string;
|
|
3051
3117
|
readonly description: string;
|
|
3118
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3052
3119
|
readonly createdAt?: string | undefined;
|
|
3053
3120
|
readonly updatedAt?: string | undefined;
|
|
3054
3121
|
}[] | undefined;
|
|
@@ -3058,11 +3125,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3058
3125
|
readonly name: string;
|
|
3059
3126
|
readonly displayName: string;
|
|
3060
3127
|
readonly description: string;
|
|
3128
|
+
readonly guardName: string;
|
|
3061
3129
|
readonly permissions?: readonly {
|
|
3062
3130
|
readonly id?: number | undefined;
|
|
3063
3131
|
readonly name: string;
|
|
3064
3132
|
readonly displayName: string;
|
|
3065
3133
|
readonly description: string;
|
|
3134
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3066
3135
|
readonly createdAt?: string | undefined;
|
|
3067
3136
|
readonly updatedAt?: string | undefined;
|
|
3068
3137
|
}[] | undefined;
|
|
@@ -3314,6 +3383,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3314
3383
|
readonly name: string;
|
|
3315
3384
|
readonly displayName: string;
|
|
3316
3385
|
readonly description: string;
|
|
3386
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3317
3387
|
readonly createdAt?: string | undefined;
|
|
3318
3388
|
readonly updatedAt?: string | undefined;
|
|
3319
3389
|
}[] | undefined;
|
|
@@ -3323,11 +3393,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3323
3393
|
readonly name: string;
|
|
3324
3394
|
readonly displayName: string;
|
|
3325
3395
|
readonly description: string;
|
|
3396
|
+
readonly guardName: string;
|
|
3326
3397
|
readonly permissions?: readonly {
|
|
3327
3398
|
readonly id?: number | undefined;
|
|
3328
3399
|
readonly name: string;
|
|
3329
3400
|
readonly displayName: string;
|
|
3330
3401
|
readonly description: string;
|
|
3402
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3331
3403
|
readonly createdAt?: string | undefined;
|
|
3332
3404
|
readonly updatedAt?: string | undefined;
|
|
3333
3405
|
}[] | undefined;
|
|
@@ -3419,6 +3491,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3419
3491
|
readonly name: string;
|
|
3420
3492
|
readonly displayName: string;
|
|
3421
3493
|
readonly description: string;
|
|
3494
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3422
3495
|
readonly createdAt?: string | undefined;
|
|
3423
3496
|
readonly updatedAt?: string | undefined;
|
|
3424
3497
|
}[] | undefined;
|
|
@@ -3428,11 +3501,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3428
3501
|
readonly name: string;
|
|
3429
3502
|
readonly displayName: string;
|
|
3430
3503
|
readonly description: string;
|
|
3504
|
+
readonly guardName: string;
|
|
3431
3505
|
readonly permissions?: readonly {
|
|
3432
3506
|
readonly id?: number | undefined;
|
|
3433
3507
|
readonly name: string;
|
|
3434
3508
|
readonly displayName: string;
|
|
3435
3509
|
readonly description: string;
|
|
3510
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3436
3511
|
readonly createdAt?: string | undefined;
|
|
3437
3512
|
readonly updatedAt?: string | undefined;
|
|
3438
3513
|
}[] | undefined;
|
|
@@ -3569,6 +3644,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3569
3644
|
readonly name: string;
|
|
3570
3645
|
readonly displayName: string;
|
|
3571
3646
|
readonly description: string;
|
|
3647
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3572
3648
|
readonly createdAt?: string | undefined;
|
|
3573
3649
|
readonly updatedAt?: string | undefined;
|
|
3574
3650
|
}[] | undefined;
|
|
@@ -3578,11 +3654,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3578
3654
|
readonly name: string;
|
|
3579
3655
|
readonly displayName: string;
|
|
3580
3656
|
readonly description: string;
|
|
3657
|
+
readonly guardName: string;
|
|
3581
3658
|
readonly permissions?: readonly {
|
|
3582
3659
|
readonly id?: number | undefined;
|
|
3583
3660
|
readonly name: string;
|
|
3584
3661
|
readonly displayName: string;
|
|
3585
3662
|
readonly description: string;
|
|
3663
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3586
3664
|
readonly createdAt?: string | undefined;
|
|
3587
3665
|
readonly updatedAt?: string | undefined;
|
|
3588
3666
|
}[] | undefined;
|
|
@@ -3712,6 +3790,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3712
3790
|
readonly name: string;
|
|
3713
3791
|
readonly displayName: string;
|
|
3714
3792
|
readonly description: string;
|
|
3793
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3715
3794
|
readonly createdAt?: string | undefined;
|
|
3716
3795
|
readonly updatedAt?: string | undefined;
|
|
3717
3796
|
}[] | undefined;
|
|
@@ -3721,11 +3800,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3721
3800
|
readonly name: string;
|
|
3722
3801
|
readonly displayName: string;
|
|
3723
3802
|
readonly description: string;
|
|
3803
|
+
readonly guardName: string;
|
|
3724
3804
|
readonly permissions?: readonly {
|
|
3725
3805
|
readonly id?: number | undefined;
|
|
3726
3806
|
readonly name: string;
|
|
3727
3807
|
readonly displayName: string;
|
|
3728
3808
|
readonly description: string;
|
|
3809
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3729
3810
|
readonly createdAt?: string | undefined;
|
|
3730
3811
|
readonly updatedAt?: string | undefined;
|
|
3731
3812
|
}[] | undefined;
|
|
@@ -3817,6 +3898,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3817
3898
|
readonly name: string;
|
|
3818
3899
|
readonly displayName: string;
|
|
3819
3900
|
readonly description: string;
|
|
3901
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3820
3902
|
readonly createdAt?: string | undefined;
|
|
3821
3903
|
readonly updatedAt?: string | undefined;
|
|
3822
3904
|
}[] | undefined;
|
|
@@ -3826,11 +3908,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3826
3908
|
readonly name: string;
|
|
3827
3909
|
readonly displayName: string;
|
|
3828
3910
|
readonly description: string;
|
|
3911
|
+
readonly guardName: string;
|
|
3829
3912
|
readonly permissions?: readonly {
|
|
3830
3913
|
readonly id?: number | undefined;
|
|
3831
3914
|
readonly name: string;
|
|
3832
3915
|
readonly displayName: string;
|
|
3833
3916
|
readonly description: string;
|
|
3917
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3834
3918
|
readonly createdAt?: string | undefined;
|
|
3835
3919
|
readonly updatedAt?: string | undefined;
|
|
3836
3920
|
}[] | undefined;
|
|
@@ -3950,6 +4034,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3950
4034
|
readonly name: string;
|
|
3951
4035
|
readonly displayName: string;
|
|
3952
4036
|
readonly description: string;
|
|
4037
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3953
4038
|
readonly createdAt?: string | undefined;
|
|
3954
4039
|
readonly updatedAt?: string | undefined;
|
|
3955
4040
|
}[] | undefined;
|
|
@@ -3959,11 +4044,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
3959
4044
|
readonly name: string;
|
|
3960
4045
|
readonly displayName: string;
|
|
3961
4046
|
readonly description: string;
|
|
4047
|
+
readonly guardName: string;
|
|
3962
4048
|
readonly permissions?: readonly {
|
|
3963
4049
|
readonly id?: number | undefined;
|
|
3964
4050
|
readonly name: string;
|
|
3965
4051
|
readonly displayName: string;
|
|
3966
4052
|
readonly description: string;
|
|
4053
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
3967
4054
|
readonly createdAt?: string | undefined;
|
|
3968
4055
|
readonly updatedAt?: string | undefined;
|
|
3969
4056
|
}[] | undefined;
|
|
@@ -4090,6 +4177,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
4090
4177
|
readonly name: string;
|
|
4091
4178
|
readonly displayName: string;
|
|
4092
4179
|
readonly description: string;
|
|
4180
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
4093
4181
|
readonly createdAt?: string | undefined;
|
|
4094
4182
|
readonly updatedAt?: string | undefined;
|
|
4095
4183
|
}[] | undefined;
|
|
@@ -4099,11 +4187,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
4099
4187
|
readonly name: string;
|
|
4100
4188
|
readonly displayName: string;
|
|
4101
4189
|
readonly description: string;
|
|
4190
|
+
readonly guardName: string;
|
|
4102
4191
|
readonly permissions?: readonly {
|
|
4103
4192
|
readonly id?: number | undefined;
|
|
4104
4193
|
readonly name: string;
|
|
4105
4194
|
readonly displayName: string;
|
|
4106
4195
|
readonly description: string;
|
|
4196
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
4107
4197
|
readonly createdAt?: string | undefined;
|
|
4108
4198
|
readonly updatedAt?: string | undefined;
|
|
4109
4199
|
}[] | undefined;
|
|
@@ -4195,6 +4285,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
4195
4285
|
readonly name: string;
|
|
4196
4286
|
readonly displayName: string;
|
|
4197
4287
|
readonly description: string;
|
|
4288
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
4198
4289
|
readonly createdAt?: string | undefined;
|
|
4199
4290
|
readonly updatedAt?: string | undefined;
|
|
4200
4291
|
}[] | undefined;
|
|
@@ -4204,11 +4295,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
4204
4295
|
readonly name: string;
|
|
4205
4296
|
readonly displayName: string;
|
|
4206
4297
|
readonly description: string;
|
|
4298
|
+
readonly guardName: string;
|
|
4207
4299
|
readonly permissions?: readonly {
|
|
4208
4300
|
readonly id?: number | undefined;
|
|
4209
4301
|
readonly name: string;
|
|
4210
4302
|
readonly displayName: string;
|
|
4211
4303
|
readonly description: string;
|
|
4304
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
4212
4305
|
readonly createdAt?: string | undefined;
|
|
4213
4306
|
readonly updatedAt?: string | undefined;
|
|
4214
4307
|
}[] | undefined;
|
|
@@ -4333,6 +4426,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
4333
4426
|
readonly name: string;
|
|
4334
4427
|
readonly displayName: string;
|
|
4335
4428
|
readonly description: string;
|
|
4429
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
4336
4430
|
readonly createdAt?: string | undefined;
|
|
4337
4431
|
readonly updatedAt?: string | undefined;
|
|
4338
4432
|
}[] | undefined;
|
|
@@ -4342,11 +4436,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
4342
4436
|
readonly name: string;
|
|
4343
4437
|
readonly displayName: string;
|
|
4344
4438
|
readonly description: string;
|
|
4439
|
+
readonly guardName: string;
|
|
4345
4440
|
readonly permissions?: readonly {
|
|
4346
4441
|
readonly id?: number | undefined;
|
|
4347
4442
|
readonly name: string;
|
|
4348
4443
|
readonly displayName: string;
|
|
4349
4444
|
readonly description: string;
|
|
4445
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
4350
4446
|
readonly createdAt?: string | undefined;
|
|
4351
4447
|
readonly updatedAt?: string | undefined;
|
|
4352
4448
|
}[] | undefined;
|
|
@@ -4456,6 +4552,7 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
4456
4552
|
readonly name: string;
|
|
4457
4553
|
readonly displayName: string;
|
|
4458
4554
|
readonly description: string;
|
|
4555
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
4459
4556
|
readonly createdAt?: string | undefined;
|
|
4460
4557
|
readonly updatedAt?: string | undefined;
|
|
4461
4558
|
}[] | undefined;
|
|
@@ -4465,11 +4562,13 @@ declare class PropsManager<T extends Props = Props> {
|
|
|
4465
4562
|
readonly name: string;
|
|
4466
4563
|
readonly displayName: string;
|
|
4467
4564
|
readonly description: string;
|
|
4565
|
+
readonly guardName: string;
|
|
4468
4566
|
readonly permissions?: readonly {
|
|
4469
4567
|
readonly id?: number | undefined;
|
|
4470
4568
|
readonly name: string;
|
|
4471
4569
|
readonly displayName: string;
|
|
4472
4570
|
readonly description: string;
|
|
4571
|
+
readonly guardName: import("@creopse/utils/dist/enums/access-guard.js").AccessGuard;
|
|
4473
4572
|
readonly createdAt?: string | undefined;
|
|
4474
4573
|
readonly updatedAt?: string | undefined;
|
|
4475
4574
|
}[] | undefined;
|