@solidstarters/solid-core 1.2.51 → 1.2.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/controllers/list-of-values.controller.d.ts +41 -0
- package/dist/controllers/list-of-values.controller.d.ts.map +1 -0
- package/dist/controllers/list-of-values.controller.js +179 -0
- package/dist/controllers/list-of-values.controller.js.map +1 -0
- package/dist/controllers/saved-filters.controller.d.ts +41 -0
- package/dist/controllers/saved-filters.controller.d.ts.map +1 -0
- package/dist/controllers/saved-filters.controller.js +179 -0
- package/dist/controllers/saved-filters.controller.js.map +1 -0
- package/dist/dtos/create-list-of-values.dto.d.ts +6 -6
- package/dist/dtos/create-list-of-values.dto.d.ts.map +1 -1
- package/dist/dtos/create-list-of-values.dto.js +24 -7
- package/dist/dtos/create-list-of-values.dto.js.map +1 -1
- package/dist/dtos/create-saved-filters.dto.d.ts +12 -0
- package/dist/dtos/create-saved-filters.dto.d.ts.map +1 -0
- package/dist/dtos/create-saved-filters.dto.js +80 -0
- package/dist/dtos/create-saved-filters.dto.js.map +1 -0
- package/dist/dtos/update-list-of-values.dto.d.ts +10 -0
- package/dist/dtos/update-list-of-values.dto.d.ts.map +1 -0
- package/dist/dtos/update-list-of-values.dto.js +67 -0
- package/dist/dtos/update-list-of-values.dto.js.map +1 -0
- package/dist/dtos/update-saved-filters.dto.d.ts +13 -0
- package/dist/dtos/update-saved-filters.dto.d.ts.map +1 -0
- package/dist/dtos/update-saved-filters.dto.js +82 -0
- package/dist/dtos/update-saved-filters.dto.js.map +1 -0
- package/dist/entities/list-of-values.entity.d.ts +1 -1
- package/dist/entities/list-of-values.entity.d.ts.map +1 -1
- package/dist/entities/list-of-values.entity.js +11 -7
- package/dist/entities/list-of-values.entity.js.map +1 -1
- package/dist/entities/saved-filters.entity.d.ts +13 -0
- package/dist/entities/saved-filters.entity.d.ts.map +1 -0
- package/dist/entities/saved-filters.entity.js +59 -0
- package/dist/entities/saved-filters.entity.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/providers/list-of-values-selection-providers.service.js +2 -2
- package/dist/providers/list-of-values-selection-providers.service.js.map +1 -1
- package/dist/seeders/module-metadata-seeder.service.d.ts +6 -2
- package/dist/seeders/module-metadata-seeder.service.d.ts.map +1 -1
- package/dist/seeders/module-metadata-seeder.service.js +24 -8
- package/dist/seeders/module-metadata-seeder.service.js.map +1 -1
- package/dist/seeders/seed-data/solid-core-metadata.json +1197 -141
- package/dist/services/list-of-values.service.d.ts +21 -10
- package/dist/services/list-of-values.service.d.ts.map +1 -1
- package/dist/services/list-of-values.service.js +43 -31
- package/dist/services/list-of-values.service.js.map +1 -1
- package/dist/services/saved-filters.service.d.ts +22 -0
- package/dist/services/saved-filters.service.d.ts.map +1 -0
- package/dist/services/saved-filters.service.js +56 -0
- package/dist/services/saved-filters.service.js.map +1 -0
- package/dist/solid-core.module.d.ts.map +1 -1
- package/dist/solid-core.module.js +12 -0
- package/dist/solid-core.module.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/controllers/list-of-values.controller.ts +93 -0
- package/src/controllers/saved-filters.controller.ts +93 -0
- package/src/dtos/create-list-of-values.dto.ts +27 -19
- package/src/dtos/create-saved-filters.dto.ts +42 -0
- package/src/dtos/update-list-of-values.dto.ts +36 -0
- package/src/dtos/update-saved-filters.dto.ts +45 -0
- package/src/entities/list-of-values.entity.ts +9 -14
- package/src/entities/saved-filters.entity.ts +24 -0
- package/src/index.ts +2 -0
- package/src/providers/list-of-values-selection-providers.service.ts +2 -2
- package/src/seeders/module-metadata-seeder.service.ts +22 -3
- package/src/seeders/seed-data/solid-core-metadata.json +1445 -389
- package/src/services/list-of-values.service.ts +55 -47
- package/src/services/saved-filters.service.ts +34 -0
- package/src/solid-core.module.ts +12 -0
|
@@ -313,7 +313,7 @@
|
|
|
313
313
|
"displayName": "Is Child Model",
|
|
314
314
|
"type": "boolean",
|
|
315
315
|
"ormType": "boolean",
|
|
316
|
-
"defaultValue":
|
|
316
|
+
"defaultValue": false,
|
|
317
317
|
"required": false,
|
|
318
318
|
"unique": false,
|
|
319
319
|
"index": false,
|
|
@@ -1468,8 +1468,8 @@
|
|
|
1468
1468
|
"relationCreateInverse": true,
|
|
1469
1469
|
"relationCascade": "set null",
|
|
1470
1470
|
"relationModelModuleName": "solid-core",
|
|
1471
|
-
"
|
|
1472
|
-
"
|
|
1471
|
+
"isSystem": true,
|
|
1472
|
+
"isRelationManyToManyOwner": true
|
|
1473
1473
|
}
|
|
1474
1474
|
]
|
|
1475
1475
|
},
|
|
@@ -1792,7 +1792,8 @@
|
|
|
1792
1792
|
"relationCreateInverse": true,
|
|
1793
1793
|
"relationCascade": "cascade",
|
|
1794
1794
|
"relationModelModuleName": "solid-core",
|
|
1795
|
-
"isSystem": true
|
|
1795
|
+
"isSystem": true,
|
|
1796
|
+
"isRelationManyToManyOwner": true
|
|
1796
1797
|
},
|
|
1797
1798
|
{
|
|
1798
1799
|
"name": "forgotPasswordConfirmedAt",
|
|
@@ -2085,7 +2086,8 @@
|
|
|
2085
2086
|
"relationCoModelSingularName": "permissionMetadata",
|
|
2086
2087
|
"relationCascade": "set null",
|
|
2087
2088
|
"relationModelModuleName": "solid-core",
|
|
2088
|
-
"isSystem": true
|
|
2089
|
+
"isSystem": true,
|
|
2090
|
+
"isRelationManyToManyOwner": true
|
|
2089
2091
|
},
|
|
2090
2092
|
{
|
|
2091
2093
|
"name": "users",
|
|
@@ -2101,8 +2103,8 @@
|
|
|
2101
2103
|
"relationCreateInverse": false,
|
|
2102
2104
|
"relationCascade": "set null",
|
|
2103
2105
|
"relationModelModuleName": "solid-core",
|
|
2104
|
-
"
|
|
2105
|
-
"
|
|
2106
|
+
"isSystem": true,
|
|
2107
|
+
"isRelationManyToManyOwner": false
|
|
2106
2108
|
},
|
|
2107
2109
|
{
|
|
2108
2110
|
"name": "menuItems",
|
|
@@ -2118,7 +2120,8 @@
|
|
|
2118
2120
|
"relationCreateInverse": false,
|
|
2119
2121
|
"relationCascade": "set null",
|
|
2120
2122
|
"relationModelModuleName": "solid-core",
|
|
2121
|
-
"isSystem": true
|
|
2123
|
+
"isSystem": true,
|
|
2124
|
+
"isRelationManyToManyOwner": false
|
|
2122
2125
|
}
|
|
2123
2126
|
]
|
|
2124
2127
|
},
|
|
@@ -2559,6 +2562,130 @@
|
|
|
2559
2562
|
}
|
|
2560
2563
|
]
|
|
2561
2564
|
},
|
|
2565
|
+
{
|
|
2566
|
+
"singularName": "savedFilters",
|
|
2567
|
+
"pluralName": "savedFilterss",
|
|
2568
|
+
"displayName": "Saved Filters",
|
|
2569
|
+
"description": "This is used to maintain user saved filters",
|
|
2570
|
+
"dataSource": "default",
|
|
2571
|
+
"dataSourceType": "postgres",
|
|
2572
|
+
"tableName": "ss_saved_fitlers",
|
|
2573
|
+
"userKeyFieldUserKey": "filterQueryJson",
|
|
2574
|
+
"fields": [
|
|
2575
|
+
{
|
|
2576
|
+
"name": "user",
|
|
2577
|
+
"displayName": "User",
|
|
2578
|
+
"description": "This is the user id field",
|
|
2579
|
+
"type": "relation",
|
|
2580
|
+
"ormType": "integer",
|
|
2581
|
+
"isSystem": false,
|
|
2582
|
+
"relationType": "many-to-one",
|
|
2583
|
+
"relationCoModelFieldName": "bondTransactionDetailLogs",
|
|
2584
|
+
"relationCreateInverse": false,
|
|
2585
|
+
"relationCoModelSingularName": "user",
|
|
2586
|
+
"relationCoModelColumnName": null,
|
|
2587
|
+
"relationModelModuleName": "solid-core",
|
|
2588
|
+
"relationCascade": "restrict",
|
|
2589
|
+
"required": true,
|
|
2590
|
+
"unique": false,
|
|
2591
|
+
"index": false,
|
|
2592
|
+
"private": false,
|
|
2593
|
+
"encrypt": false,
|
|
2594
|
+
"encryptionType": null,
|
|
2595
|
+
"decryptWhen": null,
|
|
2596
|
+
"columnName": null,
|
|
2597
|
+
"relationJoinTableName": null,
|
|
2598
|
+
"isRelationManyToManyOwner": null
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
"name": "model",
|
|
2602
|
+
"displayName": "Model",
|
|
2603
|
+
"description": "This is the model related to saved filter.",
|
|
2604
|
+
"type": "relation",
|
|
2605
|
+
"ormType": "integer",
|
|
2606
|
+
"isSystem": false,
|
|
2607
|
+
"relationType": "many-to-one",
|
|
2608
|
+
"relationCoModelFieldName": "savedFilters",
|
|
2609
|
+
"relationCreateInverse": false,
|
|
2610
|
+
"relationCoModelSingularName": "modelMetadata",
|
|
2611
|
+
"relationCoModelColumnName": null,
|
|
2612
|
+
"relationModelModuleName": "solid-core",
|
|
2613
|
+
"relationCascade": "restrict",
|
|
2614
|
+
"required": true,
|
|
2615
|
+
"unique": false,
|
|
2616
|
+
"index": false,
|
|
2617
|
+
"private": false,
|
|
2618
|
+
"encrypt": false,
|
|
2619
|
+
"encryptionType": null,
|
|
2620
|
+
"decryptWhen": null,
|
|
2621
|
+
"columnName": null,
|
|
2622
|
+
"relationJoinTableName": null,
|
|
2623
|
+
"isRelationManyToManyOwner": null
|
|
2624
|
+
},
|
|
2625
|
+
{
|
|
2626
|
+
"name": "view",
|
|
2627
|
+
"displayName": "View",
|
|
2628
|
+
"description": "This is the view related to saved filter.",
|
|
2629
|
+
"type": "relation",
|
|
2630
|
+
"ormType": "integer",
|
|
2631
|
+
"isSystem": false,
|
|
2632
|
+
"relationType": "many-to-one",
|
|
2633
|
+
"relationCoModelFieldName": "savedFilters",
|
|
2634
|
+
"relationCreateInverse": false,
|
|
2635
|
+
"relationCoModelSingularName": "viewMetadata",
|
|
2636
|
+
"relationCoModelColumnName": null,
|
|
2637
|
+
"relationModelModuleName": "solid-core",
|
|
2638
|
+
"relationCascade": "restrict",
|
|
2639
|
+
"required": true,
|
|
2640
|
+
"unique": false,
|
|
2641
|
+
"index": false,
|
|
2642
|
+
"private": false,
|
|
2643
|
+
"encrypt": false,
|
|
2644
|
+
"encryptionType": null,
|
|
2645
|
+
"decryptWhen": null,
|
|
2646
|
+
"columnName": null,
|
|
2647
|
+
"relationJoinTableName": null,
|
|
2648
|
+
"isRelationManyToManyOwner": null
|
|
2649
|
+
},
|
|
2650
|
+
{
|
|
2651
|
+
"name": "filterQueryJson",
|
|
2652
|
+
"displayName": "Filter Query Json",
|
|
2653
|
+
"type": "longText",
|
|
2654
|
+
"ormType": "text",
|
|
2655
|
+
"required": false,
|
|
2656
|
+
"unique": false,
|
|
2657
|
+
"index": false,
|
|
2658
|
+
"private": false,
|
|
2659
|
+
"encrypt": false,
|
|
2660
|
+
"isSystem": false
|
|
2661
|
+
},
|
|
2662
|
+
{
|
|
2663
|
+
"name": "name",
|
|
2664
|
+
"displayName": "Name",
|
|
2665
|
+
"type": "shortText",
|
|
2666
|
+
"ormType": "varchar",
|
|
2667
|
+
"length": 512,
|
|
2668
|
+
"required": true,
|
|
2669
|
+
"unique": false,
|
|
2670
|
+
"index": false,
|
|
2671
|
+
"private": false,
|
|
2672
|
+
"encrypt": false,
|
|
2673
|
+
"isSystem": false
|
|
2674
|
+
},
|
|
2675
|
+
{
|
|
2676
|
+
"name": "isPrivate",
|
|
2677
|
+
"displayName": "Is Private",
|
|
2678
|
+
"type": "boolean",
|
|
2679
|
+
"ormType": "boolean",
|
|
2680
|
+
"required": false,
|
|
2681
|
+
"unique": false,
|
|
2682
|
+
"index": false,
|
|
2683
|
+
"private": false,
|
|
2684
|
+
"encrypt": false,
|
|
2685
|
+
"isSystem": false
|
|
2686
|
+
}
|
|
2687
|
+
]
|
|
2688
|
+
},
|
|
2562
2689
|
{
|
|
2563
2690
|
"singularName": "securityRule",
|
|
2564
2691
|
"tableName": "ss_security_rule",
|
|
@@ -2958,6 +3085,231 @@
|
|
|
2958
3085
|
"isSystem": true
|
|
2959
3086
|
}
|
|
2960
3087
|
]
|
|
3088
|
+
},
|
|
3089
|
+
{
|
|
3090
|
+
"singularName": "savedFilters",
|
|
3091
|
+
"pluralName": "savedFilterss",
|
|
3092
|
+
"displayName": "Saved Filters",
|
|
3093
|
+
"description": "This is used to maintain user saved filters",
|
|
3094
|
+
"dataSource": "default",
|
|
3095
|
+
"dataSourceType": "postgres",
|
|
3096
|
+
"tableName": "ss_saved_fitlers",
|
|
3097
|
+
"userKeyFieldUserKey": "filterQueryJson",
|
|
3098
|
+
"fields": [
|
|
3099
|
+
{
|
|
3100
|
+
"name": "user",
|
|
3101
|
+
"displayName": "User",
|
|
3102
|
+
"description": "This is the user id field",
|
|
3103
|
+
"type": "relation",
|
|
3104
|
+
"ormType": "integer",
|
|
3105
|
+
"isSystem": false,
|
|
3106
|
+
"relationType": "many-to-one",
|
|
3107
|
+
"relationCoModelFieldName": "bondTransactionDetailLogs",
|
|
3108
|
+
"relationCreateInverse": false,
|
|
3109
|
+
"relationCoModelSingularName": "user",
|
|
3110
|
+
"relationCoModelColumnName": null,
|
|
3111
|
+
"relationModelModuleName": "solid-core",
|
|
3112
|
+
"relationCascade": "restrict",
|
|
3113
|
+
"required": true,
|
|
3114
|
+
"unique": false,
|
|
3115
|
+
"index": false,
|
|
3116
|
+
"private": false,
|
|
3117
|
+
"encrypt": false,
|
|
3118
|
+
"encryptionType": null,
|
|
3119
|
+
"decryptWhen": null,
|
|
3120
|
+
"columnName": null,
|
|
3121
|
+
"relationJoinTableName": null,
|
|
3122
|
+
"isRelationManyToManyOwner": null
|
|
3123
|
+
},
|
|
3124
|
+
{
|
|
3125
|
+
"name": "model",
|
|
3126
|
+
"displayName": "Model",
|
|
3127
|
+
"description": "This is the model related to saved filter.",
|
|
3128
|
+
"type": "relation",
|
|
3129
|
+
"ormType": "integer",
|
|
3130
|
+
"isSystem": false,
|
|
3131
|
+
"relationType": "many-to-one",
|
|
3132
|
+
"relationCoModelFieldName": "savedFilters",
|
|
3133
|
+
"relationCreateInverse": false,
|
|
3134
|
+
"relationCoModelSingularName": "modelMetadata",
|
|
3135
|
+
"relationCoModelColumnName": null,
|
|
3136
|
+
"relationModelModuleName": "solid-core",
|
|
3137
|
+
"relationCascade": "restrict",
|
|
3138
|
+
"required": true,
|
|
3139
|
+
"unique": false,
|
|
3140
|
+
"index": false,
|
|
3141
|
+
"private": false,
|
|
3142
|
+
"encrypt": false,
|
|
3143
|
+
"encryptionType": null,
|
|
3144
|
+
"decryptWhen": null,
|
|
3145
|
+
"columnName": null,
|
|
3146
|
+
"relationJoinTableName": null,
|
|
3147
|
+
"isRelationManyToManyOwner": null
|
|
3148
|
+
},
|
|
3149
|
+
{
|
|
3150
|
+
"name": "view",
|
|
3151
|
+
"displayName": "View",
|
|
3152
|
+
"description": "This is the view related to saved filter.",
|
|
3153
|
+
"type": "relation",
|
|
3154
|
+
"ormType": "integer",
|
|
3155
|
+
"isSystem": false,
|
|
3156
|
+
"relationType": "many-to-one",
|
|
3157
|
+
"relationCoModelFieldName": "savedFilters",
|
|
3158
|
+
"relationCreateInverse": false,
|
|
3159
|
+
"relationCoModelSingularName": "viewMetadata",
|
|
3160
|
+
"relationCoModelColumnName": null,
|
|
3161
|
+
"relationModelModuleName": "solid-core",
|
|
3162
|
+
"relationCascade": "restrict",
|
|
3163
|
+
"required": true,
|
|
3164
|
+
"unique": false,
|
|
3165
|
+
"index": false,
|
|
3166
|
+
"private": false,
|
|
3167
|
+
"encrypt": false,
|
|
3168
|
+
"encryptionType": null,
|
|
3169
|
+
"decryptWhen": null,
|
|
3170
|
+
"columnName": null,
|
|
3171
|
+
"relationJoinTableName": null,
|
|
3172
|
+
"isRelationManyToManyOwner": null
|
|
3173
|
+
},
|
|
3174
|
+
{
|
|
3175
|
+
"name": "filterQueryJson",
|
|
3176
|
+
"displayName": "Filter Query Json",
|
|
3177
|
+
"type": "longText",
|
|
3178
|
+
"ormType": "text",
|
|
3179
|
+
"required": false,
|
|
3180
|
+
"unique": false,
|
|
3181
|
+
"index": false,
|
|
3182
|
+
"private": false,
|
|
3183
|
+
"encrypt": false,
|
|
3184
|
+
"isSystem": false
|
|
3185
|
+
},
|
|
3186
|
+
{
|
|
3187
|
+
"name": "name",
|
|
3188
|
+
"displayName": "Name",
|
|
3189
|
+
"type": "shortText",
|
|
3190
|
+
"ormType": "varchar",
|
|
3191
|
+
"length": 512,
|
|
3192
|
+
"required": true,
|
|
3193
|
+
"unique": false,
|
|
3194
|
+
"index": false,
|
|
3195
|
+
"private": false,
|
|
3196
|
+
"encrypt": false,
|
|
3197
|
+
"isSystem": false
|
|
3198
|
+
},
|
|
3199
|
+
{
|
|
3200
|
+
"name": "isPrivate",
|
|
3201
|
+
"displayName": "Is Private",
|
|
3202
|
+
"type": "boolean",
|
|
3203
|
+
"ormType": "boolean",
|
|
3204
|
+
"required": false,
|
|
3205
|
+
"unique": false,
|
|
3206
|
+
"index": false,
|
|
3207
|
+
"private": false,
|
|
3208
|
+
"encrypt": false,
|
|
3209
|
+
"isSystem": false
|
|
3210
|
+
}
|
|
3211
|
+
]
|
|
3212
|
+
},
|
|
3213
|
+
{
|
|
3214
|
+
"singularName": "listOfValues",
|
|
3215
|
+
"pluralName": "listOfValuess",
|
|
3216
|
+
"displayName": "List of Values ",
|
|
3217
|
+
"description": "This is used to maintain List Of Values",
|
|
3218
|
+
"dataSource": "default",
|
|
3219
|
+
"dataSourceType": "postgres",
|
|
3220
|
+
"tableName": "ss_list_of_values",
|
|
3221
|
+
"userKeyFieldUserKey": "type",
|
|
3222
|
+
"fields": [
|
|
3223
|
+
{
|
|
3224
|
+
"name": "type",
|
|
3225
|
+
"displayName": "Type",
|
|
3226
|
+
"type": "shortText",
|
|
3227
|
+
"ormType": "varchar",
|
|
3228
|
+
"length": 512,
|
|
3229
|
+
"required": true,
|
|
3230
|
+
"unique": false,
|
|
3231
|
+
"index": false,
|
|
3232
|
+
"private": false,
|
|
3233
|
+
"encrypt": false,
|
|
3234
|
+
"isSystem": false
|
|
3235
|
+
},
|
|
3236
|
+
{
|
|
3237
|
+
"name": "value",
|
|
3238
|
+
"displayName": "Value",
|
|
3239
|
+
"type": "shortText",
|
|
3240
|
+
"ormType": "varchar",
|
|
3241
|
+
"length": 512,
|
|
3242
|
+
"required": true,
|
|
3243
|
+
"unique": false,
|
|
3244
|
+
"index": false,
|
|
3245
|
+
"private": false,
|
|
3246
|
+
"encrypt": false,
|
|
3247
|
+
"isSystem": false
|
|
3248
|
+
},
|
|
3249
|
+
{
|
|
3250
|
+
"name": "display",
|
|
3251
|
+
"displayName": "Display",
|
|
3252
|
+
"type": "shortText",
|
|
3253
|
+
"ormType": "varchar",
|
|
3254
|
+
"length": 512,
|
|
3255
|
+
"required": true,
|
|
3256
|
+
"unique": false,
|
|
3257
|
+
"index": false,
|
|
3258
|
+
"private": false,
|
|
3259
|
+
"encrypt": false,
|
|
3260
|
+
"isSystem": false
|
|
3261
|
+
},
|
|
3262
|
+
{
|
|
3263
|
+
"name": "description",
|
|
3264
|
+
"displayName": "Description",
|
|
3265
|
+
"type": "shortText",
|
|
3266
|
+
"ormType": "varchar",
|
|
3267
|
+
"length": 512,
|
|
3268
|
+
"required": true,
|
|
3269
|
+
"unique": false,
|
|
3270
|
+
"index": false,
|
|
3271
|
+
"private": false,
|
|
3272
|
+
"encrypt": false,
|
|
3273
|
+
"isSystem": false
|
|
3274
|
+
},
|
|
3275
|
+
{
|
|
3276
|
+
"name": "description",
|
|
3277
|
+
"displayName": "Description",
|
|
3278
|
+
"type": "shortText",
|
|
3279
|
+
"ormType": "varchar",
|
|
3280
|
+
"length": 512,
|
|
3281
|
+
"required": true,
|
|
3282
|
+
"unique": false,
|
|
3283
|
+
"index": false,
|
|
3284
|
+
"private": false,
|
|
3285
|
+
"encrypt": false,
|
|
3286
|
+
"isSystem": false
|
|
3287
|
+
},
|
|
3288
|
+
{
|
|
3289
|
+
"name": "default",
|
|
3290
|
+
"displayName": "Default",
|
|
3291
|
+
"type": "boolean",
|
|
3292
|
+
"ormType": "boolean",
|
|
3293
|
+
"required": false,
|
|
3294
|
+
"unique": false,
|
|
3295
|
+
"index": false,
|
|
3296
|
+
"private": false,
|
|
3297
|
+
"encrypt": false,
|
|
3298
|
+
"isSystem": false
|
|
3299
|
+
},
|
|
3300
|
+
{
|
|
3301
|
+
"name": "sequence",
|
|
3302
|
+
"displayName": "Sequence",
|
|
3303
|
+
"type": "int",
|
|
3304
|
+
"ormType": "int",
|
|
3305
|
+
"required": false,
|
|
3306
|
+
"unique": false,
|
|
3307
|
+
"index": false,
|
|
3308
|
+
"private": false,
|
|
3309
|
+
"encrypt": false,
|
|
3310
|
+
"isSystem": false
|
|
3311
|
+
}
|
|
3312
|
+
]
|
|
2961
3313
|
}
|
|
2962
3314
|
]
|
|
2963
3315
|
},
|
|
@@ -3077,8 +3429,21 @@
|
|
|
3077
3429
|
"modelUserKey": "menuItemMetadata"
|
|
3078
3430
|
},
|
|
3079
3431
|
{
|
|
3080
|
-
"displayName": "
|
|
3081
|
-
"name": "
|
|
3432
|
+
"displayName": "Saved Filters list action",
|
|
3433
|
+
"name": "savedFilters-list-action",
|
|
3434
|
+
"type": "solid",
|
|
3435
|
+
"domain": "",
|
|
3436
|
+
"context": "",
|
|
3437
|
+
"customComponent": "",
|
|
3438
|
+
"customIsModal": true,
|
|
3439
|
+
"serverEndpoint": "",
|
|
3440
|
+
"viewUserKey": "savedFilters-list-view",
|
|
3441
|
+
"moduleUserKey": "solid-core",
|
|
3442
|
+
"modelUserKey": "savedFilters"
|
|
3443
|
+
},
|
|
3444
|
+
{
|
|
3445
|
+
"displayName": "Media list action",
|
|
3446
|
+
"name": "media-list-action",
|
|
3082
3447
|
"type": "solid",
|
|
3083
3448
|
"domain": "",
|
|
3084
3449
|
"context": "",
|
|
@@ -3244,6 +3609,19 @@
|
|
|
3244
3609
|
"viewUserKey": "sms-list-view",
|
|
3245
3610
|
"moduleUserKey": "solid-core",
|
|
3246
3611
|
"modelUserKey": "smsTemplate"
|
|
3612
|
+
},
|
|
3613
|
+
{
|
|
3614
|
+
"displayName": "List of Values",
|
|
3615
|
+
"name": "list-of-values-list-action",
|
|
3616
|
+
"type": "solid",
|
|
3617
|
+
"domain": "",
|
|
3618
|
+
"context": "",
|
|
3619
|
+
"customComponent": "",
|
|
3620
|
+
"customIsModal": true,
|
|
3621
|
+
"serverEndpoint": "",
|
|
3622
|
+
"viewUserKey": "listOfValues-list-view",
|
|
3623
|
+
"moduleUserKey": "solid-core",
|
|
3624
|
+
"modelUserKey": "listOfValues"
|
|
3247
3625
|
}
|
|
3248
3626
|
],
|
|
3249
3627
|
"menus": [
|
|
@@ -3311,6 +3689,14 @@
|
|
|
3311
3689
|
"moduleUserKey": "solid-core",
|
|
3312
3690
|
"parentMenuItemUserKey": "layout-builder-menu-item"
|
|
3313
3691
|
},
|
|
3692
|
+
{
|
|
3693
|
+
"displayName": "Saved Filters",
|
|
3694
|
+
"name": "savedFilters-metadata",
|
|
3695
|
+
"sequenceNumber": 7,
|
|
3696
|
+
"actionUserKey": "savedFilters-list-action",
|
|
3697
|
+
"moduleUserKey": "solid-core",
|
|
3698
|
+
"parentMenuItemUserKey": "layout-builder-menu-item"
|
|
3699
|
+
},
|
|
3314
3700
|
{
|
|
3315
3701
|
"displayName": "User View",
|
|
3316
3702
|
"name": "user-view-metadata",
|
|
@@ -3424,22 +3810,828 @@
|
|
|
3424
3810
|
"parentMenuItemUserKey": "notification-menu-item"
|
|
3425
3811
|
},
|
|
3426
3812
|
{
|
|
3427
|
-
"displayName": "SMS",
|
|
3428
|
-
"name": "sms-menu-item",
|
|
3429
|
-
"sequenceNumber": 1,
|
|
3430
|
-
"actionUserKey": "sms-list-action",
|
|
3431
|
-
"moduleUserKey": "solid-core",
|
|
3432
|
-
"parentMenuItemUserKey": "notification-menu-item"
|
|
3433
|
-
}
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
"
|
|
3438
|
-
"
|
|
3813
|
+
"displayName": "SMS",
|
|
3814
|
+
"name": "sms-menu-item",
|
|
3815
|
+
"sequenceNumber": 1,
|
|
3816
|
+
"actionUserKey": "sms-list-action",
|
|
3817
|
+
"moduleUserKey": "solid-core",
|
|
3818
|
+
"parentMenuItemUserKey": "notification-menu-item"
|
|
3819
|
+
},
|
|
3820
|
+
{
|
|
3821
|
+
"displayName": "Other",
|
|
3822
|
+
"name": "other-menu-item",
|
|
3823
|
+
"sequenceNumber": 3,
|
|
3824
|
+
"actionUserKey": "other-root",
|
|
3825
|
+
"moduleUserKey": "solid-core",
|
|
3826
|
+
"parentMenuItemUserKey": ""
|
|
3827
|
+
},
|
|
3828
|
+
{
|
|
3829
|
+
"displayName": "Saved Filters",
|
|
3830
|
+
"name": "savedFilters-metadata",
|
|
3831
|
+
"sequenceNumber": 7,
|
|
3832
|
+
"actionUserKey": "savedFilters-list-action",
|
|
3833
|
+
"moduleUserKey": "solid-core",
|
|
3834
|
+
"parentMenuItemUserKey": "other-menu-item"
|
|
3835
|
+
},
|
|
3836
|
+
{
|
|
3837
|
+
"displayName": "List of Values",
|
|
3838
|
+
"name": "list-of-values-menu-item",
|
|
3839
|
+
"sequenceNumber": 1,
|
|
3840
|
+
"actionUserKey": "list-of-values-list-action",
|
|
3841
|
+
"moduleUserKey": "solid-core",
|
|
3842
|
+
"parentMenuItemUserKey": "other-menu-item"
|
|
3843
|
+
}
|
|
3844
|
+
],
|
|
3845
|
+
"views": [
|
|
3846
|
+
{
|
|
3847
|
+
"name": "moduleMetadata-list-view",
|
|
3848
|
+
"displayName": "Module Metadata",
|
|
3849
|
+
"type": "list",
|
|
3850
|
+
"context": "{}",
|
|
3851
|
+
"moduleUserKey": "solid-core",
|
|
3852
|
+
"modelUserKey": "moduleMetadata",
|
|
3853
|
+
"layout": {
|
|
3854
|
+
"type": "list",
|
|
3855
|
+
"attrs": {
|
|
3856
|
+
"pagination": true,
|
|
3857
|
+
"pageSizeOptions": [
|
|
3858
|
+
10,
|
|
3859
|
+
25,
|
|
3860
|
+
50
|
|
3861
|
+
],
|
|
3862
|
+
"enableGlobalSearch": true,
|
|
3863
|
+
"create": true,
|
|
3864
|
+
"edit": true,
|
|
3865
|
+
"delete": true,
|
|
3866
|
+
"rowButtons": [
|
|
3867
|
+
{
|
|
3868
|
+
"attrs": {
|
|
3869
|
+
"className": "pi pi-cog",
|
|
3870
|
+
"label": "Generate Code"
|
|
3871
|
+
},
|
|
3872
|
+
"action": {
|
|
3873
|
+
"title": "",
|
|
3874
|
+
"body": "",
|
|
3875
|
+
"confirmBtnLabel": "Generate Code",
|
|
3876
|
+
"cancelBtnLabel": "Cancel",
|
|
3877
|
+
"customComponent": "../extension/solid-core/moduleMetadata/list/GenerateModuleCodeRowAction",
|
|
3878
|
+
"customComponentIsSystem": true,
|
|
3879
|
+
"endpoint": ""
|
|
3880
|
+
}
|
|
3881
|
+
}
|
|
3882
|
+
],
|
|
3883
|
+
"headerButtons": [
|
|
3884
|
+
{
|
|
3885
|
+
"attrs": {
|
|
3886
|
+
"className": "pi pi-cog",
|
|
3887
|
+
"label": "Generate Code"
|
|
3888
|
+
},
|
|
3889
|
+
"action": {
|
|
3890
|
+
"title": "",
|
|
3891
|
+
"body": "",
|
|
3892
|
+
"confirmBtnLabel": "Generate Code",
|
|
3893
|
+
"cancelBtnLabel": "Cancel",
|
|
3894
|
+
"customComponent": "GenerateModuleCode",
|
|
3895
|
+
"endpoint": ""
|
|
3896
|
+
}
|
|
3897
|
+
}
|
|
3898
|
+
]
|
|
3899
|
+
},
|
|
3900
|
+
"children": [
|
|
3901
|
+
{
|
|
3902
|
+
"type": "field",
|
|
3903
|
+
"attrs": {
|
|
3904
|
+
"name": "displayName",
|
|
3905
|
+
"isSearchable": true
|
|
3906
|
+
}
|
|
3907
|
+
},
|
|
3908
|
+
{
|
|
3909
|
+
"type": "field",
|
|
3910
|
+
"attrs": {
|
|
3911
|
+
"name": "name",
|
|
3912
|
+
"isSearchable": true
|
|
3913
|
+
}
|
|
3914
|
+
},
|
|
3915
|
+
{
|
|
3916
|
+
"type": "field",
|
|
3917
|
+
"attrs": {
|
|
3918
|
+
"name": "description",
|
|
3919
|
+
"isSearchable": true
|
|
3920
|
+
}
|
|
3921
|
+
},
|
|
3922
|
+
{
|
|
3923
|
+
"type": "field",
|
|
3924
|
+
"attrs": {
|
|
3925
|
+
"name": "menuIconUrl",
|
|
3926
|
+
"isSearchable": true
|
|
3927
|
+
}
|
|
3928
|
+
},
|
|
3929
|
+
{
|
|
3930
|
+
"type": "field",
|
|
3931
|
+
"attrs": {
|
|
3932
|
+
"name": "menuSequenceNumber",
|
|
3933
|
+
"isSearchable": true
|
|
3934
|
+
}
|
|
3935
|
+
},
|
|
3936
|
+
{
|
|
3937
|
+
"type": "field",
|
|
3938
|
+
"attrs": {
|
|
3939
|
+
"name": "defaultDataSource",
|
|
3940
|
+
"isSearchable": true
|
|
3941
|
+
}
|
|
3942
|
+
},
|
|
3943
|
+
{
|
|
3944
|
+
"type": "field",
|
|
3945
|
+
"attrs": {
|
|
3946
|
+
"name": "isSystem",
|
|
3947
|
+
"isSearchable": true
|
|
3948
|
+
}
|
|
3949
|
+
}
|
|
3950
|
+
]
|
|
3951
|
+
}
|
|
3952
|
+
},
|
|
3953
|
+
{
|
|
3954
|
+
"name": "moduleMetadata-form-view",
|
|
3955
|
+
"displayName": "Module Metadata",
|
|
3956
|
+
"type": "form",
|
|
3957
|
+
"context": "{}",
|
|
3958
|
+
"moduleUserKey": "solid-core",
|
|
3959
|
+
"modelUserKey": "moduleMetadata",
|
|
3960
|
+
"layout": {
|
|
3961
|
+
"type": "form",
|
|
3962
|
+
"attrs": {
|
|
3963
|
+
"name": "form-1",
|
|
3964
|
+
"label": "Module Metadata",
|
|
3965
|
+
"className": "grid"
|
|
3966
|
+
},
|
|
3967
|
+
"children": [
|
|
3968
|
+
{
|
|
3969
|
+
"type": "sheet",
|
|
3970
|
+
"attrs": {
|
|
3971
|
+
"name": "sheet-1"
|
|
3972
|
+
},
|
|
3973
|
+
"children": [
|
|
3974
|
+
{
|
|
3975
|
+
"type": "group",
|
|
3976
|
+
"attrs": {
|
|
3977
|
+
"name": "group-1",
|
|
3978
|
+
"label": "",
|
|
3979
|
+
"className": "col-6"
|
|
3980
|
+
},
|
|
3981
|
+
"children": [
|
|
3982
|
+
{
|
|
3983
|
+
"type": "field",
|
|
3984
|
+
"attrs": {
|
|
3985
|
+
"name": "displayName",
|
|
3986
|
+
"isSearchable": true
|
|
3987
|
+
}
|
|
3988
|
+
},
|
|
3989
|
+
{
|
|
3990
|
+
"type": "field",
|
|
3991
|
+
"attrs": {
|
|
3992
|
+
"name": "name",
|
|
3993
|
+
"isSearchable": true
|
|
3994
|
+
}
|
|
3995
|
+
},
|
|
3996
|
+
{
|
|
3997
|
+
"type": "field",
|
|
3998
|
+
"attrs": {
|
|
3999
|
+
"name": "description",
|
|
4000
|
+
"isSearchable": true
|
|
4001
|
+
}
|
|
4002
|
+
},
|
|
4003
|
+
{
|
|
4004
|
+
"type": "field",
|
|
4005
|
+
"attrs": {
|
|
4006
|
+
"name": "menuIconUrl",
|
|
4007
|
+
"isSearchable": true
|
|
4008
|
+
}
|
|
4009
|
+
},
|
|
4010
|
+
{
|
|
4011
|
+
"type": "field",
|
|
4012
|
+
"attrs": {
|
|
4013
|
+
"name": "menuSequenceNumber",
|
|
4014
|
+
"isSearchable": true
|
|
4015
|
+
}
|
|
4016
|
+
},
|
|
4017
|
+
{
|
|
4018
|
+
"type": "field",
|
|
4019
|
+
"attrs": {
|
|
4020
|
+
"name": "defaultDataSource",
|
|
4021
|
+
"isSearchable": true
|
|
4022
|
+
}
|
|
4023
|
+
},
|
|
4024
|
+
{
|
|
4025
|
+
"type": "field",
|
|
4026
|
+
"attrs": {
|
|
4027
|
+
"name": "isSystem"
|
|
4028
|
+
}
|
|
4029
|
+
}
|
|
4030
|
+
]
|
|
4031
|
+
}
|
|
4032
|
+
]
|
|
4033
|
+
}
|
|
4034
|
+
]
|
|
4035
|
+
}
|
|
4036
|
+
},
|
|
4037
|
+
{
|
|
4038
|
+
"name": "modelMetadata-list-view",
|
|
4039
|
+
"displayName": "Model Metadata",
|
|
4040
|
+
"type": "list",
|
|
4041
|
+
"context": "{}",
|
|
4042
|
+
"moduleUserKey": "solid-core",
|
|
4043
|
+
"modelUserKey": "modelMetadata",
|
|
4044
|
+
"layout": {
|
|
4045
|
+
"type": "list",
|
|
4046
|
+
"attrs": {
|
|
4047
|
+
"pagination": true,
|
|
4048
|
+
"pageSizeOptions": [
|
|
4049
|
+
10,
|
|
4050
|
+
25,
|
|
4051
|
+
50
|
|
4052
|
+
],
|
|
4053
|
+
"enableGlobalSearch": true,
|
|
4054
|
+
"truncateAfter": 50,
|
|
4055
|
+
"create": true,
|
|
4056
|
+
"edit": true,
|
|
4057
|
+
"delete": true,
|
|
4058
|
+
"rowButtons": [
|
|
4059
|
+
{
|
|
4060
|
+
"attrs": {
|
|
4061
|
+
"className": "pi pi-cog",
|
|
4062
|
+
"label": "Generate Code"
|
|
4063
|
+
},
|
|
4064
|
+
"action": {
|
|
4065
|
+
"title": "",
|
|
4066
|
+
"body": "",
|
|
4067
|
+
"confirmBtnLabel": "Generate Code",
|
|
4068
|
+
"cancelBtnLabel": "Cancel",
|
|
4069
|
+
"customComponent": "../extension/solid-core/modelMetadata/list/GenerateModelCodeRowAction",
|
|
4070
|
+
"customComponentIsSystem": true,
|
|
4071
|
+
"endpoint": ""
|
|
4072
|
+
}
|
|
4073
|
+
}
|
|
4074
|
+
],
|
|
4075
|
+
"headerButtons": [
|
|
4076
|
+
{
|
|
4077
|
+
"attrs": {
|
|
4078
|
+
"className": "pi pi-cog",
|
|
4079
|
+
"label": "Generate Code"
|
|
4080
|
+
},
|
|
4081
|
+
"action": {
|
|
4082
|
+
"title": "",
|
|
4083
|
+
"body": "",
|
|
4084
|
+
"confirmBtnLabel": "Generate Code",
|
|
4085
|
+
"cancelBtnLabel": "Cancel",
|
|
4086
|
+
"customComponent": "GenerateModelCode",
|
|
4087
|
+
"endpoint": ""
|
|
4088
|
+
}
|
|
4089
|
+
}
|
|
4090
|
+
]
|
|
4091
|
+
},
|
|
4092
|
+
"children": [
|
|
4093
|
+
{
|
|
4094
|
+
"type": "field",
|
|
4095
|
+
"attrs": {
|
|
4096
|
+
"name": "singularName",
|
|
4097
|
+
"isSearchable": true
|
|
4098
|
+
}
|
|
4099
|
+
},
|
|
4100
|
+
{
|
|
4101
|
+
"type": "field",
|
|
4102
|
+
"attrs": {
|
|
4103
|
+
"name": "tableName",
|
|
4104
|
+
"isSearchable": true
|
|
4105
|
+
}
|
|
4106
|
+
},
|
|
4107
|
+
{
|
|
4108
|
+
"type": "field",
|
|
4109
|
+
"attrs": {
|
|
4110
|
+
"name": "pluralName",
|
|
4111
|
+
"isSearchable": true
|
|
4112
|
+
}
|
|
4113
|
+
},
|
|
4114
|
+
{
|
|
4115
|
+
"type": "field",
|
|
4116
|
+
"attrs": {
|
|
4117
|
+
"name": "displayName",
|
|
4118
|
+
"isSearchable": true
|
|
4119
|
+
}
|
|
4120
|
+
},
|
|
4121
|
+
{
|
|
4122
|
+
"type": "field",
|
|
4123
|
+
"attrs": {
|
|
4124
|
+
"name": "description",
|
|
4125
|
+
"isSearchable": true
|
|
4126
|
+
}
|
|
4127
|
+
},
|
|
4128
|
+
{
|
|
4129
|
+
"type": "field",
|
|
4130
|
+
"attrs": {
|
|
4131
|
+
"name": "dataSource",
|
|
4132
|
+
"isSearchable": true
|
|
4133
|
+
}
|
|
4134
|
+
},
|
|
4135
|
+
{
|
|
4136
|
+
"type": "field",
|
|
4137
|
+
"attrs": {
|
|
4138
|
+
"name": "enableSoftDelete",
|
|
4139
|
+
"isSearchable": true
|
|
4140
|
+
}
|
|
4141
|
+
},
|
|
4142
|
+
{
|
|
4143
|
+
"type": "field",
|
|
4144
|
+
"attrs": {
|
|
4145
|
+
"name": "module",
|
|
4146
|
+
"isSearchable": true
|
|
4147
|
+
}
|
|
4148
|
+
}
|
|
4149
|
+
]
|
|
4150
|
+
}
|
|
4151
|
+
},
|
|
4152
|
+
{
|
|
4153
|
+
"name": "modelMetadata-form-view",
|
|
4154
|
+
"displayName": "Model Metadata",
|
|
4155
|
+
"type": "form",
|
|
4156
|
+
"context": "{}",
|
|
4157
|
+
"moduleUserKey": "solid-core",
|
|
4158
|
+
"modelUserKey": "modelMetadata",
|
|
4159
|
+
"layout": {
|
|
4160
|
+
"type": "form",
|
|
4161
|
+
"attrs": {
|
|
4162
|
+
"name": "form-1",
|
|
4163
|
+
"label": "Model Metadata",
|
|
4164
|
+
"className": "grid"
|
|
4165
|
+
},
|
|
4166
|
+
"children": [
|
|
4167
|
+
{
|
|
4168
|
+
"type": "sheet",
|
|
4169
|
+
"attrs": {
|
|
4170
|
+
"name": "sheet-1"
|
|
4171
|
+
},
|
|
4172
|
+
"children": [
|
|
4173
|
+
{
|
|
4174
|
+
"type": "group",
|
|
4175
|
+
"attrs": {
|
|
4176
|
+
"name": "group-1",
|
|
4177
|
+
"label": "",
|
|
4178
|
+
"className": "col-6"
|
|
4179
|
+
},
|
|
4180
|
+
"children": [
|
|
4181
|
+
{
|
|
4182
|
+
"type": "field",
|
|
4183
|
+
"attrs": {
|
|
4184
|
+
"name": "singularName",
|
|
4185
|
+
"isSearchable": true
|
|
4186
|
+
}
|
|
4187
|
+
},
|
|
4188
|
+
{
|
|
4189
|
+
"type": "field",
|
|
4190
|
+
"attrs": {
|
|
4191
|
+
"name": "tableName",
|
|
4192
|
+
"isSearchable": true
|
|
4193
|
+
}
|
|
4194
|
+
},
|
|
4195
|
+
{
|
|
4196
|
+
"type": "field",
|
|
4197
|
+
"attrs": {
|
|
4198
|
+
"name": "pluralName",
|
|
4199
|
+
"isSearchable": true
|
|
4200
|
+
}
|
|
4201
|
+
},
|
|
4202
|
+
{
|
|
4203
|
+
"type": "field",
|
|
4204
|
+
"attrs": {
|
|
4205
|
+
"name": "displayName",
|
|
4206
|
+
"isSearchable": true
|
|
4207
|
+
}
|
|
4208
|
+
},
|
|
4209
|
+
{
|
|
4210
|
+
"type": "field",
|
|
4211
|
+
"attrs": {
|
|
4212
|
+
"name": "description",
|
|
4213
|
+
"isSearchable": true
|
|
4214
|
+
}
|
|
4215
|
+
},
|
|
4216
|
+
{
|
|
4217
|
+
"type": "field",
|
|
4218
|
+
"attrs": {
|
|
4219
|
+
"name": "dataSource",
|
|
4220
|
+
"isSearchable": true
|
|
4221
|
+
}
|
|
4222
|
+
},
|
|
4223
|
+
{
|
|
4224
|
+
"type": "field",
|
|
4225
|
+
"attrs": {
|
|
4226
|
+
"name": "enableSoftDelete",
|
|
4227
|
+
"isSearchable": true
|
|
4228
|
+
}
|
|
4229
|
+
},
|
|
4230
|
+
{
|
|
4231
|
+
"type": "field",
|
|
4232
|
+
"attrs": {
|
|
4233
|
+
"name": "module",
|
|
4234
|
+
"isSearchable": true
|
|
4235
|
+
}
|
|
4236
|
+
},
|
|
4237
|
+
{
|
|
4238
|
+
"type": "field",
|
|
4239
|
+
"attrs": {
|
|
4240
|
+
"name": "isUserKey",
|
|
4241
|
+
"isSearchable": true
|
|
4242
|
+
}
|
|
4243
|
+
}
|
|
4244
|
+
]
|
|
4245
|
+
}
|
|
4246
|
+
]
|
|
4247
|
+
}
|
|
4248
|
+
]
|
|
4249
|
+
}
|
|
4250
|
+
},
|
|
4251
|
+
{
|
|
4252
|
+
"name": "savedFilters-list-view",
|
|
4253
|
+
"displayName": "Saved Filters list view",
|
|
4254
|
+
"type": "list",
|
|
4255
|
+
"context": "{}",
|
|
4256
|
+
"moduleUserKey": "solid-core",
|
|
4257
|
+
"modelUserKey": "savedFilters",
|
|
4258
|
+
"layout": {
|
|
4259
|
+
"type": "list",
|
|
4260
|
+
"attrs": {
|
|
4261
|
+
"pagination": true,
|
|
4262
|
+
"pageSizeOptions": [
|
|
4263
|
+
10,
|
|
4264
|
+
25,
|
|
4265
|
+
50
|
|
4266
|
+
],
|
|
4267
|
+
"enableGlobalSearch": true,
|
|
4268
|
+
"create": true,
|
|
4269
|
+
"edit": true,
|
|
4270
|
+
"delete": true
|
|
4271
|
+
},
|
|
4272
|
+
"children": [
|
|
4273
|
+
{
|
|
4274
|
+
"type": "field",
|
|
4275
|
+
"attrs": {
|
|
4276
|
+
"name": "name",
|
|
4277
|
+
"isSearchable": true
|
|
4278
|
+
}
|
|
4279
|
+
},
|
|
4280
|
+
{
|
|
4281
|
+
"type": "field",
|
|
4282
|
+
"attrs": {
|
|
4283
|
+
"name": "model",
|
|
4284
|
+
"isSearchable": true
|
|
4285
|
+
}
|
|
4286
|
+
},
|
|
4287
|
+
{
|
|
4288
|
+
"type": "field",
|
|
4289
|
+
"attrs": {
|
|
4290
|
+
"name": "view",
|
|
4291
|
+
"isSearchable": true
|
|
4292
|
+
}
|
|
4293
|
+
},
|
|
4294
|
+
{
|
|
4295
|
+
"type": "field",
|
|
4296
|
+
"attrs": {
|
|
4297
|
+
"name": "filterQueryJson",
|
|
4298
|
+
"isSearchable": true
|
|
4299
|
+
}
|
|
4300
|
+
}
|
|
4301
|
+
]
|
|
4302
|
+
}
|
|
4303
|
+
},
|
|
4304
|
+
{
|
|
4305
|
+
"name": "savedFilters-form-view",
|
|
4306
|
+
"displayName": "Saved Filters form view",
|
|
4307
|
+
"type": "form",
|
|
4308
|
+
"context": "{}",
|
|
4309
|
+
"moduleUserKey": "solid-core",
|
|
4310
|
+
"modelUserKey": "savedFilters",
|
|
4311
|
+
"layout": {
|
|
4312
|
+
"type": "form",
|
|
4313
|
+
"attrs": {
|
|
4314
|
+
"name": "form-1",
|
|
4315
|
+
"label": "Solid Saved Filter Model",
|
|
4316
|
+
"className": "grid"
|
|
4317
|
+
},
|
|
4318
|
+
"children": [
|
|
4319
|
+
{
|
|
4320
|
+
"type": "sheet",
|
|
4321
|
+
"attrs": {
|
|
4322
|
+
"name": "sheet-1"
|
|
4323
|
+
},
|
|
4324
|
+
"children": [
|
|
4325
|
+
{
|
|
4326
|
+
"type": "group",
|
|
4327
|
+
"attrs": {
|
|
4328
|
+
"name": "group-1",
|
|
4329
|
+
"label": "",
|
|
4330
|
+
"className": "col-6"
|
|
4331
|
+
},
|
|
4332
|
+
"children": [
|
|
4333
|
+
{
|
|
4334
|
+
"type": "field",
|
|
4335
|
+
"attrs": {
|
|
4336
|
+
"name": "name"
|
|
4337
|
+
}
|
|
4338
|
+
},
|
|
4339
|
+
{
|
|
4340
|
+
"type": "field",
|
|
4341
|
+
"attrs": {
|
|
4342
|
+
"name": "filterQueryJson"
|
|
4343
|
+
}
|
|
4344
|
+
},
|
|
4345
|
+
{
|
|
4346
|
+
"type": "field",
|
|
4347
|
+
"attrs": {
|
|
4348
|
+
"name": "view"
|
|
4349
|
+
}
|
|
4350
|
+
},
|
|
4351
|
+
{
|
|
4352
|
+
"type": "field",
|
|
4353
|
+
"attrs": {
|
|
4354
|
+
"name": "model"
|
|
4355
|
+
}
|
|
4356
|
+
},
|
|
4357
|
+
{
|
|
4358
|
+
"type": "field",
|
|
4359
|
+
"attrs": {
|
|
4360
|
+
"name": "user"
|
|
4361
|
+
}
|
|
4362
|
+
}
|
|
4363
|
+
]
|
|
4364
|
+
}
|
|
4365
|
+
]
|
|
4366
|
+
}
|
|
4367
|
+
]
|
|
4368
|
+
}
|
|
4369
|
+
},
|
|
4370
|
+
{
|
|
4371
|
+
"name": "listOfValues-list-view",
|
|
4372
|
+
"displayName": "List of Values list view",
|
|
4373
|
+
"type": "list",
|
|
4374
|
+
"context": "{}",
|
|
4375
|
+
"moduleUserKey": "solid-core",
|
|
4376
|
+
"modelUserKey": "listOfValues",
|
|
4377
|
+
"layout": {
|
|
4378
|
+
"type": "list",
|
|
4379
|
+
"attrs": {
|
|
4380
|
+
"pagination": true,
|
|
4381
|
+
"pageSizeOptions": [
|
|
4382
|
+
10,
|
|
4383
|
+
25,
|
|
4384
|
+
50
|
|
4385
|
+
],
|
|
4386
|
+
"enableGlobalSearch": true,
|
|
4387
|
+
"create": true,
|
|
4388
|
+
"edit": true,
|
|
4389
|
+
"delete": true
|
|
4390
|
+
},
|
|
4391
|
+
"children": [
|
|
4392
|
+
{
|
|
4393
|
+
"type": "field",
|
|
4394
|
+
"attrs": {
|
|
4395
|
+
"name": "type",
|
|
4396
|
+
"isSearchable": true
|
|
4397
|
+
}
|
|
4398
|
+
},
|
|
4399
|
+
{
|
|
4400
|
+
"type": "field",
|
|
4401
|
+
"attrs": {
|
|
4402
|
+
"name": "value",
|
|
4403
|
+
"isSearchable": true
|
|
4404
|
+
}
|
|
4405
|
+
},
|
|
4406
|
+
{
|
|
4407
|
+
"type": "field",
|
|
4408
|
+
"attrs": {
|
|
4409
|
+
"name": "display",
|
|
4410
|
+
"isSearchable": true
|
|
4411
|
+
}
|
|
4412
|
+
},
|
|
4413
|
+
{
|
|
4414
|
+
"type": "field",
|
|
4415
|
+
"attrs": {
|
|
4416
|
+
"name": "description",
|
|
4417
|
+
"isSearchable": true
|
|
4418
|
+
}
|
|
4419
|
+
},
|
|
4420
|
+
{
|
|
4421
|
+
"type": "field",
|
|
4422
|
+
"attrs": {
|
|
4423
|
+
"name": "default",
|
|
4424
|
+
"isSearchable": true
|
|
4425
|
+
}
|
|
4426
|
+
},
|
|
4427
|
+
{
|
|
4428
|
+
"type": "field",
|
|
4429
|
+
"attrs": {
|
|
4430
|
+
"name": "sequence",
|
|
4431
|
+
"isSearchable": true
|
|
4432
|
+
}
|
|
4433
|
+
}
|
|
4434
|
+
]
|
|
4435
|
+
}
|
|
4436
|
+
},
|
|
4437
|
+
{
|
|
4438
|
+
"name": "listOfValues-form-view",
|
|
4439
|
+
"displayName": "List of Values form view",
|
|
4440
|
+
"type": "form",
|
|
4441
|
+
"context": "{}",
|
|
4442
|
+
"moduleUserKey": "solid-core",
|
|
4443
|
+
"modelUserKey": "listOfValues",
|
|
4444
|
+
"layout": {
|
|
4445
|
+
"type": "form",
|
|
4446
|
+
"attrs": {
|
|
4447
|
+
"name": "form-1",
|
|
4448
|
+
"label": "Solid List of Values Model",
|
|
4449
|
+
"className": "grid"
|
|
4450
|
+
},
|
|
4451
|
+
"children": [
|
|
4452
|
+
{
|
|
4453
|
+
"type": "sheet",
|
|
4454
|
+
"attrs": {
|
|
4455
|
+
"name": "sheet-1"
|
|
4456
|
+
},
|
|
4457
|
+
"children": [
|
|
4458
|
+
{
|
|
4459
|
+
"type": "group",
|
|
4460
|
+
"attrs": {
|
|
4461
|
+
"name": "group-1",
|
|
4462
|
+
"label": "",
|
|
4463
|
+
"className": "col-6"
|
|
4464
|
+
},
|
|
4465
|
+
"children": [
|
|
4466
|
+
{
|
|
4467
|
+
"type": "field",
|
|
4468
|
+
"attrs": {
|
|
4469
|
+
"name": "type"
|
|
4470
|
+
}
|
|
4471
|
+
},
|
|
4472
|
+
{
|
|
4473
|
+
"type": "field",
|
|
4474
|
+
"attrs": {
|
|
4475
|
+
"name": "value"
|
|
4476
|
+
}
|
|
4477
|
+
},
|
|
4478
|
+
{
|
|
4479
|
+
"type": "field",
|
|
4480
|
+
"attrs": {
|
|
4481
|
+
"name": "display"
|
|
4482
|
+
}
|
|
4483
|
+
},
|
|
4484
|
+
{
|
|
4485
|
+
"type": "field",
|
|
4486
|
+
"attrs": {
|
|
4487
|
+
"name": "description"
|
|
4488
|
+
}
|
|
4489
|
+
},
|
|
4490
|
+
{
|
|
4491
|
+
"type": "field",
|
|
4492
|
+
"attrs": {
|
|
4493
|
+
"name": "default"
|
|
4494
|
+
}
|
|
4495
|
+
},
|
|
4496
|
+
{
|
|
4497
|
+
"type": "field",
|
|
4498
|
+
"attrs": {
|
|
4499
|
+
"name": "sequence"
|
|
4500
|
+
}
|
|
4501
|
+
}
|
|
4502
|
+
]
|
|
4503
|
+
}
|
|
4504
|
+
]
|
|
4505
|
+
}
|
|
4506
|
+
]
|
|
4507
|
+
}
|
|
4508
|
+
},
|
|
4509
|
+
{
|
|
4510
|
+
"name": "savedFilters-list-view",
|
|
4511
|
+
"displayName": "Saved Filters list view",
|
|
4512
|
+
"type": "list",
|
|
4513
|
+
"context": "{}",
|
|
4514
|
+
"moduleUserKey": "solid-core",
|
|
4515
|
+
"modelUserKey": "savedFilters",
|
|
4516
|
+
"layout": {
|
|
4517
|
+
"type": "list",
|
|
4518
|
+
"attrs": {
|
|
4519
|
+
"pagination": true,
|
|
4520
|
+
"pageSizeOptions": [
|
|
4521
|
+
10,
|
|
4522
|
+
25,
|
|
4523
|
+
50
|
|
4524
|
+
],
|
|
4525
|
+
"enableGlobalSearch": true,
|
|
4526
|
+
"create": true,
|
|
4527
|
+
"edit": true,
|
|
4528
|
+
"delete": true
|
|
4529
|
+
},
|
|
4530
|
+
"children": [
|
|
4531
|
+
{
|
|
4532
|
+
"type": "field",
|
|
4533
|
+
"attrs": {
|
|
4534
|
+
"name": "name",
|
|
4535
|
+
"isSearchable": true
|
|
4536
|
+
}
|
|
4537
|
+
},
|
|
4538
|
+
{
|
|
4539
|
+
"type": "field",
|
|
4540
|
+
"attrs": {
|
|
4541
|
+
"name": "model",
|
|
4542
|
+
"isSearchable": true
|
|
4543
|
+
}
|
|
4544
|
+
},
|
|
4545
|
+
{
|
|
4546
|
+
"type": "field",
|
|
4547
|
+
"attrs": {
|
|
4548
|
+
"name": "view",
|
|
4549
|
+
"isSearchable": true
|
|
4550
|
+
}
|
|
4551
|
+
},
|
|
4552
|
+
{
|
|
4553
|
+
"type": "field",
|
|
4554
|
+
"attrs": {
|
|
4555
|
+
"name": "filterQueryJson",
|
|
4556
|
+
"isSearchable": true
|
|
4557
|
+
}
|
|
4558
|
+
}
|
|
4559
|
+
]
|
|
4560
|
+
}
|
|
4561
|
+
},
|
|
4562
|
+
{
|
|
4563
|
+
"name": "savedFilters-form-view",
|
|
4564
|
+
"displayName": "Saved Filters form view",
|
|
4565
|
+
"type": "form",
|
|
4566
|
+
"context": "{}",
|
|
4567
|
+
"moduleUserKey": "solid-core",
|
|
4568
|
+
"modelUserKey": "savedFilters",
|
|
4569
|
+
"layout": {
|
|
4570
|
+
"type": "form",
|
|
4571
|
+
"attrs": {
|
|
4572
|
+
"name": "form-1",
|
|
4573
|
+
"label": "Solid Saved Filter Model",
|
|
4574
|
+
"className": "grid"
|
|
4575
|
+
},
|
|
4576
|
+
"children": [
|
|
4577
|
+
{
|
|
4578
|
+
"type": "sheet",
|
|
4579
|
+
"attrs": {
|
|
4580
|
+
"name": "sheet-1"
|
|
4581
|
+
},
|
|
4582
|
+
"children": [
|
|
4583
|
+
{
|
|
4584
|
+
"type": "group",
|
|
4585
|
+
"attrs": {
|
|
4586
|
+
"name": "group-1",
|
|
4587
|
+
"label": "",
|
|
4588
|
+
"className": "col-6"
|
|
4589
|
+
},
|
|
4590
|
+
"children": [
|
|
4591
|
+
{
|
|
4592
|
+
"type": "field",
|
|
4593
|
+
"attrs": {
|
|
4594
|
+
"name": "name"
|
|
4595
|
+
}
|
|
4596
|
+
},
|
|
4597
|
+
{
|
|
4598
|
+
"type": "field",
|
|
4599
|
+
"attrs": {
|
|
4600
|
+
"name": "filterQueryJson"
|
|
4601
|
+
}
|
|
4602
|
+
},
|
|
4603
|
+
{
|
|
4604
|
+
"type": "field",
|
|
4605
|
+
"attrs": {
|
|
4606
|
+
"name": "view"
|
|
4607
|
+
}
|
|
4608
|
+
},
|
|
4609
|
+
{
|
|
4610
|
+
"type": "field",
|
|
4611
|
+
"attrs": {
|
|
4612
|
+
"name": "model"
|
|
4613
|
+
}
|
|
4614
|
+
},
|
|
4615
|
+
{
|
|
4616
|
+
"type": "field",
|
|
4617
|
+
"attrs": {
|
|
4618
|
+
"name": "user"
|
|
4619
|
+
}
|
|
4620
|
+
}
|
|
4621
|
+
]
|
|
4622
|
+
}
|
|
4623
|
+
]
|
|
4624
|
+
}
|
|
4625
|
+
]
|
|
4626
|
+
}
|
|
4627
|
+
},
|
|
4628
|
+
{
|
|
4629
|
+
"name": "savedFilters-list-view",
|
|
4630
|
+
"displayName": "Saved Filters list view",
|
|
3439
4631
|
"type": "list",
|
|
3440
4632
|
"context": "{}",
|
|
3441
4633
|
"moduleUserKey": "solid-core",
|
|
3442
|
-
"modelUserKey": "
|
|
4634
|
+
"modelUserKey": "savedFilters",
|
|
3443
4635
|
"layout": {
|
|
3444
4636
|
"type": "list",
|
|
3445
4637
|
"attrs": {
|
|
@@ -3452,106 +4644,52 @@
|
|
|
3452
4644
|
"enableGlobalSearch": true,
|
|
3453
4645
|
"create": true,
|
|
3454
4646
|
"edit": true,
|
|
3455
|
-
"delete": true
|
|
3456
|
-
"rowButtons": [
|
|
3457
|
-
{
|
|
3458
|
-
"attrs": {
|
|
3459
|
-
"className": "pi pi-cog",
|
|
3460
|
-
"label": "Generate Code"
|
|
3461
|
-
},
|
|
3462
|
-
"action": {
|
|
3463
|
-
"title": "",
|
|
3464
|
-
"body": "",
|
|
3465
|
-
"confirmBtnLabel": "Generate Code",
|
|
3466
|
-
"cancelBtnLabel": "Cancel",
|
|
3467
|
-
"customComponent": "../extension/solid-core/moduleMetadata/list/GenerateModuleCodeRowAction",
|
|
3468
|
-
"customComponentIsSystem": true,
|
|
3469
|
-
"endpoint": ""
|
|
3470
|
-
}
|
|
3471
|
-
}
|
|
3472
|
-
],
|
|
3473
|
-
"headerButtons": [
|
|
3474
|
-
{
|
|
3475
|
-
"attrs": {
|
|
3476
|
-
"className": "pi pi-cog",
|
|
3477
|
-
"label": "Generate Code"
|
|
3478
|
-
},
|
|
3479
|
-
"action": {
|
|
3480
|
-
"title": "",
|
|
3481
|
-
"body": "",
|
|
3482
|
-
"confirmBtnLabel": "Generate Code",
|
|
3483
|
-
"cancelBtnLabel": "Cancel",
|
|
3484
|
-
"customComponent": "GenerateModuleCode",
|
|
3485
|
-
"endpoint": ""
|
|
3486
|
-
}
|
|
3487
|
-
}
|
|
3488
|
-
]
|
|
4647
|
+
"delete": true
|
|
3489
4648
|
},
|
|
3490
4649
|
"children": [
|
|
3491
|
-
{
|
|
3492
|
-
"type": "field",
|
|
3493
|
-
"attrs": {
|
|
3494
|
-
"name": "displayName",
|
|
3495
|
-
"isSearchable" : true
|
|
3496
|
-
}
|
|
3497
|
-
},
|
|
3498
4650
|
{
|
|
3499
4651
|
"type": "field",
|
|
3500
4652
|
"attrs": {
|
|
3501
4653
|
"name": "name",
|
|
3502
|
-
"isSearchable"
|
|
3503
|
-
}
|
|
3504
|
-
},
|
|
3505
|
-
{
|
|
3506
|
-
"type": "field",
|
|
3507
|
-
"attrs": {
|
|
3508
|
-
"name": "description",
|
|
3509
|
-
"isSearchable" : true
|
|
3510
|
-
}
|
|
3511
|
-
},
|
|
3512
|
-
{
|
|
3513
|
-
"type": "field",
|
|
3514
|
-
"attrs": {
|
|
3515
|
-
"name": "menuIconUrl",
|
|
3516
|
-
"isSearchable" : true
|
|
4654
|
+
"isSearchable": true
|
|
3517
4655
|
}
|
|
3518
4656
|
},
|
|
3519
4657
|
{
|
|
3520
4658
|
"type": "field",
|
|
3521
4659
|
"attrs": {
|
|
3522
|
-
"name": "
|
|
3523
|
-
"isSearchable"
|
|
4660
|
+
"name": "model",
|
|
4661
|
+
"isSearchable": true
|
|
3524
4662
|
}
|
|
3525
4663
|
},
|
|
3526
4664
|
{
|
|
3527
4665
|
"type": "field",
|
|
3528
4666
|
"attrs": {
|
|
3529
|
-
"name": "
|
|
3530
|
-
"isSearchable"
|
|
4667
|
+
"name": "view",
|
|
4668
|
+
"isSearchable": true
|
|
3531
4669
|
}
|
|
3532
4670
|
},
|
|
3533
4671
|
{
|
|
3534
4672
|
"type": "field",
|
|
3535
4673
|
"attrs": {
|
|
3536
|
-
"name": "
|
|
3537
|
-
"isSearchable"
|
|
4674
|
+
"name": "filterQueryJson",
|
|
4675
|
+
"isSearchable": true
|
|
3538
4676
|
}
|
|
3539
4677
|
}
|
|
3540
4678
|
]
|
|
3541
4679
|
}
|
|
3542
4680
|
},
|
|
3543
4681
|
{
|
|
3544
|
-
"name": "
|
|
3545
|
-
"displayName": "
|
|
4682
|
+
"name": "savedFilters-form-view",
|
|
4683
|
+
"displayName": "Saved Filters form view",
|
|
3546
4684
|
"type": "form",
|
|
3547
4685
|
"context": "{}",
|
|
3548
4686
|
"moduleUserKey": "solid-core",
|
|
3549
|
-
"modelUserKey": "
|
|
4687
|
+
"modelUserKey": "savedFilters",
|
|
3550
4688
|
"layout": {
|
|
3551
4689
|
"type": "form",
|
|
3552
4690
|
"attrs": {
|
|
3553
4691
|
"name": "form-1",
|
|
3554
|
-
"label": "
|
|
4692
|
+
"label": "Solid Saved Filter Model",
|
|
3555
4693
|
"className": "grid"
|
|
3556
4694
|
},
|
|
3557
4695
|
"children": [
|
|
@@ -3572,49 +4710,31 @@
|
|
|
3572
4710
|
{
|
|
3573
4711
|
"type": "field",
|
|
3574
4712
|
"attrs": {
|
|
3575
|
-
"name": "
|
|
3576
|
-
"isSearchable" : true
|
|
3577
|
-
}
|
|
3578
|
-
},
|
|
3579
|
-
{
|
|
3580
|
-
"type": "field",
|
|
3581
|
-
"attrs": {
|
|
3582
|
-
"name": "name",
|
|
3583
|
-
"isSearchable" : true
|
|
3584
|
-
}
|
|
3585
|
-
},
|
|
3586
|
-
{
|
|
3587
|
-
"type": "field",
|
|
3588
|
-
"attrs": {
|
|
3589
|
-
"name": "description",
|
|
3590
|
-
"isSearchable" : true
|
|
4713
|
+
"name": "name"
|
|
3591
4714
|
}
|
|
3592
4715
|
},
|
|
3593
4716
|
{
|
|
3594
4717
|
"type": "field",
|
|
3595
4718
|
"attrs": {
|
|
3596
|
-
"name": "
|
|
3597
|
-
"isSearchable" : true
|
|
4719
|
+
"name": "filterQueryJson"
|
|
3598
4720
|
}
|
|
3599
4721
|
},
|
|
3600
4722
|
{
|
|
3601
4723
|
"type": "field",
|
|
3602
4724
|
"attrs": {
|
|
3603
|
-
"name": "
|
|
3604
|
-
"isSearchable" : true
|
|
4725
|
+
"name": "view"
|
|
3605
4726
|
}
|
|
3606
4727
|
},
|
|
3607
4728
|
{
|
|
3608
4729
|
"type": "field",
|
|
3609
4730
|
"attrs": {
|
|
3610
|
-
"name": "
|
|
3611
|
-
"isSearchable" : true
|
|
4731
|
+
"name": "model"
|
|
3612
4732
|
}
|
|
3613
4733
|
},
|
|
3614
4734
|
{
|
|
3615
4735
|
"type": "field",
|
|
3616
4736
|
"attrs": {
|
|
3617
|
-
"name": "
|
|
4737
|
+
"name": "user"
|
|
3618
4738
|
}
|
|
3619
4739
|
}
|
|
3620
4740
|
]
|
|
@@ -3625,12 +4745,12 @@
|
|
|
3625
4745
|
}
|
|
3626
4746
|
},
|
|
3627
4747
|
{
|
|
3628
|
-
"name": "
|
|
3629
|
-
"displayName": "
|
|
4748
|
+
"name": "listOfValues-list-view",
|
|
4749
|
+
"displayName": "List of Values list view",
|
|
3630
4750
|
"type": "list",
|
|
3631
4751
|
"context": "{}",
|
|
3632
4752
|
"moduleUserKey": "solid-core",
|
|
3633
|
-
"modelUserKey": "
|
|
4753
|
+
"modelUserKey": "listOfValues",
|
|
3634
4754
|
"layout": {
|
|
3635
4755
|
"type": "list",
|
|
3636
4756
|
"attrs": {
|
|
@@ -3641,116 +4761,68 @@
|
|
|
3641
4761
|
50
|
|
3642
4762
|
],
|
|
3643
4763
|
"enableGlobalSearch": true,
|
|
3644
|
-
"truncateAfter": 50,
|
|
3645
4764
|
"create": true,
|
|
3646
4765
|
"edit": true,
|
|
3647
|
-
"delete": true
|
|
3648
|
-
"rowButtons": [
|
|
3649
|
-
{
|
|
3650
|
-
"attrs": {
|
|
3651
|
-
"className": "pi pi-cog",
|
|
3652
|
-
"label": "Generate Code"
|
|
3653
|
-
},
|
|
3654
|
-
"action": {
|
|
3655
|
-
"title": "",
|
|
3656
|
-
"body": "",
|
|
3657
|
-
"confirmBtnLabel": "Generate Code",
|
|
3658
|
-
"cancelBtnLabel": "Cancel",
|
|
3659
|
-
"customComponent": "../extension/solid-core/modelMetadata/list/GenerateModelCodeRowAction",
|
|
3660
|
-
"customComponentIsSystem": true,
|
|
3661
|
-
"endpoint": ""
|
|
3662
|
-
}
|
|
3663
|
-
}
|
|
3664
|
-
],
|
|
3665
|
-
"headerButtons": [
|
|
3666
|
-
{
|
|
3667
|
-
"attrs": {
|
|
3668
|
-
"className": "pi pi-cog",
|
|
3669
|
-
"label": "Generate Code"
|
|
3670
|
-
},
|
|
3671
|
-
"action": {
|
|
3672
|
-
"title": "",
|
|
3673
|
-
"body": "",
|
|
3674
|
-
"confirmBtnLabel": "Generate Code",
|
|
3675
|
-
"cancelBtnLabel": "Cancel",
|
|
3676
|
-
"customComponent": "GenerateModelCode",
|
|
3677
|
-
"endpoint": ""
|
|
3678
|
-
}
|
|
3679
|
-
}
|
|
3680
|
-
]
|
|
4766
|
+
"delete": true
|
|
3681
4767
|
},
|
|
3682
4768
|
"children": [
|
|
3683
4769
|
{
|
|
3684
4770
|
"type": "field",
|
|
3685
4771
|
"attrs": {
|
|
3686
|
-
"name": "
|
|
3687
|
-
"isSearchable"
|
|
3688
|
-
}
|
|
3689
|
-
},
|
|
3690
|
-
{
|
|
3691
|
-
"type": "field",
|
|
3692
|
-
"attrs": {
|
|
3693
|
-
"name": "tableName",
|
|
3694
|
-
"isSearchable" : true
|
|
4772
|
+
"name": "type",
|
|
4773
|
+
"isSearchable": true
|
|
3695
4774
|
}
|
|
3696
4775
|
},
|
|
3697
4776
|
{
|
|
3698
4777
|
"type": "field",
|
|
3699
4778
|
"attrs": {
|
|
3700
|
-
"name": "
|
|
3701
|
-
"isSearchable"
|
|
4779
|
+
"name": "value",
|
|
4780
|
+
"isSearchable": true
|
|
3702
4781
|
}
|
|
3703
4782
|
},
|
|
3704
4783
|
{
|
|
3705
4784
|
"type": "field",
|
|
3706
4785
|
"attrs": {
|
|
3707
|
-
"name": "
|
|
3708
|
-
"isSearchable"
|
|
4786
|
+
"name": "display",
|
|
4787
|
+
"isSearchable": true
|
|
3709
4788
|
}
|
|
3710
4789
|
},
|
|
3711
4790
|
{
|
|
3712
4791
|
"type": "field",
|
|
3713
4792
|
"attrs": {
|
|
3714
4793
|
"name": "description",
|
|
3715
|
-
"isSearchable"
|
|
4794
|
+
"isSearchable": true
|
|
3716
4795
|
}
|
|
3717
4796
|
},
|
|
3718
4797
|
{
|
|
3719
4798
|
"type": "field",
|
|
3720
4799
|
"attrs": {
|
|
3721
|
-
"name": "
|
|
3722
|
-
"isSearchable"
|
|
3723
|
-
}
|
|
3724
|
-
},
|
|
3725
|
-
{
|
|
3726
|
-
"type": "field",
|
|
3727
|
-
"attrs": {
|
|
3728
|
-
"name": "enableSoftDelete",
|
|
3729
|
-
"isSearchable" : true
|
|
4800
|
+
"name": "default",
|
|
4801
|
+
"isSearchable": true
|
|
3730
4802
|
}
|
|
3731
4803
|
},
|
|
3732
4804
|
{
|
|
3733
4805
|
"type": "field",
|
|
3734
4806
|
"attrs": {
|
|
3735
|
-
"name": "
|
|
3736
|
-
"isSearchable"
|
|
4807
|
+
"name": "sequence",
|
|
4808
|
+
"isSearchable": true
|
|
3737
4809
|
}
|
|
3738
4810
|
}
|
|
3739
4811
|
]
|
|
3740
4812
|
}
|
|
3741
4813
|
},
|
|
3742
4814
|
{
|
|
3743
|
-
"name": "
|
|
3744
|
-
"displayName": "
|
|
4815
|
+
"name": "listOfValues-form-view",
|
|
4816
|
+
"displayName": "List of Values form view",
|
|
3745
4817
|
"type": "form",
|
|
3746
4818
|
"context": "{}",
|
|
3747
4819
|
"moduleUserKey": "solid-core",
|
|
3748
|
-
"modelUserKey": "
|
|
4820
|
+
"modelUserKey": "listOfValues",
|
|
3749
4821
|
"layout": {
|
|
3750
4822
|
"type": "form",
|
|
3751
4823
|
"attrs": {
|
|
3752
4824
|
"name": "form-1",
|
|
3753
|
-
"label": "Model
|
|
4825
|
+
"label": "Solid List of Values Model",
|
|
3754
4826
|
"className": "grid"
|
|
3755
4827
|
},
|
|
3756
4828
|
"children": [
|
|
@@ -3771,64 +4843,37 @@
|
|
|
3771
4843
|
{
|
|
3772
4844
|
"type": "field",
|
|
3773
4845
|
"attrs": {
|
|
3774
|
-
"name": "
|
|
3775
|
-
"isSearchable" : true
|
|
3776
|
-
}
|
|
3777
|
-
},
|
|
3778
|
-
{
|
|
3779
|
-
"type": "field",
|
|
3780
|
-
"attrs": {
|
|
3781
|
-
"name": "tableName",
|
|
3782
|
-
"isSearchable" : true
|
|
3783
|
-
}
|
|
3784
|
-
},
|
|
3785
|
-
{
|
|
3786
|
-
"type": "field",
|
|
3787
|
-
"attrs": {
|
|
3788
|
-
"name": "pluralName",
|
|
3789
|
-
"isSearchable" : true
|
|
3790
|
-
}
|
|
3791
|
-
},
|
|
3792
|
-
{
|
|
3793
|
-
"type": "field",
|
|
3794
|
-
"attrs": {
|
|
3795
|
-
"name": "displayName",
|
|
3796
|
-
"isSearchable" : true
|
|
4846
|
+
"name": "type"
|
|
3797
4847
|
}
|
|
3798
4848
|
},
|
|
3799
4849
|
{
|
|
3800
4850
|
"type": "field",
|
|
3801
4851
|
"attrs": {
|
|
3802
|
-
"name": "
|
|
3803
|
-
"isSearchable" : true
|
|
4852
|
+
"name": "value"
|
|
3804
4853
|
}
|
|
3805
4854
|
},
|
|
3806
4855
|
{
|
|
3807
4856
|
"type": "field",
|
|
3808
4857
|
"attrs": {
|
|
3809
|
-
"name": "
|
|
3810
|
-
"isSearchable" : true
|
|
4858
|
+
"name": "display"
|
|
3811
4859
|
}
|
|
3812
4860
|
},
|
|
3813
4861
|
{
|
|
3814
4862
|
"type": "field",
|
|
3815
4863
|
"attrs": {
|
|
3816
|
-
"name": "
|
|
3817
|
-
"isSearchable" : true
|
|
4864
|
+
"name": "description"
|
|
3818
4865
|
}
|
|
3819
4866
|
},
|
|
3820
4867
|
{
|
|
3821
4868
|
"type": "field",
|
|
3822
4869
|
"attrs": {
|
|
3823
|
-
"name": "
|
|
3824
|
-
"isSearchable" : true
|
|
4870
|
+
"name": "default"
|
|
3825
4871
|
}
|
|
3826
4872
|
},
|
|
3827
4873
|
{
|
|
3828
4874
|
"type": "field",
|
|
3829
4875
|
"attrs": {
|
|
3830
|
-
"name": "
|
|
3831
|
-
"isSearchable" : true
|
|
4876
|
+
"name": "sequence"
|
|
3832
4877
|
}
|
|
3833
4878
|
}
|
|
3834
4879
|
]
|
|
@@ -3864,42 +4909,42 @@
|
|
|
3864
4909
|
"type": "field",
|
|
3865
4910
|
"attrs": {
|
|
3866
4911
|
"name": "name",
|
|
3867
|
-
"isSearchable"
|
|
4912
|
+
"isSearchable": true
|
|
3868
4913
|
}
|
|
3869
4914
|
},
|
|
3870
4915
|
{
|
|
3871
4916
|
"type": "field",
|
|
3872
4917
|
"attrs": {
|
|
3873
4918
|
"name": "type",
|
|
3874
|
-
"isSearchable"
|
|
4919
|
+
"isSearchable": true
|
|
3875
4920
|
}
|
|
3876
4921
|
},
|
|
3877
4922
|
{
|
|
3878
4923
|
"type": "field",
|
|
3879
4924
|
"attrs": {
|
|
3880
4925
|
"name": "region",
|
|
3881
|
-
"isSearchable"
|
|
4926
|
+
"isSearchable": true
|
|
3882
4927
|
}
|
|
3883
4928
|
},
|
|
3884
4929
|
{
|
|
3885
4930
|
"type": "field",
|
|
3886
4931
|
"attrs": {
|
|
3887
4932
|
"name": "bucketName",
|
|
3888
|
-
"isSearchable"
|
|
4933
|
+
"isSearchable": true
|
|
3889
4934
|
}
|
|
3890
4935
|
},
|
|
3891
4936
|
{
|
|
3892
4937
|
"type": "field",
|
|
3893
4938
|
"attrs": {
|
|
3894
4939
|
"name": "isPublic",
|
|
3895
|
-
"isSearchable"
|
|
4940
|
+
"isSearchable": true
|
|
3896
4941
|
}
|
|
3897
4942
|
},
|
|
3898
4943
|
{
|
|
3899
4944
|
"type": "field",
|
|
3900
4945
|
"attrs": {
|
|
3901
4946
|
"name": "localPath",
|
|
3902
|
-
"isSearchable"
|
|
4947
|
+
"isSearchable": true
|
|
3903
4948
|
}
|
|
3904
4949
|
}
|
|
3905
4950
|
]
|
|
@@ -3938,42 +4983,42 @@
|
|
|
3938
4983
|
"type": "field",
|
|
3939
4984
|
"attrs": {
|
|
3940
4985
|
"name": "name",
|
|
3941
|
-
"isSearchable"
|
|
4986
|
+
"isSearchable": true
|
|
3942
4987
|
}
|
|
3943
4988
|
},
|
|
3944
4989
|
{
|
|
3945
4990
|
"type": "field",
|
|
3946
4991
|
"attrs": {
|
|
3947
4992
|
"name": "type",
|
|
3948
|
-
"isSearchable"
|
|
4993
|
+
"isSearchable": true
|
|
3949
4994
|
}
|
|
3950
4995
|
},
|
|
3951
4996
|
{
|
|
3952
4997
|
"type": "field",
|
|
3953
4998
|
"attrs": {
|
|
3954
4999
|
"name": "region",
|
|
3955
|
-
"isSearchable"
|
|
5000
|
+
"isSearchable": true
|
|
3956
5001
|
}
|
|
3957
5002
|
},
|
|
3958
5003
|
{
|
|
3959
5004
|
"type": "field",
|
|
3960
5005
|
"attrs": {
|
|
3961
5006
|
"name": "bucketName",
|
|
3962
|
-
"isSearchable"
|
|
5007
|
+
"isSearchable": true
|
|
3963
5008
|
}
|
|
3964
5009
|
},
|
|
3965
5010
|
{
|
|
3966
5011
|
"type": "field",
|
|
3967
5012
|
"attrs": {
|
|
3968
5013
|
"name": "isPublic",
|
|
3969
|
-
"isSearchable"
|
|
5014
|
+
"isSearchable": true
|
|
3970
5015
|
}
|
|
3971
5016
|
},
|
|
3972
5017
|
{
|
|
3973
5018
|
"type": "field",
|
|
3974
5019
|
"attrs": {
|
|
3975
5020
|
"name": "localPath",
|
|
3976
|
-
"isSearchable"
|
|
5021
|
+
"isSearchable": true
|
|
3977
5022
|
}
|
|
3978
5023
|
}
|
|
3979
5024
|
]
|
|
@@ -4009,49 +5054,49 @@
|
|
|
4009
5054
|
"type": "field",
|
|
4010
5055
|
"attrs": {
|
|
4011
5056
|
"name": "name",
|
|
4012
|
-
"isSearchable"
|
|
5057
|
+
"isSearchable": true
|
|
4013
5058
|
}
|
|
4014
5059
|
},
|
|
4015
5060
|
{
|
|
4016
5061
|
"type": "field",
|
|
4017
5062
|
"attrs": {
|
|
4018
5063
|
"name": "displayName",
|
|
4019
|
-
"isSearchable"
|
|
5064
|
+
"isSearchable": true
|
|
4020
5065
|
}
|
|
4021
5066
|
},
|
|
4022
5067
|
{
|
|
4023
5068
|
"type": "field",
|
|
4024
5069
|
"attrs": {
|
|
4025
5070
|
"name": "type",
|
|
4026
|
-
"isSearchable"
|
|
5071
|
+
"isSearchable": true
|
|
4027
5072
|
}
|
|
4028
5073
|
},
|
|
4029
5074
|
{
|
|
4030
5075
|
"type": "field",
|
|
4031
5076
|
"attrs": {
|
|
4032
5077
|
"name": "context",
|
|
4033
|
-
"isSearchable"
|
|
5078
|
+
"isSearchable": true
|
|
4034
5079
|
}
|
|
4035
5080
|
},
|
|
4036
5081
|
{
|
|
4037
5082
|
"type": "field",
|
|
4038
5083
|
"attrs": {
|
|
4039
5084
|
"name": "layout",
|
|
4040
|
-
"isSearchable"
|
|
5085
|
+
"isSearchable": true
|
|
4041
5086
|
}
|
|
4042
5087
|
},
|
|
4043
5088
|
{
|
|
4044
5089
|
"type": "field",
|
|
4045
5090
|
"attrs": {
|
|
4046
5091
|
"name": "module",
|
|
4047
|
-
"isSearchable"
|
|
5092
|
+
"isSearchable": true
|
|
4048
5093
|
}
|
|
4049
5094
|
},
|
|
4050
5095
|
{
|
|
4051
5096
|
"type": "field",
|
|
4052
5097
|
"attrs": {
|
|
4053
5098
|
"name": "model",
|
|
4054
|
-
"isSearchable"
|
|
5099
|
+
"isSearchable": true
|
|
4055
5100
|
}
|
|
4056
5101
|
}
|
|
4057
5102
|
]
|
|
@@ -4392,42 +5437,42 @@
|
|
|
4392
5437
|
"type": "field",
|
|
4393
5438
|
"attrs": {
|
|
4394
5439
|
"name": "name",
|
|
4395
|
-
"isSearchable"
|
|
5440
|
+
"isSearchable": true
|
|
4396
5441
|
}
|
|
4397
5442
|
},
|
|
4398
5443
|
{
|
|
4399
5444
|
"type": "field",
|
|
4400
5445
|
"attrs": {
|
|
4401
5446
|
"name": "displayName",
|
|
4402
|
-
"isSearchable"
|
|
5447
|
+
"isSearchable": true
|
|
4403
5448
|
}
|
|
4404
5449
|
},
|
|
4405
5450
|
{
|
|
4406
5451
|
"type": "field",
|
|
4407
5452
|
"attrs": {
|
|
4408
5453
|
"name": "type",
|
|
4409
|
-
"isSearchable"
|
|
5454
|
+
"isSearchable": true
|
|
4410
5455
|
}
|
|
4411
5456
|
},
|
|
4412
5457
|
{
|
|
4413
5458
|
"type": "field",
|
|
4414
5459
|
"attrs": {
|
|
4415
5460
|
"name": "module",
|
|
4416
|
-
"isSearchable"
|
|
5461
|
+
"isSearchable": true
|
|
4417
5462
|
}
|
|
4418
5463
|
},
|
|
4419
5464
|
{
|
|
4420
5465
|
"type": "field",
|
|
4421
5466
|
"attrs": {
|
|
4422
5467
|
"name": "model",
|
|
4423
|
-
"isSearchable"
|
|
5468
|
+
"isSearchable": true
|
|
4424
5469
|
}
|
|
4425
5470
|
},
|
|
4426
5471
|
{
|
|
4427
5472
|
"type": "field",
|
|
4428
5473
|
"attrs": {
|
|
4429
5474
|
"name": "view",
|
|
4430
|
-
"isSearchable"
|
|
5475
|
+
"isSearchable": true
|
|
4431
5476
|
}
|
|
4432
5477
|
}
|
|
4433
5478
|
]
|
|
@@ -4639,7 +5684,7 @@
|
|
|
4639
5684
|
"type": "field",
|
|
4640
5685
|
"attrs": {
|
|
4641
5686
|
"name": "name",
|
|
4642
|
-
"isSearchable"
|
|
5687
|
+
"isSearchable": true,
|
|
4643
5688
|
"widget": "HarishShortText"
|
|
4644
5689
|
}
|
|
4645
5690
|
},
|
|
@@ -4647,42 +5692,42 @@
|
|
|
4647
5692
|
"type": "field",
|
|
4648
5693
|
"attrs": {
|
|
4649
5694
|
"name": "displayName",
|
|
4650
|
-
"isSearchable"
|
|
5695
|
+
"isSearchable": true
|
|
4651
5696
|
}
|
|
4652
5697
|
},
|
|
4653
5698
|
{
|
|
4654
5699
|
"type": "field",
|
|
4655
5700
|
"attrs": {
|
|
4656
5701
|
"name": "sequenceNumber",
|
|
4657
|
-
"isSearchable"
|
|
5702
|
+
"isSearchable": true
|
|
4658
5703
|
}
|
|
4659
5704
|
},
|
|
4660
5705
|
{
|
|
4661
5706
|
"type": "field",
|
|
4662
5707
|
"attrs": {
|
|
4663
5708
|
"name": "module",
|
|
4664
|
-
"isSearchable"
|
|
5709
|
+
"isSearchable": true
|
|
4665
5710
|
}
|
|
4666
5711
|
},
|
|
4667
5712
|
{
|
|
4668
5713
|
"type": "field",
|
|
4669
5714
|
"attrs": {
|
|
4670
5715
|
"name": "parentMenuItem",
|
|
4671
|
-
"isSearchable"
|
|
5716
|
+
"isSearchable": true
|
|
4672
5717
|
}
|
|
4673
5718
|
},
|
|
4674
5719
|
{
|
|
4675
5720
|
"type": "field",
|
|
4676
5721
|
"attrs": {
|
|
4677
5722
|
"name": "action",
|
|
4678
|
-
"isSearchable"
|
|
5723
|
+
"isSearchable": true
|
|
4679
5724
|
}
|
|
4680
5725
|
},
|
|
4681
5726
|
{
|
|
4682
5727
|
"type": "field",
|
|
4683
5728
|
"attrs": {
|
|
4684
5729
|
"name": "roles",
|
|
4685
|
-
"isSearchable"
|
|
5730
|
+
"isSearchable": true
|
|
4686
5731
|
}
|
|
4687
5732
|
}
|
|
4688
5733
|
]
|
|
@@ -4805,6 +5850,7 @@
|
|
|
4805
5850
|
]
|
|
4806
5851
|
}
|
|
4807
5852
|
},
|
|
5853
|
+
|
|
4808
5854
|
{
|
|
4809
5855
|
"name": "media-list-view",
|
|
4810
5856
|
"displayName": "Solid Media Model",
|
|
@@ -4835,7 +5881,7 @@
|
|
|
4835
5881
|
"type": "field",
|
|
4836
5882
|
"attrs": {
|
|
4837
5883
|
"name": "entityId",
|
|
4838
|
-
"isSearchable"
|
|
5884
|
+
"isSearchable": true
|
|
4839
5885
|
}
|
|
4840
5886
|
},
|
|
4841
5887
|
{
|
|
@@ -4843,28 +5889,28 @@
|
|
|
4843
5889
|
"attrs": {
|
|
4844
5890
|
"name": "relativeUri",
|
|
4845
5891
|
"renderMode": "image",
|
|
4846
|
-
"isSearchable"
|
|
5892
|
+
"isSearchable": true
|
|
4847
5893
|
}
|
|
4848
5894
|
},
|
|
4849
5895
|
{
|
|
4850
5896
|
"type": "field",
|
|
4851
5897
|
"attrs": {
|
|
4852
5898
|
"name": "modelMetadata",
|
|
4853
|
-
"isSearchable"
|
|
5899
|
+
"isSearchable": true
|
|
4854
5900
|
}
|
|
4855
5901
|
},
|
|
4856
5902
|
{
|
|
4857
5903
|
"type": "field",
|
|
4858
5904
|
"attrs": {
|
|
4859
5905
|
"name": "mediaStorageProviderMetadata",
|
|
4860
|
-
"isSearchable"
|
|
5906
|
+
"isSearchable": true
|
|
4861
5907
|
}
|
|
4862
5908
|
},
|
|
4863
5909
|
{
|
|
4864
5910
|
"type": "field",
|
|
4865
5911
|
"attrs": {
|
|
4866
5912
|
"name": "fieldMetadata",
|
|
4867
|
-
"isSearchable"
|
|
5913
|
+
"isSearchable": true
|
|
4868
5914
|
}
|
|
4869
5915
|
}
|
|
4870
5916
|
]
|
|
@@ -4887,6 +5933,7 @@
|
|
|
4887
5933
|
"edit": true,
|
|
4888
5934
|
"delete": true,
|
|
4889
5935
|
"groupBy": "mimeType",
|
|
5936
|
+
"grouped": false,
|
|
4890
5937
|
"draggable": true,
|
|
4891
5938
|
"allowedViews": [
|
|
4892
5939
|
"list",
|
|
@@ -5073,266 +6120,266 @@
|
|
|
5073
6120
|
"type": "field",
|
|
5074
6121
|
"attrs": {
|
|
5075
6122
|
"name": "name",
|
|
5076
|
-
"isSearchable"
|
|
6123
|
+
"isSearchable": true
|
|
5077
6124
|
}
|
|
5078
6125
|
},
|
|
5079
6126
|
{
|
|
5080
6127
|
"type": "field",
|
|
5081
6128
|
"attrs": {
|
|
5082
6129
|
"name": "displayName",
|
|
5083
|
-
"isSearchable"
|
|
6130
|
+
"isSearchable": true
|
|
5084
6131
|
}
|
|
5085
6132
|
},
|
|
5086
6133
|
{
|
|
5087
6134
|
"type": "field",
|
|
5088
6135
|
"attrs": {
|
|
5089
6136
|
"name": "type",
|
|
5090
|
-
"isSearchable"
|
|
6137
|
+
"isSearchable": true
|
|
5091
6138
|
}
|
|
5092
6139
|
},
|
|
5093
6140
|
{
|
|
5094
6141
|
"type": "field",
|
|
5095
6142
|
"attrs": {
|
|
5096
6143
|
"name": "ormType",
|
|
5097
|
-
"isSearchable"
|
|
6144
|
+
"isSearchable": true
|
|
5098
6145
|
}
|
|
5099
6146
|
},
|
|
5100
6147
|
{
|
|
5101
6148
|
"type": "field",
|
|
5102
6149
|
"attrs": {
|
|
5103
6150
|
"name": "model",
|
|
5104
|
-
"isSearchable"
|
|
6151
|
+
"isSearchable": true
|
|
5105
6152
|
}
|
|
5106
6153
|
},
|
|
5107
6154
|
{
|
|
5108
6155
|
"type": "field",
|
|
5109
6156
|
"attrs": {
|
|
5110
6157
|
"name": "defaultValue",
|
|
5111
|
-
"isSearchable"
|
|
6158
|
+
"isSearchable": true
|
|
5112
6159
|
}
|
|
5113
6160
|
},
|
|
5114
6161
|
{
|
|
5115
6162
|
"type": "field",
|
|
5116
6163
|
"attrs": {
|
|
5117
6164
|
"name": "regexPattern",
|
|
5118
|
-
"isSearchable"
|
|
6165
|
+
"isSearchable": true
|
|
5119
6166
|
}
|
|
5120
6167
|
},
|
|
5121
6168
|
{
|
|
5122
6169
|
"type": "field",
|
|
5123
6170
|
"attrs": {
|
|
5124
6171
|
"name": "regexPatternNotMatchingErrorMsg",
|
|
5125
|
-
"isSearchable"
|
|
6172
|
+
"isSearchable": true
|
|
5126
6173
|
}
|
|
5127
6174
|
},
|
|
5128
6175
|
{
|
|
5129
6176
|
"type": "field",
|
|
5130
6177
|
"attrs": {
|
|
5131
6178
|
"name": "required",
|
|
5132
|
-
"isSearchable"
|
|
6179
|
+
"isSearchable": true
|
|
5133
6180
|
}
|
|
5134
6181
|
},
|
|
5135
6182
|
{
|
|
5136
6183
|
"type": "field",
|
|
5137
6184
|
"attrs": {
|
|
5138
6185
|
"name": "unique",
|
|
5139
|
-
"isSearchable"
|
|
6186
|
+
"isSearchable": true
|
|
5140
6187
|
}
|
|
5141
6188
|
},
|
|
5142
6189
|
{
|
|
5143
6190
|
"type": "field",
|
|
5144
6191
|
"attrs": {
|
|
5145
6192
|
"name": "encrypt",
|
|
5146
|
-
"isSearchable"
|
|
6193
|
+
"isSearchable": true
|
|
5147
6194
|
}
|
|
5148
6195
|
},
|
|
5149
6196
|
{
|
|
5150
6197
|
"type": "field",
|
|
5151
6198
|
"attrs": {
|
|
5152
6199
|
"name": "encryptionType",
|
|
5153
|
-
"isSearchable"
|
|
6200
|
+
"isSearchable": true
|
|
5154
6201
|
}
|
|
5155
6202
|
},
|
|
5156
6203
|
{
|
|
5157
6204
|
"type": "field",
|
|
5158
6205
|
"attrs": {
|
|
5159
6206
|
"name": "decryptWhen",
|
|
5160
|
-
"isSearchable"
|
|
6207
|
+
"isSearchable": true
|
|
5161
6208
|
}
|
|
5162
6209
|
},
|
|
5163
6210
|
{
|
|
5164
6211
|
"type": "field",
|
|
5165
6212
|
"attrs": {
|
|
5166
6213
|
"name": "index",
|
|
5167
|
-
"isSearchable"
|
|
6214
|
+
"isSearchable": true
|
|
5168
6215
|
}
|
|
5169
6216
|
},
|
|
5170
6217
|
{
|
|
5171
6218
|
"type": "field",
|
|
5172
6219
|
"attrs": {
|
|
5173
6220
|
"name": "length",
|
|
5174
|
-
"isSearchable"
|
|
6221
|
+
"isSearchable": true
|
|
5175
6222
|
}
|
|
5176
6223
|
},
|
|
5177
6224
|
{
|
|
5178
6225
|
"type": "field",
|
|
5179
6226
|
"attrs": {
|
|
5180
6227
|
"name": "max",
|
|
5181
|
-
"isSearchable"
|
|
6228
|
+
"isSearchable": true
|
|
5182
6229
|
}
|
|
5183
6230
|
},
|
|
5184
6231
|
{
|
|
5185
6232
|
"type": "field",
|
|
5186
6233
|
"attrs": {
|
|
5187
6234
|
"name": "min",
|
|
5188
|
-
"isSearchable"
|
|
6235
|
+
"isSearchable": true
|
|
5189
6236
|
}
|
|
5190
6237
|
},
|
|
5191
6238
|
{
|
|
5192
6239
|
"type": "field",
|
|
5193
6240
|
"attrs": {
|
|
5194
6241
|
"name": "private",
|
|
5195
|
-
"isSearchable"
|
|
6242
|
+
"isSearchable": true
|
|
5196
6243
|
}
|
|
5197
6244
|
},
|
|
5198
6245
|
{
|
|
5199
6246
|
"type": "field",
|
|
5200
6247
|
"attrs": {
|
|
5201
6248
|
"name": "mediaTypes",
|
|
5202
|
-
"isSearchable"
|
|
6249
|
+
"isSearchable": true
|
|
5203
6250
|
}
|
|
5204
6251
|
},
|
|
5205
6252
|
{
|
|
5206
6253
|
"type": "field",
|
|
5207
6254
|
"attrs": {
|
|
5208
6255
|
"name": "mediaMaxSizeKb",
|
|
5209
|
-
"isSearchable"
|
|
6256
|
+
"isSearchable": true
|
|
5210
6257
|
}
|
|
5211
6258
|
},
|
|
5212
6259
|
{
|
|
5213
6260
|
"type": "field",
|
|
5214
6261
|
"attrs": {
|
|
5215
6262
|
"name": "mediaStorageProvider",
|
|
5216
|
-
"isSearchable"
|
|
6263
|
+
"isSearchable": true
|
|
5217
6264
|
}
|
|
5218
6265
|
},
|
|
5219
6266
|
{
|
|
5220
6267
|
"type": "field",
|
|
5221
6268
|
"attrs": {
|
|
5222
6269
|
"name": "relationType",
|
|
5223
|
-
"isSearchable"
|
|
6270
|
+
"isSearchable": true
|
|
5224
6271
|
}
|
|
5225
6272
|
},
|
|
5226
6273
|
{
|
|
5227
6274
|
"type": "field",
|
|
5228
6275
|
"attrs": {
|
|
5229
6276
|
"name": "relationCoModelSingularName",
|
|
5230
|
-
"isSearchable"
|
|
6277
|
+
"isSearchable": true
|
|
5231
6278
|
}
|
|
5232
6279
|
},
|
|
5233
6280
|
{
|
|
5234
6281
|
"type": "field",
|
|
5235
6282
|
"attrs": {
|
|
5236
6283
|
"name": "relationCreateInverse",
|
|
5237
|
-
"isSearchable"
|
|
6284
|
+
"isSearchable": true
|
|
5238
6285
|
}
|
|
5239
6286
|
},
|
|
5240
6287
|
{
|
|
5241
6288
|
"type": "field",
|
|
5242
6289
|
"attrs": {
|
|
5243
6290
|
"name": "relationCascade",
|
|
5244
|
-
"isSearchable"
|
|
6291
|
+
"isSearchable": true
|
|
5245
6292
|
}
|
|
5246
6293
|
},
|
|
5247
6294
|
{
|
|
5248
6295
|
"type": "field",
|
|
5249
6296
|
"attrs": {
|
|
5250
6297
|
"name": "relationModelModuleName",
|
|
5251
|
-
"isSearchable"
|
|
6298
|
+
"isSearchable": true
|
|
5252
6299
|
}
|
|
5253
6300
|
},
|
|
5254
6301
|
{
|
|
5255
6302
|
"type": "field",
|
|
5256
6303
|
"attrs": {
|
|
5257
6304
|
"name": "relationCoModelFieldName",
|
|
5258
|
-
"isSearchable"
|
|
6305
|
+
"isSearchable": true
|
|
5259
6306
|
}
|
|
5260
6307
|
},
|
|
5261
6308
|
{
|
|
5262
6309
|
"type": "field",
|
|
5263
6310
|
"attrs": {
|
|
5264
6311
|
"name": "selectionDynamicProvider",
|
|
5265
|
-
"isSearchable"
|
|
6312
|
+
"isSearchable": true
|
|
5266
6313
|
}
|
|
5267
6314
|
},
|
|
5268
6315
|
{
|
|
5269
6316
|
"type": "field",
|
|
5270
6317
|
"attrs": {
|
|
5271
6318
|
"name": "selectionDynamicProviderCtxt",
|
|
5272
|
-
"isSearchable"
|
|
6319
|
+
"isSearchable": true
|
|
5273
6320
|
}
|
|
5274
6321
|
},
|
|
5275
6322
|
{
|
|
5276
6323
|
"type": "field",
|
|
5277
6324
|
"attrs": {
|
|
5278
6325
|
"name": "selectionStaticValues",
|
|
5279
|
-
"isSearchable"
|
|
6326
|
+
"isSearchable": true
|
|
5280
6327
|
}
|
|
5281
6328
|
},
|
|
5282
6329
|
{
|
|
5283
6330
|
"type": "field",
|
|
5284
6331
|
"attrs": {
|
|
5285
6332
|
"name": "selectionValueType",
|
|
5286
|
-
"isSearchable"
|
|
6333
|
+
"isSearchable": true
|
|
5287
6334
|
}
|
|
5288
6335
|
},
|
|
5289
6336
|
{
|
|
5290
6337
|
"type": "field",
|
|
5291
6338
|
"attrs": {
|
|
5292
6339
|
"name": "computedFieldValueProvider",
|
|
5293
|
-
"isSearchable"
|
|
6340
|
+
"isSearchable": true
|
|
5294
6341
|
}
|
|
5295
6342
|
},
|
|
5296
6343
|
{
|
|
5297
6344
|
"type": "field",
|
|
5298
6345
|
"attrs": {
|
|
5299
6346
|
"name": "computedFieldValueProviderCtxt",
|
|
5300
|
-
"isSearchable"
|
|
6347
|
+
"isSearchable": true
|
|
5301
6348
|
}
|
|
5302
6349
|
},
|
|
5303
6350
|
{
|
|
5304
6351
|
"type": "field",
|
|
5305
6352
|
"attrs": {
|
|
5306
6353
|
"name": "computedFieldValueType",
|
|
5307
|
-
"isSearchable"
|
|
6354
|
+
"isSearchable": true
|
|
5308
6355
|
}
|
|
5309
6356
|
},
|
|
5310
6357
|
{
|
|
5311
6358
|
"type": "field",
|
|
5312
6359
|
"attrs": {
|
|
5313
6360
|
"name": "uuid",
|
|
5314
|
-
"isSearchable"
|
|
6361
|
+
"isSearchable": true
|
|
5315
6362
|
}
|
|
5316
6363
|
},
|
|
5317
6364
|
{
|
|
5318
6365
|
"type": "field",
|
|
5319
6366
|
"attrs": {
|
|
5320
6367
|
"name": "isSystem",
|
|
5321
|
-
"isSearchable"
|
|
6368
|
+
"isSearchable": true
|
|
5322
6369
|
}
|
|
5323
6370
|
},
|
|
5324
6371
|
{
|
|
5325
6372
|
"type": "field",
|
|
5326
6373
|
"attrs": {
|
|
5327
6374
|
"name": "isMarkedForRemoval",
|
|
5328
|
-
"isSearchable"
|
|
6375
|
+
"isSearchable": true
|
|
5329
6376
|
}
|
|
5330
6377
|
},
|
|
5331
6378
|
{
|
|
5332
6379
|
"type": "field",
|
|
5333
6380
|
"attrs": {
|
|
5334
6381
|
"name": "columnName",
|
|
5335
|
-
"isSearchable"
|
|
6382
|
+
"isSearchable": true
|
|
5336
6383
|
}
|
|
5337
6384
|
}
|
|
5338
6385
|
]
|
|
@@ -5628,35 +6675,35 @@
|
|
|
5628
6675
|
"type": "field",
|
|
5629
6676
|
"attrs": {
|
|
5630
6677
|
"name": "username",
|
|
5631
|
-
"isSearchable"
|
|
6678
|
+
"isSearchable": true
|
|
5632
6679
|
}
|
|
5633
6680
|
},
|
|
5634
6681
|
{
|
|
5635
6682
|
"type": "field",
|
|
5636
6683
|
"attrs": {
|
|
5637
6684
|
"name": "email",
|
|
5638
|
-
"isSearchable"
|
|
6685
|
+
"isSearchable": true
|
|
5639
6686
|
}
|
|
5640
6687
|
},
|
|
5641
6688
|
{
|
|
5642
6689
|
"type": "field",
|
|
5643
6690
|
"attrs": {
|
|
5644
6691
|
"name": "mobile",
|
|
5645
|
-
"isSearchable"
|
|
6692
|
+
"isSearchable": true
|
|
5646
6693
|
}
|
|
5647
6694
|
},
|
|
5648
6695
|
{
|
|
5649
6696
|
"type": "field",
|
|
5650
6697
|
"attrs": {
|
|
5651
6698
|
"name": "lastLoginProvider",
|
|
5652
|
-
"isSearchable"
|
|
6699
|
+
"isSearchable": true
|
|
5653
6700
|
}
|
|
5654
6701
|
},
|
|
5655
6702
|
{
|
|
5656
6703
|
"type": "field",
|
|
5657
6704
|
"attrs": {
|
|
5658
6705
|
"name": "active",
|
|
5659
|
-
"isSearchable"
|
|
6706
|
+
"isSearchable": true
|
|
5660
6707
|
}
|
|
5661
6708
|
}
|
|
5662
6709
|
]
|
|
@@ -5886,7 +6933,7 @@
|
|
|
5886
6933
|
"type": "field",
|
|
5887
6934
|
"attrs": {
|
|
5888
6935
|
"name": "name",
|
|
5889
|
-
"isSearchable"
|
|
6936
|
+
"isSearchable": true
|
|
5890
6937
|
}
|
|
5891
6938
|
}
|
|
5892
6939
|
]
|
|
@@ -5962,14 +7009,14 @@
|
|
|
5962
7009
|
"type": "field",
|
|
5963
7010
|
"attrs": {
|
|
5964
7011
|
"name": "name",
|
|
5965
|
-
"isSearchable"
|
|
7012
|
+
"isSearchable": true
|
|
5966
7013
|
}
|
|
5967
7014
|
},
|
|
5968
7015
|
{
|
|
5969
7016
|
"type": "field",
|
|
5970
7017
|
"attrs": {
|
|
5971
7018
|
"name": "permissions",
|
|
5972
|
-
"isSearchable"
|
|
7019
|
+
"isSearchable": true,
|
|
5973
7020
|
"renderMode": "checkbox",
|
|
5974
7021
|
"inlineCreate": "true"
|
|
5975
7022
|
}
|
|
@@ -5978,14 +7025,14 @@
|
|
|
5978
7025
|
"type": "field",
|
|
5979
7026
|
"attrs": {
|
|
5980
7027
|
"name": "users",
|
|
5981
|
-
"isSearchable"
|
|
7028
|
+
"isSearchable": true
|
|
5982
7029
|
}
|
|
5983
7030
|
},
|
|
5984
7031
|
{
|
|
5985
7032
|
"type": "field",
|
|
5986
7033
|
"attrs": {
|
|
5987
7034
|
"name": "menuItems",
|
|
5988
|
-
"isSearchable"
|
|
7035
|
+
"isSearchable": true
|
|
5989
7036
|
}
|
|
5990
7037
|
}
|
|
5991
7038
|
]
|
|
@@ -6156,49 +7203,49 @@
|
|
|
6156
7203
|
"type": "field",
|
|
6157
7204
|
"attrs": {
|
|
6158
7205
|
"name": "messageId",
|
|
6159
|
-
"isSearchable"
|
|
7206
|
+
"isSearchable": true
|
|
6160
7207
|
}
|
|
6161
7208
|
},
|
|
6162
7209
|
{
|
|
6163
7210
|
"type": "field",
|
|
6164
7211
|
"attrs": {
|
|
6165
7212
|
"name": "stage",
|
|
6166
|
-
"isSearchable"
|
|
7213
|
+
"isSearchable": true
|
|
6167
7214
|
}
|
|
6168
7215
|
},
|
|
6169
7216
|
{
|
|
6170
7217
|
"type": "field",
|
|
6171
7218
|
"attrs": {
|
|
6172
7219
|
"name": "startedAt",
|
|
6173
|
-
"isSearchable"
|
|
7220
|
+
"isSearchable": true
|
|
6174
7221
|
}
|
|
6175
7222
|
},
|
|
6176
7223
|
{
|
|
6177
7224
|
"type": "field",
|
|
6178
7225
|
"attrs": {
|
|
6179
7226
|
"name": "finishedAt",
|
|
6180
|
-
"isSearchable"
|
|
7227
|
+
"isSearchable": true
|
|
6181
7228
|
}
|
|
6182
7229
|
},
|
|
6183
7230
|
{
|
|
6184
7231
|
"type": "field",
|
|
6185
7232
|
"attrs": {
|
|
6186
7233
|
"name": "elapsedMillis",
|
|
6187
|
-
"isSearchable"
|
|
7234
|
+
"isSearchable": true
|
|
6188
7235
|
}
|
|
6189
7236
|
},
|
|
6190
7237
|
{
|
|
6191
7238
|
"type": "field",
|
|
6192
7239
|
"attrs": {
|
|
6193
7240
|
"name": "parentEntityId",
|
|
6194
|
-
"isSearchable"
|
|
7241
|
+
"isSearchable": true
|
|
6195
7242
|
}
|
|
6196
7243
|
},
|
|
6197
7244
|
{
|
|
6198
7245
|
"type": "field",
|
|
6199
7246
|
"attrs": {
|
|
6200
7247
|
"name": "parentEntity",
|
|
6201
|
-
"isSearchable"
|
|
7248
|
+
"isSearchable": true
|
|
6202
7249
|
}
|
|
6203
7250
|
},
|
|
6204
7251
|
{
|
|
@@ -6206,7 +7253,7 @@
|
|
|
6206
7253
|
"attrs": {
|
|
6207
7254
|
"name": "mqMessageQueue",
|
|
6208
7255
|
"label": "Queue",
|
|
6209
|
-
"isSearchable"
|
|
7256
|
+
"isSearchable": true
|
|
6210
7257
|
}
|
|
6211
7258
|
}
|
|
6212
7259
|
]
|
|
@@ -6368,7 +7415,7 @@
|
|
|
6368
7415
|
"attrs": {
|
|
6369
7416
|
"name": "name",
|
|
6370
7417
|
"label": "Queue Name",
|
|
6371
|
-
"isSearchable"
|
|
7418
|
+
"isSearchable": true
|
|
6372
7419
|
}
|
|
6373
7420
|
}
|
|
6374
7421
|
]
|
|
@@ -6565,49 +7612,49 @@
|
|
|
6565
7612
|
"type": "field",
|
|
6566
7613
|
"attrs": {
|
|
6567
7614
|
"name": "messageId",
|
|
6568
|
-
"isSearchable"
|
|
7615
|
+
"isSearchable": true
|
|
6569
7616
|
}
|
|
6570
7617
|
},
|
|
6571
7618
|
{
|
|
6572
7619
|
"type": "field",
|
|
6573
7620
|
"attrs": {
|
|
6574
7621
|
"name": "stage",
|
|
6575
|
-
"isSearchable"
|
|
7622
|
+
"isSearchable": true
|
|
6576
7623
|
}
|
|
6577
7624
|
},
|
|
6578
7625
|
{
|
|
6579
7626
|
"type": "field",
|
|
6580
7627
|
"attrs": {
|
|
6581
7628
|
"name": "startedAt",
|
|
6582
|
-
"isSearchable"
|
|
7629
|
+
"isSearchable": true
|
|
6583
7630
|
}
|
|
6584
7631
|
},
|
|
6585
7632
|
{
|
|
6586
7633
|
"type": "field",
|
|
6587
7634
|
"attrs": {
|
|
6588
7635
|
"name": "finishedAt",
|
|
6589
|
-
"isSearchable"
|
|
7636
|
+
"isSearchable": true
|
|
6590
7637
|
}
|
|
6591
7638
|
},
|
|
6592
7639
|
{
|
|
6593
7640
|
"type": "field",
|
|
6594
7641
|
"attrs": {
|
|
6595
7642
|
"name": "elapsedMillis",
|
|
6596
|
-
"isSearchable"
|
|
7643
|
+
"isSearchable": true
|
|
6597
7644
|
}
|
|
6598
7645
|
},
|
|
6599
7646
|
{
|
|
6600
7647
|
"type": "field",
|
|
6601
7648
|
"attrs": {
|
|
6602
7649
|
"name": "parentEntityId",
|
|
6603
|
-
"isSearchable"
|
|
7650
|
+
"isSearchable": true
|
|
6604
7651
|
}
|
|
6605
7652
|
},
|
|
6606
7653
|
{
|
|
6607
7654
|
"type": "field",
|
|
6608
7655
|
"attrs": {
|
|
6609
7656
|
"name": "parentEntity",
|
|
6610
|
-
"isSearchable"
|
|
7657
|
+
"isSearchable": true
|
|
6611
7658
|
}
|
|
6612
7659
|
},
|
|
6613
7660
|
{
|
|
@@ -6615,7 +7662,7 @@
|
|
|
6615
7662
|
"attrs": {
|
|
6616
7663
|
"name": "mqMessageQueue",
|
|
6617
7664
|
"label": "Queue",
|
|
6618
|
-
"isSearchable"
|
|
7665
|
+
"isSearchable": true
|
|
6619
7666
|
}
|
|
6620
7667
|
}
|
|
6621
7668
|
]
|
|
@@ -6656,7 +7703,7 @@
|
|
|
6656
7703
|
"attrs": {
|
|
6657
7704
|
"name": "appTitle",
|
|
6658
7705
|
"label": "App Name",
|
|
6659
|
-
"isSearchable"
|
|
7706
|
+
"isSearchable": true
|
|
6660
7707
|
}
|
|
6661
7708
|
}
|
|
6662
7709
|
]
|
|
@@ -6834,7 +7881,7 @@
|
|
|
6834
7881
|
"filterable": true
|
|
6835
7882
|
}
|
|
6836
7883
|
},
|
|
6837
|
-
|
|
7884
|
+
{
|
|
6838
7885
|
"type": "field",
|
|
6839
7886
|
"attrs": {
|
|
6840
7887
|
"name": "name",
|
|
@@ -6844,7 +7891,7 @@
|
|
|
6844
7891
|
}
|
|
6845
7892
|
}
|
|
6846
7893
|
]
|
|
6847
|
-
|
|
7894
|
+
}
|
|
6848
7895
|
},
|
|
6849
7896
|
{
|
|
6850
7897
|
"name": "securityRule-form-view",
|
|
@@ -6853,85 +7900,84 @@
|
|
|
6853
7900
|
"context": "{}",
|
|
6854
7901
|
"moduleUserKey": "solid-core",
|
|
6855
7902
|
"modelUserKey": "securityRule",
|
|
6856
|
-
"layout":{
|
|
7903
|
+
"layout": {
|
|
6857
7904
|
"type": "form",
|
|
6858
7905
|
"attrs": {
|
|
6859
|
-
|
|
6860
|
-
|
|
6861
|
-
|
|
7906
|
+
"name": "form-1",
|
|
7907
|
+
"label": "Security rules",
|
|
7908
|
+
"className": "grid"
|
|
6862
7909
|
},
|
|
6863
7910
|
"children": [
|
|
6864
|
-
|
|
6865
|
-
|
|
6866
|
-
|
|
6867
|
-
|
|
6868
|
-
|
|
6869
|
-
|
|
6870
|
-
|
|
6871
|
-
|
|
7911
|
+
{
|
|
7912
|
+
"type": "sheet",
|
|
7913
|
+
"attrs": {
|
|
7914
|
+
"name": "sheet-1"
|
|
7915
|
+
},
|
|
7916
|
+
"children": [
|
|
7917
|
+
{
|
|
7918
|
+
"type": "row",
|
|
7919
|
+
"attrs": {
|
|
7920
|
+
"name": "group-1",
|
|
7921
|
+
"label": "",
|
|
7922
|
+
"className": ""
|
|
7923
|
+
},
|
|
7924
|
+
"children": [
|
|
7925
|
+
{
|
|
7926
|
+
"type": "column",
|
|
6872
7927
|
"attrs": {
|
|
6873
|
-
|
|
6874
|
-
|
|
6875
|
-
|
|
7928
|
+
"name": "group-1",
|
|
7929
|
+
"label": "",
|
|
7930
|
+
"className": "col-6"
|
|
6876
7931
|
},
|
|
6877
|
-
|
|
6878
|
-
|
|
6879
|
-
|
|
6880
|
-
|
|
6881
|
-
|
|
6882
|
-
|
|
6883
|
-
|
|
6884
|
-
|
|
6885
|
-
|
|
6886
|
-
|
|
6887
|
-
|
|
6888
|
-
|
|
6889
|
-
|
|
6890
|
-
|
|
6891
|
-
|
|
6892
|
-
|
|
6893
|
-
|
|
6894
|
-
|
|
6895
|
-
|
|
6896
|
-
|
|
6897
|
-
|
|
6898
|
-
|
|
6899
|
-
|
|
6900
|
-
|
|
6901
|
-
|
|
6902
|
-
|
|
6903
|
-
|
|
6904
|
-
|
|
6905
|
-
|
|
6906
|
-
|
|
6907
|
-
|
|
6908
|
-
|
|
6909
|
-
"
|
|
6910
|
-
|
|
6911
|
-
|
|
6912
|
-
|
|
6913
|
-
|
|
6914
|
-
|
|
6915
|
-
|
|
6916
|
-
|
|
6917
|
-
|
|
6918
|
-
"name": "role"
|
|
6919
|
-
}
|
|
6920
|
-
},
|
|
6921
|
-
{
|
|
6922
|
-
"type": "field",
|
|
6923
|
-
"attrs": {
|
|
6924
|
-
"name": "modelMetadata"
|
|
6925
|
-
}
|
|
6926
|
-
}
|
|
6927
|
-
]
|
|
6928
|
-
}
|
|
7932
|
+
"children": [
|
|
7933
|
+
{
|
|
7934
|
+
"type": "field",
|
|
7935
|
+
"attrs": {
|
|
7936
|
+
"name": "name"
|
|
7937
|
+
}
|
|
7938
|
+
},
|
|
7939
|
+
{
|
|
7940
|
+
"type": "field",
|
|
7941
|
+
"attrs": {
|
|
7942
|
+
"name": "description"
|
|
7943
|
+
}
|
|
7944
|
+
},
|
|
7945
|
+
{
|
|
7946
|
+
"type": "field",
|
|
7947
|
+
"attrs": {
|
|
7948
|
+
"name": "securityRuleConfig"
|
|
7949
|
+
}
|
|
7950
|
+
}
|
|
7951
|
+
]
|
|
7952
|
+
},
|
|
7953
|
+
{
|
|
7954
|
+
"type": "column",
|
|
7955
|
+
"attrs": {
|
|
7956
|
+
"name": "group-2",
|
|
7957
|
+
"label": "",
|
|
7958
|
+
"className": "col-6"
|
|
7959
|
+
},
|
|
7960
|
+
"children": [
|
|
7961
|
+
{
|
|
7962
|
+
"type": "field",
|
|
7963
|
+
"attrs": {
|
|
7964
|
+
"name": "role"
|
|
7965
|
+
}
|
|
7966
|
+
},
|
|
7967
|
+
{
|
|
7968
|
+
"type": "field",
|
|
7969
|
+
"attrs": {
|
|
7970
|
+
"name": "modelMetadata"
|
|
7971
|
+
}
|
|
7972
|
+
}
|
|
6929
7973
|
]
|
|
6930
|
-
|
|
6931
|
-
|
|
6932
|
-
|
|
7974
|
+
}
|
|
7975
|
+
]
|
|
7976
|
+
}
|
|
7977
|
+
]
|
|
7978
|
+
}
|
|
6933
7979
|
]
|
|
6934
|
-
|
|
7980
|
+
}
|
|
6935
7981
|
},
|
|
6936
7982
|
{
|
|
6937
7983
|
"name": "email-list-view",
|
|
@@ -7265,5 +8311,15 @@
|
|
|
7265
8311
|
"type": "filesystem"
|
|
7266
8312
|
}
|
|
7267
8313
|
],
|
|
7268
|
-
"checksums": []
|
|
8314
|
+
"checksums": [],
|
|
8315
|
+
"listOfValues": [
|
|
8316
|
+
{
|
|
8317
|
+
"type": "industry",
|
|
8318
|
+
"value": "IT",
|
|
8319
|
+
"display": "IT",
|
|
8320
|
+
"description": "Insdustry It list of value",
|
|
8321
|
+
"default": true,
|
|
8322
|
+
"sequence": 1
|
|
8323
|
+
}
|
|
8324
|
+
]
|
|
7269
8325
|
}
|