@stackframe/stack-shared 2.8.43 → 2.8.44
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/CHANGELOG.md +6 -0
- package/dist/apps/apps-config.d.mts +52 -31
- package/dist/apps/apps-config.d.ts +52 -31
- package/dist/apps/apps-config.js +54 -32
- package/dist/apps/apps-config.js.map +1 -1
- package/dist/config/schema.d.mts +248 -248
- package/dist/config/schema.d.ts +248 -248
- package/dist/config/schema.js +1 -1
- package/dist/config/schema.js.map +1 -1
- package/dist/esm/apps/apps-config.js +52 -31
- package/dist/esm/apps/apps-config.js.map +1 -1
- package/dist/esm/config/schema.js +1 -1
- package/dist/esm/config/schema.js.map +1 -1
- package/dist/esm/interface/client-interface.js +18 -16
- package/dist/esm/interface/client-interface.js.map +1 -1
- package/dist/esm/utils/caches.js +6 -2
- package/dist/esm/utils/caches.js.map +1 -1
- package/dist/esm/utils/globals.js +9 -1
- package/dist/esm/utils/globals.js.map +1 -1
- package/dist/esm/utils/react.js +12 -6
- package/dist/esm/utils/react.js.map +1 -1
- package/dist/esm/utils/regex.js +13 -0
- package/dist/esm/utils/regex.js.map +1 -0
- package/dist/esm/utils/urls.js +10 -0
- package/dist/esm/utils/urls.js.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/interface/admin-interface.d.mts +1 -1
- package/dist/interface/admin-interface.d.ts +1 -1
- package/dist/interface/client-interface.d.mts +1 -1
- package/dist/interface/client-interface.d.ts +1 -1
- package/dist/interface/client-interface.js +18 -16
- package/dist/interface/client-interface.js.map +1 -1
- package/dist/interface/server-interface.d.mts +1 -1
- package/dist/interface/server-interface.d.ts +1 -1
- package/dist/utils/caches.d.mts +4 -2
- package/dist/utils/caches.d.ts +4 -2
- package/dist/utils/caches.js +6 -2
- package/dist/utils/caches.js.map +1 -1
- package/dist/utils/globals.d.mts +3 -1
- package/dist/utils/globals.d.ts +3 -1
- package/dist/utils/globals.js +12 -2
- package/dist/utils/globals.js.map +1 -1
- package/dist/utils/react.d.mts +2 -1
- package/dist/utils/react.d.ts +2 -1
- package/dist/utils/react.js +13 -6
- package/dist/utils/react.js.map +1 -1
- package/dist/utils/regex.d.mts +3 -0
- package/dist/utils/regex.d.ts +3 -0
- package/dist/utils/regex.js +38 -0
- package/dist/utils/regex.js.map +1 -0
- package/dist/utils/urls.d.mts +3 -1
- package/dist/utils/urls.d.ts +3 -1
- package/dist/utils/urls.js +12 -0
- package/dist/utils/urls.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,109 +1,130 @@
|
|
|
1
|
+
declare const ALL_APP_TAGS: {
|
|
2
|
+
readonly expert: {
|
|
3
|
+
readonly displayName: "Expert";
|
|
4
|
+
};
|
|
5
|
+
readonly integration: {
|
|
6
|
+
readonly displayName: "Integrations";
|
|
7
|
+
};
|
|
8
|
+
readonly auth: {
|
|
9
|
+
readonly displayName: "Authentication";
|
|
10
|
+
};
|
|
11
|
+
readonly developers: {
|
|
12
|
+
readonly displayName: "For Developers";
|
|
13
|
+
};
|
|
14
|
+
readonly security: {
|
|
15
|
+
readonly displayName: "Security";
|
|
16
|
+
};
|
|
17
|
+
readonly operations: {
|
|
18
|
+
readonly displayName: "For Operations";
|
|
19
|
+
};
|
|
20
|
+
readonly gtm: {
|
|
21
|
+
readonly displayName: "Go-to-market";
|
|
22
|
+
};
|
|
23
|
+
readonly comms: {
|
|
24
|
+
readonly displayName: "Communications";
|
|
25
|
+
};
|
|
26
|
+
readonly automation: {
|
|
27
|
+
readonly displayName: "Automation";
|
|
28
|
+
};
|
|
29
|
+
readonly storage: {
|
|
30
|
+
readonly displayName: "Storage & Databases";
|
|
31
|
+
};
|
|
32
|
+
readonly various: {
|
|
33
|
+
readonly displayName: "Various";
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
type AppId = keyof typeof ALL_APPS;
|
|
1
37
|
declare const ALL_APPS: {
|
|
2
38
|
readonly authentication: {
|
|
3
|
-
readonly type: "app";
|
|
4
39
|
readonly displayName: "Authentication";
|
|
5
40
|
readonly subtitle: "User sign-in and account management";
|
|
6
41
|
readonly tags: ["auth", "security"];
|
|
7
42
|
readonly stage: "stable";
|
|
8
43
|
};
|
|
9
44
|
readonly teams: {
|
|
10
|
-
readonly type: "app";
|
|
11
45
|
readonly displayName: "Teams";
|
|
12
46
|
readonly subtitle: "Team collaboration and management";
|
|
13
|
-
readonly tags: ["
|
|
47
|
+
readonly tags: ["auth", "security"];
|
|
14
48
|
readonly stage: "stable";
|
|
15
49
|
};
|
|
16
50
|
readonly rbac: {
|
|
17
|
-
readonly type: "app";
|
|
18
51
|
readonly displayName: "RBAC";
|
|
19
52
|
readonly subtitle: "Role-based access control and permissions";
|
|
20
|
-
readonly tags: ["
|
|
53
|
+
readonly tags: ["auth", "security"];
|
|
21
54
|
readonly stage: "stable";
|
|
22
55
|
};
|
|
23
56
|
readonly "api-keys": {
|
|
24
|
-
readonly type: "app";
|
|
25
57
|
readonly displayName: "API Keys";
|
|
26
58
|
readonly subtitle: "API key generation and management";
|
|
27
|
-
readonly tags: ["
|
|
59
|
+
readonly tags: ["auth", "security", "developers"];
|
|
28
60
|
readonly stage: "stable";
|
|
29
61
|
};
|
|
30
62
|
readonly payments: {
|
|
31
|
-
readonly type: "app";
|
|
32
63
|
readonly displayName: "Payments";
|
|
33
64
|
readonly subtitle: "Payment processing and subscription management";
|
|
34
|
-
readonly tags: ["
|
|
65
|
+
readonly tags: ["operations", "gtm"];
|
|
35
66
|
readonly stage: "stable";
|
|
36
67
|
};
|
|
37
68
|
readonly emails: {
|
|
38
|
-
readonly type: "app";
|
|
39
69
|
readonly displayName: "Emails";
|
|
40
70
|
readonly subtitle: "Email template configuration and management";
|
|
41
|
-
readonly tags: ["
|
|
71
|
+
readonly tags: ["comms"];
|
|
42
72
|
readonly stage: "stable";
|
|
43
73
|
};
|
|
44
74
|
readonly "email-api": {
|
|
45
|
-
readonly type: "app";
|
|
46
75
|
readonly displayName: "Email API";
|
|
47
76
|
readonly subtitle: "Programmatic email sending and delivery";
|
|
48
|
-
readonly tags: ["
|
|
77
|
+
readonly tags: ["comms", "developers", "expert"];
|
|
49
78
|
readonly stage: "alpha";
|
|
50
79
|
};
|
|
51
80
|
readonly "data-vault": {
|
|
52
|
-
readonly type: "app";
|
|
53
81
|
readonly displayName: "Data Vault";
|
|
54
82
|
readonly subtitle: "Secure storage for sensitive user data";
|
|
55
83
|
readonly tags: ["security", "storage"];
|
|
56
|
-
readonly stage: "
|
|
84
|
+
readonly stage: "beta";
|
|
57
85
|
};
|
|
58
86
|
readonly workflows: {
|
|
59
|
-
readonly type: "app";
|
|
60
87
|
readonly displayName: "Workflows";
|
|
61
88
|
readonly subtitle: "Automated business process orchestration";
|
|
62
|
-
readonly tags: ["automation"
|
|
89
|
+
readonly tags: ["automation"];
|
|
63
90
|
readonly stage: "beta";
|
|
64
91
|
};
|
|
65
92
|
readonly webhooks: {
|
|
66
|
-
readonly type: "app";
|
|
67
93
|
readonly displayName: "Webhooks";
|
|
68
94
|
readonly subtitle: "Real-time event notifications and integrations";
|
|
69
|
-
readonly tags: ["
|
|
95
|
+
readonly tags: ["developers"];
|
|
70
96
|
readonly stage: "stable";
|
|
71
97
|
};
|
|
72
98
|
readonly "tv-mode": {
|
|
73
|
-
readonly type: "app";
|
|
74
99
|
readonly displayName: "TV mode";
|
|
75
100
|
readonly subtitle: "Dashboard display for large screens";
|
|
76
|
-
readonly tags: ["
|
|
101
|
+
readonly tags: ["various"];
|
|
77
102
|
readonly stage: "alpha";
|
|
78
103
|
};
|
|
79
104
|
readonly "launch-checklist": {
|
|
80
|
-
readonly type: "app";
|
|
81
105
|
readonly displayName: "Launch Checklist";
|
|
82
106
|
readonly subtitle: "Pre-launch verification and readiness checks";
|
|
83
|
-
readonly tags: ["
|
|
84
|
-
readonly stage: "
|
|
107
|
+
readonly tags: ["various"];
|
|
108
|
+
readonly stage: "stable";
|
|
85
109
|
};
|
|
86
110
|
readonly catalyst: {
|
|
87
|
-
readonly type: "app";
|
|
88
111
|
readonly displayName: "Catalyst";
|
|
89
112
|
readonly subtitle: "Project scaffolding and rapid development";
|
|
90
|
-
readonly tags: ["
|
|
113
|
+
readonly tags: ["various"];
|
|
91
114
|
readonly stage: "alpha";
|
|
92
115
|
};
|
|
93
116
|
readonly neon: {
|
|
94
|
-
readonly type: "integration";
|
|
95
117
|
readonly displayName: "Neon";
|
|
96
118
|
readonly subtitle: "Serverless Postgres database integration";
|
|
97
|
-
readonly tags: ["
|
|
119
|
+
readonly tags: ["integration", "storage"];
|
|
98
120
|
readonly stage: "alpha";
|
|
99
121
|
};
|
|
100
122
|
readonly convex: {
|
|
101
|
-
readonly type: "integration";
|
|
102
123
|
readonly displayName: "Convex";
|
|
103
124
|
readonly subtitle: "Real-time backend platform integration";
|
|
104
|
-
readonly tags: ["
|
|
125
|
+
readonly tags: ["integration", "storage"];
|
|
105
126
|
readonly stage: "alpha";
|
|
106
127
|
};
|
|
107
128
|
};
|
|
108
129
|
|
|
109
|
-
export { ALL_APPS };
|
|
130
|
+
export { ALL_APPS, ALL_APP_TAGS, type AppId };
|
|
@@ -1,109 +1,130 @@
|
|
|
1
|
+
declare const ALL_APP_TAGS: {
|
|
2
|
+
readonly expert: {
|
|
3
|
+
readonly displayName: "Expert";
|
|
4
|
+
};
|
|
5
|
+
readonly integration: {
|
|
6
|
+
readonly displayName: "Integrations";
|
|
7
|
+
};
|
|
8
|
+
readonly auth: {
|
|
9
|
+
readonly displayName: "Authentication";
|
|
10
|
+
};
|
|
11
|
+
readonly developers: {
|
|
12
|
+
readonly displayName: "For Developers";
|
|
13
|
+
};
|
|
14
|
+
readonly security: {
|
|
15
|
+
readonly displayName: "Security";
|
|
16
|
+
};
|
|
17
|
+
readonly operations: {
|
|
18
|
+
readonly displayName: "For Operations";
|
|
19
|
+
};
|
|
20
|
+
readonly gtm: {
|
|
21
|
+
readonly displayName: "Go-to-market";
|
|
22
|
+
};
|
|
23
|
+
readonly comms: {
|
|
24
|
+
readonly displayName: "Communications";
|
|
25
|
+
};
|
|
26
|
+
readonly automation: {
|
|
27
|
+
readonly displayName: "Automation";
|
|
28
|
+
};
|
|
29
|
+
readonly storage: {
|
|
30
|
+
readonly displayName: "Storage & Databases";
|
|
31
|
+
};
|
|
32
|
+
readonly various: {
|
|
33
|
+
readonly displayName: "Various";
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
type AppId = keyof typeof ALL_APPS;
|
|
1
37
|
declare const ALL_APPS: {
|
|
2
38
|
readonly authentication: {
|
|
3
|
-
readonly type: "app";
|
|
4
39
|
readonly displayName: "Authentication";
|
|
5
40
|
readonly subtitle: "User sign-in and account management";
|
|
6
41
|
readonly tags: ["auth", "security"];
|
|
7
42
|
readonly stage: "stable";
|
|
8
43
|
};
|
|
9
44
|
readonly teams: {
|
|
10
|
-
readonly type: "app";
|
|
11
45
|
readonly displayName: "Teams";
|
|
12
46
|
readonly subtitle: "Team collaboration and management";
|
|
13
|
-
readonly tags: ["
|
|
47
|
+
readonly tags: ["auth", "security"];
|
|
14
48
|
readonly stage: "stable";
|
|
15
49
|
};
|
|
16
50
|
readonly rbac: {
|
|
17
|
-
readonly type: "app";
|
|
18
51
|
readonly displayName: "RBAC";
|
|
19
52
|
readonly subtitle: "Role-based access control and permissions";
|
|
20
|
-
readonly tags: ["
|
|
53
|
+
readonly tags: ["auth", "security"];
|
|
21
54
|
readonly stage: "stable";
|
|
22
55
|
};
|
|
23
56
|
readonly "api-keys": {
|
|
24
|
-
readonly type: "app";
|
|
25
57
|
readonly displayName: "API Keys";
|
|
26
58
|
readonly subtitle: "API key generation and management";
|
|
27
|
-
readonly tags: ["
|
|
59
|
+
readonly tags: ["auth", "security", "developers"];
|
|
28
60
|
readonly stage: "stable";
|
|
29
61
|
};
|
|
30
62
|
readonly payments: {
|
|
31
|
-
readonly type: "app";
|
|
32
63
|
readonly displayName: "Payments";
|
|
33
64
|
readonly subtitle: "Payment processing and subscription management";
|
|
34
|
-
readonly tags: ["
|
|
65
|
+
readonly tags: ["operations", "gtm"];
|
|
35
66
|
readonly stage: "stable";
|
|
36
67
|
};
|
|
37
68
|
readonly emails: {
|
|
38
|
-
readonly type: "app";
|
|
39
69
|
readonly displayName: "Emails";
|
|
40
70
|
readonly subtitle: "Email template configuration and management";
|
|
41
|
-
readonly tags: ["
|
|
71
|
+
readonly tags: ["comms"];
|
|
42
72
|
readonly stage: "stable";
|
|
43
73
|
};
|
|
44
74
|
readonly "email-api": {
|
|
45
|
-
readonly type: "app";
|
|
46
75
|
readonly displayName: "Email API";
|
|
47
76
|
readonly subtitle: "Programmatic email sending and delivery";
|
|
48
|
-
readonly tags: ["
|
|
77
|
+
readonly tags: ["comms", "developers", "expert"];
|
|
49
78
|
readonly stage: "alpha";
|
|
50
79
|
};
|
|
51
80
|
readonly "data-vault": {
|
|
52
|
-
readonly type: "app";
|
|
53
81
|
readonly displayName: "Data Vault";
|
|
54
82
|
readonly subtitle: "Secure storage for sensitive user data";
|
|
55
83
|
readonly tags: ["security", "storage"];
|
|
56
|
-
readonly stage: "
|
|
84
|
+
readonly stage: "beta";
|
|
57
85
|
};
|
|
58
86
|
readonly workflows: {
|
|
59
|
-
readonly type: "app";
|
|
60
87
|
readonly displayName: "Workflows";
|
|
61
88
|
readonly subtitle: "Automated business process orchestration";
|
|
62
|
-
readonly tags: ["automation"
|
|
89
|
+
readonly tags: ["automation"];
|
|
63
90
|
readonly stage: "beta";
|
|
64
91
|
};
|
|
65
92
|
readonly webhooks: {
|
|
66
|
-
readonly type: "app";
|
|
67
93
|
readonly displayName: "Webhooks";
|
|
68
94
|
readonly subtitle: "Real-time event notifications and integrations";
|
|
69
|
-
readonly tags: ["
|
|
95
|
+
readonly tags: ["developers"];
|
|
70
96
|
readonly stage: "stable";
|
|
71
97
|
};
|
|
72
98
|
readonly "tv-mode": {
|
|
73
|
-
readonly type: "app";
|
|
74
99
|
readonly displayName: "TV mode";
|
|
75
100
|
readonly subtitle: "Dashboard display for large screens";
|
|
76
|
-
readonly tags: ["
|
|
101
|
+
readonly tags: ["various"];
|
|
77
102
|
readonly stage: "alpha";
|
|
78
103
|
};
|
|
79
104
|
readonly "launch-checklist": {
|
|
80
|
-
readonly type: "app";
|
|
81
105
|
readonly displayName: "Launch Checklist";
|
|
82
106
|
readonly subtitle: "Pre-launch verification and readiness checks";
|
|
83
|
-
readonly tags: ["
|
|
84
|
-
readonly stage: "
|
|
107
|
+
readonly tags: ["various"];
|
|
108
|
+
readonly stage: "stable";
|
|
85
109
|
};
|
|
86
110
|
readonly catalyst: {
|
|
87
|
-
readonly type: "app";
|
|
88
111
|
readonly displayName: "Catalyst";
|
|
89
112
|
readonly subtitle: "Project scaffolding and rapid development";
|
|
90
|
-
readonly tags: ["
|
|
113
|
+
readonly tags: ["various"];
|
|
91
114
|
readonly stage: "alpha";
|
|
92
115
|
};
|
|
93
116
|
readonly neon: {
|
|
94
|
-
readonly type: "integration";
|
|
95
117
|
readonly displayName: "Neon";
|
|
96
118
|
readonly subtitle: "Serverless Postgres database integration";
|
|
97
|
-
readonly tags: ["
|
|
119
|
+
readonly tags: ["integration", "storage"];
|
|
98
120
|
readonly stage: "alpha";
|
|
99
121
|
};
|
|
100
122
|
readonly convex: {
|
|
101
|
-
readonly type: "integration";
|
|
102
123
|
readonly displayName: "Convex";
|
|
103
124
|
readonly subtitle: "Real-time backend platform integration";
|
|
104
|
-
readonly tags: ["
|
|
125
|
+
readonly tags: ["integration", "storage"];
|
|
105
126
|
readonly stage: "alpha";
|
|
106
127
|
};
|
|
107
128
|
};
|
|
108
129
|
|
|
109
|
-
export { ALL_APPS };
|
|
130
|
+
export { ALL_APPS, ALL_APP_TAGS, type AppId };
|
package/dist/apps/apps-config.js
CHANGED
|
@@ -20,118 +20,140 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// src/apps/apps-config.ts
|
|
21
21
|
var apps_config_exports = {};
|
|
22
22
|
__export(apps_config_exports, {
|
|
23
|
-
ALL_APPS: () => ALL_APPS
|
|
23
|
+
ALL_APPS: () => ALL_APPS,
|
|
24
|
+
ALL_APP_TAGS: () => ALL_APP_TAGS
|
|
24
25
|
});
|
|
25
26
|
module.exports = __toCommonJS(apps_config_exports);
|
|
27
|
+
var ALL_APP_TAGS = {
|
|
28
|
+
"expert": {
|
|
29
|
+
displayName: "Expert"
|
|
30
|
+
},
|
|
31
|
+
"integration": {
|
|
32
|
+
displayName: "Integrations"
|
|
33
|
+
},
|
|
34
|
+
"auth": {
|
|
35
|
+
displayName: "Authentication"
|
|
36
|
+
},
|
|
37
|
+
"developers": {
|
|
38
|
+
displayName: "For Developers"
|
|
39
|
+
},
|
|
40
|
+
"security": {
|
|
41
|
+
displayName: "Security"
|
|
42
|
+
},
|
|
43
|
+
"operations": {
|
|
44
|
+
displayName: "For Operations"
|
|
45
|
+
},
|
|
46
|
+
"gtm": {
|
|
47
|
+
displayName: "Go-to-market"
|
|
48
|
+
},
|
|
49
|
+
"comms": {
|
|
50
|
+
displayName: "Communications"
|
|
51
|
+
},
|
|
52
|
+
"automation": {
|
|
53
|
+
displayName: "Automation"
|
|
54
|
+
},
|
|
55
|
+
"storage": {
|
|
56
|
+
displayName: "Storage & Databases"
|
|
57
|
+
},
|
|
58
|
+
"various": {
|
|
59
|
+
displayName: "Various"
|
|
60
|
+
}
|
|
61
|
+
};
|
|
26
62
|
var ALL_APPS = {
|
|
27
63
|
"authentication": {
|
|
28
|
-
type: "app",
|
|
29
64
|
displayName: "Authentication",
|
|
30
65
|
subtitle: "User sign-in and account management",
|
|
31
66
|
tags: ["auth", "security"],
|
|
32
67
|
stage: "stable"
|
|
33
68
|
},
|
|
34
69
|
"teams": {
|
|
35
|
-
type: "app",
|
|
36
70
|
displayName: "Teams",
|
|
37
71
|
subtitle: "Team collaboration and management",
|
|
38
|
-
tags: ["
|
|
72
|
+
tags: ["auth", "security"],
|
|
39
73
|
stage: "stable"
|
|
40
74
|
},
|
|
41
75
|
"rbac": {
|
|
42
|
-
type: "app",
|
|
43
76
|
displayName: "RBAC",
|
|
44
77
|
subtitle: "Role-based access control and permissions",
|
|
45
|
-
tags: ["
|
|
78
|
+
tags: ["auth", "security"],
|
|
46
79
|
stage: "stable"
|
|
47
80
|
},
|
|
48
81
|
"api-keys": {
|
|
49
|
-
type: "app",
|
|
50
82
|
displayName: "API Keys",
|
|
51
83
|
subtitle: "API key generation and management",
|
|
52
|
-
tags: ["
|
|
84
|
+
tags: ["auth", "security", "developers"],
|
|
53
85
|
stage: "stable"
|
|
54
86
|
},
|
|
55
87
|
"payments": {
|
|
56
|
-
type: "app",
|
|
57
88
|
displayName: "Payments",
|
|
58
89
|
subtitle: "Payment processing and subscription management",
|
|
59
|
-
tags: ["
|
|
90
|
+
tags: ["operations", "gtm"],
|
|
60
91
|
stage: "stable"
|
|
61
92
|
},
|
|
62
93
|
"emails": {
|
|
63
|
-
type: "app",
|
|
64
94
|
displayName: "Emails",
|
|
65
95
|
subtitle: "Email template configuration and management",
|
|
66
|
-
tags: ["
|
|
96
|
+
tags: ["comms"],
|
|
67
97
|
stage: "stable"
|
|
68
98
|
},
|
|
69
99
|
"email-api": {
|
|
70
|
-
type: "app",
|
|
71
100
|
displayName: "Email API",
|
|
72
101
|
subtitle: "Programmatic email sending and delivery",
|
|
73
|
-
tags: ["
|
|
102
|
+
tags: ["comms", "developers", "expert"],
|
|
74
103
|
stage: "alpha"
|
|
75
104
|
},
|
|
76
105
|
"data-vault": {
|
|
77
|
-
type: "app",
|
|
78
106
|
displayName: "Data Vault",
|
|
79
107
|
subtitle: "Secure storage for sensitive user data",
|
|
80
108
|
tags: ["security", "storage"],
|
|
81
|
-
stage: "
|
|
109
|
+
stage: "beta"
|
|
82
110
|
},
|
|
83
111
|
"workflows": {
|
|
84
|
-
type: "app",
|
|
85
112
|
displayName: "Workflows",
|
|
86
113
|
subtitle: "Automated business process orchestration",
|
|
87
|
-
tags: ["automation"
|
|
114
|
+
tags: ["automation"],
|
|
88
115
|
stage: "beta"
|
|
89
116
|
},
|
|
90
117
|
"webhooks": {
|
|
91
|
-
type: "app",
|
|
92
118
|
displayName: "Webhooks",
|
|
93
119
|
subtitle: "Real-time event notifications and integrations",
|
|
94
|
-
tags: ["
|
|
120
|
+
tags: ["developers"],
|
|
95
121
|
stage: "stable"
|
|
96
122
|
},
|
|
97
123
|
"tv-mode": {
|
|
98
|
-
type: "app",
|
|
99
124
|
displayName: "TV mode",
|
|
100
125
|
subtitle: "Dashboard display for large screens",
|
|
101
|
-
tags: ["
|
|
126
|
+
tags: ["various"],
|
|
102
127
|
stage: "alpha"
|
|
103
128
|
},
|
|
104
129
|
"launch-checklist": {
|
|
105
|
-
type: "app",
|
|
106
130
|
displayName: "Launch Checklist",
|
|
107
131
|
subtitle: "Pre-launch verification and readiness checks",
|
|
108
|
-
tags: ["
|
|
109
|
-
stage: "
|
|
132
|
+
tags: ["various"],
|
|
133
|
+
stage: "stable"
|
|
110
134
|
},
|
|
111
135
|
"catalyst": {
|
|
112
|
-
type: "app",
|
|
113
136
|
displayName: "Catalyst",
|
|
114
137
|
subtitle: "Project scaffolding and rapid development",
|
|
115
|
-
tags: ["
|
|
138
|
+
tags: ["various"],
|
|
116
139
|
stage: "alpha"
|
|
117
140
|
},
|
|
118
141
|
"neon": {
|
|
119
|
-
type: "integration",
|
|
120
142
|
displayName: "Neon",
|
|
121
143
|
subtitle: "Serverless Postgres database integration",
|
|
122
|
-
tags: ["
|
|
144
|
+
tags: ["integration", "storage"],
|
|
123
145
|
stage: "alpha"
|
|
124
146
|
},
|
|
125
147
|
"convex": {
|
|
126
|
-
type: "integration",
|
|
127
148
|
displayName: "Convex",
|
|
128
149
|
subtitle: "Real-time backend platform integration",
|
|
129
|
-
tags: ["
|
|
150
|
+
tags: ["integration", "storage"],
|
|
130
151
|
stage: "alpha"
|
|
131
152
|
}
|
|
132
153
|
};
|
|
133
154
|
// Annotate the CommonJS export names for ESM import in node:
|
|
134
155
|
0 && (module.exports = {
|
|
135
|
-
ALL_APPS
|
|
156
|
+
ALL_APPS,
|
|
157
|
+
ALL_APP_TAGS
|
|
136
158
|
});
|
|
137
159
|
//# sourceMappingURL=apps-config.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/apps/apps-config.ts"],"sourcesContent":["type
|
|
1
|
+
{"version":3,"sources":["../../src/apps/apps-config.ts"],"sourcesContent":["type AppTag = {\n displayName: string,\n};\n\nexport const ALL_APP_TAGS = {\n \"expert\": {\n displayName: \"Expert\",\n },\n \"integration\": {\n displayName: \"Integrations\",\n },\n \"auth\": {\n displayName: \"Authentication\",\n },\n \"developers\": {\n displayName: \"For Developers\",\n },\n \"security\": {\n displayName: \"Security\",\n },\n \"operations\": {\n displayName: \"For Operations\",\n },\n \"gtm\": {\n displayName: \"Go-to-market\",\n },\n \"comms\": {\n displayName: \"Communications\",\n },\n \"automation\": {\n displayName: \"Automation\",\n },\n \"storage\": {\n displayName: \"Storage & Databases\",\n },\n \"various\": {\n displayName: \"Various\",\n },\n} as const satisfies Record<string, AppTag>;\n\ntype App = {\n displayName: string,\n subtitle: string,\n tags: (keyof typeof ALL_APP_TAGS)[],\n stage: \"alpha\" | \"beta\" | \"stable\",\n};\n\nexport type AppId = keyof typeof ALL_APPS;\n\nexport const ALL_APPS = {\n \"authentication\": {\n displayName: \"Authentication\",\n subtitle: \"User sign-in and account management\",\n tags: [\"auth\", \"security\"],\n stage: \"stable\",\n },\n \"teams\": {\n displayName: \"Teams\",\n subtitle: \"Team collaboration and management\",\n tags: [\"auth\", \"security\"],\n stage: \"stable\",\n },\n \"rbac\": {\n displayName: \"RBAC\",\n subtitle: \"Role-based access control and permissions\",\n tags: [\"auth\", \"security\"],\n stage: \"stable\",\n },\n \"api-keys\": {\n displayName: \"API Keys\",\n subtitle: \"API key generation and management\",\n tags: [\"auth\", \"security\", \"developers\"],\n stage: \"stable\",\n },\n \"payments\": {\n displayName: \"Payments\",\n subtitle: \"Payment processing and subscription management\",\n tags: [\"operations\", \"gtm\"],\n stage: \"stable\",\n },\n \"emails\": {\n displayName: \"Emails\",\n subtitle: \"Email template configuration and management\",\n tags: [\"comms\"],\n stage: \"stable\",\n },\n \"email-api\": {\n displayName: \"Email API\",\n subtitle: \"Programmatic email sending and delivery\",\n tags: [\"comms\", \"developers\", \"expert\"],\n stage: \"alpha\",\n },\n \"data-vault\": {\n displayName: \"Data Vault\",\n subtitle: \"Secure storage for sensitive user data\",\n tags: [\"security\", \"storage\"],\n stage: \"beta\",\n },\n \"workflows\": {\n displayName: \"Workflows\",\n subtitle: \"Automated business process orchestration\",\n tags: [\"automation\"],\n stage: \"beta\",\n },\n \"webhooks\": {\n displayName: \"Webhooks\",\n subtitle: \"Real-time event notifications and integrations\",\n tags: [\"developers\"],\n stage: \"stable\",\n },\n \"tv-mode\": {\n displayName: \"TV mode\",\n subtitle: \"Dashboard display for large screens\",\n tags: [\"various\"],\n stage: \"alpha\",\n },\n \"launch-checklist\": {\n displayName: \"Launch Checklist\",\n subtitle: \"Pre-launch verification and readiness checks\",\n tags: [\"various\"],\n stage: \"stable\",\n },\n \"catalyst\": {\n displayName: \"Catalyst\",\n subtitle: \"Project scaffolding and rapid development\",\n tags: [\"various\"],\n stage: \"alpha\",\n },\n \"neon\": {\n displayName: \"Neon\",\n subtitle: \"Serverless Postgres database integration\",\n tags: [\"integration\", \"storage\"],\n stage: \"alpha\",\n },\n \"convex\": {\n displayName: \"Convex\",\n subtitle: \"Real-time backend platform integration\",\n tags: [\"integration\", \"storage\"],\n stage: \"alpha\",\n },\n} as const satisfies Record<string, App>;\n"],"mappings":"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","names":[]}
|