@periskope/types 0.6.464 → 0.6.465

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.
@@ -73,6 +73,7 @@ exports.Constants = {
73
73
  "zohodesk",
74
74
  "gsheets",
75
75
  "zohocrm",
76
+ "mcp",
76
77
  ],
77
78
  enum_member_role: ["admin", "member"],
78
79
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.464",
3
+ "version": "0.6.465",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -2257,11 +2257,12 @@ export type Database = {
2257
2257
  is_revealed: boolean
2258
2258
  name: string
2259
2259
  org_id: string
2260
+ refresh_token_hash: string | null
2260
2261
  role: string
2261
2262
  token: string
2262
2263
  token_hash: string
2263
2264
  token_metadata: Json
2264
- type: Database["public"]["Enums"]["enum_integration_type"]
2265
+ type: string
2265
2266
  }
2266
2267
  Insert: {
2267
2268
  exp: string
@@ -2270,11 +2271,12 @@ export type Database = {
2270
2271
  is_revealed?: boolean
2271
2272
  name: string
2272
2273
  org_id: string
2274
+ refresh_token_hash?: string | null
2273
2275
  role: string
2274
2276
  token: string
2275
2277
  token_hash: string
2276
2278
  token_metadata?: Json
2277
- type: Database["public"]["Enums"]["enum_integration_type"]
2279
+ type: string
2278
2280
  }
2279
2281
  Update: {
2280
2282
  exp?: string
@@ -2283,11 +2285,12 @@ export type Database = {
2283
2285
  is_revealed?: boolean
2284
2286
  name?: string
2285
2287
  org_id?: string
2288
+ refresh_token_hash?: string | null
2286
2289
  role?: string
2287
2290
  token?: string
2288
2291
  token_hash?: string
2289
2292
  token_metadata?: Json
2290
- type?: Database["public"]["Enums"]["enum_integration_type"]
2293
+ type?: string
2291
2294
  }
2292
2295
  Relationships: [
2293
2296
  {
@@ -4535,6 +4538,7 @@ export const Constants = {
4535
4538
  "zohodesk",
4536
4539
  "gsheets",
4537
4540
  "zohocrm",
4541
+ "mcp",
4538
4542
  ],
4539
4543
  enum_member_role: ["admin", "member"],
4540
4544
  },