وثائق المطورين

حزمة رسمية للـ TypeScript وأخرى لـ PHP. نفس العقد، نفس المسارات، نفس الصلاحيات التي يفحصها تطبيق قُرب نفسه.

TypeScript1.7.0PHP1.7

نشر المحتوى

عشرة أقسام قابلة للكتابة — المنشورات، الفعاليات، المدونات، الألبومات، المجموعات، الاستشاريون، المشاريع، المشاريع ٢، الأوسمة والمهام — بالإضافة للتعليقات والإعجابات فوقها.

ts
await gurb.tweets.create({ content: 'أهلاً بالجميع 👋' })
await gurb.events.create({ title: 'Meetup', titleArabic: 'لقاء', startDate: iso, endDate: iso })
await gurb.blogs.create({ title: 'Welcome', contentHtml: '<p>…</p>', status: 'PUBLISHED' })
await gurb.groups.create({ name: 'القراءة', description: 'نادٍ', isPrivate: false, iconUrl })
await gurb.tasks.create({ headingId: 'h1', title: 'راجع الطلبات' })
await gurb.comments.create('tweets', 't1', { content: 'شكراً' })
await gurb.likes.like('tweets', 't1')
php
$gurb->tweets->create('أهلاً بالجميع 👋');
$gurb->groups->create('القراءة', 'نادٍ', isPrivate: false, iconUrl: $iconUrl);
$gurb->tasks->create(headingId: 'h1', title: 'راجع الطلبات');
$gurb->comments->create(CommentParent::Tweets, 't1', 'شكراً');
$gurb->likes->like(LikeParent::Tweets, 't1');

معاملات الإدخال

CreateTweetInput
الحقلإلزاميالنوعالقيود
contentنعمstring—
groupIdاختياريstringPost into a group instead of the home feed. Checked against that group's own rules.
allowCommentsاختياريboolean—
CreateEventInput
الحقلإلزاميالنوعالقيود
titleنعمstring—
titleArabicنعمstringRequired. Community-internal pages are Arabic-only by design.
descriptionاختياريstring—
statusاختياريEventStatus—
startDateنعمstringISO 8601. Sent as a string; the server parses it.
endDateنعمstring—
locationاختياريstring—
isOnlineاختياريboolean—
meetingUrlاختياريstring—
registrationUrlاختياريstring—
timezoneاختياريstring—
capacityاختياريnumber—
allowCommentsاختياريboolean—
tagsاختياريstring[]—
CreateBlogInput
الحقلإلزاميالنوعالقيود
titleنعمstring—
contentHtmlنعمstringRendered HTML. The platform stores it as sent.
statusاختياري"DRAFT" | "PUBLISHED" | "ARCHIVED"`DRAFT` publishes nothing and announces nothing.
allowCommentsاختياريboolean—
CreateGroupInput
الحقلإلزاميالنوعالقيود
nameنعمstring—
nameArabicاختياريstringDefaults to `name`. The column is NOT NULL and Gurb's UI is Arabic-first.
descriptionنعمstring—
descriptionArabicاختياريstringDefaults to `description`, same reason as `nameArabic`.
isPrivateنعمbooleanRequired, deliberately. Defaulting a VISIBILITY field is how a private group gets published by accident.
memberLimitاختياريnumberThe member CAP. `-1` is unlimited and is the default; otherwise positive.
canChatاختياريbooleanDefaults to true.
emailاختياريstring—
websiteاختياريstring—
iconUrlنعمstringRequired http(s) URL — see above.
coverUrlاختياريstring—
CreateTaskInput
الحقلإلزاميالنوعالقيود
headingIdنعمstring—
titleنعمstringMax 40 characters. Surprisingly short, and not a typo.
shortDescriptionاختياريstringMax 150.
descriptionاختياريstringMax 400.
dueAtاختياريstringISO 8601.
priorityاختياري"HIGH" | "MEDIUM" | "LOW"Defaults to `MEDIUM`.
pointsاختياريnumberA non-negative integer — it feeds the member leaderboard.
estimatedMinutesاختياريnumber—
tagsاختياريstring[]—
autoAssignNewMembersاختياريbooleanFuture joiners only; suppressed inside a SPECIFIC_MEMBERS section.
CreateCommentInput
الحقلإلزاميالنوعالقيود
contentنعمstring1–800 characters after trimming.
parentCommentIdاختياريstringMust be a comment on the SAME parent. Omit for a top-level comment.

الرفع غير مدعوم بعد

هذه المسارات نصية وJSON فقط. الألبوم يُنشأ فارغاً، والمنشور بلا مرفق، وأيقونة المجموعة رابط لا ملف، وما فيه إنشاء إعلان أصلاً — لأن الإعلان هو صورته. الرفع يحتاج محاسبة على حصة التخزين غير مطبّقة هنا، وشحنه بدونها يخلي المجتمع يتجاوز ما تدفع خطته مقابله بصمت.

شكلان سيبدوان كأنهما أخطاء

المشاريع تستقبل name وتُرجع title. العمود اسمه name وكل استجابة تسميه title. إرسال title لا يضبط شيئاً والنداء يفشل لغياب name.

ts
const project = await gurb.projects.create({ name: 'مشروع', description: '…' })
project.title   // ← the same value, under a different name

إنشاء وسام يعرّفه ولا يمنحه لأحد. المنح يكتب صفوف مستفيدين، ويقدر يسمّي كل عضو في المجتمع في نداء واحد ويُشعر كل واحد منهم. هذا يحتاج مساراً خاصاً به، لا حقلاً في دالة.

awards.create · awards.update · awards.delete