@chirpie/sdk 1.0.9 → 1.0.10
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -0
- package/dist/index.mjs +6 -0
- package/package.json +19 -2
package/dist/index.d.mts
CHANGED
|
@@ -157,21 +157,27 @@ declare class ChirpieClient {
|
|
|
157
157
|
authorization_url: string;
|
|
158
158
|
}>;
|
|
159
159
|
connectTelegramAccount(input: ConnectTelegramInput): Promise<ApiAccount>;
|
|
160
|
+
/** Coming Soon. */
|
|
160
161
|
connectRedditAccount(): Promise<{
|
|
161
162
|
authorization_url: string;
|
|
162
163
|
}>;
|
|
164
|
+
/** Coming Soon. */
|
|
163
165
|
connectPinterestAccount(): Promise<{
|
|
164
166
|
authorization_url: string;
|
|
165
167
|
}>;
|
|
168
|
+
/** Coming Soon. */
|
|
166
169
|
connectTikTokAccount(): Promise<{
|
|
167
170
|
authorization_url: string;
|
|
168
171
|
}>;
|
|
172
|
+
/** Coming Soon. */
|
|
169
173
|
connectYouTubeAccount(): Promise<{
|
|
170
174
|
authorization_url: string;
|
|
171
175
|
}>;
|
|
176
|
+
/** Coming Soon. */
|
|
172
177
|
connectGBPAccount(): Promise<{
|
|
173
178
|
authorization_url: string;
|
|
174
179
|
}>;
|
|
180
|
+
/** Coming Soon. */
|
|
175
181
|
connectSnapchatAccount(): Promise<{
|
|
176
182
|
authorization_url: string;
|
|
177
183
|
}>;
|
package/dist/index.d.ts
CHANGED
|
@@ -157,21 +157,27 @@ declare class ChirpieClient {
|
|
|
157
157
|
authorization_url: string;
|
|
158
158
|
}>;
|
|
159
159
|
connectTelegramAccount(input: ConnectTelegramInput): Promise<ApiAccount>;
|
|
160
|
+
/** Coming Soon. */
|
|
160
161
|
connectRedditAccount(): Promise<{
|
|
161
162
|
authorization_url: string;
|
|
162
163
|
}>;
|
|
164
|
+
/** Coming Soon. */
|
|
163
165
|
connectPinterestAccount(): Promise<{
|
|
164
166
|
authorization_url: string;
|
|
165
167
|
}>;
|
|
168
|
+
/** Coming Soon. */
|
|
166
169
|
connectTikTokAccount(): Promise<{
|
|
167
170
|
authorization_url: string;
|
|
168
171
|
}>;
|
|
172
|
+
/** Coming Soon. */
|
|
169
173
|
connectYouTubeAccount(): Promise<{
|
|
170
174
|
authorization_url: string;
|
|
171
175
|
}>;
|
|
176
|
+
/** Coming Soon. */
|
|
172
177
|
connectGBPAccount(): Promise<{
|
|
173
178
|
authorization_url: string;
|
|
174
179
|
}>;
|
|
180
|
+
/** Coming Soon. */
|
|
175
181
|
connectSnapchatAccount(): Promise<{
|
|
176
182
|
authorization_url: string;
|
|
177
183
|
}>;
|
package/dist/index.js
CHANGED
|
@@ -148,31 +148,37 @@ var ChirpieClient = class {
|
|
|
148
148
|
async connectTelegramAccount(input) {
|
|
149
149
|
return this.request("POST", "/accounts", input);
|
|
150
150
|
}
|
|
151
|
+
/** Coming Soon. */
|
|
151
152
|
async connectRedditAccount() {
|
|
152
153
|
return this.request("POST", "/accounts", {
|
|
153
154
|
platform: "reddit"
|
|
154
155
|
});
|
|
155
156
|
}
|
|
157
|
+
/** Coming Soon. */
|
|
156
158
|
async connectPinterestAccount() {
|
|
157
159
|
return this.request("POST", "/accounts", {
|
|
158
160
|
platform: "pinterest"
|
|
159
161
|
});
|
|
160
162
|
}
|
|
163
|
+
/** Coming Soon. */
|
|
161
164
|
async connectTikTokAccount() {
|
|
162
165
|
return this.request("POST", "/accounts", {
|
|
163
166
|
platform: "tiktok"
|
|
164
167
|
});
|
|
165
168
|
}
|
|
169
|
+
/** Coming Soon. */
|
|
166
170
|
async connectYouTubeAccount() {
|
|
167
171
|
return this.request("POST", "/accounts", {
|
|
168
172
|
platform: "youtube"
|
|
169
173
|
});
|
|
170
174
|
}
|
|
175
|
+
/** Coming Soon. */
|
|
171
176
|
async connectGBPAccount() {
|
|
172
177
|
return this.request("POST", "/accounts", {
|
|
173
178
|
platform: "google_business"
|
|
174
179
|
});
|
|
175
180
|
}
|
|
181
|
+
/** Coming Soon. */
|
|
176
182
|
async connectSnapchatAccount() {
|
|
177
183
|
return this.request("POST", "/accounts", {
|
|
178
184
|
platform: "snapchat"
|
package/dist/index.mjs
CHANGED
|
@@ -116,31 +116,37 @@ var ChirpieClient = class {
|
|
|
116
116
|
async connectTelegramAccount(input) {
|
|
117
117
|
return this.request("POST", "/accounts", input);
|
|
118
118
|
}
|
|
119
|
+
/** Coming Soon. */
|
|
119
120
|
async connectRedditAccount() {
|
|
120
121
|
return this.request("POST", "/accounts", {
|
|
121
122
|
platform: "reddit"
|
|
122
123
|
});
|
|
123
124
|
}
|
|
125
|
+
/** Coming Soon. */
|
|
124
126
|
async connectPinterestAccount() {
|
|
125
127
|
return this.request("POST", "/accounts", {
|
|
126
128
|
platform: "pinterest"
|
|
127
129
|
});
|
|
128
130
|
}
|
|
131
|
+
/** Coming Soon. */
|
|
129
132
|
async connectTikTokAccount() {
|
|
130
133
|
return this.request("POST", "/accounts", {
|
|
131
134
|
platform: "tiktok"
|
|
132
135
|
});
|
|
133
136
|
}
|
|
137
|
+
/** Coming Soon. */
|
|
134
138
|
async connectYouTubeAccount() {
|
|
135
139
|
return this.request("POST", "/accounts", {
|
|
136
140
|
platform: "youtube"
|
|
137
141
|
});
|
|
138
142
|
}
|
|
143
|
+
/** Coming Soon. */
|
|
139
144
|
async connectGBPAccount() {
|
|
140
145
|
return this.request("POST", "/accounts", {
|
|
141
146
|
platform: "google_business"
|
|
142
147
|
});
|
|
143
148
|
}
|
|
149
|
+
/** Coming Soon. */
|
|
144
150
|
async connectSnapchatAccount() {
|
|
145
151
|
return this.request("POST", "/accounts", {
|
|
146
152
|
platform: "snapchat"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chirpie/sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "Chirpie SDK — TypeScript client for the Chirpie social media API",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,8 +33,25 @@
|
|
|
33
33
|
"social-media",
|
|
34
34
|
"api",
|
|
35
35
|
"sdk",
|
|
36
|
+
"x",
|
|
36
37
|
"twitter",
|
|
37
|
-
"
|
|
38
|
+
"bluesky",
|
|
39
|
+
"linkedin",
|
|
40
|
+
"threads",
|
|
41
|
+
"mastodon",
|
|
42
|
+
"instagram",
|
|
43
|
+
"facebook",
|
|
44
|
+
"telegram",
|
|
45
|
+
"reddit",
|
|
46
|
+
"pinterest",
|
|
47
|
+
"tiktok",
|
|
48
|
+
"youtube",
|
|
49
|
+
"google-business",
|
|
50
|
+
"snapchat",
|
|
51
|
+
"fediverse",
|
|
52
|
+
"scheduling",
|
|
53
|
+
"agent",
|
|
54
|
+
"llm"
|
|
38
55
|
],
|
|
39
56
|
"license": "MIT",
|
|
40
57
|
"devDependencies": {
|