@xoxno/types 1.0.112 → 1.0.114
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.
|
@@ -2,6 +2,6 @@ import { ChatMessageContentType } from '../../../enums/chat-message-content-type
|
|
|
2
2
|
import { ChatMessageReplyDto } from './chat-message-reply.dto';
|
|
3
3
|
export declare class ChatMessageContentDto {
|
|
4
4
|
readonly type: ChatMessageContentType;
|
|
5
|
-
|
|
5
|
+
value: string;
|
|
6
6
|
readonly replyTo?: ChatMessageReplyDto;
|
|
7
7
|
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
export * from "./auth-strategy.enum";
|
|
2
|
+
export * from "./azure-ws-event-name.enum";
|
|
3
|
+
export * from "./azure-ws-hub-name.enum";
|
|
4
|
+
export * from "./binance.enum";
|
|
5
|
+
export * from "./bober-battle-activity.enum";
|
|
6
|
+
export * from "./chat-data-type.enum";
|
|
7
|
+
export * from "./chat-message-content-type.enum";
|
|
8
|
+
export * from "./collection.enum";
|
|
9
|
+
export * from "./common.enum";
|
|
10
|
+
export * from "./cosmos-db-container.enum";
|
|
11
|
+
export * from "./event-category.enum";
|
|
12
|
+
export * from "./event-guest-status.enum";
|
|
13
|
+
export * from "./event-invitation-status.enum";
|
|
14
|
+
export * from "./event-question-answer-type.enum";
|
|
15
|
+
export * from "./event-referral-config.doc";
|
|
16
|
+
export * from "./event-scan-status.enum";
|
|
17
|
+
export * from "./event-source.enum";
|
|
18
|
+
export * from "./event-user-role.doc";
|
|
19
|
+
export * from "./event-user-roles.enum";
|
|
20
|
+
export * from "./external-payment-status.enum";
|
|
21
|
+
export * from "./fiat-tokens.enum";
|
|
22
|
+
export * from "./kusto-db.enum";
|
|
23
|
+
export * from "./lending-data-type.enum";
|
|
24
|
+
export * from "./lending-position-type.enum";
|
|
25
|
+
export * from "./lending.enum";
|
|
26
|
+
export * from "./linked-account-type.enum";
|
|
27
|
+
export * from "./marketplace-activity.enum";
|
|
28
|
+
export * from "./mobile-device.enum";
|
|
29
|
+
export * from "./nft-activity-type.enum";
|
|
30
|
+
export * from "./nft-extra-attributes.enum";
|
|
31
|
+
export * from "./notification-asset-type.enum";
|
|
32
|
+
export * from "./notification-data-type.enum";
|
|
33
|
+
export * from "./notification-template.enum";
|
|
34
|
+
export * from "./offers.enum";
|
|
35
|
+
export * from "./order-by-column.enum";
|
|
36
|
+
export * from "./payment-provider.enum";
|
|
37
|
+
export * from "./purchase-type.enum";
|
|
38
|
+
export * from "./push-notification.enum";
|
|
39
|
+
export * from "./role.enum";
|
|
40
|
+
export * from "./search-index-name.enum";
|
|
41
|
+
export * from "./staking-data-type.enum";
|
|
42
|
+
export * from "./staking-issuing-type-string.enum";
|
|
43
|
+
export * from "./staking-pool-type-string.enum";
|
|
44
|
+
export * from "./staking-status-string.enum";
|
|
45
|
+
export * from "./tag-priority.enum";
|
|
46
|
+
export * from "./ticketing-data-type.enum";
|
|
47
|
+
export * from "./ticketing-visibility.enum";
|
|
48
|
+
export * from "./token-category.enum";
|
|
49
|
+
export * from "./token-data.enum";
|
|
50
|
+
export * from "./transaction-status.enum";
|
|
51
|
+
export * from "./twispay.enum";
|
|
52
|
+
export * from "./user-data-type.enum";
|
|
53
|
+
export * from "./user-favorite-type.enum";
|
|
54
|
+
export * from "./user-settings.enum";
|
|
55
|
+
export * from "./voucher-type.enum";
|
|
56
|
+
export * from "./wallet-client-type.enum";
|
|
57
|
+
export * from "./xoxno-auction-type.enum";
|
|
58
|
+
export * from "./xoxno-egld-liquid-sc.enum";
|
|
59
|
+
export * from "./xoxno-egld-ls-activity.enum";
|
|
60
|
+
export * from "./xoxno-ls-activity.enum";
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./auth-strategy.enum"), exports);
|
|
18
|
+
__exportStar(require("./azure-ws-event-name.enum"), exports);
|
|
19
|
+
__exportStar(require("./azure-ws-hub-name.enum"), exports);
|
|
20
|
+
__exportStar(require("./binance.enum"), exports);
|
|
21
|
+
__exportStar(require("./bober-battle-activity.enum"), exports);
|
|
22
|
+
__exportStar(require("./chat-data-type.enum"), exports);
|
|
23
|
+
__exportStar(require("./chat-message-content-type.enum"), exports);
|
|
24
|
+
__exportStar(require("./collection.enum"), exports);
|
|
25
|
+
__exportStar(require("./common.enum"), exports);
|
|
26
|
+
__exportStar(require("./cosmos-db-container.enum"), exports);
|
|
27
|
+
__exportStar(require("./event-category.enum"), exports);
|
|
28
|
+
__exportStar(require("./event-guest-status.enum"), exports);
|
|
29
|
+
__exportStar(require("./event-invitation-status.enum"), exports);
|
|
30
|
+
__exportStar(require("./event-question-answer-type.enum"), exports);
|
|
31
|
+
__exportStar(require("./event-referral-config.doc"), exports);
|
|
32
|
+
__exportStar(require("./event-scan-status.enum"), exports);
|
|
33
|
+
__exportStar(require("./event-source.enum"), exports);
|
|
34
|
+
__exportStar(require("./event-user-role.doc"), exports);
|
|
35
|
+
__exportStar(require("./event-user-roles.enum"), exports);
|
|
36
|
+
__exportStar(require("./external-payment-status.enum"), exports);
|
|
37
|
+
__exportStar(require("./fiat-tokens.enum"), exports);
|
|
38
|
+
__exportStar(require("./kusto-db.enum"), exports);
|
|
39
|
+
__exportStar(require("./lending-data-type.enum"), exports);
|
|
40
|
+
__exportStar(require("./lending-position-type.enum"), exports);
|
|
41
|
+
__exportStar(require("./lending.enum"), exports);
|
|
42
|
+
__exportStar(require("./linked-account-type.enum"), exports);
|
|
43
|
+
__exportStar(require("./marketplace-activity.enum"), exports);
|
|
44
|
+
__exportStar(require("./mobile-device.enum"), exports);
|
|
45
|
+
__exportStar(require("./nft-activity-type.enum"), exports);
|
|
46
|
+
__exportStar(require("./nft-extra-attributes.enum"), exports);
|
|
47
|
+
__exportStar(require("./notification-asset-type.enum"), exports);
|
|
48
|
+
__exportStar(require("./notification-data-type.enum"), exports);
|
|
49
|
+
__exportStar(require("./notification-template.enum"), exports);
|
|
50
|
+
__exportStar(require("./offers.enum"), exports);
|
|
51
|
+
__exportStar(require("./order-by-column.enum"), exports);
|
|
52
|
+
__exportStar(require("./payment-provider.enum"), exports);
|
|
53
|
+
__exportStar(require("./purchase-type.enum"), exports);
|
|
54
|
+
__exportStar(require("./push-notification.enum"), exports);
|
|
55
|
+
__exportStar(require("./role.enum"), exports);
|
|
56
|
+
__exportStar(require("./search-index-name.enum"), exports);
|
|
57
|
+
__exportStar(require("./staking-data-type.enum"), exports);
|
|
58
|
+
__exportStar(require("./staking-issuing-type-string.enum"), exports);
|
|
59
|
+
__exportStar(require("./staking-pool-type-string.enum"), exports);
|
|
60
|
+
__exportStar(require("./staking-status-string.enum"), exports);
|
|
61
|
+
__exportStar(require("./tag-priority.enum"), exports);
|
|
62
|
+
__exportStar(require("./ticketing-data-type.enum"), exports);
|
|
63
|
+
__exportStar(require("./ticketing-visibility.enum"), exports);
|
|
64
|
+
__exportStar(require("./token-category.enum"), exports);
|
|
65
|
+
__exportStar(require("./token-data.enum"), exports);
|
|
66
|
+
__exportStar(require("./transaction-status.enum"), exports);
|
|
67
|
+
__exportStar(require("./twispay.enum"), exports);
|
|
68
|
+
__exportStar(require("./user-data-type.enum"), exports);
|
|
69
|
+
__exportStar(require("./user-favorite-type.enum"), exports);
|
|
70
|
+
__exportStar(require("./user-settings.enum"), exports);
|
|
71
|
+
__exportStar(require("./voucher-type.enum"), exports);
|
|
72
|
+
__exportStar(require("./wallet-client-type.enum"), exports);
|
|
73
|
+
__exportStar(require("./xoxno-auction-type.enum"), exports);
|
|
74
|
+
__exportStar(require("./xoxno-egld-liquid-sc.enum"), exports);
|
|
75
|
+
__exportStar(require("./xoxno-egld-ls-activity.enum"), exports);
|
|
76
|
+
__exportStar(require("./xoxno-ls-activity.enum"), exports);
|
package/package.json
CHANGED
|
@@ -1,12 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xoxno/types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.114",
|
|
4
4
|
"description": "Shared types and utilities for XOXNO API.",
|
|
5
|
-
"
|
|
6
|
-
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"import": "./dist/index.js",
|
|
8
|
+
"require": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts"
|
|
10
|
+
},
|
|
11
|
+
"./enums": {
|
|
12
|
+
"import": "./dist/enums/index.js",
|
|
13
|
+
"require": "./dist/enums/index.js",
|
|
14
|
+
"types": "./dist/enums/index.d.ts"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"main": "./dist/index.js",
|
|
19
|
+
"module": "./dist/index.js",
|
|
7
20
|
"files": [
|
|
8
|
-
"dist"
|
|
21
|
+
"dist/**/*"
|
|
9
22
|
],
|
|
23
|
+
"sideEffects": false,
|
|
10
24
|
"scripts": {
|
|
11
25
|
"build": "node generate-barrel.mjs && eslint 'src/index.ts' --fix && tsc && node strip-types.js",
|
|
12
26
|
"build:watch": "tsc --watch",
|