@dotdo/do 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -58,7 +58,7 @@ const vips = await $.db.Customer`high value this quarter`
58
58
  // Communication that flows
59
59
  await $.email.to(user)`Your order ${order.id} shipped!`
60
60
  await $.slack`#alerts New VIP signup: ${customer.name}`
61
- await $.sms`${contact.phone} Your appointment is tomorrow`
61
+ await $.customer('cust_234sgsdfg')`Your appointment is tomorrow`
62
62
 
63
63
  // Payments that just work
64
64
  await $.pay`charge ${customer} $${amount}`
@@ -363,7 +363,7 @@ Everything you need, integrated:
363
363
  | **Payments** | `$.pay.charge()`, `$.pay.transfer()`, `$.pay.mrr()` |
364
364
  | **Email** | `$.email\`welcome ${name}\``, `$.email.to(addr)\`message\`` |
365
365
  | **Slack** | `$.slack\`#channel message\`` |
366
- | **SMS** | `$.sms\`${phone} reminder\`` |
366
+ | **Messaging** | `$.customer(id)\`Your appointment is tomorrow\`` |
367
367
  | **Voice** | `$.voice.agent\`sales assistant\``, `$.call(phone)\`book demo\`` |
368
368
  | **Domains** | `$.domain\`app.saas.group\`` |
369
369
  | **Events** | `$.on.Customer.created()`, `$.on.Order.placed()` |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotdo/do",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Digital Object - Every business entity IS a Durable Object. Unified edge-native platform with CRUD APIs, SDK, AI, payments, and more.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -88,10 +88,10 @@
88
88
  "homepage": "https://do.md",
89
89
  "repository": {
90
90
  "type": "git",
91
- "url": "git+https://github.com/drivly/do.git"
91
+ "url": "git+https://github.com/dot-do/do.git"
92
92
  },
93
93
  "bugs": {
94
- "url": "https://github.com/drivly/do/issues"
94
+ "url": "https://github.com/dot-do/do/issues"
95
95
  },
96
96
  "publishConfig": {
97
97
  "access": "public",