0nmcp 1.0.0 → 1.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/LICENSE +1 -11
- package/README.md +425 -133
- package/catalog.js +431 -367
- package/cli.js +2 -2
- package/connections.js +274 -179
- package/crm/auth.js +283 -0
- package/crm/calendars.js +545 -0
- package/crm/contacts.js +811 -0
- package/crm/conversations.js +227 -0
- package/crm/helpers.js +182 -0
- package/crm/index.js +62 -0
- package/crm/invoices.js +962 -0
- package/crm/locations.js +760 -0
- package/crm/objects.js +523 -0
- package/crm/opportunities.js +245 -0
- package/crm/payments.js +657 -0
- package/crm/products.js +209 -0
- package/crm/social.js +1380 -0
- package/crm/users.js +430 -0
- package/crm.js +405 -621
- package/index.js +330 -226
- package/orchestrator.js +379 -396
- package/package.json +37 -5
- package/ratelimit.js +237 -0
- package/types/index.d.ts +327 -0
- package/webhooks.js +227 -0
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2026 RocketOpp
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -19,13 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
SOFTWARE.
|
|
22
|
-
|
|
23
|
-
───────────────────────────────────────────────────────────────────────────────
|
|
24
|
-
|
|
25
|
-
TRADEMARK NOTICE
|
|
26
|
-
|
|
27
|
-
"0nORK", "0nMCP", ".0n", and "The .0n Standard" are trademarks of 0nORK.
|
|
28
|
-
|
|
29
|
-
While this software is freely usable under the MIT License, the trademarks are
|
|
30
|
-
protected. Unauthorized use of these marks to imply endorsement or official
|
|
31
|
-
status is prohibited.
|