@manifest-network/manifestjs 2.3.0 → 2.4.1
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/codegen/liftedinit/billing/v1/query.d.ts +107 -0
- package/dist/codegen/liftedinit/billing/v1/query.js +181 -1
- package/dist/codegen/liftedinit/billing/v1/query.js.map +1 -1
- package/dist/codegen/liftedinit/billing/v1/query.lcd.d.ts +2 -1
- package/dist/codegen/liftedinit/billing/v1/query.lcd.js +6 -0
- package/dist/codegen/liftedinit/billing/v1/query.lcd.js.map +1 -1
- package/dist/codegen/liftedinit/billing/v1/query.lcd.mjs +6 -0
- package/dist/codegen/liftedinit/billing/v1/query.mjs +180 -0
- package/dist/codegen/liftedinit/billing/v1/query.rpc.Query.d.ts +8 -1
- package/dist/codegen/liftedinit/billing/v1/query.rpc.Query.js +10 -0
- package/dist/codegen/liftedinit/billing/v1/query.rpc.Query.js.map +1 -1
- package/dist/codegen/liftedinit/billing/v1/query.rpc.Query.mjs +11 -1
- package/dist/codegen/liftedinit/billing/v1/tx.amino.d.ts +6 -1
- package/dist/codegen/liftedinit/billing/v1/tx.amino.js +5 -0
- package/dist/codegen/liftedinit/billing/v1/tx.amino.js.map +1 -1
- package/dist/codegen/liftedinit/billing/v1/tx.amino.mjs +6 -1
- package/dist/codegen/liftedinit/billing/v1/tx.d.ts +136 -0
- package/dist/codegen/liftedinit/billing/v1/tx.js +201 -1
- package/dist/codegen/liftedinit/billing/v1/tx.js.map +1 -1
- package/dist/codegen/liftedinit/billing/v1/tx.mjs +200 -0
- package/dist/codegen/liftedinit/billing/v1/tx.registry.d.ts +27 -1
- package/dist/codegen/liftedinit/billing/v1/tx.registry.js +31 -1
- package/dist/codegen/liftedinit/billing/v1/tx.registry.js.map +1 -1
- package/dist/codegen/liftedinit/billing/v1/tx.registry.mjs +32 -2
- package/dist/codegen/liftedinit/billing/v1/tx.rpc.msg.d.ts +10 -1
- package/dist/codegen/liftedinit/billing/v1/tx.rpc.msg.js +12 -0
- package/dist/codegen/liftedinit/billing/v1/tx.rpc.msg.js.map +1 -1
- package/dist/codegen/liftedinit/billing/v1/tx.rpc.msg.mjs +13 -1
- package/dist/codegen/liftedinit/billing/v1/types.d.ts +120 -0
- package/dist/codegen/liftedinit/billing/v1/types.js +144 -11
- package/dist/codegen/liftedinit/billing/v1/types.js.map +1 -1
- package/dist/codegen/liftedinit/billing/v1/types.mjs +143 -10
- package/dist/codegen/liftedinit/bundle.d.ts +120 -0
- package/dist/codegen/liftedinit/client.d.ts +5 -0
- package/dist/codegen/liftedinit/rpc.query.d.ts +1 -0
- package/package.json +1 -2
|
@@ -35,6 +35,7 @@ export declare namespace liftedinit {
|
|
|
35
35
|
creditAccounts(request?: _120.QueryCreditAccountsRequest): Promise<_120.QueryCreditAccountsResponse>;
|
|
36
36
|
leasesBySKU(request: _120.QueryLeasesBySKURequest): Promise<_120.QueryLeasesBySKUResponse>;
|
|
37
37
|
creditEstimate(request: _120.QueryCreditEstimateRequest): Promise<_120.QueryCreditEstimateResponse>;
|
|
38
|
+
leaseByCustomDomain(request: _120.QueryLeaseByCustomDomainRequest): Promise<_120.QueryLeaseByCustomDomainResponse>;
|
|
38
39
|
};
|
|
39
40
|
LCDQueryClient: typeof _257.LCDQueryClient;
|
|
40
41
|
registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
|
|
@@ -77,6 +78,10 @@ export declare namespace liftedinit {
|
|
|
77
78
|
typeUrl: string;
|
|
78
79
|
value: Uint8Array;
|
|
79
80
|
};
|
|
81
|
+
setItemCustomDomain(value: _121.MsgSetItemCustomDomain): {
|
|
82
|
+
typeUrl: string;
|
|
83
|
+
value: Uint8Array;
|
|
84
|
+
};
|
|
80
85
|
};
|
|
81
86
|
withTypeUrl: {
|
|
82
87
|
fundCredit(value: _121.MsgFundCredit): {
|
|
@@ -115,6 +120,10 @@ export declare namespace liftedinit {
|
|
|
115
120
|
typeUrl: string;
|
|
116
121
|
value: _121.MsgUpdateParams;
|
|
117
122
|
};
|
|
123
|
+
setItemCustomDomain(value: _121.MsgSetItemCustomDomain): {
|
|
124
|
+
typeUrl: string;
|
|
125
|
+
value: _121.MsgSetItemCustomDomain;
|
|
126
|
+
};
|
|
118
127
|
};
|
|
119
128
|
toJSON: {
|
|
120
129
|
fundCredit(value: _121.MsgFundCredit): {
|
|
@@ -203,9 +212,19 @@ export declare namespace liftedinit {
|
|
|
203
212
|
minLeaseDuration: string;
|
|
204
213
|
maxPendingLeasesPerTenant: string;
|
|
205
214
|
pendingTimeout: string;
|
|
215
|
+
reservedDomainSuffixes: string[];
|
|
206
216
|
};
|
|
207
217
|
};
|
|
208
218
|
};
|
|
219
|
+
setItemCustomDomain(value: _121.MsgSetItemCustomDomain): {
|
|
220
|
+
typeUrl: string;
|
|
221
|
+
value: {
|
|
222
|
+
sender: string;
|
|
223
|
+
leaseUuid: string;
|
|
224
|
+
serviceName: string;
|
|
225
|
+
customDomain: string;
|
|
226
|
+
};
|
|
227
|
+
};
|
|
209
228
|
};
|
|
210
229
|
fromJSON: {
|
|
211
230
|
fundCredit(value: any): {
|
|
@@ -244,6 +263,10 @@ export declare namespace liftedinit {
|
|
|
244
263
|
typeUrl: string;
|
|
245
264
|
value: _121.MsgUpdateParams;
|
|
246
265
|
};
|
|
266
|
+
setItemCustomDomain(value: any): {
|
|
267
|
+
typeUrl: string;
|
|
268
|
+
value: _121.MsgSetItemCustomDomain;
|
|
269
|
+
};
|
|
247
270
|
};
|
|
248
271
|
fromPartial: {
|
|
249
272
|
fundCredit(value: _121.MsgFundCredit): {
|
|
@@ -282,6 +305,10 @@ export declare namespace liftedinit {
|
|
|
282
305
|
typeUrl: string;
|
|
283
306
|
value: _121.MsgUpdateParams;
|
|
284
307
|
};
|
|
308
|
+
setItemCustomDomain(value: _121.MsgSetItemCustomDomain): {
|
|
309
|
+
typeUrl: string;
|
|
310
|
+
value: _121.MsgSetItemCustomDomain;
|
|
311
|
+
};
|
|
285
312
|
};
|
|
286
313
|
};
|
|
287
314
|
AminoConverter: {
|
|
@@ -330,6 +357,11 @@ export declare namespace liftedinit {
|
|
|
330
357
|
toAmino: (message: _121.MsgUpdateParams) => _121.MsgUpdateParamsAmino;
|
|
331
358
|
fromAmino: (object: _121.MsgUpdateParamsAmino) => _121.MsgUpdateParams;
|
|
332
359
|
};
|
|
360
|
+
"/liftedinit.billing.v1.MsgSetItemCustomDomain": {
|
|
361
|
+
aminoType: string;
|
|
362
|
+
toAmino: (message: _121.MsgSetItemCustomDomain) => _121.MsgSetItemCustomDomainAmino;
|
|
363
|
+
fromAmino: (object: _121.MsgSetItemCustomDomainAmino) => _121.MsgSetItemCustomDomain;
|
|
364
|
+
};
|
|
333
365
|
};
|
|
334
366
|
leaseStateFromJSON(object: any): _122.LeaseState;
|
|
335
367
|
leaseStateToJSON(object: _122.LeaseState): string;
|
|
@@ -393,6 +425,23 @@ export declare namespace liftedinit {
|
|
|
393
425
|
toProto(message: _122.Lease): Uint8Array;
|
|
394
426
|
toProtoMsg(message: _122.Lease): _122.LeaseProtoMsg;
|
|
395
427
|
};
|
|
428
|
+
CustomDomainTarget: {
|
|
429
|
+
typeUrl: string;
|
|
430
|
+
is(o: any): o is _122.CustomDomainTarget;
|
|
431
|
+
isSDK(o: any): o is _122.CustomDomainTargetSDKType;
|
|
432
|
+
isAmino(o: any): o is _122.CustomDomainTargetAmino;
|
|
433
|
+
encode(message: _122.CustomDomainTarget, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
434
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _122.CustomDomainTarget;
|
|
435
|
+
fromJSON(object: any): _122.CustomDomainTarget;
|
|
436
|
+
toJSON(message: _122.CustomDomainTarget): import("..").JsonSafe<_122.CustomDomainTarget>;
|
|
437
|
+
fromPartial<I extends import("../helpers").Exact<import("../helpers").DeepPartial<_122.CustomDomainTarget>, I>>(object: I): _122.CustomDomainTarget;
|
|
438
|
+
fromAmino(object: _122.CustomDomainTargetAmino): _122.CustomDomainTarget;
|
|
439
|
+
toAmino(message: _122.CustomDomainTarget): _122.CustomDomainTargetAmino;
|
|
440
|
+
fromAminoMsg(object: _122.CustomDomainTargetAminoMsg): _122.CustomDomainTarget;
|
|
441
|
+
fromProtoMsg(message: _122.CustomDomainTargetProtoMsg): _122.CustomDomainTarget;
|
|
442
|
+
toProto(message: _122.CustomDomainTarget): Uint8Array;
|
|
443
|
+
toProtoMsg(message: _122.CustomDomainTarget): _122.CustomDomainTargetProtoMsg;
|
|
444
|
+
};
|
|
396
445
|
CreditAccount: {
|
|
397
446
|
typeUrl: string;
|
|
398
447
|
aminoType: string;
|
|
@@ -755,6 +804,42 @@ export declare namespace liftedinit {
|
|
|
755
804
|
toProto(message: _121.MsgCancelLeaseResponse): Uint8Array;
|
|
756
805
|
toProtoMsg(message: _121.MsgCancelLeaseResponse): _121.MsgCancelLeaseResponseProtoMsg;
|
|
757
806
|
};
|
|
807
|
+
MsgSetItemCustomDomain: {
|
|
808
|
+
typeUrl: string;
|
|
809
|
+
aminoType: string;
|
|
810
|
+
is(o: any): o is _121.MsgSetItemCustomDomain;
|
|
811
|
+
isSDK(o: any): o is _121.MsgSetItemCustomDomainSDKType;
|
|
812
|
+
isAmino(o: any): o is _121.MsgSetItemCustomDomainAmino;
|
|
813
|
+
encode(message: _121.MsgSetItemCustomDomain, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
814
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _121.MsgSetItemCustomDomain;
|
|
815
|
+
fromJSON(object: any): _121.MsgSetItemCustomDomain;
|
|
816
|
+
toJSON(message: _121.MsgSetItemCustomDomain): import("..").JsonSafe<_121.MsgSetItemCustomDomain>;
|
|
817
|
+
fromPartial<I extends import("../helpers").Exact<import("../helpers").DeepPartial<_121.MsgSetItemCustomDomain>, I>>(object: I): _121.MsgSetItemCustomDomain;
|
|
818
|
+
fromAmino(object: _121.MsgSetItemCustomDomainAmino): _121.MsgSetItemCustomDomain;
|
|
819
|
+
toAmino(message: _121.MsgSetItemCustomDomain): _121.MsgSetItemCustomDomainAmino;
|
|
820
|
+
fromAminoMsg(object: _121.MsgSetItemCustomDomainAminoMsg): _121.MsgSetItemCustomDomain;
|
|
821
|
+
toAminoMsg(message: _121.MsgSetItemCustomDomain): _121.MsgSetItemCustomDomainAminoMsg;
|
|
822
|
+
fromProtoMsg(message: _121.MsgSetItemCustomDomainProtoMsg): _121.MsgSetItemCustomDomain;
|
|
823
|
+
toProto(message: _121.MsgSetItemCustomDomain): Uint8Array;
|
|
824
|
+
toProtoMsg(message: _121.MsgSetItemCustomDomain): _121.MsgSetItemCustomDomainProtoMsg;
|
|
825
|
+
};
|
|
826
|
+
MsgSetItemCustomDomainResponse: {
|
|
827
|
+
typeUrl: string;
|
|
828
|
+
is(o: any): o is _121.MsgSetItemCustomDomainResponse;
|
|
829
|
+
isSDK(o: any): o is _121.MsgSetItemCustomDomainResponseSDKType;
|
|
830
|
+
isAmino(o: any): o is _121.MsgSetItemCustomDomainResponseAmino;
|
|
831
|
+
encode(_: _121.MsgSetItemCustomDomainResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
832
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _121.MsgSetItemCustomDomainResponse;
|
|
833
|
+
fromJSON(_: any): _121.MsgSetItemCustomDomainResponse;
|
|
834
|
+
toJSON(_: _121.MsgSetItemCustomDomainResponse): import("..").JsonSafe<_121.MsgSetItemCustomDomainResponse>;
|
|
835
|
+
fromPartial<I extends import("../helpers").Exact<import("../helpers").DeepPartial<_121.MsgSetItemCustomDomainResponse>, I>>(_: I): _121.MsgSetItemCustomDomainResponse;
|
|
836
|
+
fromAmino(_: _121.MsgSetItemCustomDomainResponseAmino): _121.MsgSetItemCustomDomainResponse;
|
|
837
|
+
toAmino(_: _121.MsgSetItemCustomDomainResponse): _121.MsgSetItemCustomDomainResponseAmino;
|
|
838
|
+
fromAminoMsg(object: _121.MsgSetItemCustomDomainResponseAminoMsg): _121.MsgSetItemCustomDomainResponse;
|
|
839
|
+
fromProtoMsg(message: _121.MsgSetItemCustomDomainResponseProtoMsg): _121.MsgSetItemCustomDomainResponse;
|
|
840
|
+
toProto(message: _121.MsgSetItemCustomDomainResponse): Uint8Array;
|
|
841
|
+
toProtoMsg(message: _121.MsgSetItemCustomDomainResponse): _121.MsgSetItemCustomDomainResponseProtoMsg;
|
|
842
|
+
};
|
|
758
843
|
QueryParamsRequest: {
|
|
759
844
|
typeUrl: string;
|
|
760
845
|
is(o: any): o is _120.QueryParamsRequest;
|
|
@@ -1163,6 +1248,40 @@ export declare namespace liftedinit {
|
|
|
1163
1248
|
toProto(message: _120.QueryCreditEstimateResponse): Uint8Array;
|
|
1164
1249
|
toProtoMsg(message: _120.QueryCreditEstimateResponse): _120.QueryCreditEstimateResponseProtoMsg;
|
|
1165
1250
|
};
|
|
1251
|
+
QueryLeaseByCustomDomainRequest: {
|
|
1252
|
+
typeUrl: string;
|
|
1253
|
+
is(o: any): o is _120.QueryLeaseByCustomDomainRequest;
|
|
1254
|
+
isSDK(o: any): o is _120.QueryLeaseByCustomDomainRequestSDKType;
|
|
1255
|
+
isAmino(o: any): o is _120.QueryLeaseByCustomDomainRequestAmino;
|
|
1256
|
+
encode(message: _120.QueryLeaseByCustomDomainRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
1257
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _120.QueryLeaseByCustomDomainRequest;
|
|
1258
|
+
fromJSON(object: any): _120.QueryLeaseByCustomDomainRequest;
|
|
1259
|
+
toJSON(message: _120.QueryLeaseByCustomDomainRequest): import("..").JsonSafe<_120.QueryLeaseByCustomDomainRequest>;
|
|
1260
|
+
fromPartial<I extends import("../helpers").Exact<import("../helpers").DeepPartial<_120.QueryLeaseByCustomDomainRequest>, I>>(object: I): _120.QueryLeaseByCustomDomainRequest;
|
|
1261
|
+
fromAmino(object: _120.QueryLeaseByCustomDomainRequestAmino): _120.QueryLeaseByCustomDomainRequest;
|
|
1262
|
+
toAmino(message: _120.QueryLeaseByCustomDomainRequest): _120.QueryLeaseByCustomDomainRequestAmino;
|
|
1263
|
+
fromAminoMsg(object: _120.QueryLeaseByCustomDomainRequestAminoMsg): _120.QueryLeaseByCustomDomainRequest;
|
|
1264
|
+
fromProtoMsg(message: _120.QueryLeaseByCustomDomainRequestProtoMsg): _120.QueryLeaseByCustomDomainRequest;
|
|
1265
|
+
toProto(message: _120.QueryLeaseByCustomDomainRequest): Uint8Array;
|
|
1266
|
+
toProtoMsg(message: _120.QueryLeaseByCustomDomainRequest): _120.QueryLeaseByCustomDomainRequestProtoMsg;
|
|
1267
|
+
};
|
|
1268
|
+
QueryLeaseByCustomDomainResponse: {
|
|
1269
|
+
typeUrl: string;
|
|
1270
|
+
is(o: any): o is _120.QueryLeaseByCustomDomainResponse;
|
|
1271
|
+
isSDK(o: any): o is _120.QueryLeaseByCustomDomainResponseSDKType;
|
|
1272
|
+
isAmino(o: any): o is _120.QueryLeaseByCustomDomainResponseAmino;
|
|
1273
|
+
encode(message: _120.QueryLeaseByCustomDomainResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
1274
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _120.QueryLeaseByCustomDomainResponse;
|
|
1275
|
+
fromJSON(object: any): _120.QueryLeaseByCustomDomainResponse;
|
|
1276
|
+
toJSON(message: _120.QueryLeaseByCustomDomainResponse): import("..").JsonSafe<_120.QueryLeaseByCustomDomainResponse>;
|
|
1277
|
+
fromPartial<I extends import("../helpers").Exact<import("../helpers").DeepPartial<_120.QueryLeaseByCustomDomainResponse>, I>>(object: I): _120.QueryLeaseByCustomDomainResponse;
|
|
1278
|
+
fromAmino(object: _120.QueryLeaseByCustomDomainResponseAmino): _120.QueryLeaseByCustomDomainResponse;
|
|
1279
|
+
toAmino(message: _120.QueryLeaseByCustomDomainResponse): _120.QueryLeaseByCustomDomainResponseAmino;
|
|
1280
|
+
fromAminoMsg(object: _120.QueryLeaseByCustomDomainResponseAminoMsg): _120.QueryLeaseByCustomDomainResponse;
|
|
1281
|
+
fromProtoMsg(message: _120.QueryLeaseByCustomDomainResponseProtoMsg): _120.QueryLeaseByCustomDomainResponse;
|
|
1282
|
+
toProto(message: _120.QueryLeaseByCustomDomainResponse): Uint8Array;
|
|
1283
|
+
toProtoMsg(message: _120.QueryLeaseByCustomDomainResponse): _120.QueryLeaseByCustomDomainResponseProtoMsg;
|
|
1284
|
+
};
|
|
1166
1285
|
GenesisState: {
|
|
1167
1286
|
typeUrl: string;
|
|
1168
1287
|
aminoType: string;
|
|
@@ -2522,6 +2641,7 @@ export declare namespace liftedinit {
|
|
|
2522
2641
|
creditAccounts(request?: _120.QueryCreditAccountsRequest): Promise<_120.QueryCreditAccountsResponse>;
|
|
2523
2642
|
leasesBySKU(request: _120.QueryLeasesBySKURequest): Promise<_120.QueryLeasesBySKUResponse>;
|
|
2524
2643
|
creditEstimate(request: _120.QueryCreditEstimateRequest): Promise<_120.QueryCreditEstimateResponse>;
|
|
2644
|
+
leaseByCustomDomain(request: _120.QueryLeaseByCustomDomainRequest): Promise<_120.QueryLeaseByCustomDomainResponse>;
|
|
2525
2645
|
};
|
|
2526
2646
|
};
|
|
2527
2647
|
manifest: {
|
|
@@ -93,6 +93,11 @@ export declare const liftedinitAminoConverters: {
|
|
|
93
93
|
toAmino: (message: import("./billing/v1/tx").MsgUpdateParams) => import("./billing/v1/tx").MsgUpdateParamsAmino;
|
|
94
94
|
fromAmino: (object: import("./billing/v1/tx").MsgUpdateParamsAmino) => import("./billing/v1/tx").MsgUpdateParams;
|
|
95
95
|
};
|
|
96
|
+
"/liftedinit.billing.v1.MsgSetItemCustomDomain": {
|
|
97
|
+
aminoType: string;
|
|
98
|
+
toAmino: (message: import("./billing/v1/tx").MsgSetItemCustomDomain) => import("./billing/v1/tx").MsgSetItemCustomDomainAmino;
|
|
99
|
+
fromAmino: (object: import("./billing/v1/tx").MsgSetItemCustomDomainAmino) => import("./billing/v1/tx").MsgSetItemCustomDomain;
|
|
100
|
+
};
|
|
96
101
|
};
|
|
97
102
|
export declare const liftedinitProtoRegistry: ReadonlyArray<[string, GeneratedType]>;
|
|
98
103
|
export declare const getSigningLiftedinitClientOptions: ({ defaultTypes }?: {
|
|
@@ -199,6 +199,7 @@ export declare const createRPCQueryClient: ({ rpcEndpoint }: {
|
|
|
199
199
|
creditAccounts(request?: import("./billing/v1/query").QueryCreditAccountsRequest): Promise<import("./billing/v1/query").QueryCreditAccountsResponse>;
|
|
200
200
|
leasesBySKU(request: import("./billing/v1/query").QueryLeasesBySKURequest): Promise<import("./billing/v1/query").QueryLeasesBySKUResponse>;
|
|
201
201
|
creditEstimate(request: import("./billing/v1/query").QueryCreditEstimateRequest): Promise<import("./billing/v1/query").QueryCreditEstimateResponse>;
|
|
202
|
+
leaseByCustomDomain(request: import("./billing/v1/query").QueryLeaseByCustomDomainRequest): Promise<import("./billing/v1/query").QueryLeaseByCustomDomainResponse>;
|
|
202
203
|
};
|
|
203
204
|
};
|
|
204
205
|
manifest: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manifest-network/manifestjs",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"description": "Javascript library for interacting with Manifest",
|
|
5
5
|
"author": "Manifest Network <hello@manifest.network>",
|
|
6
6
|
"homepage": "https://github.com/manifest-network/manifestjs#readme",
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"build": "npm run clean && npm run build:cjs && npm run build:mjs && npm run build:rename",
|
|
26
26
|
"codegen": "node scripts/codegen.js",
|
|
27
27
|
"prepare": "npm run build",
|
|
28
|
-
"lint": "eslint 'src/**/*.{js,ts,jsx,tsx}' --fix",
|
|
29
28
|
"test": "jest",
|
|
30
29
|
"test:watch": "jest --watch",
|
|
31
30
|
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
|