@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 +14 -4
- package/dist/index.d.ts +14 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -8009,10 +8009,15 @@ interface components {
|
|
|
8009
8009
|
*/
|
|
8010
8010
|
api_id: number;
|
|
8011
8011
|
/**
|
|
8012
|
-
* @description
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
8067
|
+
url?: string;
|
|
8058
8068
|
/**
|
|
8059
8069
|
* @description Set if amount is coming from signal
|
|
8060
8070
|
* @example false
|
package/package.json
CHANGED