@instantdb/platform 1.0.10 → 1.0.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instantdb/platform",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "Instant's platform package for managing Instant apps.",
5
5
  "homepage": "https://github.com/instantdb/instant/tree/main/client/packages/platform",
6
6
  "repository": {
@@ -54,8 +54,8 @@
54
54
  "dependencies": {
55
55
  "@babel/parser": "^8.0.0-beta.0",
56
56
  "@babel/types": "^8.0.0-beta.0",
57
- "@instantdb/core": "1.0.10",
58
- "@instantdb/version": "1.0.10"
57
+ "@instantdb/core": "1.0.11",
58
+ "@instantdb/version": "1.0.11"
59
59
  },
60
60
  "scripts": {
61
61
  "test": "vitest",
package/src/consts.ts CHANGED
@@ -5,3 +5,11 @@ export const GOOGLE_DISCOVERY_ENDPOINT =
5
5
  'https://accounts.google.com/.well-known/openid-configuration';
6
6
  export const GOOGLE_DEFAULT_CALLBACK_URL =
7
7
  'https://api.instantdb.com/runtime/oauth/callback';
8
+
9
+ export const APPLE_AUTHORIZATION_ENDPOINT =
10
+ 'https://appleid.apple.com/auth/authorize';
11
+ export const APPLE_TOKEN_ENDPOINT = 'https://appleid.apple.com/auth/token';
12
+ export const APPLE_DISCOVERY_ENDPOINT =
13
+ 'https://appleid.apple.com/.well-known/openid-configuration';
14
+ export const APPLE_DEFAULT_CALLBACK_URL =
15
+ 'https://api.instantdb.com/runtime/oauth/callback';
package/src/index.ts CHANGED
@@ -69,4 +69,8 @@ export {
69
69
  GOOGLE_DEFAULT_CALLBACK_URL,
70
70
  GOOGLE_DISCOVERY_ENDPOINT,
71
71
  GOOGLE_TOKEN_ENDPOINT,
72
+ APPLE_AUTHORIZATION_ENDPOINT,
73
+ APPLE_DEFAULT_CALLBACK_URL,
74
+ APPLE_DISCOVERY_ENDPOINT,
75
+ APPLE_TOKEN_ENDPOINT,
72
76
  } from './consts.ts';