@xoxno/sdk-js 1.0.50 → 1.0.52
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/README.md +8 -5
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/interactor.cjs.js +1 -1
- package/dist/interactor.esm.js +1 -1
- package/dist/sdk/swagger.d.ts +12 -3
- package/package.json +2 -2
package/dist/sdk/swagger.d.ts
CHANGED
|
@@ -18,6 +18,11 @@ export declare const endpoints: {
|
|
|
18
18
|
readonly body: string[];
|
|
19
19
|
};
|
|
20
20
|
};
|
|
21
|
+
readonly '/user/me/profile': {
|
|
22
|
+
readonly input: {};
|
|
23
|
+
readonly output: UserProfileDoc;
|
|
24
|
+
readonly securityMode: "requiredAny";
|
|
25
|
+
};
|
|
21
26
|
readonly '/user/:address/profile': {
|
|
22
27
|
readonly input: {};
|
|
23
28
|
readonly output: UserProfileDoc;
|
|
@@ -1494,16 +1499,15 @@ export declare const endpoints: {
|
|
|
1494
1499
|
};
|
|
1495
1500
|
readonly securityMode: "requiredAny";
|
|
1496
1501
|
};
|
|
1497
|
-
readonly '/event/:eventId/role/:
|
|
1502
|
+
readonly '/event/:eventId/role/:roleId': {
|
|
1498
1503
|
readonly input: {};
|
|
1499
|
-
readonly output:
|
|
1504
|
+
readonly output: {};
|
|
1500
1505
|
readonly DELETE: {
|
|
1501
1506
|
readonly input: {};
|
|
1502
1507
|
readonly output: SuccessDto;
|
|
1503
1508
|
readonly body: {};
|
|
1504
1509
|
readonly securityMode: "requiredAny";
|
|
1505
1510
|
};
|
|
1506
|
-
readonly securityMode: "requiredAny";
|
|
1507
1511
|
};
|
|
1508
1512
|
readonly '/event/:eventId/guest': {
|
|
1509
1513
|
readonly input: {};
|
|
@@ -1525,6 +1529,11 @@ export declare const endpoints: {
|
|
|
1525
1529
|
readonly securityMode: "requiredAny";
|
|
1526
1530
|
};
|
|
1527
1531
|
};
|
|
1532
|
+
readonly '/event/:eventId/role/:address': {
|
|
1533
|
+
readonly input: {};
|
|
1534
|
+
readonly output: EventUserRoleDoc;
|
|
1535
|
+
readonly securityMode: "requiredAny";
|
|
1536
|
+
};
|
|
1528
1537
|
readonly '/event/:eventId/roleId/:roleId': {
|
|
1529
1538
|
readonly input: {};
|
|
1530
1539
|
readonly output: EventUserRoleDoc;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xoxno/sdk-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.52",
|
|
4
4
|
"description": "The SDK to interact with the XOXNO Protocol!",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -104,6 +104,6 @@
|
|
|
104
104
|
"dependencies": {
|
|
105
105
|
"@multiversx/sdk-core": "^13.17.2",
|
|
106
106
|
"@multiversx/sdk-network-providers": "^2.9.3",
|
|
107
|
-
"@xoxno/types": "^1.0.
|
|
107
|
+
"@xoxno/types": "^1.0.207"
|
|
108
108
|
}
|
|
109
109
|
}
|