@zeyos/client 0.1.0
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/CHANGELOG.md +31 -0
- package/LICENSE +21 -0
- package/README.md +458 -0
- package/agents/README.md +66 -0
- package/agents/shared/business-app-benchmarks.md +111 -0
- package/agents/shared/zeyos-entity-map.md +142 -0
- package/agents/shared/zeyos-entity-reference.md +570 -0
- package/agents/shared/zeyos-query-patterns.md +89 -0
- package/agents/zeyos-account-intelligence/SKILL.md +34 -0
- package/agents/zeyos-account-intelligence/agents/openai.yaml +4 -0
- package/agents/zeyos-account-intelligence/references/workflows.md +84 -0
- package/agents/zeyos-billing-insights/SKILL.md +41 -0
- package/agents/zeyos-billing-insights/agents/openai.yaml +4 -0
- package/agents/zeyos-billing-insights/references/workflows.md +106 -0
- package/agents/zeyos-campaign-and-outreach/SKILL.md +44 -0
- package/agents/zeyos-campaign-and-outreach/agents/openai.yaml +4 -0
- package/agents/zeyos-campaign-and-outreach/references/workflows.md +100 -0
- package/agents/zeyos-collaboration-and-activity/SKILL.md +37 -0
- package/agents/zeyos-collaboration-and-activity/agents/openai.yaml +4 -0
- package/agents/zeyos-collaboration-and-activity/references/workflows.md +104 -0
- package/agents/zeyos-collections-and-dunning/SKILL.md +46 -0
- package/agents/zeyos-collections-and-dunning/agents/openai.yaml +4 -0
- package/agents/zeyos-collections-and-dunning/references/workflows.md +132 -0
- package/agents/zeyos-commerce-and-inventory/SKILL.md +38 -0
- package/agents/zeyos-commerce-and-inventory/agents/openai.yaml +4 -0
- package/agents/zeyos-commerce-and-inventory/references/workflows.md +101 -0
- package/agents/zeyos-mail-operations/SKILL.md +35 -0
- package/agents/zeyos-mail-operations/agents/openai.yaml +4 -0
- package/agents/zeyos-mail-operations/references/workflows.md +110 -0
- package/agents/zeyos-notes-and-sops/SKILL.md +31 -0
- package/agents/zeyos-notes-and-sops/agents/openai.yaml +4 -0
- package/agents/zeyos-notes-and-sops/references/workflows.md +85 -0
- package/agents/zeyos-platform-and-schema/SKILL.md +37 -0
- package/agents/zeyos-platform-and-schema/agents/openai.yaml +4 -0
- package/agents/zeyos-platform-and-schema/references/workflows.md +97 -0
- package/agents/zeyos-work-management/SKILL.md +45 -0
- package/agents/zeyos-work-management/agents/openai.yaml +4 -0
- package/agents/zeyos-work-management/references/workflows.md +148 -0
- package/docs/01-api-reference/01-data-retrieval.md +601 -0
- package/docs/01-api-reference/02-authentication.md +288 -0
- package/docs/01-api-reference/03-resources.md +270 -0
- package/docs/01-api-reference/04-schema.md +539 -0
- package/docs/01-api-reference/_category_.json +9 -0
- package/docs/02-javascript-client/01-getting-started.md +146 -0
- package/docs/02-javascript-client/02-authentication.md +287 -0
- package/docs/02-javascript-client/03-making-requests.md +572 -0
- package/docs/02-javascript-client/04-practical-guide.md +348 -0
- package/docs/02-javascript-client/_category_.json +9 -0
- package/docs/03-cli/01-getting-started.md +219 -0
- package/docs/03-cli/02-commands.md +407 -0
- package/docs/03-cli/03-configuration.md +220 -0
- package/docs/03-cli/_category_.json +9 -0
- package/docs/04-agent-workflows/00-coding-agents.md +35 -0
- package/docs/04-agent-workflows/01-agent-quickstart.md +147 -0
- package/docs/04-agent-workflows/02-agent-recipes.md +109 -0
- package/docs/04-agent-workflows/03-cli-coverage-and-escalation.md +65 -0
- package/docs/04-agent-workflows/_category_.json +9 -0
- package/docs/04-sample-apps/01-kanban.md +89 -0
- package/docs/04-sample-apps/02-crm.md +81 -0
- package/docs/04-sample-apps/03-dashboard.md +80 -0
- package/docs/04-sample-apps/_category_.json +9 -0
- package/docs/05-tutorials/00-application-developers.md +43 -0
- package/docs/05-tutorials/01-integration-architecture.md +60 -0
- package/docs/05-tutorials/02-build-your-own-zeyos-frontend.md +517 -0
- package/docs/05-tutorials/03-server-side-integrations.md +185 -0
- package/docs/05-tutorials/_category_.json +9 -0
- package/docs/intro.md +197 -0
- package/openapi/api.json +24308 -0
- package/openapi/auth.json +415 -0
- package/openapi/dbref.json +56223 -0
- package/openapi/oauth2.json +781 -0
- package/openapi/sdk.json +949 -0
- package/openapi/views.txt +642 -0
- package/package.json +49 -0
- package/samples/crm/README.md +28 -0
- package/samples/crm/index.html +327 -0
- package/samples/crm/js/api.js +208 -0
- package/samples/crm/js/auth.js +61 -0
- package/samples/crm/js/main.js +545 -0
- package/samples/crm/js/state.js +90 -0
- package/samples/crm/js/ui.js +51 -0
- package/samples/dashboard/README.md +28 -0
- package/samples/dashboard/index.html +280 -0
- package/samples/dashboard/js/api.js +197 -0
- package/samples/dashboard/js/auth.js +59 -0
- package/samples/dashboard/js/main.js +382 -0
- package/samples/dashboard/js/state.js +81 -0
- package/samples/dashboard/js/ui.js +48 -0
- package/samples/kanban/README.md +28 -0
- package/samples/kanban/index.html +263 -0
- package/samples/kanban/js/api.js +152 -0
- package/samples/kanban/js/auth.js +59 -0
- package/samples/kanban/js/constants.js +40 -0
- package/samples/kanban/js/kanban.js +246 -0
- package/samples/kanban/js/main.js +362 -0
- package/samples/kanban/js/modals.js +474 -0
- package/samples/kanban/js/settings.js +82 -0
- package/samples/kanban/js/state.js +118 -0
- package/samples/kanban/js/ui.js +49 -0
- package/scripts/generate-client.mjs +344 -0
- package/src/generated/operations.js +9772 -0
- package/src/generated/schema.js +8982 -0
- package/src/index.js +85 -0
- package/src/runtime/client.js +1208 -0
- package/src/runtime/error.js +29 -0
- package/src/runtime/http.js +174 -0
- package/src/runtime/request-shape.js +35 -0
- package/src/runtime/schema.js +206 -0
- package/src/runtime/suggest.js +74 -0
- package/src/runtime/token-store.js +105 -0
|
@@ -0,0 +1,642 @@
|
|
|
1
|
+
main.index
|
|
2
|
+
|
|
3
|
+
main.monitor
|
|
4
|
+
main.monitor.export
|
|
5
|
+
|
|
6
|
+
main.files
|
|
7
|
+
main.files.export
|
|
8
|
+
|
|
9
|
+
main.details_record
|
|
10
|
+
|
|
11
|
+
main.items.form
|
|
12
|
+
|
|
13
|
+
control.index
|
|
14
|
+
|
|
15
|
+
control.settings
|
|
16
|
+
control.settings.head
|
|
17
|
+
control.settings.locale
|
|
18
|
+
control.settings.locale.form
|
|
19
|
+
control.settings.defaults
|
|
20
|
+
control.settings.defaults.form
|
|
21
|
+
control.settings.apps
|
|
22
|
+
|
|
23
|
+
control.import
|
|
24
|
+
|
|
25
|
+
control.servers
|
|
26
|
+
control.servers.mailservers
|
|
27
|
+
control.servers.mailservers.action
|
|
28
|
+
control.servers.mailservers.export
|
|
29
|
+
control.servers.davservers
|
|
30
|
+
control.servers.davservers.action
|
|
31
|
+
control.servers.davservers.export
|
|
32
|
+
control.servers.feedservers
|
|
33
|
+
control.servers.feedservers.action
|
|
34
|
+
control.servers.feedservers.export
|
|
35
|
+
|
|
36
|
+
control.channels
|
|
37
|
+
control.channels.action
|
|
38
|
+
control.channels.export
|
|
39
|
+
|
|
40
|
+
control.details_mailserver
|
|
41
|
+
control.details_mailserver.head
|
|
42
|
+
control.details_mailserver.masterdata
|
|
43
|
+
control.details_mailserver.masterdata.form
|
|
44
|
+
control.details_mailserver.form
|
|
45
|
+
|
|
46
|
+
control.details_davserver
|
|
47
|
+
control.details_davserver.head
|
|
48
|
+
control.details_davserver.masterdata
|
|
49
|
+
control.details_davserver.masterdata.form
|
|
50
|
+
control.details_davserver.form
|
|
51
|
+
|
|
52
|
+
control.details_feedserver
|
|
53
|
+
control.details_feedserver.head
|
|
54
|
+
control.details_feedserver.masterdata
|
|
55
|
+
control.details_feedserver.masterdata.form
|
|
56
|
+
control.details_feedserver.form
|
|
57
|
+
|
|
58
|
+
control.details_channel
|
|
59
|
+
control.details_channel.head
|
|
60
|
+
control.details_channel.masterdata
|
|
61
|
+
control.details_channel.masterdata.form
|
|
62
|
+
control.details_channel.form
|
|
63
|
+
|
|
64
|
+
messages.index
|
|
65
|
+
messages.index.list
|
|
66
|
+
messages.index.table
|
|
67
|
+
messages.index.action
|
|
68
|
+
messages.index.export
|
|
69
|
+
|
|
70
|
+
messages.details_message
|
|
71
|
+
messages.details_message.head
|
|
72
|
+
messages.details_message.masterdata
|
|
73
|
+
messages.details_message.masterdata.form
|
|
74
|
+
messages.details_message.newticket.form
|
|
75
|
+
messages.details_message.form
|
|
76
|
+
messages.details_message.attachments
|
|
77
|
+
|
|
78
|
+
mailinglists.index
|
|
79
|
+
mailinglists.index.action
|
|
80
|
+
mailinglists.index.export
|
|
81
|
+
|
|
82
|
+
mailinglists.details_mailinglist
|
|
83
|
+
mailinglists.details_mailinglist.head
|
|
84
|
+
mailinglists.details_mailinglist.masterdata
|
|
85
|
+
mailinglists.details_mailinglist.masterdata.form
|
|
86
|
+
mailinglists.details_mailinglist.newcampaign.form
|
|
87
|
+
mailinglists.details_mailinglist.details
|
|
88
|
+
mailinglists.details_mailinglist.details.form
|
|
89
|
+
mailinglists.details_mailinglist.participants
|
|
90
|
+
mailinglists.details_mailinglist.participants.export
|
|
91
|
+
mailinglists.details_mailinglist.participants.addcontact.form
|
|
92
|
+
mailinglists.details_mailinglist.participants.addparticipant.form
|
|
93
|
+
|
|
94
|
+
mailinglists.participant.form
|
|
95
|
+
|
|
96
|
+
contacts.index
|
|
97
|
+
contacts.index.cards
|
|
98
|
+
contacts.index.table
|
|
99
|
+
contacts.index.action
|
|
100
|
+
contacts.index.export
|
|
101
|
+
|
|
102
|
+
contacts.details_contact
|
|
103
|
+
contacts.details_contact.head
|
|
104
|
+
contacts.details_contact.masterdata
|
|
105
|
+
contacts.details_contact.masterdata.form
|
|
106
|
+
contacts.details_contact.contactdata
|
|
107
|
+
contacts.details_contact.contactdata.form
|
|
108
|
+
contacts.details_contact.form
|
|
109
|
+
contacts.details_contact.contacts.addnew.form
|
|
110
|
+
|
|
111
|
+
calendar.index
|
|
112
|
+
calendar.index.agenda
|
|
113
|
+
calendar.index.day
|
|
114
|
+
calendar.index.week
|
|
115
|
+
calendar.index.month
|
|
116
|
+
calendar.index.year
|
|
117
|
+
|
|
118
|
+
calendar.appointments
|
|
119
|
+
calendar.appointments.action
|
|
120
|
+
calendar.appointments.export
|
|
121
|
+
|
|
122
|
+
calendar.details_appointment
|
|
123
|
+
calendar.details_appointment.head
|
|
124
|
+
calendar.details_appointment.masterdata
|
|
125
|
+
calendar.details_appointment.masterdata.form
|
|
126
|
+
calendar.details_appointment.form
|
|
127
|
+
|
|
128
|
+
projects.index
|
|
129
|
+
projects.index.action
|
|
130
|
+
projects.index.export
|
|
131
|
+
|
|
132
|
+
projects.details_project
|
|
133
|
+
projects.details_project.head
|
|
134
|
+
projects.details_project.masterdata
|
|
135
|
+
projects.details_project.masterdata.form
|
|
136
|
+
projects.details_project.form
|
|
137
|
+
|
|
138
|
+
tasks.index
|
|
139
|
+
tasks.index.action
|
|
140
|
+
tasks.index.export
|
|
141
|
+
|
|
142
|
+
tasks.details_task
|
|
143
|
+
tasks.details_task.head
|
|
144
|
+
tasks.details_task.masterdata
|
|
145
|
+
tasks.details_task.masterdata.form
|
|
146
|
+
tasks.details_task.form
|
|
147
|
+
|
|
148
|
+
actionsteps.index
|
|
149
|
+
actionsteps.index.action
|
|
150
|
+
actionsteps.index.export
|
|
151
|
+
|
|
152
|
+
actionsteps.details_actionstep
|
|
153
|
+
actionsteps.details_actionstep.head
|
|
154
|
+
actionsteps.details_actionstep.masterdata
|
|
155
|
+
actionsteps.details_actionstep.masterdata.form
|
|
156
|
+
actionsteps.details_actionstep.form
|
|
157
|
+
|
|
158
|
+
notes.index
|
|
159
|
+
notes.index.action
|
|
160
|
+
notes.index.export
|
|
161
|
+
|
|
162
|
+
notes.details_note
|
|
163
|
+
notes.details_note.head
|
|
164
|
+
notes.details_note.masterdata
|
|
165
|
+
notes.details_note.masterdata.form
|
|
166
|
+
notes.details_note.form
|
|
167
|
+
notes.details_note.attachments
|
|
168
|
+
|
|
169
|
+
links.index
|
|
170
|
+
links.index.action
|
|
171
|
+
links.index.export
|
|
172
|
+
|
|
173
|
+
links.details_link
|
|
174
|
+
links.details_link.head
|
|
175
|
+
links.details_link.masterdata
|
|
176
|
+
links.details_link.masterdata.form
|
|
177
|
+
links.details_link.form
|
|
178
|
+
|
|
179
|
+
documents.index
|
|
180
|
+
documents.index.action
|
|
181
|
+
documents.index.export
|
|
182
|
+
|
|
183
|
+
documents.details_document
|
|
184
|
+
documents.details_document.head
|
|
185
|
+
documents.details_document.masterdata
|
|
186
|
+
documents.details_document.masterdata.form
|
|
187
|
+
documents.details_document.form
|
|
188
|
+
|
|
189
|
+
accounts.index
|
|
190
|
+
accounts.index.cards
|
|
191
|
+
accounts.index.table
|
|
192
|
+
accounts.index.action
|
|
193
|
+
accounts.index.export
|
|
194
|
+
|
|
195
|
+
accounts.details_account
|
|
196
|
+
accounts.details_account.head
|
|
197
|
+
accounts.details_account.masterdata
|
|
198
|
+
accounts.details_account.masterdata.form
|
|
199
|
+
accounts.details_account.contactdata
|
|
200
|
+
accounts.details_account.details
|
|
201
|
+
accounts.details_account.details.form
|
|
202
|
+
accounts.details_account.contacts.addnew.form
|
|
203
|
+
accounts.details_account.addresses
|
|
204
|
+
accounts.details_account.addresses.export
|
|
205
|
+
accounts.details_account.addresses.addnew.form
|
|
206
|
+
accounts.details_account.items
|
|
207
|
+
accounts.details_account.items.export
|
|
208
|
+
accounts.details_account.prices
|
|
209
|
+
accounts.details_account.prices.export
|
|
210
|
+
accounts.details_account.cron
|
|
211
|
+
|
|
212
|
+
billing.index
|
|
213
|
+
billing.index.action
|
|
214
|
+
billing.index.export
|
|
215
|
+
billing.index.quotes
|
|
216
|
+
billing.index.quotes.action
|
|
217
|
+
billing.index.quotes.export
|
|
218
|
+
billing.index.orders
|
|
219
|
+
billing.index.orders.action
|
|
220
|
+
billing.index.orders.export
|
|
221
|
+
billing.index.deliveries
|
|
222
|
+
billing.index.deliveries.action
|
|
223
|
+
billing.index.deliveries.export
|
|
224
|
+
billing.index.invoices
|
|
225
|
+
billing.index.invoices.action
|
|
226
|
+
billing.index.invoices.export
|
|
227
|
+
billing.index.credits
|
|
228
|
+
billing.index.credits.action
|
|
229
|
+
billing.index.credits.export
|
|
230
|
+
|
|
231
|
+
billing.details_transaction
|
|
232
|
+
billing.details_transaction.head
|
|
233
|
+
billing.details_transaction.masterdata
|
|
234
|
+
billing.details_transaction.masterdata.form
|
|
235
|
+
billing.details_transaction.buyerdata
|
|
236
|
+
billing.details_transaction.buyerdata.form
|
|
237
|
+
billing.details_transaction.sellerdata
|
|
238
|
+
billing.details_transaction.sellerdata.form
|
|
239
|
+
billing.details_transaction.form
|
|
240
|
+
billing.details_transaction.items
|
|
241
|
+
|
|
242
|
+
procurement.index
|
|
243
|
+
procurement.index.action
|
|
244
|
+
procurement.index.export
|
|
245
|
+
procurement.index.orders
|
|
246
|
+
procurement.index.orders.action
|
|
247
|
+
procurement.index.orders.export
|
|
248
|
+
procurement.index.deliveries
|
|
249
|
+
procurement.index.deliveries.action
|
|
250
|
+
procurement.index.deliveries.export
|
|
251
|
+
procurement.index.invoices
|
|
252
|
+
procurement.index.invoices.action
|
|
253
|
+
procurement.index.invoices.export
|
|
254
|
+
procurement.index.credits
|
|
255
|
+
procurement.index.credits.action
|
|
256
|
+
procurement.index.credits.export
|
|
257
|
+
|
|
258
|
+
procurement.details_transaction
|
|
259
|
+
procurement.details_transaction.head
|
|
260
|
+
procurement.details_transaction.masterdata
|
|
261
|
+
procurement.details_transaction.masterdata.form
|
|
262
|
+
procurement.details_transaction.buyerdata
|
|
263
|
+
procurement.details_transaction.buyerdata.form
|
|
264
|
+
procurement.details_transaction.sellerdata
|
|
265
|
+
procurement.details_transaction.sellerdata.form
|
|
266
|
+
procurement.details_transaction.form
|
|
267
|
+
procurement.details_transaction.items
|
|
268
|
+
|
|
269
|
+
collection.index
|
|
270
|
+
collection.index.receivables
|
|
271
|
+
collection.index.receivables.action
|
|
272
|
+
collection.index.receivables.export
|
|
273
|
+
collection.index.payables
|
|
274
|
+
collection.index.payables.action
|
|
275
|
+
collection.index.payables.export
|
|
276
|
+
collection.index.listings
|
|
277
|
+
collection.index.listings.action
|
|
278
|
+
collection.index.listings.export
|
|
279
|
+
collection.index.reminders
|
|
280
|
+
collection.index.reminders.action
|
|
281
|
+
collection.index.reminders.export
|
|
282
|
+
collection.index.notices
|
|
283
|
+
collection.index.notices.action
|
|
284
|
+
collection.index.notices.export
|
|
285
|
+
|
|
286
|
+
collection.details_dunning
|
|
287
|
+
collection.details_dunning.head
|
|
288
|
+
collection.details_dunning.masterdata
|
|
289
|
+
collection.details_dunning.masterdata.form
|
|
290
|
+
collection.details_dunning.addressdata
|
|
291
|
+
collection.details_dunning.addressdata.form
|
|
292
|
+
collection.details_dunning.form
|
|
293
|
+
collection.details_dunning.transactions
|
|
294
|
+
|
|
295
|
+
payments.index
|
|
296
|
+
payments.index.action
|
|
297
|
+
payments.index.export
|
|
298
|
+
|
|
299
|
+
payments.ledgers
|
|
300
|
+
payments.ledgers.action
|
|
301
|
+
payments.ledgers.export
|
|
302
|
+
|
|
303
|
+
payments.details_payment
|
|
304
|
+
payments.details_payment.head
|
|
305
|
+
payments.details_payment.masterdata
|
|
306
|
+
payments.details_payment.masterdata.form
|
|
307
|
+
payments.details_payment.form
|
|
308
|
+
|
|
309
|
+
payments.details_ledger
|
|
310
|
+
payments.details_ledger.head
|
|
311
|
+
payments.details_ledger.masterdata
|
|
312
|
+
payments.details_ledger.masterdata.form
|
|
313
|
+
payments.details_ledger.form
|
|
314
|
+
|
|
315
|
+
contracts.index
|
|
316
|
+
contracts.index.action
|
|
317
|
+
contracts.index.export
|
|
318
|
+
|
|
319
|
+
contracts.details_contract
|
|
320
|
+
contracts.details_contract.head
|
|
321
|
+
contracts.details_contract.masterdata
|
|
322
|
+
contracts.details_contract.masterdata.form
|
|
323
|
+
contracts.details_contract.details
|
|
324
|
+
contracts.details_contract.details.form
|
|
325
|
+
contracts.details_contract.contractitems
|
|
326
|
+
contracts.details_contract.billingitems
|
|
327
|
+
contracts.details_contract.procurementitems
|
|
328
|
+
|
|
329
|
+
tickets.index
|
|
330
|
+
tickets.index.action
|
|
331
|
+
tickets.index.export
|
|
332
|
+
|
|
333
|
+
tickets.details_ticket
|
|
334
|
+
tickets.details_ticket.head
|
|
335
|
+
tickets.details_ticket.masterdata
|
|
336
|
+
tickets.details_ticket.masterdata.form
|
|
337
|
+
tickets.details_ticket.details
|
|
338
|
+
tickets.details_ticket.details.form
|
|
339
|
+
tickets.details_ticket.actionsteps
|
|
340
|
+
tickets.details_ticket.actionsteps.export
|
|
341
|
+
tickets.details_ticket.billingitems
|
|
342
|
+
tickets.details_ticket.procurementitems
|
|
343
|
+
|
|
344
|
+
opportunities.index
|
|
345
|
+
opportunities.index.action
|
|
346
|
+
opportunities.index.export
|
|
347
|
+
|
|
348
|
+
opportunities.details_opportunity
|
|
349
|
+
opportunities.details_opportunity.head
|
|
350
|
+
opportunities.details_opportunity.masterdata
|
|
351
|
+
opportunities.details_opportunity.masterdata.form
|
|
352
|
+
opportunities.details_opportunity.form
|
|
353
|
+
|
|
354
|
+
campaigns.index
|
|
355
|
+
campaigns.index.action
|
|
356
|
+
campaigns.index.export
|
|
357
|
+
|
|
358
|
+
campaigns.details_campaign
|
|
359
|
+
campaigns.details_campaign.head
|
|
360
|
+
campaigns.details_campaign.masterdata
|
|
361
|
+
campaigns.details_campaign.masterdata.form
|
|
362
|
+
campaigns.details_campaign.details
|
|
363
|
+
campaigns.details_campaign.details.form
|
|
364
|
+
campaigns.details_campaign.participants
|
|
365
|
+
campaigns.details_campaign.participants.export
|
|
366
|
+
campaigns.details_campaign.participants.addcontact.form
|
|
367
|
+
campaigns.details_campaign.participants.addparticipant.form
|
|
368
|
+
|
|
369
|
+
campaigns.participant.form
|
|
370
|
+
|
|
371
|
+
production.index
|
|
372
|
+
production.index.action
|
|
373
|
+
production.index.export
|
|
374
|
+
production.index.fabrications
|
|
375
|
+
production.index.fabrications.action
|
|
376
|
+
production.index.fabrications.export
|
|
377
|
+
production.index.disassemblies
|
|
378
|
+
production.index.disassemblies.action
|
|
379
|
+
production.index.disassemblies.export
|
|
380
|
+
|
|
381
|
+
production.details_transaction
|
|
382
|
+
production.details_transaction.head
|
|
383
|
+
production.details_transaction.masterdata
|
|
384
|
+
production.details_transaction.masterdata.form
|
|
385
|
+
production.details_transaction.form
|
|
386
|
+
production.details_transaction.items
|
|
387
|
+
production.details_transaction.process.form
|
|
388
|
+
|
|
389
|
+
inventory.index
|
|
390
|
+
inventory.index.action
|
|
391
|
+
inventory.index.export
|
|
392
|
+
|
|
393
|
+
inventory.storages
|
|
394
|
+
inventory.storages.action
|
|
395
|
+
inventory.storages.export
|
|
396
|
+
|
|
397
|
+
inventory.devices
|
|
398
|
+
inventory.devices.action
|
|
399
|
+
inventory.devices.export
|
|
400
|
+
|
|
401
|
+
inventory.transactions
|
|
402
|
+
inventory.transactions.export
|
|
403
|
+
|
|
404
|
+
inventory.details_item
|
|
405
|
+
inventory.details_item.head
|
|
406
|
+
inventory.details_item.masterdata
|
|
407
|
+
inventory.details_item.masterdata.form
|
|
408
|
+
inventory.details_item.details
|
|
409
|
+
inventory.details_item.details.form
|
|
410
|
+
inventory.details_item.inventory
|
|
411
|
+
inventory.details_item.prices
|
|
412
|
+
inventory.details_item.prices.export
|
|
413
|
+
inventory.details_item.components
|
|
414
|
+
inventory.details_item.components.export
|
|
415
|
+
inventory.details_item.suppliers
|
|
416
|
+
inventory.details_item.suppliers.export
|
|
417
|
+
inventory.details_item.transactions
|
|
418
|
+
inventory.details_item.transactions.export
|
|
419
|
+
inventory.details_item.transactions.addtransaction.form
|
|
420
|
+
inventory.details_item.transactions.addreservation.form
|
|
421
|
+
inventory.details_item.transactions.transfer.form
|
|
422
|
+
inventory.details_item.locations
|
|
423
|
+
inventory.details_item.locations.export
|
|
424
|
+
inventory.details_item.serials
|
|
425
|
+
inventory.details_item.serials.export
|
|
426
|
+
inventory.details_item.charges
|
|
427
|
+
inventory.details_item.charges.export
|
|
428
|
+
inventory.details_item.variants
|
|
429
|
+
inventory.details_item.variants.export
|
|
430
|
+
inventory.details_item.relateditems
|
|
431
|
+
inventory.details_item.relateditems.export
|
|
432
|
+
|
|
433
|
+
inventory.details_storage
|
|
434
|
+
inventory.details_storage.head
|
|
435
|
+
inventory.details_storage.masterdata
|
|
436
|
+
inventory.details_storage.masterdata.form
|
|
437
|
+
inventory.details_storage.details
|
|
438
|
+
inventory.details_storage.details.form
|
|
439
|
+
inventory.details_storage.locations
|
|
440
|
+
inventory.details_storage.locations.export
|
|
441
|
+
|
|
442
|
+
inventory.details_device
|
|
443
|
+
inventory.details_device.head
|
|
444
|
+
inventory.details_device.masterdata
|
|
445
|
+
inventory.details_device.masterdata.form
|
|
446
|
+
inventory.details_device.details
|
|
447
|
+
inventory.details_device.details.form
|
|
448
|
+
inventory.details_device.transactions
|
|
449
|
+
inventory.details_device.transactions.export
|
|
450
|
+
|
|
451
|
+
inventory.transaction.form
|
|
452
|
+
|
|
453
|
+
pricelists.index
|
|
454
|
+
pricelists.index.action
|
|
455
|
+
pricelists.index.export
|
|
456
|
+
|
|
457
|
+
pricelists.details_pricelist
|
|
458
|
+
pricelists.details_pricelist.head
|
|
459
|
+
pricelists.details_pricelist.masterdata
|
|
460
|
+
pricelists.details_pricelist.masterdata.form
|
|
461
|
+
pricelists.details_pricelist.details
|
|
462
|
+
pricelists.details_pricelist.details.form
|
|
463
|
+
pricelists.details_pricelist.prices
|
|
464
|
+
pricelists.details_pricelist.prices.export
|
|
465
|
+
pricelists.details_pricelist.accounts
|
|
466
|
+
pricelists.details_pricelist.accounts.export
|
|
467
|
+
|
|
468
|
+
coupons.index
|
|
469
|
+
coupons.index.action
|
|
470
|
+
coupons.index.export
|
|
471
|
+
|
|
472
|
+
coupons.details_coupon
|
|
473
|
+
coupons.details_coupon.head
|
|
474
|
+
coupons.details_coupon.masterdata
|
|
475
|
+
coupons.details_coupon.masterdata.form
|
|
476
|
+
coupons.details_coupon.details
|
|
477
|
+
coupons.details_coupon.details.form
|
|
478
|
+
coupons.details_coupon.codes
|
|
479
|
+
coupons.details_coupon.codes.export
|
|
480
|
+
coupons.details_coupon.codes.add.form
|
|
481
|
+
coupons.details_coupon.code.form
|
|
482
|
+
|
|
483
|
+
objects.index
|
|
484
|
+
objects.index.action
|
|
485
|
+
objects.index.export
|
|
486
|
+
|
|
487
|
+
objects.details_object
|
|
488
|
+
objects.details_object.head
|
|
489
|
+
objects.details_object.masterdata
|
|
490
|
+
objects.details_object.masterdata.form
|
|
491
|
+
objects.details_object.form
|
|
492
|
+
|
|
493
|
+
admin.index
|
|
494
|
+
admin.index.users
|
|
495
|
+
admin.index.users.action
|
|
496
|
+
admin.index.users.export
|
|
497
|
+
admin.index.groups
|
|
498
|
+
admin.index.groups.action
|
|
499
|
+
admin.index.groups.export
|
|
500
|
+
|
|
501
|
+
admin.forks
|
|
502
|
+
admin.forks.action
|
|
503
|
+
admin.forks.export
|
|
504
|
+
|
|
505
|
+
admin.customfields
|
|
506
|
+
admin.customfields.action
|
|
507
|
+
admin.customfields.export
|
|
508
|
+
|
|
509
|
+
admin.config
|
|
510
|
+
|
|
511
|
+
admin.settings
|
|
512
|
+
admin.settings.head
|
|
513
|
+
admin.settings.locale
|
|
514
|
+
admin.settings.locale.form
|
|
515
|
+
admin.settings.security
|
|
516
|
+
admin.settings.security.form
|
|
517
|
+
admin.settings.customization
|
|
518
|
+
admin.settings.customization.form
|
|
519
|
+
admin.settings.numformat
|
|
520
|
+
admin.settings.apps
|
|
521
|
+
|
|
522
|
+
admin.subscription
|
|
523
|
+
|
|
524
|
+
admin.logs
|
|
525
|
+
|
|
526
|
+
admin.audit
|
|
527
|
+
|
|
528
|
+
admin.details_user
|
|
529
|
+
admin.details_user.head
|
|
530
|
+
admin.details_user.masterdata
|
|
531
|
+
admin.details_user.masterdata.form
|
|
532
|
+
admin.details_user.contactdata
|
|
533
|
+
admin.details_user.form
|
|
534
|
+
|
|
535
|
+
admin.details_group
|
|
536
|
+
admin.details_group.head
|
|
537
|
+
admin.details_group.masterdata
|
|
538
|
+
admin.details_group.masterdata.form
|
|
539
|
+
admin.details_group.form
|
|
540
|
+
|
|
541
|
+
admin.details_fork
|
|
542
|
+
admin.details_fork.head
|
|
543
|
+
admin.details_fork.masterdata
|
|
544
|
+
admin.details_fork.masterdata.form
|
|
545
|
+
admin.details_fork.form
|
|
546
|
+
|
|
547
|
+
admin.details_customfields
|
|
548
|
+
admin.details_customfields.head
|
|
549
|
+
admin.details_customfields.masterdata
|
|
550
|
+
admin.details_customfields.masterdata.form
|
|
551
|
+
admin.details_customfields.form
|
|
552
|
+
|
|
553
|
+
dev.index
|
|
554
|
+
dev.index.applications
|
|
555
|
+
dev.index.applications.action
|
|
556
|
+
dev.index.applications.export
|
|
557
|
+
dev.index.services
|
|
558
|
+
dev.index.services.action
|
|
559
|
+
dev.index.services.export
|
|
560
|
+
dev.index.resources
|
|
561
|
+
dev.index.resources.action
|
|
562
|
+
dev.index.resources.export
|
|
563
|
+
dev.index.weblets
|
|
564
|
+
dev.index.weblets.action
|
|
565
|
+
dev.index.weblets.export
|
|
566
|
+
|
|
567
|
+
dev.details_application
|
|
568
|
+
dev.details_application.head
|
|
569
|
+
dev.details_application.masterdata
|
|
570
|
+
dev.details_application.masterdata.form
|
|
571
|
+
dev.details_application.details
|
|
572
|
+
dev.details_application.details.form
|
|
573
|
+
dev.details_application.settings
|
|
574
|
+
dev.details_application.files
|
|
575
|
+
dev.details_application.api
|
|
576
|
+
|
|
577
|
+
dev.details_service
|
|
578
|
+
dev.details_service.head
|
|
579
|
+
dev.details_service.masterdata
|
|
580
|
+
dev.details_service.masterdata.form
|
|
581
|
+
dev.details_service.form
|
|
582
|
+
|
|
583
|
+
dev.details_resource
|
|
584
|
+
dev.details_resource.head
|
|
585
|
+
dev.details_resource.masterdata
|
|
586
|
+
dev.details_resource.masterdata.form
|
|
587
|
+
dev.details_resource.form
|
|
588
|
+
|
|
589
|
+
dev.details_weblet
|
|
590
|
+
dev.details_weblet.head
|
|
591
|
+
dev.details_weblet.masterdata
|
|
592
|
+
dev.details_weblet.masterdata.form
|
|
593
|
+
dev.details_weblet.form
|
|
594
|
+
|
|
595
|
+
dev.db
|
|
596
|
+
dev.db.tables
|
|
597
|
+
dev.db.tables.export
|
|
598
|
+
dev.db.indexes
|
|
599
|
+
dev.db.indexes.export
|
|
600
|
+
dev.db.schemas
|
|
601
|
+
dev.db.schemas.export
|
|
602
|
+
dev.db.backends
|
|
603
|
+
dev.db.backends.export
|
|
604
|
+
dev.db.utilities
|
|
605
|
+
dev.db.utilities.export
|
|
606
|
+
dev.db.replicators
|
|
607
|
+
dev.db.replicators.export
|
|
608
|
+
dev.db.locks
|
|
609
|
+
dev.db.locks.export
|
|
610
|
+
dev.db.io
|
|
611
|
+
dev.db.io.export
|
|
612
|
+
dev.db.queries
|
|
613
|
+
dev.db.queries.export
|
|
614
|
+
|
|
615
|
+
dev.fs
|
|
616
|
+
dev.fs.sysfiles
|
|
617
|
+
dev.fs.binfiles
|
|
618
|
+
|
|
619
|
+
dev.sql
|
|
620
|
+
dev.sql.export
|
|
621
|
+
|
|
622
|
+
dev.checks
|
|
623
|
+
|
|
624
|
+
dev.extdata
|
|
625
|
+
dev.extdata.export
|
|
626
|
+
|
|
627
|
+
dev.tags
|
|
628
|
+
dev.tags.export
|
|
629
|
+
|
|
630
|
+
dev.console
|
|
631
|
+
|
|
632
|
+
dev.api
|
|
633
|
+
|
|
634
|
+
dev.system
|
|
635
|
+
dev.system.top
|
|
636
|
+
dev.system.php
|
|
637
|
+
dev.system.fpm
|
|
638
|
+
dev.system.utilities
|
|
639
|
+
dev.system.opcache
|
|
640
|
+
dev.system.apcu
|
|
641
|
+
dev.system.sessions
|
|
642
|
+
dev.system.logs
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zeyos/client",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Dependency-light JavaScript client for ZeyOS OpenAPI services",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Peter Haider <peter.haider@zeyos.com>",
|
|
8
|
+
"homepage": "https://github.com/zeyos/client#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/zeyos/client.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/zeyos/client/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"zeyos",
|
|
18
|
+
"erp",
|
|
19
|
+
"crm",
|
|
20
|
+
"openapi",
|
|
21
|
+
"rest",
|
|
22
|
+
"api-client",
|
|
23
|
+
"oauth2"
|
|
24
|
+
],
|
|
25
|
+
"main": "./src/index.js",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": "./src/index.js"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"src",
|
|
31
|
+
"scripts/generate-client.mjs",
|
|
32
|
+
"openapi",
|
|
33
|
+
"docs",
|
|
34
|
+
"samples",
|
|
35
|
+
"agents",
|
|
36
|
+
"README.md",
|
|
37
|
+
"CHANGELOG.md",
|
|
38
|
+
"LICENSE"
|
|
39
|
+
],
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=18"
|
|
42
|
+
},
|
|
43
|
+
"scripts": {
|
|
44
|
+
"generate": "node scripts/generate-client.mjs",
|
|
45
|
+
"test": "node scripts/test.mjs",
|
|
46
|
+
"test:cli-integration": "node --test cli/test/integration.mjs",
|
|
47
|
+
"test:agent-protocol": "node test/agent-protocol/harness/run.mjs"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ZeyOS CRM Account Sample
|
|
2
|
+
|
|
3
|
+
This directory contains the static CRM account sample application.
|
|
4
|
+
|
|
5
|
+
The canonical documentation is:
|
|
6
|
+
|
|
7
|
+
- [CRM sample docs](../../docs/04-sample-apps/02-crm.md)
|
|
8
|
+
|
|
9
|
+
## Quick Run
|
|
10
|
+
|
|
11
|
+
Serve the repository root with any static file server:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
cd /path/to/zeyos/client
|
|
15
|
+
python3 -m http.server 8080
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Then open:
|
|
19
|
+
|
|
20
|
+
```text
|
|
21
|
+
http://localhost:8080/samples/crm/
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Configure the sample via `data-zeyos-*` attributes in [`index.html`](./index.html) or through the `window.ZeyOS` console API described in the docs.
|
|
25
|
+
|
|
26
|
+
For localhost, token mode is usually the reliable path. Session mode only works from the same origin or when the ZeyOS instance allows credentialed CORS.
|
|
27
|
+
|
|
28
|
+
> **Note:** The sample must be served from the **repository root** (the directory containing `src/`), because the client is imported via `../../../src/index.js`. Copying the `samples/` folder in isolation will break that import. Also, do **not** open `index.html` directly via the `file://` protocol — browsers block ES module relative imports under `file://`. Always use a local static server as shown above.
|