@supernova-studio/client 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.js
CHANGED
|
@@ -2965,7 +2965,7 @@ var Integration = _zod.z.object({
|
|
|
2965
2965
|
integrationCredentials: _zod.z.array(IntegrationCredentials).optional()
|
|
2966
2966
|
});
|
|
2967
2967
|
var forbiddenCustomUrldomainList = ["github.com", "gitlab.com", "bitbucket.org", "figma.com", "dev.azure.com"];
|
|
2968
|
-
var
|
|
2968
|
+
var IntegrationToken = _zod.z.object({
|
|
2969
2969
|
access_token: _zod.z.string(),
|
|
2970
2970
|
refresh_token: _zod.z.string().optional(),
|
|
2971
2971
|
expires_in: _zod.z.union([_zod.z.number().optional(), _zod.z.string().optional()]),
|
|
@@ -2999,7 +2999,7 @@ var IntegrationTokenResponse = _zod.z.object({
|
|
|
2999
2999
|
customUrl: data.custom_url
|
|
3000
3000
|
};
|
|
3001
3001
|
});
|
|
3002
|
-
var
|
|
3002
|
+
var IntegrationTokenSchemaOld = _zod.z.object({
|
|
3003
3003
|
id: _zod.z.string(),
|
|
3004
3004
|
provider: OAuthProviderSchema,
|
|
3005
3005
|
scope: _zod.z.string(),
|
|
@@ -4315,7 +4315,7 @@ var DTOWorkspaceIntegrationOauthInput = _zod.z.object({
|
|
|
4315
4315
|
var DTOWorkspaceIntegrationPATInput = _zod.z.object({
|
|
4316
4316
|
userId: _zod.z.string(),
|
|
4317
4317
|
type: IntegrationType,
|
|
4318
|
-
token:
|
|
4318
|
+
token: IntegrationToken
|
|
4319
4319
|
});
|
|
4320
4320
|
|
|
4321
4321
|
// src/api/dto/design-systems/version.ts
|