@opendatalabs/vana-sdk 3.4.1-canary.ba2cfd7 → 3.4.1-canary.e9d0aad
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.browser.d.ts +4 -2
- package/dist/index.browser.js +107 -92
- package/dist/index.browser.js.map +4 -4
- package/dist/index.node.cjs +118 -98
- package/dist/index.node.cjs.map +4 -4
- package/dist/index.node.d.ts +4 -2
- package/dist/index.node.js +107 -92
- package/dist/index.node.js.map +4 -4
- package/dist/protocol/data-point-status.cjs +80 -0
- package/dist/protocol/data-point-status.cjs.map +1 -0
- package/dist/protocol/data-point-status.d.ts +34 -0
- package/dist/protocol/data-point-status.js +51 -0
- package/dist/protocol/data-point-status.js.map +1 -0
- package/dist/protocol/data-point-status.test.d.ts +1 -0
- package/dist/protocol/eip712.cjs +0 -33
- package/dist/protocol/eip712.cjs.map +1 -1
- package/dist/protocol/eip712.d.ts +0 -37
- package/dist/protocol/eip712.js +0 -29
- package/dist/protocol/eip712.js.map +1 -1
- package/dist/protocol/gateway.cjs +12 -63
- package/dist/protocol/gateway.cjs.map +1 -1
- package/dist/protocol/gateway.d.ts +29 -44
- package/dist/protocol/gateway.js +12 -63
- package/dist/protocol/gateway.js.map +1 -1
- package/dist/protocol/grants.cjs +3 -0
- package/dist/protocol/grants.cjs.map +1 -1
- package/dist/protocol/grants.js +3 -0
- package/dist/protocol/grants.js.map +1 -1
- package/dist/protocol/personal-server-data.cjs +71 -0
- package/dist/protocol/personal-server-data.cjs.map +1 -0
- package/dist/protocol/personal-server-data.d.ts +16 -0
- package/dist/protocol/personal-server-data.js +47 -0
- package/dist/protocol/personal-server-data.js.map +1 -0
- package/dist/protocol/personal-server-data.test.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.browser.d.ts
CHANGED
|
@@ -35,15 +35,17 @@ export { encryptWithPassword, decryptWithPassword, } from "./crypto/envelope/ope
|
|
|
35
35
|
export { parseWeb3SignedHeader, verifyWeb3Signed, type Web3SignedPayload, type VerifiedAuth, } from "./auth/web3-signed";
|
|
36
36
|
export { buildWeb3SignedHeader, computeBodyHash, type Web3SignedSignFn, } from "./auth/web3-signed-builder";
|
|
37
37
|
export { MissingAuthError, InvalidSignatureError, ExpiredTokenError, } from "./auth/errors";
|
|
38
|
-
export {
|
|
38
|
+
export { grantRegistrationDomain, grantRevocationDomain, serverRegistrationDomain, builderRegistrationDomain, escrowPaymentDomain, dataRegistryDomain, GRANT_REGISTRATION_TYPES, GRANT_REVOCATION_TYPES, SERVER_REGISTRATION_TYPES, BUILDER_REGISTRATION_TYPES, GENERIC_PAYMENT_TYPES, ADD_DATA_TYPES, RECORD_DATA_ACCESS_TYPES, NATIVE_VANA_ASSET, type DataPortabilityContracts, type DataPortabilityGatewayConfig, type GrantRegistrationMessage, type GrantRevocationMessage, type ServerRegistrationMessage, type BuilderRegistrationMessage, type GenericPaymentMessage, type AddDataMessage, type RecordDataAccessMessage, } from "./protocol/eip712";
|
|
39
39
|
export { PERSONAL_SERVER_REGISTRATION_DEFAULT_CHAIN_ID, PERSONAL_SERVER_REGISTRATION_DEFAULT_VERIFYING_CONTRACT, personalServerRegistrationDomain, createViemPersonalServerRegistrationSigner, buildPersonalServerRegistrationTypedData, buildPersonalServerRegistrationSignature, registerPersonalServerSignature, type PersonalServerRegistrationTypedData, type PersonalServerRegistrationSigner, type PersonalServerRegistrationDomainInput, type ViemPersonalServerRegistrationWalletClient, type ViemPersonalServerRegistrationSignerSource, type BuildPersonalServerRegistrationTypedDataInput, type BuildPersonalServerRegistrationSignatureInput, type PersonalServerRegistrationSignature, } from "./protocol/personal-server-registration";
|
|
40
40
|
export { PERSONAL_SERVER_LITE_OWNER_BINDING_VERSION, PERSONAL_SERVER_LITE_OWNER_BINDING_PURPOSE, PERSONAL_SERVER_LITE_OWNER_BINDING_PREFIX, buildPersonalServerLiteOwnerBindingMessage, createViemPersonalServerLiteOwnerBindingSigner, buildPersonalServerLiteOwnerBindingSignature, signPersonalServerLiteOwnerBinding, type PersonalServerLiteOwnerBindingPurpose, type PersonalServerLiteOwnerBindingMessage, type PersonalServerLiteOwnerBindingSigner, type ViemPersonalServerLiteOwnerBindingWalletClient, type ViemPersonalServerLiteOwnerBindingSignerSource, type BuildPersonalServerLiteOwnerBindingSignatureInput, type PersonalServerLiteOwnerBindingSignature, } from "./protocol/personal-server-lite-owner-binding";
|
|
41
41
|
export { ACCOUNT_PERSONAL_SERVER_REGISTRATION_INTENT, AccountPersonalServerRegistrationError, signPersonalServerRegistrationWithAccount, type AccountPersonalServerRegistrationIntent, type AccountPersonalServerRegistrationSignature, type AccountPersonalServerRegistrationStatus, type AccountPersonalServerRegistrationRequest, type AccountPersonalServerRegistrationConfig, type AccountSignedPersonalServerRegistration, type AccountConfirmationRequiredPersonalServerRegistration, type AccountFallbackSignedPersonalServerRegistration, type AccountPersonalServerRegistrationResult, } from "./account/personal-server-registration";
|
|
42
42
|
export { AccountPersonalServerLiteOwnerBindingError, signPersonalServerLiteOwnerBindingWithAccountClient, type AccountPersonalServerLiteOwnerBindingClient, type SignPersonalServerLiteOwnerBindingWithAccountClientConfig, } from "./account/personal-server-lite-owner-binding";
|
|
43
43
|
export { isDataPortabilityGatewayConfig, verifyGrantRegistration, type VerifyGrantRegistrationInput, type VerifyGrantRegistrationResult, } from "./protocol/grants";
|
|
44
44
|
export { ESCROW_DEPOSIT_ABI, escrowContractAddress, encodeDepositNativeData, encodeDepositTokenData, buildDepositNativeRequest, buildDepositTokenRequest, type DepositNativeInput, type DepositTokenInput, type DepositTransactionRequest, } from "./protocol/escrow-deposit";
|
|
45
|
+
export { DATA_REGISTRY_STATUS_ABI, DataPointStatus, dataRegistryContractAddress, encodeSetDataPointStatusData, buildSetDataPointStatusRequest, buildMarkDataPointUnavailableRequest, type SetDataPointStatusInput, type DataPointStatusTransactionRequest, } from "./protocol/data-point-status";
|
|
45
46
|
export { FEE_REGISTRY_ABI, REGISTRATION_KIND_FOR_OP, getFee, getOpFee, type FeeKind, type FeeEntry, type OpFee, type FeeRegistryOptions, } from "./protocol/fee-registry";
|
|
46
47
|
export { ScopeSchema, parseScope, scopeToPathSegments, scopeMatchesPattern, scopeCoveredByGrant, type Scope, type ParsedScope, } from "./protocol/scopes";
|
|
47
48
|
export { DataFileEnvelopeSchema, createDataFileEnvelope, IngestResponseSchema, type DataFileEnvelope, type IngestResponse, } from "./protocol/data-file";
|
|
48
|
-
export {
|
|
49
|
+
export { personalServerDataReadPath, buildPersonalServerDataReadRequest, readPersonalServerData, type BuildPersonalServerDataReadRequestParams, type ReadPersonalServerDataParams, } from "./protocol/personal-server-data";
|
|
50
|
+
export { createGatewayClient, type GatewayEnvelope, type GatewayProof, type Builder, type Schema, type ServerInfo, type GatewayGrantResponse, type GatewayGrantStatus, type GatewayGrantFee, type GrantListItem, type DataPointRecord, type DataPointListResult, type ListDataPointsOptions, type RegisterServerParams, type RegisterServerResult, type RegisterBuilderParams, type RegisterBuilderResult, type RegisterDataPointParams, type RegisterDataPointResult, type CreateGrantParams, type RevokeGrantParams, type PayForOperationParams, type PayForOperationResult, type AccessRecord, type SettleOpType, type SettleItem, type SettlePromoteResult, type SettleReconcileItem, type SettleParams, type SettleResult, type SubmitDepositParams, type DepositState, type EscrowBalance, type EscrowBalanceEntry, type EscrowDepositSubmitted, type EscrowDepositFinalized, type EscrowDepositFailed, type GatewayClient, } from "./protocol/gateway";
|
|
49
51
|
export { PSError, parsePSError, type PSErrorCode } from "./types/ps-errors";
|
package/dist/index.browser.js
CHANGED
|
@@ -31891,24 +31891,12 @@ function buildDomain(chainId, verifyingContract) {
|
|
|
31891
31891
|
verifyingContract
|
|
31892
31892
|
};
|
|
31893
31893
|
}
|
|
31894
|
-
function fileRegistrationDomain(config) {
|
|
31895
|
-
return buildDomain(
|
|
31896
|
-
config.chainId,
|
|
31897
|
-
config.contracts.dataRegistry
|
|
31898
|
-
);
|
|
31899
|
-
}
|
|
31900
31894
|
function dataRegistryDomain(config) {
|
|
31901
31895
|
return buildDomain(
|
|
31902
31896
|
config.chainId,
|
|
31903
31897
|
config.contracts.dataRegistry
|
|
31904
31898
|
);
|
|
31905
31899
|
}
|
|
31906
|
-
function fileDeletionDomain(config) {
|
|
31907
|
-
return buildDomain(
|
|
31908
|
-
config.chainId,
|
|
31909
|
-
config.contracts.dataRegistry
|
|
31910
|
-
);
|
|
31911
|
-
}
|
|
31912
31900
|
function grantRegistrationDomain(config) {
|
|
31913
31901
|
return buildDomain(
|
|
31914
31902
|
config.chainId,
|
|
@@ -31939,19 +31927,6 @@ function escrowPaymentDomain(config) {
|
|
|
31939
31927
|
config.contracts.dataPortabilityEscrow
|
|
31940
31928
|
);
|
|
31941
31929
|
}
|
|
31942
|
-
var FILE_REGISTRATION_TYPES = {
|
|
31943
|
-
FileRegistration: [
|
|
31944
|
-
{ name: "ownerAddress", type: "address" },
|
|
31945
|
-
{ name: "url", type: "string" },
|
|
31946
|
-
{ name: "schemaId", type: "bytes32" }
|
|
31947
|
-
]
|
|
31948
|
-
};
|
|
31949
|
-
var FILE_DELETION_TYPES = {
|
|
31950
|
-
FileDeletion: [
|
|
31951
|
-
{ name: "ownerAddress", type: "address" },
|
|
31952
|
-
{ name: "fileId", type: "bytes32" }
|
|
31953
|
-
]
|
|
31954
|
-
};
|
|
31955
31930
|
var GRANT_REGISTRATION_TYPES = {
|
|
31956
31931
|
GrantRegistration: [
|
|
31957
31932
|
{ name: "grantorAddress", type: "address" },
|
|
@@ -32457,6 +32432,9 @@ function isDataPortabilityGatewayConfig(value) {
|
|
|
32457
32432
|
}
|
|
32458
32433
|
function toUint256(value) {
|
|
32459
32434
|
try {
|
|
32435
|
+
if (typeof value === "number" && !Number.isSafeInteger(value)) {
|
|
32436
|
+
return null;
|
|
32437
|
+
}
|
|
32460
32438
|
const big = typeof value === "bigint" ? value : BigInt(value);
|
|
32461
32439
|
if (big < 0n) return null;
|
|
32462
32440
|
return big;
|
|
@@ -32568,6 +32546,50 @@ function buildDepositTokenRequest(config, input) {
|
|
|
32568
32546
|
};
|
|
32569
32547
|
}
|
|
32570
32548
|
|
|
32549
|
+
// src/protocol/data-point-status.ts
|
|
32550
|
+
import { encodeFunctionData as encodeFunctionData2 } from "viem";
|
|
32551
|
+
var DataPointStatus = /* @__PURE__ */ ((DataPointStatus2) => {
|
|
32552
|
+
DataPointStatus2[DataPointStatus2["None"] = 0] = "None";
|
|
32553
|
+
DataPointStatus2[DataPointStatus2["Active"] = 1] = "Active";
|
|
32554
|
+
DataPointStatus2[DataPointStatus2["Inactive"] = 2] = "Inactive";
|
|
32555
|
+
DataPointStatus2[DataPointStatus2["Unavailable"] = 3] = "Unavailable";
|
|
32556
|
+
return DataPointStatus2;
|
|
32557
|
+
})(DataPointStatus || {});
|
|
32558
|
+
var DATA_REGISTRY_STATUS_ABI = [
|
|
32559
|
+
{
|
|
32560
|
+
type: "function",
|
|
32561
|
+
name: "setStatus",
|
|
32562
|
+
stateMutability: "nonpayable",
|
|
32563
|
+
inputs: [
|
|
32564
|
+
{ name: "scope", type: "string" },
|
|
32565
|
+
{ name: "newStatus", type: "uint8" }
|
|
32566
|
+
],
|
|
32567
|
+
outputs: []
|
|
32568
|
+
}
|
|
32569
|
+
];
|
|
32570
|
+
function dataRegistryContractAddress(config) {
|
|
32571
|
+
return config.contracts.dataRegistry;
|
|
32572
|
+
}
|
|
32573
|
+
function encodeSetDataPointStatusData(input) {
|
|
32574
|
+
return encodeFunctionData2({
|
|
32575
|
+
abi: DATA_REGISTRY_STATUS_ABI,
|
|
32576
|
+
functionName: "setStatus",
|
|
32577
|
+
args: [input.scope, input.status]
|
|
32578
|
+
});
|
|
32579
|
+
}
|
|
32580
|
+
function buildSetDataPointStatusRequest(config, input) {
|
|
32581
|
+
return {
|
|
32582
|
+
to: dataRegistryContractAddress(config),
|
|
32583
|
+
data: encodeSetDataPointStatusData(input)
|
|
32584
|
+
};
|
|
32585
|
+
}
|
|
32586
|
+
function buildMarkDataPointUnavailableRequest(config, input) {
|
|
32587
|
+
return buildSetDataPointStatusRequest(config, {
|
|
32588
|
+
scope: input.scope,
|
|
32589
|
+
status: 3 /* Unavailable */
|
|
32590
|
+
});
|
|
32591
|
+
}
|
|
32592
|
+
|
|
32571
32593
|
// src/protocol/fee-registry.ts
|
|
32572
32594
|
import { parseAbi } from "viem";
|
|
32573
32595
|
var FEE_REGISTRY_ABI = parseAbi([
|
|
@@ -32722,6 +32744,45 @@ var IngestResponseSchema = z2.object({
|
|
|
32722
32744
|
status: z2.enum(["stored", "syncing"])
|
|
32723
32745
|
});
|
|
32724
32746
|
|
|
32747
|
+
// src/protocol/personal-server-data.ts
|
|
32748
|
+
function personalServerDataReadPath(scope) {
|
|
32749
|
+
return `/v1/data/${encodeURIComponent(scope)}`;
|
|
32750
|
+
}
|
|
32751
|
+
async function buildPersonalServerDataReadRequest(params) {
|
|
32752
|
+
const path = personalServerDataReadPath(params.scope);
|
|
32753
|
+
const baseUrl = params.personalServerUrl.replace(/\/+$/, "");
|
|
32754
|
+
const audience = params.audience ?? baseUrl;
|
|
32755
|
+
const headers = new Headers(params.headers);
|
|
32756
|
+
headers.set(
|
|
32757
|
+
"Authorization",
|
|
32758
|
+
await buildWeb3SignedHeader({
|
|
32759
|
+
aud: audience,
|
|
32760
|
+
grantId: params.grantId,
|
|
32761
|
+
method: "GET",
|
|
32762
|
+
signMessage: params.signMessage,
|
|
32763
|
+
uri: path
|
|
32764
|
+
})
|
|
32765
|
+
);
|
|
32766
|
+
return new Request(`${baseUrl}${path}`, {
|
|
32767
|
+
headers,
|
|
32768
|
+
method: "GET"
|
|
32769
|
+
});
|
|
32770
|
+
}
|
|
32771
|
+
async function readPersonalServerData(params) {
|
|
32772
|
+
const fetchFn = params.fetch ?? globalThis.fetch;
|
|
32773
|
+
if (fetchFn === void 0) {
|
|
32774
|
+
throw new Error("No fetch implementation available");
|
|
32775
|
+
}
|
|
32776
|
+
const request = await buildPersonalServerDataReadRequest(params);
|
|
32777
|
+
const response = await fetchFn(request);
|
|
32778
|
+
if (!response.ok) {
|
|
32779
|
+
throw new Error(
|
|
32780
|
+
`Personal Server data read failed: ${response.status} ${response.statusText}`
|
|
32781
|
+
);
|
|
32782
|
+
}
|
|
32783
|
+
return DataFileEnvelopeSchema.parse(await response.json());
|
|
32784
|
+
}
|
|
32785
|
+
|
|
32725
32786
|
// src/protocol/gateway.ts
|
|
32726
32787
|
function createGatewayClient(baseUrl) {
|
|
32727
32788
|
const base = baseUrl.replace(/\/+$/, "");
|
|
@@ -32729,16 +32790,6 @@ function createGatewayClient(baseUrl) {
|
|
|
32729
32790
|
const envelope = await res.json();
|
|
32730
32791
|
return envelope.data;
|
|
32731
32792
|
}
|
|
32732
|
-
function normalizeFileRecord(record) {
|
|
32733
|
-
return {
|
|
32734
|
-
fileId: record.fileId ?? record.id ?? "",
|
|
32735
|
-
owner: record.owner ?? record.ownerAddress ?? "",
|
|
32736
|
-
url: record.url,
|
|
32737
|
-
schemaId: record.schemaId,
|
|
32738
|
-
createdAt: record.createdAt ?? record.addedAt ?? "",
|
|
32739
|
-
deletedAt: record.deletedAt ?? null
|
|
32740
|
-
};
|
|
32741
|
-
}
|
|
32742
32793
|
function getMutationId(body, key) {
|
|
32743
32794
|
const value = body[key] ?? body["id"];
|
|
32744
32795
|
return typeof value === "string" ? value : void 0;
|
|
@@ -32788,31 +32839,33 @@ function createGatewayClient(baseUrl) {
|
|
|
32788
32839
|
}
|
|
32789
32840
|
return unwrapEnvelope(res);
|
|
32790
32841
|
},
|
|
32791
|
-
async
|
|
32792
|
-
const res = await fetch(`${base}/v1/
|
|
32842
|
+
async getDataPoint(dataPointId) {
|
|
32843
|
+
const res = await fetch(`${base}/v1/data/${dataPointId}`);
|
|
32793
32844
|
if (res.status === 404) return null;
|
|
32794
32845
|
if (!res.ok) {
|
|
32795
32846
|
throw new Error(`Gateway error: ${res.status} ${res.statusText}`);
|
|
32796
32847
|
}
|
|
32797
|
-
return
|
|
32848
|
+
return unwrapEnvelope(res);
|
|
32798
32849
|
},
|
|
32799
|
-
async
|
|
32850
|
+
async listDataPointsByOwner(owner, cursor, options) {
|
|
32800
32851
|
const params = new URLSearchParams({ user: owner });
|
|
32801
32852
|
if (cursor !== null) {
|
|
32802
32853
|
params.set("cursor", cursor);
|
|
32803
32854
|
}
|
|
32804
|
-
if (options?.
|
|
32805
|
-
params.set("
|
|
32855
|
+
if (options?.since) {
|
|
32856
|
+
params.set("since", options.since);
|
|
32857
|
+
}
|
|
32858
|
+
if (options?.limit !== void 0) {
|
|
32859
|
+
params.set("limit", String(options.limit));
|
|
32806
32860
|
}
|
|
32807
|
-
const res = await fetch(`${base}/v1/
|
|
32861
|
+
const res = await fetch(`${base}/v1/data?${params.toString()}`);
|
|
32808
32862
|
if (!res.ok) {
|
|
32809
32863
|
throw new Error(`Gateway error: ${res.status} ${res.statusText}`);
|
|
32810
32864
|
}
|
|
32811
32865
|
const envelope = await res.json();
|
|
32812
|
-
const
|
|
32813
|
-
const nextCursor = pagination?.hasMore === false ? null : pagination?.nextCursor ?? envelope.data.cursor ?? null;
|
|
32866
|
+
const nextCursor = envelope.pagination?.hasMore === false ? null : envelope.pagination?.nextCursor ?? null;
|
|
32814
32867
|
return {
|
|
32815
|
-
|
|
32868
|
+
dataPoints: envelope.data.dataPoints,
|
|
32816
32869
|
cursor: nextCursor
|
|
32817
32870
|
};
|
|
32818
32871
|
},
|
|
@@ -32916,33 +32969,6 @@ function createGatewayClient(baseUrl) {
|
|
|
32916
32969
|
expectedVersion: body.expectedVersion
|
|
32917
32970
|
};
|
|
32918
32971
|
},
|
|
32919
|
-
async registerFile(params) {
|
|
32920
|
-
const res = await fetch(`${base}/v1/files`, {
|
|
32921
|
-
method: "POST",
|
|
32922
|
-
headers: {
|
|
32923
|
-
"Content-Type": "application/json",
|
|
32924
|
-
Authorization: `Web3Signed ${params.signature}`
|
|
32925
|
-
},
|
|
32926
|
-
body: JSON.stringify({
|
|
32927
|
-
ownerAddress: params.ownerAddress,
|
|
32928
|
-
url: params.url,
|
|
32929
|
-
schemaId: params.schemaId
|
|
32930
|
-
})
|
|
32931
|
-
});
|
|
32932
|
-
if (res.status === 409) {
|
|
32933
|
-
const body2 = await res.json().catch(() => ({}));
|
|
32934
|
-
return {
|
|
32935
|
-
fileId: getMutationId(body2, "fileId")
|
|
32936
|
-
};
|
|
32937
|
-
}
|
|
32938
|
-
if (!res.ok) {
|
|
32939
|
-
throw new Error(`Gateway error: ${res.status} ${res.statusText}`);
|
|
32940
|
-
}
|
|
32941
|
-
const body = await res.json();
|
|
32942
|
-
return {
|
|
32943
|
-
fileId: getMutationId(body, "fileId")
|
|
32944
|
-
};
|
|
32945
|
-
},
|
|
32946
32972
|
async createGrant(params) {
|
|
32947
32973
|
const res = await fetch(`${base}/v1/grants`, {
|
|
32948
32974
|
method: "POST",
|
|
@@ -33045,22 +33071,6 @@ function createGatewayClient(baseUrl) {
|
|
|
33045
33071
|
throw new Error(`Gateway error: ${res.status} ${res.statusText}`);
|
|
33046
33072
|
}
|
|
33047
33073
|
return await res.json();
|
|
33048
|
-
},
|
|
33049
|
-
async deleteFile(params) {
|
|
33050
|
-
const res = await fetch(`${base}/v1/files/${params.fileId}`, {
|
|
33051
|
-
method: "DELETE",
|
|
33052
|
-
headers: {
|
|
33053
|
-
"Content-Type": "application/json",
|
|
33054
|
-
Authorization: `Web3Signed ${params.signature}`
|
|
33055
|
-
},
|
|
33056
|
-
body: JSON.stringify({
|
|
33057
|
-
ownerAddress: params.ownerAddress
|
|
33058
|
-
})
|
|
33059
|
-
});
|
|
33060
|
-
if (res.status === 409) return;
|
|
33061
|
-
if (!res.ok) {
|
|
33062
|
-
throw new Error(`Gateway error: ${res.status} ${res.statusText}`);
|
|
33063
|
-
}
|
|
33064
33074
|
}
|
|
33065
33075
|
};
|
|
33066
33076
|
}
|
|
@@ -33140,14 +33150,14 @@ export {
|
|
|
33140
33150
|
CallbackStorage,
|
|
33141
33151
|
ContractFactory,
|
|
33142
33152
|
ContractNotFoundError,
|
|
33153
|
+
DATA_REGISTRY_STATUS_ABI,
|
|
33143
33154
|
DataFileEnvelopeSchema,
|
|
33155
|
+
DataPointStatus,
|
|
33144
33156
|
DropboxStorage,
|
|
33145
33157
|
ECIESError,
|
|
33146
33158
|
ESCROW_DEPOSIT_ABI,
|
|
33147
33159
|
ExpiredTokenError,
|
|
33148
33160
|
FEE_REGISTRY_ABI,
|
|
33149
|
-
FILE_DELETION_TYPES,
|
|
33150
|
-
FILE_REGISTRATION_TYPES,
|
|
33151
33161
|
GENERIC_PAYMENT_TYPES,
|
|
33152
33162
|
GRANT_REGISTRATION_TYPES,
|
|
33153
33163
|
GRANT_REVOCATION_TYPES,
|
|
@@ -33193,10 +33203,13 @@ export {
|
|
|
33193
33203
|
assertValidPkceVerifier,
|
|
33194
33204
|
buildDepositNativeRequest,
|
|
33195
33205
|
buildDepositTokenRequest,
|
|
33206
|
+
buildMarkDataPointUnavailableRequest,
|
|
33207
|
+
buildPersonalServerDataReadRequest,
|
|
33196
33208
|
buildPersonalServerLiteOwnerBindingMessage,
|
|
33197
33209
|
buildPersonalServerLiteOwnerBindingSignature,
|
|
33198
33210
|
buildPersonalServerRegistrationSignature,
|
|
33199
33211
|
buildPersonalServerRegistrationTypedData,
|
|
33212
|
+
buildSetDataPointStatusRequest,
|
|
33200
33213
|
buildWeb3SignedHeader,
|
|
33201
33214
|
builderRegistrationDomain,
|
|
33202
33215
|
chains,
|
|
@@ -33211,6 +33224,7 @@ export {
|
|
|
33211
33224
|
createVanaStorageProvider,
|
|
33212
33225
|
createViemPersonalServerLiteOwnerBindingSigner,
|
|
33213
33226
|
createViemPersonalServerRegistrationSigner,
|
|
33227
|
+
dataRegistryContractAddress,
|
|
33214
33228
|
dataRegistryDomain,
|
|
33215
33229
|
decryptWithPassword,
|
|
33216
33230
|
deriveMasterKey,
|
|
@@ -33219,11 +33233,10 @@ export {
|
|
|
33219
33233
|
detectPlatform,
|
|
33220
33234
|
encodeDepositNativeData,
|
|
33221
33235
|
encodeDepositTokenData,
|
|
33236
|
+
encodeSetDataPointStatusData,
|
|
33222
33237
|
encryptWithPassword,
|
|
33223
33238
|
escrowContractAddress,
|
|
33224
33239
|
escrowPaymentDomain,
|
|
33225
|
-
fileDeletionDomain,
|
|
33226
|
-
fileRegistrationDomain,
|
|
33227
33240
|
generatePkceVerifier,
|
|
33228
33241
|
getAbi,
|
|
33229
33242
|
getAllChains,
|
|
@@ -33247,7 +33260,9 @@ export {
|
|
|
33247
33260
|
parsePSError,
|
|
33248
33261
|
parseScope,
|
|
33249
33262
|
parseWeb3SignedHeader,
|
|
33263
|
+
personalServerDataReadPath,
|
|
33250
33264
|
personalServerRegistrationDomain,
|
|
33265
|
+
readPersonalServerData,
|
|
33251
33266
|
recoverServerOwner,
|
|
33252
33267
|
registerPersonalServerSignature,
|
|
33253
33268
|
scopeCoveredByGrant,
|