@marcoappio/marco-config 2.0.410 → 2.0.411

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/dist/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  export { marcoConstants } from './constants';
2
+ export { instantDBPermissions, instantDBSchema } from './instantDB';
2
3
  export { MARCO_ENV, MarcoEnvironment, marcoPublicConfig } from './marcoPublicConfig';
3
4
  export { marcoSchemas } from './schemas';
4
5
  export { marcoSDK } from './sdk';
5
6
  export { EndpointConfig, SDKResponse as EndpointResponse } from './types';
6
7
  export { accountUtils, stringPatch } from './utils';
7
- export { marcoWS } from './ws';
8
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAC5C,OAAO,EAAE,SAAS,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACpF,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,cAAc,EAAE,WAAW,IAAI,gBAAgB,EAAE,MAAM,SAAS,CAAA;AACzE,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AACnD,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAC5C,OAAO,EAAE,oBAAoB,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AACnE,OAAO,EAAE,SAAS,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACpF,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,cAAc,EAAE,WAAW,IAAI,gBAAgB,EAAE,MAAM,SAAS,CAAA;AACzE,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA"}
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export { marcoConstants } from './constants';
2
+ export { instantDBPermissions, instantDBSchema } from './instantDB';
2
3
  export { MARCO_ENV, marcoPublicConfig } from './marcoPublicConfig';
3
4
  export { marcoSchemas } from './schemas';
4
5
  export { marcoSDK } from './sdk';
5
6
  export { accountUtils, stringPatch } from './utils';
6
- export { marcoWS } from './ws';
@@ -0,0 +1,3 @@
1
+ export { default as instantDBPermissions } from './instant.perms';
2
+ export { default as instantDBSchema } from './instant.schema';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/instantDB/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,iBAAiB,CAAA;AACjE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,kBAAkB,CAAA"}
@@ -0,0 +1,2 @@
1
+ export { default as instantDBPermissions } from './instant.perms';
2
+ export { default as instantDBSchema } from './instant.schema';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marcoappio/marco-config",
3
- "version": "2.0.410",
3
+ "version": "2.0.411",
4
4
  "author": "team@marcoapp.io",
5
5
  "main": "dist/index.js",
6
6
  "repository": "git@github.com:marcoappio/marco-config.git",
package/dist/ws.d.ts DELETED
@@ -1,6 +0,0 @@
1
- export declare const marcoWS: {
2
- getChannelName: {
3
- user: (userId: string) => string;
4
- };
5
- };
6
- //# sourceMappingURL=ws.d.ts.map
package/dist/ws.d.ts.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"ws.d.ts","sourceRoot":"","sources":["../src/ws.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO;;uBAED,MAAM;;CAExB,CAAA"}
package/dist/ws.js DELETED
@@ -1,5 +0,0 @@
1
- export const marcoWS = {
2
- getChannelName: {
3
- user: (userId) => userId,
4
- },
5
- };