@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.
Files changed (56) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/apps/apps-config.d.mts +52 -31
  3. package/dist/apps/apps-config.d.ts +52 -31
  4. package/dist/apps/apps-config.js +54 -32
  5. package/dist/apps/apps-config.js.map +1 -1
  6. package/dist/config/schema.d.mts +248 -248
  7. package/dist/config/schema.d.ts +248 -248
  8. package/dist/config/schema.js +1 -1
  9. package/dist/config/schema.js.map +1 -1
  10. package/dist/esm/apps/apps-config.js +52 -31
  11. package/dist/esm/apps/apps-config.js.map +1 -1
  12. package/dist/esm/config/schema.js +1 -1
  13. package/dist/esm/config/schema.js.map +1 -1
  14. package/dist/esm/interface/client-interface.js +18 -16
  15. package/dist/esm/interface/client-interface.js.map +1 -1
  16. package/dist/esm/utils/caches.js +6 -2
  17. package/dist/esm/utils/caches.js.map +1 -1
  18. package/dist/esm/utils/globals.js +9 -1
  19. package/dist/esm/utils/globals.js.map +1 -1
  20. package/dist/esm/utils/react.js +12 -6
  21. package/dist/esm/utils/react.js.map +1 -1
  22. package/dist/esm/utils/regex.js +13 -0
  23. package/dist/esm/utils/regex.js.map +1 -0
  24. package/dist/esm/utils/urls.js +10 -0
  25. package/dist/esm/utils/urls.js.map +1 -1
  26. package/dist/index.d.mts +1 -1
  27. package/dist/index.d.ts +1 -1
  28. package/dist/interface/admin-interface.d.mts +1 -1
  29. package/dist/interface/admin-interface.d.ts +1 -1
  30. package/dist/interface/client-interface.d.mts +1 -1
  31. package/dist/interface/client-interface.d.ts +1 -1
  32. package/dist/interface/client-interface.js +18 -16
  33. package/dist/interface/client-interface.js.map +1 -1
  34. package/dist/interface/server-interface.d.mts +1 -1
  35. package/dist/interface/server-interface.d.ts +1 -1
  36. package/dist/utils/caches.d.mts +4 -2
  37. package/dist/utils/caches.d.ts +4 -2
  38. package/dist/utils/caches.js +6 -2
  39. package/dist/utils/caches.js.map +1 -1
  40. package/dist/utils/globals.d.mts +3 -1
  41. package/dist/utils/globals.d.ts +3 -1
  42. package/dist/utils/globals.js +12 -2
  43. package/dist/utils/globals.js.map +1 -1
  44. package/dist/utils/react.d.mts +2 -1
  45. package/dist/utils/react.d.ts +2 -1
  46. package/dist/utils/react.js +13 -6
  47. package/dist/utils/react.js.map +1 -1
  48. package/dist/utils/regex.d.mts +3 -0
  49. package/dist/utils/regex.d.ts +3 -0
  50. package/dist/utils/regex.js +38 -0
  51. package/dist/utils/regex.js.map +1 -0
  52. package/dist/utils/urls.d.mts +3 -1
  53. package/dist/utils/urls.d.ts +3 -1
  54. package/dist/utils/urls.js +12 -0
  55. package/dist/utils/urls.js.map +1 -1
  56. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @stackframe/stack-shared
2
2
 
3
+ ## 2.8.44
4
+
5
+ ### Patch Changes
6
+
7
+ - Various changes
8
+
3
9
  ## 2.8.43
4
10
 
5
11
  ## 2.8.42
