@cedarjs/cli 3.0.0-canary.13360 → 3.0.0-canary.13363

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.
@@ -1,5 +1,3 @@
1
- // api/src/graphql/auctions.sdl.ts
2
-
3
1
  export const schema = gql`
4
2
  type Query {
5
3
  auction(id: ID!): Auction @requireAuth
@@ -1,4 +1,3 @@
1
- // api/src/services/auctions/auctions.ts
2
1
  import type { LiveQueryStorageMechanism } from '@cedarjs/realtime'
3
2
 
4
3
  import { logger } from 'src/lib/logger'
@@ -1,4 +1,4 @@
1
- import { RedwoodRealtimeOptions } from '@cedarjs/realtime'
1
+ import { CedarRealtimeOptions } from '@cedarjs/realtime'
2
2
 
3
3
  import subscriptions from 'src/subscriptions/**/*.{js,ts}'
4
4
 
@@ -14,21 +14,23 @@ import subscriptions from 'src/subscriptions/**/*.{js,ts}'
14
14
  *
15
15
  * Realtime supports Live Queries and Subscriptions over GraphQL SSE.
16
16
  *
17
- * Live Queries are GraphQL queries that are automatically re-run when the data they depend on changes.
17
+ * Live Queries are GraphQL queries that are automatically re-run when the data
18
+ * they depend on changes.
18
19
  *
19
- * Subscriptions are GraphQL queries that are run when a client subscribes to a channel.
20
+ * Subscriptions are GraphQL queries that are run when a client subscribes to a
21
+ * channel.
20
22
  *
21
23
  * CedarJS Realtime
22
24
  * - uses a publish/subscribe model to broadcast data to clients.
23
25
  * - uses a store to persist Live Query and Subscription data.
24
- * - and enable defer and stream directives to improve latency
25
- * for clients by sending data the most important data as soon as it's ready.
26
+ * - and enable defer and stream directives to improve latency for clients by
27
+ * sending data the most important data as soon as it's ready.
26
28
  *
27
29
  * CedarJS Realtime supports in-memory and Redis stores:
28
30
  * - In-memory stores are useful for development and testing.
29
31
  * - Redis stores are useful for production.
30
32
  */
31
- export const realtime: RedwoodRealtimeOptions = {
33
+ export const realtime: CedarRealtimeOptions = {
32
34
  subscriptions: {
33
35
  subscriptions,
34
36
  store: 'in-memory',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/cli",
3
- "version": "3.0.0-canary.13360+e802941b9",
3
+ "version": "3.0.0-canary.13363+81e14f8ec",
4
4
  "description": "The CedarJS Command Line",
5
5
  "repository": {
6
6
  "type": "git",
@@ -33,15 +33,15 @@
33
33
  "dependencies": {
34
34
  "@babel/preset-typescript": "7.28.5",
35
35
  "@babel/runtime-corejs3": "7.29.0",
36
- "@cedarjs/api-server": "3.0.0-canary.13360",
37
- "@cedarjs/cli-helpers": "3.0.0-canary.13360",
38
- "@cedarjs/fastify-web": "3.0.0-canary.13360",
39
- "@cedarjs/internal": "3.0.0-canary.13360",
40
- "@cedarjs/prerender": "3.0.0-canary.13360",
41
- "@cedarjs/project-config": "3.0.0-canary.13360",
42
- "@cedarjs/structure": "3.0.0-canary.13360",
43
- "@cedarjs/telemetry": "3.0.0-canary.13360",
44
- "@cedarjs/web-server": "3.0.0-canary.13360",
36
+ "@cedarjs/api-server": "3.0.0-canary.13363",
37
+ "@cedarjs/cli-helpers": "3.0.0-canary.13363",
38
+ "@cedarjs/fastify-web": "3.0.0-canary.13363",
39
+ "@cedarjs/internal": "3.0.0-canary.13363",
40
+ "@cedarjs/prerender": "3.0.0-canary.13363",
41
+ "@cedarjs/project-config": "3.0.0-canary.13363",
42
+ "@cedarjs/structure": "3.0.0-canary.13363",
43
+ "@cedarjs/telemetry": "3.0.0-canary.13363",
44
+ "@cedarjs/web-server": "3.0.0-canary.13363",
45
45
  "@listr2/prompt-adapter-enquirer": "2.0.16",
46
46
  "@opentelemetry/api": "1.9.0",
47
47
  "@opentelemetry/core": "1.30.1",
@@ -104,5 +104,5 @@
104
104
  "publishConfig": {
105
105
  "access": "public"
106
106
  },
107
- "gitHead": "e802941b9b737fb7f3b748bc1de41ed0eaf57cd2"
107
+ "gitHead": "81e14f8ec10137f3bbd062575a0289596785121b"
108
108
  }