@onbeam/automation-api-client
Advanced tools
Comparing version 1.2.11 to 1.2.12
@@ -495,3 +495,3 @@ type ApiRequestOptions = { | ||
gameId: string | null; | ||
abi: (string | number | boolean | Record<string, any>); | ||
abi: any; | ||
}; | ||
@@ -523,4 +523,4 @@ declare namespace AddContractResponse { | ||
id: string; | ||
createdAt: any; | ||
updatedAt: any; | ||
createdAt: string; | ||
updatedAt: string; | ||
externalId: string; | ||
@@ -539,4 +539,4 @@ address: string; | ||
email: string; | ||
createdAt: any; | ||
lastSeenAt: any; | ||
createdAt: string; | ||
lastSeenAt: string | null; | ||
supabaseId: string | null; | ||
@@ -548,4 +548,4 @@ }; | ||
id: string; | ||
createdAt: any; | ||
updatedAt: any; | ||
createdAt: string; | ||
updatedAt: string; | ||
externalId: string; | ||
@@ -556,3 +556,3 @@ address: string; | ||
gameId: string | null; | ||
abi: (string | number | boolean | Record<string, any>); | ||
abi: any; | ||
}>; | ||
@@ -564,4 +564,4 @@ policies: Array<{ | ||
id: string; | ||
createdAt: any; | ||
updatedAt: any; | ||
createdAt: string; | ||
updatedAt: string; | ||
externalId: string; | ||
@@ -601,4 +601,4 @@ name: string; | ||
id: string; | ||
createdAt: any; | ||
updatedAt: any; | ||
createdAt: string; | ||
updatedAt: string; | ||
apiKey: string; | ||
@@ -656,4 +656,4 @@ gameId: string; | ||
id: string; | ||
createdAt: any; | ||
updatedAt: any; | ||
createdAt: string; | ||
updatedAt: string; | ||
externalId: string; | ||
@@ -664,3 +664,3 @@ address: string; | ||
gameId: string | null; | ||
abi: (string | number | boolean | Record<string, any>); | ||
abi: any; | ||
}>; | ||
@@ -672,4 +672,4 @@ policies: Array<{ | ||
id: string; | ||
createdAt: any; | ||
updatedAt: any; | ||
createdAt: string; | ||
updatedAt: string; | ||
externalId: string; | ||
@@ -851,9 +851,9 @@ name: string; | ||
} | null; | ||
validFrom?: any; | ||
validUntil?: any; | ||
validFrom?: string | null; | ||
validUntil?: string | null; | ||
quantityFilled?: number; | ||
quantityRemaining?: number; | ||
expiresAt?: any; | ||
createdAt?: any; | ||
updatedAt?: any; | ||
expiresAt?: string | null; | ||
createdAt?: string | null; | ||
updatedAt?: string | null; | ||
}>; | ||
@@ -1130,4 +1130,4 @@ continuation?: string | null; | ||
id: string; | ||
createdAt: any; | ||
updatedAt: any; | ||
createdAt: string; | ||
updatedAt: string; | ||
externalId: string; | ||
@@ -1160,4 +1160,4 @@ address: string; | ||
id: string; | ||
createdAt: any; | ||
updatedAt: any; | ||
createdAt: string; | ||
updatedAt: string; | ||
externalId: string; | ||
@@ -1167,7 +1167,7 @@ externalEntityId: string; | ||
userId: string | null; | ||
userConnectionCreatedAt?: any; | ||
userConnectionCreatedAt?: string | null; | ||
wallets: Array<{ | ||
id: string; | ||
createdAt: any; | ||
updatedAt: any; | ||
createdAt: string; | ||
updatedAt: string; | ||
externalId: string; | ||
@@ -1198,4 +1198,4 @@ address: string; | ||
id: string; | ||
createdAt: any; | ||
updatedAt: any; | ||
createdAt: string; | ||
updatedAt: string; | ||
externalId: string; | ||
@@ -1224,4 +1224,4 @@ address: string; | ||
id: string; | ||
createdAt: any; | ||
updatedAt: any; | ||
createdAt: string; | ||
updatedAt: string; | ||
externalId: string; | ||
@@ -1476,3 +1476,3 @@ address: string; | ||
transaction?: { | ||
createdAt: any; | ||
createdAt: string; | ||
blockNumber?: number; | ||
@@ -1532,3 +1532,3 @@ hash?: string; | ||
transaction?: { | ||
createdAt: any; | ||
createdAt: string; | ||
blockNumber?: number; | ||
@@ -1572,4 +1572,4 @@ hash?: string; | ||
id: string; | ||
createdAt: any; | ||
updatedAt: any; | ||
createdAt: string; | ||
updatedAt: string; | ||
chainId: number; | ||
@@ -1590,3 +1590,3 @@ intent: { | ||
transaction?: { | ||
createdAt: any; | ||
createdAt: string; | ||
blockNumber?: number; | ||
@@ -1666,3 +1666,3 @@ hash?: string; | ||
url: string; | ||
createdAt: any; | ||
createdAt: string; | ||
events: Array<'TokenTransfers'>; | ||
@@ -1669,0 +1669,0 @@ contract: string; |
@@ -1093,3 +1093,3 @@ var __accessCheck = (obj, member, msg) => { | ||
*/ | ||
getAllProfiles(limit, offset) { | ||
getAllProfiles(limit = 10, offset = 0) { | ||
return this.httpRequest.request({ | ||
@@ -1257,3 +1257,3 @@ method: "GET", | ||
*/ | ||
getTransactionsV2(limit, offset) { | ||
getTransactionsV2(limit = 10, offset = 0) { | ||
return this.httpRequest.request({ | ||
@@ -1291,3 +1291,3 @@ method: "GET", | ||
*/ | ||
getProfileTransactionsV2(entityId, limit, offset) { | ||
getProfileTransactionsV2(entityId, limit = 10, offset = 0) { | ||
return this.httpRequest.request({ | ||
@@ -1294,0 +1294,0 @@ method: "GET", |
@@ -26,3 +26,3 @@ { | ||
}, | ||
"version": "1.2.11", | ||
"version": "1.2.12", | ||
"scripts": { | ||
@@ -29,0 +29,0 @@ "generate": "pnpm generate:client && pnpm generate:barrels && pnpm build", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
772567