@chirpie/sdk 1.0.13 → 1.0.14
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 -2
- package/dist/index.d.ts +6 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -136,7 +136,9 @@ interface CreatePostInput {
|
|
|
136
136
|
text: string;
|
|
137
137
|
media_urls?: string[];
|
|
138
138
|
/**
|
|
139
|
-
* ISO 8601 datetime to schedule the post
|
|
139
|
+
* ISO 8601 datetime to schedule the post. Must be in the future and carry a
|
|
140
|
+
* timezone — "2026-04-01T14:00:00Z" or "2026-04-01T16:00:00+02:00" both work
|
|
141
|
+
* and are normalized to UTC.
|
|
140
142
|
* Scheduled posts publish within ~5 minutes of this time.
|
|
141
143
|
*/
|
|
142
144
|
schedule_at?: string;
|
|
@@ -148,7 +150,9 @@ interface CreateThreadInput {
|
|
|
148
150
|
media_urls?: string[];
|
|
149
151
|
}[];
|
|
150
152
|
/**
|
|
151
|
-
* ISO 8601 datetime to schedule the entire thread
|
|
153
|
+
* ISO 8601 datetime to schedule the entire thread. Must be in the future and
|
|
154
|
+
* carry a timezone — "2026-04-01T14:00:00Z" or "2026-04-01T16:00:00+02:00"
|
|
155
|
+
* both work and are normalized to UTC.
|
|
152
156
|
* Scheduled threads publish within ~5 minutes of this time.
|
|
153
157
|
*/
|
|
154
158
|
schedule_at?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -136,7 +136,9 @@ interface CreatePostInput {
|
|
|
136
136
|
text: string;
|
|
137
137
|
media_urls?: string[];
|
|
138
138
|
/**
|
|
139
|
-
* ISO 8601 datetime to schedule the post
|
|
139
|
+
* ISO 8601 datetime to schedule the post. Must be in the future and carry a
|
|
140
|
+
* timezone — "2026-04-01T14:00:00Z" or "2026-04-01T16:00:00+02:00" both work
|
|
141
|
+
* and are normalized to UTC.
|
|
140
142
|
* Scheduled posts publish within ~5 minutes of this time.
|
|
141
143
|
*/
|
|
142
144
|
schedule_at?: string;
|
|
@@ -148,7 +150,9 @@ interface CreateThreadInput {
|
|
|
148
150
|
media_urls?: string[];
|
|
149
151
|
}[];
|
|
150
152
|
/**
|
|
151
|
-
* ISO 8601 datetime to schedule the entire thread
|
|
153
|
+
* ISO 8601 datetime to schedule the entire thread. Must be in the future and
|
|
154
|
+
* carry a timezone — "2026-04-01T14:00:00Z" or "2026-04-01T16:00:00+02:00"
|
|
155
|
+
* both work and are normalized to UTC.
|
|
152
156
|
* Scheduled threads publish within ~5 minutes of this time.
|
|
153
157
|
*/
|
|
154
158
|
schedule_at?: string;
|