otomato-sdk 2.0.90 → 2.0.91

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.
@@ -621,6 +621,7 @@ export const TRIGGERS = {
621
621
  8453
622
622
  ],
623
623
  "image": "https://otomato-sdk-images.s3.eu-west-1.amazonaws.com/pendle.webp",
624
+ "comingSoon": true,
624
625
  "PT_IMPLIED_YIELD": {
625
626
  "name": "PT Implied Yield",
626
627
  "description": "Retrieves the PT implied yield for a specified Pendle market by reading its state and computing exp(lnImpliedRate) - 1.",
@@ -2684,6 +2685,7 @@ export const TRIGGERS = {
2684
2685
  "description": "Tracks new tweets in real time",
2685
2686
  "tags": {},
2686
2687
  "image": "https://otomato-sdk-images.s3.eu-west-1.amazonaws.com/X.webp",
2688
+ "comingSoon": true,
2687
2689
  "X_POST_TRIGGER": {
2688
2690
  "name": "X Post Trigger",
2689
2691
  "description": "Track an account activity via their posts",
@@ -2803,6 +2805,7 @@ export const TRIGGERS = {
2803
2805
  1
2804
2806
  ],
2805
2807
  "image": "https://otomato-sdk-images.s3.eu-west-1.amazonaws.com/blur.jpg",
2808
+ "comingSoon": true,
2806
2809
  "LISTING": {
2807
2810
  "name": "NFT Listing",
2808
2811
  "description": "Subscribe to live NFT listing events based on filters.",
@@ -1,4 +1,4 @@
1
- export const SDK_VERSION = '2.0.90';
1
+ export const SDK_VERSION = '2.0.91';
2
2
  export function compareVersions(v1, v2) {
3
3
  // Split the version strings into parts
4
4
  const v1Parts = v1.split('.').map(Number);
@@ -258,6 +258,7 @@ export declare const TRIGGERS: {
258
258
  description: string;
259
259
  chains: number[];
260
260
  image: string;
261
+ comingSoon: boolean;
261
262
  PT_IMPLIED_YIELD: {
262
263
  name: string;
263
264
  description: string;
@@ -1098,6 +1099,7 @@ export declare const TRIGGERS: {
1098
1099
  description: string;
1099
1100
  tags: {};
1100
1101
  image: string;
1102
+ comingSoon: boolean;
1101
1103
  X_POST_TRIGGER: {
1102
1104
  name: string;
1103
1105
  description: string;
@@ -1171,6 +1173,7 @@ export declare const TRIGGERS: {
1171
1173
  description: string;
1172
1174
  chains: number[];
1173
1175
  image: string;
1176
+ comingSoon: boolean;
1174
1177
  LISTING: {
1175
1178
  name: string;
1176
1179
  description: string;
@@ -1,2 +1,2 @@
1
- export declare const SDK_VERSION = "2.0.90";
1
+ export declare const SDK_VERSION = "2.0.91";
2
2
  export declare function compareVersions(v1: string, v2: string): number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "otomato-sdk",
3
- "version": "2.0.90",
3
+ "version": "2.0.91",
4
4
  "description": "An SDK for building and managing automations on Otomato",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/types/src/index.d.ts",