codeapp-js 0.1.0 → 0.2.1

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.
Files changed (69) hide show
  1. package/codeApp/dist/codeapp.js +326 -72
  2. package/codeApp/dist/icon-512.png +0 -0
  3. package/codeApp/dist/index.html +1 -0
  4. package/codeApp/dist/index.js +1 -1
  5. package/codeApp/dist/power-apps-data.js +2952 -2531
  6. package/codeApp/power.config.json +1 -1
  7. package/dev files/customConnector.js +98 -0
  8. package/dev files/dataverse.js +33 -7
  9. package/dev files/environmentVar.js +1 -1
  10. package/dev files/office365groups.js +1 -1
  11. package/dev files/office365users.js +1 -1
  12. package/dev files/outlook.js +1 -1
  13. package/dev files/power-apps-data.js +2952 -0
  14. package/dev files/sharepoint.js +1 -1
  15. package/examples/combined demo/dist/codeapp.js +1098 -0
  16. package/examples/combined demo/dist/index.js +470 -515
  17. package/examples/combined demo/dist/power-apps-data.js +3007 -2531
  18. package/examples/dataverse Demo/dist/codeapp.js +1085 -0
  19. package/examples/dataverse Demo/dist/index.js +38 -26
  20. package/examples/dataverse Demo/dist/power-apps-data.js +2912 -2531
  21. package/examples/groups Demo/dist/codeapp.js +1085 -0
  22. package/examples/groups Demo/dist/index.js +113 -113
  23. package/examples/groups Demo/dist/power-apps-data.js +2912 -2531
  24. package/examples/groups Demo/power.config.json +3 -2
  25. package/examples/kanban/dist/power-apps-data.js +2953 -2531
  26. package/examples/myProfile/dist/power-apps-data.js +2953 -2531
  27. package/examples/outlook Demo/dist/codeapp.js +1085 -0
  28. package/examples/outlook Demo/dist/index.js +39 -35
  29. package/examples/outlook Demo/dist/power-apps-data.js +2912 -2531
  30. package/examples/planning Poker/dist/power-apps-data.js +2953 -2531
  31. package/examples/sharePoint Demo/dist/codeapp.js +1085 -0
  32. package/examples/sharePoint Demo/dist/index.js +262 -269
  33. package/examples/sharePoint Demo/dist/power-apps-data.js +2912 -2531
  34. package/examples/solution explorer/agent/decision-log.md +27 -0
  35. package/examples/solution explorer/agent/mockup-01-swiss-grid.html +452 -0
  36. package/examples/solution explorer/agent/mockup-02-dark-glass.html +496 -0
  37. package/examples/solution explorer/agent/mockup-03-paper-console.html +510 -0
  38. package/examples/solution explorer/agent/mockup-04-neon-noir.html +546 -0
  39. package/examples/solution explorer/agent/mockup-05-zen-garden.html +534 -0
  40. package/examples/solution explorer/dist/codeapp.js +1098 -0
  41. package/examples/solution explorer/dist/icon-512.png +0 -0
  42. package/examples/solution explorer/dist/index.html +80 -0
  43. package/examples/solution explorer/dist/index.js +735 -0
  44. package/examples/solution explorer/dist/power-apps-data.js +3007 -0
  45. package/examples/solution explorer/dist/styles.css +571 -0
  46. package/examples/solution explorer/power.config.json +151 -0
  47. package/examples/todo/dist/power-apps-data.js +2953 -2531
  48. package/package.json +1 -8
  49. package/.github/instructions/wyattdave.instructions.md +0 -39
  50. package/examples/combined demo/dist/dataverse.js +0 -86
  51. package/examples/combined demo/dist/environmentVar.js +0 -55
  52. package/examples/combined demo/dist/office365groups.js +0 -97
  53. package/examples/combined demo/dist/office365users.js +0 -169
  54. package/examples/combined demo/dist/outlook.js +0 -162
  55. package/examples/combined demo/dist/sharepoint.js +0 -339
  56. package/examples/dataverse Demo/dist/dataverse.js +0 -86
  57. package/examples/groups Demo/dist/dataverse.js +0 -86
  58. package/examples/groups Demo/dist/environmentVar.js +0 -55
  59. package/examples/groups Demo/dist/office365groups.js +0 -97
  60. package/examples/groups Demo/dist/office365users.js +0 -169
  61. package/examples/groups Demo/dist/outlook.js +0 -162
  62. package/examples/groups Demo/dist/sharepoint.js +0 -339
  63. package/examples/sharePoint Demo/dist/dataverse.js +0 -94
  64. package/examples/sharePoint Demo/dist/environmentVar.js +0 -55
  65. package/examples/sharePoint Demo/dist/office365groups.js +0 -97
  66. package/examples/sharePoint Demo/dist/office365users.js +0 -169
  67. package/examples/sharePoint Demo/dist/outlook.js +0 -162
  68. package/examples/sharePoint Demo/dist/sharepoint.js +0 -339
  69. package/scripts/build-power-sdk.mjs +0 -69
