@happyvertical/smrt-core 0.37.6 → 0.37.8
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/AGENTS.md +17 -6
- package/dist/collection.d.ts +7 -0
- package/dist/collection.d.ts.map +1 -1
- package/dist/collection.js +2 -0
- package/dist/collection.js.map +1 -1
- package/dist/consumer-plugin/index.js +26 -3
- package/dist/consumer-plugin/index.js.map +1 -1
- package/dist/dispatch/index.d.ts +1 -1
- package/dist/dispatch/index.d.ts.map +1 -1
- package/dist/dispatch/index.js +2 -2
- package/dist/dispatch/tenant-resolver.d.ts +23 -0
- package/dist/dispatch/tenant-resolver.d.ts.map +1 -1
- package/dist/dispatch/tenant-resolver.js +33 -1
- package/dist/dispatch/tenant-resolver.js.map +1 -1
- package/dist/generators/conditional-get.d.ts +120 -0
- package/dist/generators/conditional-get.d.ts.map +1 -0
- package/dist/generators/conditional-get.js +217 -0
- package/dist/generators/conditional-get.js.map +1 -0
- package/dist/generators/index.d.ts +1 -0
- package/dist/generators/index.d.ts.map +1 -1
- package/dist/generators/index.js +2 -1
- package/dist/generators/rest.d.ts +52 -0
- package/dist/generators/rest.d.ts.map +1 -1
- package/dist/generators/rest.js +146 -10
- package/dist/generators/rest.js.map +1 -1
- package/dist/generators.js +2 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -2
- package/dist/manifest/manifest-loader.d.ts +10 -1
- package/dist/manifest/manifest-loader.d.ts.map +1 -1
- package/dist/manifest/manifest-loader.js +18 -5
- package/dist/manifest/manifest-loader.js.map +1 -1
- package/dist/manifest/static-manifest.d.ts.map +1 -1
- package/dist/manifest/static-manifest.js +10 -2
- package/dist/manifest/static-manifest.js.map +1 -1
- package/dist/manifest/store.js +1 -1
- package/dist/manifest/store.js.map +1 -1
- package/dist/manifest/test-manifest-stub.d.ts.map +1 -1
- package/dist/manifest/test-manifest-stub.js +2108 -223
- package/dist/manifest/test-manifest-stub.js.map +1 -1
- package/dist/manifest.json +10 -2
- package/dist/object.d.ts +19 -0
- package/dist/object.d.ts.map +1 -1
- package/dist/object.js +24 -2
- package/dist/object.js.map +1 -1
- package/dist/registry/index.d.ts +1 -1
- package/dist/registry/index.d.ts.map +1 -1
- package/dist/registry/shared-state.d.ts +8 -1
- package/dist/registry/shared-state.d.ts.map +1 -1
- package/dist/registry/shared-state.js +11 -3
- package/dist/registry/shared-state.js.map +1 -1
- package/dist/registry/types.d.ts +34 -0
- package/dist/registry/types.d.ts.map +1 -1
- package/dist/smrt-knowledge.json +7 -6
- package/dist/sync/apply.d.ts +234 -0
- package/dist/sync/apply.d.ts.map +1 -0
- package/dist/sync/apply.js +378 -0
- package/dist/sync/apply.js.map +1 -0
- package/dist/utils/stack-frames.d.ts +50 -0
- package/dist/utils/stack-frames.d.ts.map +1 -0
- package/dist/utils/stack-frames.js +64 -0
- package/dist/utils/stack-frames.js.map +1 -0
- package/dist/vite-plugin/sveltekit-generator.d.ts.map +1 -1
- package/dist/vite-plugin/sveltekit-generator.js +60 -27
- package/dist/vite-plugin/sveltekit-generator.js.map +1 -1
- package/dist/vite-plugin/sync-apply-route.d.ts +40 -0
- package/dist/vite-plugin/sync-apply-route.d.ts.map +1 -0
- package/dist/vite-plugin/sync-apply-route.js +240 -0
- package/dist/vite-plugin/sync-apply-route.js.map +1 -0
- package/package.json +4 -4
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
//#region src/manifest/test-manifest-stub.ts
|
|
2
2
|
var testManifest = {
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"timestamp":
|
|
4
|
+
"timestamp": 1783059746659,
|
|
5
5
|
"packageName": "@happyvertical/smrt-core",
|
|
6
|
-
"packageVersion": "0.37.
|
|
6
|
+
"packageVersion": "0.37.8",
|
|
7
7
|
"objects": {
|
|
8
8
|
"@happyvertical/smrt-core:SmrtClass": {
|
|
9
9
|
"name": "smrtclass",
|
|
@@ -738,6 +738,14 @@ var testManifest = {
|
|
|
738
738
|
"isStatic": false,
|
|
739
739
|
"isPublic": true
|
|
740
740
|
},
|
|
741
|
+
"requireInsertOnSave": {
|
|
742
|
+
"name": "requireInsertOnSave",
|
|
743
|
+
"async": false,
|
|
744
|
+
"parameters": [],
|
|
745
|
+
"returnType": "void",
|
|
746
|
+
"isStatic": false,
|
|
747
|
+
"isPublic": true
|
|
748
|
+
},
|
|
741
749
|
"initialize": {
|
|
742
750
|
"name": "initialize",
|
|
743
751
|
"async": true,
|
|
@@ -1984,6 +1992,14 @@ var testManifest = {
|
|
|
1984
1992
|
"isStatic": false,
|
|
1985
1993
|
"isPublic": true
|
|
1986
1994
|
},
|
|
1995
|
+
"requireInsertOnSave": {
|
|
1996
|
+
"name": "requireInsertOnSave",
|
|
1997
|
+
"async": false,
|
|
1998
|
+
"parameters": [],
|
|
1999
|
+
"returnType": "void",
|
|
2000
|
+
"isStatic": false,
|
|
2001
|
+
"isPublic": true
|
|
2002
|
+
},
|
|
1987
2003
|
"initialize": {
|
|
1988
2004
|
"name": "initialize",
|
|
1989
2005
|
"async": true,
|
|
@@ -2520,6 +2536,14 @@ var testManifest = {
|
|
|
2520
2536
|
"isStatic": false,
|
|
2521
2537
|
"isPublic": true
|
|
2522
2538
|
},
|
|
2539
|
+
"requireInsertOnSave": {
|
|
2540
|
+
"name": "requireInsertOnSave",
|
|
2541
|
+
"async": false,
|
|
2542
|
+
"parameters": [],
|
|
2543
|
+
"returnType": "void",
|
|
2544
|
+
"isStatic": false,
|
|
2545
|
+
"isPublic": true
|
|
2546
|
+
},
|
|
2523
2547
|
"initialize": {
|
|
2524
2548
|
"name": "initialize",
|
|
2525
2549
|
"async": true,
|
|
@@ -3262,6 +3286,14 @@ var testManifest = {
|
|
|
3262
3286
|
"isStatic": false,
|
|
3263
3287
|
"isPublic": true
|
|
3264
3288
|
},
|
|
3289
|
+
"requireInsertOnSave": {
|
|
3290
|
+
"name": "requireInsertOnSave",
|
|
3291
|
+
"async": false,
|
|
3292
|
+
"parameters": [],
|
|
3293
|
+
"returnType": "void",
|
|
3294
|
+
"isStatic": false,
|
|
3295
|
+
"isPublic": true
|
|
3296
|
+
},
|
|
3265
3297
|
"initialize": {
|
|
3266
3298
|
"name": "initialize",
|
|
3267
3299
|
"async": true,
|
|
@@ -3788,6 +3820,14 @@ var testManifest = {
|
|
|
3788
3820
|
"isStatic": false,
|
|
3789
3821
|
"isPublic": true
|
|
3790
3822
|
},
|
|
3823
|
+
"requireInsertOnSave": {
|
|
3824
|
+
"name": "requireInsertOnSave",
|
|
3825
|
+
"async": false,
|
|
3826
|
+
"parameters": [],
|
|
3827
|
+
"returnType": "void",
|
|
3828
|
+
"isStatic": false,
|
|
3829
|
+
"isPublic": true
|
|
3830
|
+
},
|
|
3791
3831
|
"initialize": {
|
|
3792
3832
|
"name": "initialize",
|
|
3793
3833
|
"async": true,
|
|
@@ -5143,6 +5183,14 @@ var testManifest = {
|
|
|
5143
5183
|
"isStatic": false,
|
|
5144
5184
|
"isPublic": true
|
|
5145
5185
|
},
|
|
5186
|
+
"requireInsertOnSave": {
|
|
5187
|
+
"name": "requireInsertOnSave",
|
|
5188
|
+
"async": false,
|
|
5189
|
+
"parameters": [],
|
|
5190
|
+
"returnType": "void",
|
|
5191
|
+
"isStatic": false,
|
|
5192
|
+
"isPublic": true
|
|
5193
|
+
},
|
|
5146
5194
|
"initialize": {
|
|
5147
5195
|
"name": "initialize",
|
|
5148
5196
|
"async": true,
|
|
@@ -5712,6 +5760,14 @@ var testManifest = {
|
|
|
5712
5760
|
"isStatic": false,
|
|
5713
5761
|
"isPublic": true
|
|
5714
5762
|
},
|
|
5763
|
+
"requireInsertOnSave": {
|
|
5764
|
+
"name": "requireInsertOnSave",
|
|
5765
|
+
"async": false,
|
|
5766
|
+
"parameters": [],
|
|
5767
|
+
"returnType": "void",
|
|
5768
|
+
"isStatic": false,
|
|
5769
|
+
"isPublic": true
|
|
5770
|
+
},
|
|
5715
5771
|
"initialize": {
|
|
5716
5772
|
"name": "initialize",
|
|
5717
5773
|
"async": true,
|
|
@@ -6274,6 +6330,14 @@ var testManifest = {
|
|
|
6274
6330
|
"isStatic": false,
|
|
6275
6331
|
"isPublic": true
|
|
6276
6332
|
},
|
|
6333
|
+
"requireInsertOnSave": {
|
|
6334
|
+
"name": "requireInsertOnSave",
|
|
6335
|
+
"async": false,
|
|
6336
|
+
"parameters": [],
|
|
6337
|
+
"returnType": "void",
|
|
6338
|
+
"isStatic": false,
|
|
6339
|
+
"isPublic": true
|
|
6340
|
+
},
|
|
6277
6341
|
"initialize": {
|
|
6278
6342
|
"name": "initialize",
|
|
6279
6343
|
"async": true,
|
|
@@ -8114,6 +8178,14 @@ var testManifest = {
|
|
|
8114
8178
|
"isStatic": false,
|
|
8115
8179
|
"isPublic": true
|
|
8116
8180
|
},
|
|
8181
|
+
"requireInsertOnSave": {
|
|
8182
|
+
"name": "requireInsertOnSave",
|
|
8183
|
+
"async": false,
|
|
8184
|
+
"parameters": [],
|
|
8185
|
+
"returnType": "void",
|
|
8186
|
+
"isStatic": false,
|
|
8187
|
+
"isPublic": true
|
|
8188
|
+
},
|
|
8117
8189
|
"initialize": {
|
|
8118
8190
|
"name": "initialize",
|
|
8119
8191
|
"async": true,
|
|
@@ -8635,6 +8707,14 @@ var testManifest = {
|
|
|
8635
8707
|
"isStatic": false,
|
|
8636
8708
|
"isPublic": true
|
|
8637
8709
|
},
|
|
8710
|
+
"requireInsertOnSave": {
|
|
8711
|
+
"name": "requireInsertOnSave",
|
|
8712
|
+
"async": false,
|
|
8713
|
+
"parameters": [],
|
|
8714
|
+
"returnType": "void",
|
|
8715
|
+
"isStatic": false,
|
|
8716
|
+
"isPublic": true
|
|
8717
|
+
},
|
|
8638
8718
|
"initialize": {
|
|
8639
8719
|
"name": "initialize",
|
|
8640
8720
|
"async": true,
|
|
@@ -9166,6 +9246,14 @@ var testManifest = {
|
|
|
9166
9246
|
"isStatic": false,
|
|
9167
9247
|
"isPublic": true
|
|
9168
9248
|
},
|
|
9249
|
+
"requireInsertOnSave": {
|
|
9250
|
+
"name": "requireInsertOnSave",
|
|
9251
|
+
"async": false,
|
|
9252
|
+
"parameters": [],
|
|
9253
|
+
"returnType": "void",
|
|
9254
|
+
"isStatic": false,
|
|
9255
|
+
"isPublic": true
|
|
9256
|
+
},
|
|
9169
9257
|
"initialize": {
|
|
9170
9258
|
"name": "initialize",
|
|
9171
9259
|
"async": true,
|
|
@@ -9700,6 +9788,14 @@ var testManifest = {
|
|
|
9700
9788
|
"isStatic": false,
|
|
9701
9789
|
"isPublic": true
|
|
9702
9790
|
},
|
|
9791
|
+
"requireInsertOnSave": {
|
|
9792
|
+
"name": "requireInsertOnSave",
|
|
9793
|
+
"async": false,
|
|
9794
|
+
"parameters": [],
|
|
9795
|
+
"returnType": "void",
|
|
9796
|
+
"isStatic": false,
|
|
9797
|
+
"isPublic": true
|
|
9798
|
+
},
|
|
9703
9799
|
"initialize": {
|
|
9704
9800
|
"name": "initialize",
|
|
9705
9801
|
"async": true,
|
|
@@ -10234,6 +10330,14 @@ var testManifest = {
|
|
|
10234
10330
|
"isStatic": false,
|
|
10235
10331
|
"isPublic": true
|
|
10236
10332
|
},
|
|
10333
|
+
"requireInsertOnSave": {
|
|
10334
|
+
"name": "requireInsertOnSave",
|
|
10335
|
+
"async": false,
|
|
10336
|
+
"parameters": [],
|
|
10337
|
+
"returnType": "void",
|
|
10338
|
+
"isStatic": false,
|
|
10339
|
+
"isPublic": true
|
|
10340
|
+
},
|
|
10237
10341
|
"initialize": {
|
|
10238
10342
|
"name": "initialize",
|
|
10239
10343
|
"async": true,
|
|
@@ -12393,6 +12497,14 @@ var testManifest = {
|
|
|
12393
12497
|
"isStatic": false,
|
|
12394
12498
|
"isPublic": true
|
|
12395
12499
|
},
|
|
12500
|
+
"requireInsertOnSave": {
|
|
12501
|
+
"name": "requireInsertOnSave",
|
|
12502
|
+
"async": false,
|
|
12503
|
+
"parameters": [],
|
|
12504
|
+
"returnType": "void",
|
|
12505
|
+
"isStatic": false,
|
|
12506
|
+
"isPublic": true
|
|
12507
|
+
},
|
|
12396
12508
|
"initialize": {
|
|
12397
12509
|
"name": "initialize",
|
|
12398
12510
|
"async": true,
|
|
@@ -12917,6 +13029,14 @@ var testManifest = {
|
|
|
12917
13029
|
"isStatic": false,
|
|
12918
13030
|
"isPublic": true
|
|
12919
13031
|
},
|
|
13032
|
+
"requireInsertOnSave": {
|
|
13033
|
+
"name": "requireInsertOnSave",
|
|
13034
|
+
"async": false,
|
|
13035
|
+
"parameters": [],
|
|
13036
|
+
"returnType": "void",
|
|
13037
|
+
"isStatic": false,
|
|
13038
|
+
"isPublic": true
|
|
13039
|
+
},
|
|
12920
13040
|
"initialize": {
|
|
12921
13041
|
"name": "initialize",
|
|
12922
13042
|
"async": true,
|
|
@@ -13446,6 +13566,14 @@ var testManifest = {
|
|
|
13446
13566
|
"isStatic": false,
|
|
13447
13567
|
"isPublic": true
|
|
13448
13568
|
},
|
|
13569
|
+
"requireInsertOnSave": {
|
|
13570
|
+
"name": "requireInsertOnSave",
|
|
13571
|
+
"async": false,
|
|
13572
|
+
"parameters": [],
|
|
13573
|
+
"returnType": "void",
|
|
13574
|
+
"isStatic": false,
|
|
13575
|
+
"isPublic": true
|
|
13576
|
+
},
|
|
13449
13577
|
"initialize": {
|
|
13450
13578
|
"name": "initialize",
|
|
13451
13579
|
"async": true,
|
|
@@ -15004,6 +15132,14 @@ var testManifest = {
|
|
|
15004
15132
|
"isStatic": false,
|
|
15005
15133
|
"isPublic": true
|
|
15006
15134
|
},
|
|
15135
|
+
"requireInsertOnSave": {
|
|
15136
|
+
"name": "requireInsertOnSave",
|
|
15137
|
+
"async": false,
|
|
15138
|
+
"parameters": [],
|
|
15139
|
+
"returnType": "void",
|
|
15140
|
+
"isStatic": false,
|
|
15141
|
+
"isPublic": true
|
|
15142
|
+
},
|
|
15007
15143
|
"initialize": {
|
|
15008
15144
|
"name": "initialize",
|
|
15009
15145
|
"async": true,
|
|
@@ -15528,6 +15664,14 @@ var testManifest = {
|
|
|
15528
15664
|
"isStatic": false,
|
|
15529
15665
|
"isPublic": true
|
|
15530
15666
|
},
|
|
15667
|
+
"requireInsertOnSave": {
|
|
15668
|
+
"name": "requireInsertOnSave",
|
|
15669
|
+
"async": false,
|
|
15670
|
+
"parameters": [],
|
|
15671
|
+
"returnType": "void",
|
|
15672
|
+
"isStatic": false,
|
|
15673
|
+
"isPublic": true
|
|
15674
|
+
},
|
|
15531
15675
|
"initialize": {
|
|
15532
15676
|
"name": "initialize",
|
|
15533
15677
|
"async": true,
|
|
@@ -16358,6 +16502,14 @@ var testManifest = {
|
|
|
16358
16502
|
"isStatic": false,
|
|
16359
16503
|
"isPublic": true
|
|
16360
16504
|
},
|
|
16505
|
+
"requireInsertOnSave": {
|
|
16506
|
+
"name": "requireInsertOnSave",
|
|
16507
|
+
"async": false,
|
|
16508
|
+
"parameters": [],
|
|
16509
|
+
"returnType": "void",
|
|
16510
|
+
"isStatic": false,
|
|
16511
|
+
"isPublic": true
|
|
16512
|
+
},
|
|
16361
16513
|
"initialize": {
|
|
16362
16514
|
"name": "initialize",
|
|
16363
16515
|
"async": true,
|
|
@@ -16892,6 +17044,14 @@ var testManifest = {
|
|
|
16892
17044
|
"isStatic": false,
|
|
16893
17045
|
"isPublic": true
|
|
16894
17046
|
},
|
|
17047
|
+
"requireInsertOnSave": {
|
|
17048
|
+
"name": "requireInsertOnSave",
|
|
17049
|
+
"async": false,
|
|
17050
|
+
"parameters": [],
|
|
17051
|
+
"returnType": "void",
|
|
17052
|
+
"isStatic": false,
|
|
17053
|
+
"isPublic": true
|
|
17054
|
+
},
|
|
16895
17055
|
"initialize": {
|
|
16896
17056
|
"name": "initialize",
|
|
16897
17057
|
"async": true,
|
|
@@ -17653,6 +17813,14 @@ var testManifest = {
|
|
|
17653
17813
|
"isStatic": false,
|
|
17654
17814
|
"isPublic": true
|
|
17655
17815
|
},
|
|
17816
|
+
"requireInsertOnSave": {
|
|
17817
|
+
"name": "requireInsertOnSave",
|
|
17818
|
+
"async": false,
|
|
17819
|
+
"parameters": [],
|
|
17820
|
+
"returnType": "void",
|
|
17821
|
+
"isStatic": false,
|
|
17822
|
+
"isPublic": true
|
|
17823
|
+
},
|
|
17656
17824
|
"initialize": {
|
|
17657
17825
|
"name": "initialize",
|
|
17658
17826
|
"async": true,
|
|
@@ -18190,6 +18358,14 @@ var testManifest = {
|
|
|
18190
18358
|
"isStatic": false,
|
|
18191
18359
|
"isPublic": true
|
|
18192
18360
|
},
|
|
18361
|
+
"requireInsertOnSave": {
|
|
18362
|
+
"name": "requireInsertOnSave",
|
|
18363
|
+
"async": false,
|
|
18364
|
+
"parameters": [],
|
|
18365
|
+
"returnType": "void",
|
|
18366
|
+
"isStatic": false,
|
|
18367
|
+
"isPublic": true
|
|
18368
|
+
},
|
|
18193
18369
|
"initialize": {
|
|
18194
18370
|
"name": "initialize",
|
|
18195
18371
|
"async": true,
|
|
@@ -20557,6 +20733,14 @@ var testManifest = {
|
|
|
20557
20733
|
"isStatic": false,
|
|
20558
20734
|
"isPublic": true
|
|
20559
20735
|
},
|
|
20736
|
+
"requireInsertOnSave": {
|
|
20737
|
+
"name": "requireInsertOnSave",
|
|
20738
|
+
"async": false,
|
|
20739
|
+
"parameters": [],
|
|
20740
|
+
"returnType": "void",
|
|
20741
|
+
"isStatic": false,
|
|
20742
|
+
"isPublic": true
|
|
20743
|
+
},
|
|
20560
20744
|
"initialize": {
|
|
20561
20745
|
"name": "initialize",
|
|
20562
20746
|
"async": true,
|
|
@@ -21127,6 +21311,14 @@ var testManifest = {
|
|
|
21127
21311
|
"isStatic": false,
|
|
21128
21312
|
"isPublic": true
|
|
21129
21313
|
},
|
|
21314
|
+
"requireInsertOnSave": {
|
|
21315
|
+
"name": "requireInsertOnSave",
|
|
21316
|
+
"async": false,
|
|
21317
|
+
"parameters": [],
|
|
21318
|
+
"returnType": "void",
|
|
21319
|
+
"isStatic": false,
|
|
21320
|
+
"isPublic": true
|
|
21321
|
+
},
|
|
21130
21322
|
"initialize": {
|
|
21131
21323
|
"name": "initialize",
|
|
21132
21324
|
"async": true,
|
|
@@ -22528,6 +22720,14 @@ var testManifest = {
|
|
|
22528
22720
|
"isStatic": false,
|
|
22529
22721
|
"isPublic": true
|
|
22530
22722
|
},
|
|
22723
|
+
"requireInsertOnSave": {
|
|
22724
|
+
"name": "requireInsertOnSave",
|
|
22725
|
+
"async": false,
|
|
22726
|
+
"parameters": [],
|
|
22727
|
+
"returnType": "void",
|
|
22728
|
+
"isStatic": false,
|
|
22729
|
+
"isPublic": true
|
|
22730
|
+
},
|
|
22531
22731
|
"initialize": {
|
|
22532
22732
|
"name": "initialize",
|
|
22533
22733
|
"async": true,
|
|
@@ -23124,6 +23324,14 @@ var testManifest = {
|
|
|
23124
23324
|
"isStatic": false,
|
|
23125
23325
|
"isPublic": true
|
|
23126
23326
|
},
|
|
23327
|
+
"requireInsertOnSave": {
|
|
23328
|
+
"name": "requireInsertOnSave",
|
|
23329
|
+
"async": false,
|
|
23330
|
+
"parameters": [],
|
|
23331
|
+
"returnType": "void",
|
|
23332
|
+
"isStatic": false,
|
|
23333
|
+
"isPublic": true
|
|
23334
|
+
},
|
|
23127
23335
|
"initialize": {
|
|
23128
23336
|
"name": "initialize",
|
|
23129
23337
|
"async": true,
|
|
@@ -23723,6 +23931,14 @@ var testManifest = {
|
|
|
23723
23931
|
"isStatic": false,
|
|
23724
23932
|
"isPublic": true
|
|
23725
23933
|
},
|
|
23934
|
+
"requireInsertOnSave": {
|
|
23935
|
+
"name": "requireInsertOnSave",
|
|
23936
|
+
"async": false,
|
|
23937
|
+
"parameters": [],
|
|
23938
|
+
"returnType": "void",
|
|
23939
|
+
"isStatic": false,
|
|
23940
|
+
"isPublic": true
|
|
23941
|
+
},
|
|
23726
23942
|
"initialize": {
|
|
23727
23943
|
"name": "initialize",
|
|
23728
23944
|
"async": true,
|
|
@@ -24289,6 +24505,14 @@ var testManifest = {
|
|
|
24289
24505
|
"isStatic": false,
|
|
24290
24506
|
"isPublic": true
|
|
24291
24507
|
},
|
|
24508
|
+
"requireInsertOnSave": {
|
|
24509
|
+
"name": "requireInsertOnSave",
|
|
24510
|
+
"async": false,
|
|
24511
|
+
"parameters": [],
|
|
24512
|
+
"returnType": "void",
|
|
24513
|
+
"isStatic": false,
|
|
24514
|
+
"isPublic": true
|
|
24515
|
+
},
|
|
24292
24516
|
"initialize": {
|
|
24293
24517
|
"name": "initialize",
|
|
24294
24518
|
"async": true,
|
|
@@ -25086,6 +25310,14 @@ var testManifest = {
|
|
|
25086
25310
|
"isStatic": false,
|
|
25087
25311
|
"isPublic": true
|
|
25088
25312
|
},
|
|
25313
|
+
"requireInsertOnSave": {
|
|
25314
|
+
"name": "requireInsertOnSave",
|
|
25315
|
+
"async": false,
|
|
25316
|
+
"parameters": [],
|
|
25317
|
+
"returnType": "void",
|
|
25318
|
+
"isStatic": false,
|
|
25319
|
+
"isPublic": true
|
|
25320
|
+
},
|
|
25089
25321
|
"initialize": {
|
|
25090
25322
|
"name": "initialize",
|
|
25091
25323
|
"async": true,
|
|
@@ -25645,6 +25877,14 @@ var testManifest = {
|
|
|
25645
25877
|
"isStatic": false,
|
|
25646
25878
|
"isPublic": true
|
|
25647
25879
|
},
|
|
25880
|
+
"requireInsertOnSave": {
|
|
25881
|
+
"name": "requireInsertOnSave",
|
|
25882
|
+
"async": false,
|
|
25883
|
+
"parameters": [],
|
|
25884
|
+
"returnType": "void",
|
|
25885
|
+
"isStatic": false,
|
|
25886
|
+
"isPublic": true
|
|
25887
|
+
},
|
|
25648
25888
|
"initialize": {
|
|
25649
25889
|
"name": "initialize",
|
|
25650
25890
|
"async": true,
|
|
@@ -26198,6 +26438,14 @@ var testManifest = {
|
|
|
26198
26438
|
"isStatic": false,
|
|
26199
26439
|
"isPublic": true
|
|
26200
26440
|
},
|
|
26441
|
+
"requireInsertOnSave": {
|
|
26442
|
+
"name": "requireInsertOnSave",
|
|
26443
|
+
"async": false,
|
|
26444
|
+
"parameters": [],
|
|
26445
|
+
"returnType": "void",
|
|
26446
|
+
"isStatic": false,
|
|
26447
|
+
"isPublic": true
|
|
26448
|
+
},
|
|
26201
26449
|
"initialize": {
|
|
26202
26450
|
"name": "initialize",
|
|
26203
26451
|
"async": true,
|
|
@@ -26759,6 +27007,14 @@ var testManifest = {
|
|
|
26759
27007
|
"isStatic": false,
|
|
26760
27008
|
"isPublic": true
|
|
26761
27009
|
},
|
|
27010
|
+
"requireInsertOnSave": {
|
|
27011
|
+
"name": "requireInsertOnSave",
|
|
27012
|
+
"async": false,
|
|
27013
|
+
"parameters": [],
|
|
27014
|
+
"returnType": "void",
|
|
27015
|
+
"isStatic": false,
|
|
27016
|
+
"isPublic": true
|
|
27017
|
+
},
|
|
26762
27018
|
"initialize": {
|
|
26763
27019
|
"name": "initialize",
|
|
26764
27020
|
"async": true,
|
|
@@ -27927,6 +28183,14 @@ var testManifest = {
|
|
|
27927
28183
|
"isStatic": false,
|
|
27928
28184
|
"isPublic": true
|
|
27929
28185
|
},
|
|
28186
|
+
"requireInsertOnSave": {
|
|
28187
|
+
"name": "requireInsertOnSave",
|
|
28188
|
+
"async": false,
|
|
28189
|
+
"parameters": [],
|
|
28190
|
+
"returnType": "void",
|
|
28191
|
+
"isStatic": false,
|
|
28192
|
+
"isPublic": true
|
|
28193
|
+
},
|
|
27930
28194
|
"initialize": {
|
|
27931
28195
|
"name": "initialize",
|
|
27932
28196
|
"async": true,
|
|
@@ -28539,6 +28803,14 @@ var testManifest = {
|
|
|
28539
28803
|
"isStatic": false,
|
|
28540
28804
|
"isPublic": true
|
|
28541
28805
|
},
|
|
28806
|
+
"requireInsertOnSave": {
|
|
28807
|
+
"name": "requireInsertOnSave",
|
|
28808
|
+
"async": false,
|
|
28809
|
+
"parameters": [],
|
|
28810
|
+
"returnType": "void",
|
|
28811
|
+
"isStatic": false,
|
|
28812
|
+
"isPublic": true
|
|
28813
|
+
},
|
|
28542
28814
|
"initialize": {
|
|
28543
28815
|
"name": "initialize",
|
|
28544
28816
|
"async": true,
|
|
@@ -29194,6 +29466,14 @@ var testManifest = {
|
|
|
29194
29466
|
"isStatic": false,
|
|
29195
29467
|
"isPublic": true
|
|
29196
29468
|
},
|
|
29469
|
+
"requireInsertOnSave": {
|
|
29470
|
+
"name": "requireInsertOnSave",
|
|
29471
|
+
"async": false,
|
|
29472
|
+
"parameters": [],
|
|
29473
|
+
"returnType": "void",
|
|
29474
|
+
"isStatic": false,
|
|
29475
|
+
"isPublic": true
|
|
29476
|
+
},
|
|
29197
29477
|
"initialize": {
|
|
29198
29478
|
"name": "initialize",
|
|
29199
29479
|
"async": true,
|
|
@@ -29830,6 +30110,14 @@ var testManifest = {
|
|
|
29830
30110
|
"isStatic": false,
|
|
29831
30111
|
"isPublic": true
|
|
29832
30112
|
},
|
|
30113
|
+
"requireInsertOnSave": {
|
|
30114
|
+
"name": "requireInsertOnSave",
|
|
30115
|
+
"async": false,
|
|
30116
|
+
"parameters": [],
|
|
30117
|
+
"returnType": "void",
|
|
30118
|
+
"isStatic": false,
|
|
30119
|
+
"isPublic": true
|
|
30120
|
+
},
|
|
29833
30121
|
"initialize": {
|
|
29834
30122
|
"name": "initialize",
|
|
29835
30123
|
"async": true,
|
|
@@ -30477,6 +30765,14 @@ var testManifest = {
|
|
|
30477
30765
|
"isStatic": false,
|
|
30478
30766
|
"isPublic": true
|
|
30479
30767
|
},
|
|
30768
|
+
"requireInsertOnSave": {
|
|
30769
|
+
"name": "requireInsertOnSave",
|
|
30770
|
+
"async": false,
|
|
30771
|
+
"parameters": [],
|
|
30772
|
+
"returnType": "void",
|
|
30773
|
+
"isStatic": false,
|
|
30774
|
+
"isPublic": true
|
|
30775
|
+
},
|
|
30480
30776
|
"initialize": {
|
|
30481
30777
|
"name": "initialize",
|
|
30482
30778
|
"async": true,
|
|
@@ -31109,6 +31405,14 @@ var testManifest = {
|
|
|
31109
31405
|
"isStatic": false,
|
|
31110
31406
|
"isPublic": true
|
|
31111
31407
|
},
|
|
31408
|
+
"requireInsertOnSave": {
|
|
31409
|
+
"name": "requireInsertOnSave",
|
|
31410
|
+
"async": false,
|
|
31411
|
+
"parameters": [],
|
|
31412
|
+
"returnType": "void",
|
|
31413
|
+
"isStatic": false,
|
|
31414
|
+
"isPublic": true
|
|
31415
|
+
},
|
|
31112
31416
|
"initialize": {
|
|
31113
31417
|
"name": "initialize",
|
|
31114
31418
|
"async": true,
|
|
@@ -31726,6 +32030,14 @@ var testManifest = {
|
|
|
31726
32030
|
"isStatic": false,
|
|
31727
32031
|
"isPublic": true
|
|
31728
32032
|
},
|
|
32033
|
+
"requireInsertOnSave": {
|
|
32034
|
+
"name": "requireInsertOnSave",
|
|
32035
|
+
"async": false,
|
|
32036
|
+
"parameters": [],
|
|
32037
|
+
"returnType": "void",
|
|
32038
|
+
"isStatic": false,
|
|
32039
|
+
"isPublic": true
|
|
32040
|
+
},
|
|
31729
32041
|
"initialize": {
|
|
31730
32042
|
"name": "initialize",
|
|
31731
32043
|
"async": true,
|
|
@@ -32295,6 +32607,14 @@ var testManifest = {
|
|
|
32295
32607
|
"isStatic": false,
|
|
32296
32608
|
"isPublic": true
|
|
32297
32609
|
},
|
|
32610
|
+
"requireInsertOnSave": {
|
|
32611
|
+
"name": "requireInsertOnSave",
|
|
32612
|
+
"async": false,
|
|
32613
|
+
"parameters": [],
|
|
32614
|
+
"returnType": "void",
|
|
32615
|
+
"isStatic": false,
|
|
32616
|
+
"isPublic": true
|
|
32617
|
+
},
|
|
32298
32618
|
"initialize": {
|
|
32299
32619
|
"name": "initialize",
|
|
32300
32620
|
"async": true,
|
|
@@ -32857,6 +33177,14 @@ var testManifest = {
|
|
|
32857
33177
|
"isStatic": false,
|
|
32858
33178
|
"isPublic": true
|
|
32859
33179
|
},
|
|
33180
|
+
"requireInsertOnSave": {
|
|
33181
|
+
"name": "requireInsertOnSave",
|
|
33182
|
+
"async": false,
|
|
33183
|
+
"parameters": [],
|
|
33184
|
+
"returnType": "void",
|
|
33185
|
+
"isStatic": false,
|
|
33186
|
+
"isPublic": true
|
|
33187
|
+
},
|
|
32860
33188
|
"initialize": {
|
|
32861
33189
|
"name": "initialize",
|
|
32862
33190
|
"async": true,
|
|
@@ -33638,6 +33966,14 @@ var testManifest = {
|
|
|
33638
33966
|
"isStatic": false,
|
|
33639
33967
|
"isPublic": true
|
|
33640
33968
|
},
|
|
33969
|
+
"requireInsertOnSave": {
|
|
33970
|
+
"name": "requireInsertOnSave",
|
|
33971
|
+
"async": false,
|
|
33972
|
+
"parameters": [],
|
|
33973
|
+
"returnType": "void",
|
|
33974
|
+
"isStatic": false,
|
|
33975
|
+
"isPublic": true
|
|
33976
|
+
},
|
|
33641
33977
|
"initialize": {
|
|
33642
33978
|
"name": "initialize",
|
|
33643
33979
|
"async": true,
|
|
@@ -34187,6 +34523,14 @@ var testManifest = {
|
|
|
34187
34523
|
"isStatic": false,
|
|
34188
34524
|
"isPublic": true
|
|
34189
34525
|
},
|
|
34526
|
+
"requireInsertOnSave": {
|
|
34527
|
+
"name": "requireInsertOnSave",
|
|
34528
|
+
"async": false,
|
|
34529
|
+
"parameters": [],
|
|
34530
|
+
"returnType": "void",
|
|
34531
|
+
"isStatic": false,
|
|
34532
|
+
"isPublic": true
|
|
34533
|
+
},
|
|
34190
34534
|
"initialize": {
|
|
34191
34535
|
"name": "initialize",
|
|
34192
34536
|
"async": true,
|
|
@@ -34731,6 +35075,14 @@ var testManifest = {
|
|
|
34731
35075
|
"isStatic": false,
|
|
34732
35076
|
"isPublic": true
|
|
34733
35077
|
},
|
|
35078
|
+
"requireInsertOnSave": {
|
|
35079
|
+
"name": "requireInsertOnSave",
|
|
35080
|
+
"async": false,
|
|
35081
|
+
"parameters": [],
|
|
35082
|
+
"returnType": "void",
|
|
35083
|
+
"isStatic": false,
|
|
35084
|
+
"isPublic": true
|
|
35085
|
+
},
|
|
34734
35086
|
"initialize": {
|
|
34735
35087
|
"name": "initialize",
|
|
34736
35088
|
"async": true,
|
|
@@ -35820,6 +36172,14 @@ var testManifest = {
|
|
|
35820
36172
|
"isStatic": false,
|
|
35821
36173
|
"isPublic": true
|
|
35822
36174
|
},
|
|
36175
|
+
"requireInsertOnSave": {
|
|
36176
|
+
"name": "requireInsertOnSave",
|
|
36177
|
+
"async": false,
|
|
36178
|
+
"parameters": [],
|
|
36179
|
+
"returnType": "void",
|
|
36180
|
+
"isStatic": false,
|
|
36181
|
+
"isPublic": true
|
|
36182
|
+
},
|
|
35823
36183
|
"initialize": {
|
|
35824
36184
|
"name": "initialize",
|
|
35825
36185
|
"async": true,
|
|
@@ -36363,6 +36723,14 @@ var testManifest = {
|
|
|
36363
36723
|
"isStatic": false,
|
|
36364
36724
|
"isPublic": true
|
|
36365
36725
|
},
|
|
36726
|
+
"requireInsertOnSave": {
|
|
36727
|
+
"name": "requireInsertOnSave",
|
|
36728
|
+
"async": false,
|
|
36729
|
+
"parameters": [],
|
|
36730
|
+
"returnType": "void",
|
|
36731
|
+
"isStatic": false,
|
|
36732
|
+
"isPublic": true
|
|
36733
|
+
},
|
|
36366
36734
|
"initialize": {
|
|
36367
36735
|
"name": "initialize",
|
|
36368
36736
|
"async": true,
|
|
@@ -36903,6 +37271,14 @@ var testManifest = {
|
|
|
36903
37271
|
"isStatic": false,
|
|
36904
37272
|
"isPublic": true
|
|
36905
37273
|
},
|
|
37274
|
+
"requireInsertOnSave": {
|
|
37275
|
+
"name": "requireInsertOnSave",
|
|
37276
|
+
"async": false,
|
|
37277
|
+
"parameters": [],
|
|
37278
|
+
"returnType": "void",
|
|
37279
|
+
"isStatic": false,
|
|
37280
|
+
"isPublic": true
|
|
37281
|
+
},
|
|
36906
37282
|
"initialize": {
|
|
36907
37283
|
"name": "initialize",
|
|
36908
37284
|
"async": true,
|
|
@@ -39074,6 +39450,14 @@ var testManifest = {
|
|
|
39074
39450
|
"isStatic": false,
|
|
39075
39451
|
"isPublic": true
|
|
39076
39452
|
},
|
|
39453
|
+
"requireInsertOnSave": {
|
|
39454
|
+
"name": "requireInsertOnSave",
|
|
39455
|
+
"async": false,
|
|
39456
|
+
"parameters": [],
|
|
39457
|
+
"returnType": "void",
|
|
39458
|
+
"isStatic": false,
|
|
39459
|
+
"isPublic": true
|
|
39460
|
+
},
|
|
39077
39461
|
"initialize": {
|
|
39078
39462
|
"name": "initialize",
|
|
39079
39463
|
"async": true,
|
|
@@ -39612,6 +39996,14 @@ var testManifest = {
|
|
|
39612
39996
|
"isStatic": false,
|
|
39613
39997
|
"isPublic": true
|
|
39614
39998
|
},
|
|
39999
|
+
"requireInsertOnSave": {
|
|
40000
|
+
"name": "requireInsertOnSave",
|
|
40001
|
+
"async": false,
|
|
40002
|
+
"parameters": [],
|
|
40003
|
+
"returnType": "void",
|
|
40004
|
+
"isStatic": false,
|
|
40005
|
+
"isPublic": true
|
|
40006
|
+
},
|
|
39615
40007
|
"initialize": {
|
|
39616
40008
|
"name": "initialize",
|
|
39617
40009
|
"async": true,
|
|
@@ -40245,6 +40637,14 @@ var testManifest = {
|
|
|
40245
40637
|
"isStatic": false,
|
|
40246
40638
|
"isPublic": true
|
|
40247
40639
|
},
|
|
40640
|
+
"requireInsertOnSave": {
|
|
40641
|
+
"name": "requireInsertOnSave",
|
|
40642
|
+
"async": false,
|
|
40643
|
+
"parameters": [],
|
|
40644
|
+
"returnType": "void",
|
|
40645
|
+
"isStatic": false,
|
|
40646
|
+
"isPublic": true
|
|
40647
|
+
},
|
|
40248
40648
|
"initialize": {
|
|
40249
40649
|
"name": "initialize",
|
|
40250
40650
|
"async": true,
|
|
@@ -40796,6 +41196,14 @@ var testManifest = {
|
|
|
40796
41196
|
"isStatic": false,
|
|
40797
41197
|
"isPublic": true
|
|
40798
41198
|
},
|
|
41199
|
+
"requireInsertOnSave": {
|
|
41200
|
+
"name": "requireInsertOnSave",
|
|
41201
|
+
"async": false,
|
|
41202
|
+
"parameters": [],
|
|
41203
|
+
"returnType": "void",
|
|
41204
|
+
"isStatic": false,
|
|
41205
|
+
"isPublic": true
|
|
41206
|
+
},
|
|
40799
41207
|
"initialize": {
|
|
40800
41208
|
"name": "initialize",
|
|
40801
41209
|
"async": true,
|
|
@@ -41360,6 +41768,14 @@ var testManifest = {
|
|
|
41360
41768
|
"isStatic": false,
|
|
41361
41769
|
"isPublic": true
|
|
41362
41770
|
},
|
|
41771
|
+
"requireInsertOnSave": {
|
|
41772
|
+
"name": "requireInsertOnSave",
|
|
41773
|
+
"async": false,
|
|
41774
|
+
"parameters": [],
|
|
41775
|
+
"returnType": "void",
|
|
41776
|
+
"isStatic": false,
|
|
41777
|
+
"isPublic": true
|
|
41778
|
+
},
|
|
41363
41779
|
"initialize": {
|
|
41364
41780
|
"name": "initialize",
|
|
41365
41781
|
"async": true,
|
|
@@ -41904,6 +42320,14 @@ var testManifest = {
|
|
|
41904
42320
|
"isStatic": false,
|
|
41905
42321
|
"isPublic": true
|
|
41906
42322
|
},
|
|
42323
|
+
"requireInsertOnSave": {
|
|
42324
|
+
"name": "requireInsertOnSave",
|
|
42325
|
+
"async": false,
|
|
42326
|
+
"parameters": [],
|
|
42327
|
+
"returnType": "void",
|
|
42328
|
+
"isStatic": false,
|
|
42329
|
+
"isPublic": true
|
|
42330
|
+
},
|
|
41907
42331
|
"initialize": {
|
|
41908
42332
|
"name": "initialize",
|
|
41909
42333
|
"async": true,
|
|
@@ -42445,6 +42869,14 @@ var testManifest = {
|
|
|
42445
42869
|
"isStatic": false,
|
|
42446
42870
|
"isPublic": true
|
|
42447
42871
|
},
|
|
42872
|
+
"requireInsertOnSave": {
|
|
42873
|
+
"name": "requireInsertOnSave",
|
|
42874
|
+
"async": false,
|
|
42875
|
+
"parameters": [],
|
|
42876
|
+
"returnType": "void",
|
|
42877
|
+
"isStatic": false,
|
|
42878
|
+
"isPublic": true
|
|
42879
|
+
},
|
|
42448
42880
|
"initialize": {
|
|
42449
42881
|
"name": "initialize",
|
|
42450
42882
|
"async": true,
|
|
@@ -42994,6 +43426,14 @@ var testManifest = {
|
|
|
42994
43426
|
"isStatic": false,
|
|
42995
43427
|
"isPublic": true
|
|
42996
43428
|
},
|
|
43429
|
+
"requireInsertOnSave": {
|
|
43430
|
+
"name": "requireInsertOnSave",
|
|
43431
|
+
"async": false,
|
|
43432
|
+
"parameters": [],
|
|
43433
|
+
"returnType": "void",
|
|
43434
|
+
"isStatic": false,
|
|
43435
|
+
"isPublic": true
|
|
43436
|
+
},
|
|
42997
43437
|
"initialize": {
|
|
42998
43438
|
"name": "initialize",
|
|
42999
43439
|
"async": true,
|
|
@@ -43548,6 +43988,14 @@ var testManifest = {
|
|
|
43548
43988
|
"isStatic": false,
|
|
43549
43989
|
"isPublic": true
|
|
43550
43990
|
},
|
|
43991
|
+
"requireInsertOnSave": {
|
|
43992
|
+
"name": "requireInsertOnSave",
|
|
43993
|
+
"async": false,
|
|
43994
|
+
"parameters": [],
|
|
43995
|
+
"returnType": "void",
|
|
43996
|
+
"isStatic": false,
|
|
43997
|
+
"isPublic": true
|
|
43998
|
+
},
|
|
43551
43999
|
"initialize": {
|
|
43552
44000
|
"name": "initialize",
|
|
43553
44001
|
"async": true,
|
|
@@ -44088,6 +44536,14 @@ var testManifest = {
|
|
|
44088
44536
|
"isStatic": false,
|
|
44089
44537
|
"isPublic": true
|
|
44090
44538
|
},
|
|
44539
|
+
"requireInsertOnSave": {
|
|
44540
|
+
"name": "requireInsertOnSave",
|
|
44541
|
+
"async": false,
|
|
44542
|
+
"parameters": [],
|
|
44543
|
+
"returnType": "void",
|
|
44544
|
+
"isStatic": false,
|
|
44545
|
+
"isPublic": true
|
|
44546
|
+
},
|
|
44091
44547
|
"initialize": {
|
|
44092
44548
|
"name": "initialize",
|
|
44093
44549
|
"async": true,
|
|
@@ -44620,6 +45076,14 @@ var testManifest = {
|
|
|
44620
45076
|
"isStatic": false,
|
|
44621
45077
|
"isPublic": true
|
|
44622
45078
|
},
|
|
45079
|
+
"requireInsertOnSave": {
|
|
45080
|
+
"name": "requireInsertOnSave",
|
|
45081
|
+
"async": false,
|
|
45082
|
+
"parameters": [],
|
|
45083
|
+
"returnType": "void",
|
|
45084
|
+
"isStatic": false,
|
|
45085
|
+
"isPublic": true
|
|
45086
|
+
},
|
|
44623
45087
|
"initialize": {
|
|
44624
45088
|
"name": "initialize",
|
|
44625
45089
|
"async": true,
|
|
@@ -45150,6 +45614,14 @@ var testManifest = {
|
|
|
45150
45614
|
"isStatic": false,
|
|
45151
45615
|
"isPublic": true
|
|
45152
45616
|
},
|
|
45617
|
+
"requireInsertOnSave": {
|
|
45618
|
+
"name": "requireInsertOnSave",
|
|
45619
|
+
"async": false,
|
|
45620
|
+
"parameters": [],
|
|
45621
|
+
"returnType": "void",
|
|
45622
|
+
"isStatic": false,
|
|
45623
|
+
"isPublic": true
|
|
45624
|
+
},
|
|
45153
45625
|
"initialize": {
|
|
45154
45626
|
"name": "initialize",
|
|
45155
45627
|
"async": true,
|
|
@@ -45678,6 +46150,14 @@ var testManifest = {
|
|
|
45678
46150
|
"isStatic": false,
|
|
45679
46151
|
"isPublic": true
|
|
45680
46152
|
},
|
|
46153
|
+
"requireInsertOnSave": {
|
|
46154
|
+
"name": "requireInsertOnSave",
|
|
46155
|
+
"async": false,
|
|
46156
|
+
"parameters": [],
|
|
46157
|
+
"returnType": "void",
|
|
46158
|
+
"isStatic": false,
|
|
46159
|
+
"isPublic": true
|
|
46160
|
+
},
|
|
45681
46161
|
"initialize": {
|
|
45682
46162
|
"name": "initialize",
|
|
45683
46163
|
"async": true,
|
|
@@ -46218,6 +46698,14 @@ var testManifest = {
|
|
|
46218
46698
|
"isStatic": false,
|
|
46219
46699
|
"isPublic": true
|
|
46220
46700
|
},
|
|
46701
|
+
"requireInsertOnSave": {
|
|
46702
|
+
"name": "requireInsertOnSave",
|
|
46703
|
+
"async": false,
|
|
46704
|
+
"parameters": [],
|
|
46705
|
+
"returnType": "void",
|
|
46706
|
+
"isStatic": false,
|
|
46707
|
+
"isPublic": true
|
|
46708
|
+
},
|
|
46221
46709
|
"initialize": {
|
|
46222
46710
|
"name": "initialize",
|
|
46223
46711
|
"async": true,
|
|
@@ -46774,6 +47262,14 @@ var testManifest = {
|
|
|
46774
47262
|
"isStatic": false,
|
|
46775
47263
|
"isPublic": true
|
|
46776
47264
|
},
|
|
47265
|
+
"requireInsertOnSave": {
|
|
47266
|
+
"name": "requireInsertOnSave",
|
|
47267
|
+
"async": false,
|
|
47268
|
+
"parameters": [],
|
|
47269
|
+
"returnType": "void",
|
|
47270
|
+
"isStatic": false,
|
|
47271
|
+
"isPublic": true
|
|
47272
|
+
},
|
|
46777
47273
|
"initialize": {
|
|
46778
47274
|
"name": "initialize",
|
|
46779
47275
|
"async": true,
|
|
@@ -47343,6 +47839,14 @@ var testManifest = {
|
|
|
47343
47839
|
"isStatic": false,
|
|
47344
47840
|
"isPublic": true
|
|
47345
47841
|
},
|
|
47842
|
+
"requireInsertOnSave": {
|
|
47843
|
+
"name": "requireInsertOnSave",
|
|
47844
|
+
"async": false,
|
|
47845
|
+
"parameters": [],
|
|
47846
|
+
"returnType": "void",
|
|
47847
|
+
"isStatic": false,
|
|
47848
|
+
"isPublic": true
|
|
47849
|
+
},
|
|
47346
47850
|
"initialize": {
|
|
47347
47851
|
"name": "initialize",
|
|
47348
47852
|
"async": true,
|
|
@@ -48200,6 +48704,14 @@ var testManifest = {
|
|
|
48200
48704
|
"isStatic": false,
|
|
48201
48705
|
"isPublic": true
|
|
48202
48706
|
},
|
|
48707
|
+
"requireInsertOnSave": {
|
|
48708
|
+
"name": "requireInsertOnSave",
|
|
48709
|
+
"async": false,
|
|
48710
|
+
"parameters": [],
|
|
48711
|
+
"returnType": "void",
|
|
48712
|
+
"isStatic": false,
|
|
48713
|
+
"isPublic": true
|
|
48714
|
+
},
|
|
48203
48715
|
"initialize": {
|
|
48204
48716
|
"name": "initialize",
|
|
48205
48717
|
"async": true,
|
|
@@ -48730,6 +49242,14 @@ var testManifest = {
|
|
|
48730
49242
|
"isStatic": false,
|
|
48731
49243
|
"isPublic": true
|
|
48732
49244
|
},
|
|
49245
|
+
"requireInsertOnSave": {
|
|
49246
|
+
"name": "requireInsertOnSave",
|
|
49247
|
+
"async": false,
|
|
49248
|
+
"parameters": [],
|
|
49249
|
+
"returnType": "void",
|
|
49250
|
+
"isStatic": false,
|
|
49251
|
+
"isPublic": true
|
|
49252
|
+
},
|
|
48733
49253
|
"initialize": {
|
|
48734
49254
|
"name": "initialize",
|
|
48735
49255
|
"async": true,
|
|
@@ -49312,6 +49832,14 @@ var testManifest = {
|
|
|
49312
49832
|
"isStatic": false,
|
|
49313
49833
|
"isPublic": true
|
|
49314
49834
|
},
|
|
49835
|
+
"requireInsertOnSave": {
|
|
49836
|
+
"name": "requireInsertOnSave",
|
|
49837
|
+
"async": false,
|
|
49838
|
+
"parameters": [],
|
|
49839
|
+
"returnType": "void",
|
|
49840
|
+
"isStatic": false,
|
|
49841
|
+
"isPublic": true
|
|
49842
|
+
},
|
|
49315
49843
|
"initialize": {
|
|
49316
49844
|
"name": "initialize",
|
|
49317
49845
|
"async": true,
|
|
@@ -49833,6 +50361,14 @@ var testManifest = {
|
|
|
49833
50361
|
"isStatic": false,
|
|
49834
50362
|
"isPublic": true
|
|
49835
50363
|
},
|
|
50364
|
+
"requireInsertOnSave": {
|
|
50365
|
+
"name": "requireInsertOnSave",
|
|
50366
|
+
"async": false,
|
|
50367
|
+
"parameters": [],
|
|
50368
|
+
"returnType": "void",
|
|
50369
|
+
"isStatic": false,
|
|
50370
|
+
"isPublic": true
|
|
50371
|
+
},
|
|
49836
50372
|
"initialize": {
|
|
49837
50373
|
"name": "initialize",
|
|
49838
50374
|
"async": true,
|
|
@@ -50364,6 +50900,14 @@ var testManifest = {
|
|
|
50364
50900
|
"isStatic": false,
|
|
50365
50901
|
"isPublic": true
|
|
50366
50902
|
},
|
|
50903
|
+
"requireInsertOnSave": {
|
|
50904
|
+
"name": "requireInsertOnSave",
|
|
50905
|
+
"async": false,
|
|
50906
|
+
"parameters": [],
|
|
50907
|
+
"returnType": "void",
|
|
50908
|
+
"isStatic": false,
|
|
50909
|
+
"isPublic": true
|
|
50910
|
+
},
|
|
50367
50911
|
"initialize": {
|
|
50368
50912
|
"name": "initialize",
|
|
50369
50913
|
"async": true,
|
|
@@ -51997,6 +52541,14 @@ var testManifest = {
|
|
|
51997
52541
|
"isStatic": false,
|
|
51998
52542
|
"isPublic": true
|
|
51999
52543
|
},
|
|
52544
|
+
"requireInsertOnSave": {
|
|
52545
|
+
"name": "requireInsertOnSave",
|
|
52546
|
+
"async": false,
|
|
52547
|
+
"parameters": [],
|
|
52548
|
+
"returnType": "void",
|
|
52549
|
+
"isStatic": false,
|
|
52550
|
+
"isPublic": true
|
|
52551
|
+
},
|
|
52000
52552
|
"initialize": {
|
|
52001
52553
|
"name": "initialize",
|
|
52002
52554
|
"async": true,
|
|
@@ -52586,6 +53138,14 @@ var testManifest = {
|
|
|
52586
53138
|
"isStatic": false,
|
|
52587
53139
|
"isPublic": true
|
|
52588
53140
|
},
|
|
53141
|
+
"requireInsertOnSave": {
|
|
53142
|
+
"name": "requireInsertOnSave",
|
|
53143
|
+
"async": false,
|
|
53144
|
+
"parameters": [],
|
|
53145
|
+
"returnType": "void",
|
|
53146
|
+
"isStatic": false,
|
|
53147
|
+
"isPublic": true
|
|
53148
|
+
},
|
|
52589
53149
|
"initialize": {
|
|
52590
53150
|
"name": "initialize",
|
|
52591
53151
|
"async": true,
|
|
@@ -53305,6 +53865,14 @@ var testManifest = {
|
|
|
53305
53865
|
"isStatic": false,
|
|
53306
53866
|
"isPublic": true
|
|
53307
53867
|
},
|
|
53868
|
+
"requireInsertOnSave": {
|
|
53869
|
+
"name": "requireInsertOnSave",
|
|
53870
|
+
"async": false,
|
|
53871
|
+
"parameters": [],
|
|
53872
|
+
"returnType": "void",
|
|
53873
|
+
"isStatic": false,
|
|
53874
|
+
"isPublic": true
|
|
53875
|
+
},
|
|
53308
53876
|
"initialize": {
|
|
53309
53877
|
"name": "initialize",
|
|
53310
53878
|
"async": true,
|
|
@@ -53874,6 +54442,14 @@ var testManifest = {
|
|
|
53874
54442
|
"isStatic": false,
|
|
53875
54443
|
"isPublic": true
|
|
53876
54444
|
},
|
|
54445
|
+
"requireInsertOnSave": {
|
|
54446
|
+
"name": "requireInsertOnSave",
|
|
54447
|
+
"async": false,
|
|
54448
|
+
"parameters": [],
|
|
54449
|
+
"returnType": "void",
|
|
54450
|
+
"isStatic": false,
|
|
54451
|
+
"isPublic": true
|
|
54452
|
+
},
|
|
53877
54453
|
"initialize": {
|
|
53878
54454
|
"name": "initialize",
|
|
53879
54455
|
"async": true,
|
|
@@ -54436,6 +55012,14 @@ var testManifest = {
|
|
|
54436
55012
|
"isStatic": false,
|
|
54437
55013
|
"isPublic": true
|
|
54438
55014
|
},
|
|
55015
|
+
"requireInsertOnSave": {
|
|
55016
|
+
"name": "requireInsertOnSave",
|
|
55017
|
+
"async": false,
|
|
55018
|
+
"parameters": [],
|
|
55019
|
+
"returnType": "void",
|
|
55020
|
+
"isStatic": false,
|
|
55021
|
+
"isPublic": true
|
|
55022
|
+
},
|
|
54439
55023
|
"initialize": {
|
|
54440
55024
|
"name": "initialize",
|
|
54441
55025
|
"async": true,
|
|
@@ -55088,6 +55672,14 @@ var testManifest = {
|
|
|
55088
55672
|
"isStatic": false,
|
|
55089
55673
|
"isPublic": true
|
|
55090
55674
|
},
|
|
55675
|
+
"requireInsertOnSave": {
|
|
55676
|
+
"name": "requireInsertOnSave",
|
|
55677
|
+
"async": false,
|
|
55678
|
+
"parameters": [],
|
|
55679
|
+
"returnType": "void",
|
|
55680
|
+
"isStatic": false,
|
|
55681
|
+
"isPublic": true
|
|
55682
|
+
},
|
|
55091
55683
|
"initialize": {
|
|
55092
55684
|
"name": "initialize",
|
|
55093
55685
|
"async": true,
|
|
@@ -55603,6 +56195,14 @@ var testManifest = {
|
|
|
55603
56195
|
"isStatic": false,
|
|
55604
56196
|
"isPublic": true
|
|
55605
56197
|
},
|
|
56198
|
+
"requireInsertOnSave": {
|
|
56199
|
+
"name": "requireInsertOnSave",
|
|
56200
|
+
"async": false,
|
|
56201
|
+
"parameters": [],
|
|
56202
|
+
"returnType": "void",
|
|
56203
|
+
"isStatic": false,
|
|
56204
|
+
"isPublic": true
|
|
56205
|
+
},
|
|
55606
56206
|
"initialize": {
|
|
55607
56207
|
"name": "initialize",
|
|
55608
56208
|
"async": true,
|
|
@@ -56114,6 +56714,14 @@ var testManifest = {
|
|
|
56114
56714
|
"isStatic": false,
|
|
56115
56715
|
"isPublic": true
|
|
56116
56716
|
},
|
|
56717
|
+
"requireInsertOnSave": {
|
|
56718
|
+
"name": "requireInsertOnSave",
|
|
56719
|
+
"async": false,
|
|
56720
|
+
"parameters": [],
|
|
56721
|
+
"returnType": "void",
|
|
56722
|
+
"isStatic": false,
|
|
56723
|
+
"isPublic": true
|
|
56724
|
+
},
|
|
56117
56725
|
"initialize": {
|
|
56118
56726
|
"name": "initialize",
|
|
56119
56727
|
"async": true,
|
|
@@ -56625,6 +57233,14 @@ var testManifest = {
|
|
|
56625
57233
|
"isStatic": false,
|
|
56626
57234
|
"isPublic": true
|
|
56627
57235
|
},
|
|
57236
|
+
"requireInsertOnSave": {
|
|
57237
|
+
"name": "requireInsertOnSave",
|
|
57238
|
+
"async": false,
|
|
57239
|
+
"parameters": [],
|
|
57240
|
+
"returnType": "void",
|
|
57241
|
+
"isStatic": false,
|
|
57242
|
+
"isPublic": true
|
|
57243
|
+
},
|
|
56628
57244
|
"initialize": {
|
|
56629
57245
|
"name": "initialize",
|
|
56630
57246
|
"async": true,
|
|
@@ -57141,6 +57757,14 @@ var testManifest = {
|
|
|
57141
57757
|
"isStatic": false,
|
|
57142
57758
|
"isPublic": true
|
|
57143
57759
|
},
|
|
57760
|
+
"requireInsertOnSave": {
|
|
57761
|
+
"name": "requireInsertOnSave",
|
|
57762
|
+
"async": false,
|
|
57763
|
+
"parameters": [],
|
|
57764
|
+
"returnType": "void",
|
|
57765
|
+
"isStatic": false,
|
|
57766
|
+
"isPublic": true
|
|
57767
|
+
},
|
|
57144
57768
|
"initialize": {
|
|
57145
57769
|
"name": "initialize",
|
|
57146
57770
|
"async": true,
|
|
@@ -57680,6 +58304,14 @@ var testManifest = {
|
|
|
57680
58304
|
"isStatic": false,
|
|
57681
58305
|
"isPublic": true
|
|
57682
58306
|
},
|
|
58307
|
+
"requireInsertOnSave": {
|
|
58308
|
+
"name": "requireInsertOnSave",
|
|
58309
|
+
"async": false,
|
|
58310
|
+
"parameters": [],
|
|
58311
|
+
"returnType": "void",
|
|
58312
|
+
"isStatic": false,
|
|
58313
|
+
"isPublic": true
|
|
58314
|
+
},
|
|
57683
58315
|
"initialize": {
|
|
57684
58316
|
"name": "initialize",
|
|
57685
58317
|
"async": true,
|
|
@@ -58264,6 +58896,14 @@ var testManifest = {
|
|
|
58264
58896
|
"isStatic": false,
|
|
58265
58897
|
"isPublic": true
|
|
58266
58898
|
},
|
|
58899
|
+
"requireInsertOnSave": {
|
|
58900
|
+
"name": "requireInsertOnSave",
|
|
58901
|
+
"async": false,
|
|
58902
|
+
"parameters": [],
|
|
58903
|
+
"returnType": "void",
|
|
58904
|
+
"isStatic": false,
|
|
58905
|
+
"isPublic": true
|
|
58906
|
+
},
|
|
58267
58907
|
"initialize": {
|
|
58268
58908
|
"name": "initialize",
|
|
58269
58909
|
"async": true,
|
|
@@ -58803,6 +59443,14 @@ var testManifest = {
|
|
|
58803
59443
|
"isStatic": false,
|
|
58804
59444
|
"isPublic": true
|
|
58805
59445
|
},
|
|
59446
|
+
"requireInsertOnSave": {
|
|
59447
|
+
"name": "requireInsertOnSave",
|
|
59448
|
+
"async": false,
|
|
59449
|
+
"parameters": [],
|
|
59450
|
+
"returnType": "void",
|
|
59451
|
+
"isStatic": false,
|
|
59452
|
+
"isPublic": true
|
|
59453
|
+
},
|
|
58806
59454
|
"initialize": {
|
|
58807
59455
|
"name": "initialize",
|
|
58808
59456
|
"async": true,
|
|
@@ -59392,6 +60040,14 @@ var testManifest = {
|
|
|
59392
60040
|
"isStatic": false,
|
|
59393
60041
|
"isPublic": true
|
|
59394
60042
|
},
|
|
60043
|
+
"requireInsertOnSave": {
|
|
60044
|
+
"name": "requireInsertOnSave",
|
|
60045
|
+
"async": false,
|
|
60046
|
+
"parameters": [],
|
|
60047
|
+
"returnType": "void",
|
|
60048
|
+
"isStatic": false,
|
|
60049
|
+
"isPublic": true
|
|
60050
|
+
},
|
|
59395
60051
|
"initialize": {
|
|
59396
60052
|
"name": "initialize",
|
|
59397
60053
|
"async": true,
|
|
@@ -59953,6 +60609,14 @@ var testManifest = {
|
|
|
59953
60609
|
"isStatic": false,
|
|
59954
60610
|
"isPublic": true
|
|
59955
60611
|
},
|
|
60612
|
+
"requireInsertOnSave": {
|
|
60613
|
+
"name": "requireInsertOnSave",
|
|
60614
|
+
"async": false,
|
|
60615
|
+
"parameters": [],
|
|
60616
|
+
"returnType": "void",
|
|
60617
|
+
"isStatic": false,
|
|
60618
|
+
"isPublic": true
|
|
60619
|
+
},
|
|
59956
60620
|
"initialize": {
|
|
59957
60621
|
"name": "initialize",
|
|
59958
60622
|
"async": true,
|
|
@@ -60527,6 +61191,14 @@ var testManifest = {
|
|
|
60527
61191
|
"isStatic": false,
|
|
60528
61192
|
"isPublic": true
|
|
60529
61193
|
},
|
|
61194
|
+
"requireInsertOnSave": {
|
|
61195
|
+
"name": "requireInsertOnSave",
|
|
61196
|
+
"async": false,
|
|
61197
|
+
"parameters": [],
|
|
61198
|
+
"returnType": "void",
|
|
61199
|
+
"isStatic": false,
|
|
61200
|
+
"isPublic": true
|
|
61201
|
+
},
|
|
60530
61202
|
"initialize": {
|
|
60531
61203
|
"name": "initialize",
|
|
60532
61204
|
"async": true,
|
|
@@ -61136,6 +61808,14 @@ var testManifest = {
|
|
|
61136
61808
|
"isStatic": false,
|
|
61137
61809
|
"isPublic": true
|
|
61138
61810
|
},
|
|
61811
|
+
"requireInsertOnSave": {
|
|
61812
|
+
"name": "requireInsertOnSave",
|
|
61813
|
+
"async": false,
|
|
61814
|
+
"parameters": [],
|
|
61815
|
+
"returnType": "void",
|
|
61816
|
+
"isStatic": false,
|
|
61817
|
+
"isPublic": true
|
|
61818
|
+
},
|
|
61139
61819
|
"initialize": {
|
|
61140
61820
|
"name": "initialize",
|
|
61141
61821
|
"async": true,
|
|
@@ -61699,6 +62379,14 @@ var testManifest = {
|
|
|
61699
62379
|
"isStatic": false,
|
|
61700
62380
|
"isPublic": true
|
|
61701
62381
|
},
|
|
62382
|
+
"requireInsertOnSave": {
|
|
62383
|
+
"name": "requireInsertOnSave",
|
|
62384
|
+
"async": false,
|
|
62385
|
+
"parameters": [],
|
|
62386
|
+
"returnType": "void",
|
|
62387
|
+
"isStatic": false,
|
|
62388
|
+
"isPublic": true
|
|
62389
|
+
},
|
|
61702
62390
|
"initialize": {
|
|
61703
62391
|
"name": "initialize",
|
|
61704
62392
|
"async": true,
|
|
@@ -62255,6 +62943,14 @@ var testManifest = {
|
|
|
62255
62943
|
"isStatic": false,
|
|
62256
62944
|
"isPublic": true
|
|
62257
62945
|
},
|
|
62946
|
+
"requireInsertOnSave": {
|
|
62947
|
+
"name": "requireInsertOnSave",
|
|
62948
|
+
"async": false,
|
|
62949
|
+
"parameters": [],
|
|
62950
|
+
"returnType": "void",
|
|
62951
|
+
"isStatic": false,
|
|
62952
|
+
"isPublic": true
|
|
62953
|
+
},
|
|
62258
62954
|
"initialize": {
|
|
62259
62955
|
"name": "initialize",
|
|
62260
62956
|
"async": true,
|
|
@@ -62811,6 +63507,14 @@ var testManifest = {
|
|
|
62811
63507
|
"isStatic": false,
|
|
62812
63508
|
"isPublic": true
|
|
62813
63509
|
},
|
|
63510
|
+
"requireInsertOnSave": {
|
|
63511
|
+
"name": "requireInsertOnSave",
|
|
63512
|
+
"async": false,
|
|
63513
|
+
"parameters": [],
|
|
63514
|
+
"returnType": "void",
|
|
63515
|
+
"isStatic": false,
|
|
63516
|
+
"isPublic": true
|
|
63517
|
+
},
|
|
62814
63518
|
"initialize": {
|
|
62815
63519
|
"name": "initialize",
|
|
62816
63520
|
"async": true,
|
|
@@ -64370,32 +65074,29 @@ var testManifest = {
|
|
|
64370
65074
|
"version": "c2a923c8"
|
|
64371
65075
|
}
|
|
64372
65076
|
},
|
|
64373
|
-
"@happyvertical/smrt-core:
|
|
64374
|
-
"name": "
|
|
64375
|
-
"className": "
|
|
64376
|
-
"qualifiedName": "@happyvertical/smrt-core:
|
|
64377
|
-
"collection": "
|
|
64378
|
-
"filePath": "packages/core/src/generators/
|
|
65077
|
+
"@happyvertical/smrt-core:CondGetPublicCached": {
|
|
65078
|
+
"name": "condgetpubliccached",
|
|
65079
|
+
"className": "CondGetPublicCached",
|
|
65080
|
+
"qualifiedName": "@happyvertical/smrt-core:CondGetPublicCached",
|
|
65081
|
+
"collection": "condgetpubliccacheds",
|
|
65082
|
+
"filePath": "packages/core/src/generators/conditional-get.spec.ts",
|
|
64379
65083
|
"packageName": "@happyvertical/smrt-core",
|
|
64380
65084
|
"fields": { "name": {
|
|
64381
65085
|
"type": "text",
|
|
64382
|
-
"required": false
|
|
65086
|
+
"required": false,
|
|
65087
|
+
"_meta": {}
|
|
64383
65088
|
} },
|
|
64384
|
-
"methods": {
|
|
64385
|
-
|
|
64386
|
-
"
|
|
64387
|
-
"
|
|
64388
|
-
"returnType": "Promise<any>",
|
|
64389
|
-
"isStatic": false,
|
|
64390
|
-
"isPublic": true
|
|
65089
|
+
"methods": {},
|
|
65090
|
+
"decoratorConfig": { "api": {
|
|
65091
|
+
"public": true,
|
|
65092
|
+
"cache": { "sMaxage": 300 }
|
|
64391
65093
|
} },
|
|
64392
|
-
"decoratorConfig": { "mcp": false },
|
|
64393
65094
|
"extends": "SmrtObject",
|
|
64394
|
-
"exportName": "
|
|
64395
|
-
"collectionExportName": "
|
|
65095
|
+
"exportName": "CondGetPublicCached",
|
|
65096
|
+
"collectionExportName": "CondGetPublicCachedCollection",
|
|
64396
65097
|
"schema": {
|
|
64397
|
-
"tableName": "
|
|
64398
|
-
"ddl": "CREATE TABLE IF NOT EXISTS \"
|
|
65098
|
+
"tableName": "cond_get_public_cacheds",
|
|
65099
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"cond_get_public_cacheds\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"name\" TEXT\n);",
|
|
64399
65100
|
"columns": {
|
|
64400
65101
|
"id": {
|
|
64401
65102
|
"type": "UUID",
|
|
@@ -64429,41 +65130,33 @@ var testManifest = {
|
|
|
64429
65130
|
}
|
|
64430
65131
|
},
|
|
64431
65132
|
"indexes": [{
|
|
64432
|
-
"name": "
|
|
65133
|
+
"name": "cond_get_public_cacheds_id_idx",
|
|
64433
65134
|
"columns": ["id"]
|
|
64434
65135
|
}, {
|
|
64435
|
-
"name": "
|
|
65136
|
+
"name": "cond_get_public_cacheds_slug_context_idx",
|
|
64436
65137
|
"columns": ["slug", "context"],
|
|
64437
65138
|
"unique": true
|
|
64438
65139
|
}],
|
|
64439
|
-
"version": "
|
|
65140
|
+
"version": "0b06a386"
|
|
64440
65141
|
}
|
|
64441
65142
|
},
|
|
64442
|
-
"@happyvertical/smrt-core:
|
|
64443
|
-
"name": "
|
|
64444
|
-
"className": "
|
|
64445
|
-
"qualifiedName": "@happyvertical/smrt-core:
|
|
64446
|
-
"collection": "
|
|
64447
|
-
"filePath": "packages/core/src/generators/
|
|
65143
|
+
"@happyvertical/smrt-core:CondGetPublicCachedCollection": {
|
|
65144
|
+
"name": "condgetpubliccachedcollection",
|
|
65145
|
+
"className": "CondGetPublicCachedCollection",
|
|
65146
|
+
"qualifiedName": "@happyvertical/smrt-core:CondGetPublicCachedCollection",
|
|
65147
|
+
"collection": "condgetpubliccacheds",
|
|
65148
|
+
"filePath": "packages/core/src/generators/conditional-get.spec.ts",
|
|
64448
65149
|
"packageName": "@happyvertical/smrt-core",
|
|
64449
|
-
"fields": {
|
|
64450
|
-
"name": {
|
|
64451
|
-
"type": "text",
|
|
64452
|
-
"required": false
|
|
64453
|
-
},
|
|
64454
|
-
"secretField": {
|
|
64455
|
-
"type": "text",
|
|
64456
|
-
"required": false
|
|
64457
|
-
}
|
|
64458
|
-
},
|
|
65150
|
+
"fields": {},
|
|
64459
65151
|
"methods": {},
|
|
64460
|
-
"decoratorConfig": {
|
|
64461
|
-
"extends": "
|
|
64462
|
-
"
|
|
64463
|
-
"
|
|
65152
|
+
"decoratorConfig": {},
|
|
65153
|
+
"extends": "SmrtCollection",
|
|
65154
|
+
"extendsTypeArg": "CondGetPublicCached",
|
|
65155
|
+
"exportName": "CondGetPublicCachedCollection",
|
|
65156
|
+
"collectionExportName": "CondGetPublicCachedCollectionCollection",
|
|
64464
65157
|
"schema": {
|
|
64465
|
-
"tableName": "
|
|
64466
|
-
"ddl": "CREATE TABLE IF NOT EXISTS \"
|
|
65158
|
+
"tableName": "cond_get_public_cached_collections",
|
|
65159
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"cond_get_public_cached_collections\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp\n);",
|
|
64467
65160
|
"columns": {
|
|
64468
65161
|
"id": {
|
|
64469
65162
|
"type": "UUID",
|
|
@@ -64489,65 +65182,39 @@ var testManifest = {
|
|
|
64489
65182
|
"type": "TIMESTAMP",
|
|
64490
65183
|
"notNull": true,
|
|
64491
65184
|
"default": "current_timestamp"
|
|
64492
|
-
},
|
|
64493
|
-
"name": {
|
|
64494
|
-
"type": "TEXT",
|
|
64495
|
-
"notNull": false,
|
|
64496
|
-
"unique": false
|
|
64497
|
-
},
|
|
64498
|
-
"secret_field": {
|
|
64499
|
-
"type": "TEXT",
|
|
64500
|
-
"notNull": false,
|
|
64501
|
-
"unique": false
|
|
64502
65185
|
}
|
|
64503
65186
|
},
|
|
64504
65187
|
"indexes": [{
|
|
64505
|
-
"name": "
|
|
65188
|
+
"name": "cond_get_public_cached_collections_id_idx",
|
|
64506
65189
|
"columns": ["id"]
|
|
64507
65190
|
}, {
|
|
64508
|
-
"name": "
|
|
65191
|
+
"name": "cond_get_public_cached_collections_slug_context_idx",
|
|
64509
65192
|
"columns": ["slug", "context"],
|
|
64510
65193
|
"unique": true
|
|
64511
65194
|
}],
|
|
64512
|
-
"version": "
|
|
65195
|
+
"version": "a5a7b31b"
|
|
64513
65196
|
}
|
|
64514
65197
|
},
|
|
64515
|
-
"@happyvertical/smrt-core:
|
|
64516
|
-
"name": "
|
|
64517
|
-
"className": "
|
|
64518
|
-
"qualifiedName": "@happyvertical/smrt-core:
|
|
64519
|
-
"collection": "
|
|
64520
|
-
"filePath": "packages/core/src/generators/
|
|
65198
|
+
"@happyvertical/smrt-core:CondGetPublicPlain": {
|
|
65199
|
+
"name": "condgetpublicplain",
|
|
65200
|
+
"className": "CondGetPublicPlain",
|
|
65201
|
+
"qualifiedName": "@happyvertical/smrt-core:CondGetPublicPlain",
|
|
65202
|
+
"collection": "condgetpublicplains",
|
|
65203
|
+
"filePath": "packages/core/src/generators/conditional-get.spec.ts",
|
|
64521
65204
|
"packageName": "@happyvertical/smrt-core",
|
|
64522
65205
|
"fields": { "name": {
|
|
64523
65206
|
"type": "text",
|
|
64524
|
-
"required": false
|
|
65207
|
+
"required": false,
|
|
65208
|
+
"_meta": {}
|
|
64525
65209
|
} },
|
|
64526
|
-
"methods": {
|
|
64527
|
-
|
|
64528
|
-
"name": "recordPayment",
|
|
64529
|
-
"async": true,
|
|
64530
|
-
"parameters": [],
|
|
64531
|
-
"returnType": "Promise<any>",
|
|
64532
|
-
"isStatic": false,
|
|
64533
|
-
"isPublic": true
|
|
64534
|
-
},
|
|
64535
|
-
"recognizeRevenue": {
|
|
64536
|
-
"name": "recognizeRevenue",
|
|
64537
|
-
"async": true,
|
|
64538
|
-
"parameters": [],
|
|
64539
|
-
"returnType": "Promise<any>",
|
|
64540
|
-
"isStatic": false,
|
|
64541
|
-
"isPublic": true
|
|
64542
|
-
}
|
|
64543
|
-
},
|
|
64544
|
-
"decoratorConfig": { "mcp": { "include": ["list", "get"] } },
|
|
65210
|
+
"methods": {},
|
|
65211
|
+
"decoratorConfig": { "api": { "public": true } },
|
|
64545
65212
|
"extends": "SmrtObject",
|
|
64546
|
-
"exportName": "
|
|
64547
|
-
"collectionExportName": "
|
|
65213
|
+
"exportName": "CondGetPublicPlain",
|
|
65214
|
+
"collectionExportName": "CondGetPublicPlainCollection",
|
|
64548
65215
|
"schema": {
|
|
64549
|
-
"tableName": "
|
|
64550
|
-
"ddl": "CREATE TABLE IF NOT EXISTS \"
|
|
65216
|
+
"tableName": "cond_get_public_plains",
|
|
65217
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"cond_get_public_plains\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"name\" TEXT\n);",
|
|
64551
65218
|
"columns": {
|
|
64552
65219
|
"id": {
|
|
64553
65220
|
"type": "UUID",
|
|
@@ -64581,56 +65248,33 @@ var testManifest = {
|
|
|
64581
65248
|
}
|
|
64582
65249
|
},
|
|
64583
65250
|
"indexes": [{
|
|
64584
|
-
"name": "
|
|
65251
|
+
"name": "cond_get_public_plains_id_idx",
|
|
64585
65252
|
"columns": ["id"]
|
|
64586
65253
|
}, {
|
|
64587
|
-
"name": "
|
|
65254
|
+
"name": "cond_get_public_plains_slug_context_idx",
|
|
64588
65255
|
"columns": ["slug", "context"],
|
|
64589
65256
|
"unique": true
|
|
64590
65257
|
}],
|
|
64591
|
-
"version": "
|
|
65258
|
+
"version": "44461a94"
|
|
64592
65259
|
}
|
|
64593
65260
|
},
|
|
64594
|
-
"@happyvertical/smrt-core:
|
|
64595
|
-
"name": "
|
|
64596
|
-
"className": "
|
|
64597
|
-
"qualifiedName": "@happyvertical/smrt-core:
|
|
64598
|
-
"collection": "
|
|
64599
|
-
"filePath": "packages/core/src/generators/
|
|
65261
|
+
"@happyvertical/smrt-core:CondGetPublicPlainCollection": {
|
|
65262
|
+
"name": "condgetpublicplaincollection",
|
|
65263
|
+
"className": "CondGetPublicPlainCollection",
|
|
65264
|
+
"qualifiedName": "@happyvertical/smrt-core:CondGetPublicPlainCollection",
|
|
65265
|
+
"collection": "condgetpublicplains",
|
|
65266
|
+
"filePath": "packages/core/src/generators/conditional-get.spec.ts",
|
|
64600
65267
|
"packageName": "@happyvertical/smrt-core",
|
|
64601
|
-
"fields": {
|
|
64602
|
-
|
|
64603
|
-
|
|
64604
|
-
|
|
64605
|
-
"
|
|
64606
|
-
|
|
64607
|
-
|
|
64608
|
-
"async": true,
|
|
64609
|
-
"parameters": [],
|
|
64610
|
-
"returnType": "Promise<any>",
|
|
64611
|
-
"isStatic": false,
|
|
64612
|
-
"isPublic": true
|
|
64613
|
-
},
|
|
64614
|
-
"recognizeRevenue": {
|
|
64615
|
-
"name": "recognizeRevenue",
|
|
64616
|
-
"async": true,
|
|
64617
|
-
"parameters": [],
|
|
64618
|
-
"returnType": "Promise<any>",
|
|
64619
|
-
"isStatic": false,
|
|
64620
|
-
"isPublic": true
|
|
64621
|
-
}
|
|
64622
|
-
},
|
|
64623
|
-
"decoratorConfig": { "mcp": { "include": [
|
|
64624
|
-
"list",
|
|
64625
|
-
"get",
|
|
64626
|
-
"recordPayment"
|
|
64627
|
-
] } },
|
|
64628
|
-
"extends": "SmrtObject",
|
|
64629
|
-
"exportName": "C3McpNamedCustom",
|
|
64630
|
-
"collectionExportName": "C3McpNamedCustomCollection",
|
|
65268
|
+
"fields": {},
|
|
65269
|
+
"methods": {},
|
|
65270
|
+
"decoratorConfig": {},
|
|
65271
|
+
"extends": "SmrtCollection",
|
|
65272
|
+
"extendsTypeArg": "CondGetPublicPlain",
|
|
65273
|
+
"exportName": "CondGetPublicPlainCollection",
|
|
65274
|
+
"collectionExportName": "CondGetPublicPlainCollectionCollection",
|
|
64631
65275
|
"schema": {
|
|
64632
|
-
"tableName": "
|
|
64633
|
-
"ddl": "CREATE TABLE IF NOT EXISTS \"
|
|
65276
|
+
"tableName": "cond_get_public_plain_collections",
|
|
65277
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"cond_get_public_plain_collections\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp\n);",
|
|
64634
65278
|
"columns": {
|
|
64635
65279
|
"id": {
|
|
64636
65280
|
"type": "UUID",
|
|
@@ -64656,54 +65300,39 @@ var testManifest = {
|
|
|
64656
65300
|
"type": "TIMESTAMP",
|
|
64657
65301
|
"notNull": true,
|
|
64658
65302
|
"default": "current_timestamp"
|
|
64659
|
-
},
|
|
64660
|
-
"name": {
|
|
64661
|
-
"type": "TEXT",
|
|
64662
|
-
"notNull": false,
|
|
64663
|
-
"unique": false
|
|
64664
65303
|
}
|
|
64665
65304
|
},
|
|
64666
65305
|
"indexes": [{
|
|
64667
|
-
"name": "
|
|
65306
|
+
"name": "cond_get_public_plain_collections_id_idx",
|
|
64668
65307
|
"columns": ["id"]
|
|
64669
65308
|
}, {
|
|
64670
|
-
"name": "
|
|
65309
|
+
"name": "cond_get_public_plain_collections_slug_context_idx",
|
|
64671
65310
|
"columns": ["slug", "context"],
|
|
64672
65311
|
"unique": true
|
|
64673
65312
|
}],
|
|
64674
|
-
"version": "
|
|
65313
|
+
"version": "65eda6f9"
|
|
64675
65314
|
}
|
|
64676
65315
|
},
|
|
64677
|
-
"@happyvertical/smrt-core:
|
|
64678
|
-
"name": "
|
|
64679
|
-
"className": "
|
|
64680
|
-
"qualifiedName": "@happyvertical/smrt-core:
|
|
64681
|
-
"collection": "
|
|
64682
|
-
"filePath": "packages/core/src/generators/
|
|
65316
|
+
"@happyvertical/smrt-core:CondGetPrivateCached": {
|
|
65317
|
+
"name": "condgetprivatecached",
|
|
65318
|
+
"className": "CondGetPrivateCached",
|
|
65319
|
+
"qualifiedName": "@happyvertical/smrt-core:CondGetPrivateCached",
|
|
65320
|
+
"collection": "condgetprivatecacheds",
|
|
65321
|
+
"filePath": "packages/core/src/generators/conditional-get.spec.ts",
|
|
64683
65322
|
"packageName": "@happyvertical/smrt-core",
|
|
64684
65323
|
"fields": { "name": {
|
|
64685
65324
|
"type": "text",
|
|
64686
|
-
"required": false
|
|
64687
|
-
|
|
64688
|
-
"methods": { "publicAction": {
|
|
64689
|
-
"name": "publicAction",
|
|
64690
|
-
"async": true,
|
|
64691
|
-
"parameters": [],
|
|
64692
|
-
"returnType": "Promise<any>",
|
|
64693
|
-
"isStatic": false,
|
|
64694
|
-
"isPublic": true
|
|
65325
|
+
"required": false,
|
|
65326
|
+
"_meta": {}
|
|
64695
65327
|
} },
|
|
64696
|
-
"
|
|
64697
|
-
|
|
64698
|
-
"publicAction",
|
|
64699
|
-
"secretAction"
|
|
64700
|
-
] } },
|
|
65328
|
+
"methods": {},
|
|
65329
|
+
"decoratorConfig": { "api": { "cache": { "sMaxage": 600 } } },
|
|
64701
65330
|
"extends": "SmrtObject",
|
|
64702
|
-
"exportName": "
|
|
64703
|
-
"collectionExportName": "
|
|
65331
|
+
"exportName": "CondGetPrivateCached",
|
|
65332
|
+
"collectionExportName": "CondGetPrivateCachedCollection",
|
|
64704
65333
|
"schema": {
|
|
64705
|
-
"tableName": "
|
|
64706
|
-
"ddl": "CREATE TABLE IF NOT EXISTS \"
|
|
65334
|
+
"tableName": "cond_get_private_cacheds",
|
|
65335
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"cond_get_private_cacheds\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"name\" TEXT\n);",
|
|
64707
65336
|
"columns": {
|
|
64708
65337
|
"id": {
|
|
64709
65338
|
"type": "UUID",
|
|
@@ -64737,42 +65366,33 @@ var testManifest = {
|
|
|
64737
65366
|
}
|
|
64738
65367
|
},
|
|
64739
65368
|
"indexes": [{
|
|
64740
|
-
"name": "
|
|
65369
|
+
"name": "cond_get_private_cacheds_id_idx",
|
|
64741
65370
|
"columns": ["id"]
|
|
64742
65371
|
}, {
|
|
64743
|
-
"name": "
|
|
65372
|
+
"name": "cond_get_private_cacheds_slug_context_idx",
|
|
64744
65373
|
"columns": ["slug", "context"],
|
|
64745
65374
|
"unique": true
|
|
64746
65375
|
}],
|
|
64747
|
-
"version": "
|
|
65376
|
+
"version": "94f97aba"
|
|
64748
65377
|
}
|
|
64749
65378
|
},
|
|
64750
|
-
"@happyvertical/smrt-core:
|
|
64751
|
-
"name": "
|
|
64752
|
-
"className": "
|
|
64753
|
-
"qualifiedName": "@happyvertical/smrt-core:
|
|
64754
|
-
"collection": "
|
|
64755
|
-
"filePath": "packages/core/src/generators/
|
|
65379
|
+
"@happyvertical/smrt-core:CondGetPrivateCachedCollection": {
|
|
65380
|
+
"name": "condgetprivatecachedcollection",
|
|
65381
|
+
"className": "CondGetPrivateCachedCollection",
|
|
65382
|
+
"qualifiedName": "@happyvertical/smrt-core:CondGetPrivateCachedCollection",
|
|
65383
|
+
"collection": "condgetprivatecacheds",
|
|
65384
|
+
"filePath": "packages/core/src/generators/conditional-get.spec.ts",
|
|
64756
65385
|
"packageName": "@happyvertical/smrt-core",
|
|
64757
|
-
"fields": {
|
|
64758
|
-
|
|
64759
|
-
|
|
64760
|
-
|
|
64761
|
-
"
|
|
64762
|
-
|
|
64763
|
-
|
|
64764
|
-
"parameters": [],
|
|
64765
|
-
"returnType": "Promise<any>",
|
|
64766
|
-
"isStatic": false,
|
|
64767
|
-
"isPublic": true
|
|
64768
|
-
} },
|
|
64769
|
-
"decoratorConfig": { "mcp": true },
|
|
64770
|
-
"extends": "SmrtObject",
|
|
64771
|
-
"exportName": "C3McpDefault",
|
|
64772
|
-
"collectionExportName": "C3McpDefaultCollection",
|
|
65386
|
+
"fields": {},
|
|
65387
|
+
"methods": {},
|
|
65388
|
+
"decoratorConfig": {},
|
|
65389
|
+
"extends": "SmrtCollection",
|
|
65390
|
+
"extendsTypeArg": "CondGetPrivateCached",
|
|
65391
|
+
"exportName": "CondGetPrivateCachedCollection",
|
|
65392
|
+
"collectionExportName": "CondGetPrivateCachedCollectionCollection",
|
|
64773
65393
|
"schema": {
|
|
64774
|
-
"tableName": "
|
|
64775
|
-
"ddl": "CREATE TABLE IF NOT EXISTS \"
|
|
65394
|
+
"tableName": "cond_get_private_cached_collections",
|
|
65395
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"cond_get_private_cached_collections\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp\n);",
|
|
64776
65396
|
"columns": {
|
|
64777
65397
|
"id": {
|
|
64778
65398
|
"type": "UUID",
|
|
@@ -64798,30 +65418,25 @@ var testManifest = {
|
|
|
64798
65418
|
"type": "TIMESTAMP",
|
|
64799
65419
|
"notNull": true,
|
|
64800
65420
|
"default": "current_timestamp"
|
|
64801
|
-
},
|
|
64802
|
-
"name": {
|
|
64803
|
-
"type": "TEXT",
|
|
64804
|
-
"notNull": false,
|
|
64805
|
-
"unique": false
|
|
64806
65421
|
}
|
|
64807
65422
|
},
|
|
64808
65423
|
"indexes": [{
|
|
64809
|
-
"name": "
|
|
65424
|
+
"name": "cond_get_private_cached_collections_id_idx",
|
|
64810
65425
|
"columns": ["id"]
|
|
64811
65426
|
}, {
|
|
64812
|
-
"name": "
|
|
65427
|
+
"name": "cond_get_private_cached_collections_slug_context_idx",
|
|
64813
65428
|
"columns": ["slug", "context"],
|
|
64814
65429
|
"unique": true
|
|
64815
65430
|
}],
|
|
64816
|
-
"version": "
|
|
65431
|
+
"version": "8542c8fe"
|
|
64817
65432
|
}
|
|
64818
65433
|
},
|
|
64819
|
-
"@happyvertical/smrt-core:
|
|
64820
|
-
"name": "
|
|
64821
|
-
"className": "
|
|
64822
|
-
"qualifiedName": "@happyvertical/smrt-core:
|
|
64823
|
-
"collection": "
|
|
64824
|
-
"filePath": "packages/core/src/generators/
|
|
65434
|
+
"@happyvertical/smrt-core:CondGetTenantScoped": {
|
|
65435
|
+
"name": "condgettenantscoped",
|
|
65436
|
+
"className": "CondGetTenantScoped",
|
|
65437
|
+
"qualifiedName": "@happyvertical/smrt-core:CondGetTenantScoped",
|
|
65438
|
+
"collection": "condgettenantscopeds",
|
|
65439
|
+
"filePath": "packages/core/src/generators/conditional-get.spec.ts",
|
|
64825
65440
|
"packageName": "@happyvertical/smrt-core",
|
|
64826
65441
|
"fields": {
|
|
64827
65442
|
"name": {
|
|
@@ -64832,31 +65447,626 @@ var testManifest = {
|
|
|
64832
65447
|
"tenantId": {
|
|
64833
65448
|
"type": "text",
|
|
64834
65449
|
"required": false,
|
|
64835
|
-
"_meta": {
|
|
64836
|
-
|
|
64837
|
-
|
|
64838
|
-
|
|
64839
|
-
|
|
64840
|
-
|
|
64841
|
-
|
|
65450
|
+
"_meta": {
|
|
65451
|
+
"generated": true,
|
|
65452
|
+
"source": "tenantScoped_decorator",
|
|
65453
|
+
"sqlType": "UUID",
|
|
65454
|
+
"__tenancy": {
|
|
65455
|
+
"isTenantIdField": true,
|
|
65456
|
+
"mode": "required",
|
|
65457
|
+
"field": "tenantId",
|
|
65458
|
+
"autoFilter": true,
|
|
65459
|
+
"autoPopulate": true,
|
|
65460
|
+
"allowSuperAdminBypass": false
|
|
65461
|
+
}
|
|
65462
|
+
}
|
|
64842
65463
|
}
|
|
64843
65464
|
},
|
|
64844
65465
|
"methods": {},
|
|
64845
|
-
"decoratorConfig": {
|
|
64846
|
-
"
|
|
64847
|
-
|
|
64848
|
-
"
|
|
64849
|
-
"
|
|
64850
|
-
|
|
64851
|
-
|
|
64852
|
-
"public": true
|
|
64853
|
-
} },
|
|
65466
|
+
"decoratorConfig": {
|
|
65467
|
+
"tenantScoped": true,
|
|
65468
|
+
"api": {
|
|
65469
|
+
"public": "read",
|
|
65470
|
+
"cache": { "sMaxage": 600 }
|
|
65471
|
+
}
|
|
65472
|
+
},
|
|
64854
65473
|
"extends": "SmrtObject",
|
|
64855
|
-
"exportName": "
|
|
64856
|
-
"collectionExportName": "
|
|
65474
|
+
"exportName": "CondGetTenantScoped",
|
|
65475
|
+
"collectionExportName": "CondGetTenantScopedCollection",
|
|
64857
65476
|
"schema": {
|
|
64858
|
-
"tableName": "
|
|
64859
|
-
"ddl": "CREATE TABLE IF NOT EXISTS \"
|
|
65477
|
+
"tableName": "cond_get_tenant_scopeds",
|
|
65478
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"cond_get_tenant_scopeds\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"name\" TEXT,\n \"tenant_id\" UUID\n);",
|
|
65479
|
+
"columns": {
|
|
65480
|
+
"id": {
|
|
65481
|
+
"type": "UUID",
|
|
65482
|
+
"primaryKey": true,
|
|
65483
|
+
"referenceKind": "id",
|
|
65484
|
+
"notNull": true
|
|
65485
|
+
},
|
|
65486
|
+
"slug": {
|
|
65487
|
+
"type": "TEXT",
|
|
65488
|
+
"notNull": true
|
|
65489
|
+
},
|
|
65490
|
+
"context": {
|
|
65491
|
+
"type": "TEXT",
|
|
65492
|
+
"notNull": true,
|
|
65493
|
+
"default": ""
|
|
65494
|
+
},
|
|
65495
|
+
"created_at": {
|
|
65496
|
+
"type": "TIMESTAMP",
|
|
65497
|
+
"notNull": true,
|
|
65498
|
+
"default": "current_timestamp"
|
|
65499
|
+
},
|
|
65500
|
+
"updated_at": {
|
|
65501
|
+
"type": "TIMESTAMP",
|
|
65502
|
+
"notNull": true,
|
|
65503
|
+
"default": "current_timestamp"
|
|
65504
|
+
},
|
|
65505
|
+
"name": {
|
|
65506
|
+
"type": "TEXT",
|
|
65507
|
+
"notNull": false,
|
|
65508
|
+
"unique": false
|
|
65509
|
+
},
|
|
65510
|
+
"tenant_id": {
|
|
65511
|
+
"type": "UUID",
|
|
65512
|
+
"referenceKind": "tenantId",
|
|
65513
|
+
"notNull": false,
|
|
65514
|
+
"unique": false
|
|
65515
|
+
}
|
|
65516
|
+
},
|
|
65517
|
+
"indexes": [{
|
|
65518
|
+
"name": "cond_get_tenant_scopeds_id_idx",
|
|
65519
|
+
"columns": ["id"]
|
|
65520
|
+
}, {
|
|
65521
|
+
"name": "cond_get_tenant_scopeds_slug_context_idx",
|
|
65522
|
+
"columns": ["slug", "context"],
|
|
65523
|
+
"unique": true
|
|
65524
|
+
}],
|
|
65525
|
+
"version": "527a3fc4"
|
|
65526
|
+
}
|
|
65527
|
+
},
|
|
65528
|
+
"@happyvertical/smrt-core:CondGetTenantScopedCollection": {
|
|
65529
|
+
"name": "condgettenantscopedcollection",
|
|
65530
|
+
"className": "CondGetTenantScopedCollection",
|
|
65531
|
+
"qualifiedName": "@happyvertical/smrt-core:CondGetTenantScopedCollection",
|
|
65532
|
+
"collection": "condgettenantscopeds",
|
|
65533
|
+
"filePath": "packages/core/src/generators/conditional-get.spec.ts",
|
|
65534
|
+
"packageName": "@happyvertical/smrt-core",
|
|
65535
|
+
"fields": {},
|
|
65536
|
+
"methods": {},
|
|
65537
|
+
"decoratorConfig": {},
|
|
65538
|
+
"extends": "SmrtCollection",
|
|
65539
|
+
"extendsTypeArg": "CondGetTenantScoped",
|
|
65540
|
+
"exportName": "CondGetTenantScopedCollection",
|
|
65541
|
+
"collectionExportName": "CondGetTenantScopedCollectionCollection",
|
|
65542
|
+
"schema": {
|
|
65543
|
+
"tableName": "cond_get_tenant_scoped_collections",
|
|
65544
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"cond_get_tenant_scoped_collections\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp\n);",
|
|
65545
|
+
"columns": {
|
|
65546
|
+
"id": {
|
|
65547
|
+
"type": "UUID",
|
|
65548
|
+
"primaryKey": true,
|
|
65549
|
+
"referenceKind": "id",
|
|
65550
|
+
"notNull": true
|
|
65551
|
+
},
|
|
65552
|
+
"slug": {
|
|
65553
|
+
"type": "TEXT",
|
|
65554
|
+
"notNull": true
|
|
65555
|
+
},
|
|
65556
|
+
"context": {
|
|
65557
|
+
"type": "TEXT",
|
|
65558
|
+
"notNull": true,
|
|
65559
|
+
"default": ""
|
|
65560
|
+
},
|
|
65561
|
+
"created_at": {
|
|
65562
|
+
"type": "TIMESTAMP",
|
|
65563
|
+
"notNull": true,
|
|
65564
|
+
"default": "current_timestamp"
|
|
65565
|
+
},
|
|
65566
|
+
"updated_at": {
|
|
65567
|
+
"type": "TIMESTAMP",
|
|
65568
|
+
"notNull": true,
|
|
65569
|
+
"default": "current_timestamp"
|
|
65570
|
+
}
|
|
65571
|
+
},
|
|
65572
|
+
"indexes": [{
|
|
65573
|
+
"name": "cond_get_tenant_scoped_collections_id_idx",
|
|
65574
|
+
"columns": ["id"]
|
|
65575
|
+
}, {
|
|
65576
|
+
"name": "cond_get_tenant_scoped_collections_slug_context_idx",
|
|
65577
|
+
"columns": ["slug", "context"],
|
|
65578
|
+
"unique": true
|
|
65579
|
+
}],
|
|
65580
|
+
"version": "6122927a"
|
|
65581
|
+
}
|
|
65582
|
+
},
|
|
65583
|
+
"@happyvertical/smrt-core:C3McpDisabled": {
|
|
65584
|
+
"name": "c3mcpdisabled",
|
|
65585
|
+
"className": "C3McpDisabled",
|
|
65586
|
+
"qualifiedName": "@happyvertical/smrt-core:C3McpDisabled",
|
|
65587
|
+
"collection": "c3mcpdisableds",
|
|
65588
|
+
"filePath": "packages/core/src/generators/generator-surface-hardening.spec.ts",
|
|
65589
|
+
"packageName": "@happyvertical/smrt-core",
|
|
65590
|
+
"fields": { "name": {
|
|
65591
|
+
"type": "text",
|
|
65592
|
+
"required": false
|
|
65593
|
+
} },
|
|
65594
|
+
"methods": { "dangerousAction": {
|
|
65595
|
+
"name": "dangerousAction",
|
|
65596
|
+
"async": true,
|
|
65597
|
+
"parameters": [],
|
|
65598
|
+
"returnType": "Promise<any>",
|
|
65599
|
+
"isStatic": false,
|
|
65600
|
+
"isPublic": true
|
|
65601
|
+
} },
|
|
65602
|
+
"decoratorConfig": { "mcp": false },
|
|
65603
|
+
"extends": "SmrtObject",
|
|
65604
|
+
"exportName": "C3McpDisabled",
|
|
65605
|
+
"collectionExportName": "C3McpDisabledCollection",
|
|
65606
|
+
"schema": {
|
|
65607
|
+
"tableName": "c3mcp_disableds",
|
|
65608
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"c3mcp_disableds\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"name\" TEXT\n);",
|
|
65609
|
+
"columns": {
|
|
65610
|
+
"id": {
|
|
65611
|
+
"type": "UUID",
|
|
65612
|
+
"primaryKey": true,
|
|
65613
|
+
"referenceKind": "id",
|
|
65614
|
+
"notNull": true
|
|
65615
|
+
},
|
|
65616
|
+
"slug": {
|
|
65617
|
+
"type": "TEXT",
|
|
65618
|
+
"notNull": true
|
|
65619
|
+
},
|
|
65620
|
+
"context": {
|
|
65621
|
+
"type": "TEXT",
|
|
65622
|
+
"notNull": true,
|
|
65623
|
+
"default": ""
|
|
65624
|
+
},
|
|
65625
|
+
"created_at": {
|
|
65626
|
+
"type": "TIMESTAMP",
|
|
65627
|
+
"notNull": true,
|
|
65628
|
+
"default": "current_timestamp"
|
|
65629
|
+
},
|
|
65630
|
+
"updated_at": {
|
|
65631
|
+
"type": "TIMESTAMP",
|
|
65632
|
+
"notNull": true,
|
|
65633
|
+
"default": "current_timestamp"
|
|
65634
|
+
},
|
|
65635
|
+
"name": {
|
|
65636
|
+
"type": "TEXT",
|
|
65637
|
+
"notNull": false,
|
|
65638
|
+
"unique": false
|
|
65639
|
+
}
|
|
65640
|
+
},
|
|
65641
|
+
"indexes": [{
|
|
65642
|
+
"name": "c3mcp_disableds_id_idx",
|
|
65643
|
+
"columns": ["id"]
|
|
65644
|
+
}, {
|
|
65645
|
+
"name": "c3mcp_disableds_slug_context_idx",
|
|
65646
|
+
"columns": ["slug", "context"],
|
|
65647
|
+
"unique": true
|
|
65648
|
+
}],
|
|
65649
|
+
"version": "dfd1198c"
|
|
65650
|
+
}
|
|
65651
|
+
},
|
|
65652
|
+
"@happyvertical/smrt-core:C3ApiDisabled": {
|
|
65653
|
+
"name": "c3apidisabled",
|
|
65654
|
+
"className": "C3ApiDisabled",
|
|
65655
|
+
"qualifiedName": "@happyvertical/smrt-core:C3ApiDisabled",
|
|
65656
|
+
"collection": "c3apidisableds",
|
|
65657
|
+
"filePath": "packages/core/src/generators/generator-surface-hardening.spec.ts",
|
|
65658
|
+
"packageName": "@happyvertical/smrt-core",
|
|
65659
|
+
"fields": {
|
|
65660
|
+
"name": {
|
|
65661
|
+
"type": "text",
|
|
65662
|
+
"required": false
|
|
65663
|
+
},
|
|
65664
|
+
"secretField": {
|
|
65665
|
+
"type": "text",
|
|
65666
|
+
"required": false
|
|
65667
|
+
}
|
|
65668
|
+
},
|
|
65669
|
+
"methods": {},
|
|
65670
|
+
"decoratorConfig": { "api": false },
|
|
65671
|
+
"extends": "SmrtObject",
|
|
65672
|
+
"exportName": "C3ApiDisabled",
|
|
65673
|
+
"collectionExportName": "C3ApiDisabledCollection",
|
|
65674
|
+
"schema": {
|
|
65675
|
+
"tableName": "c3api_disableds",
|
|
65676
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"c3api_disableds\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"name\" TEXT,\n \"secret_field\" TEXT\n);",
|
|
65677
|
+
"columns": {
|
|
65678
|
+
"id": {
|
|
65679
|
+
"type": "UUID",
|
|
65680
|
+
"primaryKey": true,
|
|
65681
|
+
"referenceKind": "id",
|
|
65682
|
+
"notNull": true
|
|
65683
|
+
},
|
|
65684
|
+
"slug": {
|
|
65685
|
+
"type": "TEXT",
|
|
65686
|
+
"notNull": true
|
|
65687
|
+
},
|
|
65688
|
+
"context": {
|
|
65689
|
+
"type": "TEXT",
|
|
65690
|
+
"notNull": true,
|
|
65691
|
+
"default": ""
|
|
65692
|
+
},
|
|
65693
|
+
"created_at": {
|
|
65694
|
+
"type": "TIMESTAMP",
|
|
65695
|
+
"notNull": true,
|
|
65696
|
+
"default": "current_timestamp"
|
|
65697
|
+
},
|
|
65698
|
+
"updated_at": {
|
|
65699
|
+
"type": "TIMESTAMP",
|
|
65700
|
+
"notNull": true,
|
|
65701
|
+
"default": "current_timestamp"
|
|
65702
|
+
},
|
|
65703
|
+
"name": {
|
|
65704
|
+
"type": "TEXT",
|
|
65705
|
+
"notNull": false,
|
|
65706
|
+
"unique": false
|
|
65707
|
+
},
|
|
65708
|
+
"secret_field": {
|
|
65709
|
+
"type": "TEXT",
|
|
65710
|
+
"notNull": false,
|
|
65711
|
+
"unique": false
|
|
65712
|
+
}
|
|
65713
|
+
},
|
|
65714
|
+
"indexes": [{
|
|
65715
|
+
"name": "c3api_disableds_id_idx",
|
|
65716
|
+
"columns": ["id"]
|
|
65717
|
+
}, {
|
|
65718
|
+
"name": "c3api_disableds_slug_context_idx",
|
|
65719
|
+
"columns": ["slug", "context"],
|
|
65720
|
+
"unique": true
|
|
65721
|
+
}],
|
|
65722
|
+
"version": "a9066efc"
|
|
65723
|
+
}
|
|
65724
|
+
},
|
|
65725
|
+
"@happyvertical/smrt-core:C3McpCrudOnly": {
|
|
65726
|
+
"name": "c3mcpcrudonly",
|
|
65727
|
+
"className": "C3McpCrudOnly",
|
|
65728
|
+
"qualifiedName": "@happyvertical/smrt-core:C3McpCrudOnly",
|
|
65729
|
+
"collection": "c3mcpcrudonlies",
|
|
65730
|
+
"filePath": "packages/core/src/generators/generator-surface-hardening.spec.ts",
|
|
65731
|
+
"packageName": "@happyvertical/smrt-core",
|
|
65732
|
+
"fields": { "name": {
|
|
65733
|
+
"type": "text",
|
|
65734
|
+
"required": false
|
|
65735
|
+
} },
|
|
65736
|
+
"methods": {
|
|
65737
|
+
"recordPayment": {
|
|
65738
|
+
"name": "recordPayment",
|
|
65739
|
+
"async": true,
|
|
65740
|
+
"parameters": [],
|
|
65741
|
+
"returnType": "Promise<any>",
|
|
65742
|
+
"isStatic": false,
|
|
65743
|
+
"isPublic": true
|
|
65744
|
+
},
|
|
65745
|
+
"recognizeRevenue": {
|
|
65746
|
+
"name": "recognizeRevenue",
|
|
65747
|
+
"async": true,
|
|
65748
|
+
"parameters": [],
|
|
65749
|
+
"returnType": "Promise<any>",
|
|
65750
|
+
"isStatic": false,
|
|
65751
|
+
"isPublic": true
|
|
65752
|
+
}
|
|
65753
|
+
},
|
|
65754
|
+
"decoratorConfig": { "mcp": { "include": ["list", "get"] } },
|
|
65755
|
+
"extends": "SmrtObject",
|
|
65756
|
+
"exportName": "C3McpCrudOnly",
|
|
65757
|
+
"collectionExportName": "C3McpCrudOnlyCollection",
|
|
65758
|
+
"schema": {
|
|
65759
|
+
"tableName": "c3mcp_crud_only",
|
|
65760
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"c3mcp_crud_only\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"name\" TEXT\n);",
|
|
65761
|
+
"columns": {
|
|
65762
|
+
"id": {
|
|
65763
|
+
"type": "UUID",
|
|
65764
|
+
"primaryKey": true,
|
|
65765
|
+
"referenceKind": "id",
|
|
65766
|
+
"notNull": true
|
|
65767
|
+
},
|
|
65768
|
+
"slug": {
|
|
65769
|
+
"type": "TEXT",
|
|
65770
|
+
"notNull": true
|
|
65771
|
+
},
|
|
65772
|
+
"context": {
|
|
65773
|
+
"type": "TEXT",
|
|
65774
|
+
"notNull": true,
|
|
65775
|
+
"default": ""
|
|
65776
|
+
},
|
|
65777
|
+
"created_at": {
|
|
65778
|
+
"type": "TIMESTAMP",
|
|
65779
|
+
"notNull": true,
|
|
65780
|
+
"default": "current_timestamp"
|
|
65781
|
+
},
|
|
65782
|
+
"updated_at": {
|
|
65783
|
+
"type": "TIMESTAMP",
|
|
65784
|
+
"notNull": true,
|
|
65785
|
+
"default": "current_timestamp"
|
|
65786
|
+
},
|
|
65787
|
+
"name": {
|
|
65788
|
+
"type": "TEXT",
|
|
65789
|
+
"notNull": false,
|
|
65790
|
+
"unique": false
|
|
65791
|
+
}
|
|
65792
|
+
},
|
|
65793
|
+
"indexes": [{
|
|
65794
|
+
"name": "c3mcp_crud_only_id_idx",
|
|
65795
|
+
"columns": ["id"]
|
|
65796
|
+
}, {
|
|
65797
|
+
"name": "c3mcp_crud_only_slug_context_idx",
|
|
65798
|
+
"columns": ["slug", "context"],
|
|
65799
|
+
"unique": true
|
|
65800
|
+
}],
|
|
65801
|
+
"version": "00044d7d"
|
|
65802
|
+
}
|
|
65803
|
+
},
|
|
65804
|
+
"@happyvertical/smrt-core:C3McpNamedCustom": {
|
|
65805
|
+
"name": "c3mcpnamedcustom",
|
|
65806
|
+
"className": "C3McpNamedCustom",
|
|
65807
|
+
"qualifiedName": "@happyvertical/smrt-core:C3McpNamedCustom",
|
|
65808
|
+
"collection": "c3mcpnamedcustoms",
|
|
65809
|
+
"filePath": "packages/core/src/generators/generator-surface-hardening.spec.ts",
|
|
65810
|
+
"packageName": "@happyvertical/smrt-core",
|
|
65811
|
+
"fields": { "name": {
|
|
65812
|
+
"type": "text",
|
|
65813
|
+
"required": false
|
|
65814
|
+
} },
|
|
65815
|
+
"methods": {
|
|
65816
|
+
"recordPayment": {
|
|
65817
|
+
"name": "recordPayment",
|
|
65818
|
+
"async": true,
|
|
65819
|
+
"parameters": [],
|
|
65820
|
+
"returnType": "Promise<any>",
|
|
65821
|
+
"isStatic": false,
|
|
65822
|
+
"isPublic": true
|
|
65823
|
+
},
|
|
65824
|
+
"recognizeRevenue": {
|
|
65825
|
+
"name": "recognizeRevenue",
|
|
65826
|
+
"async": true,
|
|
65827
|
+
"parameters": [],
|
|
65828
|
+
"returnType": "Promise<any>",
|
|
65829
|
+
"isStatic": false,
|
|
65830
|
+
"isPublic": true
|
|
65831
|
+
}
|
|
65832
|
+
},
|
|
65833
|
+
"decoratorConfig": { "mcp": { "include": [
|
|
65834
|
+
"list",
|
|
65835
|
+
"get",
|
|
65836
|
+
"recordPayment"
|
|
65837
|
+
] } },
|
|
65838
|
+
"extends": "SmrtObject",
|
|
65839
|
+
"exportName": "C3McpNamedCustom",
|
|
65840
|
+
"collectionExportName": "C3McpNamedCustomCollection",
|
|
65841
|
+
"schema": {
|
|
65842
|
+
"tableName": "c3mcp_named_customs",
|
|
65843
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"c3mcp_named_customs\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"name\" TEXT\n);",
|
|
65844
|
+
"columns": {
|
|
65845
|
+
"id": {
|
|
65846
|
+
"type": "UUID",
|
|
65847
|
+
"primaryKey": true,
|
|
65848
|
+
"referenceKind": "id",
|
|
65849
|
+
"notNull": true
|
|
65850
|
+
},
|
|
65851
|
+
"slug": {
|
|
65852
|
+
"type": "TEXT",
|
|
65853
|
+
"notNull": true
|
|
65854
|
+
},
|
|
65855
|
+
"context": {
|
|
65856
|
+
"type": "TEXT",
|
|
65857
|
+
"notNull": true,
|
|
65858
|
+
"default": ""
|
|
65859
|
+
},
|
|
65860
|
+
"created_at": {
|
|
65861
|
+
"type": "TIMESTAMP",
|
|
65862
|
+
"notNull": true,
|
|
65863
|
+
"default": "current_timestamp"
|
|
65864
|
+
},
|
|
65865
|
+
"updated_at": {
|
|
65866
|
+
"type": "TIMESTAMP",
|
|
65867
|
+
"notNull": true,
|
|
65868
|
+
"default": "current_timestamp"
|
|
65869
|
+
},
|
|
65870
|
+
"name": {
|
|
65871
|
+
"type": "TEXT",
|
|
65872
|
+
"notNull": false,
|
|
65873
|
+
"unique": false
|
|
65874
|
+
}
|
|
65875
|
+
},
|
|
65876
|
+
"indexes": [{
|
|
65877
|
+
"name": "c3mcp_named_customs_id_idx",
|
|
65878
|
+
"columns": ["id"]
|
|
65879
|
+
}, {
|
|
65880
|
+
"name": "c3mcp_named_customs_slug_context_idx",
|
|
65881
|
+
"columns": ["slug", "context"],
|
|
65882
|
+
"unique": true
|
|
65883
|
+
}],
|
|
65884
|
+
"version": "2cf7344a"
|
|
65885
|
+
}
|
|
65886
|
+
},
|
|
65887
|
+
"@happyvertical/smrt-core:C3McpPrivateInInclude": {
|
|
65888
|
+
"name": "c3mcpprivateininclude",
|
|
65889
|
+
"className": "C3McpPrivateInInclude",
|
|
65890
|
+
"qualifiedName": "@happyvertical/smrt-core:C3McpPrivateInInclude",
|
|
65891
|
+
"collection": "c3mcpprivateinincludes",
|
|
65892
|
+
"filePath": "packages/core/src/generators/generator-surface-hardening.spec.ts",
|
|
65893
|
+
"packageName": "@happyvertical/smrt-core",
|
|
65894
|
+
"fields": { "name": {
|
|
65895
|
+
"type": "text",
|
|
65896
|
+
"required": false
|
|
65897
|
+
} },
|
|
65898
|
+
"methods": { "publicAction": {
|
|
65899
|
+
"name": "publicAction",
|
|
65900
|
+
"async": true,
|
|
65901
|
+
"parameters": [],
|
|
65902
|
+
"returnType": "Promise<any>",
|
|
65903
|
+
"isStatic": false,
|
|
65904
|
+
"isPublic": true
|
|
65905
|
+
} },
|
|
65906
|
+
"decoratorConfig": { "mcp": { "include": [
|
|
65907
|
+
"list",
|
|
65908
|
+
"publicAction",
|
|
65909
|
+
"secretAction"
|
|
65910
|
+
] } },
|
|
65911
|
+
"extends": "SmrtObject",
|
|
65912
|
+
"exportName": "C3McpPrivateInInclude",
|
|
65913
|
+
"collectionExportName": "C3McpPrivateInIncludeCollection",
|
|
65914
|
+
"schema": {
|
|
65915
|
+
"tableName": "c3mcp_private_in_includes",
|
|
65916
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"c3mcp_private_in_includes\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"name\" TEXT\n);",
|
|
65917
|
+
"columns": {
|
|
65918
|
+
"id": {
|
|
65919
|
+
"type": "UUID",
|
|
65920
|
+
"primaryKey": true,
|
|
65921
|
+
"referenceKind": "id",
|
|
65922
|
+
"notNull": true
|
|
65923
|
+
},
|
|
65924
|
+
"slug": {
|
|
65925
|
+
"type": "TEXT",
|
|
65926
|
+
"notNull": true
|
|
65927
|
+
},
|
|
65928
|
+
"context": {
|
|
65929
|
+
"type": "TEXT",
|
|
65930
|
+
"notNull": true,
|
|
65931
|
+
"default": ""
|
|
65932
|
+
},
|
|
65933
|
+
"created_at": {
|
|
65934
|
+
"type": "TIMESTAMP",
|
|
65935
|
+
"notNull": true,
|
|
65936
|
+
"default": "current_timestamp"
|
|
65937
|
+
},
|
|
65938
|
+
"updated_at": {
|
|
65939
|
+
"type": "TIMESTAMP",
|
|
65940
|
+
"notNull": true,
|
|
65941
|
+
"default": "current_timestamp"
|
|
65942
|
+
},
|
|
65943
|
+
"name": {
|
|
65944
|
+
"type": "TEXT",
|
|
65945
|
+
"notNull": false,
|
|
65946
|
+
"unique": false
|
|
65947
|
+
}
|
|
65948
|
+
},
|
|
65949
|
+
"indexes": [{
|
|
65950
|
+
"name": "c3mcp_private_in_includes_id_idx",
|
|
65951
|
+
"columns": ["id"]
|
|
65952
|
+
}, {
|
|
65953
|
+
"name": "c3mcp_private_in_includes_slug_context_idx",
|
|
65954
|
+
"columns": ["slug", "context"],
|
|
65955
|
+
"unique": true
|
|
65956
|
+
}],
|
|
65957
|
+
"version": "a45b585a"
|
|
65958
|
+
}
|
|
65959
|
+
},
|
|
65960
|
+
"@happyvertical/smrt-core:C3McpDefault": {
|
|
65961
|
+
"name": "c3mcpdefault",
|
|
65962
|
+
"className": "C3McpDefault",
|
|
65963
|
+
"qualifiedName": "@happyvertical/smrt-core:C3McpDefault",
|
|
65964
|
+
"collection": "c3mcpdefaults",
|
|
65965
|
+
"filePath": "packages/core/src/generators/generator-surface-hardening.spec.ts",
|
|
65966
|
+
"packageName": "@happyvertical/smrt-core",
|
|
65967
|
+
"fields": { "name": {
|
|
65968
|
+
"type": "text",
|
|
65969
|
+
"required": false
|
|
65970
|
+
} },
|
|
65971
|
+
"methods": { "syncNow": {
|
|
65972
|
+
"name": "syncNow",
|
|
65973
|
+
"async": true,
|
|
65974
|
+
"parameters": [],
|
|
65975
|
+
"returnType": "Promise<any>",
|
|
65976
|
+
"isStatic": false,
|
|
65977
|
+
"isPublic": true
|
|
65978
|
+
} },
|
|
65979
|
+
"decoratorConfig": { "mcp": true },
|
|
65980
|
+
"extends": "SmrtObject",
|
|
65981
|
+
"exportName": "C3McpDefault",
|
|
65982
|
+
"collectionExportName": "C3McpDefaultCollection",
|
|
65983
|
+
"schema": {
|
|
65984
|
+
"tableName": "c3mcp_defaults",
|
|
65985
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"c3mcp_defaults\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"name\" TEXT\n);",
|
|
65986
|
+
"columns": {
|
|
65987
|
+
"id": {
|
|
65988
|
+
"type": "UUID",
|
|
65989
|
+
"primaryKey": true,
|
|
65990
|
+
"referenceKind": "id",
|
|
65991
|
+
"notNull": true
|
|
65992
|
+
},
|
|
65993
|
+
"slug": {
|
|
65994
|
+
"type": "TEXT",
|
|
65995
|
+
"notNull": true
|
|
65996
|
+
},
|
|
65997
|
+
"context": {
|
|
65998
|
+
"type": "TEXT",
|
|
65999
|
+
"notNull": true,
|
|
66000
|
+
"default": ""
|
|
66001
|
+
},
|
|
66002
|
+
"created_at": {
|
|
66003
|
+
"type": "TIMESTAMP",
|
|
66004
|
+
"notNull": true,
|
|
66005
|
+
"default": "current_timestamp"
|
|
66006
|
+
},
|
|
66007
|
+
"updated_at": {
|
|
66008
|
+
"type": "TIMESTAMP",
|
|
66009
|
+
"notNull": true,
|
|
66010
|
+
"default": "current_timestamp"
|
|
66011
|
+
},
|
|
66012
|
+
"name": {
|
|
66013
|
+
"type": "TEXT",
|
|
66014
|
+
"notNull": false,
|
|
66015
|
+
"unique": false
|
|
66016
|
+
}
|
|
66017
|
+
},
|
|
66018
|
+
"indexes": [{
|
|
66019
|
+
"name": "c3mcp_defaults_id_idx",
|
|
66020
|
+
"columns": ["id"]
|
|
66021
|
+
}, {
|
|
66022
|
+
"name": "c3mcp_defaults_slug_context_idx",
|
|
66023
|
+
"columns": ["slug", "context"],
|
|
66024
|
+
"unique": true
|
|
66025
|
+
}],
|
|
66026
|
+
"version": "5d01f22e"
|
|
66027
|
+
}
|
|
66028
|
+
},
|
|
66029
|
+
"@happyvertical/smrt-core:RestWritableWidget": {
|
|
66030
|
+
"name": "restwritablewidget",
|
|
66031
|
+
"className": "RestWritableWidget",
|
|
66032
|
+
"qualifiedName": "@happyvertical/smrt-core:RestWritableWidget",
|
|
66033
|
+
"collection": "restwritablewidgets",
|
|
66034
|
+
"filePath": "packages/core/src/generators/issue-1540-rest-writable.spec.ts",
|
|
66035
|
+
"packageName": "@happyvertical/smrt-core",
|
|
66036
|
+
"fields": {
|
|
66037
|
+
"name": {
|
|
66038
|
+
"type": "text",
|
|
66039
|
+
"required": false,
|
|
66040
|
+
"_meta": {}
|
|
66041
|
+
},
|
|
66042
|
+
"tenantId": {
|
|
66043
|
+
"type": "text",
|
|
66044
|
+
"required": false,
|
|
66045
|
+
"_meta": { "nullable": true }
|
|
66046
|
+
},
|
|
66047
|
+
"internalCode": {
|
|
66048
|
+
"type": "text",
|
|
66049
|
+
"required": false,
|
|
66050
|
+
"_meta": { "readonly": true },
|
|
66051
|
+
"readonly": true
|
|
66052
|
+
}
|
|
66053
|
+
},
|
|
66054
|
+
"methods": {},
|
|
66055
|
+
"decoratorConfig": { "api": {
|
|
66056
|
+
"include": [
|
|
66057
|
+
"list",
|
|
66058
|
+
"get",
|
|
66059
|
+
"create",
|
|
66060
|
+
"update"
|
|
66061
|
+
],
|
|
66062
|
+
"public": true
|
|
66063
|
+
} },
|
|
66064
|
+
"extends": "SmrtObject",
|
|
66065
|
+
"exportName": "RestWritableWidget",
|
|
66066
|
+
"collectionExportName": "RestWritableWidgetCollection",
|
|
66067
|
+
"schema": {
|
|
66068
|
+
"tableName": "rest_writable_widgets",
|
|
66069
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"rest_writable_widgets\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"name\" TEXT,\n \"tenant_id\" TEXT,\n \"internal_code\" TEXT\n);",
|
|
64860
66070
|
"columns": {
|
|
64861
66071
|
"id": {
|
|
64862
66072
|
"type": "UUID",
|
|
@@ -65212,6 +66422,281 @@ var testManifest = {
|
|
|
65212
66422
|
"version": "fbe68529"
|
|
65213
66423
|
}
|
|
65214
66424
|
},
|
|
66425
|
+
"@happyvertical/smrt-core:PublicTenantDoc": {
|
|
66426
|
+
"name": "publictenantdoc",
|
|
66427
|
+
"className": "PublicTenantDoc",
|
|
66428
|
+
"qualifiedName": "@happyvertical/smrt-core:PublicTenantDoc",
|
|
66429
|
+
"collection": "publictenantdocs",
|
|
66430
|
+
"filePath": "packages/core/src/generators/issue-1782-tenant-read-scope.spec.ts",
|
|
66431
|
+
"packageName": "@happyvertical/smrt-core",
|
|
66432
|
+
"fields": {
|
|
66433
|
+
"name": {
|
|
66434
|
+
"type": "text",
|
|
66435
|
+
"required": false,
|
|
66436
|
+
"_meta": {}
|
|
66437
|
+
},
|
|
66438
|
+
"tenantId": {
|
|
66439
|
+
"type": "text",
|
|
66440
|
+
"required": false,
|
|
66441
|
+
"_meta": {
|
|
66442
|
+
"nullable": true,
|
|
66443
|
+
"sqlType": "UUID",
|
|
66444
|
+
"__tenancy": {
|
|
66445
|
+
"isTenantIdField": true,
|
|
66446
|
+
"mode": "optional",
|
|
66447
|
+
"field": "tenantId",
|
|
66448
|
+
"autoFilter": true,
|
|
66449
|
+
"autoPopulate": true,
|
|
66450
|
+
"allowSuperAdminBypass": false
|
|
66451
|
+
}
|
|
66452
|
+
}
|
|
66453
|
+
}
|
|
66454
|
+
},
|
|
66455
|
+
"methods": {},
|
|
66456
|
+
"decoratorConfig": {
|
|
66457
|
+
"tenantScoped": { "mode": "optional" },
|
|
66458
|
+
"api": { "public": "read" }
|
|
66459
|
+
},
|
|
66460
|
+
"extends": "SmrtObject",
|
|
66461
|
+
"exportName": "PublicTenantDoc",
|
|
66462
|
+
"collectionExportName": "PublicTenantDocCollection",
|
|
66463
|
+
"schema": {
|
|
66464
|
+
"tableName": "public_tenant_docs",
|
|
66465
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"public_tenant_docs\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"name\" TEXT,\n \"tenant_id\" UUID\n);",
|
|
66466
|
+
"columns": {
|
|
66467
|
+
"id": {
|
|
66468
|
+
"type": "UUID",
|
|
66469
|
+
"primaryKey": true,
|
|
66470
|
+
"referenceKind": "id",
|
|
66471
|
+
"notNull": true
|
|
66472
|
+
},
|
|
66473
|
+
"slug": {
|
|
66474
|
+
"type": "TEXT",
|
|
66475
|
+
"notNull": true
|
|
66476
|
+
},
|
|
66477
|
+
"context": {
|
|
66478
|
+
"type": "TEXT",
|
|
66479
|
+
"notNull": true,
|
|
66480
|
+
"default": ""
|
|
66481
|
+
},
|
|
66482
|
+
"created_at": {
|
|
66483
|
+
"type": "TIMESTAMP",
|
|
66484
|
+
"notNull": true,
|
|
66485
|
+
"default": "current_timestamp"
|
|
66486
|
+
},
|
|
66487
|
+
"updated_at": {
|
|
66488
|
+
"type": "TIMESTAMP",
|
|
66489
|
+
"notNull": true,
|
|
66490
|
+
"default": "current_timestamp"
|
|
66491
|
+
},
|
|
66492
|
+
"name": {
|
|
66493
|
+
"type": "TEXT",
|
|
66494
|
+
"notNull": false,
|
|
66495
|
+
"unique": false
|
|
66496
|
+
},
|
|
66497
|
+
"tenant_id": {
|
|
66498
|
+
"type": "UUID",
|
|
66499
|
+
"referenceKind": "tenantId",
|
|
66500
|
+
"notNull": false,
|
|
66501
|
+
"unique": false
|
|
66502
|
+
}
|
|
66503
|
+
},
|
|
66504
|
+
"indexes": [{
|
|
66505
|
+
"name": "public_tenant_docs_id_idx",
|
|
66506
|
+
"columns": ["id"]
|
|
66507
|
+
}, {
|
|
66508
|
+
"name": "public_tenant_docs_slug_context_idx",
|
|
66509
|
+
"columns": ["slug", "context"],
|
|
66510
|
+
"unique": true
|
|
66511
|
+
}],
|
|
66512
|
+
"version": "12a72e86"
|
|
66513
|
+
}
|
|
66514
|
+
},
|
|
66515
|
+
"@happyvertical/smrt-core:PublicTenantDocCollection": {
|
|
66516
|
+
"name": "publictenantdoccollection",
|
|
66517
|
+
"className": "PublicTenantDocCollection",
|
|
66518
|
+
"qualifiedName": "@happyvertical/smrt-core:PublicTenantDocCollection",
|
|
66519
|
+
"collection": "publictenantdocs",
|
|
66520
|
+
"filePath": "packages/core/src/generators/issue-1782-tenant-read-scope.spec.ts",
|
|
66521
|
+
"packageName": "@happyvertical/smrt-core",
|
|
66522
|
+
"fields": {},
|
|
66523
|
+
"methods": {},
|
|
66524
|
+
"decoratorConfig": {},
|
|
66525
|
+
"extends": "SmrtCollection",
|
|
66526
|
+
"extendsTypeArg": "PublicTenantDoc",
|
|
66527
|
+
"exportName": "PublicTenantDocCollection",
|
|
66528
|
+
"collectionExportName": "PublicTenantDocCollectionCollection",
|
|
66529
|
+
"schema": {
|
|
66530
|
+
"tableName": "public_tenant_doc_collections",
|
|
66531
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"public_tenant_doc_collections\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp\n);",
|
|
66532
|
+
"columns": {
|
|
66533
|
+
"id": {
|
|
66534
|
+
"type": "UUID",
|
|
66535
|
+
"primaryKey": true,
|
|
66536
|
+
"referenceKind": "id",
|
|
66537
|
+
"notNull": true
|
|
66538
|
+
},
|
|
66539
|
+
"slug": {
|
|
66540
|
+
"type": "TEXT",
|
|
66541
|
+
"notNull": true
|
|
66542
|
+
},
|
|
66543
|
+
"context": {
|
|
66544
|
+
"type": "TEXT",
|
|
66545
|
+
"notNull": true,
|
|
66546
|
+
"default": ""
|
|
66547
|
+
},
|
|
66548
|
+
"created_at": {
|
|
66549
|
+
"type": "TIMESTAMP",
|
|
66550
|
+
"notNull": true,
|
|
66551
|
+
"default": "current_timestamp"
|
|
66552
|
+
},
|
|
66553
|
+
"updated_at": {
|
|
66554
|
+
"type": "TIMESTAMP",
|
|
66555
|
+
"notNull": true,
|
|
66556
|
+
"default": "current_timestamp"
|
|
66557
|
+
}
|
|
66558
|
+
},
|
|
66559
|
+
"indexes": [{
|
|
66560
|
+
"name": "public_tenant_doc_collections_id_idx",
|
|
66561
|
+
"columns": ["id"]
|
|
66562
|
+
}, {
|
|
66563
|
+
"name": "public_tenant_doc_collections_slug_context_idx",
|
|
66564
|
+
"columns": ["slug", "context"],
|
|
66565
|
+
"unique": true
|
|
66566
|
+
}],
|
|
66567
|
+
"version": "e5afcb41"
|
|
66568
|
+
}
|
|
66569
|
+
},
|
|
66570
|
+
"@happyvertical/smrt-core:Pattern1TenantDoc": {
|
|
66571
|
+
"name": "pattern1tenantdoc",
|
|
66572
|
+
"className": "Pattern1TenantDoc",
|
|
66573
|
+
"qualifiedName": "@happyvertical/smrt-core:Pattern1TenantDoc",
|
|
66574
|
+
"collection": "pattern1tenantdocs",
|
|
66575
|
+
"filePath": "packages/core/src/generators/issue-1782-tenant-read-scope.spec.ts",
|
|
66576
|
+
"packageName": "@happyvertical/smrt-core",
|
|
66577
|
+
"fields": {
|
|
66578
|
+
"name": {
|
|
66579
|
+
"type": "text",
|
|
66580
|
+
"required": false,
|
|
66581
|
+
"_meta": {}
|
|
66582
|
+
},
|
|
66583
|
+
"tenantId": {
|
|
66584
|
+
"type": "text",
|
|
66585
|
+
"required": false,
|
|
66586
|
+
"_meta": { "nullable": true }
|
|
66587
|
+
}
|
|
66588
|
+
},
|
|
66589
|
+
"methods": {},
|
|
66590
|
+
"decoratorConfig": { "api": { "public": "read" } },
|
|
66591
|
+
"extends": "SmrtObject",
|
|
66592
|
+
"exportName": "Pattern1TenantDoc",
|
|
66593
|
+
"collectionExportName": "Pattern1TenantDocCollection",
|
|
66594
|
+
"schema": {
|
|
66595
|
+
"tableName": "pattern1tenant_docs",
|
|
66596
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"pattern1tenant_docs\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"name\" TEXT,\n \"tenant_id\" TEXT\n);",
|
|
66597
|
+
"columns": {
|
|
66598
|
+
"id": {
|
|
66599
|
+
"type": "UUID",
|
|
66600
|
+
"primaryKey": true,
|
|
66601
|
+
"referenceKind": "id",
|
|
66602
|
+
"notNull": true
|
|
66603
|
+
},
|
|
66604
|
+
"slug": {
|
|
66605
|
+
"type": "TEXT",
|
|
66606
|
+
"notNull": true
|
|
66607
|
+
},
|
|
66608
|
+
"context": {
|
|
66609
|
+
"type": "TEXT",
|
|
66610
|
+
"notNull": true,
|
|
66611
|
+
"default": ""
|
|
66612
|
+
},
|
|
66613
|
+
"created_at": {
|
|
66614
|
+
"type": "TIMESTAMP",
|
|
66615
|
+
"notNull": true,
|
|
66616
|
+
"default": "current_timestamp"
|
|
66617
|
+
},
|
|
66618
|
+
"updated_at": {
|
|
66619
|
+
"type": "TIMESTAMP",
|
|
66620
|
+
"notNull": true,
|
|
66621
|
+
"default": "current_timestamp"
|
|
66622
|
+
},
|
|
66623
|
+
"name": {
|
|
66624
|
+
"type": "TEXT",
|
|
66625
|
+
"notNull": false,
|
|
66626
|
+
"unique": false
|
|
66627
|
+
},
|
|
66628
|
+
"tenant_id": {
|
|
66629
|
+
"type": "TEXT",
|
|
66630
|
+
"notNull": false,
|
|
66631
|
+
"unique": false
|
|
66632
|
+
}
|
|
66633
|
+
},
|
|
66634
|
+
"indexes": [{
|
|
66635
|
+
"name": "pattern1tenant_docs_id_idx",
|
|
66636
|
+
"columns": ["id"]
|
|
66637
|
+
}, {
|
|
66638
|
+
"name": "pattern1tenant_docs_slug_context_idx",
|
|
66639
|
+
"columns": ["slug", "context"],
|
|
66640
|
+
"unique": true
|
|
66641
|
+
}],
|
|
66642
|
+
"version": "64ba066b"
|
|
66643
|
+
}
|
|
66644
|
+
},
|
|
66645
|
+
"@happyvertical/smrt-core:Pattern1TenantDocCollection": {
|
|
66646
|
+
"name": "pattern1tenantdoccollection",
|
|
66647
|
+
"className": "Pattern1TenantDocCollection",
|
|
66648
|
+
"qualifiedName": "@happyvertical/smrt-core:Pattern1TenantDocCollection",
|
|
66649
|
+
"collection": "pattern1tenantdocs",
|
|
66650
|
+
"filePath": "packages/core/src/generators/issue-1782-tenant-read-scope.spec.ts",
|
|
66651
|
+
"packageName": "@happyvertical/smrt-core",
|
|
66652
|
+
"fields": {},
|
|
66653
|
+
"methods": {},
|
|
66654
|
+
"decoratorConfig": {},
|
|
66655
|
+
"extends": "SmrtCollection",
|
|
66656
|
+
"extendsTypeArg": "Pattern1TenantDoc",
|
|
66657
|
+
"exportName": "Pattern1TenantDocCollection",
|
|
66658
|
+
"collectionExportName": "Pattern1TenantDocCollectionCollection",
|
|
66659
|
+
"schema": {
|
|
66660
|
+
"tableName": "pattern1tenant_doc_collections",
|
|
66661
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"pattern1tenant_doc_collections\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp\n);",
|
|
66662
|
+
"columns": {
|
|
66663
|
+
"id": {
|
|
66664
|
+
"type": "UUID",
|
|
66665
|
+
"primaryKey": true,
|
|
66666
|
+
"referenceKind": "id",
|
|
66667
|
+
"notNull": true
|
|
66668
|
+
},
|
|
66669
|
+
"slug": {
|
|
66670
|
+
"type": "TEXT",
|
|
66671
|
+
"notNull": true
|
|
66672
|
+
},
|
|
66673
|
+
"context": {
|
|
66674
|
+
"type": "TEXT",
|
|
66675
|
+
"notNull": true,
|
|
66676
|
+
"default": ""
|
|
66677
|
+
},
|
|
66678
|
+
"created_at": {
|
|
66679
|
+
"type": "TIMESTAMP",
|
|
66680
|
+
"notNull": true,
|
|
66681
|
+
"default": "current_timestamp"
|
|
66682
|
+
},
|
|
66683
|
+
"updated_at": {
|
|
66684
|
+
"type": "TIMESTAMP",
|
|
66685
|
+
"notNull": true,
|
|
66686
|
+
"default": "current_timestamp"
|
|
66687
|
+
}
|
|
66688
|
+
},
|
|
66689
|
+
"indexes": [{
|
|
66690
|
+
"name": "pattern1tenant_doc_collections_id_idx",
|
|
66691
|
+
"columns": ["id"]
|
|
66692
|
+
}, {
|
|
66693
|
+
"name": "pattern1tenant_doc_collections_slug_context_idx",
|
|
66694
|
+
"columns": ["slug", "context"],
|
|
66695
|
+
"unique": true
|
|
66696
|
+
}],
|
|
66697
|
+
"version": "3a36391e"
|
|
66698
|
+
}
|
|
66699
|
+
},
|
|
65215
66700
|
"@happyvertical/smrt-core:ProtocolTestObject": {
|
|
65216
66701
|
"name": "protocoltestobject",
|
|
65217
66702
|
"className": "ProtocolTestObject",
|
|
@@ -67746,6 +69231,406 @@ var testManifest = {
|
|
|
67746
69231
|
"version": "6f8ba02a"
|
|
67747
69232
|
}
|
|
67748
69233
|
},
|
|
69234
|
+
"@happyvertical/smrt-core:SyncApplyNote": {
|
|
69235
|
+
"name": "syncapplynote",
|
|
69236
|
+
"className": "SyncApplyNote",
|
|
69237
|
+
"qualifiedName": "@happyvertical/smrt-core:SyncApplyNote",
|
|
69238
|
+
"collection": "syncapplynotes",
|
|
69239
|
+
"filePath": "packages/core/src/generators/sync-apply.spec.ts",
|
|
69240
|
+
"packageName": "@happyvertical/smrt-core",
|
|
69241
|
+
"fields": {
|
|
69242
|
+
"title": {
|
|
69243
|
+
"type": "text",
|
|
69244
|
+
"required": false,
|
|
69245
|
+
"_meta": {}
|
|
69246
|
+
},
|
|
69247
|
+
"priority": {
|
|
69248
|
+
"type": "integer",
|
|
69249
|
+
"required": false,
|
|
69250
|
+
"_meta": {}
|
|
69251
|
+
},
|
|
69252
|
+
"tenantId": {
|
|
69253
|
+
"type": "text",
|
|
69254
|
+
"required": false,
|
|
69255
|
+
"_meta": { "nullable": true }
|
|
69256
|
+
},
|
|
69257
|
+
"internalCode": {
|
|
69258
|
+
"type": "text",
|
|
69259
|
+
"required": false,
|
|
69260
|
+
"_meta": { "readonly": true },
|
|
69261
|
+
"readonly": true
|
|
69262
|
+
}
|
|
69263
|
+
},
|
|
69264
|
+
"methods": {},
|
|
69265
|
+
"decoratorConfig": { "api": { "public": true } },
|
|
69266
|
+
"extends": "SmrtObject",
|
|
69267
|
+
"exportName": "SyncApplyNote",
|
|
69268
|
+
"collectionExportName": "SyncApplyNoteCollection",
|
|
69269
|
+
"schema": {
|
|
69270
|
+
"tableName": "sync_apply_notes",
|
|
69271
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"sync_apply_notes\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"title\" TEXT,\n \"priority\" INTEGER,\n \"tenant_id\" TEXT,\n \"internal_code\" TEXT\n);",
|
|
69272
|
+
"columns": {
|
|
69273
|
+
"id": {
|
|
69274
|
+
"type": "UUID",
|
|
69275
|
+
"primaryKey": true,
|
|
69276
|
+
"referenceKind": "id",
|
|
69277
|
+
"notNull": true
|
|
69278
|
+
},
|
|
69279
|
+
"slug": {
|
|
69280
|
+
"type": "TEXT",
|
|
69281
|
+
"notNull": true
|
|
69282
|
+
},
|
|
69283
|
+
"context": {
|
|
69284
|
+
"type": "TEXT",
|
|
69285
|
+
"notNull": true,
|
|
69286
|
+
"default": ""
|
|
69287
|
+
},
|
|
69288
|
+
"created_at": {
|
|
69289
|
+
"type": "TIMESTAMP",
|
|
69290
|
+
"notNull": true,
|
|
69291
|
+
"default": "current_timestamp"
|
|
69292
|
+
},
|
|
69293
|
+
"updated_at": {
|
|
69294
|
+
"type": "TIMESTAMP",
|
|
69295
|
+
"notNull": true,
|
|
69296
|
+
"default": "current_timestamp"
|
|
69297
|
+
},
|
|
69298
|
+
"title": {
|
|
69299
|
+
"type": "TEXT",
|
|
69300
|
+
"notNull": false,
|
|
69301
|
+
"unique": false
|
|
69302
|
+
},
|
|
69303
|
+
"priority": {
|
|
69304
|
+
"type": "INTEGER",
|
|
69305
|
+
"notNull": false,
|
|
69306
|
+
"unique": false
|
|
69307
|
+
},
|
|
69308
|
+
"tenant_id": {
|
|
69309
|
+
"type": "TEXT",
|
|
69310
|
+
"notNull": false,
|
|
69311
|
+
"unique": false
|
|
69312
|
+
},
|
|
69313
|
+
"internal_code": {
|
|
69314
|
+
"type": "TEXT",
|
|
69315
|
+
"notNull": false,
|
|
69316
|
+
"unique": false
|
|
69317
|
+
}
|
|
69318
|
+
},
|
|
69319
|
+
"indexes": [{
|
|
69320
|
+
"name": "sync_apply_notes_id_idx",
|
|
69321
|
+
"columns": ["id"]
|
|
69322
|
+
}, {
|
|
69323
|
+
"name": "sync_apply_notes_slug_context_idx",
|
|
69324
|
+
"columns": ["slug", "context"],
|
|
69325
|
+
"unique": true
|
|
69326
|
+
}],
|
|
69327
|
+
"version": "bf831f8c"
|
|
69328
|
+
}
|
|
69329
|
+
},
|
|
69330
|
+
"@happyvertical/smrt-core:SyncApplyNoteCollection": {
|
|
69331
|
+
"name": "syncapplynotecollection",
|
|
69332
|
+
"className": "SyncApplyNoteCollection",
|
|
69333
|
+
"qualifiedName": "@happyvertical/smrt-core:SyncApplyNoteCollection",
|
|
69334
|
+
"collection": "syncapplynotes",
|
|
69335
|
+
"filePath": "packages/core/src/generators/sync-apply.spec.ts",
|
|
69336
|
+
"packageName": "@happyvertical/smrt-core",
|
|
69337
|
+
"fields": {},
|
|
69338
|
+
"methods": {},
|
|
69339
|
+
"decoratorConfig": {},
|
|
69340
|
+
"extends": "SmrtCollection",
|
|
69341
|
+
"extendsTypeArg": "SyncApplyNote",
|
|
69342
|
+
"exportName": "SyncApplyNoteCollection",
|
|
69343
|
+
"collectionExportName": "SyncApplyNoteCollectionCollection",
|
|
69344
|
+
"schema": {
|
|
69345
|
+
"tableName": "sync_apply_note_collections",
|
|
69346
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"sync_apply_note_collections\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp\n);",
|
|
69347
|
+
"columns": {
|
|
69348
|
+
"id": {
|
|
69349
|
+
"type": "UUID",
|
|
69350
|
+
"primaryKey": true,
|
|
69351
|
+
"referenceKind": "id",
|
|
69352
|
+
"notNull": true
|
|
69353
|
+
},
|
|
69354
|
+
"slug": {
|
|
69355
|
+
"type": "TEXT",
|
|
69356
|
+
"notNull": true
|
|
69357
|
+
},
|
|
69358
|
+
"context": {
|
|
69359
|
+
"type": "TEXT",
|
|
69360
|
+
"notNull": true,
|
|
69361
|
+
"default": ""
|
|
69362
|
+
},
|
|
69363
|
+
"created_at": {
|
|
69364
|
+
"type": "TIMESTAMP",
|
|
69365
|
+
"notNull": true,
|
|
69366
|
+
"default": "current_timestamp"
|
|
69367
|
+
},
|
|
69368
|
+
"updated_at": {
|
|
69369
|
+
"type": "TIMESTAMP",
|
|
69370
|
+
"notNull": true,
|
|
69371
|
+
"default": "current_timestamp"
|
|
69372
|
+
}
|
|
69373
|
+
},
|
|
69374
|
+
"indexes": [{
|
|
69375
|
+
"name": "sync_apply_note_collections_id_idx",
|
|
69376
|
+
"columns": ["id"]
|
|
69377
|
+
}, {
|
|
69378
|
+
"name": "sync_apply_note_collections_slug_context_idx",
|
|
69379
|
+
"columns": ["slug", "context"],
|
|
69380
|
+
"unique": true
|
|
69381
|
+
}],
|
|
69382
|
+
"version": "238ef0f9"
|
|
69383
|
+
}
|
|
69384
|
+
},
|
|
69385
|
+
"@happyvertical/smrt-core:SyncApplyVault": {
|
|
69386
|
+
"name": "syncapplyvault",
|
|
69387
|
+
"className": "SyncApplyVault",
|
|
69388
|
+
"qualifiedName": "@happyvertical/smrt-core:SyncApplyVault",
|
|
69389
|
+
"collection": "syncapplyvaults",
|
|
69390
|
+
"filePath": "packages/core/src/generators/sync-apply.spec.ts",
|
|
69391
|
+
"packageName": "@happyvertical/smrt-core",
|
|
69392
|
+
"fields": { "title": {
|
|
69393
|
+
"type": "text",
|
|
69394
|
+
"required": false,
|
|
69395
|
+
"_meta": {}
|
|
69396
|
+
} },
|
|
69397
|
+
"methods": {},
|
|
69398
|
+
"decoratorConfig": { "api": { "include": [
|
|
69399
|
+
"list",
|
|
69400
|
+
"get",
|
|
69401
|
+
"create",
|
|
69402
|
+
"update",
|
|
69403
|
+
"delete"
|
|
69404
|
+
] } },
|
|
69405
|
+
"extends": "SmrtObject",
|
|
69406
|
+
"exportName": "SyncApplyVault",
|
|
69407
|
+
"collectionExportName": "SyncApplyVaultCollection",
|
|
69408
|
+
"schema": {
|
|
69409
|
+
"tableName": "sync_apply_vaults",
|
|
69410
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"sync_apply_vaults\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"title\" TEXT\n);",
|
|
69411
|
+
"columns": {
|
|
69412
|
+
"id": {
|
|
69413
|
+
"type": "UUID",
|
|
69414
|
+
"primaryKey": true,
|
|
69415
|
+
"referenceKind": "id",
|
|
69416
|
+
"notNull": true
|
|
69417
|
+
},
|
|
69418
|
+
"slug": {
|
|
69419
|
+
"type": "TEXT",
|
|
69420
|
+
"notNull": true
|
|
69421
|
+
},
|
|
69422
|
+
"context": {
|
|
69423
|
+
"type": "TEXT",
|
|
69424
|
+
"notNull": true,
|
|
69425
|
+
"default": ""
|
|
69426
|
+
},
|
|
69427
|
+
"created_at": {
|
|
69428
|
+
"type": "TIMESTAMP",
|
|
69429
|
+
"notNull": true,
|
|
69430
|
+
"default": "current_timestamp"
|
|
69431
|
+
},
|
|
69432
|
+
"updated_at": {
|
|
69433
|
+
"type": "TIMESTAMP",
|
|
69434
|
+
"notNull": true,
|
|
69435
|
+
"default": "current_timestamp"
|
|
69436
|
+
},
|
|
69437
|
+
"title": {
|
|
69438
|
+
"type": "TEXT",
|
|
69439
|
+
"notNull": false,
|
|
69440
|
+
"unique": false
|
|
69441
|
+
}
|
|
69442
|
+
},
|
|
69443
|
+
"indexes": [{
|
|
69444
|
+
"name": "sync_apply_vaults_id_idx",
|
|
69445
|
+
"columns": ["id"]
|
|
69446
|
+
}, {
|
|
69447
|
+
"name": "sync_apply_vaults_slug_context_idx",
|
|
69448
|
+
"columns": ["slug", "context"],
|
|
69449
|
+
"unique": true
|
|
69450
|
+
}],
|
|
69451
|
+
"version": "f59bc282"
|
|
69452
|
+
}
|
|
69453
|
+
},
|
|
69454
|
+
"@happyvertical/smrt-core:SyncApplyVaultCollection": {
|
|
69455
|
+
"name": "syncapplyvaultcollection",
|
|
69456
|
+
"className": "SyncApplyVaultCollection",
|
|
69457
|
+
"qualifiedName": "@happyvertical/smrt-core:SyncApplyVaultCollection",
|
|
69458
|
+
"collection": "syncapplyvaults",
|
|
69459
|
+
"filePath": "packages/core/src/generators/sync-apply.spec.ts",
|
|
69460
|
+
"packageName": "@happyvertical/smrt-core",
|
|
69461
|
+
"fields": {},
|
|
69462
|
+
"methods": {},
|
|
69463
|
+
"decoratorConfig": {},
|
|
69464
|
+
"extends": "SmrtCollection",
|
|
69465
|
+
"extendsTypeArg": "SyncApplyVault",
|
|
69466
|
+
"exportName": "SyncApplyVaultCollection",
|
|
69467
|
+
"collectionExportName": "SyncApplyVaultCollectionCollection",
|
|
69468
|
+
"schema": {
|
|
69469
|
+
"tableName": "sync_apply_vault_collections",
|
|
69470
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"sync_apply_vault_collections\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp\n);",
|
|
69471
|
+
"columns": {
|
|
69472
|
+
"id": {
|
|
69473
|
+
"type": "UUID",
|
|
69474
|
+
"primaryKey": true,
|
|
69475
|
+
"referenceKind": "id",
|
|
69476
|
+
"notNull": true
|
|
69477
|
+
},
|
|
69478
|
+
"slug": {
|
|
69479
|
+
"type": "TEXT",
|
|
69480
|
+
"notNull": true
|
|
69481
|
+
},
|
|
69482
|
+
"context": {
|
|
69483
|
+
"type": "TEXT",
|
|
69484
|
+
"notNull": true,
|
|
69485
|
+
"default": ""
|
|
69486
|
+
},
|
|
69487
|
+
"created_at": {
|
|
69488
|
+
"type": "TIMESTAMP",
|
|
69489
|
+
"notNull": true,
|
|
69490
|
+
"default": "current_timestamp"
|
|
69491
|
+
},
|
|
69492
|
+
"updated_at": {
|
|
69493
|
+
"type": "TIMESTAMP",
|
|
69494
|
+
"notNull": true,
|
|
69495
|
+
"default": "current_timestamp"
|
|
69496
|
+
}
|
|
69497
|
+
},
|
|
69498
|
+
"indexes": [{
|
|
69499
|
+
"name": "sync_apply_vault_collections_id_idx",
|
|
69500
|
+
"columns": ["id"]
|
|
69501
|
+
}, {
|
|
69502
|
+
"name": "sync_apply_vault_collections_slug_context_idx",
|
|
69503
|
+
"columns": ["slug", "context"],
|
|
69504
|
+
"unique": true
|
|
69505
|
+
}],
|
|
69506
|
+
"version": "4ec04f7f"
|
|
69507
|
+
}
|
|
69508
|
+
},
|
|
69509
|
+
"@happyvertical/smrt-core:SyncApplyLimited": {
|
|
69510
|
+
"name": "syncapplylimited",
|
|
69511
|
+
"className": "SyncApplyLimited",
|
|
69512
|
+
"qualifiedName": "@happyvertical/smrt-core:SyncApplyLimited",
|
|
69513
|
+
"collection": "syncapplylimiteds",
|
|
69514
|
+
"filePath": "packages/core/src/generators/sync-apply.spec.ts",
|
|
69515
|
+
"packageName": "@happyvertical/smrt-core",
|
|
69516
|
+
"fields": { "title": {
|
|
69517
|
+
"type": "text",
|
|
69518
|
+
"required": false,
|
|
69519
|
+
"_meta": {}
|
|
69520
|
+
} },
|
|
69521
|
+
"methods": {},
|
|
69522
|
+
"decoratorConfig": { "api": {
|
|
69523
|
+
"include": [
|
|
69524
|
+
"list",
|
|
69525
|
+
"get",
|
|
69526
|
+
"create"
|
|
69527
|
+
],
|
|
69528
|
+
"public": true
|
|
69529
|
+
} },
|
|
69530
|
+
"extends": "SmrtObject",
|
|
69531
|
+
"exportName": "SyncApplyLimited",
|
|
69532
|
+
"collectionExportName": "SyncApplyLimitedCollection",
|
|
69533
|
+
"schema": {
|
|
69534
|
+
"tableName": "sync_apply_limiteds",
|
|
69535
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"sync_apply_limiteds\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"title\" TEXT\n);",
|
|
69536
|
+
"columns": {
|
|
69537
|
+
"id": {
|
|
69538
|
+
"type": "UUID",
|
|
69539
|
+
"primaryKey": true,
|
|
69540
|
+
"referenceKind": "id",
|
|
69541
|
+
"notNull": true
|
|
69542
|
+
},
|
|
69543
|
+
"slug": {
|
|
69544
|
+
"type": "TEXT",
|
|
69545
|
+
"notNull": true
|
|
69546
|
+
},
|
|
69547
|
+
"context": {
|
|
69548
|
+
"type": "TEXT",
|
|
69549
|
+
"notNull": true,
|
|
69550
|
+
"default": ""
|
|
69551
|
+
},
|
|
69552
|
+
"created_at": {
|
|
69553
|
+
"type": "TIMESTAMP",
|
|
69554
|
+
"notNull": true,
|
|
69555
|
+
"default": "current_timestamp"
|
|
69556
|
+
},
|
|
69557
|
+
"updated_at": {
|
|
69558
|
+
"type": "TIMESTAMP",
|
|
69559
|
+
"notNull": true,
|
|
69560
|
+
"default": "current_timestamp"
|
|
69561
|
+
},
|
|
69562
|
+
"title": {
|
|
69563
|
+
"type": "TEXT",
|
|
69564
|
+
"notNull": false,
|
|
69565
|
+
"unique": false
|
|
69566
|
+
}
|
|
69567
|
+
},
|
|
69568
|
+
"indexes": [{
|
|
69569
|
+
"name": "sync_apply_limiteds_id_idx",
|
|
69570
|
+
"columns": ["id"]
|
|
69571
|
+
}, {
|
|
69572
|
+
"name": "sync_apply_limiteds_slug_context_idx",
|
|
69573
|
+
"columns": ["slug", "context"],
|
|
69574
|
+
"unique": true
|
|
69575
|
+
}],
|
|
69576
|
+
"version": "33e691f1"
|
|
69577
|
+
}
|
|
69578
|
+
},
|
|
69579
|
+
"@happyvertical/smrt-core:SyncApplyLimitedCollection": {
|
|
69580
|
+
"name": "syncapplylimitedcollection",
|
|
69581
|
+
"className": "SyncApplyLimitedCollection",
|
|
69582
|
+
"qualifiedName": "@happyvertical/smrt-core:SyncApplyLimitedCollection",
|
|
69583
|
+
"collection": "syncapplylimiteds",
|
|
69584
|
+
"filePath": "packages/core/src/generators/sync-apply.spec.ts",
|
|
69585
|
+
"packageName": "@happyvertical/smrt-core",
|
|
69586
|
+
"fields": {},
|
|
69587
|
+
"methods": {},
|
|
69588
|
+
"decoratorConfig": {},
|
|
69589
|
+
"extends": "SmrtCollection",
|
|
69590
|
+
"extendsTypeArg": "SyncApplyLimited",
|
|
69591
|
+
"exportName": "SyncApplyLimitedCollection",
|
|
69592
|
+
"collectionExportName": "SyncApplyLimitedCollectionCollection",
|
|
69593
|
+
"schema": {
|
|
69594
|
+
"tableName": "sync_apply_limited_collections",
|
|
69595
|
+
"ddl": "CREATE TABLE IF NOT EXISTS \"sync_apply_limited_collections\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp\n);",
|
|
69596
|
+
"columns": {
|
|
69597
|
+
"id": {
|
|
69598
|
+
"type": "UUID",
|
|
69599
|
+
"primaryKey": true,
|
|
69600
|
+
"referenceKind": "id",
|
|
69601
|
+
"notNull": true
|
|
69602
|
+
},
|
|
69603
|
+
"slug": {
|
|
69604
|
+
"type": "TEXT",
|
|
69605
|
+
"notNull": true
|
|
69606
|
+
},
|
|
69607
|
+
"context": {
|
|
69608
|
+
"type": "TEXT",
|
|
69609
|
+
"notNull": true,
|
|
69610
|
+
"default": ""
|
|
69611
|
+
},
|
|
69612
|
+
"created_at": {
|
|
69613
|
+
"type": "TIMESTAMP",
|
|
69614
|
+
"notNull": true,
|
|
69615
|
+
"default": "current_timestamp"
|
|
69616
|
+
},
|
|
69617
|
+
"updated_at": {
|
|
69618
|
+
"type": "TIMESTAMP",
|
|
69619
|
+
"notNull": true,
|
|
69620
|
+
"default": "current_timestamp"
|
|
69621
|
+
}
|
|
69622
|
+
},
|
|
69623
|
+
"indexes": [{
|
|
69624
|
+
"name": "sync_apply_limited_collections_id_idx",
|
|
69625
|
+
"columns": ["id"]
|
|
69626
|
+
}, {
|
|
69627
|
+
"name": "sync_apply_limited_collections_slug_context_idx",
|
|
69628
|
+
"columns": ["slug", "context"],
|
|
69629
|
+
"unique": true
|
|
69630
|
+
}],
|
|
69631
|
+
"version": "f97e7d09"
|
|
69632
|
+
}
|
|
69633
|
+
},
|
|
67749
69634
|
"@happyvertical/smrt-core:CliModuleTestDocument": {
|
|
67750
69635
|
"name": "climoduletestdocument",
|
|
67751
69636
|
"className": "CliModuleTestDocument",
|