otomato-sdk 2.0.507 → 2.0.508

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.
@@ -10,10 +10,15 @@ export const TRIGGERS = {
10
10
  "description": "Track an account activity via their posts (twitter)",
11
11
  "type": 5,
12
12
  "output": {
13
+ "account": "string",
14
+ "tweetId": "string",
13
15
  "tweetContent": "string",
14
16
  "tweetURL": "string",
15
17
  "timestamp": "string",
16
- "account": "string"
18
+ "retweetAccount": "string",
19
+ "quotedTweet": "Object",
20
+ "images": "array",
21
+ "urls": "array"
17
22
  },
18
23
  "parameters": [
19
24
  {
@@ -10188,10 +10193,15 @@ export const TRIGGERS = {
10188
10193
  "description": "Track an account activity via their posts (twitter)",
10189
10194
  "type": 5,
10190
10195
  "output": {
10196
+ "account": "string",
10197
+ "tweetId": "string",
10191
10198
  "tweetContent": "string",
10192
10199
  "tweetURL": "string",
10193
10200
  "timestamp": "string",
10194
- "account": "string"
10201
+ "retweetAccount": "string",
10202
+ "quotedTweet": "Object",
10203
+ "images": "array",
10204
+ "urls": "array"
10195
10205
  },
10196
10206
  "parameters": [
10197
10207
  {
@@ -1,4 +1,4 @@
1
- export const SDK_VERSION = '2.0.507';
1
+ export const SDK_VERSION = '2.0.508';
2
2
  export function compareVersions(v1, v2) {
3
3
  // Split the version strings into parts
4
4
  const v1Parts = v1.split('.').map(Number);
@@ -11,10 +11,15 @@ export declare const TRIGGERS: {
11
11
  description: string;
12
12
  type: number;
13
13
  output: {
14
+ account: string;
15
+ tweetId: string;
14
16
  tweetContent: string;
15
17
  tweetURL: string;
16
18
  timestamp: string;
17
- account: string;
19
+ retweetAccount: string;
20
+ quotedTweet: string;
21
+ images: string;
22
+ urls: string;
18
23
  };
19
24
  parameters: Parameter[];
20
25
  examples: {
@@ -3773,10 +3778,15 @@ export declare const TRIGGERS: {
3773
3778
  description: string;
3774
3779
  type: number;
3775
3780
  output: {
3781
+ account: string;
3782
+ tweetId: string;
3776
3783
  tweetContent: string;
3777
3784
  tweetURL: string;
3778
3785
  timestamp: string;
3779
- account: string;
3786
+ retweetAccount: string;
3787
+ quotedTweet: string;
3788
+ images: string;
3789
+ urls: string;
3780
3790
  };
3781
3791
  parameters: Parameter[];
3782
3792
  examples: {
@@ -1,2 +1,2 @@
1
- export declare const SDK_VERSION = "2.0.507";
1
+ export declare const SDK_VERSION = "2.0.508";
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.507",
3
+ "version": "2.0.508",
4
4
  "description": "An SDK for building and managing automations on Otomato",
5
5
  "repository": {
6
6
  "type": "git",