@@ -0,0 +1,571 @@
1
+ :root {
2
+ --bg: #fafaf8;
3
+ --ink: #0d0d0d;
4
+ --muted: #7a7a72;
5
+ --red: #e03c31;
6
+ --red-soft: rgba(224,60,49,0.08);
7
+ --line: #d4d4cc;
8
+ --card: #ffffff;
9
+ --shadow: 0 1px 3px rgba(0,0,0,0.06);
10
+ --radius: 2px;
11
+ }
12
+ * { box-sizing: border-box; margin: 0; padding: 0; }
13
+ body {
14
+ min-height: 100vh;
15
+ font-family: 'DM Mono', monospace;
16
+ color: var(--ink);
17
+ background: var(--bg);
18
+ line-height: 1.5;
19
+ }
20
+
21
+ /* ── Top Bar ─────────────────────────────── */
22
+ .topbar {
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ padding: 16px 40px;
27
+ border-bottom: 3px solid var(--ink);
28
+ }
29
+ .topbar h1 {
30
+ font-size: 1.4rem;
31
+ font-weight: 400;
32
+ letter-spacing: 0.02em;
33
+ }
34
+ .topbar .env-badge {
35
+ font-size: 0.7rem;
36
+ text-transform: uppercase;
37
+ letter-spacing: 0.2em;
38
+ color: var(--muted);
39
+ border: 1px solid var(--line);
40
+ padding: 4px 12px;
41
+ }
42
+
43
+ /* ── Layout ──────────────────────────────── */
44
+ .shell {
45
+ display: grid;
46
+ grid-template-columns: 380px 1fr;
47
+ min-height: calc(100vh - 56px);
48
+ }
49
+
50
+ /* ── Solutions Panel ─────────────────────── */
51
+ .sol-panel {
52
+ border-right: 3px solid var(--ink);
53
+ overflow-y: auto;
54
+ }
55
+ .sol-header {
56
+ padding: 24px 28px 12px;
57
+ font-size: 0.65rem;
58
+ text-transform: uppercase;
59
+ letter-spacing: 0.3em;
60
+ color: var(--muted);
61
+ border-bottom: 1px solid var(--line);
62
+ }
63
+ .sol-count {
64
+ float: right;
65
+ color: var(--red);
66
+ font-weight: 500;
67
+ }
68
+ .sol-search {
69
+ padding: 12px 28px;
70
+ border-bottom: 1px solid var(--line);
71
+ display: flex;
72
+ gap: 8px;
73
+ }
74
+ .sol-search input {
75
+ flex: 1;
76
+ font-family: 'DM Mono', monospace;
77
+ font-size: 0.8rem;
78
+ border: 1px solid var(--line);
79
+ padding: 8px 12px;
80
+ background: var(--bg);
81
+ outline: none;
82
+ transition: border 0.2s;
83
+ }
84
+ .sol-search input:focus { border-color: var(--red); }
85
+ .sol-search select {
86
+ font-family: 'DM Mono', monospace;
87
+ font-size: 0.75rem;
88
+ border: 1px solid var(--line);
89
+ padding: 8px 10px;
90
+ background: var(--bg);
91
+ color: var(--ink);
92
+ outline: none;
93
+ cursor: pointer;
94
+ transition: border 0.2s;
95
+ }
96
+ .sol-search select:focus { border-color: var(--red); }
97
+
98
+ .sol-item {
99
+ display: grid;
100
+ grid-template-columns: 6px 1fr auto;
101
+ align-items: start;
102
+ padding: 16px 28px;
103
+ border-bottom: 1px solid var(--line);
104
+ cursor: pointer;
105
+ transition: background 0.15s;
106
+ gap: 14px;
107
+ }
108
+ .sol-item:hover { background: var(--red-soft); }
109
+ .sol-item.active {
110
+ background: var(--ink);
111
+ color: #fff;
112
+ }
113
+ .sol-item.active .sol-version,
114
+ .sol-item.active .sol-managed,
115
+ .sol-item.active .sol-modified { color: rgba(255,255,255,0.55); }
116
+ .sol-indicator {
117
+ width: 6px;
118
+ height: 6px;
119
+ margin-top: 6px;
120
+ border-radius: 50%;
121
+ background: var(--red);
122
+ }
123
+ .sol-item.managed .sol-indicator { background: var(--muted); }
124
+ .sol-name {
125
+ font-size: 0.82rem;
126
+ font-weight: 500;
127
+ line-height: 1.3;
128
+ }
129
+ .sol-version {
130
+ font-size: 0.65rem;
131
+ color: var(--muted);
132
+ margin-top: 2px;
133
+ }
134
+ .sol-managed {
135
+ font-size: 0.6rem;
136
+ text-transform: uppercase;
137
+ letter-spacing: 0.15em;
138
+ color: var(--muted);
139
+ text-align: right;
140
+ }
141
+ .sol-modified {
142
+ font-size: 0.6rem;
143
+ color: var(--muted);
144
+ text-align: right;
145
+ margin-top: 2px;
146
+ }
147
+
148
+ /* ── Detail Panel ────────────────────────── */
149
+ .detail-panel {
150
+ overflow-y: auto;
151
+ }
152
+ .detail-empty {
153
+ display: flex;
154
+ align-items: center;
155
+ justify-content: center;
156
+ height: 100%;
157
+ font-size: 1.6rem;
158
+ color: var(--line);
159
+ }
160
+ .detail-header {
161
+ padding: 32px 40px 24px;
162
+ border-bottom: 1px solid var(--line);
163
+ }
164
+ .detail-header h2 {
165
+ font-size: 2.2rem;
166
+ font-weight: 400;
167
+ line-height: 1.1;
168
+ }
169
+ .detail-meta {
170
+ display: flex;
171
+ gap: 28px;
172
+ margin-top: 12px;
173
+ font-size: 0.7rem;
174
+ color: var(--muted);
175
+ }
176
+ .detail-meta span { letter-spacing: 0.04em; }
177
+ .detail-meta b {
178
+ color: var(--ink);
179
+ font-weight: 500;
180
+ }
181
+ .detail-desc {
182
+ padding: 20px 40px;
183
+ font-size: 0.78rem;
184
+ color: var(--muted);
185
+ border-bottom: 1px solid var(--line);
186
+ line-height: 1.7;
187
+ }
188
+
189
+ /* ── Component Grid ──────────────────────── */
190
+ .comp-bar {
191
+ display: flex;
192
+ align-items: center;
193
+ justify-content: space-between;
194
+ padding: 16px 40px;
195
+ border-bottom: 1px solid var(--line);
196
+ font-size: 0.65rem;
197
+ text-transform: uppercase;
198
+ letter-spacing: 0.25em;
199
+ color: var(--muted);
200
+ }
201
+ .comp-bar .comp-total { color: var(--red); font-weight: 500; }
202
+
203
+ .comp-groups {
204
+ padding: 0 40px 40px;
205
+ }
206
+ .comp-group {
207
+ margin-top: 28px;
208
+ }
209
+ .comp-group-title {
210
+ font-size: 0.65rem;
211
+ text-transform: uppercase;
212
+ letter-spacing: 0.25em;
213
+ color: var(--red);
214
+ padding-bottom: 8px;
215
+ border-bottom: 2px solid var(--ink);
216
+ margin-bottom: 10px;
217
+ }
218
+ .comp-row {
219
+ display: grid;
220
+ grid-template-columns: 1fr auto;
221
+ padding: 8px 0;
222
+ border-bottom: 1px solid var(--line);
223
+ font-size: 0.78rem;
224
+ align-items: center;
225
+ }
226
+ .comp-row:last-child { border-bottom: none; }
227
+ .comp-row-name { font-weight: 400; }
228
+ .comp-row-id {
229
+ font-size: 0.62rem;
230
+ color: var(--muted);
231
+ font-family: 'DM Mono', monospace;
232
+ }
233
+
234
+ /* ── Loading / Error ─────────────────────── */
235
+ .loading-msg {
236
+ padding: 32px 28px;
237
+ text-align: center;
238
+ font-size: 0.78rem;
239
+ color: var(--muted);
240
+ }
241
+ .error-msg {
242
+ padding: 32px 28px;
243
+ text-align: center;
244
+ font-size: 0.78rem;
245
+ color: var(--red);
246
+ }
247
+
248
+ /* ── Animations ──────────────────────────── */
249
+ .sol-item { animation: slideIn 0.25s ease both; }
250
+ .comp-group { animation: fadeUp 0.3s ease both; }
251
+ @keyframes slideIn {
252
+ from { opacity: 0; transform: translateX(-12px); }
253
+ to { opacity: 1; transform: translateX(0); }
254
+ }
255
+ @keyframes fadeUp {
256
+ from { opacity: 0; transform: translateY(8px); }
257
+ to { opacity: 1; transform: translateY(0); }
258
+ }
259
+
260
+
261
+ /* ── Share Modal ─────────────────────────── */
262
+ .share-backdrop {
263
+ position: fixed;
264
+ inset: 0;
265
+ z-index: 9000;
266
+ background: rgba(13, 13, 13, 0.45);
267
+ backdrop-filter: blur(4px);
268
+ display: none;
269
+ align-items: center;
270
+ justify-content: center;
271
+ animation: shareBackdropIn 0.2s ease;
272
+ }
273
+ .share-backdrop.open {
274
+ display: flex;
275
+ }
276
+ @keyframes shareBackdropIn {
277
+ from { opacity: 0; }
278
+ to { opacity: 1; }
279
+ }
280
+
281
+ .share-modal {
282
+ background: var(--card);
283
+ border: 3px solid var(--ink);
284
+ width: 480px;
285
+ max-width: 94vw;
286
+ max-height: 80vh;
287
+ display: flex;
288
+ flex-direction: column;
289
+ animation: shareModalIn 0.25s ease;
290
+ }
291
+ @keyframes shareModalIn {
292
+ from { opacity: 0; transform: translateY(16px) scale(0.97); }
293
+ to { opacity: 1; transform: translateY(0) scale(1); }
294
+ }
295
+
296
+ .share-modal-header {
297
+ display: flex;
298
+ align-items: center;
299
+ justify-content: space-between;
300
+ padding: 18px 24px 14px;
301
+ border-bottom: 2px solid var(--ink);
302
+ }
303
+ .share-modal-header h3 {
304
+ font-size: 1rem;
305
+ font-weight: 500;
306
+ letter-spacing: 0.02em;
307
+ }
308
+ .share-close-btn {
309
+ background: none;
310
+ border: none;
311
+ font-size: 1.4rem;
312
+ cursor: pointer;
313
+ color: var(--muted);
314
+ line-height: 1;
315
+ transition: color 0.15s;
316
+ }
317
+ .share-close-btn:hover { color: var(--red); }
318
+
319
+ /* Tabs */
320
+ .share-tabs {
321
+ display: flex;
322
+ border-bottom: 1px solid var(--line);
323
+ }
324
+ .share-tab {
325
+ flex: 1;
326
+ padding: 10px 0;
327
+ font-family: 'DM Mono', monospace;
328
+ font-size: 0.72rem;
329
+ text-transform: uppercase;
330
+ letter-spacing: 0.2em;
331
+ background: none;
332
+ border: none;
333
+ border-bottom: 2px solid transparent;
334
+ color: var(--muted);
335
+ cursor: pointer;
336
+ transition: color 0.15s, border-color 0.15s;
337
+ }
338
+ .share-tab:hover { color: var(--ink); }
339
+ .share-tab.active {
340
+ color: var(--red);
341
+ border-bottom-color: var(--red);
342
+ }
343
+
344
+ /* Body */
345
+ .share-body {
346
+ flex: 1;
347
+ overflow-y: auto;
348
+ padding: 16px 24px;
349
+ }
350
+ .share-search-row {
351
+ margin-bottom: 12px;
352
+ }
353
+ .share-search-input {
354
+ width: 100%;
355
+ font-family: 'DM Mono', monospace;
356
+ font-size: 0.8rem;
357
+ border: 1px solid var(--line);
358
+ padding: 10px 14px;
359
+ background: var(--bg);
360
+ outline: none;
361
+ transition: border 0.2s;
362
+ }
363
+ .share-search-input:focus { border-color: var(--red); }
364
+
365
+ /* Results */
366
+ .share-results {
367
+ min-height: 80px;
368
+ max-height: 220px;
369
+ overflow-y: auto;
370
+ border: 1px solid var(--line);
371
+ background: var(--bg);
372
+ }
373
+ .share-empty-msg {
374
+ padding: 24px 16px;
375
+ text-align: center;
376
+ font-size: 0.75rem;
377
+ color: var(--muted);
378
+ }
379
+ .share-result-item {
380
+ display: flex;
381
+ align-items: center;
382
+ gap: 12px;
383
+ padding: 10px 14px;
384
+ border-bottom: 1px solid var(--line);
385
+ cursor: pointer;
386
+ transition: background 0.12s;
387
+ font-size: 0.78rem;
388
+ }
389
+ .share-result-item:last-child { border-bottom: none; }
390
+ .share-result-item:hover { background: var(--red-soft); }
391
+ .share-result-item.selected { background: var(--red-soft); }
392
+
393
+ .share-result-avatar {
394
+ width: 30px;
395
+ height: 30px;
396
+ border-radius: 50%;
397
+ background: var(--line);
398
+ display: flex;
399
+ align-items: center;
400
+ justify-content: center;
401
+ font-size: 0.6rem;
402
+ font-weight: 500;
403
+ color: var(--muted);
404
+ flex-shrink: 0;
405
+ text-transform: uppercase;
406
+ letter-spacing: 0.05em;
407
+ }
408
+ .share-result-avatar.team-avatar {
409
+ border-radius: 4px;
410
+ background: var(--ink);
411
+ color: #fff;
412
+ }
413
+ .share-result-info {
414
+ flex: 1;
415
+ min-width: 0;
416
+ }
417
+ .share-result-name {
418
+ font-weight: 500;
419
+ white-space: nowrap;
420
+ overflow: hidden;
421
+ text-overflow: ellipsis;
422
+ }
423
+ .share-result-detail {
424
+ font-size: 0.62rem;
425
+ color: var(--muted);
426
+ white-space: nowrap;
427
+ overflow: hidden;
428
+ text-overflow: ellipsis;
429
+ margin-top: 1px;
430
+ }
431
+ .share-result-check {
432
+ width: 18px;
433
+ height: 18px;
434
+ border: 2px solid var(--line);
435
+ display: flex;
436
+ align-items: center;
437
+ justify-content: center;
438
+ flex-shrink: 0;
439
+ font-size: 0.65rem;
440
+ color: transparent;
441
+ transition: all 0.15s;
442
+ }
443
+ .share-result-item.selected .share-result-check {
444
+ border-color: var(--red);
445
+ background: var(--red);
446
+ color: #fff;
447
+ }
448
+
449
+ /* Selected section */
450
+ .share-selected-section {
451
+ margin-top: 14px;
452
+ padding-top: 14px;
453
+ border-top: 1px solid var(--line);
454
+ }
455
+ .share-selected-label {
456
+ font-size: 0.6rem;
457
+ text-transform: uppercase;
458
+ letter-spacing: 0.25em;
459
+ color: var(--muted);
460
+ margin-bottom: 8px;
461
+ }
462
+ .share-selected-list {
463
+ display: flex;
464
+ flex-wrap: wrap;
465
+ gap: 6px;
466
+ }
467
+ .share-selected-chip {
468
+ display: inline-flex;
469
+ align-items: center;
470
+ gap: 6px;
471
+ padding: 4px 10px;
472
+ font-size: 0.68rem;
473
+ font-family: 'DM Mono', monospace;
474
+ border: 1px solid var(--ink);
475
+ background: var(--card);
476
+ }
477
+ .share-chip-remove {
478
+ cursor: pointer;
479
+ color: var(--muted);
480
+ font-size: 0.8rem;
481
+ line-height: 1;
482
+ transition: color 0.15s;
483
+ }
484
+ .share-chip-remove:hover { color: var(--red); }
485
+
486
+ /* Footer */
487
+ .share-footer {
488
+ display: flex;
489
+ justify-content: flex-end;
490
+ gap: 10px;
491
+ padding: 14px 24px;
492
+ border-top: 2px solid var(--ink);
493
+ }
494
+ .share-cancel-btn,
495
+ .share-confirm-btn {
496
+ font-family: 'DM Mono', monospace;
497
+ font-size: 0.72rem;
498
+ text-transform: uppercase;
499
+ letter-spacing: 0.15em;
500
+ padding: 8px 20px;
501
+ border: 1px solid var(--ink);
502
+ cursor: pointer;
503
+ transition: all 0.15s;
504
+ }
505
+ .share-cancel-btn {
506
+ background: var(--card);
507
+ color: var(--ink);
508
+ }
509
+ .share-cancel-btn:hover { background: var(--bg); }
510
+ .share-confirm-btn {
511
+ background: var(--ink);
512
+ color: #fff;
513
+ border-color: var(--ink);
514
+ }
515
+ .share-confirm-btn:hover { background: var(--red); border-color: var(--red); }
516
+ .share-confirm-btn:disabled {
517
+ opacity: 0.35;
518
+ cursor: not-allowed;
519
+ background: var(--muted);
520
+ border-color: var(--muted);
521
+ }
522
+
523
+ /* Loading spinner for search */
524
+ .share-loading {
525
+ padding: 24px 16px;
526
+ text-align: center;
527
+ font-size: 0.72rem;
528
+ color: var(--muted);
529
+ }
530
+ .share-loading::after {
531
+ content: '';
532
+ display: inline-block;
533
+ width: 14px;
534
+ height: 14px;
535
+ border: 2px solid var(--line);
536
+ border-top-color: var(--red);
537
+ border-radius: 50%;
538
+ margin-left: 8px;
539
+ vertical-align: middle;
540
+ animation: shareSpin 0.6s linear infinite;
541
+ }
542
+ @keyframes shareSpin {
543
+ to { transform: rotate(360deg); }
544
+ }
545
+
546
+ /* Make comp-row clickable */
547
+ .comp-row { cursor: pointer; transition: background 0.12s; }
548
+ .comp-row:hover { background: var(--red-soft); }
549
+
550
+ /* Toast notification */
551
+ .share-toast {
552
+ position: fixed;
553
+ bottom: 24px;
554
+ left: 50%;
555
+ transform: translateX(-50%) translateY(20px);
556
+ background: var(--ink);
557
+ color: #fff;
558
+ font-family: 'DM Mono', monospace;
559
+ font-size: 0.75rem;
560
+ padding: 10px 24px;
561
+ border: 1px solid var(--line);
562
+ z-index: 10000;
563
+ opacity: 0;
564
+ transition: all 0.3s ease;
565
+ pointer-events: none;
566
+ letter-spacing: 0.04em;
567
+ }
568
+ .share-toast.show {
569
+ opacity: 1;
570
+ transform: translateX(-50%) translateY(0);
571
+ }
@@ -0,0 +1,151 @@
1
+ {
2
+ "appId": "b0c723f1-a97f-4f8a-bdeb-e6af7c6a841d",
3
+ "appDisplayName": "Solution Explorer",
4
+ "description": "Browse Dataverse solutions and their components",
5
+ "environmentId": "9b45eff8-d905-e28a-918f-2e315619890d",
6
+ "buildPath": "./dist",
7
+ "buildEntryPoint": "index.html",
8
+ "logoPath": "./dist/icon-512.png",
9
+ "localAppUrl": "http://localhost:3000",
10
+ "region": "prod",
11
+ "connectionReferences": {
12
+ "dataverse": {
13
+ "id": "/providers/Microsoft.PowerApps/apis/shared_commondataserviceforapps",
14
+ "displayName": "Microsoft Dataverse",
15
+ "dataSources": [
16
+ "commondataserviceforapps"
17
+ ],
18
+ "authenticationType": null,
19
+ "sharedConnectionId": null,
20
+ "dataSets": {}
21
+ }
22
+ },
23
+ "databaseReferences": {
24
+ "default.cds": {
25
+ "databaseDetails": null,
26
+ "dataSources": {
27
+ "solutions": {
28
+ "entitySetName": "solutions",
29
+ "logicalName": "solution",
30
+ "isHidden": false
31
+ },
32
+ "solutioncomponents": {
33
+ "entitySetName": "solutioncomponents",
34
+ "logicalName": "solutioncomponent",
35
+ "isHidden": false
36
+ },
37
+ "workflows": {
38
+ "entitySetName": "workflows",
39
+ "logicalName": "workflow",
40
+ "isHidden": false
41
+ },
42
+ "roles": {
43
+ "entitySetName": "roles",
44
+ "logicalName": "role",
45
+ "isHidden": false
46
+ },
47
+ "systemforms": {
48
+ "entitySetName": "systemforms",
49
+ "logicalName": "systemform",
50
+ "isHidden": false
51
+ },
52
+ "webresources": {
53
+ "entitySetName": "webresources",
54
+ "logicalName": "webresource",
55
+ "isHidden": false
56
+ },
57
+ "savedqueryvisualizations": {
58
+ "entitySetName": "savedqueryvisualizations",
59
+ "logicalName": "savedqueryvisualization",
60
+ "isHidden": false
61
+ },
62
+ "pluginassemblies": {
63
+ "entitySetName": "pluginassemblies",
64
+ "logicalName": "pluginassembly",
65
+ "isHidden": false
66
+ },
67
+ "plugintypes": {
68
+ "entitySetName": "plugintypes",
69
+ "logicalName": "plugintype",
70
+ "isHidden": false
71
+ },
72
+ "sdkmessageprocessingsteps": {
73
+ "entitySetName": "sdkmessageprocessingsteps",
74
+ "logicalName": "sdkmessageprocessingstep",
75
+ "isHidden": false
76
+ },
77
+ "appmodules": {
78
+ "entitySetName": "appmodules",
79
+ "logicalName": "appmodule",
80
+ "isHidden": false
81
+ },
82
+ "canvasapps": {
83
+ "entitySetName": "canvasapps",
84
+ "logicalName": "canvasapp",
85
+ "isHidden": false
86
+ },
87
+ "reports": {
88
+ "entitySetName": "reports",
89
+ "logicalName": "report",
90
+ "isHidden": false
91
+ },
92
+ "connectionroles": {
93
+ "entitySetName": "connectionroles",
94
+ "logicalName": "connectionrole",
95
+ "isHidden": false
96
+ },
97
+ "sitemaps": {
98
+ "entitySetName": "sitemaps",
99
+ "logicalName": "sitemap",
100
+ "isHidden": false
101
+ },
102
+ "entities": {
103
+ "entitySetName": "entities",
104
+ "logicalName": "entity",
105
+ "isHidden": false
106
+ },
107
+ "savedqueries": {
108
+ "entitySetName": "savedqueries",
109
+ "logicalName": "savedquery",
110
+ "isHidden": false
111
+ },
112
+ "customcontrols": {
113
+ "entitySetName": "customcontrols",
114
+ "logicalName": "customcontrol",
115
+ "isHidden": false
116
+ },
117
+ "connectionreferences": {
118
+ "entitySetName": "connectionreferences",
119
+ "logicalName": "connectionreference",
120
+ "isHidden": false
121
+ },
122
+ "environmentvariabledefinitions": {
123
+ "entitySetName": "environmentvariabledefinitions",
124
+ "logicalName": "environmentvariabledefinition",
125
+ "isHidden": false
126
+ },
127
+ "fxexpressions": {
128
+ "entitySetName": "fxexpressions",
129
+ "logicalName": "fxexpression",
130
+ "isHidden": false
131
+ },
132
+ "webresourceset": {
133
+ "entitySetName": "webresourceset",
134
+ "logicalName": "webresource",
135
+ "isHidden": false
136
+ },
137
+ "teams": {
138
+ "entitySetName": "teams",
139
+ "logicalName": "team",
140
+ "isHidden": false
141
+ },
142
+ "systemusers": {
143
+ "entitySetName": "systemusers",
144
+ "logicalName": "systemuser",
145
+ "isHidden": false
146
+ }
147
+ },
148
+ "actions": null
149
+ }
150
+ }
151
+ }