@microsoft/rayfin-docs 1.35.0-alpha.1541 → 1.35.0-beta.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "generatedAt": "2026-05-07T05:00:00Z",
3
+ "generatedAt": "2026-08-26T00:00:00Z",
4
4
  "packages": [
5
5
  {
6
6
  "name": "@microsoft/rayfin-core",
@@ -55,8 +55,37 @@
55
55
  {
56
56
  "name": "@microsoft/rayfin-functions",
57
57
  "kind": "sdk",
58
- "summary": "TypeScript helpers for function-style workflows on top of Rayfin core.",
59
- "topics": ["functions", "serverless", "azure-functions", "workflow"],
58
+ "stability": "experimental",
59
+ "summary": "Experimental — client-side surface for invoking Rayfin user data functions from app code. Provides `FunctionClient` and `FunctionsSchema` behind `client.functions`. Authoring handlers is the separate `@microsoft/fabric-user-data-functions` package.",
60
+ "topics": [
61
+ "functions",
62
+ "udf",
63
+ "invoke",
64
+ "client",
65
+ "function-client",
66
+ "functions-schema",
67
+ "serverless",
68
+ "workflow"
69
+ ],
70
+ "modules": []
71
+ },
72
+ {
73
+ "name": "@microsoft/fabric-user-data-functions",
74
+ "kind": "sdk",
75
+ "stability": "experimental",
76
+ "summary": "Experimental — authoring surface and Azure Functions worker extension for Microsoft Fabric User Data Functions. Provides `udf.func()` registration, `RayfinContext` (data client, tokens, secrets), `AudienceType` connections, and the typegen that emits `types.ts`. Scaffolded by `rayfin functions init`; import `RayfinContext` from here, not from `@microsoft/rayfin-functions`.",
77
+ "topics": [
78
+ "functions",
79
+ "udf",
80
+ "user-data-functions",
81
+ "authoring",
82
+ "handler",
83
+ "rayfin-context",
84
+ "azure-functions",
85
+ "worker",
86
+ "typegen",
87
+ "fabric"
88
+ ],
60
89
  "modules": []
61
90
  },
62
91
  {
@@ -88,10 +117,25 @@
88
117
  ],
89
118
  "modules": ["rayfin-app-state-fabric"]
90
119
  },
120
+ {
121
+ "name": "@microsoft/rayfin-connectors",
122
+ "kind": "sdk",
123
+ "stability": "experimental",
124
+ "summary": "Experimental — typed runtime for invoking Rayfin function-bridge connectors. Mounted as `client.connectors` by the experimental `ConnectorsRayfinClient`.",
125
+ "topics": [
126
+ "connector",
127
+ "connectors",
128
+ "runtime",
129
+ "function-bridge",
130
+ "typed"
131
+ ],
132
+ "modules": []
133
+ },
91
134
  {
92
135
  "name": "@microsoft/rayfin-connector-fabric-semanticmodel",
93
136
  "kind": "sdk",
94
- "summary": "Fabric semantic model (Power BI dataset) connector. Runs DAX through `executeQuery`, with an optional `resultSetRowCountLimit` row guard.",
137
+ "stability": "experimental",
138
+ "summary": "Experimental — Fabric semantic model (Power BI dataset) connector. Runs DAX through `executeQuery`, with an optional `resultSetRowCountLimit` row guard.",
95
139
  "topics": [
96
140
  "connector",
97
141
  "fabric",
@@ -102,6 +146,22 @@
102
146
  ],
103
147
  "modules": ["rayfin-connector-fabric-semanticmodel"]
104
148
  },
149
+ {
150
+ "name": "@microsoft/rayfin-connector-kusto",
151
+ "kind": "sdk",
152
+ "stability": "experimental",
153
+ "summary": "Experimental — typed connector marker and query-result normalization for Fabric KQL Database connectors.",
154
+ "topics": ["connector", "kusto", "kql", "fabric", "eventhouse", "query"],
155
+ "modules": []
156
+ },
157
+ {
158
+ "name": "@microsoft/rayfin-connector-fabric-graphql",
159
+ "kind": "sdk",
160
+ "stability": "experimental",
161
+ "summary": "Experimental — Category A GraphQL-backed connector types. Provides the `GraphQLBackedConnector` entity marker and CRUD operation gating for the typed connectors surface.",
162
+ "topics": ["connector", "graphql", "fabric", "entity", "crud"],
163
+ "modules": []
164
+ },
105
165
  {
106
166
  "name": "@microsoft/rayfin-cli",
107
167
  "kind": "tool",
package/dist/loader.js CHANGED
@@ -2,6 +2,7 @@ import { existsSync, readFileSync, readdirSync, realpathSync } from 'fs';
2
2
  import { basename, extname, join, relative, sep } from 'path';
3
3
  import { docKindToModule } from './discovery.js';
4
4
  const DEFAULT_MODULES = ['guide', 'host', 'ts-sdk'];
5
+ const UNPUBLISHED_DOC_DIRECTORY_NAMES = new Set(['preview', 'experimental']);
5
6
  function parseFrontMatter(markdown) {
6
7
  const lines = markdown.split(/\r?\n/);
7
8
  if (lines[0]?.trim() !== '---') {
@@ -144,10 +145,9 @@ function collectMarkdownFiles(dir, visited = new Set(), realRoot) {
144
145
  for (const entry of entries) {
145
146
  const fullPath = join(dir, entry.name);
146
147
  if (entry.isDirectory()) {
147
- // Skip `preview` directories entirely. Preview docs are intentionally
148
- // excluded from both the published Docusaurus build and the MCP/docs
149
- // index so that feature-flagged or in-progress content is not surfaced.
150
- if (entry.name === 'preview') {
148
+ // Keep unpublished documentation out of both the published Docusaurus
149
+ // build and the MCP/docs index.
150
+ if (UNPUBLISHED_DOC_DIRECTORY_NAMES.has(entry.name)) {
151
151
  continue;
152
152
  }
153
153
  let realEntryDir;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/rayfin-docs",
3
- "version": "1.35.0-alpha.1541",
3
+ "version": "1.35.0-beta.0",
4
4
  "description": "Rayfin docs indexing and search library — used by the MCP server, CLI, and other doc-facing surfaces",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",