@parra/parra-js-sdk 0.3.591 → 0.3.593
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/ParraAPI.d.ts +5 -0
- package/dist/ParraAPI.js +1 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -884,6 +884,7 @@ export interface CreateArticleRequestBody {
|
|
884
884
|
}
|
885
885
|
export declare enum ArticleStatus {
|
886
886
|
draft = "draft",
|
887
|
+
dirty = "dirty",
|
887
888
|
published = "published",
|
888
889
|
scheduled = "scheduled"
|
889
890
|
}
|
@@ -938,6 +939,8 @@ export interface ArticleStub {
|
|
938
939
|
header_image?: ImageAssetStub | null;
|
939
940
|
status: ArticleStatus;
|
940
941
|
scheduled_at?: string | null;
|
942
|
+
dirty?: boolean;
|
943
|
+
published?: boolean;
|
941
944
|
published_at?: string | null;
|
942
945
|
last_updated_at: string | null;
|
943
946
|
authors: Array<CreatorUpdateSenderStub>;
|
@@ -959,6 +962,8 @@ export interface Article {
|
|
959
962
|
header_image?: ImageAssetStub | null;
|
960
963
|
status: ArticleStatus;
|
961
964
|
scheduled_at?: string | null;
|
965
|
+
dirty?: boolean;
|
966
|
+
published?: boolean;
|
962
967
|
published_at?: string | null;
|
963
968
|
last_updated_at: string | null;
|
964
969
|
authors: Array<CreatorUpdateSenderStub>;
|
package/dist/ParraAPI.js
CHANGED
@@ -140,6 +140,7 @@ var SubscriptionStatus;
|
|
140
140
|
var ArticleStatus;
|
141
141
|
(function (ArticleStatus) {
|
142
142
|
ArticleStatus["draft"] = "draft";
|
143
|
+
ArticleStatus["dirty"] = "dirty";
|
143
144
|
ArticleStatus["published"] = "published";
|
144
145
|
ArticleStatus["scheduled"] = "scheduled";
|
145
146
|
})(ArticleStatus || (exports.ArticleStatus = ArticleStatus = {}));
|