@lunora/svelte 1.0.0-alpha.7 → 1.0.0-alpha.71
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.md +6 -0
- package/README.md +2 -0
- package/dist/index.d.mts +897 -168
- package/dist/index.d.ts +897 -168
- package/dist/index.mjs +1 -10
- package/dist/packem_shared/agent-CddTbgxO.mjs +1 -0
- package/dist/packem_shared/agentChat-BmvA3u8B.mjs +1 -0
- package/dist/packem_shared/agentState-fc7KRCp9.mjs +1 -0
- package/dist/packem_shared/agentToolEvents-sOUvSZsy.mjs +1 -0
- package/dist/packem_shared/auth-BWCPnv0n.mjs +1 -0
- package/dist/packem_shared/connectionStatus-BHVAskxU.mjs +1 -0
- package/dist/packem_shared/flag-5trRaaSv.mjs +1 -0
- package/dist/packem_shared/getLunoraClient-DU7BmZy1.mjs +1 -0
- package/dist/packem_shared/hydratePreloaded-Bbm6vwbA.mjs +1 -0
- package/dist/packem_shared/infiniteQuery-s_5r8MQZ.mjs +1 -0
- package/dist/packem_shared/is-browser-BEdfLJHK.mjs +1 -0
- package/dist/packem_shared/is-function-reference-ByqJF30w.mjs +1 -0
- package/dist/packem_shared/mutation-fa0Bj5Bo.mjs +1 -0
- package/dist/packem_shared/mutator-cvH3UrNm.mjs +1 -0
- package/dist/packem_shared/presence-C2YC1KOc.mjs +1 -0
- package/dist/packem_shared/query-BEQBdOJ2.mjs +1 -0
- package/dist/packem_shared/rateLimit-DtykU7F_.mjs +1 -0
- package/dist/packem_shared/stream-DItOnXt6.mjs +1 -0
- package/dist/packem_shared/subscription-Dbz9sy8N.mjs +1 -0
- package/dist/packem_shared/voiceAgent-CPQvbrxT.mjs +1 -0
- package/dist/server.mjs +1 -1
- package/dist/upload.d.mts +2 -0
- package/dist/upload.d.ts +2 -0
- package/dist/upload.mjs +1 -0
- package/dist/worker.mjs +1 -1
- package/package.json +10 -4
- package/dist/packem_shared/auth-DLPf_bK9.mjs +0 -28
- package/dist/packem_shared/connectionStatus-CRsOMeYl.mjs +0 -14
- package/dist/packem_shared/getLunoraClient--bwSz7F6.mjs +0 -16
- package/dist/packem_shared/hydratePreloaded-D5rUJdXy.mjs +0 -21
- package/dist/packem_shared/infiniteQuery-jPMQw8Vz.mjs +0 -196
- package/dist/packem_shared/is-function-reference-ycLAcI79.mjs +0 -3
- package/dist/packem_shared/mutation-CnDkAaLH.mjs +0 -31
- package/dist/packem_shared/presence-BQWixJ2T.mjs +0 -66
- package/dist/packem_shared/query-D8Pct9Qe.mjs +0 -36
- package/dist/packem_shared/rateLimit-Cdw1kp8t.mjs +0 -66
- package/dist/packem_shared/subscription-twuBT_Wb.mjs +0 -46
package/LICENSE.md
CHANGED
|
@@ -103,3 +103,9 @@ Unless required by applicable law or agreed to in writing, software distributed
|
|
|
103
103
|
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
104
104
|
CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
105
105
|
specific language governing permissions and limitations under the License.
|
|
106
|
+
|
|
107
|
+
<!-- DEPENDENCIES -->
|
|
108
|
+
<!-- /DEPENDENCIES -->
|
|
109
|
+
|
|
110
|
+
<!-- TYPE_DEPENDENCIES -->
|
|
111
|
+
<!-- /TYPE_DEPENDENCIES -->
|
package/README.md
CHANGED
|
@@ -108,6 +108,8 @@ All functions that require a component lifecycle (presence, rate-limit) return a
|
|
|
108
108
|
| `infiniteQuery` | `useInfiniteQuery` | Infinite-scroll variant of `paginatedQuery`. |
|
|
109
109
|
| `auth` | `useAuth` | Reactive auth stores (`user`, `token`) plus `setToken`. |
|
|
110
110
|
| `presence` | `usePresence` | Collaborative-awareness — heartbeat + live present-members readable + `teardown`. |
|
|
111
|
+
| `flag` | `useFlag` | Live OpenFeature flag readable store — holds `default` until the server answers. |
|
|
112
|
+
| `flags` | `useFlags` | Batch variant — a readable store of one value per key in the defaults map. |
|
|
111
113
|
| `rateLimit` | `useRateLimit` | Client-side rate-limit mirror — `ok`, `disabled`, `retryAfter` readables + `teardown`. |
|
|
112
114
|
| `connectionStatus` | `useConnectionStatus` | Reactive connection state store. |
|
|
113
115
|
| `hydratePreloaded` | `usePreloadedQuery` | Seed a query store from an SSR `Preloaded` token, then go live. |
|