@sentio/api 1.0.3-rc.7 → 1.0.3-rc.8
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/src/types.gen.d.ts +5 -0
- package/package.json +1 -1
- package/src/types.gen.ts +6 -0
package/dist/src/types.gen.d.ts
CHANGED
|
@@ -385,6 +385,10 @@ export type CommonColumnStateSort = {
|
|
|
385
385
|
id?: string;
|
|
386
386
|
desc?: boolean;
|
|
387
387
|
};
|
|
388
|
+
export type CommonCommunityProject = {
|
|
389
|
+
dashAlias?: string;
|
|
390
|
+
curated?: boolean;
|
|
391
|
+
};
|
|
388
392
|
export type CommonComputeStats = {
|
|
389
393
|
computedAt?: string;
|
|
390
394
|
computeCostMs?: string;
|
|
@@ -533,6 +537,7 @@ export type CommonProject = {
|
|
|
533
537
|
enableDisk?: boolean;
|
|
534
538
|
enableMaterializedView?: boolean;
|
|
535
539
|
defaultTimerange?: CommonTimeRangeLite;
|
|
540
|
+
communityProject?: CommonCommunityProject;
|
|
536
541
|
};
|
|
537
542
|
export type CommonProjectProjectMember = {
|
|
538
543
|
user?: CommonUserInfo;
|
package/package.json
CHANGED
package/src/types.gen.ts
CHANGED
|
@@ -448,6 +448,11 @@ export type CommonColumnStateSort = {
|
|
|
448
448
|
desc?: boolean;
|
|
449
449
|
};
|
|
450
450
|
|
|
451
|
+
export type CommonCommunityProject = {
|
|
452
|
+
dashAlias?: string;
|
|
453
|
+
curated?: boolean;
|
|
454
|
+
};
|
|
455
|
+
|
|
451
456
|
export type CommonComputeStats = {
|
|
452
457
|
computedAt?: string;
|
|
453
458
|
computeCostMs?: string;
|
|
@@ -616,6 +621,7 @@ export type CommonProject = {
|
|
|
616
621
|
enableDisk?: boolean;
|
|
617
622
|
enableMaterializedView?: boolean;
|
|
618
623
|
defaultTimerange?: CommonTimeRangeLite;
|
|
624
|
+
communityProject?: CommonCommunityProject;
|
|
619
625
|
};
|
|
620
626
|
|
|
621
627
|
export type CommonProjectProjectMember = {
|