@meshtrade/api-web 1.37.0 → 1.38.0
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
2
|
import type { Message } from "@bufbuild/protobuf";
|
|
3
3
|
/**
|
|
4
4
|
* Describes the file meshtrade/testing/ledger/token_tap/v1/option.proto.
|
|
@@ -17,12 +17,6 @@ export type MintTokenOptions = Message<"meshtrade.testing.ledger.token_tap.v1.Mi
|
|
|
17
17
|
*/
|
|
18
18
|
value: StellarMintOptions;
|
|
19
19
|
case: "stellarMintOptions";
|
|
20
|
-
} | {
|
|
21
|
-
/**
|
|
22
|
-
* @generated from field: meshtrade.testing.ledger.token_tap.v1.SolanaMintOptions solana_mint_options = 2;
|
|
23
|
-
*/
|
|
24
|
-
value: SolanaMintOptions;
|
|
25
|
-
case: "solanaMintOptions";
|
|
26
20
|
} | {
|
|
27
21
|
case: undefined;
|
|
28
22
|
value?: undefined;
|
|
@@ -84,75 +78,3 @@ export type StellarMintTokenWithMemo = Message<"meshtrade.testing.ledger.token_t
|
|
|
84
78
|
* Use `create(StellarMintTokenWithMemoSchema)` to create a new message.
|
|
85
79
|
*/
|
|
86
80
|
export declare const StellarMintTokenWithMemoSchema: GenMessage<StellarMintTokenWithMemo>;
|
|
87
|
-
/**
|
|
88
|
-
* @generated from message meshtrade.testing.ledger.token_tap.v1.SolanaMintOptions
|
|
89
|
-
*/
|
|
90
|
-
export type SolanaMintOptions = Message<"meshtrade.testing.ledger.token_tap.v1.SolanaMintOptions"> & {
|
|
91
|
-
/**
|
|
92
|
-
* @generated from field: repeated meshtrade.testing.ledger.token_tap.v1.SolanaMintOption options = 1;
|
|
93
|
-
*/
|
|
94
|
-
options: SolanaMintOption[];
|
|
95
|
-
};
|
|
96
|
-
/**
|
|
97
|
-
* Describes the message meshtrade.testing.ledger.token_tap.v1.SolanaMintOptions.
|
|
98
|
-
* Use `create(SolanaMintOptionsSchema)` to create a new message.
|
|
99
|
-
*/
|
|
100
|
-
export declare const SolanaMintOptionsSchema: GenMessage<SolanaMintOptions>;
|
|
101
|
-
/**
|
|
102
|
-
* @generated from message meshtrade.testing.ledger.token_tap.v1.SolanaMintOption
|
|
103
|
-
*/
|
|
104
|
-
export type SolanaMintOption = Message<"meshtrade.testing.ledger.token_tap.v1.SolanaMintOption"> & {
|
|
105
|
-
/**
|
|
106
|
-
* @generated from oneof meshtrade.testing.ledger.token_tap.v1.SolanaMintOption.solana_mint_option
|
|
107
|
-
*/
|
|
108
|
-
solanaMintOption: {
|
|
109
|
-
/**
|
|
110
|
-
* @generated from field: meshtrade.testing.ledger.token_tap.v1.SolanaMintTokenOption solana_mint_token_option = 1;
|
|
111
|
-
*/
|
|
112
|
-
value: SolanaMintTokenOption;
|
|
113
|
-
case: "solanaMintTokenOption";
|
|
114
|
-
} | {
|
|
115
|
-
case: undefined;
|
|
116
|
-
value?: undefined;
|
|
117
|
-
};
|
|
118
|
-
};
|
|
119
|
-
/**
|
|
120
|
-
* Describes the message meshtrade.testing.ledger.token_tap.v1.SolanaMintOption.
|
|
121
|
-
* Use `create(SolanaMintOptionSchema)` to create a new message.
|
|
122
|
-
*/
|
|
123
|
-
export declare const SolanaMintOptionSchema: GenMessage<SolanaMintOption>;
|
|
124
|
-
/**
|
|
125
|
-
* @generated from message meshtrade.testing.ledger.token_tap.v1.SolanaMintTokenOption
|
|
126
|
-
*/
|
|
127
|
-
export type SolanaMintTokenOption = Message<"meshtrade.testing.ledger.token_tap.v1.SolanaMintTokenOption"> & {
|
|
128
|
-
/**
|
|
129
|
-
* @generated from field: meshtrade.testing.ledger.token_tap.v1.SolanaMintToken token = 1;
|
|
130
|
-
*/
|
|
131
|
-
token: SolanaMintToken;
|
|
132
|
-
};
|
|
133
|
-
/**
|
|
134
|
-
* Describes the message meshtrade.testing.ledger.token_tap.v1.SolanaMintTokenOption.
|
|
135
|
-
* Use `create(SolanaMintTokenOptionSchema)` to create a new message.
|
|
136
|
-
*/
|
|
137
|
-
export declare const SolanaMintTokenOptionSchema: GenMessage<SolanaMintTokenOption>;
|
|
138
|
-
/**
|
|
139
|
-
* @generated from enum meshtrade.testing.ledger.token_tap.v1.SolanaMintToken
|
|
140
|
-
*/
|
|
141
|
-
export declare enum SolanaMintToken {
|
|
142
|
-
/**
|
|
143
|
-
* @generated from enum value: SOLANA_MINT_TOKEN_UNSPECIFIED = 0;
|
|
144
|
-
*/
|
|
145
|
-
SOLANA_MINT_TOKEN_UNSPECIFIED = 0,
|
|
146
|
-
/**
|
|
147
|
-
* @generated from enum value: SOLANA_MINT_TOKEN_LEGACY = 1;
|
|
148
|
-
*/
|
|
149
|
-
SOLANA_MINT_TOKEN_LEGACY = 1,
|
|
150
|
-
/**
|
|
151
|
-
* @generated from enum value: SOLANA_MINT_TOKEN_2022 = 2;
|
|
152
|
-
*/
|
|
153
|
-
SOLANA_MINT_TOKEN_2022 = 2
|
|
154
|
-
}
|
|
155
|
-
/**
|
|
156
|
-
* Describes the enum meshtrade.testing.ledger.token_tap.v1.SolanaMintToken.
|
|
157
|
-
*/
|
|
158
|
-
export declare const SolanaMintTokenSchema: GenEnum<SolanaMintToken>;
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
// @generated from file meshtrade/testing/ledger/token_tap/v1/option.proto (package meshtrade.testing.ledger.token_tap.v1, syntax proto3)
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.StellarMintTokenWithMemoSchema = exports.StellarMintOptionSchema = exports.StellarMintOptionsSchema = exports.MintTokenOptionsSchema = exports.file_meshtrade_testing_ledger_token_tap_v1_option = void 0;
|
|
7
7
|
const codegenv2_1 = require("@bufbuild/protobuf/codegenv2");
|
|
8
8
|
/**
|
|
9
9
|
* Describes the file meshtrade/testing/ledger/token_tap/v1/option.proto.
|
|
10
10
|
*/
|
|
11
|
-
exports.file_meshtrade_testing_ledger_token_tap_v1_option = (0, codegenv2_1.fileDesc)("
|
|
11
|
+
exports.file_meshtrade_testing_ledger_token_tap_v1_option = (0, codegenv2_1.fileDesc)("CjJtZXNodHJhZGUvdGVzdGluZy9sZWRnZXIvdG9rZW5fdGFwL3YxL29wdGlvbi5wcm90bxIlbWVzaHRyYWRlLnRlc3RpbmcubGVkZ2VyLnRva2VuX3RhcC52MSKDAQoQTWludFRva2VuT3B0aW9ucxJZChRzdGVsbGFyX21pbnRfb3B0aW9ucxgBIAEoCzI5Lm1lc2h0cmFkZS50ZXN0aW5nLmxlZGdlci50b2tlbl90YXAudjEuU3RlbGxhck1pbnRPcHRpb25zSABCFAoSbWludF90b2tlbl9vcHRpb25zIl8KElN0ZWxsYXJNaW50T3B0aW9ucxJJCgdvcHRpb25zGAEgAygLMjgubWVzaHRyYWRlLnRlc3RpbmcubGVkZ2VyLnRva2VuX3RhcC52MS5TdGVsbGFyTWludE9wdGlvbiKTAQoRU3RlbGxhck1pbnRPcHRpb24SZwocc3RlbGxhcl9taW50X3Rva2VuX3dpdGhfbWVtbxgBIAEoCzI/Lm1lc2h0cmFkZS50ZXN0aW5nLmxlZGdlci50b2tlbl90YXAudjEuU3RlbGxhck1pbnRUb2tlbldpdGhNZW1vSABCFQoTc3RlbGxhcl9taW50X29wdGlvbiIoChhTdGVsbGFyTWludFRva2VuV2l0aE1lbW8SDAoEbWVtbxgBIAEoCUJ0Cixjby5tZXNodHJhZGUuYXBpLnRlc3RpbmcubGVkZ2VyLnRva2VuX3RhcC52MVpEZ2l0aHViLmNvbS9tZXNodHJhZGUvYXBpL2dvL3Rlc3RpbmcvbGVkZ2VyL3Rva2VuX3RhcC92MTt0b2tlbl90YXBfdjFiBnByb3RvMw");
|
|
12
12
|
/**
|
|
13
13
|
* Describes the message meshtrade.testing.ledger.token_tap.v1.MintTokenOptions.
|
|
14
14
|
* Use `create(MintTokenOptionsSchema)` to create a new message.
|
|
@@ -29,40 +29,3 @@ exports.StellarMintOptionSchema = (0, codegenv2_1.messageDesc)(exports.file_mesh
|
|
|
29
29
|
* Use `create(StellarMintTokenWithMemoSchema)` to create a new message.
|
|
30
30
|
*/
|
|
31
31
|
exports.StellarMintTokenWithMemoSchema = (0, codegenv2_1.messageDesc)(exports.file_meshtrade_testing_ledger_token_tap_v1_option, 3);
|
|
32
|
-
/**
|
|
33
|
-
* Describes the message meshtrade.testing.ledger.token_tap.v1.SolanaMintOptions.
|
|
34
|
-
* Use `create(SolanaMintOptionsSchema)` to create a new message.
|
|
35
|
-
*/
|
|
36
|
-
exports.SolanaMintOptionsSchema = (0, codegenv2_1.messageDesc)(exports.file_meshtrade_testing_ledger_token_tap_v1_option, 4);
|
|
37
|
-
/**
|
|
38
|
-
* Describes the message meshtrade.testing.ledger.token_tap.v1.SolanaMintOption.
|
|
39
|
-
* Use `create(SolanaMintOptionSchema)` to create a new message.
|
|
40
|
-
*/
|
|
41
|
-
exports.SolanaMintOptionSchema = (0, codegenv2_1.messageDesc)(exports.file_meshtrade_testing_ledger_token_tap_v1_option, 5);
|
|
42
|
-
/**
|
|
43
|
-
* Describes the message meshtrade.testing.ledger.token_tap.v1.SolanaMintTokenOption.
|
|
44
|
-
* Use `create(SolanaMintTokenOptionSchema)` to create a new message.
|
|
45
|
-
*/
|
|
46
|
-
exports.SolanaMintTokenOptionSchema = (0, codegenv2_1.messageDesc)(exports.file_meshtrade_testing_ledger_token_tap_v1_option, 6);
|
|
47
|
-
/**
|
|
48
|
-
* @generated from enum meshtrade.testing.ledger.token_tap.v1.SolanaMintToken
|
|
49
|
-
*/
|
|
50
|
-
var SolanaMintToken;
|
|
51
|
-
(function (SolanaMintToken) {
|
|
52
|
-
/**
|
|
53
|
-
* @generated from enum value: SOLANA_MINT_TOKEN_UNSPECIFIED = 0;
|
|
54
|
-
*/
|
|
55
|
-
SolanaMintToken[SolanaMintToken["SOLANA_MINT_TOKEN_UNSPECIFIED"] = 0] = "SOLANA_MINT_TOKEN_UNSPECIFIED";
|
|
56
|
-
/**
|
|
57
|
-
* @generated from enum value: SOLANA_MINT_TOKEN_LEGACY = 1;
|
|
58
|
-
*/
|
|
59
|
-
SolanaMintToken[SolanaMintToken["SOLANA_MINT_TOKEN_LEGACY"] = 1] = "SOLANA_MINT_TOKEN_LEGACY";
|
|
60
|
-
/**
|
|
61
|
-
* @generated from enum value: SOLANA_MINT_TOKEN_2022 = 2;
|
|
62
|
-
*/
|
|
63
|
-
SolanaMintToken[SolanaMintToken["SOLANA_MINT_TOKEN_2022"] = 2] = "SOLANA_MINT_TOKEN_2022";
|
|
64
|
-
})(SolanaMintToken || (exports.SolanaMintToken = SolanaMintToken = {}));
|
|
65
|
-
/**
|
|
66
|
-
* Describes the enum meshtrade.testing.ledger.token_tap.v1.SolanaMintToken.
|
|
67
|
-
*/
|
|
68
|
-
exports.SolanaMintTokenSchema = (0, codegenv2_1.enumDesc)(exports.file_meshtrade_testing_ledger_token_tap_v1_option, 0);
|