@markdy/stdlib-systems 0.8.2 → 0.8.4

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/index.d.ts CHANGED
@@ -1,8 +1,6 @@
1
1
  export { TECHNICAL_NODE_TYPES, VISUAL_PRIMITIVE_TYPES } from '@markdy/core';
2
2
 
3
3
  declare const SYSTEM_NODE_TYPES: readonly ["service", "api", "microservice", "backend", "server", "worker", "job", "scheduler", "cron", "batch", "function", "lambda", "edge", "controller", "handler", "repository", "module", "package", "library", "sdk", "cli", "runtime", "process", "client", "user", "browser", "web", "mobile", "desktop", "frontend", "app", "page", "view", "component", "store", "db", "database", "sql", "nosql", "table", "index", "warehouse", "lake", "object_store", "bucket", "blob", "volume", "disk", "search", "cache", "queue", "topic", "stream", "event", "event_bus", "bus", "broker", "pubsub", "kafka", "producer", "consumer", "dead_letter", "dlq", "webhook", "cloud", "region", "vpc", "subnet", "network", "internet", "dns", "cdn", "proxy", "gateway", "api_gateway", "load_balancer", "reverse_proxy", "router", "switch", "nat", "firewall", "waf", "vpn", "bastion", "container", "cluster", "pod", "node", "deployment", "replicaset", "statefulset", "daemonset", "namespace", "ingress", "service_mesh", "sidecar", "image", "registry", "docker", "compose", "helm", "chart", "configmap", "pvc", "auth", "identity", "oauth", "oidc", "jwt", "session", "policy", "role", "permission", "vault", "secret", "key", "certificate", "repo", "branch", "commit", "pipeline", "workflow", "runner", "build", "test", "artifact", "deploy", "release", "environment", "preview", "monitor", "metrics", "logs", "trace", "alert", "dashboard", "probe", "slo", "start", "end", "state", "decision", "condition", "step", "loop", "sequence", "participant", "replica", "shard", "leader", "follower", "quorum", "consensus", "lock", "class", "interface", "method", "object", "enum", "type", "panel", "surface", "terminal", "metric", "stat", "grid", "matrix", "lane", "track", "marker", "dot", "token_strip", "chips", "glyph_card", "glyph"];
4
- /** Backwards-compatible alias for the pre-0.8 export name. */
5
- declare const SYSTEM_ACTOR_TYPES: readonly ["service", "api", "microservice", "backend", "server", "worker", "job", "scheduler", "cron", "batch", "function", "lambda", "edge", "controller", "handler", "repository", "module", "package", "library", "sdk", "cli", "runtime", "process", "client", "user", "browser", "web", "mobile", "desktop", "frontend", "app", "page", "view", "component", "store", "db", "database", "sql", "nosql", "table", "index", "warehouse", "lake", "object_store", "bucket", "blob", "volume", "disk", "search", "cache", "queue", "topic", "stream", "event", "event_bus", "bus", "broker", "pubsub", "kafka", "producer", "consumer", "dead_letter", "dlq", "webhook", "cloud", "region", "vpc", "subnet", "network", "internet", "dns", "cdn", "proxy", "gateway", "api_gateway", "load_balancer", "reverse_proxy", "router", "switch", "nat", "firewall", "waf", "vpn", "bastion", "container", "cluster", "pod", "node", "deployment", "replicaset", "statefulset", "daemonset", "namespace", "ingress", "service_mesh", "sidecar", "image", "registry", "docker", "compose", "helm", "chart", "configmap", "pvc", "auth", "identity", "oauth", "oidc", "jwt", "session", "policy", "role", "permission", "vault", "secret", "key", "certificate", "repo", "branch", "commit", "pipeline", "workflow", "runner", "build", "test", "artifact", "deploy", "release", "environment", "preview", "monitor", "metrics", "logs", "trace", "alert", "dashboard", "probe", "slo", "start", "end", "state", "decision", "condition", "step", "loop", "sequence", "participant", "replica", "shard", "leader", "follower", "quorum", "consensus", "lock", "class", "interface", "method", "object", "enum", "type", "panel", "surface", "terminal", "metric", "stat", "grid", "matrix", "lane", "track", "marker", "dot", "token_strip", "chips", "glyph_card", "glyph"];
6
4
  declare const SYSTEM_FLOW_ACTIONS: readonly ["request", "response", "event", "dependency"];
7
5
  interface SystemsPack {
8
6
  name: string;
@@ -11,4 +9,4 @@ interface SystemsPack {
11
9
  }
12
10
  declare const systemsPack: SystemsPack;
13
11
 
14
- export { SYSTEM_ACTOR_TYPES, SYSTEM_FLOW_ACTIONS, SYSTEM_NODE_TYPES, type SystemsPack, systemsPack };
12
+ export { SYSTEM_FLOW_ACTIONS, SYSTEM_NODE_TYPES, type SystemsPack, systemsPack };
package/dist/index.js CHANGED
@@ -5,7 +5,6 @@ var SYSTEM_NODE_TYPES = [
5
5
  ...TECHNICAL_NODE_TYPES,
6
6
  ...VISUAL_PRIMITIVE_TYPES
7
7
  ];
8
- var SYSTEM_ACTOR_TYPES = SYSTEM_NODE_TYPES;
9
8
  var SYSTEM_FLOW_ACTIONS = ["request", "response", "event", "dependency"];
10
9
  var systemsPack = {
11
10
  name: "systems",
@@ -13,7 +12,6 @@ var systemsPack = {
13
12
  actions: SYSTEM_FLOW_ACTIONS
14
13
  };
15
14
  export {
16
- SYSTEM_ACTOR_TYPES,
17
15
  SYSTEM_FLOW_ACTIONS,
18
16
  SYSTEM_NODE_TYPES,
19
17
  TECHNICAL_NODE_TYPES2 as TECHNICAL_NODE_TYPES,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markdy/stdlib-systems",
3
- "version": "0.8.2",
3
+ "version": "0.8.4",
4
4
  "description": "System-diagram node vocabulary for Markdy (re-exported from @markdy/core).",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -40,7 +40,7 @@
40
40
  "access": "public"
41
41
  },
42
42
  "dependencies": {
43
- "@markdy/core": "0.8.2"
43
+ "@markdy/core": "0.8.4"
44
44
  },
45
45
  "devDependencies": {
46
46
  "tsup": "^8.5.1",