@b3dotfun/sdk 0.0.56-alpha.1 → 0.0.56

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.
@@ -78,6 +78,7 @@ export interface paths {
78
78
  /**
79
79
  * Get Coinbase onramp options
80
80
  * @description Retrieves available Coinbase onramp configuration options.
81
+ *
81
82
  */
82
83
  get: {
83
84
  parameters: {
@@ -287,12 +288,12 @@ export interface paths {
287
288
  */
288
289
  get: {
289
290
  parameters: {
290
- query: {
291
+ query?: {
291
292
  /**
292
- * @description Address of the order creator
293
+ * @description Optional address of the order creator (if not provided, returns all orders)
293
294
  * @example 0x58241893EF1f86C9fBd8109Cd44Ea961fDb474e1
294
295
  */
295
- creatorAddress: string;
296
+ creatorAddress?: string;
296
297
  /**
297
298
  * @description Maximum number of orders to return
298
299
  * @example 20
@@ -78,6 +78,7 @@ export interface paths {
78
78
  /**
79
79
  * Get Coinbase onramp options
80
80
  * @description Retrieves available Coinbase onramp configuration options.
81
+ *
81
82
  */
82
83
  get: {
83
84
  parameters: {
@@ -287,12 +288,12 @@ export interface paths {
287
288
  */
288
289
  get: {
289
290
  parameters: {
290
- query: {
291
+ query?: {
291
292
  /**
292
- * @description Address of the order creator
293
+ * @description Optional address of the order creator (if not provided, returns all orders)
293
294
  * @example 0x58241893EF1f86C9fBd8109Cd44Ea961fDb474e1
294
295
  */
295
- creatorAddress: string;
296
+ creatorAddress?: string;
296
297
  /**
297
298
  * @description Maximum number of orders to return
298
299
  * @example 20
@@ -78,6 +78,7 @@ export interface paths {
78
78
  /**
79
79
  * Get Coinbase onramp options
80
80
  * @description Retrieves available Coinbase onramp configuration options.
81
+ *
81
82
  */
82
83
  get: {
83
84
  parameters: {
@@ -287,12 +288,12 @@ export interface paths {
287
288
  */
288
289
  get: {
289
290
  parameters: {
290
- query: {
291
+ query?: {
291
292
  /**
292
- * @description Address of the order creator
293
+ * @description Optional address of the order creator (if not provided, returns all orders)
293
294
  * @example 0x58241893EF1f86C9fBd8109Cd44Ea961fDb474e1
294
295
  */
295
- creatorAddress: string;
296
+ creatorAddress?: string;
296
297
  /**
297
298
  * @description Maximum number of orders to return
298
299
  * @example 20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@b3dotfun/sdk",
3
- "version": "0.0.56-alpha.1",
3
+ "version": "0.0.56",
4
4
  "source": "src/index.ts",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "react-native": "./dist/cjs/index.native.js",
@@ -79,6 +79,7 @@ export interface paths {
79
79
  /**
80
80
  * Get Coinbase onramp options
81
81
  * @description Retrieves available Coinbase onramp configuration options.
82
+ *
82
83
  */
83
84
  get: {
84
85
  parameters: {
@@ -288,12 +289,12 @@ export interface paths {
288
289
  */
289
290
  get: {
290
291
  parameters: {
291
- query: {
292
+ query?: {
292
293
  /**
293
- * @description Address of the order creator
294
+ * @description Optional address of the order creator (if not provided, returns all orders)
294
295
  * @example 0x58241893EF1f86C9fBd8109Cd44Ea961fDb474e1
295
296
  */
296
- creatorAddress: string;
297
+ creatorAddress?: string;
297
298
  /**
298
299
  * @description Maximum number of orders to return
299
300
  * @example 20