@rlvt/contents-openapi-client 1.0.25 → 1.0.29
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/definitions.d.ts +6 -6
- package/package.json +1 -1
package/build/definitions.d.ts
CHANGED
|
@@ -24,14 +24,14 @@ export declare type SerializedContentResource = {
|
|
|
24
24
|
readonly createdAt: (Date) & readonlyP;
|
|
25
25
|
readonly updatedAt: (Date) & readonlyP;
|
|
26
26
|
};
|
|
27
|
-
export declare type
|
|
27
|
+
export declare type Pick_ContentFontResource_type_or_family_or_files_ = {
|
|
28
28
|
type: "font";
|
|
29
29
|
family: string;
|
|
30
30
|
files: {
|
|
31
31
|
[key: string]: string;
|
|
32
32
|
};
|
|
33
33
|
};
|
|
34
|
-
export declare type
|
|
34
|
+
export declare type ContentFontResource = SerializedContentResource & Pick_ContentFontResource_type_or_family_or_files_;
|
|
35
35
|
export declare type Pick_SerializedContentFontResource_resourceGroupIds_or_family_or_files_ = {
|
|
36
36
|
resourceGroupIds: string[];
|
|
37
37
|
family: string;
|
|
@@ -173,7 +173,7 @@ export declare type SerializedContentVersions = {
|
|
|
173
173
|
};
|
|
174
174
|
template: BaseTemplate;
|
|
175
175
|
};
|
|
176
|
-
export declare type
|
|
176
|
+
export declare type ContentVersion = SerializedContentVersions;
|
|
177
177
|
export declare enum ContentStatus {
|
|
178
178
|
DRAFT = "draft",
|
|
179
179
|
PUBLISHING = "publishing",
|
|
@@ -184,14 +184,14 @@ export declare type SerializedContent = {
|
|
|
184
184
|
readonly id: (string) & readonlyP;
|
|
185
185
|
readonly companyId: (string) & readonlyP;
|
|
186
186
|
resourceGroupIds: string[];
|
|
187
|
-
readonly versions: (
|
|
187
|
+
readonly versions: (ContentVersion[]) & readonlyP;
|
|
188
188
|
readonly createdAt: (Date) & readonlyP;
|
|
189
189
|
readonly updatedAt: (Date) & readonlyP;
|
|
190
190
|
name: string;
|
|
191
191
|
description?: string;
|
|
192
192
|
readonly status: (ContentStatus) & readonlyP;
|
|
193
193
|
};
|
|
194
|
-
export declare type
|
|
194
|
+
export declare type Content = SerializedContent;
|
|
195
195
|
export declare type Pick_SerializedContent_resourceGroupIds_or_name_or_description_ = {
|
|
196
196
|
resourceGroupIds: string[];
|
|
197
197
|
name: string;
|
|
@@ -201,7 +201,7 @@ export declare type Partial_SerializedContent_ = {
|
|
|
201
201
|
readonly id?: (string) & readonlyP;
|
|
202
202
|
readonly companyId?: (string) & readonlyP;
|
|
203
203
|
resourceGroupIds?: string[];
|
|
204
|
-
readonly versions?: (
|
|
204
|
+
readonly versions?: (ContentVersion[]) & readonlyP;
|
|
205
205
|
readonly createdAt?: (Date) & readonlyP;
|
|
206
206
|
readonly updatedAt?: (Date) & readonlyP;
|
|
207
207
|
name?: string;
|
package/package.json
CHANGED