@waldur/support 8.0.8-dev.35 → 8.0.8-dev.36
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/sdk.gen.js +2 -10
- package/dist/types.gen.d.ts +10 -3
- package/package.json +1 -1
- package/src/sdk.gen.ts +2 -10
- package/src/types.gen.ts +12 -3
package/dist/sdk.gen.js
CHANGED
|
@@ -1574,11 +1574,7 @@ export const supportRequestTypesAdminActivate = (options) => {
|
|
|
1574
1574
|
}
|
|
1575
1575
|
],
|
|
1576
1576
|
url: '/api/support-request-types-admin/{uuid}/activate/',
|
|
1577
|
-
...options
|
|
1578
|
-
headers: {
|
|
1579
|
-
'Content-Type': 'application/json',
|
|
1580
|
-
...options.headers
|
|
1581
|
-
}
|
|
1577
|
+
...options
|
|
1582
1578
|
});
|
|
1583
1579
|
};
|
|
1584
1580
|
/**
|
|
@@ -1601,11 +1597,7 @@ export const supportRequestTypesAdminDeactivate = (options) => {
|
|
|
1601
1597
|
}
|
|
1602
1598
|
],
|
|
1603
1599
|
url: '/api/support-request-types-admin/{uuid}/deactivate/',
|
|
1604
|
-
...options
|
|
1605
|
-
headers: {
|
|
1606
|
-
'Content-Type': 'application/json',
|
|
1607
|
-
...options.headers
|
|
1608
|
-
}
|
|
1600
|
+
...options
|
|
1609
1601
|
});
|
|
1610
1602
|
};
|
|
1611
1603
|
/**
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -762,6 +762,13 @@ export type RequestTypeAdminRequest = {
|
|
|
762
762
|
*/
|
|
763
763
|
order?: number;
|
|
764
764
|
};
|
|
765
|
+
export type RequestTypeReorderItemRequest = {
|
|
766
|
+
uuid: string;
|
|
767
|
+
order: number;
|
|
768
|
+
};
|
|
769
|
+
export type RequestTypeReorderRequest = {
|
|
770
|
+
items: Array<RequestTypeReorderItemRequest>;
|
|
771
|
+
};
|
|
765
772
|
export type SetTokenQuotaRequest = {
|
|
766
773
|
/**
|
|
767
774
|
* UUID of the user to set quota for.
|
|
@@ -2104,7 +2111,7 @@ export type SupportRequestTypesAdminUpdateResponses = {
|
|
|
2104
2111
|
200: RequestTypeAdmin;
|
|
2105
2112
|
};
|
|
2106
2113
|
export type SupportRequestTypesAdminActivateData = {
|
|
2107
|
-
body
|
|
2114
|
+
body?: never;
|
|
2108
2115
|
path: {
|
|
2109
2116
|
uuid: string;
|
|
2110
2117
|
};
|
|
@@ -2115,7 +2122,7 @@ export type SupportRequestTypesAdminActivateResponses = {
|
|
|
2115
2122
|
200: RequestTypeAdmin;
|
|
2116
2123
|
};
|
|
2117
2124
|
export type SupportRequestTypesAdminDeactivateData = {
|
|
2118
|
-
body
|
|
2125
|
+
body?: never;
|
|
2119
2126
|
path: {
|
|
2120
2127
|
uuid: string;
|
|
2121
2128
|
};
|
|
@@ -2126,7 +2133,7 @@ export type SupportRequestTypesAdminDeactivateResponses = {
|
|
|
2126
2133
|
200: RequestTypeAdmin;
|
|
2127
2134
|
};
|
|
2128
2135
|
export type SupportRequestTypesAdminReorderData = {
|
|
2129
|
-
body:
|
|
2136
|
+
body: RequestTypeReorderRequest;
|
|
2130
2137
|
path?: never;
|
|
2131
2138
|
query?: never;
|
|
2132
2139
|
url: '/api/support-request-types-admin/reorder/';
|
package/package.json
CHANGED
package/src/sdk.gen.ts
CHANGED
|
@@ -1648,11 +1648,7 @@ export const supportRequestTypesAdminActivate = <ThrowOnError extends boolean =
|
|
|
1648
1648
|
}
|
|
1649
1649
|
],
|
|
1650
1650
|
url: '/api/support-request-types-admin/{uuid}/activate/',
|
|
1651
|
-
...options
|
|
1652
|
-
headers: {
|
|
1653
|
-
'Content-Type': 'application/json',
|
|
1654
|
-
...options.headers
|
|
1655
|
-
}
|
|
1651
|
+
...options
|
|
1656
1652
|
});
|
|
1657
1653
|
};
|
|
1658
1654
|
|
|
@@ -1676,11 +1672,7 @@ export const supportRequestTypesAdminDeactivate = <ThrowOnError extends boolean
|
|
|
1676
1672
|
}
|
|
1677
1673
|
],
|
|
1678
1674
|
url: '/api/support-request-types-admin/{uuid}/deactivate/',
|
|
1679
|
-
...options
|
|
1680
|
-
headers: {
|
|
1681
|
-
'Content-Type': 'application/json',
|
|
1682
|
-
...options.headers
|
|
1683
|
-
}
|
|
1675
|
+
...options
|
|
1684
1676
|
});
|
|
1685
1677
|
};
|
|
1686
1678
|
|
package/src/types.gen.ts
CHANGED
|
@@ -824,6 +824,15 @@ export type RequestTypeAdminRequest = {
|
|
|
824
824
|
order?: number;
|
|
825
825
|
};
|
|
826
826
|
|
|
827
|
+
export type RequestTypeReorderItemRequest = {
|
|
828
|
+
uuid: string;
|
|
829
|
+
order: number;
|
|
830
|
+
};
|
|
831
|
+
|
|
832
|
+
export type RequestTypeReorderRequest = {
|
|
833
|
+
items: Array<RequestTypeReorderItemRequest>;
|
|
834
|
+
};
|
|
835
|
+
|
|
827
836
|
export type SetTokenQuotaRequest = {
|
|
828
837
|
/**
|
|
829
838
|
* UUID of the user to set quota for.
|
|
@@ -2327,7 +2336,7 @@ export type SupportRequestTypesAdminUpdateResponses = {
|
|
|
2327
2336
|
};
|
|
2328
2337
|
|
|
2329
2338
|
export type SupportRequestTypesAdminActivateData = {
|
|
2330
|
-
body
|
|
2339
|
+
body?: never;
|
|
2331
2340
|
path: {
|
|
2332
2341
|
uuid: string;
|
|
2333
2342
|
};
|
|
@@ -2340,7 +2349,7 @@ export type SupportRequestTypesAdminActivateResponses = {
|
|
|
2340
2349
|
};
|
|
2341
2350
|
|
|
2342
2351
|
export type SupportRequestTypesAdminDeactivateData = {
|
|
2343
|
-
body
|
|
2352
|
+
body?: never;
|
|
2344
2353
|
path: {
|
|
2345
2354
|
uuid: string;
|
|
2346
2355
|
};
|
|
@@ -2353,7 +2362,7 @@ export type SupportRequestTypesAdminDeactivateResponses = {
|
|
|
2353
2362
|
};
|
|
2354
2363
|
|
|
2355
2364
|
export type SupportRequestTypesAdminReorderData = {
|
|
2356
|
-
body:
|
|
2365
|
+
body: RequestTypeReorderRequest;
|
|
2357
2366
|
path?: never;
|
|
2358
2367
|
query?: never;
|
|
2359
2368
|
url: '/api/support-request-types-admin/reorder/';
|