@sigrex/client 2.1.3 → 2.1.4

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.d.mts CHANGED
@@ -8009,10 +8009,15 @@ interface components {
8009
8009
  */
8010
8010
  api_id: number;
8011
8011
  /**
8012
- * @description The market url
8012
+ * @description Set to true to specify a market slug dynamically within the signal payload.
8013
+ * @example true
8014
+ */
8015
+ slug_from_signal: boolean;
8016
+ /**
8017
+ * @description The market url (required if slug_from_signal is false)
8013
8018
  * @example https://polymarket.com/event/elon-musk-of-tweets-april-21-april-28/elon-musk-of-tweets-april-21-april-28-180-199#xpkQ2pz
8014
8019
  */
8015
- url: string;
8020
+ url?: string;
8016
8021
  /**
8017
8022
  * @description Set if amount is coming from signal
8018
8023
  * @example false
@@ -8051,10 +8056,15 @@ interface components {
8051
8056
  */
8052
8057
  api_id: number;
8053
8058
  /**
8054
- * @description The market url
8059
+ * @description Set to true to specify a market slug dynamically within the signal payload.
8060
+ * @example true
8061
+ */
8062
+ slug_from_signal: boolean;
8063
+ /**
8064
+ * @description The market url (required if slug_from_signal is false)
8055
8065
  * @example https://polymarket.com/event/elon-musk-of-tweets-april-21-april-28/elon-musk-of-tweets-april-21-april-28-180-199#xpkQ2pz
8056
8066
  */
8057
- url: string;
8067
+ url?: string;
8058
8068
  /**
8059
8069
  * @description Set if amount is coming from signal
8060
8070
  * @example false
package/dist/index.d.ts CHANGED
@@ -8009,10 +8009,15 @@ interface components {
8009
8009
  */
8010
8010
  api_id: number;
8011
8011
  /**
8012
- * @description The market url
8012
+ * @description Set to true to specify a market slug dynamically within the signal payload.
8013
+ * @example true
8014
+ */
8015
+ slug_from_signal: boolean;
8016
+ /**
8017
+ * @description The market url (required if slug_from_signal is false)
8013
8018
  * @example https://polymarket.com/event/elon-musk-of-tweets-april-21-april-28/elon-musk-of-tweets-april-21-april-28-180-199#xpkQ2pz
8014
8019
  */
8015
- url: string;
8020
+ url?: string;
8016
8021
  /**
8017
8022
  * @description Set if amount is coming from signal
8018
8023
  * @example false
@@ -8051,10 +8056,15 @@ interface components {
8051
8056
  */
8052
8057
  api_id: number;
8053
8058
  /**
8054
- * @description The market url
8059
+ * @description Set to true to specify a market slug dynamically within the signal payload.
8060
+ * @example true
8061
+ */
8062
+ slug_from_signal: boolean;
8063
+ /**
8064
+ * @description The market url (required if slug_from_signal is false)
8055
8065
  * @example https://polymarket.com/event/elon-musk-of-tweets-april-21-april-28/elon-musk-of-tweets-april-21-april-28-180-199#xpkQ2pz
8056
8066
  */
8057
- url: string;
8067
+ url?: string;
8058
8068
  /**
8059
8069
  * @description Set if amount is coming from signal
8060
8070
  * @example false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sigrex/client",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "TypeScript API Client for Sigrex with automatic HMAC-SHA256 request signing and support for ML-DSA44",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",