@rlvt/contents-openapi-client 0.0.0-2c7b25a → 0.0.0-2edb461
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 +203 -65
- package/build/api.js +23 -1
- package/build/definitions.d.ts +71 -38
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { AxiosInstance, AxiosRequestConfig } from "axios";
|
|
2
2
|
import type { ContentStatus } from "./definitions";
|
|
3
|
-
export { Contents, ContentStatus, Pick_SerializedContent_resourceGroupIds_or_name_or_description_, Partial_SerializedContent_, Partial_SerializedContentVersions_, AnyValue, Readable, WithoutReadonly, WithoutWriteonly } from "./definitions";
|
|
3
|
+
export { ContentFontResources, Pick_SerializedContentFontResource_resourceGroupIds_or_family_or_files_, Partial_SerializedContentFontResource_, Contents, ContentStatus, Pick_SerializedContent_resourceGroupIds_or_name_or_description_, Partial_SerializedContent_, Partial_SerializedContentVersions_, AnyValue, Readable, WithoutReadonly, WithoutWriteonly } from "./definitions";
|
|
4
4
|
export default class {
|
|
5
5
|
axios: AxiosInstance;
|
|
6
6
|
constructor(configOrInstance: AxiosRequestConfig | AxiosInstance);
|
|
7
|
+
private listContentFontResource;
|
|
8
|
+
private createContentFontResource;
|
|
9
|
+
private getContentFontResource;
|
|
10
|
+
private updateContentFontResource;
|
|
7
11
|
private listContent;
|
|
8
12
|
private createContent;
|
|
9
13
|
private getContent;
|
|
@@ -11,13 +15,147 @@ export default class {
|
|
|
11
15
|
private deleteContent;
|
|
12
16
|
private publishContent;
|
|
13
17
|
private renderContent;
|
|
18
|
+
get ContentResource(): {
|
|
19
|
+
listContentFontResource: (params: {
|
|
20
|
+
ids?: string[];
|
|
21
|
+
resourceGroupIds?: string[];
|
|
22
|
+
}, options?: AxiosRequestConfig) => Promise<import("axios").AxiosResponse<{
|
|
23
|
+
status: "success";
|
|
24
|
+
program: string;
|
|
25
|
+
version: string;
|
|
26
|
+
datetime: string;
|
|
27
|
+
code?: number;
|
|
28
|
+
message: string;
|
|
29
|
+
data: {
|
|
30
|
+
resourceGroupIds: string[];
|
|
31
|
+
readonly id: string & {
|
|
32
|
+
readonly?: "__readonly";
|
|
33
|
+
};
|
|
34
|
+
readonly createdAt: Date & {
|
|
35
|
+
readonly?: "__readonly";
|
|
36
|
+
};
|
|
37
|
+
readonly updatedAt: Date & {
|
|
38
|
+
readonly?: "__readonly";
|
|
39
|
+
};
|
|
40
|
+
family: string;
|
|
41
|
+
files: {
|
|
42
|
+
[x: string]: string;
|
|
43
|
+
};
|
|
44
|
+
readonly companyId: string & {
|
|
45
|
+
readonly?: "__readonly";
|
|
46
|
+
};
|
|
47
|
+
type: "font";
|
|
48
|
+
}[];
|
|
49
|
+
}>>;
|
|
50
|
+
createContentFontResource: (data: {
|
|
51
|
+
resourceGroupIds: string[];
|
|
52
|
+
family: string;
|
|
53
|
+
files: {
|
|
54
|
+
[x: string]: string;
|
|
55
|
+
};
|
|
56
|
+
}, options?: AxiosRequestConfig) => Promise<import("axios").AxiosResponse<{
|
|
57
|
+
status: "success";
|
|
58
|
+
program: string;
|
|
59
|
+
version: string;
|
|
60
|
+
datetime: string;
|
|
61
|
+
code?: number;
|
|
62
|
+
message: string;
|
|
63
|
+
data: {
|
|
64
|
+
resourceGroupIds: string[];
|
|
65
|
+
readonly id: string & {
|
|
66
|
+
readonly?: "__readonly";
|
|
67
|
+
};
|
|
68
|
+
readonly createdAt: Date & {
|
|
69
|
+
readonly?: "__readonly";
|
|
70
|
+
};
|
|
71
|
+
readonly updatedAt: Date & {
|
|
72
|
+
readonly?: "__readonly";
|
|
73
|
+
};
|
|
74
|
+
family: string;
|
|
75
|
+
files: {
|
|
76
|
+
[x: string]: string;
|
|
77
|
+
};
|
|
78
|
+
readonly companyId: string & {
|
|
79
|
+
readonly?: "__readonly";
|
|
80
|
+
};
|
|
81
|
+
type: "font";
|
|
82
|
+
};
|
|
83
|
+
}>>;
|
|
84
|
+
getContentFontResource: (params: {
|
|
85
|
+
id: string;
|
|
86
|
+
}, options?: AxiosRequestConfig) => Promise<import("axios").AxiosResponse<{
|
|
87
|
+
status: "success";
|
|
88
|
+
program: string;
|
|
89
|
+
version: string;
|
|
90
|
+
datetime: string;
|
|
91
|
+
code?: number;
|
|
92
|
+
message: string;
|
|
93
|
+
data: {
|
|
94
|
+
resourceGroupIds: string[];
|
|
95
|
+
readonly id: string & {
|
|
96
|
+
readonly?: "__readonly";
|
|
97
|
+
};
|
|
98
|
+
readonly createdAt: Date & {
|
|
99
|
+
readonly?: "__readonly";
|
|
100
|
+
};
|
|
101
|
+
readonly updatedAt: Date & {
|
|
102
|
+
readonly?: "__readonly";
|
|
103
|
+
};
|
|
104
|
+
family: string;
|
|
105
|
+
files: {
|
|
106
|
+
[x: string]: string;
|
|
107
|
+
};
|
|
108
|
+
readonly companyId: string & {
|
|
109
|
+
readonly?: "__readonly";
|
|
110
|
+
};
|
|
111
|
+
type: "font";
|
|
112
|
+
};
|
|
113
|
+
}>>;
|
|
114
|
+
updateContentFontResource: (params: {
|
|
115
|
+
id: string;
|
|
116
|
+
}, data: {
|
|
117
|
+
resourceGroupIds?: string[];
|
|
118
|
+
family?: string;
|
|
119
|
+
files?: {
|
|
120
|
+
[x: string]: string;
|
|
121
|
+
};
|
|
122
|
+
type?: "font";
|
|
123
|
+
}, options?: AxiosRequestConfig) => Promise<import("axios").AxiosResponse<{
|
|
124
|
+
status: "success";
|
|
125
|
+
program: string;
|
|
126
|
+
version: string;
|
|
127
|
+
datetime: string;
|
|
128
|
+
code?: number;
|
|
129
|
+
message: string;
|
|
130
|
+
data: {
|
|
131
|
+
resourceGroupIds: string[];
|
|
132
|
+
readonly id: string & {
|
|
133
|
+
readonly?: "__readonly";
|
|
134
|
+
};
|
|
135
|
+
readonly createdAt: Date & {
|
|
136
|
+
readonly?: "__readonly";
|
|
137
|
+
};
|
|
138
|
+
readonly updatedAt: Date & {
|
|
139
|
+
readonly?: "__readonly";
|
|
140
|
+
};
|
|
141
|
+
family: string;
|
|
142
|
+
files: {
|
|
143
|
+
[x: string]: string;
|
|
144
|
+
};
|
|
145
|
+
readonly companyId: string & {
|
|
146
|
+
readonly?: "__readonly";
|
|
147
|
+
};
|
|
148
|
+
type: "font";
|
|
149
|
+
};
|
|
150
|
+
}>>;
|
|
151
|
+
};
|
|
14
152
|
get Content(): {
|
|
15
153
|
list: (params: {
|
|
16
154
|
ids?: string[];
|
|
17
155
|
name?: string;
|
|
18
156
|
resourceGroupIds?: string[];
|
|
19
157
|
status?: ContentStatus[];
|
|
20
|
-
sortBy?: "
|
|
158
|
+
sortBy?: "createdAt" | "updatedAt";
|
|
21
159
|
sortOrder?: "desc" | "asc";
|
|
22
160
|
page?: number;
|
|
23
161
|
perPage?: number;
|
|
@@ -33,14 +171,17 @@ export default class {
|
|
|
33
171
|
message: string;
|
|
34
172
|
data: {
|
|
35
173
|
description?: string;
|
|
36
|
-
|
|
174
|
+
resourceGroupIds: string[];
|
|
175
|
+
readonly id: string & {
|
|
37
176
|
readonly?: "__readonly";
|
|
38
177
|
};
|
|
39
178
|
readonly createdAt: Date & {
|
|
40
179
|
readonly?: "__readonly";
|
|
41
180
|
};
|
|
181
|
+
readonly updatedAt: Date & {
|
|
182
|
+
readonly?: "__readonly";
|
|
183
|
+
};
|
|
42
184
|
name: string;
|
|
43
|
-
resourceGroupIds: string[];
|
|
44
185
|
readonly status: (ContentStatus.DRAFT & {
|
|
45
186
|
readonly?: "__readonly";
|
|
46
187
|
}) | (ContentStatus.PUBLISHING & {
|
|
@@ -50,9 +191,6 @@ export default class {
|
|
|
50
191
|
}) | (ContentStatus.ERROR & {
|
|
51
192
|
readonly?: "__readonly";
|
|
52
193
|
});
|
|
53
|
-
readonly id: string & {
|
|
54
|
-
readonly?: "__readonly";
|
|
55
|
-
};
|
|
56
194
|
readonly companyId: string & {
|
|
57
195
|
readonly?: "__readonly";
|
|
58
196
|
};
|
|
@@ -132,18 +270,18 @@ export default class {
|
|
|
132
270
|
type: "and" | "or";
|
|
133
271
|
rules: {
|
|
134
272
|
value: {
|
|
135
|
-
type: "static";
|
|
136
|
-
value: string | number;
|
|
137
|
-
} | {
|
|
138
273
|
type: "dependency";
|
|
139
274
|
value: string;
|
|
140
|
-
}
|
|
141
|
-
field: {
|
|
275
|
+
} | {
|
|
142
276
|
type: "static";
|
|
143
277
|
value: string | number;
|
|
144
|
-
}
|
|
278
|
+
};
|
|
279
|
+
field: {
|
|
145
280
|
type: "dependency";
|
|
146
281
|
value: string;
|
|
282
|
+
} | {
|
|
283
|
+
type: "static";
|
|
284
|
+
value: string | number;
|
|
147
285
|
};
|
|
148
286
|
operator: "$gte" | "$gt" | "$lt" | "$lte" | "$eq" | "$ne";
|
|
149
287
|
}[];
|
|
@@ -165,8 +303,8 @@ export default class {
|
|
|
165
303
|
}>>;
|
|
166
304
|
create: (data: {
|
|
167
305
|
description?: string;
|
|
168
|
-
name: string;
|
|
169
306
|
resourceGroupIds: string[];
|
|
307
|
+
name: string;
|
|
170
308
|
}, options?: AxiosRequestConfig) => Promise<import("axios").AxiosResponse<{
|
|
171
309
|
status: "success";
|
|
172
310
|
program: string;
|
|
@@ -176,14 +314,17 @@ export default class {
|
|
|
176
314
|
message: string;
|
|
177
315
|
data: {
|
|
178
316
|
description?: string;
|
|
179
|
-
|
|
317
|
+
resourceGroupIds: string[];
|
|
318
|
+
readonly id: string & {
|
|
180
319
|
readonly?: "__readonly";
|
|
181
320
|
};
|
|
182
321
|
readonly createdAt: Date & {
|
|
183
322
|
readonly?: "__readonly";
|
|
184
323
|
};
|
|
324
|
+
readonly updatedAt: Date & {
|
|
325
|
+
readonly?: "__readonly";
|
|
326
|
+
};
|
|
185
327
|
name: string;
|
|
186
|
-
resourceGroupIds: string[];
|
|
187
328
|
readonly status: (ContentStatus.DRAFT & {
|
|
188
329
|
readonly?: "__readonly";
|
|
189
330
|
}) | (ContentStatus.PUBLISHING & {
|
|
@@ -193,9 +334,6 @@ export default class {
|
|
|
193
334
|
}) | (ContentStatus.ERROR & {
|
|
194
335
|
readonly?: "__readonly";
|
|
195
336
|
});
|
|
196
|
-
readonly id: string & {
|
|
197
|
-
readonly?: "__readonly";
|
|
198
|
-
};
|
|
199
337
|
readonly companyId: string & {
|
|
200
338
|
readonly?: "__readonly";
|
|
201
339
|
};
|
|
@@ -275,18 +413,18 @@ export default class {
|
|
|
275
413
|
type: "and" | "or";
|
|
276
414
|
rules: {
|
|
277
415
|
value: {
|
|
278
|
-
type: "static";
|
|
279
|
-
value: string | number;
|
|
280
|
-
} | {
|
|
281
416
|
type: "dependency";
|
|
282
417
|
value: string;
|
|
283
|
-
}
|
|
284
|
-
field: {
|
|
418
|
+
} | {
|
|
285
419
|
type: "static";
|
|
286
420
|
value: string | number;
|
|
287
|
-
}
|
|
421
|
+
};
|
|
422
|
+
field: {
|
|
288
423
|
type: "dependency";
|
|
289
424
|
value: string;
|
|
425
|
+
} | {
|
|
426
|
+
type: "static";
|
|
427
|
+
value: string | number;
|
|
290
428
|
};
|
|
291
429
|
operator: "$gte" | "$gt" | "$lt" | "$lte" | "$eq" | "$ne";
|
|
292
430
|
}[];
|
|
@@ -317,14 +455,17 @@ export default class {
|
|
|
317
455
|
message: string;
|
|
318
456
|
data: {
|
|
319
457
|
description?: string;
|
|
320
|
-
|
|
458
|
+
resourceGroupIds: string[];
|
|
459
|
+
readonly id: string & {
|
|
321
460
|
readonly?: "__readonly";
|
|
322
461
|
};
|
|
323
462
|
readonly createdAt: Date & {
|
|
324
463
|
readonly?: "__readonly";
|
|
325
464
|
};
|
|
465
|
+
readonly updatedAt: Date & {
|
|
466
|
+
readonly?: "__readonly";
|
|
467
|
+
};
|
|
326
468
|
name: string;
|
|
327
|
-
resourceGroupIds: string[];
|
|
328
469
|
readonly status: (ContentStatus.DRAFT & {
|
|
329
470
|
readonly?: "__readonly";
|
|
330
471
|
}) | (ContentStatus.PUBLISHING & {
|
|
@@ -334,9 +475,6 @@ export default class {
|
|
|
334
475
|
}) | (ContentStatus.ERROR & {
|
|
335
476
|
readonly?: "__readonly";
|
|
336
477
|
});
|
|
337
|
-
readonly id: string & {
|
|
338
|
-
readonly?: "__readonly";
|
|
339
|
-
};
|
|
340
478
|
readonly companyId: string & {
|
|
341
479
|
readonly?: "__readonly";
|
|
342
480
|
};
|
|
@@ -416,18 +554,18 @@ export default class {
|
|
|
416
554
|
type: "and" | "or";
|
|
417
555
|
rules: {
|
|
418
556
|
value: {
|
|
419
|
-
type: "static";
|
|
420
|
-
value: string | number;
|
|
421
|
-
} | {
|
|
422
557
|
type: "dependency";
|
|
423
558
|
value: string;
|
|
424
|
-
}
|
|
425
|
-
field: {
|
|
559
|
+
} | {
|
|
426
560
|
type: "static";
|
|
427
561
|
value: string | number;
|
|
428
|
-
}
|
|
562
|
+
};
|
|
563
|
+
field: {
|
|
429
564
|
type: "dependency";
|
|
430
565
|
value: string;
|
|
566
|
+
} | {
|
|
567
|
+
type: "static";
|
|
568
|
+
value: string | number;
|
|
431
569
|
};
|
|
432
570
|
operator: "$gte" | "$gt" | "$lt" | "$lte" | "$eq" | "$ne";
|
|
433
571
|
}[];
|
|
@@ -451,8 +589,8 @@ export default class {
|
|
|
451
589
|
id: string;
|
|
452
590
|
}, data: {
|
|
453
591
|
description?: string;
|
|
454
|
-
name?: string;
|
|
455
592
|
resourceGroupIds?: string[];
|
|
593
|
+
name?: string;
|
|
456
594
|
} & {
|
|
457
595
|
previewUrl?: string;
|
|
458
596
|
metadata?: {
|
|
@@ -522,18 +660,18 @@ export default class {
|
|
|
522
660
|
type: "and" | "or";
|
|
523
661
|
rules: {
|
|
524
662
|
value: {
|
|
525
|
-
type: "static";
|
|
526
|
-
value: string | number;
|
|
527
|
-
} | {
|
|
528
663
|
type: "dependency";
|
|
529
664
|
value: string;
|
|
530
|
-
}
|
|
531
|
-
field: {
|
|
665
|
+
} | {
|
|
532
666
|
type: "static";
|
|
533
667
|
value: string | number;
|
|
534
|
-
}
|
|
668
|
+
};
|
|
669
|
+
field: {
|
|
535
670
|
type: "dependency";
|
|
536
671
|
value: string;
|
|
672
|
+
} | {
|
|
673
|
+
type: "static";
|
|
674
|
+
value: string | number;
|
|
537
675
|
};
|
|
538
676
|
operator: "$gte" | "$gt" | "$lt" | "$lte" | "$eq" | "$ne";
|
|
539
677
|
}[];
|
|
@@ -559,14 +697,17 @@ export default class {
|
|
|
559
697
|
message: string;
|
|
560
698
|
data: {
|
|
561
699
|
description?: string;
|
|
562
|
-
|
|
700
|
+
resourceGroupIds: string[];
|
|
701
|
+
readonly id: string & {
|
|
563
702
|
readonly?: "__readonly";
|
|
564
703
|
};
|
|
565
704
|
readonly createdAt: Date & {
|
|
566
705
|
readonly?: "__readonly";
|
|
567
706
|
};
|
|
707
|
+
readonly updatedAt: Date & {
|
|
708
|
+
readonly?: "__readonly";
|
|
709
|
+
};
|
|
568
710
|
name: string;
|
|
569
|
-
resourceGroupIds: string[];
|
|
570
711
|
readonly status: (ContentStatus.DRAFT & {
|
|
571
712
|
readonly?: "__readonly";
|
|
572
713
|
}) | (ContentStatus.PUBLISHING & {
|
|
@@ -576,9 +717,6 @@ export default class {
|
|
|
576
717
|
}) | (ContentStatus.ERROR & {
|
|
577
718
|
readonly?: "__readonly";
|
|
578
719
|
});
|
|
579
|
-
readonly id: string & {
|
|
580
|
-
readonly?: "__readonly";
|
|
581
|
-
};
|
|
582
720
|
readonly companyId: string & {
|
|
583
721
|
readonly?: "__readonly";
|
|
584
722
|
};
|
|
@@ -658,18 +796,18 @@ export default class {
|
|
|
658
796
|
type: "and" | "or";
|
|
659
797
|
rules: {
|
|
660
798
|
value: {
|
|
661
|
-
type: "static";
|
|
662
|
-
value: string | number;
|
|
663
|
-
} | {
|
|
664
799
|
type: "dependency";
|
|
665
800
|
value: string;
|
|
666
|
-
}
|
|
667
|
-
field: {
|
|
801
|
+
} | {
|
|
668
802
|
type: "static";
|
|
669
803
|
value: string | number;
|
|
670
|
-
}
|
|
804
|
+
};
|
|
805
|
+
field: {
|
|
671
806
|
type: "dependency";
|
|
672
807
|
value: string;
|
|
808
|
+
} | {
|
|
809
|
+
type: "static";
|
|
810
|
+
value: string | number;
|
|
673
811
|
};
|
|
674
812
|
operator: "$gte" | "$gt" | "$lt" | "$lte" | "$eq" | "$ne";
|
|
675
813
|
}[];
|
|
@@ -712,14 +850,17 @@ export default class {
|
|
|
712
850
|
message: string;
|
|
713
851
|
data: {
|
|
714
852
|
description?: string;
|
|
715
|
-
|
|
853
|
+
resourceGroupIds: string[];
|
|
854
|
+
readonly id: string & {
|
|
716
855
|
readonly?: "__readonly";
|
|
717
856
|
};
|
|
718
857
|
readonly createdAt: Date & {
|
|
719
858
|
readonly?: "__readonly";
|
|
720
859
|
};
|
|
860
|
+
readonly updatedAt: Date & {
|
|
861
|
+
readonly?: "__readonly";
|
|
862
|
+
};
|
|
721
863
|
name: string;
|
|
722
|
-
resourceGroupIds: string[];
|
|
723
864
|
readonly status: (ContentStatus.DRAFT & {
|
|
724
865
|
readonly?: "__readonly";
|
|
725
866
|
}) | (ContentStatus.PUBLISHING & {
|
|
@@ -729,9 +870,6 @@ export default class {
|
|
|
729
870
|
}) | (ContentStatus.ERROR & {
|
|
730
871
|
readonly?: "__readonly";
|
|
731
872
|
});
|
|
732
|
-
readonly id: string & {
|
|
733
|
-
readonly?: "__readonly";
|
|
734
|
-
};
|
|
735
873
|
readonly companyId: string & {
|
|
736
874
|
readonly?: "__readonly";
|
|
737
875
|
};
|
|
@@ -811,18 +949,18 @@ export default class {
|
|
|
811
949
|
type: "and" | "or";
|
|
812
950
|
rules: {
|
|
813
951
|
value: {
|
|
814
|
-
type: "static";
|
|
815
|
-
value: string | number;
|
|
816
|
-
} | {
|
|
817
952
|
type: "dependency";
|
|
818
953
|
value: string;
|
|
819
|
-
}
|
|
820
|
-
field: {
|
|
954
|
+
} | {
|
|
821
955
|
type: "static";
|
|
822
956
|
value: string | number;
|
|
823
|
-
}
|
|
957
|
+
};
|
|
958
|
+
field: {
|
|
824
959
|
type: "dependency";
|
|
825
960
|
value: string;
|
|
961
|
+
} | {
|
|
962
|
+
type: "static";
|
|
963
|
+
value: string | number;
|
|
826
964
|
};
|
|
827
965
|
operator: "$gte" | "$gt" | "$lt" | "$lte" | "$eq" | "$ne";
|
|
828
966
|
}[];
|
package/build/api.js
CHANGED
|
@@ -15,6 +15,20 @@ class default_1 {
|
|
|
15
15
|
? configOrInstance
|
|
16
16
|
: axios_1.default.create(configOrInstance);
|
|
17
17
|
}
|
|
18
|
+
listContentFontResource(params, options) {
|
|
19
|
+
return this.axios.get("/contents/fonts", Object.assign({}, {
|
|
20
|
+
params: pick(params, "ids", "resourceGroupIds"),
|
|
21
|
+
}, options));
|
|
22
|
+
}
|
|
23
|
+
createContentFontResource(data, options) {
|
|
24
|
+
return this.axios.post("/contents/fonts", data, options);
|
|
25
|
+
}
|
|
26
|
+
getContentFontResource(params, options) {
|
|
27
|
+
return this.axios.get("/contents/fonts/{id}".replace(/{id}/, String(params["id"])), options);
|
|
28
|
+
}
|
|
29
|
+
updateContentFontResource(params, data, options) {
|
|
30
|
+
return this.axios.patch("/contents/fonts/{id}".replace(/{id}/, String(params["id"])), data, options);
|
|
31
|
+
}
|
|
18
32
|
listContent(params, options) {
|
|
19
33
|
return this.axios.get("/contents", Object.assign({}, {
|
|
20
34
|
params: pick(params, "ids", "name", "resourceGroupIds", "status", "sortBy", "sortOrder", "page", "perPage"),
|
|
@@ -42,6 +56,14 @@ class default_1 {
|
|
|
42
56
|
headers: pick(params, "x-rlvt-no-cache"),
|
|
43
57
|
}, options));
|
|
44
58
|
}
|
|
59
|
+
get ContentResource() {
|
|
60
|
+
return {
|
|
61
|
+
listContentFontResource: this.listContentFontResource.bind(this),
|
|
62
|
+
createContentFontResource: this.createContentFontResource.bind(this),
|
|
63
|
+
getContentFontResource: this.getContentFontResource.bind(this),
|
|
64
|
+
updateContentFontResource: this.updateContentFontResource.bind(this)
|
|
65
|
+
};
|
|
66
|
+
}
|
|
45
67
|
get Content() {
|
|
46
68
|
return {
|
|
47
69
|
list: this.listContent.bind(this),
|
|
@@ -63,4 +85,4 @@ function pick(obj, ...keys) {
|
|
|
63
85
|
});
|
|
64
86
|
return ret;
|
|
65
87
|
}
|
|
66
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
88
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxvQkFBb0I7QUFDcEIsb0JBQW9COzs7Ozs7QUFFcEIsa0RBQWlFO0FBR2pFLDZDQUF1WDtBQUE3Tiw0R0FBQSxhQUFhLE9BQUE7QUFFdks7SUFHSSxZQUFZLGdCQUFvRDtRQUM1RCxJQUFJLENBQUMsS0FBSyxHQUFHLGNBQWMsSUFBSSxnQkFBZ0I7WUFDM0MsQ0FBQyxDQUFDLGdCQUFnQjtZQUNsQixDQUFDLENBQUMsZUFBSyxDQUFDLE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFBO0lBQ3hDLENBQUM7SUFFTyx1QkFBdUIsQ0FBQyxNQUcvQixFQUFFLE9BQTRCO1FBQzNCLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxHQUFHLENBU2pCLGlCQUFpQixFQUNqQixNQUFNLENBQUMsTUFBTSxDQUNULEVBQUUsRUFDRjtZQUNJLE1BQU0sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLEtBQUssRUFBRSxrQkFBa0IsQ0FBQztTQUNsRCxFQUNELE9BQU8sQ0FDVixDQUNKLENBQUM7SUFDTixDQUFDO0lBRU8seUJBQXlCLENBQUMsSUFBOEYsRUFBRSxPQUE0QjtRQUMxSixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQVNsQixpQkFBaUIsRUFBRSxJQUFJLEVBQUUsT0FBTyxDQUNuQyxDQUFDO0lBQ04sQ0FBQztJQUVPLHNCQUFzQixDQUFDLE1BRTlCLEVBQUUsT0FBNEI7UUFDM0IsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FTakIsc0JBQXNCLENBQUMsT0FBTyxDQUFDLE1BQU0sRUFBRSxNQUFNLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxPQUFPLENBQ3hFLENBQUM7SUFDTixDQUFDO0lBRU8seUJBQXlCLENBQUMsTUFFakMsRUFBRSxJQUE2RCxFQUFFLE9BQTRCO1FBQzFGLE9BQU8s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
|
package/build/definitions.d.ts
CHANGED
|
@@ -17,6 +17,40 @@ declare type PropsWithoutWriteonly<T> = {
|
|
|
17
17
|
export declare type WithoutWriteonly<T> = T extends any ? T extends Primitive ? T : T extends Array<infer U> ? WithoutWriteonly<U>[] : {
|
|
18
18
|
[key in keyof Pick<T, PropsWithoutWriteonly<T>>]: Pick<T, PropsWithoutWriteonly<T>>[key] extends any ? WithoutWriteonly<Pick<T, PropsWithoutWriteonly<T>>[key]> : never;
|
|
19
19
|
} : never;
|
|
20
|
+
export declare type SerializedContentResource = {
|
|
21
|
+
readonly id: (string) & readonlyP;
|
|
22
|
+
readonly companyId: (string) & readonlyP;
|
|
23
|
+
resourceGroupIds: string[];
|
|
24
|
+
readonly createdAt: (Date) & readonlyP;
|
|
25
|
+
readonly updatedAt: (Date) & readonlyP;
|
|
26
|
+
};
|
|
27
|
+
export declare type Pick_ContentFontResources_type_or_family_or_files_ = {
|
|
28
|
+
type: "font";
|
|
29
|
+
family: string;
|
|
30
|
+
files: {
|
|
31
|
+
[key: string]: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export declare type ContentFontResources = SerializedContentResource & Pick_ContentFontResources_type_or_family_or_files_;
|
|
35
|
+
export declare type Pick_SerializedContentFontResource_resourceGroupIds_or_family_or_files_ = {
|
|
36
|
+
resourceGroupIds: string[];
|
|
37
|
+
family: string;
|
|
38
|
+
files: {
|
|
39
|
+
[key: string]: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare type Partial_SerializedContentFontResource_ = {
|
|
43
|
+
readonly id?: (string) & readonlyP;
|
|
44
|
+
readonly companyId?: (string) & readonlyP;
|
|
45
|
+
resourceGroupIds?: string[];
|
|
46
|
+
readonly createdAt?: (Date) & readonlyP;
|
|
47
|
+
readonly updatedAt?: (Date) & readonlyP;
|
|
48
|
+
type?: "font";
|
|
49
|
+
family?: string;
|
|
50
|
+
files?: {
|
|
51
|
+
[key: string]: string;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
20
54
|
export declare enum ContentVersionState {
|
|
21
55
|
DRAFT = "draft",
|
|
22
56
|
LIVE = "live",
|
|
@@ -52,6 +86,12 @@ export declare type _root_string_Array_elements___x_string___type_conditionGroup
|
|
|
52
86
|
root: string[];
|
|
53
87
|
elements: __x_string___type_conditionGroup___or__type_condition_children_string_Array___or__type_component___or__type_componentGroup_children_string_Array____;
|
|
54
88
|
};
|
|
89
|
+
export declare type _width_number_height_number_components__id_string_x_number_y_number_width_number_height_number_rotation_number___Array_orderTree__root_string_Array_elements___x_string___type_conditionGroup___or__type_condition_children_string_Array___or__type_component___or__type_componentGroup_children_string_Array________ = {
|
|
90
|
+
width: number;
|
|
91
|
+
height: number;
|
|
92
|
+
components: _id_string_x_number_y_number_width_number_height_number_rotation_number__[];
|
|
93
|
+
orderTree: _root_string_Array_elements___x_string___type_conditionGroup___or__type_condition_children_string_Array___or__type_component___or__type_componentGroup_children_string_Array______;
|
|
94
|
+
};
|
|
55
95
|
export declare type _type_static_value_string__ = {
|
|
56
96
|
type: "static";
|
|
57
97
|
value: string;
|
|
@@ -60,46 +100,45 @@ export declare type _type_dependency_value_string__ = {
|
|
|
60
100
|
type: "dependency";
|
|
61
101
|
value: string;
|
|
62
102
|
};
|
|
63
|
-
export declare type
|
|
64
|
-
width: number;
|
|
65
|
-
height: number;
|
|
66
|
-
components: _id_string_x_number_y_number_width_number_height_number_rotation_number__[];
|
|
67
|
-
orderTree: _root_string_Array_elements___x_string___type_conditionGroup___or__type_condition_children_string_Array___or__type_component___or__type_componentGroup_children_string_Array______;
|
|
103
|
+
export declare type _url___type_static_value_string___or__type_dependency_value_string____Array_or_undefined__ = {
|
|
68
104
|
url?: (_type_static_value_string__ | _type_dependency_value_string__)[];
|
|
69
105
|
};
|
|
70
|
-
export declare type
|
|
106
|
+
export declare type __x_string___width_number_height_number_components__id_string_x_number_y_number_width_number_height_number_rotation_number___Array_orderTree__root_string_Array_elements___x_string___type_conditionGroup___or__type_condition_children_string_Array___or__type_component___or__type_componentGroup_children_string_Array_________and__url___type_static_value_string___or__type_dependency_value_string____Array_or_undefined____ = {
|
|
107
|
+
[key: string]: _width_number_height_number_components__id_string_x_number_y_number_width_number_height_number_rotation_number___Array_orderTree__root_string_Array_elements___x_string___type_conditionGroup___or__type_condition_children_string_Array___or__type_component___or__type_componentGroup_children_string_Array________ & _url___type_static_value_string___or__type_dependency_value_string____Array_or_undefined__;
|
|
108
|
+
};
|
|
109
|
+
export declare type _name_string_or_undefined__ = {
|
|
110
|
+
name?: string;
|
|
111
|
+
};
|
|
112
|
+
export declare type _type_static_value_string_or_number__ = {
|
|
113
|
+
type: "static";
|
|
114
|
+
value: string | number;
|
|
115
|
+
};
|
|
116
|
+
export declare type _field__type_static_value_string_or_number___or__type_dependency_value_string___operator_24gte_or_24gt_or_24lt_or_24lte_or_24eq_or_24ne_value__type_static_value_string_or_number___or__type_dependency_value_string____ = {
|
|
117
|
+
field: _type_static_value_string_or_number__ | _type_dependency_value_string__;
|
|
118
|
+
operator: "$gte" | "$gt" | "$lt" | "$lte" | "$eq" | "$ne";
|
|
119
|
+
value: _type_static_value_string_or_number__ | _type_dependency_value_string__;
|
|
120
|
+
};
|
|
121
|
+
export declare type _id_string_type_and_or_or_rules__field__type_static_value_string_or_number___or__type_dependency_value_string___operator_24gte_or_24gt_or_24lt_or_24lte_or_24eq_or_24ne_value__type_static_value_string_or_number___or__type_dependency_value_string_____Array__ = {
|
|
71
122
|
id: string;
|
|
72
123
|
type: "and" | "or";
|
|
73
|
-
rules:
|
|
74
|
-
field: {
|
|
75
|
-
type: "static";
|
|
76
|
-
value: string | number;
|
|
77
|
-
} | {
|
|
78
|
-
type: "dependency";
|
|
79
|
-
value: string;
|
|
80
|
-
};
|
|
81
|
-
operator: "$gte" | "$gt" | "$lt" | "$lte" | "$eq" | "$ne";
|
|
82
|
-
value: {
|
|
83
|
-
type: "static";
|
|
84
|
-
value: string | number;
|
|
85
|
-
} | {
|
|
86
|
-
type: "dependency";
|
|
87
|
-
value: string;
|
|
88
|
-
};
|
|
89
|
-
}[];
|
|
124
|
+
rules: _field__type_static_value_string_or_number___or__type_dependency_value_string___operator_24gte_or_24gt_or_24lt_or_24lte_or_24eq_or_24ne_value__type_static_value_string_or_number___or__type_dependency_value_string____[];
|
|
90
125
|
};
|
|
91
|
-
export declare type
|
|
126
|
+
export declare type _id_string_isElse_true__ = {
|
|
92
127
|
id: string;
|
|
93
128
|
isElse: true;
|
|
94
129
|
};
|
|
95
|
-
export declare type
|
|
96
|
-
|
|
97
|
-
conditions: (Condition | Condition | ElseCondition)[];
|
|
130
|
+
export declare type _conditions____id_string_type_and_or_or_rules__field__type_static_value_string_or_number___or__type_dependency_value_string___operator_24gte_or_24gt_or_24lt_or_24lte_or_24eq_or_24ne_value__type_static_value_string_or_number___or__type_dependency_value_string_____Array___Array__id_string_type_and_or_or_rules__field__type_static_value_string_or_number___or__type_dependency_value_string___operator_24gte_or_24gt_or_24lt_or_24lte_or_24eq_or_24ne_value__type_static_value_string_or_number___or__type_dependency_value_string_____Array____id_string_isElse_true_____ = {
|
|
131
|
+
conditions: (_id_string_type_and_or_or_rules__field__type_static_value_string_or_number___or__type_dependency_value_string___operator_24gte_or_24gt_or_24lt_or_24lte_or_24eq_or_24ne_value__type_static_value_string_or_number___or__type_dependency_value_string_____Array__ | _id_string_type_and_or_or_rules__field__type_static_value_string_or_number___or__type_dependency_value_string___operator_24gte_or_24gt_or_24lt_or_24lte_or_24eq_or_24ne_value__type_static_value_string_or_number___or__type_dependency_value_string_____Array__ | _id_string_isElse_true__)[];
|
|
98
132
|
};
|
|
99
|
-
export declare type
|
|
100
|
-
|
|
133
|
+
export declare type __x_string___name_string_or_undefined___and__conditions____id_string_type_and_or_or_rules__field__type_static_value_string_or_number___or__type_dependency_value_string___operator_24gte_or_24gt_or_24lt_or_24lte_or_24eq_or_24ne_value__type_static_value_string_or_number___or__type_dependency_value_string_____Array___Array__id_string_type_and_or_or_rules__field__type_static_value_string_or_number___or__type_dependency_value_string___operator_24gte_or_24gt_or_24lt_or_24lte_or_24eq_or_24ne_value__type_static_value_string_or_number___or__type_dependency_value_string_____Array____id_string_isElse_true_______ = {
|
|
134
|
+
[key: string]: _name_string_or_undefined__ & _conditions____id_string_type_and_or_or_rules__field__type_static_value_string_or_number___or__type_dependency_value_string___operator_24gte_or_24gt_or_24lt_or_24lte_or_24eq_or_24ne_value__type_static_value_string_or_number___or__type_dependency_value_string_____Array___Array__id_string_type_and_or_or_rules__field__type_static_value_string_or_number___or__type_dependency_value_string___operator_24gte_or_24gt_or_24lt_or_24lte_or_24eq_or_24ne_value__type_static_value_string_or_number___or__type_dependency_value_string_____Array____id_string_isElse_true_____;
|
|
135
|
+
};
|
|
136
|
+
export declare type _rendered_boolean__ = {
|
|
101
137
|
rendered: boolean;
|
|
102
138
|
};
|
|
139
|
+
export declare type __x_string___name_string_or_undefined___and__rendered_boolean____ = {
|
|
140
|
+
[key: string]: _name_string_or_undefined__ & _rendered_boolean__;
|
|
141
|
+
};
|
|
103
142
|
export declare type BaseTemplate = {
|
|
104
143
|
components: {
|
|
105
144
|
[key: string]: {
|
|
@@ -119,15 +158,9 @@ export declare type BaseTemplate = {
|
|
|
119
158
|
};
|
|
120
159
|
};
|
|
121
160
|
};
|
|
122
|
-
pages:
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
conditionGroups: {
|
|
126
|
-
[key: string]: ConditionGroup;
|
|
127
|
-
};
|
|
128
|
-
componentGroups: {
|
|
129
|
-
[key: string]: ComponentGroup;
|
|
130
|
-
};
|
|
161
|
+
pages: __x_string___width_number_height_number_components__id_string_x_number_y_number_width_number_height_number_rotation_number___Array_orderTree__root_string_Array_elements___x_string___type_conditionGroup___or__type_condition_children_string_Array___or__type_component___or__type_componentGroup_children_string_Array_________and__url___type_static_value_string___or__type_dependency_value_string____Array_or_undefined____;
|
|
162
|
+
conditionGroups: __x_string___name_string_or_undefined___and__conditions____id_string_type_and_or_or_rules__field__type_static_value_string_or_number___or__type_dependency_value_string___operator_24gte_or_24gt_or_24lt_or_24lte_or_24eq_or_24ne_value__type_static_value_string_or_number___or__type_dependency_value_string_____Array___Array__id_string_type_and_or_or_rules__field__type_static_value_string_or_number___or__type_dependency_value_string___operator_24gte_or_24gt_or_24lt_or_24lte_or_24eq_or_24ne_value__type_static_value_string_or_number___or__type_dependency_value_string_____Array____id_string_isElse_true_______;
|
|
163
|
+
componentGroups: __x_string___name_string_or_undefined___and__rendered_boolean____;
|
|
131
164
|
};
|
|
132
165
|
export declare type SerializedContentVersions = {
|
|
133
166
|
readonly state: (ContentVersionState) & readonlyP;
|
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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBa0VwQixJQUFZLG1CQUlYO0FBSkQsV0FBWSxtQkFBbUI7SUFDM0Isc0NBQWUsQ0FBQTtJQUNmLG9DQUFhLENBQUE7SUFDYiw0Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsbUJBQW1CLEdBQW5CLDJCQUFtQixLQUFuQiwyQkFBbUIsUUFJOUI7QUFzSEQsSUFBWSxhQUtYO0FBTEQsV0FBWSxhQUFhO0lBQ3JCLGdDQUFlLENBQUE7SUFDZiwwQ0FBeUIsQ0FBQTtJQUN6Qix3Q0FBdUIsQ0FBQTtJQUN2QixnQ0FBZSxDQUFBO0FBQ25CLENBQUMsRUFMVyxhQUFhLEdBQWIscUJBQWEsS0FBYixxQkFBYSxRQUt4QiJ9
|
package/package.json
CHANGED