@periskope/types 0.6.96 → 0.6.98
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/supabase.types.d.ts +247 -397
- package/dist/types.d.ts +5 -0
- package/package.json +1 -1
- package/supabase.types.ts +2015 -2161
- package/types.ts +6 -0
package/types.ts
CHANGED
|
@@ -95,6 +95,11 @@ export type OrgMetadata = {
|
|
|
95
95
|
partition?: boolean;
|
|
96
96
|
};
|
|
97
97
|
|
|
98
|
+
type AccessScopes = {
|
|
99
|
+
integrations: boolean;
|
|
100
|
+
exports: boolean;
|
|
101
|
+
};
|
|
102
|
+
|
|
98
103
|
export type OrgType = OverrideProperties<
|
|
99
104
|
Merge<
|
|
100
105
|
Tables<'tbl_org'>,
|
|
@@ -109,6 +114,7 @@ export type OrgType = OverrideProperties<
|
|
|
109
114
|
is_enterprise: boolean;
|
|
110
115
|
is_free_trial: boolean;
|
|
111
116
|
is_hubspot_connected: boolean;
|
|
117
|
+
access_scopes: AccessScopes;
|
|
112
118
|
}
|
|
113
119
|
>,
|
|
114
120
|
{
|