@quesmed/types 1.4.23 → 1.4.24
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/index.d.ts +1 -0
- package/index.js +5 -4
- package/index.mjs +1 -0
- package/models/index.d.ts +1 -1
- package/models/index.js +1 -1
- package/models/index.mjs +1 -1
- package/package.json +1 -1
- package/resolvers/subscription/osce.d.ts +4 -1
- package/test.d.ts +0 -0
- package/test.js +0 -1
- package/test.mjs +0 -1
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -11,9 +11,6 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
11
11
|
}) : function(o, v) {
|
|
12
12
|
o["default"] = v;
|
|
13
13
|
});
|
|
14
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
15
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
16
|
-
};
|
|
17
14
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
18
15
|
if (mod && mod.__esModule) return mod;
|
|
19
16
|
var result = {};
|
|
@@ -21,8 +18,12 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
21
18
|
__setModuleDefault(result, mod);
|
|
22
19
|
return result;
|
|
23
20
|
};
|
|
21
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
22
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
23
|
+
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.termsAndConditions = exports.EPlatformId = exports.FCM_TOPICS = exports.ERRORS = exports.utils = void 0;
|
|
25
|
+
exports.termsAndConditions = exports.EPlatformId = exports.FCM_TOPICS = exports.ERRORS = exports.utils = exports.Models = void 0;
|
|
26
|
+
exports.Models = __importStar(require("./models"));
|
|
26
27
|
__exportStar(require("./resolvers"), exports);
|
|
27
28
|
exports.utils = __importStar(require("./utils"));
|
|
28
29
|
exports.ERRORS = {
|
package/index.mjs
CHANGED
package/models/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './Author';
|
|
2
|
+
export * from './Blog';
|
|
2
3
|
export * from './Book';
|
|
3
4
|
export * from './Card';
|
|
4
5
|
export * from './Chapter';
|
|
@@ -21,4 +22,3 @@ export * from './Type';
|
|
|
21
22
|
export * from './University';
|
|
22
23
|
export * from './User';
|
|
23
24
|
export * from './Video';
|
|
24
|
-
export * from './Blog';
|
package/models/index.js
CHANGED
|
@@ -11,6 +11,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
11
11
|
};
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
13
|
__exportStar(require("./Author"), exports);
|
|
14
|
+
__exportStar(require("./Blog"), exports);
|
|
14
15
|
__exportStar(require("./Book"), exports);
|
|
15
16
|
__exportStar(require("./Card"), exports);
|
|
16
17
|
__exportStar(require("./Chapter"), exports);
|
|
@@ -33,4 +34,3 @@ __exportStar(require("./Type"), exports);
|
|
|
33
34
|
__exportStar(require("./University"), exports);
|
|
34
35
|
__exportStar(require("./User"), exports);
|
|
35
36
|
__exportStar(require("./Video"), exports);
|
|
36
|
-
__exportStar(require("./Blog"), exports);
|
package/models/index.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './Author';
|
|
2
|
+
export * from './Blog';
|
|
2
3
|
export * from './Book';
|
|
3
4
|
export * from './Card';
|
|
4
5
|
export * from './Chapter';
|
|
@@ -21,4 +22,3 @@ export * from './Type';
|
|
|
21
22
|
export * from './University';
|
|
22
23
|
export * from './User';
|
|
23
24
|
export * from './Video';
|
|
24
|
-
export * from './Blog';
|
package/package.json
CHANGED
|
@@ -50,5 +50,8 @@ export interface IOsceMatchmakingVar {
|
|
|
50
50
|
userId: Id;
|
|
51
51
|
}
|
|
52
52
|
export declare const OSCE_MATCHMAKING_USERS: import("@apollo/client").DocumentNode;
|
|
53
|
-
export declare type IOsceMatchmakingUsersData = RootData<
|
|
53
|
+
export declare type IOsceMatchmakingUsersData = RootData<[
|
|
54
|
+
number,
|
|
55
|
+
number
|
|
56
|
+
], 'osceMatchmakingUsers'>;
|
|
54
57
|
export declare type IOsceMatchmakingUsersVar = null;
|
package/test.d.ts
DELETED
|
File without changes
|
package/test.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
package/test.mjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|