@kl1/contracts 1.3.32 → 1.3.33
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/index.mjs
CHANGED
|
@@ -2524,7 +2524,7 @@ var channelContract = initContract7().router(
|
|
|
2524
2524
|
},
|
|
2525
2525
|
disconnect: {
|
|
2526
2526
|
method: "POST",
|
|
2527
|
-
path: "
|
|
2527
|
+
path: "channel/disconnect/:channelId",
|
|
2528
2528
|
pathParams: z41.object({
|
|
2529
2529
|
channelId: z41.string().uuid()
|
|
2530
2530
|
}),
|
|
@@ -2539,7 +2539,7 @@ var channelContract = initContract7().router(
|
|
|
2539
2539
|
},
|
|
2540
2540
|
delete: {
|
|
2541
2541
|
method: "DELETE",
|
|
2542
|
-
path: "
|
|
2542
|
+
path: "channel/delete/:channelId",
|
|
2543
2543
|
pathParams: z41.object({
|
|
2544
2544
|
channelId: z41.string().uuid()
|
|
2545
2545
|
}),
|
|
@@ -2554,7 +2554,7 @@ var channelContract = initContract7().router(
|
|
|
2554
2554
|
},
|
|
2555
2555
|
rename: {
|
|
2556
2556
|
method: "POST",
|
|
2557
|
-
path: "
|
|
2557
|
+
path: "channel/rename/:channelId",
|
|
2558
2558
|
pathParams: z41.object({
|
|
2559
2559
|
channelId: z41.string().uuid()
|
|
2560
2560
|
}),
|
|
@@ -2571,7 +2571,7 @@ var channelContract = initContract7().router(
|
|
|
2571
2571
|
},
|
|
2572
2572
|
reconnect: {
|
|
2573
2573
|
method: "POST",
|
|
2574
|
-
path: "
|
|
2574
|
+
path: "channel/reconnect/:channelId",
|
|
2575
2575
|
pathParams: z41.object({
|
|
2576
2576
|
channelId: z41.string().uuid()
|
|
2577
2577
|
}),
|
|
@@ -2588,7 +2588,7 @@ var channelContract = initContract7().router(
|
|
|
2588
2588
|
},
|
|
2589
2589
|
relogin: {
|
|
2590
2590
|
method: "POST",
|
|
2591
|
-
path: "
|
|
2591
|
+
path: "channel/relogin",
|
|
2592
2592
|
responses: {
|
|
2593
2593
|
200: DefaultSuccessResponseSchema.extend({
|
|
2594
2594
|
channel: ChannelSchema
|
|
@@ -2600,7 +2600,7 @@ var channelContract = initContract7().router(
|
|
|
2600
2600
|
},
|
|
2601
2601
|
checknewTenant: {
|
|
2602
2602
|
method: "GET",
|
|
2603
|
-
path: "
|
|
2603
|
+
path: "channel/check-new-tenant",
|
|
2604
2604
|
responses: {
|
|
2605
2605
|
200: DefaultSuccessResponseSchema.extend({
|
|
2606
2606
|
data: tenantCheckedSchema
|
|
@@ -2611,7 +2611,7 @@ var channelContract = initContract7().router(
|
|
|
2611
2611
|
},
|
|
2612
2612
|
updateNewTenant: {
|
|
2613
2613
|
method: "PATCH",
|
|
2614
|
-
path: "
|
|
2614
|
+
path: "channel/update-new-tenant",
|
|
2615
2615
|
responses: {
|
|
2616
2616
|
200: DefaultSuccessResponseSchema.extend({
|
|
2617
2617
|
message: z41.string()
|