@langchain/google-webauth 2.1.25 → 2.1.26-dev-1773709997654
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/auth.cjs +1 -2
- package/dist/auth.cjs.map +1 -1
- package/dist/auth.js +1 -2
- package/dist/auth.js.map +1 -1
- package/dist/chat_models.cjs +3 -4
- package/dist/chat_models.cjs.map +1 -1
- package/dist/chat_models.js +2 -3
- package/dist/chat_models.js.map +1 -1
- package/dist/embeddings.cjs +2 -3
- package/dist/embeddings.cjs.map +1 -1
- package/dist/embeddings.js +1 -2
- package/dist/embeddings.js.map +1 -1
- package/dist/index.cjs +5 -6
- package/dist/index.js +1 -2
- package/dist/llms.cjs +3 -4
- package/dist/llms.cjs.map +1 -1
- package/dist/llms.js +2 -3
- package/dist/llms.js.map +1 -1
- package/dist/types.cjs +7 -7
- package/dist/types.js +2 -3
- package/dist/utils.cjs +7 -7
- package/dist/utils.js +2 -3
- package/package.json +4 -4
- package/types.cjs +0 -1
- package/types.d.cts +0 -1
- package/types.d.ts +0 -1
- package/types.js +0 -1
- package/utils.cjs +0 -1
- package/utils.d.cts +0 -1
- package/utils.d.ts +0 -1
- package/utils.js +0 -1
package/dist/auth.cjs
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
let _langchain_google_common = require("@langchain/google-common");
|
|
2
2
|
let _langchain_core_utils_env = require("@langchain/core/utils/env");
|
|
3
3
|
let web_auth_library_google = require("web-auth-library/google");
|
|
4
|
-
|
|
5
4
|
//#region src/auth.ts
|
|
6
5
|
var WebGoogleAuth = class extends _langchain_google_common.GoogleAbstractedFetchClient {
|
|
7
6
|
options;
|
|
@@ -30,7 +29,7 @@ var WebGoogleAuth = class extends _langchain_google_common.GoogleAbstractedFetch
|
|
|
30
29
|
return this._request(opts?.url, opts, authHeader);
|
|
31
30
|
}
|
|
32
31
|
};
|
|
33
|
-
|
|
34
32
|
//#endregion
|
|
35
33
|
exports.WebGoogleAuth = WebGoogleAuth;
|
|
34
|
+
|
|
36
35
|
//# sourceMappingURL=auth.cjs.map
|
package/dist/auth.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.cjs","names":["GoogleAbstractedFetchClient"],"sources":["../src/auth.ts"],"sourcesContent":["import { getEnvironmentVariable } from \"@langchain/core/utils/env\";\nimport {\n ensureAuthOptionScopes,\n GoogleAbstractedClientOps,\n GoogleAbstractedFetchClient,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport {\n getAccessToken,\n getCredentials,\n Credentials,\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore CJS type resolution workaround\n} from \"web-auth-library/google\";\n\nexport type WebGoogleAuthOptions = {\n credentials: string | Credentials;\n scope?: string | string[];\n accessToken?: string;\n responseModality?: string;\n};\n\nexport class WebGoogleAuth extends GoogleAbstractedFetchClient {\n options: WebGoogleAuthOptions;\n\n constructor(fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined) {\n super();\n\n const options = fields?.authOptions;\n const accessToken = options?.accessToken;\n\n const credentials =\n options?.credentials ??\n getEnvironmentVariable(\"GOOGLE_WEB_CREDENTIALS\") ??\n getEnvironmentVariable(\"GOOGLE_VERTEX_AI_WEB_CREDENTIALS\");\n if (credentials === undefined)\n throw new Error(\n `Credentials not found. Please set the GOOGLE_WEB_CREDENTIALS environment variable or pass credentials into \"authOptions.credentials\".`\n );\n\n this.options = ensureAuthOptionScopes<WebGoogleAuthOptions>(\n { ...options, accessToken, credentials },\n \"scope\",\n fields?.platformType\n );\n }\n\n get clientType(): string {\n return \"webauth\";\n }\n\n async getProjectId(): Promise<string> {\n const credentials = getCredentials(this.options.credentials);\n return credentials.project_id;\n }\n\n async request(opts: GoogleAbstractedClientOps): Promise<unknown> {\n let { accessToken } = this.options;\n\n if (accessToken === undefined) {\n accessToken = await getAccessToken(this.options);\n }\n\n const authHeader = {\n Authorization: `Bearer ${accessToken}`,\n };\n return this._request(opts?.url, opts, authHeader);\n }\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"auth.cjs","names":["GoogleAbstractedFetchClient"],"sources":["../src/auth.ts"],"sourcesContent":["import { getEnvironmentVariable } from \"@langchain/core/utils/env\";\nimport {\n ensureAuthOptionScopes,\n GoogleAbstractedClientOps,\n GoogleAbstractedFetchClient,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport {\n getAccessToken,\n getCredentials,\n Credentials,\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore CJS type resolution workaround\n} from \"web-auth-library/google\";\n\nexport type WebGoogleAuthOptions = {\n credentials: string | Credentials;\n scope?: string | string[];\n accessToken?: string;\n responseModality?: string;\n};\n\nexport class WebGoogleAuth extends GoogleAbstractedFetchClient {\n options: WebGoogleAuthOptions;\n\n constructor(fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined) {\n super();\n\n const options = fields?.authOptions;\n const accessToken = options?.accessToken;\n\n const credentials =\n options?.credentials ??\n getEnvironmentVariable(\"GOOGLE_WEB_CREDENTIALS\") ??\n getEnvironmentVariable(\"GOOGLE_VERTEX_AI_WEB_CREDENTIALS\");\n if (credentials === undefined)\n throw new Error(\n `Credentials not found. Please set the GOOGLE_WEB_CREDENTIALS environment variable or pass credentials into \"authOptions.credentials\".`\n );\n\n this.options = ensureAuthOptionScopes<WebGoogleAuthOptions>(\n { ...options, accessToken, credentials },\n \"scope\",\n fields?.platformType\n );\n }\n\n get clientType(): string {\n return \"webauth\";\n }\n\n async getProjectId(): Promise<string> {\n const credentials = getCredentials(this.options.credentials);\n return credentials.project_id;\n }\n\n async request(opts: GoogleAbstractedClientOps): Promise<unknown> {\n let { accessToken } = this.options;\n\n if (accessToken === undefined) {\n accessToken = await getAccessToken(this.options);\n }\n\n const authHeader = {\n Authorization: `Bearer ${accessToken}`,\n };\n return this._request(opts?.url, opts, authHeader);\n }\n}\n"],"mappings":";;;;AAsBA,IAAa,gBAAb,cAAmCA,yBAAAA,4BAA4B;CAC7D;CAEA,YAAY,QAA8D;AACxE,SAAO;EAEP,MAAM,UAAU,QAAQ;EACxB,MAAM,cAAc,SAAS;EAE7B,MAAM,cACJ,SAAS,gBAAA,GAAA,0BAAA,wBACc,yBAAyB,KAAA,GAAA,0BAAA,wBACzB,mCAAmC;AAC5D,MAAI,gBAAgB,KAAA,EAClB,OAAM,IAAI,MACR,wIACD;AAEH,OAAK,WAAA,GAAA,yBAAA,wBACH;GAAE,GAAG;GAAS;GAAa;GAAa,EACxC,SACA,QAAQ,aACT;;CAGH,IAAI,aAAqB;AACvB,SAAO;;CAGT,MAAM,eAAgC;AAEpC,UAAA,GAAA,wBAAA,gBADmC,KAAK,QAAQ,YAAY,CACzC;;CAGrB,MAAM,QAAQ,MAAmD;EAC/D,IAAI,EAAE,gBAAgB,KAAK;AAE3B,MAAI,gBAAgB,KAAA,EAClB,eAAc,OAAA,GAAA,wBAAA,gBAAqB,KAAK,QAAQ;EAGlD,MAAM,aAAa,EACjB,eAAe,UAAU,eAC1B;AACD,SAAO,KAAK,SAAS,MAAM,KAAK,MAAM,WAAW"}
|
package/dist/auth.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { GoogleAbstractedFetchClient, ensureAuthOptionScopes } from "@langchain/google-common";
|
|
2
2
|
import { getEnvironmentVariable } from "@langchain/core/utils/env";
|
|
3
3
|
import { getAccessToken, getCredentials } from "web-auth-library/google";
|
|
4
|
-
|
|
5
4
|
//#region src/auth.ts
|
|
6
5
|
var WebGoogleAuth = class extends GoogleAbstractedFetchClient {
|
|
7
6
|
options;
|
|
@@ -30,7 +29,7 @@ var WebGoogleAuth = class extends GoogleAbstractedFetchClient {
|
|
|
30
29
|
return this._request(opts?.url, opts, authHeader);
|
|
31
30
|
}
|
|
32
31
|
};
|
|
33
|
-
|
|
34
32
|
//#endregion
|
|
35
33
|
export { WebGoogleAuth };
|
|
34
|
+
|
|
36
35
|
//# sourceMappingURL=auth.js.map
|
package/dist/auth.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.js","names":[],"sources":["../src/auth.ts"],"sourcesContent":["import { getEnvironmentVariable } from \"@langchain/core/utils/env\";\nimport {\n ensureAuthOptionScopes,\n GoogleAbstractedClientOps,\n GoogleAbstractedFetchClient,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport {\n getAccessToken,\n getCredentials,\n Credentials,\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore CJS type resolution workaround\n} from \"web-auth-library/google\";\n\nexport type WebGoogleAuthOptions = {\n credentials: string | Credentials;\n scope?: string | string[];\n accessToken?: string;\n responseModality?: string;\n};\n\nexport class WebGoogleAuth extends GoogleAbstractedFetchClient {\n options: WebGoogleAuthOptions;\n\n constructor(fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined) {\n super();\n\n const options = fields?.authOptions;\n const accessToken = options?.accessToken;\n\n const credentials =\n options?.credentials ??\n getEnvironmentVariable(\"GOOGLE_WEB_CREDENTIALS\") ??\n getEnvironmentVariable(\"GOOGLE_VERTEX_AI_WEB_CREDENTIALS\");\n if (credentials === undefined)\n throw new Error(\n `Credentials not found. Please set the GOOGLE_WEB_CREDENTIALS environment variable or pass credentials into \"authOptions.credentials\".`\n );\n\n this.options = ensureAuthOptionScopes<WebGoogleAuthOptions>(\n { ...options, accessToken, credentials },\n \"scope\",\n fields?.platformType\n );\n }\n\n get clientType(): string {\n return \"webauth\";\n }\n\n async getProjectId(): Promise<string> {\n const credentials = getCredentials(this.options.credentials);\n return credentials.project_id;\n }\n\n async request(opts: GoogleAbstractedClientOps): Promise<unknown> {\n let { accessToken } = this.options;\n\n if (accessToken === undefined) {\n accessToken = await getAccessToken(this.options);\n }\n\n const authHeader = {\n Authorization: `Bearer ${accessToken}`,\n };\n return this._request(opts?.url, opts, authHeader);\n }\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"auth.js","names":[],"sources":["../src/auth.ts"],"sourcesContent":["import { getEnvironmentVariable } from \"@langchain/core/utils/env\";\nimport {\n ensureAuthOptionScopes,\n GoogleAbstractedClientOps,\n GoogleAbstractedFetchClient,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport {\n getAccessToken,\n getCredentials,\n Credentials,\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore CJS type resolution workaround\n} from \"web-auth-library/google\";\n\nexport type WebGoogleAuthOptions = {\n credentials: string | Credentials;\n scope?: string | string[];\n accessToken?: string;\n responseModality?: string;\n};\n\nexport class WebGoogleAuth extends GoogleAbstractedFetchClient {\n options: WebGoogleAuthOptions;\n\n constructor(fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined) {\n super();\n\n const options = fields?.authOptions;\n const accessToken = options?.accessToken;\n\n const credentials =\n options?.credentials ??\n getEnvironmentVariable(\"GOOGLE_WEB_CREDENTIALS\") ??\n getEnvironmentVariable(\"GOOGLE_VERTEX_AI_WEB_CREDENTIALS\");\n if (credentials === undefined)\n throw new Error(\n `Credentials not found. Please set the GOOGLE_WEB_CREDENTIALS environment variable or pass credentials into \"authOptions.credentials\".`\n );\n\n this.options = ensureAuthOptionScopes<WebGoogleAuthOptions>(\n { ...options, accessToken, credentials },\n \"scope\",\n fields?.platformType\n );\n }\n\n get clientType(): string {\n return \"webauth\";\n }\n\n async getProjectId(): Promise<string> {\n const credentials = getCredentials(this.options.credentials);\n return credentials.project_id;\n }\n\n async request(opts: GoogleAbstractedClientOps): Promise<unknown> {\n let { accessToken } = this.options;\n\n if (accessToken === undefined) {\n accessToken = await getAccessToken(this.options);\n }\n\n const authHeader = {\n Authorization: `Bearer ${accessToken}`,\n };\n return this._request(opts?.url, opts, authHeader);\n }\n}\n"],"mappings":";;;;AAsBA,IAAa,gBAAb,cAAmC,4BAA4B;CAC7D;CAEA,YAAY,QAA8D;AACxE,SAAO;EAEP,MAAM,UAAU,QAAQ;EACxB,MAAM,cAAc,SAAS;EAE7B,MAAM,cACJ,SAAS,eACT,uBAAuB,yBAAyB,IAChD,uBAAuB,mCAAmC;AAC5D,MAAI,gBAAgB,KAAA,EAClB,OAAM,IAAI,MACR,wIACD;AAEH,OAAK,UAAU,uBACb;GAAE,GAAG;GAAS;GAAa;GAAa,EACxC,SACA,QAAQ,aACT;;CAGH,IAAI,aAAqB;AACvB,SAAO;;CAGT,MAAM,eAAgC;AAEpC,SADoB,eAAe,KAAK,QAAQ,YAAY,CACzC;;CAGrB,MAAM,QAAQ,MAAmD;EAC/D,IAAI,EAAE,gBAAgB,KAAK;AAE3B,MAAI,gBAAgB,KAAA,EAClB,eAAc,MAAM,eAAe,KAAK,QAAQ;EAGlD,MAAM,aAAa,EACjB,eAAe,UAAU,eAC1B;AACD,SAAO,KAAK,SAAS,MAAM,KAAK,MAAM,WAAW"}
|
package/dist/chat_models.cjs
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
const require_auth = require(
|
|
1
|
+
const require_auth = require("./auth.cjs");
|
|
2
2
|
let _langchain_google_common = require("@langchain/google-common");
|
|
3
|
-
|
|
4
3
|
//#region src/chat_models.ts
|
|
5
4
|
/**
|
|
6
5
|
* Integration with a chat model.
|
|
@@ -15,13 +14,13 @@ var ChatGoogle = class extends _langchain_google_common.ChatGoogleBase {
|
|
|
15
14
|
model: modelOrFields
|
|
16
15
|
} : modelOrFields ?? {};
|
|
17
16
|
super(fields);
|
|
18
|
-
this._addVersion("@langchain/google-webauth", "2.1.
|
|
17
|
+
this._addVersion("@langchain/google-webauth", "2.1.26-dev-1773709997654");
|
|
19
18
|
}
|
|
20
19
|
buildAbstractedClient(fields) {
|
|
21
20
|
return new require_auth.WebGoogleAuth(fields);
|
|
22
21
|
}
|
|
23
22
|
};
|
|
24
|
-
|
|
25
23
|
//#endregion
|
|
26
24
|
exports.ChatGoogle = ChatGoogle;
|
|
25
|
+
|
|
27
26
|
//# sourceMappingURL=chat_models.cjs.map
|
package/dist/chat_models.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat_models.cjs","names":["ChatGoogleBase","WebGoogleAuth"],"sources":["../src/chat_models.ts"],"sourcesContent":["import {\n ChatGoogleBase,\n ChatGoogleBaseInput,\n GoogleAbstractedClient,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to chat model class.\n */\nexport interface ChatGoogleInput extends ChatGoogleBaseInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with a chat model.\n */\nexport class ChatGoogle\n extends ChatGoogleBase<WebGoogleAuthOptions>\n implements ChatGoogleInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"ChatGoogle\";\n }\n\n constructor(model: string, fields?: Omit<ChatGoogleInput, \"model\">);\n constructor(fields?: ChatGoogleInput);\n constructor(\n modelOrFields?: string | ChatGoogleInput,\n fieldsArg?: Omit<ChatGoogleInput, \"model\">\n ) {\n const fields =\n typeof modelOrFields === \"string\"\n ? { ...(fieldsArg ?? {}), model: modelOrFields }\n : (modelOrFields ?? {});\n super(fields);\n this._addVersion(\"@langchain/google-webauth\", __PKG_VERSION__);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"chat_models.cjs","names":["ChatGoogleBase","WebGoogleAuth"],"sources":["../src/chat_models.ts"],"sourcesContent":["import {\n ChatGoogleBase,\n ChatGoogleBaseInput,\n GoogleAbstractedClient,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to chat model class.\n */\nexport interface ChatGoogleInput extends ChatGoogleBaseInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with a chat model.\n */\nexport class ChatGoogle\n extends ChatGoogleBase<WebGoogleAuthOptions>\n implements ChatGoogleInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"ChatGoogle\";\n }\n\n constructor(model: string, fields?: Omit<ChatGoogleInput, \"model\">);\n constructor(fields?: ChatGoogleInput);\n constructor(\n modelOrFields?: string | ChatGoogleInput,\n fieldsArg?: Omit<ChatGoogleInput, \"model\">\n ) {\n const fields =\n typeof modelOrFields === \"string\"\n ? { ...(fieldsArg ?? {}), model: modelOrFields }\n : (modelOrFields ?? {});\n super(fields);\n this._addVersion(\"@langchain/google-webauth\", __PKG_VERSION__);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;AAgBA,IAAa,aAAb,cACUA,yBAAAA,eAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAKT,YACE,eACA,WACA;EACA,MAAM,SACJ,OAAO,kBAAkB,WACrB;GAAE,GAAI,aAAa,EAAE;GAAG,OAAO;GAAe,GAC7C,iBAAiB,EAAE;AAC1B,QAAM,OAAO;AACb,OAAK,YAAY,6BAAA,2BAA6C;;CAGhE,sBACE,QACwB;AACxB,SAAO,IAAIC,aAAAA,cAAc,OAAO"}
|
package/dist/chat_models.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { WebGoogleAuth } from "./auth.js";
|
|
2
2
|
import { ChatGoogleBase } from "@langchain/google-common";
|
|
3
|
-
|
|
4
3
|
//#region src/chat_models.ts
|
|
5
4
|
/**
|
|
6
5
|
* Integration with a chat model.
|
|
@@ -15,13 +14,13 @@ var ChatGoogle = class extends ChatGoogleBase {
|
|
|
15
14
|
model: modelOrFields
|
|
16
15
|
} : modelOrFields ?? {};
|
|
17
16
|
super(fields);
|
|
18
|
-
this._addVersion("@langchain/google-webauth", "2.1.
|
|
17
|
+
this._addVersion("@langchain/google-webauth", "2.1.26-dev-1773709997654");
|
|
19
18
|
}
|
|
20
19
|
buildAbstractedClient(fields) {
|
|
21
20
|
return new WebGoogleAuth(fields);
|
|
22
21
|
}
|
|
23
22
|
};
|
|
24
|
-
|
|
25
23
|
//#endregion
|
|
26
24
|
export { ChatGoogle };
|
|
25
|
+
|
|
27
26
|
//# sourceMappingURL=chat_models.js.map
|
package/dist/chat_models.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat_models.js","names":[],"sources":["../src/chat_models.ts"],"sourcesContent":["import {\n ChatGoogleBase,\n ChatGoogleBaseInput,\n GoogleAbstractedClient,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to chat model class.\n */\nexport interface ChatGoogleInput extends ChatGoogleBaseInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with a chat model.\n */\nexport class ChatGoogle\n extends ChatGoogleBase<WebGoogleAuthOptions>\n implements ChatGoogleInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"ChatGoogle\";\n }\n\n constructor(model: string, fields?: Omit<ChatGoogleInput, \"model\">);\n constructor(fields?: ChatGoogleInput);\n constructor(\n modelOrFields?: string | ChatGoogleInput,\n fieldsArg?: Omit<ChatGoogleInput, \"model\">\n ) {\n const fields =\n typeof modelOrFields === \"string\"\n ? { ...(fieldsArg ?? {}), model: modelOrFields }\n : (modelOrFields ?? {});\n super(fields);\n this._addVersion(\"@langchain/google-webauth\", __PKG_VERSION__);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"chat_models.js","names":[],"sources":["../src/chat_models.ts"],"sourcesContent":["import {\n ChatGoogleBase,\n ChatGoogleBaseInput,\n GoogleAbstractedClient,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to chat model class.\n */\nexport interface ChatGoogleInput extends ChatGoogleBaseInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with a chat model.\n */\nexport class ChatGoogle\n extends ChatGoogleBase<WebGoogleAuthOptions>\n implements ChatGoogleInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"ChatGoogle\";\n }\n\n constructor(model: string, fields?: Omit<ChatGoogleInput, \"model\">);\n constructor(fields?: ChatGoogleInput);\n constructor(\n modelOrFields?: string | ChatGoogleInput,\n fieldsArg?: Omit<ChatGoogleInput, \"model\">\n ) {\n const fields =\n typeof modelOrFields === \"string\"\n ? { ...(fieldsArg ?? {}), model: modelOrFields }\n : (modelOrFields ?? {});\n super(fields);\n this._addVersion(\"@langchain/google-webauth\", __PKG_VERSION__);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;AAgBA,IAAa,aAAb,cACU,eAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAKT,YACE,eACA,WACA;EACA,MAAM,SACJ,OAAO,kBAAkB,WACrB;GAAE,GAAI,aAAa,EAAE;GAAG,OAAO;GAAe,GAC7C,iBAAiB,EAAE;AAC1B,QAAM,OAAO;AACb,OAAK,YAAY,6BAAA,2BAA6C;;CAGhE,sBACE,QACwB;AACxB,SAAO,IAAI,cAAc,OAAO"}
|
package/dist/embeddings.cjs
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
const require_auth = require(
|
|
1
|
+
const require_auth = require("./auth.cjs");
|
|
2
2
|
let _langchain_google_common = require("@langchain/google-common");
|
|
3
|
-
|
|
4
3
|
//#region src/embeddings.ts
|
|
5
4
|
/**
|
|
6
5
|
* Integration with an LLM.
|
|
@@ -17,7 +16,7 @@ var GoogleEmbeddings = class extends _langchain_google_common.BaseGoogleEmbeddin
|
|
|
17
16
|
return new require_auth.WebGoogleAuth(fields);
|
|
18
17
|
}
|
|
19
18
|
};
|
|
20
|
-
|
|
21
19
|
//#endregion
|
|
22
20
|
exports.GoogleEmbeddings = GoogleEmbeddings;
|
|
21
|
+
|
|
23
22
|
//# sourceMappingURL=embeddings.cjs.map
|
package/dist/embeddings.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"embeddings.cjs","names":["BaseGoogleEmbeddings","WebGoogleAuth"],"sources":["../src/embeddings.ts"],"sourcesContent":["import {\n GoogleAbstractedClient,\n GoogleConnectionParams,\n BaseGoogleEmbeddings,\n BaseGoogleEmbeddingsParams,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to LLM class.\n */\nexport interface GoogleEmbeddingsInput extends BaseGoogleEmbeddingsParams<WebGoogleAuthOptions> {}\n\n/**\n * Integration with an LLM.\n */\nexport class GoogleEmbeddings\n extends BaseGoogleEmbeddings<WebGoogleAuthOptions>\n implements GoogleEmbeddingsInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"GoogleEmbeddings\";\n }\n\n lc_serializable = true;\n\n constructor(fields: GoogleEmbeddingsInput) {\n super(fields);\n }\n\n buildAbstractedClient(\n fields?: GoogleConnectionParams<WebGoogleAuthOptions>\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"embeddings.cjs","names":["BaseGoogleEmbeddings","WebGoogleAuth"],"sources":["../src/embeddings.ts"],"sourcesContent":["import {\n GoogleAbstractedClient,\n GoogleConnectionParams,\n BaseGoogleEmbeddings,\n BaseGoogleEmbeddingsParams,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to LLM class.\n */\nexport interface GoogleEmbeddingsInput extends BaseGoogleEmbeddingsParams<WebGoogleAuthOptions> {}\n\n/**\n * Integration with an LLM.\n */\nexport class GoogleEmbeddings\n extends BaseGoogleEmbeddings<WebGoogleAuthOptions>\n implements GoogleEmbeddingsInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"GoogleEmbeddings\";\n }\n\n lc_serializable = true;\n\n constructor(fields: GoogleEmbeddingsInput) {\n super(fields);\n }\n\n buildAbstractedClient(\n fields?: GoogleConnectionParams<WebGoogleAuthOptions>\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;AAgBA,IAAa,mBAAb,cACUA,yBAAAA,qBAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAGT,kBAAkB;CAElB,YAAY,QAA+B;AACzC,QAAM,OAAO;;CAGf,sBACE,QACwB;AACxB,SAAO,IAAIC,aAAAA,cAAc,OAAO"}
|
package/dist/embeddings.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { WebGoogleAuth } from "./auth.js";
|
|
2
2
|
import { BaseGoogleEmbeddings } from "@langchain/google-common";
|
|
3
|
-
|
|
4
3
|
//#region src/embeddings.ts
|
|
5
4
|
/**
|
|
6
5
|
* Integration with an LLM.
|
|
@@ -17,7 +16,7 @@ var GoogleEmbeddings = class extends BaseGoogleEmbeddings {
|
|
|
17
16
|
return new WebGoogleAuth(fields);
|
|
18
17
|
}
|
|
19
18
|
};
|
|
20
|
-
|
|
21
19
|
//#endregion
|
|
22
20
|
export { GoogleEmbeddings };
|
|
21
|
+
|
|
23
22
|
//# sourceMappingURL=embeddings.js.map
|
package/dist/embeddings.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"embeddings.js","names":[],"sources":["../src/embeddings.ts"],"sourcesContent":["import {\n GoogleAbstractedClient,\n GoogleConnectionParams,\n BaseGoogleEmbeddings,\n BaseGoogleEmbeddingsParams,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to LLM class.\n */\nexport interface GoogleEmbeddingsInput extends BaseGoogleEmbeddingsParams<WebGoogleAuthOptions> {}\n\n/**\n * Integration with an LLM.\n */\nexport class GoogleEmbeddings\n extends BaseGoogleEmbeddings<WebGoogleAuthOptions>\n implements GoogleEmbeddingsInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"GoogleEmbeddings\";\n }\n\n lc_serializable = true;\n\n constructor(fields: GoogleEmbeddingsInput) {\n super(fields);\n }\n\n buildAbstractedClient(\n fields?: GoogleConnectionParams<WebGoogleAuthOptions>\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"embeddings.js","names":[],"sources":["../src/embeddings.ts"],"sourcesContent":["import {\n GoogleAbstractedClient,\n GoogleConnectionParams,\n BaseGoogleEmbeddings,\n BaseGoogleEmbeddingsParams,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to LLM class.\n */\nexport interface GoogleEmbeddingsInput extends BaseGoogleEmbeddingsParams<WebGoogleAuthOptions> {}\n\n/**\n * Integration with an LLM.\n */\nexport class GoogleEmbeddings\n extends BaseGoogleEmbeddings<WebGoogleAuthOptions>\n implements GoogleEmbeddingsInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"GoogleEmbeddings\";\n }\n\n lc_serializable = true;\n\n constructor(fields: GoogleEmbeddingsInput) {\n super(fields);\n }\n\n buildAbstractedClient(\n fields?: GoogleConnectionParams<WebGoogleAuthOptions>\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;AAgBA,IAAa,mBAAb,cACU,qBAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAGT,kBAAkB;CAElB,YAAY,QAA+B;AACzC,QAAM,OAAO;;CAGf,sBACE,QACwB;AACxB,SAAO,IAAI,cAAc,OAAO"}
|
package/dist/index.cjs
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value:
|
|
2
|
-
const require_chat_models = require(
|
|
3
|
-
const require_llms = require(
|
|
4
|
-
const require_embeddings = require(
|
|
5
|
-
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_chat_models = require("./chat_models.cjs");
|
|
3
|
+
const require_llms = require("./llms.cjs");
|
|
4
|
+
const require_embeddings = require("./embeddings.cjs");
|
|
6
5
|
exports.ChatGoogle = require_chat_models.ChatGoogle;
|
|
7
6
|
exports.GoogleEmbeddings = require_embeddings.GoogleEmbeddings;
|
|
8
|
-
exports.GoogleLLM = require_llms.GoogleLLM;
|
|
7
|
+
exports.GoogleLLM = require_llms.GoogleLLM;
|
package/dist/index.js
CHANGED
package/dist/llms.cjs
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
const require_auth = require(
|
|
1
|
+
const require_auth = require("./auth.cjs");
|
|
2
2
|
let _langchain_google_common = require("@langchain/google-common");
|
|
3
|
-
|
|
4
3
|
//#region src/llms.ts
|
|
5
4
|
/**
|
|
6
5
|
* Integration with an LLM.
|
|
@@ -12,13 +11,13 @@ var GoogleLLM = class extends _langchain_google_common.GoogleBaseLLM {
|
|
|
12
11
|
lc_serializable = true;
|
|
13
12
|
constructor(fields) {
|
|
14
13
|
super(fields);
|
|
15
|
-
this._addVersion("@langchain/google-webauth", "2.1.
|
|
14
|
+
this._addVersion("@langchain/google-webauth", "2.1.26-dev-1773709997654");
|
|
16
15
|
}
|
|
17
16
|
buildAbstractedClient(fields) {
|
|
18
17
|
return new require_auth.WebGoogleAuth(fields);
|
|
19
18
|
}
|
|
20
19
|
};
|
|
21
|
-
|
|
22
20
|
//#endregion
|
|
23
21
|
exports.GoogleLLM = GoogleLLM;
|
|
22
|
+
|
|
24
23
|
//# sourceMappingURL=llms.cjs.map
|
package/dist/llms.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"llms.cjs","names":["GoogleBaseLLM","WebGoogleAuth"],"sources":["../src/llms.ts"],"sourcesContent":["import {\n GoogleAbstractedClient,\n GoogleBaseLLM,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to LLM class.\n */\nexport interface GoogleLLMInput extends GoogleBaseLLMInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with an LLM.\n */\nexport class GoogleLLM\n extends GoogleBaseLLM<WebGoogleAuthOptions>\n implements GoogleLLMInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"GoogleLLM\";\n }\n\n lc_serializable = true;\n\n constructor(fields?: GoogleLLMInput) {\n super(fields);\n this._addVersion(\"@langchain/google-webauth\", __PKG_VERSION__);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"llms.cjs","names":["GoogleBaseLLM","WebGoogleAuth"],"sources":["../src/llms.ts"],"sourcesContent":["import {\n GoogleAbstractedClient,\n GoogleBaseLLM,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to LLM class.\n */\nexport interface GoogleLLMInput extends GoogleBaseLLMInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with an LLM.\n */\nexport class GoogleLLM\n extends GoogleBaseLLM<WebGoogleAuthOptions>\n implements GoogleLLMInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"GoogleLLM\";\n }\n\n lc_serializable = true;\n\n constructor(fields?: GoogleLLMInput) {\n super(fields);\n this._addVersion(\"@langchain/google-webauth\", __PKG_VERSION__);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;AAeA,IAAa,YAAb,cACUA,yBAAAA,cAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAGT,kBAAkB;CAElB,YAAY,QAAyB;AACnC,QAAM,OAAO;AACb,OAAK,YAAY,6BAAA,2BAA6C;;CAGhE,sBACE,QACwB;AACxB,SAAO,IAAIC,aAAAA,cAAc,OAAO"}
|
package/dist/llms.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { WebGoogleAuth } from "./auth.js";
|
|
2
2
|
import { GoogleBaseLLM } from "@langchain/google-common";
|
|
3
|
-
|
|
4
3
|
//#region src/llms.ts
|
|
5
4
|
/**
|
|
6
5
|
* Integration with an LLM.
|
|
@@ -12,13 +11,13 @@ var GoogleLLM = class extends GoogleBaseLLM {
|
|
|
12
11
|
lc_serializable = true;
|
|
13
12
|
constructor(fields) {
|
|
14
13
|
super(fields);
|
|
15
|
-
this._addVersion("@langchain/google-webauth", "2.1.
|
|
14
|
+
this._addVersion("@langchain/google-webauth", "2.1.26-dev-1773709997654");
|
|
16
15
|
}
|
|
17
16
|
buildAbstractedClient(fields) {
|
|
18
17
|
return new WebGoogleAuth(fields);
|
|
19
18
|
}
|
|
20
19
|
};
|
|
21
|
-
|
|
22
20
|
//#endregion
|
|
23
21
|
export { GoogleLLM };
|
|
22
|
+
|
|
24
23
|
//# sourceMappingURL=llms.js.map
|
package/dist/llms.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"llms.js","names":[],"sources":["../src/llms.ts"],"sourcesContent":["import {\n GoogleAbstractedClient,\n GoogleBaseLLM,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to LLM class.\n */\nexport interface GoogleLLMInput extends GoogleBaseLLMInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with an LLM.\n */\nexport class GoogleLLM\n extends GoogleBaseLLM<WebGoogleAuthOptions>\n implements GoogleLLMInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"GoogleLLM\";\n }\n\n lc_serializable = true;\n\n constructor(fields?: GoogleLLMInput) {\n super(fields);\n this._addVersion(\"@langchain/google-webauth\", __PKG_VERSION__);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"llms.js","names":[],"sources":["../src/llms.ts"],"sourcesContent":["import {\n GoogleAbstractedClient,\n GoogleBaseLLM,\n GoogleBaseLLMInput,\n} from \"@langchain/google-common\";\nimport { WebGoogleAuth, WebGoogleAuthOptions } from \"./auth.js\";\n\n/**\n * Input to LLM class.\n */\nexport interface GoogleLLMInput extends GoogleBaseLLMInput<WebGoogleAuthOptions> {}\n\n/**\n * Integration with an LLM.\n */\nexport class GoogleLLM\n extends GoogleBaseLLM<WebGoogleAuthOptions>\n implements GoogleLLMInput\n{\n // Used for tracing, replace with the same name as your class\n static lc_name() {\n return \"GoogleLLM\";\n }\n\n lc_serializable = true;\n\n constructor(fields?: GoogleLLMInput) {\n super(fields);\n this._addVersion(\"@langchain/google-webauth\", __PKG_VERSION__);\n }\n\n buildAbstractedClient(\n fields: GoogleBaseLLMInput<WebGoogleAuthOptions> | undefined\n ): GoogleAbstractedClient {\n return new WebGoogleAuth(fields);\n }\n}\n"],"mappings":";;;;;;AAeA,IAAa,YAAb,cACU,cAEV;CAEE,OAAO,UAAU;AACf,SAAO;;CAGT,kBAAkB;CAElB,YAAY,QAAyB;AACnC,QAAM,OAAO;AACb,OAAK,YAAY,6BAAA,2BAA6C;;CAGhE,sBACE,QACwB;AACxB,SAAO,IAAI,cAAc,OAAO"}
|
package/dist/types.cjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
1
|
var _langchain_google_common_types = require("@langchain/google-common/types");
|
|
4
|
-
Object.keys(_langchain_google_common_types).forEach(function
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
Object.keys(_langchain_google_common_types).forEach(function(k) {
|
|
3
|
+
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
4
|
+
enumerable: true,
|
|
5
|
+
get: function() {
|
|
6
|
+
return _langchain_google_common_types[k];
|
|
7
|
+
}
|
|
8
|
+
});
|
|
9
9
|
});
|
package/dist/types.js
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export * from "@langchain/google-common/types"
|
|
2
|
-
|
|
3
|
-
export { };
|
|
1
|
+
export * from "@langchain/google-common/types";
|
|
2
|
+
export {};
|
package/dist/utils.cjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
1
|
var _langchain_google_common_utils = require("@langchain/google-common/utils");
|
|
4
|
-
Object.keys(_langchain_google_common_utils).forEach(function
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
Object.keys(_langchain_google_common_utils).forEach(function(k) {
|
|
3
|
+
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
4
|
+
enumerable: true,
|
|
5
|
+
get: function() {
|
|
6
|
+
return _langchain_google_common_utils[k];
|
|
7
|
+
}
|
|
8
|
+
});
|
|
9
9
|
});
|
package/dist/utils.js
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export * from "@langchain/google-common/utils"
|
|
2
|
-
|
|
3
|
-
export { };
|
|
1
|
+
export * from "@langchain/google-common/utils";
|
|
2
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/google-webauth",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.26-dev-1773709997654",
|
|
4
4
|
"description": "Web-based authentication support for Google services",
|
|
5
5
|
"author": "LangChain",
|
|
6
6
|
"license": "MIT",
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/providers/langchain-google-webauth/",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"web-auth-library": "^1.0.3",
|
|
18
|
-
"@langchain/google-common": "2.1.
|
|
18
|
+
"@langchain/google-common": "2.1.26-dev-1773709997654"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@langchain/core": "^1.1.
|
|
21
|
+
"@langchain/core": "^1.1.33-dev-1773709997654"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@jest/globals": "^30.2.0",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"ts-jest": "^29.4.6",
|
|
35
35
|
"typescript": "~5.8.3",
|
|
36
36
|
"zod": "^3.25.76",
|
|
37
|
-
"@langchain/core": "^1.1.32",
|
|
38
37
|
"@langchain/eslint": "0.1.1",
|
|
38
|
+
"@langchain/core": "^1.1.33-dev-1773709997654",
|
|
39
39
|
"@langchain/tsconfig": "0.0.1"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
package/types.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = require("./dist/types.cjs");
|
package/types.d.cts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./dist/types.js";
|
package/types.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./dist/types.js";
|
package/types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./dist/types.js";
|
package/utils.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = require("./dist/utils.cjs");
|
package/utils.d.cts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./dist/utils.js";
|
package/utils.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./dist/utils.js";
|
package/utils.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./dist/utils.js";
|