@microsoft/rayfin-client 1.33.0-beta.0 → 1.33.0-beta.1

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/client.d.ts CHANGED
@@ -50,7 +50,7 @@ export declare abstract class RayfinClientBase<TSchema extends EntitySchema = Re
50
50
  * User: User;
51
51
  * Organization: Organization;
52
52
  * }>({
53
- * baseUrl: 'http://localhost:5000',
53
+ * baseUrl: 'http://localhost:5168',
54
54
  * publishableKey: 'pk-Abc123-def456-GHI78'
55
55
  * });
56
56
  *
@@ -76,7 +76,7 @@ export declare class RayfinClient<TSchema extends EntitySchema = Record<string,
76
76
  * @example
77
77
  * ```typescript
78
78
  * const client = new RayfinServerClient<{ Todo: Todo }>({
79
- * baseUrl: process.env.RAYFIN_BASE_URL!,
79
+ * baseUrl: process.env.RAYFIN_API_URL!,
80
80
  * publishableKey: process.env.RAYFIN_PUBLISHABLE_KEY!,
81
81
  * accessToken: () => incomingRequest.headers.authorization,
82
82
  * });
package/dist/client.js CHANGED
@@ -57,7 +57,7 @@ export class RayfinClientBase {
57
57
  * User: User;
58
58
  * Organization: Organization;
59
59
  * }>({
60
- * baseUrl: 'http://localhost:5000',
60
+ * baseUrl: 'http://localhost:5168',
61
61
  * publishableKey: 'pk-Abc123-def456-GHI78'
62
62
  * });
63
63
  *
@@ -88,7 +88,7 @@ export class RayfinClient extends RayfinClientBase {
88
88
  * @example
89
89
  * ```typescript
90
90
  * const client = new RayfinServerClient<{ Todo: Todo }>({
91
- * baseUrl: process.env.RAYFIN_BASE_URL!,
91
+ * baseUrl: process.env.RAYFIN_API_URL!,
92
92
  * publishableKey: process.env.RAYFIN_PUBLISHABLE_KEY!,
93
93
  * accessToken: () => incomingRequest.headers.authorization,
94
94
  * });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/rayfin-client",
3
- "version": "1.33.0-beta.0",
3
+ "version": "1.33.0-beta.1",
4
4
  "description": "Main client SDK for Rayfin services",
5
5
  "type": "module",
6
6
  "exports": {
@@ -21,10 +21,10 @@
21
21
  "assets/docs"
22
22
  ],
23
23
  "dependencies": {
24
- "@microsoft/rayfin-auth": "1.33.0-beta.0",
25
- "@microsoft/rayfin-data": "1.33.0-beta.0",
26
- "@microsoft/rayfin-lib": "1.33.0-beta.0",
27
- "@microsoft/rayfin-functions": "1.33.0-beta.0"
24
+ "@microsoft/rayfin-auth": "1.33.0-beta.1",
25
+ "@microsoft/rayfin-data": "1.33.0-beta.1",
26
+ "@microsoft/rayfin-lib": "1.33.0-beta.1",
27
+ "@microsoft/rayfin-functions": "1.33.0-beta.1"
28
28
  },
29
29
  "devDependencies": {
30
30
  "typescript": "^5.8.3",