@objectstack/platform-objects 7.2.0 → 7.3.0
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/apps/index.d.mts +12 -0
- package/dist/apps/index.d.ts +12 -0
- package/dist/apps/index.js +60 -19
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +60 -19
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +96 -0
- package/dist/audit/index.d.ts +96 -0
- package/dist/identity/index.d.mts +205 -2
- package/dist/identity/index.d.ts +205 -2
- package/dist/identity/index.js +134 -3
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +134 -3
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.js +208 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +208 -22
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +6 -0
- package/dist/integration/index.d.ts +6 -0
- package/dist/metadata/index.d.mts +18 -0
- package/dist/metadata/index.d.ts +18 -0
- package/dist/security/index.d.mts +52 -0
- package/dist/security/index.d.ts +52 -0
- package/dist/security/index.js +14 -0
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +14 -0
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +18 -0
- package/dist/system/index.d.ts +18 -0
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -10,9 +10,12 @@ var SysUser = ObjectSchema.create({
|
|
|
10
10
|
icon: "user",
|
|
11
11
|
isSystem: true,
|
|
12
12
|
managedBy: "better-auth",
|
|
13
|
-
// ADR-0010 — identity table is managed by better-auth
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
// ADR-0010 §3.7 — identity table is managed by better-auth; schema must not drift.
|
|
14
|
+
protection: {
|
|
15
|
+
lock: "full",
|
|
16
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
17
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
18
|
+
},
|
|
16
19
|
description: "User accounts for authentication",
|
|
17
20
|
displayNameField: "name",
|
|
18
21
|
titleFormat: "{name}",
|
|
@@ -425,6 +428,14 @@ var SysSession = ObjectSchema.create({
|
|
|
425
428
|
icon: "key",
|
|
426
429
|
isSystem: true,
|
|
427
430
|
managedBy: "better-auth",
|
|
431
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
432
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
433
|
+
// forbid sys_metadata overlays entirely.
|
|
434
|
+
protection: {
|
|
435
|
+
lock: "full",
|
|
436
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
437
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
438
|
+
},
|
|
428
439
|
description: "Active user sessions",
|
|
429
440
|
displayNameField: "user_id",
|
|
430
441
|
titleFormat: "Session \u2014 {user_id}",
|
|
@@ -580,6 +591,14 @@ var SysAccount = ObjectSchema.create({
|
|
|
580
591
|
icon: "link",
|
|
581
592
|
isSystem: true,
|
|
582
593
|
managedBy: "better-auth",
|
|
594
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
595
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
596
|
+
// forbid sys_metadata overlays entirely.
|
|
597
|
+
protection: {
|
|
598
|
+
lock: "full",
|
|
599
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
600
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
601
|
+
},
|
|
583
602
|
description: "OAuth and authentication provider accounts",
|
|
584
603
|
titleFormat: "{provider_id} - {account_id}",
|
|
585
604
|
compactLayout: ["provider_id", "user_id", "account_id"],
|
|
@@ -753,6 +772,14 @@ var SysVerification = ObjectSchema.create({
|
|
|
753
772
|
icon: "shield-check",
|
|
754
773
|
isSystem: true,
|
|
755
774
|
managedBy: "better-auth",
|
|
775
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
776
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
777
|
+
// forbid sys_metadata overlays entirely.
|
|
778
|
+
protection: {
|
|
779
|
+
lock: "full",
|
|
780
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
781
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
782
|
+
},
|
|
756
783
|
description: "Email and phone verification tokens",
|
|
757
784
|
titleFormat: "Verification for {identifier}",
|
|
758
785
|
compactLayout: ["identifier", "expires_at", "created_at"],
|
|
@@ -808,6 +835,14 @@ var SysOrganization = ObjectSchema.create({
|
|
|
808
835
|
icon: "building-2",
|
|
809
836
|
isSystem: true,
|
|
810
837
|
managedBy: "better-auth",
|
|
838
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
839
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
840
|
+
// forbid sys_metadata overlays entirely.
|
|
841
|
+
protection: {
|
|
842
|
+
lock: "full",
|
|
843
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
844
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
845
|
+
},
|
|
811
846
|
description: "Organizations for multi-tenant grouping",
|
|
812
847
|
displayNameField: "name",
|
|
813
848
|
titleFormat: "{name}",
|
|
@@ -1010,6 +1045,14 @@ var SysMember = ObjectSchema.create({
|
|
|
1010
1045
|
icon: "user-check",
|
|
1011
1046
|
isSystem: true,
|
|
1012
1047
|
managedBy: "better-auth",
|
|
1048
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
1049
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
1050
|
+
// forbid sys_metadata overlays entirely.
|
|
1051
|
+
protection: {
|
|
1052
|
+
lock: "full",
|
|
1053
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
1054
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
1055
|
+
},
|
|
1013
1056
|
description: "Organization membership records",
|
|
1014
1057
|
titleFormat: "{user_id} in {organization_id}",
|
|
1015
1058
|
compactLayout: ["user_id", "organization_id", "role"],
|
|
@@ -1159,6 +1202,14 @@ var SysInvitation = ObjectSchema.create({
|
|
|
1159
1202
|
icon: "mail",
|
|
1160
1203
|
isSystem: true,
|
|
1161
1204
|
managedBy: "better-auth",
|
|
1205
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
1206
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
1207
|
+
// forbid sys_metadata overlays entirely.
|
|
1208
|
+
protection: {
|
|
1209
|
+
lock: "full",
|
|
1210
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
1211
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
1212
|
+
},
|
|
1162
1213
|
description: "Organization invitations for user onboarding",
|
|
1163
1214
|
titleFormat: "Invitation to {organization_id}",
|
|
1164
1215
|
compactLayout: ["email", "organization_id", "status"],
|
|
@@ -1359,6 +1410,14 @@ var SysTeam = ObjectSchema.create({
|
|
|
1359
1410
|
icon: "users",
|
|
1360
1411
|
isSystem: true,
|
|
1361
1412
|
managedBy: "better-auth",
|
|
1413
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
1414
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
1415
|
+
// forbid sys_metadata overlays entirely.
|
|
1416
|
+
protection: {
|
|
1417
|
+
lock: "full",
|
|
1418
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
1419
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
1420
|
+
},
|
|
1362
1421
|
description: "Teams within organizations for fine-grained grouping",
|
|
1363
1422
|
displayNameField: "name",
|
|
1364
1423
|
titleFormat: "{name}",
|
|
@@ -1496,6 +1555,14 @@ var SysTeamMember = ObjectSchema.create({
|
|
|
1496
1555
|
icon: "user-plus",
|
|
1497
1556
|
isSystem: true,
|
|
1498
1557
|
managedBy: "better-auth",
|
|
1558
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
1559
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
1560
|
+
// forbid sys_metadata overlays entirely.
|
|
1561
|
+
protection: {
|
|
1562
|
+
lock: "full",
|
|
1563
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
1564
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
1565
|
+
},
|
|
1499
1566
|
description: "Team membership records linking users to teams",
|
|
1500
1567
|
titleFormat: "{user_id} in {team_id}",
|
|
1501
1568
|
compactLayout: ["user_id", "team_id", "created_at"],
|
|
@@ -1823,6 +1890,14 @@ var SysApiKey = ObjectSchema.create({
|
|
|
1823
1890
|
icon: "key-round",
|
|
1824
1891
|
isSystem: true,
|
|
1825
1892
|
managedBy: "better-auth",
|
|
1893
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
1894
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
1895
|
+
// forbid sys_metadata overlays entirely.
|
|
1896
|
+
protection: {
|
|
1897
|
+
lock: "full",
|
|
1898
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
1899
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
1900
|
+
},
|
|
1826
1901
|
description: "API keys for programmatic access",
|
|
1827
1902
|
displayNameField: "name",
|
|
1828
1903
|
titleFormat: "{name}",
|
|
@@ -2005,6 +2080,14 @@ var SysTwoFactor = ObjectSchema.create({
|
|
|
2005
2080
|
icon: "smartphone",
|
|
2006
2081
|
isSystem: true,
|
|
2007
2082
|
managedBy: "better-auth",
|
|
2083
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
2084
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
2085
|
+
// forbid sys_metadata overlays entirely.
|
|
2086
|
+
protection: {
|
|
2087
|
+
lock: "full",
|
|
2088
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
2089
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
2090
|
+
},
|
|
2008
2091
|
description: "Two-factor authentication credentials",
|
|
2009
2092
|
titleFormat: "Two-factor for {user_id}",
|
|
2010
2093
|
compactLayout: ["user_id", "created_at"],
|
|
@@ -2151,6 +2234,14 @@ var SysDeviceCode = ObjectSchema.create({
|
|
|
2151
2234
|
icon: "key-round",
|
|
2152
2235
|
isSystem: true,
|
|
2153
2236
|
managedBy: "better-auth",
|
|
2237
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
2238
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
2239
|
+
// forbid sys_metadata overlays entirely.
|
|
2240
|
+
protection: {
|
|
2241
|
+
lock: "full",
|
|
2242
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
2243
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
2244
|
+
},
|
|
2154
2245
|
description: "OAuth 2.0 Device Authorization Grant (RFC 8628) pending requests",
|
|
2155
2246
|
titleFormat: "{user_code}",
|
|
2156
2247
|
compactLayout: ["user_code", "status", "client_id", "expires_at"],
|
|
@@ -2330,6 +2421,14 @@ var SysOauthApplication = ObjectSchema.create({
|
|
|
2330
2421
|
icon: "key-round",
|
|
2331
2422
|
isSystem: true,
|
|
2332
2423
|
managedBy: "better-auth",
|
|
2424
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
2425
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
2426
|
+
// forbid sys_metadata overlays entirely.
|
|
2427
|
+
protection: {
|
|
2428
|
+
lock: "full",
|
|
2429
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
2430
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
2431
|
+
},
|
|
2333
2432
|
description: "Registered OAuth/OIDC client applications",
|
|
2334
2433
|
displayNameField: "name",
|
|
2335
2434
|
titleFormat: "{name}",
|
|
@@ -2724,6 +2823,14 @@ var SysOauthAccessToken = ObjectSchema.create({
|
|
|
2724
2823
|
icon: "ticket",
|
|
2725
2824
|
isSystem: true,
|
|
2726
2825
|
managedBy: "better-auth",
|
|
2826
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
2827
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
2828
|
+
// forbid sys_metadata overlays entirely.
|
|
2829
|
+
protection: {
|
|
2830
|
+
lock: "full",
|
|
2831
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
2832
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
2833
|
+
},
|
|
2727
2834
|
description: "Opaque OAuth access tokens issued to client applications",
|
|
2728
2835
|
compactLayout: ["client_id", "user_id", "expires_at"],
|
|
2729
2836
|
fields: {
|
|
@@ -2802,6 +2909,14 @@ var SysOauthRefreshToken = ObjectSchema.create({
|
|
|
2802
2909
|
icon: "refresh-cw",
|
|
2803
2910
|
isSystem: true,
|
|
2804
2911
|
managedBy: "better-auth",
|
|
2912
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
2913
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
2914
|
+
// forbid sys_metadata overlays entirely.
|
|
2915
|
+
protection: {
|
|
2916
|
+
lock: "full",
|
|
2917
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
2918
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
2919
|
+
},
|
|
2805
2920
|
description: "Opaque OAuth refresh tokens (linked to a session)",
|
|
2806
2921
|
compactLayout: ["client_id", "user_id", "expires_at"],
|
|
2807
2922
|
fields: {
|
|
@@ -2884,6 +2999,14 @@ var SysOauthConsent = ObjectSchema.create({
|
|
|
2884
2999
|
icon: "shield-check",
|
|
2885
3000
|
isSystem: true,
|
|
2886
3001
|
managedBy: "better-auth",
|
|
3002
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
3003
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
3004
|
+
// forbid sys_metadata overlays entirely.
|
|
3005
|
+
protection: {
|
|
3006
|
+
lock: "full",
|
|
3007
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
3008
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
3009
|
+
},
|
|
2887
3010
|
description: "User consent records for OAuth client applications",
|
|
2888
3011
|
compactLayout: ["client_id", "user_id", "scopes"],
|
|
2889
3012
|
fields: {
|
|
@@ -2944,6 +3067,14 @@ var SysJwks = ObjectSchema.create({
|
|
|
2944
3067
|
icon: "key",
|
|
2945
3068
|
isSystem: true,
|
|
2946
3069
|
managedBy: "better-auth",
|
|
3070
|
+
// ADR-0010 §3.7 — managed by better-auth; tenants may not edit schema,
|
|
3071
|
+
// but may add overlay row-level config. Use `no-overlay` if you need to
|
|
3072
|
+
// forbid sys_metadata overlays entirely.
|
|
3073
|
+
protection: {
|
|
3074
|
+
lock: "full",
|
|
3075
|
+
reason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
3076
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
3077
|
+
},
|
|
2947
3078
|
description: "Asymmetric key pairs used to sign and verify issued JWTs",
|
|
2948
3079
|
compactLayout: ["id", "created_at", "expires_at"],
|
|
2949
3080
|
fields: {
|
|
@@ -2991,6 +3122,13 @@ var SysRole = ObjectSchema.create({
|
|
|
2991
3122
|
icon: "shield",
|
|
2992
3123
|
isSystem: true,
|
|
2993
3124
|
managedBy: "config",
|
|
3125
|
+
// ADR-0010 §3.7 — RBAC primitive; tenants may add custom rows
|
|
3126
|
+
// (created via UI / API) but the schema itself is locked.
|
|
3127
|
+
protection: {
|
|
3128
|
+
lock: "no-overlay",
|
|
3129
|
+
reason: "RBAC schema is platform-defined \u2014 see ADR-0010.",
|
|
3130
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
3131
|
+
},
|
|
2994
3132
|
description: "Role definitions for RBAC access control",
|
|
2995
3133
|
displayNameField: "label",
|
|
2996
3134
|
titleFormat: "{label}",
|
|
@@ -3194,6 +3332,13 @@ var SysPermissionSet = ObjectSchema.create({
|
|
|
3194
3332
|
icon: "lock",
|
|
3195
3333
|
isSystem: true,
|
|
3196
3334
|
managedBy: "config",
|
|
3335
|
+
// ADR-0010 §3.7 — RBAC primitive; tenants may add custom rows
|
|
3336
|
+
// (created via UI / API) but the schema itself is locked.
|
|
3337
|
+
protection: {
|
|
3338
|
+
lock: "no-overlay",
|
|
3339
|
+
reason: "RBAC schema is platform-defined \u2014 see ADR-0010.",
|
|
3340
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
3341
|
+
},
|
|
3197
3342
|
description: "Named permission groupings for fine-grained access control",
|
|
3198
3343
|
displayNameField: "label",
|
|
3199
3344
|
titleFormat: "{label}",
|
|
@@ -7447,9 +7592,13 @@ var SETUP_APP = {
|
|
|
7447
7592
|
icon: "settings",
|
|
7448
7593
|
active: true,
|
|
7449
7594
|
isDefault: false,
|
|
7450
|
-
// ADR-0010 —
|
|
7451
|
-
_lock
|
|
7452
|
-
|
|
7595
|
+
// ADR-0010 §3.7 — author-facing protection block. Loader translates
|
|
7596
|
+
// this into the `_lock` envelope at registration time.
|
|
7597
|
+
protection: {
|
|
7598
|
+
lock: "full",
|
|
7599
|
+
reason: "Core admin UI shipped by @objectstack/platform-objects \u2014 see ADR-0010.",
|
|
7600
|
+
docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection"
|
|
7601
|
+
},
|
|
7453
7602
|
branding: {
|
|
7454
7603
|
primaryColor: "#475569"
|
|
7455
7604
|
// Slate-600 — neutral admin palette
|
|
@@ -7676,11 +7825,41 @@ var STUDIO_APP = {
|
|
|
7676
7825
|
icon: "hammer",
|
|
7677
7826
|
active: true,
|
|
7678
7827
|
isDefault: false,
|
|
7828
|
+
// Studio is the metadata-authoring host, so its ambient copilot is
|
|
7829
|
+
// pinned to the schema-architect agent. Resolved by the ambient chat
|
|
7830
|
+
// endpoint via `app.defaultAgent` — no UI-side `?agent=` override
|
|
7831
|
+
// needed. Every other app falls back to the data-query agent.
|
|
7832
|
+
defaultAgent: "metadata_assistant",
|
|
7679
7833
|
branding: {
|
|
7680
7834
|
primaryColor: "#6366f1"
|
|
7681
7835
|
// Indigo-500 — distinct from Setup's slate
|
|
7682
7836
|
},
|
|
7683
7837
|
requiredPermissions: ["studio.access"],
|
|
7838
|
+
contextSelectors: [
|
|
7839
|
+
{
|
|
7840
|
+
// Package scope — pinned to the sidebar header. Selecting a package
|
|
7841
|
+
// injects `{active_package}` into every `metadata:resource` nav
|
|
7842
|
+
// item below, so the whole workbench filters to that package in
|
|
7843
|
+
// one click. Options come from the installed-packages REST surface,
|
|
7844
|
+
// narrowed to project-scoped packages: this dropdown exists so
|
|
7845
|
+
// third-party developers can scope to *their* custom package, so we
|
|
7846
|
+
// deliberately hide the platform's own system/cloud kernel packages
|
|
7847
|
+
// (auth, security, audit, queue, …) which are not user-authored.
|
|
7848
|
+
id: "active_package",
|
|
7849
|
+
label: "Package",
|
|
7850
|
+
icon: "package",
|
|
7851
|
+
optionsSource: {
|
|
7852
|
+
endpoint: "/api/v1/packages",
|
|
7853
|
+
valueKey: "manifest.id",
|
|
7854
|
+
labelKey: "manifest.name",
|
|
7855
|
+
filter: [{ key: "manifest.scope", op: "nin", value: ["system", "cloud"] }]
|
|
7856
|
+
},
|
|
7857
|
+
includeAll: true,
|
|
7858
|
+
allValue: "",
|
|
7859
|
+
persist: "query",
|
|
7860
|
+
placement: "sidebar_header"
|
|
7861
|
+
}
|
|
7862
|
+
],
|
|
7684
7863
|
navigation: [
|
|
7685
7864
|
{
|
|
7686
7865
|
id: "group_overview",
|
|
@@ -7694,6 +7873,13 @@ var STUDIO_APP = {
|
|
|
7694
7873
|
label: "All Metadata Types",
|
|
7695
7874
|
componentRef: "metadata:directory",
|
|
7696
7875
|
icon: "layers"
|
|
7876
|
+
},
|
|
7877
|
+
{
|
|
7878
|
+
id: "nav_packages",
|
|
7879
|
+
type: "component",
|
|
7880
|
+
label: "Packages",
|
|
7881
|
+
componentRef: "developer:packages",
|
|
7882
|
+
icon: "package"
|
|
7697
7883
|
}
|
|
7698
7884
|
]
|
|
7699
7885
|
},
|
|
@@ -7711,7 +7897,7 @@ var STUDIO_APP = {
|
|
|
7711
7897
|
type: "component",
|
|
7712
7898
|
label: "Objects",
|
|
7713
7899
|
componentRef: "metadata:resource",
|
|
7714
|
-
params: { type: "object" },
|
|
7900
|
+
params: { type: "object", package: "{active_package}" },
|
|
7715
7901
|
icon: "box"
|
|
7716
7902
|
},
|
|
7717
7903
|
{
|
|
@@ -7719,7 +7905,7 @@ var STUDIO_APP = {
|
|
|
7719
7905
|
type: "component",
|
|
7720
7906
|
label: "Validations",
|
|
7721
7907
|
componentRef: "metadata:resource",
|
|
7722
|
-
params: { type: "validation" },
|
|
7908
|
+
params: { type: "validation", package: "{active_package}" },
|
|
7723
7909
|
icon: "check-square"
|
|
7724
7910
|
}
|
|
7725
7911
|
]
|
|
@@ -7736,7 +7922,7 @@ var STUDIO_APP = {
|
|
|
7736
7922
|
type: "component",
|
|
7737
7923
|
label: "Apps",
|
|
7738
7924
|
componentRef: "metadata:resource",
|
|
7739
|
-
params: { type: "app" },
|
|
7925
|
+
params: { type: "app", package: "{active_package}" },
|
|
7740
7926
|
icon: "app-window"
|
|
7741
7927
|
},
|
|
7742
7928
|
{
|
|
@@ -7744,7 +7930,7 @@ var STUDIO_APP = {
|
|
|
7744
7930
|
type: "component",
|
|
7745
7931
|
label: "Views",
|
|
7746
7932
|
componentRef: "metadata:resource",
|
|
7747
|
-
params: { type: "view" },
|
|
7933
|
+
params: { type: "view", package: "{active_package}" },
|
|
7748
7934
|
icon: "table"
|
|
7749
7935
|
},
|
|
7750
7936
|
{
|
|
@@ -7752,7 +7938,7 @@ var STUDIO_APP = {
|
|
|
7752
7938
|
type: "component",
|
|
7753
7939
|
label: "Pages",
|
|
7754
7940
|
componentRef: "metadata:resource",
|
|
7755
|
-
params: { type: "page" },
|
|
7941
|
+
params: { type: "page", package: "{active_package}" },
|
|
7756
7942
|
icon: "file-text"
|
|
7757
7943
|
},
|
|
7758
7944
|
{
|
|
@@ -7760,7 +7946,7 @@ var STUDIO_APP = {
|
|
|
7760
7946
|
type: "component",
|
|
7761
7947
|
label: "Dashboards",
|
|
7762
7948
|
componentRef: "metadata:resource",
|
|
7763
|
-
params: { type: "dashboard" },
|
|
7949
|
+
params: { type: "dashboard", package: "{active_package}" },
|
|
7764
7950
|
icon: "layout-dashboard"
|
|
7765
7951
|
},
|
|
7766
7952
|
{
|
|
@@ -7768,7 +7954,7 @@ var STUDIO_APP = {
|
|
|
7768
7954
|
type: "component",
|
|
7769
7955
|
label: "Reports",
|
|
7770
7956
|
componentRef: "metadata:resource",
|
|
7771
|
-
params: { type: "report" },
|
|
7957
|
+
params: { type: "report", package: "{active_package}" },
|
|
7772
7958
|
icon: "bar-chart-3"
|
|
7773
7959
|
}
|
|
7774
7960
|
]
|
|
@@ -7785,7 +7971,7 @@ var STUDIO_APP = {
|
|
|
7785
7971
|
type: "component",
|
|
7786
7972
|
label: "Actions",
|
|
7787
7973
|
componentRef: "metadata:resource",
|
|
7788
|
-
params: { type: "action" },
|
|
7974
|
+
params: { type: "action", package: "{active_package}" },
|
|
7789
7975
|
icon: "mouse-pointer-click"
|
|
7790
7976
|
},
|
|
7791
7977
|
{
|
|
@@ -7793,7 +7979,7 @@ var STUDIO_APP = {
|
|
|
7793
7979
|
type: "component",
|
|
7794
7980
|
label: "Hooks",
|
|
7795
7981
|
componentRef: "metadata:resource",
|
|
7796
|
-
params: { type: "hook" },
|
|
7982
|
+
params: { type: "hook", package: "{active_package}" },
|
|
7797
7983
|
icon: "webhook"
|
|
7798
7984
|
}
|
|
7799
7985
|
]
|
|
@@ -7810,7 +7996,7 @@ var STUDIO_APP = {
|
|
|
7810
7996
|
type: "component",
|
|
7811
7997
|
label: "Flows",
|
|
7812
7998
|
componentRef: "metadata:resource",
|
|
7813
|
-
params: { type: "flow" },
|
|
7999
|
+
params: { type: "flow", package: "{active_package}" },
|
|
7814
8000
|
icon: "git-branch"
|
|
7815
8001
|
},
|
|
7816
8002
|
{
|
|
@@ -7818,7 +8004,7 @@ var STUDIO_APP = {
|
|
|
7818
8004
|
type: "component",
|
|
7819
8005
|
label: "Workflow Rules",
|
|
7820
8006
|
componentRef: "metadata:resource",
|
|
7821
|
-
params: { type: "workflow" },
|
|
8007
|
+
params: { type: "workflow", package: "{active_package}" },
|
|
7822
8008
|
icon: "zap"
|
|
7823
8009
|
},
|
|
7824
8010
|
{
|
|
@@ -7826,7 +8012,7 @@ var STUDIO_APP = {
|
|
|
7826
8012
|
type: "component",
|
|
7827
8013
|
label: "Approval Processes",
|
|
7828
8014
|
componentRef: "metadata:resource",
|
|
7829
|
-
params: { type: "approval" },
|
|
8015
|
+
params: { type: "approval", package: "{active_package}" },
|
|
7830
8016
|
icon: "check-circle"
|
|
7831
8017
|
}
|
|
7832
8018
|
]
|
|
@@ -7845,7 +8031,7 @@ var STUDIO_APP = {
|
|
|
7845
8031
|
type: "component",
|
|
7846
8032
|
label: "Agents",
|
|
7847
8033
|
componentRef: "metadata:resource",
|
|
7848
|
-
params: { type: "agent" },
|
|
8034
|
+
params: { type: "agent", package: "{active_package}" },
|
|
7849
8035
|
icon: "bot"
|
|
7850
8036
|
},
|
|
7851
8037
|
{
|
|
@@ -7853,7 +8039,7 @@ var STUDIO_APP = {
|
|
|
7853
8039
|
type: "component",
|
|
7854
8040
|
label: "Tools",
|
|
7855
8041
|
componentRef: "metadata:resource",
|
|
7856
|
-
params: { type: "tool" },
|
|
8042
|
+
params: { type: "tool", package: "{active_package}" },
|
|
7857
8043
|
icon: "wrench"
|
|
7858
8044
|
},
|
|
7859
8045
|
{
|
|
@@ -7861,7 +8047,7 @@ var STUDIO_APP = {
|
|
|
7861
8047
|
type: "component",
|
|
7862
8048
|
label: "Skills",
|
|
7863
8049
|
componentRef: "metadata:resource",
|
|
7864
|
-
params: { type: "skill" },
|
|
8050
|
+
params: { type: "skill", package: "{active_package}" },
|
|
7865
8051
|
icon: "brain"
|
|
7866
8052
|
}
|
|
7867
8053
|
]
|
|
@@ -7914,7 +8100,7 @@ var STUDIO_APP = {
|
|
|
7914
8100
|
type: "component",
|
|
7915
8101
|
label: "Email Templates",
|
|
7916
8102
|
componentRef: "metadata:resource",
|
|
7917
|
-
params: { type: "email_template" },
|
|
8103
|
+
params: { type: "email_template", package: "{active_package}" },
|
|
7918
8104
|
icon: "mail"
|
|
7919
8105
|
}
|
|
7920
8106
|
]
|