-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathobjectstack.config.ts
More file actions
410 lines (388 loc) · 10.8 KB
/
Copy pathobjectstack.config.ts
File metadata and controls
410 lines (388 loc) · 10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
import { defineStack } from '@objectstack/spec';
// @ts-ignore
import BiPlugin from '../plugin-bi/objectstack.config.js';
/**
* Advanced CRM Plugin Example
*
* This example demonstrates a comprehensive plugin manifest that:
* - Implements standard protocols
* - Provides interfaces for other plugins
* - Depends on other plugins
* - Defines extension points
* - Uses proper naming conventions
*/
export default defineStack({
manifest: {
// Basic Information
id: 'com.acme.crm.advanced',
name: 'ACME Advanced CRM',
version: '2.1.0',
type: 'plugin',
description: 'Comprehensive customer relationship management with advanced features',
// Dependencies on NPM packages
dependencies: {
'@objectstack/spec': '^0.6.0',
'@objectstack/driver-postgres': '^1.0.0',
},
// Developer Plugins (Example: Load BI Plugin for local testing)
devPlugins: [
BiPlugin,
// Define a local SQLite datasource for testing
{
manifest: { id: 'dev-db' },
datasources: [
{ type: 'sqlite', url: 'file:./dev.db' }
]
}
],
// Required System Permissions
permissions: [
'system.user.read',
'system.data.write',
'system.data.read',
'network.http.request',
],
// Plugin Configuration Schema
configuration: {
title: 'CRM Configuration',
properties: {
apiEndpoint: {
type: 'string',
default: 'https://api.acme.com',
description: 'External API endpoint for data synchronization',
},
syncInterval: {
type: 'number',
default: 3600,
description: 'Sync interval in seconds',
},
enableAudit: {
type: 'boolean',
default: true,
description: 'Enable audit trail for customer data changes',
},
apiKey: {
type: 'string',
secret: true,
description: 'API key for external service integration',
},
},
},
// Plugin Capability Declaration
capabilities: {
// Protocols This Plugin Implements
implements: [
{
protocol: {
id: 'com.objectstack.protocol.storage.v1',
label: 'Storage Protocol v1',
version: { major: 1, minor: 0, patch: 0 },
description: 'Standard data storage and retrieval operations',
},
conformance: 'full',
certified: true,
certificationDate: '2024-01-15T00:00:00Z',
},
{
protocol: {
id: 'com.objectstack.protocol.sync.v1',
label: 'Data Sync Protocol v1',
version: { major: 1, minor: 0, patch: 0 },
description: 'Bidirectional data synchronization',
},
conformance: 'partial',
implementedFeatures: [
'incremental_sync',
'conflict_resolution',
'batch_operations',
],
features: [
{
name: 'real_time_sync',
enabled: false,
description: 'Real-time synchronization via websockets',
sinceVersion: '2.0.0',
},
{
name: 'batch_operations',
enabled: true,
description: 'Batch sync operations for performance',
},
],
},
],
// Interfaces This Plugin Provides
provides: [
{
id: 'com.acme.crm.interface.customer_service',
name: 'CustomerService',
description: 'Customer data management service',
version: { major: 2, minor: 1, patch: 0 },
stability: 'stable',
methods: [
{
name: 'getCustomer',
description: 'Retrieve a customer by ID',
parameters: [
{
name: 'id',
type: 'string',
required: true,
description: 'Customer unique identifier',
},
],
returnType: 'Customer',
async: true,
},
{
name: 'searchCustomers',
description: 'Search customers with filters',
parameters: [
{
name: 'query',
type: 'CustomerSearchQuery',
required: true,
},
{
name: 'options',
type: 'SearchOptions',
required: false,
},
],
returnType: 'Customer[]',
async: true,
},
{
name: 'createCustomer',
description: 'Create a new customer',
parameters: [
{
name: 'data',
type: 'CustomerInput',
required: true,
},
],
returnType: 'Customer',
async: true,
},
{
name: 'updateCustomer',
description: 'Update customer information',
parameters: [
{
name: 'id',
type: 'string',
required: true,
},
{
name: 'data',
type: 'Partial<CustomerInput>',
required: true,
},
],
returnType: 'Customer',
async: true,
},
],
events: [
{
name: 'customerCreated',
description: 'Fired when a new customer is created',
payload: 'Customer',
},
{
name: 'customerUpdated',
description: 'Fired when customer data is updated',
payload: 'CustomerUpdateEvent',
},
{
name: 'customerDeleted',
description: 'Fired when a customer is deleted',
payload: 'CustomerDeleteEvent',
},
],
},
{
id: 'com.acme.crm.interface.opportunity_service',
name: 'OpportunityService',
description: 'Sales opportunity management',
version: { major: 1, minor: 0, patch: 0 },
stability: 'stable',
methods: [
{
name: 'getOpportunity',
parameters: [{ name: 'id', type: 'string', required: true }],
returnType: 'Opportunity',
async: true,
},
{
name: 'createOpportunity',
parameters: [{ name: 'data', type: 'OpportunityInput', required: true }],
returnType: 'Opportunity',
async: true,
},
],
events: [
{
name: 'opportunityStageChanged',
description: 'Fired when opportunity stage is updated',
payload: 'OpportunityStageEvent',
},
],
},
],
// Dependencies on Other Plugins
requires: [
{
pluginId: 'com.objectstack.driver.postgres',
version: '^1.0.0',
optional: false,
reason: 'Primary data storage backend',
requiredCapabilities: [
'com.objectstack.protocol.storage.v1',
'com.objectstack.protocol.transactions.v1',
],
},
{
pluginId: 'com.objectstack.auth.oauth2',
version: '>=2.0.0 <3.0.0',
optional: false,
reason: 'OAuth2 authentication for external API integration',
},
{
pluginId: 'com.acme.analytics.basic',
version: '^1.5.0',
optional: true,
reason: 'Enhanced analytics and reporting features',
requiredCapabilities: [
'com.acme.protocol.metrics.v1',
],
},
],
// Extension Points This Plugin Defines
extensionPoints: [
{
id: 'com.acme.crm.extension.customer_enrichment',
name: 'Customer Data Enrichment',
description: 'Allows other plugins to enrich customer data from external sources',
type: 'transformer',
cardinality: 'multiple',
contract: {
input: 'Customer',
output: 'EnrichedCustomer',
signature: '(customer: Customer) => Promise<Partial<Customer>>',
},
},
{
id: 'com.acme.crm.extension.customer_validator',
name: 'Customer Data Validator',
description: 'Custom validation rules for customer data',
type: 'validator',
cardinality: 'multiple',
contract: {
input: 'Customer',
output: 'ValidationResult',
signature: '(customer: Customer) => ValidationResult | Promise<ValidationResult>',
},
},
{
id: 'com.acme.crm.extension.opportunity_scoring',
name: 'Opportunity Scoring Engine',
description: 'Calculate opportunity win probability',
type: 'provider',
cardinality: 'single',
contract: {
input: 'Opportunity',
output: 'OpportunityScore',
},
},
{
id: 'com.acme.crm.extension.dashboard_widget',
name: 'Dashboard Widget',
description: 'Custom widgets for CRM dashboard',
type: 'widget',
cardinality: 'multiple',
contract: {
signature: 'React.ComponentType<WidgetProps>',
},
},
],
// Extensions This Plugin Contributes to Other Plugins
extensions: [
{
targetPluginId: 'com.objectstack.ui.dashboard',
extensionPointId: 'com.objectstack.ui.extension.widget',
implementation: './widgets/customer-summary.tsx',
priority: 50,
},
],
},
// Contribution Points
contributes: {
// Custom Metadata Kinds
kinds: [
{
id: 'crm.customer',
globs: ['**/*.customer.json', '**/*.customer.ts'],
description: 'Customer data definition files',
},
],
// System Event Subscriptions
events: [
'system:plugin:installed',
'system:plugin:uninstalled',
'data:record:beforeCreate',
'data:record:afterCreate',
],
// UI Menu Contributions
menus: {
'sidebar/main': [
{
id: 'open_crm_dashboard',
label: 'CRM Dashboard',
command: 'crm.openDashboard',
},
{
id: 'open_customers',
label: 'Customers',
command: 'crm.openCustomers',
},
],
},
// Custom Actions
actions: [
{
name: 'sync_customers',
label: 'Sync Customers',
description: 'Manually trigger customer data synchronization',
input: {
fullSync: 'boolean',
},
output: {
syncedCount: 'number',
errors: 'string[]',
},
},
],
},
// Data Model Definitions
objects: ['./src/objects/*.object.ts'],
// Initial Seed Data
data: [
{
object: 'crm_customer_status',
records: [
{ name: 'active', label: 'Active', sort_order: 1 },
{ name: 'inactive', label: 'Inactive', sort_order: 2 },
{ name: 'prospect', label: 'Prospect', sort_order: 3 },
],
mode: 'upsert',
},
],
// Extension Entry Points
extensions: {
runtime: {
entry: './src/index.ts',
},
},
}});