@supernova-studio/model 0.46.12 → 0.46.13
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/index.d.mts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/integrations/integration.ts +3 -3
- package/src/integrations/oauth-token.ts +3 -2
package/dist/index.mjs
CHANGED
|
@@ -3446,7 +3446,7 @@ var Integration = z140.object({
|
|
|
3446
3446
|
integrationCredentials: z140.array(IntegrationCredentials).optional()
|
|
3447
3447
|
});
|
|
3448
3448
|
var forbiddenCustomUrldomainList = ["github.com", "gitlab.com", "bitbucket.org", "figma.com", "dev.azure.com"];
|
|
3449
|
-
var
|
|
3449
|
+
var IntegrationToken = z140.object({
|
|
3450
3450
|
access_token: z140.string(),
|
|
3451
3451
|
refresh_token: z140.string().optional(),
|
|
3452
3452
|
expires_in: z140.union([z140.number().optional(), z140.string().optional()]),
|
|
@@ -3483,7 +3483,7 @@ var IntegrationTokenResponse = z140.object({
|
|
|
3483
3483
|
|
|
3484
3484
|
// src/integrations/oauth-token.ts
|
|
3485
3485
|
import { z as z141 } from "zod";
|
|
3486
|
-
var
|
|
3486
|
+
var IntegrationTokenSchemaOld = z141.object({
|
|
3487
3487
|
id: z141.string(),
|
|
3488
3488
|
provider: OAuthProviderSchema,
|
|
3489
3489
|
scope: z141.string(),
|
|
@@ -4705,8 +4705,8 @@ export {
|
|
|
4705
4705
|
IntegrationCredentialsProfile,
|
|
4706
4706
|
IntegrationCredentialsType,
|
|
4707
4707
|
IntegrationDesignSystem,
|
|
4708
|
-
|
|
4709
|
-
|
|
4708
|
+
IntegrationToken,
|
|
4709
|
+
IntegrationTokenSchemaOld,
|
|
4710
4710
|
IntegrationType,
|
|
4711
4711
|
IntegrationUserInfo,
|
|
4712
4712
|
InternalStatus,
|