@@ -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: ["collaboration", "organization"];
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: ["security", "permissions"];
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: ["api", "security"];
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: ["billing", "monetization"];
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: ["communication", "templates"];
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: ["api", "communication"];
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: "stable";
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", "processes"];
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: ["integration", "events"];
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: ["display", "monitoring"];
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: ["deployment", "verification"];
84
- readonly stage: "alpha";
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: ["development", "tooling"];
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: ["database", "integration"];
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: ["database", "integration", "realtime"];
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: ["collaboration", "organization"];
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: ["security", "permissions"];
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: ["api", "security"];
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: ["billing", "monetization"];
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: ["communication", "templates"];
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: ["api", "communication"];
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: "stable";
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", "processes"];
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: ["integration", "events"];
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: ["display", "monitoring"];
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: ["deployment", "verification"];
84
- readonly stage: "alpha";
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: ["development", "tooling"];
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: ["database", "integration"];
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: ["database", "integration", "realtime"];
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 };
@@ -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: ["collaboration", "organization"],
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: ["security", "permissions"],
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: ["api", "security"],
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: ["billing", "monetization"],
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: ["communication", "templates"],
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: ["api", "communication"],
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: "stable"
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", "processes"],
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: ["integration", "events"],
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: ["display", "monitoring"],
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: ["deployment", "verification"],
109
- stage: "alpha"
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: ["development", "tooling"],
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: ["database", "integration"],
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: ["database", "integration", "realtime"],
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 App = {\n type: \"app\" | \"integration\",\n displayName: string,\n subtitle: string,\n tags: string[],\n stage: \"alpha\" | \"beta\" | \"stable\",\n};\n\nexport const ALL_APPS = {\n \"authentication\": {\n type: \"app\",\n displayName: \"Authentication\",\n subtitle: \"User sign-in and account management\",\n tags: [\"auth\", \"security\"],\n stage: \"stable\",\n },\n \"teams\": {\n type: \"app\",\n displayName: \"Teams\",\n subtitle: \"Team collaboration and management\",\n tags: [\"collaboration\", \"organization\"],\n stage: \"stable\",\n },\n \"rbac\": {\n type: \"app\",\n displayName: \"RBAC\",\n subtitle: \"Role-based access control and permissions\",\n tags: [\"security\", \"permissions\"],\n stage: \"stable\",\n },\n \"api-keys\": {\n type: \"app\",\n displayName: \"API Keys\",\n subtitle: \"API key generation and management\",\n tags: [\"api\", \"security\"],\n stage: \"stable\",\n },\n \"payments\": {\n type: \"app\",\n displayName: \"Payments\",\n subtitle: \"Payment processing and subscription management\",\n tags: [\"billing\", \"monetization\"],\n stage: \"stable\",\n },\n \"emails\": {\n type: \"app\",\n displayName: \"Emails\",\n subtitle: \"Email template configuration and management\",\n tags: [\"communication\", \"templates\"],\n stage: \"stable\",\n },\n \"email-api\": {\n type: \"app\",\n displayName: \"Email API\",\n subtitle: \"Programmatic email sending and delivery\",\n tags: [\"api\", \"communication\"],\n stage: \"alpha\",\n },\n \"data-vault\": {\n type: \"app\",\n displayName: \"Data Vault\",\n subtitle: \"Secure storage for sensitive user data\",\n tags: [\"security\", \"storage\"],\n stage: \"stable\",\n },\n \"workflows\": {\n type: \"app\",\n displayName: \"Workflows\",\n subtitle: \"Automated business process orchestration\",\n tags: [\"automation\", \"processes\"],\n stage: \"beta\",\n },\n \"webhooks\": {\n type: \"app\",\n displayName: \"Webhooks\",\n subtitle: \"Real-time event notifications and integrations\",\n tags: [\"integration\", \"events\"],\n stage: \"stable\",\n },\n \"tv-mode\": {\n type: \"app\",\n displayName: \"TV mode\",\n subtitle: \"Dashboard display for large screens\",\n tags: [\"display\", \"monitoring\"],\n stage: \"alpha\",\n },\n \"launch-checklist\": {\n type: \"app\",\n displayName: \"Launch Checklist\",\n subtitle: \"Pre-launch verification and readiness checks\",\n tags: [\"deployment\", \"verification\"],\n stage: \"alpha\",\n },\n \"catalyst\": {\n type: \"app\",\n displayName: \"Catalyst\",\n subtitle: \"Project scaffolding and rapid development\",\n tags: [\"development\", \"tooling\"],\n stage: \"alpha\",\n },\n \"neon\": {\n type: \"integration\",\n displayName: \"Neon\",\n subtitle: \"Serverless Postgres database integration\",\n tags: [\"database\", \"integration\"],\n stage: \"alpha\",\n },\n \"convex\": {\n type: \"integration\",\n displayName: \"Convex\",\n subtitle: \"Real-time backend platform integration\",\n tags: [\"database\", \"integration\", \"realtime\"],\n stage: \"alpha\",\n },\n} as const satisfies Record<string, App>;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAQO,IAAM,WAAW;AAAA,EACtB,kBAAkB;AAAA,IAChB,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,QAAQ,UAAU;AAAA,IACzB,OAAO;AAAA,EACT;AAAA,EACA,SAAS;AAAA,IACP,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,iBAAiB,cAAc;AAAA,IACtC,OAAO;AAAA,EACT;AAAA,EACA,QAAQ;AAAA,IACN,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,YAAY,aAAa;AAAA,IAChC,OAAO;AAAA,EACT;AAAA,EACA,YAAY;AAAA,IACV,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,OAAO,UAAU;AAAA,IACxB,OAAO;AAAA,EACT;AAAA,EACA,YAAY;AAAA,IACV,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,WAAW,cAAc;AAAA,IAChC,OAAO;AAAA,EACT;AAAA,EACA,UAAU;AAAA,IACR,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,iBAAiB,WAAW;AAAA,IACnC,OAAO;AAAA,EACT;AAAA,EACA,aAAa;AAAA,IACX,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,OAAO,eAAe;AAAA,IAC7B,OAAO;AAAA,EACT;AAAA,EACA,cAAc;AAAA,IACZ,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,YAAY,SAAS;AAAA,IAC5B,OAAO;AAAA,EACT;AAAA,EACA,aAAa;AAAA,IACX,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,cAAc,WAAW;AAAA,IAChC,OAAO;AAAA,EACT;AAAA,EACA,YAAY;AAAA,IACV,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,eAAe,QAAQ;AAAA,IAC9B,OAAO;AAAA,EACT;AAAA,EACA,WAAW;AAAA,IACT,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,WAAW,YAAY;AAAA,IAC9B,OAAO;AAAA,EACT;AAAA,EACA,oBAAoB;AAAA,IAClB,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,cAAc,cAAc;AAAA,IACnC,OAAO;AAAA,EACT;AAAA,EACA,YAAY;AAAA,IACV,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,eAAe,SAAS;AAAA,IAC/B,OAAO;AAAA,EACT;AAAA,EACA,QAAQ;AAAA,IACN,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,YAAY,aAAa;AAAA,IAChC,OAAO;AAAA,EACT;AAAA,EACA,UAAU;AAAA,IACR,MAAM;AAAA,IACN,aAAa;AAAA,IACb,UAAU;AAAA,IACV,MAAM,CAAC,YAAY,eAAe,UAAU;AAAA,IAC5C,OAAO;AAAA,EACT;AACF;","names":[]}
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":[]}