@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/api",
3
- "version": "1.0.3-rc.7",
3
+ "version": "1.0.3-rc.8",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
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 = {