@microsoft/rayfin-client 1.36.0-alpha.1620 → 1.36.0-alpha.1675
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.
|
@@ -6,7 +6,7 @@ export { ServicePlugin, type TServiceClasses, type ServicePluginFactory as Servi
|
|
|
6
6
|
* @alpha
|
|
7
7
|
* @internal
|
|
8
8
|
*/
|
|
9
|
-
export declare class ExtendableRayfinClient<TSchema extends Record<string, any> = Record<string, any>, TServices extends Record<string,
|
|
9
|
+
export declare class ExtendableRayfinClient<TSchema extends Record<string, any> = Record<string, any>, TServices extends Record<string, object> = Record<string, object>> extends RayfinClient<TSchema> {
|
|
10
10
|
private services;
|
|
11
11
|
protected constructor(config: RayfinClientConfig & {
|
|
12
12
|
services?: TServiceClasses<TServices>;
|
|
@@ -20,7 +20,7 @@ export declare class ExtendableRayfinClient<TSchema extends Record<string, any>
|
|
|
20
20
|
* @param services - The custom services to extend the client with.
|
|
21
21
|
* @returns An instance of ExtendableRayfinClient with the specified services.
|
|
22
22
|
*/
|
|
23
|
-
static create<TSchema extends Record<string, any>, TServices extends Record<string,
|
|
23
|
+
static create<TSchema extends Record<string, any>, TServices extends Record<string, object>>(config: RayfinClientConfig & {
|
|
24
24
|
schema?: TSchema;
|
|
25
25
|
} & {
|
|
26
26
|
services?: TServiceClasses<TServices>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rayfin-client",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.36.0-alpha.
|
|
4
|
+
"version": "1.36.0-alpha.1675",
|
|
5
5
|
"description": "Main client SDK for Rayfin services",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
"assets/docs"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@microsoft/rayfin-auth": "1.36.0-alpha.
|
|
27
|
-
"@microsoft/rayfin-connectors": "1.36.0-alpha.
|
|
28
|
-
"@microsoft/rayfin-
|
|
29
|
-
"@microsoft/rayfin-
|
|
30
|
-
"@microsoft/rayfin-functions": "1.36.0-alpha.
|
|
26
|
+
"@microsoft/rayfin-auth": "1.36.0-alpha.1675",
|
|
27
|
+
"@microsoft/rayfin-connectors": "1.36.0-alpha.1675",
|
|
28
|
+
"@microsoft/rayfin-lib": "1.36.0-alpha.1675",
|
|
29
|
+
"@microsoft/rayfin-data": "1.36.0-alpha.1675",
|
|
30
|
+
"@microsoft/rayfin-functions": "1.36.0-alpha.1675"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"typescript": "^5.8.3",
|