Comparing version 0.2.0-alpha to 0.2.1-alpha
@@ -1,5 +0,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/** Represents a attachment in a ressource */ | ||
class AttachmentBuilder { | ||
export default class AttachmentBuilder { | ||
file; | ||
@@ -27,3 +25,2 @@ resource; | ||
} | ||
exports.default = AttachmentBuilder; | ||
//# sourceMappingURL=AttachmentBuilder.js.map |
@@ -1,5 +0,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/** Represents a categegory */ | ||
class CategoryBuilder { | ||
export default class CategoryBuilder { | ||
name; | ||
@@ -27,3 +25,2 @@ isVisible; | ||
} | ||
exports.default = CategoryBuilder; | ||
//# sourceMappingURL=CategoryBuilder.js.map |
@@ -1,5 +0,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/** Represents a comment in a resource */ | ||
class CommentBuilder { | ||
export default class CommentBuilder { | ||
comment; | ||
@@ -27,3 +25,2 @@ resource; | ||
} | ||
exports.default = CommentBuilder; | ||
//# sourceMappingURL=CommentBuilder.js.map |
@@ -1,5 +0,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/** Represents a resource */ | ||
class ResourceBuilder { | ||
export default class ResourceBuilder { | ||
title; | ||
@@ -56,3 +54,2 @@ isPublic; | ||
} | ||
exports.default = ResourceBuilder; | ||
//# sourceMappingURL=ResourceBuilder.js.map |
@@ -1,5 +0,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/** Represents a user */ | ||
class UserBuilder { | ||
export default class UserBuilder { | ||
name; | ||
@@ -36,3 +34,2 @@ email; | ||
} | ||
exports.default = UserBuilder; | ||
//# sourceMappingURL=UserBuilder.js.map |
@@ -1,5 +0,2 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.State = void 0; | ||
var State; | ||
export var State; | ||
(function (State) { | ||
@@ -9,5 +6,5 @@ State["Pending"] = "pending"; | ||
State["Rejected"] = "rejected"; | ||
})(State = exports.State || (exports.State = {})); | ||
})(State || (State = {})); | ||
/** Represents a valid state */ | ||
class ValidStateBuilder { | ||
export default class ValidStateBuilder { | ||
state; | ||
@@ -35,3 +32,2 @@ moderator; | ||
} | ||
exports.default = ValidStateBuilder; | ||
//# sourceMappingURL=ValidStateBuilder.js.map |
@@ -1,6 +0,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
const Base_1 = tslib_1.__importDefault(require("./Base")); | ||
class Attachment extends Base_1.default { | ||
import Base from "./Base"; | ||
export default class Attachment extends Base { | ||
fileUrl; | ||
@@ -30,3 +27,2 @@ type; | ||
} | ||
exports.default = Attachment; | ||
//# sourceMappingURL=Attachment.js.map |
@@ -1,4 +0,2 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
class Base { | ||
export default class Base { | ||
id; | ||
@@ -17,3 +15,2 @@ client; | ||
} | ||
exports.default = Base; | ||
//# sourceMappingURL=Base.js.map |
@@ -1,6 +0,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
const Base_1 = tslib_1.__importDefault(require("./Base")); | ||
class Category extends Base_1.default { | ||
import Base from "./Base"; | ||
export default class Category extends Base { | ||
name; | ||
@@ -33,3 +30,2 @@ isVisible; | ||
} | ||
exports.default = Category; | ||
//# sourceMappingURL=Category.js.map |
@@ -1,6 +0,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
const Base_1 = tslib_1.__importDefault(require("./Base")); | ||
class Comment extends Base_1.default { | ||
import Base from "./Base"; | ||
export default class Comment extends Base { | ||
comment; | ||
@@ -27,3 +24,2 @@ createdAt; | ||
} | ||
exports.default = Comment; | ||
//# sourceMappingURL=Comment.js.map |
@@ -1,10 +0,7 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
const collection_1 = require("@discordjs/collection"); | ||
const Base_1 = tslib_1.__importDefault(require("./Base")); | ||
const Comment_1 = tslib_1.__importDefault(require("./Comment")); | ||
const Category_1 = tslib_1.__importDefault(require("./Category")); | ||
const Attachment_1 = tslib_1.__importDefault(require("./Attachment")); | ||
class Resource extends Base_1.default { | ||
import { Collection } from "@discordjs/collection"; | ||
import Base from "./Base"; | ||
import Comment from "./Comment"; | ||
import Category from "./Category"; | ||
import Attachment from "./Attachment"; | ||
export default class Resource extends Base { | ||
title; | ||
@@ -35,5 +32,5 @@ description; | ||
buildAttachCollection(attachments) { | ||
const collection = new collection_1.Collection(); | ||
const collection = new Collection(); | ||
for (const a of attachments) { | ||
collection.set(a.id, new Attachment_1.default(this.client, this, this.user, a)); | ||
collection.set(a.id, new Attachment(this.client, this, this.user, a)); | ||
} | ||
@@ -43,5 +40,5 @@ return collection; | ||
buildCategoriesCollection(categories) { | ||
const collection = new collection_1.Collection(); | ||
const collection = new Collection(); | ||
for (const a of categories) { | ||
collection.set(a.id, new Category_1.default(this.client, a)); | ||
collection.set(a.id, new Category(this.client, a)); | ||
} | ||
@@ -51,5 +48,5 @@ return collection; | ||
buildCommentCollection(comments) { | ||
const collection = new collection_1.Collection(); | ||
const collection = new Collection(); | ||
for (const c of comments) { | ||
collection.set(c.id, new Comment_1.default(this.client, this, this.user, c)); | ||
collection.set(c.id, new Comment(this.client, this, this.user, c)); | ||
} | ||
@@ -62,3 +59,3 @@ return collection; | ||
const attachData = await this.client.rest.postRequest("/attachments/resource", json); | ||
const attachment = new Attachment_1.default(this.client, this, this.client.auth.me, attachData); | ||
const attachment = new Attachment(this.client, this, this.client.auth.me, attachData); | ||
this.attachments.set(attachment.id, attachment); | ||
@@ -77,3 +74,3 @@ return this; | ||
const commentData = await this.client.rest.postRequest("/comments", json); | ||
const comment = new Comment_1.default(this.client, this, this.client.auth.me, commentData); | ||
const comment = new Comment(this.client, this, this.client.auth.me, commentData); | ||
this.comments.set(comment.id, comment); | ||
@@ -106,3 +103,2 @@ return this; | ||
} | ||
exports.default = Resource; | ||
//# sourceMappingURL=Resource.js.map |
@@ -1,6 +0,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
const Base_1 = tslib_1.__importDefault(require("./Base")); | ||
class User extends Base_1.default { | ||
import Base from "./Base"; | ||
export default class User extends Base { | ||
email; | ||
@@ -33,3 +30,2 @@ roles; | ||
} | ||
exports.default = User; | ||
//# sourceMappingURL=User.js.map |
@@ -1,6 +0,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
const Base_1 = tslib_1.__importDefault(require("./Base")); | ||
class ValidationState extends Base_1.default { | ||
import Base from "./Base"; | ||
export default class ValidationState extends Base { | ||
id; | ||
@@ -28,3 +25,2 @@ state; | ||
} | ||
exports.default = ValidationState; | ||
//# sourceMappingURL=ValidationState.js.map |
@@ -1,5 +0,2 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
const User_1 = tslib_1.__importDefault(require("../class/User")); | ||
import User from "../class/User"; | ||
/** | ||
@@ -9,3 +6,3 @@ * Auth client for the lib. | ||
*/ | ||
class Auth { | ||
export default class Auth { | ||
client; | ||
@@ -31,3 +28,3 @@ /** | ||
.then((data) => { | ||
return new User_1.default(this.client, data); | ||
return new User(this.client, data); | ||
}); | ||
@@ -65,3 +62,2 @@ return null; | ||
} | ||
exports.default = Auth; | ||
//# sourceMappingURL=Auth.js.map |
@@ -1,9 +0,6 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
const Auth_1 = tslib_1.__importDefault(require("./Auth")); | ||
const REST_1 = tslib_1.__importDefault(require("./REST")); | ||
const UserManager_1 = tslib_1.__importDefault(require("../managers/UserManager")); | ||
const CategoryManager_1 = tslib_1.__importDefault(require("../managers/CategoryManager")); | ||
const ResourceManager_1 = tslib_1.__importDefault(require("../managers/ResourceManager")); | ||
import Auth from "./Auth"; | ||
import REST from "./REST"; | ||
import UserManager from "../managers/UserManager"; | ||
import CategoryManager from "../managers/CategoryManager"; | ||
import ResourceManager from "../managers/ResourceManager"; | ||
/** | ||
@@ -13,3 +10,3 @@ * Main client of the lib. | ||
*/ | ||
class Client { | ||
export default class Client { | ||
auth; | ||
@@ -24,7 +21,7 @@ rest; | ||
constructor(config) { | ||
this.rest = new REST_1.default(this, config); | ||
this.auth = new Auth_1.default(this); | ||
this.categories = new CategoryManager_1.default(this); | ||
this.resources = new ResourceManager_1.default(this); | ||
this.users = new UserManager_1.default(this); | ||
this.rest = new REST(this, config); | ||
this.auth = new Auth(this); | ||
this.categories = new CategoryManager(this); | ||
this.resources = new ResourceManager(this); | ||
this.users = new UserManager(this); | ||
} | ||
@@ -36,3 +33,2 @@ /** Login user with username and password */ | ||
} | ||
exports.default = Client; | ||
//# sourceMappingURL=Client.js.map |
@@ -1,7 +0,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.RequestMethod = void 0; | ||
const tslib_1 = require("tslib"); | ||
const axios_1 = tslib_1.__importDefault(require("axios")); | ||
var RequestMethod; | ||
import axios from 'axios'; | ||
export var RequestMethod; | ||
(function (RequestMethod) { | ||
@@ -12,3 +8,3 @@ RequestMethod["Get"] = "GET"; | ||
RequestMethod["Delete"] = "Delete"; | ||
})(RequestMethod = exports.RequestMethod || (exports.RequestMethod = {})); | ||
})(RequestMethod || (RequestMethod = {})); | ||
; | ||
@@ -19,7 +15,7 @@ /** | ||
*/ | ||
class REST { | ||
export default class REST { | ||
client; | ||
instance; | ||
constructor(client, RESTConfig) { | ||
this.instance = axios_1.default.create({ | ||
this.instance = axios.create({ | ||
baseURL: "https://rr-api.aymeric-cucherousset.fr", | ||
@@ -83,3 +79,2 @@ // Apply given config | ||
} | ||
exports.default = REST; | ||
//# sourceMappingURL=REST.js.map |
@@ -1,46 +0,23 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ValidationState = exports.User = exports.Resource = exports.Comment = exports.Category = exports.Attachment = exports.State = exports.ValidStateBuilder = exports.UserBuilder = exports.RessourceBuilder = exports.CommentBuilder = exports.CategoryBuilder = exports.AttachmentBuilder = exports.UserManager = exports.ResourceManager = exports.CategoryManager = exports.RequestMethod = exports.REST = exports.Auth = exports.Client = void 0; | ||
// Export Clients | ||
var Client_1 = require("./client/Client"); | ||
Object.defineProperty(exports, "Client", { enumerable: true, get: function () { return __importDefault(Client_1).default; } }); | ||
var Auth_1 = require("./client/Auth"); | ||
Object.defineProperty(exports, "Auth", { enumerable: true, get: function () { return __importDefault(Auth_1).default; } }); | ||
var REST_1 = require("./client/REST"); | ||
Object.defineProperty(exports, "REST", { enumerable: true, get: function () { return __importDefault(REST_1).default; } }); | ||
Object.defineProperty(exports, "RequestMethod", { enumerable: true, get: function () { return REST_1.RequestMethod; } }); | ||
export { default as Client } from './client/Client'; | ||
export { default as Auth } from "./client/Auth"; | ||
export { default as REST, RequestMethod } from "./client/REST"; | ||
// Managers | ||
var CategoryManager_1 = require("./managers/CategoryManager"); | ||
Object.defineProperty(exports, "CategoryManager", { enumerable: true, get: function () { return __importDefault(CategoryManager_1).default; } }); | ||
var ResourceManager_1 = require("./managers/ResourceManager"); | ||
Object.defineProperty(exports, "ResourceManager", { enumerable: true, get: function () { return __importDefault(ResourceManager_1).default; } }); | ||
var UserManager_1 = require("./managers/UserManager"); | ||
Object.defineProperty(exports, "UserManager", { enumerable: true, get: function () { return __importDefault(UserManager_1).default; } }); | ||
export { default as CategoryManager } from "./managers/CategoryManager"; | ||
export { default as ResourceManager } from "./managers/ResourceManager"; | ||
export { default as UserManager } from "./managers/UserManager"; | ||
// Builders | ||
var AttachmentBuilder_1 = require("./builders/AttachmentBuilder"); | ||
Object.defineProperty(exports, "AttachmentBuilder", { enumerable: true, get: function () { return __importDefault(AttachmentBuilder_1).default; } }); | ||
var CategoryBuilder_1 = require("./builders/CategoryBuilder"); | ||
Object.defineProperty(exports, "CategoryBuilder", { enumerable: true, get: function () { return __importDefault(CategoryBuilder_1).default; } }); | ||
var CommentBuilder_1 = require("./builders/CommentBuilder"); | ||
Object.defineProperty(exports, "CommentBuilder", { enumerable: true, get: function () { return __importDefault(CommentBuilder_1).default; } }); | ||
var ResourceBuilder_1 = require("./builders/ResourceBuilder"); | ||
Object.defineProperty(exports, "RessourceBuilder", { enumerable: true, get: function () { return __importDefault(ResourceBuilder_1).default; } }); | ||
var UserBuilder_1 = require("./builders/UserBuilder"); | ||
Object.defineProperty(exports, "UserBuilder", { enumerable: true, get: function () { return __importDefault(UserBuilder_1).default; } }); | ||
var ValidStateBuilder_1 = require("./builders/ValidStateBuilder"); | ||
Object.defineProperty(exports, "ValidStateBuilder", { enumerable: true, get: function () { return __importDefault(ValidStateBuilder_1).default; } }); | ||
Object.defineProperty(exports, "State", { enumerable: true, get: function () { return ValidStateBuilder_1.State; } }); | ||
export { default as AttachmentBuilder } from "./builders/AttachmentBuilder"; | ||
export { default as CategoryBuilder } from "./builders/CategoryBuilder"; | ||
export { default as CommentBuilder } from "./builders/CommentBuilder"; | ||
export { default as RessourceBuilder } from "./builders/ResourceBuilder"; | ||
export { default as UserBuilder } from "./builders/UserBuilder"; | ||
export { default as ValidStateBuilder, State } from "./builders/ValidStateBuilder"; | ||
// Class | ||
var Attachment_1 = require("./class/Attachment"); | ||
Object.defineProperty(exports, "Attachment", { enumerable: true, get: function () { return __importDefault(Attachment_1).default; } }); | ||
var Category_1 = require("./class/Category"); | ||
Object.defineProperty(exports, "Category", { enumerable: true, get: function () { return __importDefault(Category_1).default; } }); | ||
var Comment_1 = require("./class/Comment"); | ||
Object.defineProperty(exports, "Comment", { enumerable: true, get: function () { return __importDefault(Comment_1).default; } }); | ||
var Resource_1 = require("./class/Resource"); | ||
Object.defineProperty(exports, "Resource", { enumerable: true, get: function () { return __importDefault(Resource_1).default; } }); | ||
var User_1 = require("./class/User"); | ||
Object.defineProperty(exports, "User", { enumerable: true, get: function () { return __importDefault(User_1).default; } }); | ||
var ValidationState_1 = require("./class/ValidationState"); | ||
Object.defineProperty(exports, "ValidationState", { enumerable: true, get: function () { return __importDefault(ValidationState_1).default; } }); | ||
export { default as Attachment } from "./class/Attachment"; | ||
export { default as Category } from "./class/Category"; | ||
export { default as Comment } from "./class/Comment"; | ||
export { default as Resource } from "./class/Resource"; | ||
export { default as User } from "./class/User"; | ||
export { default as ValidationState } from "./class/ValidationState"; | ||
//# sourceMappingURL=index.js.map |
@@ -1,9 +0,6 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
const collection_1 = require("@discordjs/collection"); | ||
const Category_1 = tslib_1.__importDefault(require("../class/Category")); | ||
import { Collection } from "@discordjs/collection"; | ||
import Category from "../class/Category"; | ||
/** Category manager which allow to manipulate | ||
* the categories in the api */ | ||
class CategoryManager { | ||
export default class CategoryManager { | ||
client; | ||
@@ -17,3 +14,3 @@ /** Categories cache */ | ||
buildCache() { | ||
const collection = new collection_1.Collection(); | ||
const collection = new Collection(); | ||
this.fetchAll() | ||
@@ -31,3 +28,3 @@ .then(data => { | ||
const data = await this.client.rest.getRequest("/categories"); | ||
return data.map(d => new Category_1.default(this.client, d)); | ||
return data.map(d => new Category(this.client, d)); | ||
} | ||
@@ -38,3 +35,3 @@ /** Fetch one category with an id from the api */ | ||
if (data) { | ||
const category = new Category_1.default(this.client, data); | ||
const category = new Category(this.client, data); | ||
this.cache.set(category.id, category); | ||
@@ -49,3 +46,3 @@ return category; | ||
const categoryData = await this.client.rest.postRequest('/categories', data); | ||
const category = new Category_1.default(this.client, categoryData); | ||
const category = new Category(this.client, categoryData); | ||
this.cache.set(category.id, category); | ||
@@ -58,3 +55,3 @@ return category; | ||
const categoryData = await this.client.rest.putRequest(`/categories/${data.id}`, data); | ||
const editCategory = new Category_1.default(this.client, categoryData); | ||
const editCategory = new Category(this.client, categoryData); | ||
this.cache.set(editCategory.id, editCategory); | ||
@@ -64,3 +61,2 @@ return editCategory; | ||
} | ||
exports.default = CategoryManager; | ||
//# sourceMappingURL=CategoryManager.js.map |
@@ -1,9 +0,6 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
const collection_1 = require("@discordjs/collection"); | ||
const Resource_1 = tslib_1.__importDefault(require("../class/Resource")); | ||
import { Collection } from "@discordjs/collection"; | ||
import Resource from "../class/Resource"; | ||
/** Resource manager which allow to manipulate | ||
* the resources in the api */ | ||
class ResourceManager { | ||
export default class ResourceManager { | ||
client; | ||
@@ -17,3 +14,3 @@ /** Resource cache */ | ||
buildCache() { | ||
const collection = new collection_1.Collection(); | ||
const collection = new Collection(); | ||
this.fetchAll() | ||
@@ -31,3 +28,3 @@ .then(data => { | ||
const data = await this.client.rest.getRequest("/resources"); | ||
return data.map(d => new Resource_1.default(this.client, d)); | ||
return data.map(d => new Resource(this.client, d)); | ||
} | ||
@@ -38,3 +35,3 @@ /** Fetch one resource with an id from the api */ | ||
if (data) { | ||
const ressource = new Resource_1.default(this.client, data); | ||
const ressource = new Resource(this.client, data); | ||
this.cache.set(ressource.id, ressource); | ||
@@ -49,3 +46,3 @@ return ressource; | ||
const ressourceData = await this.client.rest.postRequest('/resources', data); | ||
const ressource = new Resource_1.default(this.client, ressourceData); | ||
const ressource = new Resource(this.client, ressourceData); | ||
this.cache.set(ressource.id, ressource); | ||
@@ -58,3 +55,3 @@ return ressource; | ||
const ressourceData = await this.client.rest.putRequest(`/resources/${ressource.id}`, data); | ||
const editRessource = new Resource_1.default(this.client, ressourceData); | ||
const editRessource = new Resource(this.client, ressourceData); | ||
this.cache.set(editRessource.id, editRessource); | ||
@@ -64,3 +61,2 @@ return editRessource; | ||
} | ||
exports.default = ResourceManager; | ||
//# sourceMappingURL=ResourceManager.js.map |
@@ -1,9 +0,6 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
const collection_1 = require("@discordjs/collection"); | ||
const User_1 = tslib_1.__importDefault(require("../class/User")); | ||
import { Collection } from "@discordjs/collection"; | ||
import User from "../class/User"; | ||
/** User manager which allow to manipulate | ||
* the users in the api */ | ||
class UserManager { | ||
export default class UserManager { | ||
client; | ||
@@ -17,3 +14,3 @@ /** Users caches */ | ||
buildCache() { | ||
const collection = new collection_1.Collection(); | ||
const collection = new Collection(); | ||
if (this.client.auth.token) { | ||
@@ -31,3 +28,3 @@ this.fetchAll() | ||
const data = await this.client.rest.getRequest("/users"); | ||
return data.map(d => new User_1.default(this.client, d)); | ||
return data.map(d => new User(this.client, d)); | ||
} | ||
@@ -38,3 +35,3 @@ /** Fetch an existing user from the api */ | ||
if (data) { | ||
const user = new User_1.default(this.client, data); | ||
const user = new User(this.client, data); | ||
this.cache.set(user.id, user); | ||
@@ -49,3 +46,3 @@ return user; | ||
const ressourceData = await this.client.rest.postRequest('/users', data); | ||
const ressource = new User_1.default(this.client, ressourceData); | ||
const ressource = new User(this.client, ressourceData); | ||
this.cache.set(ressource.id, ressource); | ||
@@ -58,3 +55,3 @@ return ressource; | ||
const userData = await this.client.rest.putRequest(`/users/${user.id}`, data); | ||
const editUser = new User_1.default(this.client, userData); | ||
const editUser = new User(this.client, userData); | ||
this.cache.set(editUser.id, editUser); | ||
@@ -64,3 +61,2 @@ return editUser; | ||
} | ||
exports.default = UserManager; | ||
//# sourceMappingURL=UserManager.js.map |
{ | ||
"name": "rr-apilib", | ||
"version": "0.2.0-alpha", | ||
"version": "0.2.1-alpha", | ||
"description": "Library for interact with RR-API", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
94230
1281