🚀. Socket Launch Week Day 3:Socket Firewall Now Blocks Malicious VS Code and Open VSX Extensions.Learn more
Sign In

@mintlify/models

Package Overview
Dependencies
Maintainers
8
Versions
321
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mintlify/models - npm Package Compare versions

Comparing version
0.0.321
to
0.0.322
+2
-2
dist/entities/index.d.ts

@@ -13,7 +13,7 @@ import { AutopilotSuggestionType, PrAutopilotSuggestion } from './autopilotSuggestionType.js';

import { PlanTypeV2, PLAN_TIERS, OrgType, OriginalOrgType, StaticPropsOrgType, normalizeOrgType, normalizePlan } from './orgType.js';
import { PrivatePageType } from './privatePageType.js';
import { PrivatePageType, PrivatePageGrant, PrivatePageGrantRole, PrivatePageGrantType } from './privatePageType.js';
import { RssFileType } from './rssFileType.js';
import { SnippetType } from './snippetType.js';
import { UserType } from './userType.js';
export type { AutopilotSuggestionType, PrAutopilotSuggestion, CustomerPageType, DeploymentHistoryType, DeploymentQuotaType, DraftType, LlmTranslationHistoryType, OriginalOrgType, PlanTypeV2, OrgType, StaticPropsOrgType, SnippetType, UserType, CssFileType, JsFileType, OpenApiFileType, FeatureFlag, FeatureFlags, OrgEntitlement, OrgEntitlements, PrivatePageType, RssFileType, };
export type { AutopilotSuggestionType, PrAutopilotSuggestion, CustomerPageType, DeploymentHistoryType, DeploymentQuotaType, DraftType, LlmTranslationHistoryType, OriginalOrgType, PlanTypeV2, OrgType, StaticPropsOrgType, SnippetType, UserType, CssFileType, JsFileType, OpenApiFileType, FeatureFlag, FeatureFlags, OrgEntitlement, OrgEntitlements, PrivatePageType, PrivatePageGrant, PrivatePageGrantRole, PrivatePageGrantType, RssFileType, };
export { orgEntitlements, PLAN_TIERS, normalizeOrgType, normalizePlan };

@@ -0,1 +1,8 @@

export type PrivatePageGrantType = 'email';
export type PrivatePageGrantRole = 'viewer' | 'editor' | 'manager';
export type PrivatePageGrant = {
type: PrivatePageGrantType;
value: string;
role: PrivatePageGrantRole;
};
export type PrivatePageType = {

@@ -8,3 +15,4 @@ _id: string;

title: string;
grants?: PrivatePageGrant[];
createdAt: Date;
};
{
"name": "@mintlify/models",
"version": "0.0.321",
"version": "0.0.322",
"description": "Mintlify models",

@@ -62,3 +62,3 @@ "engines": {

},
"gitHead": "4e9f17d92c19f65ac052b6bcf53192f725eb1c66"
"gitHead": "5fa4f358a46daba34d9469f1a3ad7d113f070624"
}

Sorry, the diff of this file is not supported yet