@buildonspark/spark-sdk 0.0.29 → 0.0.30
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.cjs +1 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/graphql/client.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1149,7 +1149,6 @@ var UserRequest2 = `
|
|
|
1149
1149
|
|
|
1150
1150
|
// src/graphql/client.ts
|
|
1151
1151
|
var isProduction = process.env.NODE_ENV === "production";
|
|
1152
|
-
var SPARK_SCHEMA_VERSION = isProduction ? "2025-03-19" : "rc";
|
|
1153
1152
|
var SspClient = class {
|
|
1154
1153
|
requester;
|
|
1155
1154
|
signer;
|
|
@@ -1161,7 +1160,7 @@ var SspClient = class {
|
|
|
1161
1160
|
const options = config.sspClientOptions;
|
|
1162
1161
|
this.requester = new import_core7.Requester(
|
|
1163
1162
|
new import_core7.NodeKeyCache(import_core7.DefaultCrypto),
|
|
1164
|
-
options.schemaEndpoint || `graphql/spark
|
|
1163
|
+
options.schemaEndpoint || `graphql/spark/rc`,
|
|
1165
1164
|
`spark-sdk/0.0.0`,
|
|
1166
1165
|
this.authProvider,
|
|
1167
1166
|
options.baseUrl,
|