@rlvt/contents-openapi-client 1.0.24 → 1.0.25
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/build/api.d.ts +45 -0
- package/build/definitions.d.ts +6 -0
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -185,6 +185,15 @@ export default class {
|
|
|
185
185
|
readonly?: "__readonly";
|
|
186
186
|
};
|
|
187
187
|
readonly versions: {
|
|
188
|
+
readonly id: string & {
|
|
189
|
+
readonly?: "__readonly";
|
|
190
|
+
};
|
|
191
|
+
readonly createdAt: Date & {
|
|
192
|
+
readonly?: "__readonly";
|
|
193
|
+
};
|
|
194
|
+
readonly updatedAt: Date & {
|
|
195
|
+
readonly?: "__readonly";
|
|
196
|
+
};
|
|
188
197
|
readonly state: (ContentVersionState.DRAFT & {
|
|
189
198
|
readonly?: "__readonly";
|
|
190
199
|
}) | (ContentVersionState.LIVE & {
|
|
@@ -328,6 +337,15 @@ export default class {
|
|
|
328
337
|
readonly?: "__readonly";
|
|
329
338
|
};
|
|
330
339
|
readonly versions: {
|
|
340
|
+
readonly id: string & {
|
|
341
|
+
readonly?: "__readonly";
|
|
342
|
+
};
|
|
343
|
+
readonly createdAt: Date & {
|
|
344
|
+
readonly?: "__readonly";
|
|
345
|
+
};
|
|
346
|
+
readonly updatedAt: Date & {
|
|
347
|
+
readonly?: "__readonly";
|
|
348
|
+
};
|
|
331
349
|
readonly state: (ContentVersionState.DRAFT & {
|
|
332
350
|
readonly?: "__readonly";
|
|
333
351
|
}) | (ContentVersionState.LIVE & {
|
|
@@ -470,6 +488,15 @@ export default class {
|
|
|
470
488
|
readonly?: "__readonly";
|
|
471
489
|
};
|
|
472
490
|
readonly versions: {
|
|
491
|
+
readonly id: string & {
|
|
492
|
+
readonly?: "__readonly";
|
|
493
|
+
};
|
|
494
|
+
readonly createdAt: Date & {
|
|
495
|
+
readonly?: "__readonly";
|
|
496
|
+
};
|
|
497
|
+
readonly updatedAt: Date & {
|
|
498
|
+
readonly?: "__readonly";
|
|
499
|
+
};
|
|
473
500
|
readonly state: (ContentVersionState.DRAFT & {
|
|
474
501
|
readonly?: "__readonly";
|
|
475
502
|
}) | (ContentVersionState.LIVE & {
|
|
@@ -712,6 +739,15 @@ export default class {
|
|
|
712
739
|
readonly?: "__readonly";
|
|
713
740
|
};
|
|
714
741
|
readonly versions: {
|
|
742
|
+
readonly id: string & {
|
|
743
|
+
readonly?: "__readonly";
|
|
744
|
+
};
|
|
745
|
+
readonly createdAt: Date & {
|
|
746
|
+
readonly?: "__readonly";
|
|
747
|
+
};
|
|
748
|
+
readonly updatedAt: Date & {
|
|
749
|
+
readonly?: "__readonly";
|
|
750
|
+
};
|
|
715
751
|
readonly state: (ContentVersionState.DRAFT & {
|
|
716
752
|
readonly?: "__readonly";
|
|
717
753
|
}) | (ContentVersionState.LIVE & {
|
|
@@ -865,6 +901,15 @@ export default class {
|
|
|
865
901
|
readonly?: "__readonly";
|
|
866
902
|
};
|
|
867
903
|
readonly versions: {
|
|
904
|
+
readonly id: string & {
|
|
905
|
+
readonly?: "__readonly";
|
|
906
|
+
};
|
|
907
|
+
readonly createdAt: Date & {
|
|
908
|
+
readonly?: "__readonly";
|
|
909
|
+
};
|
|
910
|
+
readonly updatedAt: Date & {
|
|
911
|
+
readonly?: "__readonly";
|
|
912
|
+
};
|
|
868
913
|
readonly state: (ContentVersionState.DRAFT & {
|
|
869
914
|
readonly?: "__readonly";
|
|
870
915
|
}) | (ContentVersionState.LIVE & {
|
package/build/definitions.d.ts
CHANGED
|
@@ -163,6 +163,9 @@ export declare type BaseTemplate = {
|
|
|
163
163
|
componentGroups: __x_string___name_string_or_undefined___and__rendered_boolean____;
|
|
164
164
|
};
|
|
165
165
|
export declare type SerializedContentVersions = {
|
|
166
|
+
readonly id: (string) & readonlyP;
|
|
167
|
+
readonly createdAt: (Date) & readonlyP;
|
|
168
|
+
readonly updatedAt: (Date) & readonlyP;
|
|
166
169
|
readonly state: (ContentVersionState) & readonlyP;
|
|
167
170
|
previewUrl?: string;
|
|
168
171
|
metadata?: {
|
|
@@ -206,6 +209,9 @@ export declare type Partial_SerializedContent_ = {
|
|
|
206
209
|
readonly status?: (ContentStatus) & readonlyP;
|
|
207
210
|
};
|
|
208
211
|
export declare type Partial_SerializedContentVersions_ = {
|
|
212
|
+
readonly id?: (string) & readonlyP;
|
|
213
|
+
readonly createdAt?: (Date) & readonlyP;
|
|
214
|
+
readonly updatedAt?: (Date) & readonlyP;
|
|
209
215
|
readonly state?: (ContentVersionState) & readonlyP;
|
|
210
216
|
previewUrl?: string;
|
|
211
217
|
metadata?: {
|
package/build/definitions.js
CHANGED
|
@@ -16,4 +16,4 @@ var ContentStatus;
|
|
|
16
16
|
ContentStatus["PUBLISHED"] = "published";
|
|
17
17
|
ContentStatus["ERROR"] = "error";
|
|
18
18
|
})(ContentStatus = exports.ContentStatus || (exports.ContentStatus = {}));
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBb0VwQixJQUFZLG1CQUlYO0FBSkQsV0FBWSxtQkFBbUI7SUFDM0Isc0NBQWUsQ0FBQTtJQUNmLG9DQUFhLENBQUE7SUFDYiw0Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsbUJBQW1CLEdBQW5CLDJCQUFtQixLQUFuQiwyQkFBbUIsUUFJOUI7QUF5SEQsSUFBWSxhQUtYO0FBTEQsV0FBWSxhQUFhO0lBQ3JCLGdDQUFlLENBQUE7SUFDZiwwQ0FBeUIsQ0FBQTtJQUN6Qix3Q0FBdUIsQ0FBQTtJQUN2QixnQ0FBZSxDQUFBO0FBQ25CLENBQUMsRUFMVyxhQUFhLEdBQWIscUJBQWEsS0FBYixxQkFBYSxRQUt4QiJ9
|
package/package.json
CHANGED