@llamaduck/forgejo-ts 14.0.2-2 → 14.0.2-3
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/client/index.d.mts +339 -0
- package/dist/client/index.d.ts +339 -0
- package/dist/client/index.js +878 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/index.mjs +866 -0
- package/dist/client/index.mjs.map +1 -0
- package/dist/index.d.mts +499 -544
- package/dist/index.d.ts +499 -544
- package/dist/index.js +568 -243
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +564 -243
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
var axios = require('axios');
|
|
4
|
+
|
|
5
|
+
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
6
|
+
|
|
7
|
+
var axios__default = /*#__PURE__*/_interopDefault(axios);
|
|
8
|
+
|
|
3
9
|
// src/core/bodySerializer.gen.ts
|
|
4
10
|
var serializeFormDataPair = (data, key, value) => {
|
|
5
11
|
if (typeof value === "string" || value instanceof Blob) {
|
|
@@ -26,9 +32,6 @@ var formDataBodySerializer = {
|
|
|
26
32
|
return data;
|
|
27
33
|
}
|
|
28
34
|
};
|
|
29
|
-
var jsonBodySerializer = {
|
|
30
|
-
bodySerializer: (body) => JSON.stringify(body, (_key, value) => typeof value === "bigint" ? value.toString() : value)
|
|
31
|
-
};
|
|
32
35
|
|
|
33
36
|
// src/core/serverSentEvents.gen.ts
|
|
34
37
|
var createSseClient = ({
|
|
@@ -441,35 +444,16 @@ var createQuerySerializer = ({
|
|
|
441
444
|
};
|
|
442
445
|
return querySerializer;
|
|
443
446
|
};
|
|
444
|
-
var getParseAs = (contentType) => {
|
|
445
|
-
if (!contentType) {
|
|
446
|
-
return "stream";
|
|
447
|
-
}
|
|
448
|
-
const cleanContent = contentType.split(";")[0]?.trim();
|
|
449
|
-
if (!cleanContent) {
|
|
450
|
-
return;
|
|
451
|
-
}
|
|
452
|
-
if (cleanContent.startsWith("application/json") || cleanContent.endsWith("+json")) {
|
|
453
|
-
return "json";
|
|
454
|
-
}
|
|
455
|
-
if (cleanContent === "multipart/form-data") {
|
|
456
|
-
return "formData";
|
|
457
|
-
}
|
|
458
|
-
if (["application/", "audio/", "image/", "video/"].some((type) => cleanContent.startsWith(type))) {
|
|
459
|
-
return "blob";
|
|
460
|
-
}
|
|
461
|
-
if (cleanContent.startsWith("text/")) {
|
|
462
|
-
return "text";
|
|
463
|
-
}
|
|
464
|
-
return;
|
|
465
|
-
};
|
|
466
447
|
var checkForExistence = (options, name) => {
|
|
467
448
|
if (!name) {
|
|
468
449
|
return false;
|
|
469
450
|
}
|
|
470
|
-
if (options.headers
|
|
451
|
+
if (name in options.headers || options.query?.[name]) {
|
|
471
452
|
return true;
|
|
472
453
|
}
|
|
454
|
+
if ("Cookie" in options.headers && options.headers["Cookie"] && typeof options.headers["Cookie"] === "string") {
|
|
455
|
+
return options.headers["Cookie"].includes(`${name}=`);
|
|
456
|
+
}
|
|
473
457
|
return false;
|
|
474
458
|
};
|
|
475
459
|
var setAuthParams = async ({
|
|
@@ -492,141 +476,105 @@ var setAuthParams = async ({
|
|
|
492
476
|
}
|
|
493
477
|
options.query[name] = token;
|
|
494
478
|
break;
|
|
495
|
-
case "cookie":
|
|
496
|
-
|
|
479
|
+
case "cookie": {
|
|
480
|
+
const value = `${name}=${token}`;
|
|
481
|
+
if ("Cookie" in options.headers && options.headers["Cookie"]) {
|
|
482
|
+
options.headers["Cookie"] = `${options.headers["Cookie"]}; ${value}`;
|
|
483
|
+
} else {
|
|
484
|
+
options.headers["Cookie"] = value;
|
|
485
|
+
}
|
|
497
486
|
break;
|
|
487
|
+
}
|
|
498
488
|
case "header":
|
|
499
489
|
default:
|
|
500
|
-
options.headers
|
|
490
|
+
options.headers[name] = token;
|
|
501
491
|
break;
|
|
502
492
|
}
|
|
503
493
|
}
|
|
504
494
|
};
|
|
505
|
-
var buildUrl = (options) =>
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
495
|
+
var buildUrl = (options) => {
|
|
496
|
+
const instanceBaseUrl = options.axios?.defaults?.baseURL;
|
|
497
|
+
const baseUrl = !!options.baseURL && typeof options.baseURL === "string" ? options.baseURL : instanceBaseUrl;
|
|
498
|
+
return getUrl({
|
|
499
|
+
baseUrl,
|
|
500
|
+
path: options.path,
|
|
501
|
+
// let `paramsSerializer()` handle query params if it exists
|
|
502
|
+
query: !options.paramsSerializer ? options.query : void 0,
|
|
503
|
+
querySerializer: typeof options.querySerializer === "function" ? options.querySerializer : createQuerySerializer(options.querySerializer),
|
|
504
|
+
url: options.url
|
|
505
|
+
});
|
|
506
|
+
};
|
|
512
507
|
var mergeConfigs = (a, b) => {
|
|
513
508
|
const config = { ...a, ...b };
|
|
514
|
-
if (config.baseUrl?.endsWith("/")) {
|
|
515
|
-
config.baseUrl = config.baseUrl.substring(0, config.baseUrl.length - 1);
|
|
516
|
-
}
|
|
517
509
|
config.headers = mergeHeaders(a.headers, b.headers);
|
|
518
510
|
return config;
|
|
519
511
|
};
|
|
520
|
-
var
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
512
|
+
var axiosHeadersKeywords = [
|
|
513
|
+
"common",
|
|
514
|
+
"delete",
|
|
515
|
+
"get",
|
|
516
|
+
"head",
|
|
517
|
+
"patch",
|
|
518
|
+
"post",
|
|
519
|
+
"put"
|
|
520
|
+
];
|
|
527
521
|
var mergeHeaders = (...headers) => {
|
|
528
|
-
const mergedHeaders =
|
|
522
|
+
const mergedHeaders = {};
|
|
529
523
|
for (const header of headers) {
|
|
530
|
-
if (!header) {
|
|
524
|
+
if (!header || typeof header !== "object") {
|
|
531
525
|
continue;
|
|
532
526
|
}
|
|
533
|
-
const iterator =
|
|
527
|
+
const iterator = Object.entries(header);
|
|
534
528
|
for (const [key, value] of iterator) {
|
|
535
|
-
if (value ===
|
|
536
|
-
mergedHeaders
|
|
529
|
+
if (axiosHeadersKeywords.includes(key) && typeof value === "object") {
|
|
530
|
+
mergedHeaders[key] = {
|
|
531
|
+
...mergedHeaders[key],
|
|
532
|
+
...value
|
|
533
|
+
};
|
|
534
|
+
} else if (value === null) {
|
|
535
|
+
delete mergedHeaders[key];
|
|
537
536
|
} else if (Array.isArray(value)) {
|
|
538
537
|
for (const v of value) {
|
|
539
|
-
mergedHeaders
|
|
538
|
+
mergedHeaders[key] = [...mergedHeaders[key] ?? [], v];
|
|
540
539
|
}
|
|
541
540
|
} else if (value !== void 0) {
|
|
542
|
-
mergedHeaders.
|
|
543
|
-
key,
|
|
544
|
-
typeof value === "object" ? JSON.stringify(value) : value
|
|
545
|
-
);
|
|
541
|
+
mergedHeaders[key] = typeof value === "object" ? JSON.stringify(value) : value;
|
|
546
542
|
}
|
|
547
543
|
}
|
|
548
544
|
}
|
|
549
545
|
return mergedHeaders;
|
|
550
546
|
};
|
|
551
|
-
var Interceptors = class {
|
|
552
|
-
constructor() {
|
|
553
|
-
this.fns = [];
|
|
554
|
-
}
|
|
555
|
-
clear() {
|
|
556
|
-
this.fns = [];
|
|
557
|
-
}
|
|
558
|
-
eject(id) {
|
|
559
|
-
const index = this.getInterceptorIndex(id);
|
|
560
|
-
if (this.fns[index]) {
|
|
561
|
-
this.fns[index] = null;
|
|
562
|
-
}
|
|
563
|
-
}
|
|
564
|
-
exists(id) {
|
|
565
|
-
const index = this.getInterceptorIndex(id);
|
|
566
|
-
return Boolean(this.fns[index]);
|
|
567
|
-
}
|
|
568
|
-
getInterceptorIndex(id) {
|
|
569
|
-
if (typeof id === "number") {
|
|
570
|
-
return this.fns[id] ? id : -1;
|
|
571
|
-
}
|
|
572
|
-
return this.fns.indexOf(id);
|
|
573
|
-
}
|
|
574
|
-
update(id, fn) {
|
|
575
|
-
const index = this.getInterceptorIndex(id);
|
|
576
|
-
if (this.fns[index]) {
|
|
577
|
-
this.fns[index] = fn;
|
|
578
|
-
return id;
|
|
579
|
-
}
|
|
580
|
-
return false;
|
|
581
|
-
}
|
|
582
|
-
use(fn) {
|
|
583
|
-
this.fns.push(fn);
|
|
584
|
-
return this.fns.length - 1;
|
|
585
|
-
}
|
|
586
|
-
};
|
|
587
|
-
var createInterceptors = () => ({
|
|
588
|
-
error: new Interceptors(),
|
|
589
|
-
request: new Interceptors(),
|
|
590
|
-
response: new Interceptors()
|
|
591
|
-
});
|
|
592
|
-
var defaultQuerySerializer = createQuerySerializer({
|
|
593
|
-
allowReserved: false,
|
|
594
|
-
array: {
|
|
595
|
-
explode: true,
|
|
596
|
-
style: "form"
|
|
597
|
-
},
|
|
598
|
-
object: {
|
|
599
|
-
explode: true,
|
|
600
|
-
style: "deepObject"
|
|
601
|
-
}
|
|
602
|
-
});
|
|
603
|
-
var defaultHeaders = {
|
|
604
|
-
"Content-Type": "application/json"
|
|
605
|
-
};
|
|
606
547
|
var createConfig = (override = {}) => ({
|
|
607
|
-
...jsonBodySerializer,
|
|
608
|
-
headers: defaultHeaders,
|
|
609
|
-
parseAs: "auto",
|
|
610
|
-
querySerializer: defaultQuerySerializer,
|
|
611
548
|
...override
|
|
612
549
|
});
|
|
613
550
|
|
|
614
551
|
// src/client/client.gen.ts
|
|
615
552
|
var createClient = (config = {}) => {
|
|
616
553
|
let _config = mergeConfigs(createConfig(), config);
|
|
554
|
+
let instance;
|
|
555
|
+
if (_config.axios && !("Axios" in _config.axios)) {
|
|
556
|
+
instance = _config.axios;
|
|
557
|
+
} else {
|
|
558
|
+
const { auth, ...configWithoutAuth } = _config;
|
|
559
|
+
instance = axios__default.default.create(configWithoutAuth);
|
|
560
|
+
}
|
|
617
561
|
const getConfig = () => ({ ..._config });
|
|
618
562
|
const setConfig = (config2) => {
|
|
619
563
|
_config = mergeConfigs(_config, config2);
|
|
564
|
+
instance.defaults = {
|
|
565
|
+
...instance.defaults,
|
|
566
|
+
..._config,
|
|
567
|
+
// @ts-expect-error
|
|
568
|
+
headers: mergeHeaders(instance.defaults.headers, _config.headers)
|
|
569
|
+
};
|
|
620
570
|
return getConfig();
|
|
621
571
|
};
|
|
622
|
-
const interceptors = createInterceptors();
|
|
623
572
|
const beforeRequest = async (options) => {
|
|
624
573
|
const opts = {
|
|
625
574
|
..._config,
|
|
626
575
|
...options,
|
|
627
|
-
|
|
628
|
-
headers: mergeHeaders(_config.headers, options.headers)
|
|
629
|
-
serializedBody: void 0
|
|
576
|
+
axios: options.axios ?? _config.axios ?? instance,
|
|
577
|
+
headers: mergeHeaders(_config.headers, options.headers)
|
|
630
578
|
};
|
|
631
579
|
if (opts.security) {
|
|
632
580
|
await setAuthParams({
|
|
@@ -638,103 +586,28 @@ var createClient = (config = {}) => {
|
|
|
638
586
|
await opts.requestValidator(opts);
|
|
639
587
|
}
|
|
640
588
|
if (opts.body !== void 0 && opts.bodySerializer) {
|
|
641
|
-
opts.
|
|
642
|
-
}
|
|
643
|
-
if (opts.body === void 0 || opts.serializedBody === "") {
|
|
644
|
-
opts.headers.delete("Content-Type");
|
|
589
|
+
opts.body = opts.bodySerializer(opts.body);
|
|
645
590
|
}
|
|
646
591
|
const url = buildUrl(opts);
|
|
647
592
|
return { opts, url };
|
|
648
593
|
};
|
|
649
594
|
const request = async (options) => {
|
|
650
595
|
const { opts, url } = await beforeRequest(options);
|
|
651
|
-
const requestInit = {
|
|
652
|
-
redirect: "follow",
|
|
653
|
-
...opts,
|
|
654
|
-
body: getValidRequestBody(opts)
|
|
655
|
-
};
|
|
656
|
-
let request2 = new Request(url, requestInit);
|
|
657
|
-
for (const fn of interceptors.request.fns) {
|
|
658
|
-
if (fn) {
|
|
659
|
-
request2 = await fn(request2, opts);
|
|
660
|
-
}
|
|
661
|
-
}
|
|
662
|
-
const _fetch = opts.fetch;
|
|
663
|
-
let response;
|
|
664
596
|
try {
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
request: request2,
|
|
680
|
-
response: void 0
|
|
681
|
-
};
|
|
682
|
-
}
|
|
683
|
-
for (const fn of interceptors.response.fns) {
|
|
684
|
-
if (fn) {
|
|
685
|
-
response = await fn(response, request2, opts);
|
|
686
|
-
}
|
|
687
|
-
}
|
|
688
|
-
const result = {
|
|
689
|
-
request: request2,
|
|
690
|
-
response
|
|
691
|
-
};
|
|
692
|
-
if (response.ok) {
|
|
693
|
-
const parseAs = (opts.parseAs === "auto" ? getParseAs(response.headers.get("Content-Type")) : opts.parseAs) ?? "json";
|
|
694
|
-
if (response.status === 204 || response.headers.get("Content-Length") === "0") {
|
|
695
|
-
let emptyData;
|
|
696
|
-
switch (parseAs) {
|
|
697
|
-
case "arrayBuffer":
|
|
698
|
-
case "blob":
|
|
699
|
-
case "text":
|
|
700
|
-
emptyData = await response[parseAs]();
|
|
701
|
-
break;
|
|
702
|
-
case "formData":
|
|
703
|
-
emptyData = new FormData();
|
|
704
|
-
break;
|
|
705
|
-
case "stream":
|
|
706
|
-
emptyData = response.body;
|
|
707
|
-
break;
|
|
708
|
-
case "json":
|
|
709
|
-
default:
|
|
710
|
-
emptyData = {};
|
|
711
|
-
break;
|
|
712
|
-
}
|
|
713
|
-
return opts.responseStyle === "data" ? emptyData : {
|
|
714
|
-
data: emptyData,
|
|
715
|
-
...result
|
|
716
|
-
};
|
|
717
|
-
}
|
|
718
|
-
let data;
|
|
719
|
-
switch (parseAs) {
|
|
720
|
-
case "arrayBuffer":
|
|
721
|
-
case "blob":
|
|
722
|
-
case "formData":
|
|
723
|
-
case "text":
|
|
724
|
-
data = await response[parseAs]();
|
|
725
|
-
break;
|
|
726
|
-
case "json": {
|
|
727
|
-
const text = await response.text();
|
|
728
|
-
data = text ? JSON.parse(text) : {};
|
|
729
|
-
break;
|
|
730
|
-
}
|
|
731
|
-
case "stream":
|
|
732
|
-
return opts.responseStyle === "data" ? response.body : {
|
|
733
|
-
data: response.body,
|
|
734
|
-
...result
|
|
735
|
-
};
|
|
736
|
-
}
|
|
737
|
-
if (parseAs === "json") {
|
|
597
|
+
const _axios = opts.axios;
|
|
598
|
+
const { auth, ...optsWithoutAuth } = opts;
|
|
599
|
+
const response = await _axios({
|
|
600
|
+
...optsWithoutAuth,
|
|
601
|
+
baseURL: "",
|
|
602
|
+
// the baseURL is already included in `url`
|
|
603
|
+
data: getValidRequestBody(opts),
|
|
604
|
+
headers: opts.headers,
|
|
605
|
+
// let `paramsSerializer()` handle query params if it exists
|
|
606
|
+
params: opts.paramsSerializer ? opts.query : void 0,
|
|
607
|
+
url
|
|
608
|
+
});
|
|
609
|
+
let { data } = response;
|
|
610
|
+
if (opts.responseType === "json") {
|
|
738
611
|
if (opts.responseValidator) {
|
|
739
612
|
await opts.responseValidator(data);
|
|
740
613
|
}
|
|
@@ -742,32 +615,18 @@ var createClient = (config = {}) => {
|
|
|
742
615
|
data = await opts.responseTransformer(data);
|
|
743
616
|
}
|
|
744
617
|
}
|
|
745
|
-
return
|
|
746
|
-
|
|
747
|
-
|
|
618
|
+
return {
|
|
619
|
+
...response,
|
|
620
|
+
data: data ?? {}
|
|
748
621
|
};
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
jsonError = JSON.parse(textError);
|
|
754
|
-
} catch {
|
|
755
|
-
}
|
|
756
|
-
const error = jsonError ?? textError;
|
|
757
|
-
let finalError = error;
|
|
758
|
-
for (const fn of interceptors.error.fns) {
|
|
759
|
-
if (fn) {
|
|
760
|
-
finalError = await fn(error, response, request2, opts);
|
|
622
|
+
} catch (error) {
|
|
623
|
+
const e = error;
|
|
624
|
+
if (opts.throwOnError) {
|
|
625
|
+
throw e;
|
|
761
626
|
}
|
|
627
|
+
e.error = e.response?.data ?? {};
|
|
628
|
+
return e;
|
|
762
629
|
}
|
|
763
|
-
finalError = finalError || {};
|
|
764
|
-
if (opts.throwOnError) {
|
|
765
|
-
throw finalError;
|
|
766
|
-
}
|
|
767
|
-
return opts.responseStyle === "data" ? void 0 : {
|
|
768
|
-
error: finalError,
|
|
769
|
-
...result
|
|
770
|
-
};
|
|
771
630
|
};
|
|
772
631
|
const makeMethodFn = (method) => (options) => request({ ...options, method });
|
|
773
632
|
const makeSseFn = (method) => async (options) => {
|
|
@@ -777,16 +636,9 @@ var createClient = (config = {}) => {
|
|
|
777
636
|
body: opts.body,
|
|
778
637
|
headers: opts.headers,
|
|
779
638
|
method,
|
|
780
|
-
onRequest: async (url2, init) => {
|
|
781
|
-
let request2 = new Request(url2, init);
|
|
782
|
-
for (const fn of interceptors.request.fns) {
|
|
783
|
-
if (fn) {
|
|
784
|
-
request2 = await fn(request2, opts);
|
|
785
|
-
}
|
|
786
|
-
}
|
|
787
|
-
return request2;
|
|
788
|
-
},
|
|
789
639
|
serializedBody: getValidRequestBody(opts),
|
|
640
|
+
// @ts-expect-error
|
|
641
|
+
signal: opts.signal,
|
|
790
642
|
url
|
|
791
643
|
});
|
|
792
644
|
};
|
|
@@ -797,7 +649,7 @@ var createClient = (config = {}) => {
|
|
|
797
649
|
get: makeMethodFn("GET"),
|
|
798
650
|
getConfig,
|
|
799
651
|
head: makeMethodFn("HEAD"),
|
|
800
|
-
|
|
652
|
+
instance,
|
|
801
653
|
options: makeMethodFn("OPTIONS"),
|
|
802
654
|
patch: makeMethodFn("PATCH"),
|
|
803
655
|
post: makeMethodFn("POST"),
|
|
@@ -820,10 +672,11 @@ var createClient = (config = {}) => {
|
|
|
820
672
|
};
|
|
821
673
|
|
|
822
674
|
// src/client.gen.ts
|
|
823
|
-
var client = createClient(createConfig());
|
|
675
|
+
var client = createClient(createConfig({ baseURL: "https://swagger.json/api/v1" }));
|
|
824
676
|
|
|
825
677
|
// src/sdk.gen.ts
|
|
826
678
|
var activitypubInstanceActor = (options) => (options?.client ?? client).get({
|
|
679
|
+
responseType: "json",
|
|
827
680
|
security: [
|
|
828
681
|
{ scheme: "basic", type: "http" },
|
|
829
682
|
{
|
|
@@ -849,6 +702,7 @@ var activitypubInstanceActor = (options) => (options?.client ?? client).get({
|
|
|
849
702
|
...options
|
|
850
703
|
});
|
|
851
704
|
var activitypubInstanceActorInbox = (options) => (options?.client ?? client).post({
|
|
705
|
+
responseType: "json",
|
|
852
706
|
security: [
|
|
853
707
|
{ scheme: "basic", type: "http" },
|
|
854
708
|
{
|
|
@@ -874,6 +728,7 @@ var activitypubInstanceActorInbox = (options) => (options?.client ?? client).pos
|
|
|
874
728
|
...options
|
|
875
729
|
});
|
|
876
730
|
var activitypubInstanceActorOutbox = (options) => (options?.client ?? client).post({
|
|
731
|
+
responseType: "json",
|
|
877
732
|
security: [
|
|
878
733
|
{ scheme: "basic", type: "http" },
|
|
879
734
|
{
|
|
@@ -899,6 +754,7 @@ var activitypubInstanceActorOutbox = (options) => (options?.client ?? client).po
|
|
|
899
754
|
...options
|
|
900
755
|
});
|
|
901
756
|
var activitypubRepository = (options) => (options.client ?? client).get({
|
|
757
|
+
responseType: "json",
|
|
902
758
|
security: [
|
|
903
759
|
{ scheme: "basic", type: "http" },
|
|
904
760
|
{
|
|
@@ -924,6 +780,7 @@ var activitypubRepository = (options) => (options.client ?? client).get({
|
|
|
924
780
|
...options
|
|
925
781
|
});
|
|
926
782
|
var activitypubRepositoryInbox = (options) => (options.client ?? client).post({
|
|
783
|
+
responseType: "json",
|
|
927
784
|
security: [
|
|
928
785
|
{ scheme: "basic", type: "http" },
|
|
929
786
|
{
|
|
@@ -953,6 +810,7 @@ var activitypubRepositoryInbox = (options) => (options.client ?? client).post({
|
|
|
953
810
|
}
|
|
954
811
|
});
|
|
955
812
|
var activitypubRepositoryOutbox = (options) => (options.client ?? client).post({
|
|
813
|
+
responseType: "json",
|
|
956
814
|
security: [
|
|
957
815
|
{ scheme: "basic", type: "http" },
|
|
958
816
|
{
|
|
@@ -978,6 +836,7 @@ var activitypubRepositoryOutbox = (options) => (options.client ?? client).post({
|
|
|
978
836
|
...options
|
|
979
837
|
});
|
|
980
838
|
var activitypubPerson = (options) => (options.client ?? client).get({
|
|
839
|
+
responseType: "json",
|
|
981
840
|
security: [
|
|
982
841
|
{ scheme: "basic", type: "http" },
|
|
983
842
|
{
|
|
@@ -1003,6 +862,7 @@ var activitypubPerson = (options) => (options.client ?? client).get({
|
|
|
1003
862
|
...options
|
|
1004
863
|
});
|
|
1005
864
|
var activitypubPersonActivityNote = (options) => (options.client ?? client).get({
|
|
865
|
+
responseType: "json",
|
|
1006
866
|
security: [
|
|
1007
867
|
{ scheme: "basic", type: "http" },
|
|
1008
868
|
{
|
|
@@ -1028,6 +888,7 @@ var activitypubPersonActivityNote = (options) => (options.client ?? client).get(
|
|
|
1028
888
|
...options
|
|
1029
889
|
});
|
|
1030
890
|
var activitypubPersonActivity = (options) => (options.client ?? client).get({
|
|
891
|
+
responseType: "json",
|
|
1031
892
|
security: [
|
|
1032
893
|
{ scheme: "basic", type: "http" },
|
|
1033
894
|
{
|
|
@@ -1053,6 +914,7 @@ var activitypubPersonActivity = (options) => (options.client ?? client).get({
|
|
|
1053
914
|
...options
|
|
1054
915
|
});
|
|
1055
916
|
var activitypubPersonInbox = (options) => (options.client ?? client).post({
|
|
917
|
+
responseType: "json",
|
|
1056
918
|
security: [
|
|
1057
919
|
{ scheme: "basic", type: "http" },
|
|
1058
920
|
{
|
|
@@ -1078,6 +940,7 @@ var activitypubPersonInbox = (options) => (options.client ?? client).post({
|
|
|
1078
940
|
...options
|
|
1079
941
|
});
|
|
1080
942
|
var activitypubPersonFeed = (options) => (options.client ?? client).get({
|
|
943
|
+
responseType: "json",
|
|
1081
944
|
security: [
|
|
1082
945
|
{ scheme: "basic", type: "http" },
|
|
1083
946
|
{
|
|
@@ -1103,6 +966,7 @@ var activitypubPersonFeed = (options) => (options.client ?? client).get({
|
|
|
1103
966
|
...options
|
|
1104
967
|
});
|
|
1105
968
|
var adminCronList = (options) => (options?.client ?? client).get({
|
|
969
|
+
responseType: "json",
|
|
1106
970
|
security: [
|
|
1107
971
|
{ scheme: "basic", type: "http" },
|
|
1108
972
|
{
|
|
@@ -1128,6 +992,7 @@ var adminCronList = (options) => (options?.client ?? client).get({
|
|
|
1128
992
|
...options
|
|
1129
993
|
});
|
|
1130
994
|
var adminCronRun = (options) => (options.client ?? client).post({
|
|
995
|
+
responseType: "json",
|
|
1131
996
|
security: [
|
|
1132
997
|
{ scheme: "basic", type: "http" },
|
|
1133
998
|
{
|
|
@@ -1153,6 +1018,7 @@ var adminCronRun = (options) => (options.client ?? client).post({
|
|
|
1153
1018
|
...options
|
|
1154
1019
|
});
|
|
1155
1020
|
var adminGetAllEmails = (options) => (options?.client ?? client).get({
|
|
1021
|
+
responseType: "json",
|
|
1156
1022
|
security: [
|
|
1157
1023
|
{ scheme: "basic", type: "http" },
|
|
1158
1024
|
{
|
|
@@ -1178,6 +1044,7 @@ var adminGetAllEmails = (options) => (options?.client ?? client).get({
|
|
|
1178
1044
|
...options
|
|
1179
1045
|
});
|
|
1180
1046
|
var adminSearchEmails = (options) => (options?.client ?? client).get({
|
|
1047
|
+
responseType: "json",
|
|
1181
1048
|
security: [
|
|
1182
1049
|
{ scheme: "basic", type: "http" },
|
|
1183
1050
|
{
|
|
@@ -1203,6 +1070,7 @@ var adminSearchEmails = (options) => (options?.client ?? client).get({
|
|
|
1203
1070
|
...options
|
|
1204
1071
|
});
|
|
1205
1072
|
var adminListHooks = (options) => (options?.client ?? client).get({
|
|
1073
|
+
responseType: "json",
|
|
1206
1074
|
security: [
|
|
1207
1075
|
{ scheme: "basic", type: "http" },
|
|
1208
1076
|
{
|
|
@@ -1228,6 +1096,7 @@ var adminListHooks = (options) => (options?.client ?? client).get({
|
|
|
1228
1096
|
...options
|
|
1229
1097
|
});
|
|
1230
1098
|
var adminCreateHook = (options) => (options.client ?? client).post({
|
|
1099
|
+
responseType: "json",
|
|
1231
1100
|
security: [
|
|
1232
1101
|
{ scheme: "basic", type: "http" },
|
|
1233
1102
|
{
|
|
@@ -1257,6 +1126,7 @@ var adminCreateHook = (options) => (options.client ?? client).post({
|
|
|
1257
1126
|
}
|
|
1258
1127
|
});
|
|
1259
1128
|
var adminDeleteHook = (options) => (options.client ?? client).delete({
|
|
1129
|
+
responseType: "json",
|
|
1260
1130
|
security: [
|
|
1261
1131
|
{ scheme: "basic", type: "http" },
|
|
1262
1132
|
{
|
|
@@ -1282,6 +1152,7 @@ var adminDeleteHook = (options) => (options.client ?? client).delete({
|
|
|
1282
1152
|
...options
|
|
1283
1153
|
});
|
|
1284
1154
|
var adminGetHook = (options) => (options.client ?? client).get({
|
|
1155
|
+
responseType: "json",
|
|
1285
1156
|
security: [
|
|
1286
1157
|
{ scheme: "basic", type: "http" },
|
|
1287
1158
|
{
|
|
@@ -1307,6 +1178,7 @@ var adminGetHook = (options) => (options.client ?? client).get({
|
|
|
1307
1178
|
...options
|
|
1308
1179
|
});
|
|
1309
1180
|
var adminEditHook = (options) => (options.client ?? client).patch({
|
|
1181
|
+
responseType: "json",
|
|
1310
1182
|
security: [
|
|
1311
1183
|
{ scheme: "basic", type: "http" },
|
|
1312
1184
|
{
|
|
@@ -1336,6 +1208,7 @@ var adminEditHook = (options) => (options.client ?? client).patch({
|
|
|
1336
1208
|
}
|
|
1337
1209
|
});
|
|
1338
1210
|
var adminGetAllOrgs = (options) => (options?.client ?? client).get({
|
|
1211
|
+
responseType: "json",
|
|
1339
1212
|
security: [
|
|
1340
1213
|
{ scheme: "basic", type: "http" },
|
|
1341
1214
|
{
|
|
@@ -1361,6 +1234,7 @@ var adminGetAllOrgs = (options) => (options?.client ?? client).get({
|
|
|
1361
1234
|
...options
|
|
1362
1235
|
});
|
|
1363
1236
|
var adminListQuotaGroups = (options) => (options?.client ?? client).get({
|
|
1237
|
+
responseType: "json",
|
|
1364
1238
|
security: [
|
|
1365
1239
|
{ scheme: "basic", type: "http" },
|
|
1366
1240
|
{
|
|
@@ -1386,6 +1260,7 @@ var adminListQuotaGroups = (options) => (options?.client ?? client).get({
|
|
|
1386
1260
|
...options
|
|
1387
1261
|
});
|
|
1388
1262
|
var adminCreateQuotaGroup = (options) => (options.client ?? client).post({
|
|
1263
|
+
responseType: "json",
|
|
1389
1264
|
security: [
|
|
1390
1265
|
{ scheme: "basic", type: "http" },
|
|
1391
1266
|
{
|
|
@@ -1415,6 +1290,7 @@ var adminCreateQuotaGroup = (options) => (options.client ?? client).post({
|
|
|
1415
1290
|
}
|
|
1416
1291
|
});
|
|
1417
1292
|
var adminDeleteQuotaGroup = (options) => (options.client ?? client).delete({
|
|
1293
|
+
responseType: "json",
|
|
1418
1294
|
security: [
|
|
1419
1295
|
{ scheme: "basic", type: "http" },
|
|
1420
1296
|
{
|
|
@@ -1440,6 +1316,7 @@ var adminDeleteQuotaGroup = (options) => (options.client ?? client).delete({
|
|
|
1440
1316
|
...options
|
|
1441
1317
|
});
|
|
1442
1318
|
var adminGetQuotaGroup = (options) => (options.client ?? client).get({
|
|
1319
|
+
responseType: "json",
|
|
1443
1320
|
security: [
|
|
1444
1321
|
{ scheme: "basic", type: "http" },
|
|
1445
1322
|
{
|
|
@@ -1465,6 +1342,7 @@ var adminGetQuotaGroup = (options) => (options.client ?? client).get({
|
|
|
1465
1342
|
...options
|
|
1466
1343
|
});
|
|
1467
1344
|
var adminRemoveRuleFromQuotaGroup = (options) => (options.client ?? client).delete({
|
|
1345
|
+
responseType: "json",
|
|
1468
1346
|
security: [
|
|
1469
1347
|
{ scheme: "basic", type: "http" },
|
|
1470
1348
|
{
|
|
@@ -1490,6 +1368,7 @@ var adminRemoveRuleFromQuotaGroup = (options) => (options.client ?? client).dele
|
|
|
1490
1368
|
...options
|
|
1491
1369
|
});
|
|
1492
1370
|
var adminAddRuleToQuotaGroup = (options) => (options.client ?? client).put({
|
|
1371
|
+
responseType: "json",
|
|
1493
1372
|
security: [
|
|
1494
1373
|
{ scheme: "basic", type: "http" },
|
|
1495
1374
|
{
|
|
@@ -1515,6 +1394,7 @@ var adminAddRuleToQuotaGroup = (options) => (options.client ?? client).put({
|
|
|
1515
1394
|
...options
|
|
1516
1395
|
});
|
|
1517
1396
|
var adminListUsersInQuotaGroup = (options) => (options.client ?? client).get({
|
|
1397
|
+
responseType: "json",
|
|
1518
1398
|
security: [
|
|
1519
1399
|
{ scheme: "basic", type: "http" },
|
|
1520
1400
|
{
|
|
@@ -1540,6 +1420,7 @@ var adminListUsersInQuotaGroup = (options) => (options.client ?? client).get({
|
|
|
1540
1420
|
...options
|
|
1541
1421
|
});
|
|
1542
1422
|
var adminRemoveUserFromQuotaGroup = (options) => (options.client ?? client).delete({
|
|
1423
|
+
responseType: "json",
|
|
1543
1424
|
security: [
|
|
1544
1425
|
{ scheme: "basic", type: "http" },
|
|
1545
1426
|
{
|
|
@@ -1565,6 +1446,7 @@ var adminRemoveUserFromQuotaGroup = (options) => (options.client ?? client).dele
|
|
|
1565
1446
|
...options
|
|
1566
1447
|
});
|
|
1567
1448
|
var adminAddUserToQuotaGroup = (options) => (options.client ?? client).put({
|
|
1449
|
+
responseType: "json",
|
|
1568
1450
|
security: [
|
|
1569
1451
|
{ scheme: "basic", type: "http" },
|
|
1570
1452
|
{
|
|
@@ -1590,6 +1472,7 @@ var adminAddUserToQuotaGroup = (options) => (options.client ?? client).put({
|
|
|
1590
1472
|
...options
|
|
1591
1473
|
});
|
|
1592
1474
|
var adminListQuotaRules = (options) => (options?.client ?? client).get({
|
|
1475
|
+
responseType: "json",
|
|
1593
1476
|
security: [
|
|
1594
1477
|
{ scheme: "basic", type: "http" },
|
|
1595
1478
|
{
|
|
@@ -1615,6 +1498,7 @@ var adminListQuotaRules = (options) => (options?.client ?? client).get({
|
|
|
1615
1498
|
...options
|
|
1616
1499
|
});
|
|
1617
1500
|
var adminCreateQuotaRule = (options) => (options.client ?? client).post({
|
|
1501
|
+
responseType: "json",
|
|
1618
1502
|
security: [
|
|
1619
1503
|
{ scheme: "basic", type: "http" },
|
|
1620
1504
|
{
|
|
@@ -1644,6 +1528,7 @@ var adminCreateQuotaRule = (options) => (options.client ?? client).post({
|
|
|
1644
1528
|
}
|
|
1645
1529
|
});
|
|
1646
1530
|
var adminDeleteQuotaRule = (options) => (options.client ?? client).delete({
|
|
1531
|
+
responseType: "json",
|
|
1647
1532
|
security: [
|
|
1648
1533
|
{ scheme: "basic", type: "http" },
|
|
1649
1534
|
{
|
|
@@ -1669,6 +1554,7 @@ var adminDeleteQuotaRule = (options) => (options.client ?? client).delete({
|
|
|
1669
1554
|
...options
|
|
1670
1555
|
});
|
|
1671
1556
|
var adminGetQuotaRule = (options) => (options.client ?? client).get({
|
|
1557
|
+
responseType: "json",
|
|
1672
1558
|
security: [
|
|
1673
1559
|
{ scheme: "basic", type: "http" },
|
|
1674
1560
|
{
|
|
@@ -1694,6 +1580,7 @@ var adminGetQuotaRule = (options) => (options.client ?? client).get({
|
|
|
1694
1580
|
...options
|
|
1695
1581
|
});
|
|
1696
1582
|
var adminEditQuotaRule = (options) => (options.client ?? client).patch({
|
|
1583
|
+
responseType: "json",
|
|
1697
1584
|
security: [
|
|
1698
1585
|
{ scheme: "basic", type: "http" },
|
|
1699
1586
|
{
|
|
@@ -1723,6 +1610,7 @@ var adminEditQuotaRule = (options) => (options.client ?? client).patch({
|
|
|
1723
1610
|
}
|
|
1724
1611
|
});
|
|
1725
1612
|
var adminSearchRunJobs = (options) => (options?.client ?? client).get({
|
|
1613
|
+
responseType: "json",
|
|
1726
1614
|
security: [
|
|
1727
1615
|
{ scheme: "basic", type: "http" },
|
|
1728
1616
|
{
|
|
@@ -1748,6 +1636,7 @@ var adminSearchRunJobs = (options) => (options?.client ?? client).get({
|
|
|
1748
1636
|
...options
|
|
1749
1637
|
});
|
|
1750
1638
|
var adminGetRunnerRegistrationToken = (options) => (options?.client ?? client).get({
|
|
1639
|
+
responseType: "json",
|
|
1751
1640
|
security: [
|
|
1752
1641
|
{ scheme: "basic", type: "http" },
|
|
1753
1642
|
{
|
|
@@ -1773,6 +1662,7 @@ var adminGetRunnerRegistrationToken = (options) => (options?.client ?? client).g
|
|
|
1773
1662
|
...options
|
|
1774
1663
|
});
|
|
1775
1664
|
var adminUnadoptedList = (options) => (options?.client ?? client).get({
|
|
1665
|
+
responseType: "json",
|
|
1776
1666
|
security: [
|
|
1777
1667
|
{ scheme: "basic", type: "http" },
|
|
1778
1668
|
{
|
|
@@ -1798,6 +1688,7 @@ var adminUnadoptedList = (options) => (options?.client ?? client).get({
|
|
|
1798
1688
|
...options
|
|
1799
1689
|
});
|
|
1800
1690
|
var adminDeleteUnadoptedRepository = (options) => (options.client ?? client).delete({
|
|
1691
|
+
responseType: "json",
|
|
1801
1692
|
security: [
|
|
1802
1693
|
{ scheme: "basic", type: "http" },
|
|
1803
1694
|
{
|
|
@@ -1823,6 +1714,7 @@ var adminDeleteUnadoptedRepository = (options) => (options.client ?? client).del
|
|
|
1823
1714
|
...options
|
|
1824
1715
|
});
|
|
1825
1716
|
var adminAdoptRepository = (options) => (options.client ?? client).post({
|
|
1717
|
+
responseType: "json",
|
|
1826
1718
|
security: [
|
|
1827
1719
|
{ scheme: "basic", type: "http" },
|
|
1828
1720
|
{
|
|
@@ -1848,6 +1740,7 @@ var adminAdoptRepository = (options) => (options.client ?? client).post({
|
|
|
1848
1740
|
...options
|
|
1849
1741
|
});
|
|
1850
1742
|
var adminSearchUsers = (options) => (options?.client ?? client).get({
|
|
1743
|
+
responseType: "json",
|
|
1851
1744
|
security: [
|
|
1852
1745
|
{ scheme: "basic", type: "http" },
|
|
1853
1746
|
{
|
|
@@ -1873,6 +1766,7 @@ var adminSearchUsers = (options) => (options?.client ?? client).get({
|
|
|
1873
1766
|
...options
|
|
1874
1767
|
});
|
|
1875
1768
|
var adminCreateUser = (options) => (options?.client ?? client).post({
|
|
1769
|
+
responseType: "json",
|
|
1876
1770
|
security: [
|
|
1877
1771
|
{ scheme: "basic", type: "http" },
|
|
1878
1772
|
{
|
|
@@ -1902,6 +1796,7 @@ var adminCreateUser = (options) => (options?.client ?? client).post({
|
|
|
1902
1796
|
}
|
|
1903
1797
|
});
|
|
1904
1798
|
var adminDeleteUser = (options) => (options.client ?? client).delete({
|
|
1799
|
+
responseType: "json",
|
|
1905
1800
|
security: [
|
|
1906
1801
|
{ scheme: "basic", type: "http" },
|
|
1907
1802
|
{
|
|
@@ -1927,6 +1822,7 @@ var adminDeleteUser = (options) => (options.client ?? client).delete({
|
|
|
1927
1822
|
...options
|
|
1928
1823
|
});
|
|
1929
1824
|
var adminEditUser = (options) => (options.client ?? client).patch({
|
|
1825
|
+
responseType: "json",
|
|
1930
1826
|
security: [
|
|
1931
1827
|
{ scheme: "basic", type: "http" },
|
|
1932
1828
|
{
|
|
@@ -1956,6 +1852,7 @@ var adminEditUser = (options) => (options.client ?? client).patch({
|
|
|
1956
1852
|
}
|
|
1957
1853
|
});
|
|
1958
1854
|
var adminDeleteUserEmails = (options) => (options.client ?? client).delete({
|
|
1855
|
+
responseType: "json",
|
|
1959
1856
|
security: [
|
|
1960
1857
|
{ scheme: "basic", type: "http" },
|
|
1961
1858
|
{
|
|
@@ -1985,6 +1882,7 @@ var adminDeleteUserEmails = (options) => (options.client ?? client).delete({
|
|
|
1985
1882
|
}
|
|
1986
1883
|
});
|
|
1987
1884
|
var adminListUserEmails = (options) => (options.client ?? client).get({
|
|
1885
|
+
responseType: "json",
|
|
1988
1886
|
security: [
|
|
1989
1887
|
{ scheme: "basic", type: "http" },
|
|
1990
1888
|
{
|
|
@@ -2010,6 +1908,7 @@ var adminListUserEmails = (options) => (options.client ?? client).get({
|
|
|
2010
1908
|
...options
|
|
2011
1909
|
});
|
|
2012
1910
|
var adminCreatePublicKey = (options) => (options.client ?? client).post({
|
|
1911
|
+
responseType: "json",
|
|
2013
1912
|
security: [
|
|
2014
1913
|
{ scheme: "basic", type: "http" },
|
|
2015
1914
|
{
|
|
@@ -2039,6 +1938,7 @@ var adminCreatePublicKey = (options) => (options.client ?? client).post({
|
|
|
2039
1938
|
}
|
|
2040
1939
|
});
|
|
2041
1940
|
var adminDeleteUserPublicKey = (options) => (options.client ?? client).delete({
|
|
1941
|
+
responseType: "json",
|
|
2042
1942
|
security: [
|
|
2043
1943
|
{ scheme: "basic", type: "http" },
|
|
2044
1944
|
{
|
|
@@ -2064,6 +1964,7 @@ var adminDeleteUserPublicKey = (options) => (options.client ?? client).delete({
|
|
|
2064
1964
|
...options
|
|
2065
1965
|
});
|
|
2066
1966
|
var adminCreateOrg = (options) => (options.client ?? client).post({
|
|
1967
|
+
responseType: "json",
|
|
2067
1968
|
security: [
|
|
2068
1969
|
{ scheme: "basic", type: "http" },
|
|
2069
1970
|
{
|
|
@@ -2093,6 +1994,7 @@ var adminCreateOrg = (options) => (options.client ?? client).post({
|
|
|
2093
1994
|
}
|
|
2094
1995
|
});
|
|
2095
1996
|
var adminGetUserQuota = (options) => (options.client ?? client).get({
|
|
1997
|
+
responseType: "json",
|
|
2096
1998
|
security: [
|
|
2097
1999
|
{ scheme: "basic", type: "http" },
|
|
2098
2000
|
{
|
|
@@ -2118,6 +2020,7 @@ var adminGetUserQuota = (options) => (options.client ?? client).get({
|
|
|
2118
2020
|
...options
|
|
2119
2021
|
});
|
|
2120
2022
|
var adminSetUserQuotaGroups = (options) => (options.client ?? client).post({
|
|
2023
|
+
responseType: "json",
|
|
2121
2024
|
security: [
|
|
2122
2025
|
{ scheme: "basic", type: "http" },
|
|
2123
2026
|
{
|
|
@@ -2147,6 +2050,7 @@ var adminSetUserQuotaGroups = (options) => (options.client ?? client).post({
|
|
|
2147
2050
|
}
|
|
2148
2051
|
});
|
|
2149
2052
|
var adminRenameUser = (options) => (options.client ?? client).post({
|
|
2053
|
+
responseType: "json",
|
|
2150
2054
|
security: [
|
|
2151
2055
|
{ scheme: "basic", type: "http" },
|
|
2152
2056
|
{
|
|
@@ -2176,6 +2080,7 @@ var adminRenameUser = (options) => (options.client ?? client).post({
|
|
|
2176
2080
|
}
|
|
2177
2081
|
});
|
|
2178
2082
|
var adminCreateRepo = (options) => (options.client ?? client).post({
|
|
2083
|
+
responseType: "json",
|
|
2179
2084
|
security: [
|
|
2180
2085
|
{ scheme: "basic", type: "http" },
|
|
2181
2086
|
{
|
|
@@ -2205,6 +2110,7 @@ var adminCreateRepo = (options) => (options.client ?? client).post({
|
|
|
2205
2110
|
}
|
|
2206
2111
|
});
|
|
2207
2112
|
var listGitignoresTemplates = (options) => (options?.client ?? client).get({
|
|
2113
|
+
responseType: "json",
|
|
2208
2114
|
security: [
|
|
2209
2115
|
{ scheme: "basic", type: "http" },
|
|
2210
2116
|
{
|
|
@@ -2230,6 +2136,7 @@ var listGitignoresTemplates = (options) => (options?.client ?? client).get({
|
|
|
2230
2136
|
...options
|
|
2231
2137
|
});
|
|
2232
2138
|
var getGitignoreTemplateInfo = (options) => (options.client ?? client).get({
|
|
2139
|
+
responseType: "json",
|
|
2233
2140
|
security: [
|
|
2234
2141
|
{ scheme: "basic", type: "http" },
|
|
2235
2142
|
{
|
|
@@ -2255,6 +2162,7 @@ var getGitignoreTemplateInfo = (options) => (options.client ?? client).get({
|
|
|
2255
2162
|
...options
|
|
2256
2163
|
});
|
|
2257
2164
|
var listLabelTemplates = (options) => (options?.client ?? client).get({
|
|
2165
|
+
responseType: "json",
|
|
2258
2166
|
security: [
|
|
2259
2167
|
{ scheme: "basic", type: "http" },
|
|
2260
2168
|
{
|
|
@@ -2280,6 +2188,7 @@ var listLabelTemplates = (options) => (options?.client ?? client).get({
|
|
|
2280
2188
|
...options
|
|
2281
2189
|
});
|
|
2282
2190
|
var getLabelTemplateInfo = (options) => (options.client ?? client).get({
|
|
2191
|
+
responseType: "json",
|
|
2283
2192
|
security: [
|
|
2284
2193
|
{ scheme: "basic", type: "http" },
|
|
2285
2194
|
{
|
|
@@ -2305,6 +2214,7 @@ var getLabelTemplateInfo = (options) => (options.client ?? client).get({
|
|
|
2305
2214
|
...options
|
|
2306
2215
|
});
|
|
2307
2216
|
var listLicenseTemplates = (options) => (options?.client ?? client).get({
|
|
2217
|
+
responseType: "json",
|
|
2308
2218
|
security: [
|
|
2309
2219
|
{ scheme: "basic", type: "http" },
|
|
2310
2220
|
{
|
|
@@ -2330,6 +2240,7 @@ var listLicenseTemplates = (options) => (options?.client ?? client).get({
|
|
|
2330
2240
|
...options
|
|
2331
2241
|
});
|
|
2332
2242
|
var getLicenseTemplateInfo = (options) => (options.client ?? client).get({
|
|
2243
|
+
responseType: "json",
|
|
2333
2244
|
security: [
|
|
2334
2245
|
{ scheme: "basic", type: "http" },
|
|
2335
2246
|
{
|
|
@@ -2355,6 +2266,7 @@ var getLicenseTemplateInfo = (options) => (options.client ?? client).get({
|
|
|
2355
2266
|
...options
|
|
2356
2267
|
});
|
|
2357
2268
|
var renderMarkdown = (options) => (options?.client ?? client).post({
|
|
2269
|
+
responseType: "text",
|
|
2358
2270
|
security: [
|
|
2359
2271
|
{ scheme: "basic", type: "http" },
|
|
2360
2272
|
{
|
|
@@ -2385,6 +2297,7 @@ var renderMarkdown = (options) => (options?.client ?? client).post({
|
|
|
2385
2297
|
});
|
|
2386
2298
|
var renderMarkdownRaw = (options) => (options.client ?? client).post({
|
|
2387
2299
|
bodySerializer: null,
|
|
2300
|
+
responseType: "text",
|
|
2388
2301
|
security: [
|
|
2389
2302
|
{ scheme: "basic", type: "http" },
|
|
2390
2303
|
{
|
|
@@ -2414,6 +2327,7 @@ var renderMarkdownRaw = (options) => (options.client ?? client).post({
|
|
|
2414
2327
|
}
|
|
2415
2328
|
});
|
|
2416
2329
|
var renderMarkup = (options) => (options?.client ?? client).post({
|
|
2330
|
+
responseType: "text",
|
|
2417
2331
|
security: [
|
|
2418
2332
|
{ scheme: "basic", type: "http" },
|
|
2419
2333
|
{
|
|
@@ -2443,6 +2357,7 @@ var renderMarkup = (options) => (options?.client ?? client).post({
|
|
|
2443
2357
|
}
|
|
2444
2358
|
});
|
|
2445
2359
|
var getNodeInfo = (options) => (options?.client ?? client).get({
|
|
2360
|
+
responseType: "json",
|
|
2446
2361
|
security: [
|
|
2447
2362
|
{ scheme: "basic", type: "http" },
|
|
2448
2363
|
{
|
|
@@ -2468,6 +2383,7 @@ var getNodeInfo = (options) => (options?.client ?? client).get({
|
|
|
2468
2383
|
...options
|
|
2469
2384
|
});
|
|
2470
2385
|
var notifyGetList = (options) => (options?.client ?? client).get({
|
|
2386
|
+
responseType: "json",
|
|
2471
2387
|
security: [
|
|
2472
2388
|
{ scheme: "basic", type: "http" },
|
|
2473
2389
|
{
|
|
@@ -2493,6 +2409,7 @@ var notifyGetList = (options) => (options?.client ?? client).get({
|
|
|
2493
2409
|
...options
|
|
2494
2410
|
});
|
|
2495
2411
|
var notifyReadList = (options) => (options?.client ?? client).put({
|
|
2412
|
+
responseType: "json",
|
|
2496
2413
|
security: [
|
|
2497
2414
|
{ scheme: "basic", type: "http" },
|
|
2498
2415
|
{
|
|
@@ -2518,6 +2435,7 @@ var notifyReadList = (options) => (options?.client ?? client).put({
|
|
|
2518
2435
|
...options
|
|
2519
2436
|
});
|
|
2520
2437
|
var notifyNewAvailable = (options) => (options?.client ?? client).get({
|
|
2438
|
+
responseType: "json",
|
|
2521
2439
|
security: [
|
|
2522
2440
|
{ scheme: "basic", type: "http" },
|
|
2523
2441
|
{
|
|
@@ -2543,6 +2461,7 @@ var notifyNewAvailable = (options) => (options?.client ?? client).get({
|
|
|
2543
2461
|
...options
|
|
2544
2462
|
});
|
|
2545
2463
|
var notifyGetThread = (options) => (options.client ?? client).get({
|
|
2464
|
+
responseType: "json",
|
|
2546
2465
|
security: [
|
|
2547
2466
|
{ scheme: "basic", type: "http" },
|
|
2548
2467
|
{
|
|
@@ -2568,6 +2487,7 @@ var notifyGetThread = (options) => (options.client ?? client).get({
|
|
|
2568
2487
|
...options
|
|
2569
2488
|
});
|
|
2570
2489
|
var notifyReadThread = (options) => (options.client ?? client).patch({
|
|
2490
|
+
responseType: "json",
|
|
2571
2491
|
security: [
|
|
2572
2492
|
{ scheme: "basic", type: "http" },
|
|
2573
2493
|
{
|
|
@@ -2593,6 +2513,7 @@ var notifyReadThread = (options) => (options.client ?? client).patch({
|
|
|
2593
2513
|
...options
|
|
2594
2514
|
});
|
|
2595
2515
|
var createOrgRepoDeprecated = (options) => (options.client ?? client).post({
|
|
2516
|
+
responseType: "json",
|
|
2596
2517
|
security: [
|
|
2597
2518
|
{ scheme: "basic", type: "http" },
|
|
2598
2519
|
{
|
|
@@ -2622,6 +2543,7 @@ var createOrgRepoDeprecated = (options) => (options.client ?? client).post({
|
|
|
2622
2543
|
}
|
|
2623
2544
|
});
|
|
2624
2545
|
var orgGetAll = (options) => (options?.client ?? client).get({
|
|
2546
|
+
responseType: "json",
|
|
2625
2547
|
security: [
|
|
2626
2548
|
{ scheme: "basic", type: "http" },
|
|
2627
2549
|
{
|
|
@@ -2647,6 +2569,7 @@ var orgGetAll = (options) => (options?.client ?? client).get({
|
|
|
2647
2569
|
...options
|
|
2648
2570
|
});
|
|
2649
2571
|
var orgCreate = (options) => (options.client ?? client).post({
|
|
2572
|
+
responseType: "json",
|
|
2650
2573
|
security: [
|
|
2651
2574
|
{ scheme: "basic", type: "http" },
|
|
2652
2575
|
{
|
|
@@ -2676,6 +2599,7 @@ var orgCreate = (options) => (options.client ?? client).post({
|
|
|
2676
2599
|
}
|
|
2677
2600
|
});
|
|
2678
2601
|
var orgDelete = (options) => (options.client ?? client).delete({
|
|
2602
|
+
responseType: "json",
|
|
2679
2603
|
security: [
|
|
2680
2604
|
{ scheme: "basic", type: "http" },
|
|
2681
2605
|
{
|
|
@@ -2701,6 +2625,7 @@ var orgDelete = (options) => (options.client ?? client).delete({
|
|
|
2701
2625
|
...options
|
|
2702
2626
|
});
|
|
2703
2627
|
var orgGet = (options) => (options.client ?? client).get({
|
|
2628
|
+
responseType: "json",
|
|
2704
2629
|
security: [
|
|
2705
2630
|
{ scheme: "basic", type: "http" },
|
|
2706
2631
|
{
|
|
@@ -2726,6 +2651,7 @@ var orgGet = (options) => (options.client ?? client).get({
|
|
|
2726
2651
|
...options
|
|
2727
2652
|
});
|
|
2728
2653
|
var orgEdit = (options) => (options.client ?? client).patch({
|
|
2654
|
+
responseType: "json",
|
|
2729
2655
|
security: [
|
|
2730
2656
|
{ scheme: "basic", type: "http" },
|
|
2731
2657
|
{
|
|
@@ -2755,6 +2681,7 @@ var orgEdit = (options) => (options.client ?? client).patch({
|
|
|
2755
2681
|
}
|
|
2756
2682
|
});
|
|
2757
2683
|
var orgSearchRunJobs = (options) => (options.client ?? client).get({
|
|
2684
|
+
responseType: "json",
|
|
2758
2685
|
security: [
|
|
2759
2686
|
{ scheme: "basic", type: "http" },
|
|
2760
2687
|
{
|
|
@@ -2780,6 +2707,7 @@ var orgSearchRunJobs = (options) => (options.client ?? client).get({
|
|
|
2780
2707
|
...options
|
|
2781
2708
|
});
|
|
2782
2709
|
var orgGetRunnerRegistrationToken = (options) => (options.client ?? client).get({
|
|
2710
|
+
responseType: "json",
|
|
2783
2711
|
security: [
|
|
2784
2712
|
{ scheme: "basic", type: "http" },
|
|
2785
2713
|
{
|
|
@@ -2805,6 +2733,7 @@ var orgGetRunnerRegistrationToken = (options) => (options.client ?? client).get(
|
|
|
2805
2733
|
...options
|
|
2806
2734
|
});
|
|
2807
2735
|
var orgListActionsSecrets = (options) => (options.client ?? client).get({
|
|
2736
|
+
responseType: "json",
|
|
2808
2737
|
security: [
|
|
2809
2738
|
{ scheme: "basic", type: "http" },
|
|
2810
2739
|
{
|
|
@@ -2830,6 +2759,7 @@ var orgListActionsSecrets = (options) => (options.client ?? client).get({
|
|
|
2830
2759
|
...options
|
|
2831
2760
|
});
|
|
2832
2761
|
var deleteOrgSecret = (options) => (options.client ?? client).delete({
|
|
2762
|
+
responseType: "json",
|
|
2833
2763
|
security: [
|
|
2834
2764
|
{ scheme: "basic", type: "http" },
|
|
2835
2765
|
{
|
|
@@ -2855,6 +2785,7 @@ var deleteOrgSecret = (options) => (options.client ?? client).delete({
|
|
|
2855
2785
|
...options
|
|
2856
2786
|
});
|
|
2857
2787
|
var updateOrgSecret = (options) => (options.client ?? client).put({
|
|
2788
|
+
responseType: "json",
|
|
2858
2789
|
security: [
|
|
2859
2790
|
{ scheme: "basic", type: "http" },
|
|
2860
2791
|
{
|
|
@@ -2884,6 +2815,7 @@ var updateOrgSecret = (options) => (options.client ?? client).put({
|
|
|
2884
2815
|
}
|
|
2885
2816
|
});
|
|
2886
2817
|
var getOrgVariablesList = (options) => (options.client ?? client).get({
|
|
2818
|
+
responseType: "json",
|
|
2887
2819
|
security: [
|
|
2888
2820
|
{ scheme: "basic", type: "http" },
|
|
2889
2821
|
{
|
|
@@ -2909,6 +2841,7 @@ var getOrgVariablesList = (options) => (options.client ?? client).get({
|
|
|
2909
2841
|
...options
|
|
2910
2842
|
});
|
|
2911
2843
|
var deleteOrgVariable = (options) => (options.client ?? client).delete({
|
|
2844
|
+
responseType: "json",
|
|
2912
2845
|
security: [
|
|
2913
2846
|
{ scheme: "basic", type: "http" },
|
|
2914
2847
|
{
|
|
@@ -2934,6 +2867,7 @@ var deleteOrgVariable = (options) => (options.client ?? client).delete({
|
|
|
2934
2867
|
...options
|
|
2935
2868
|
});
|
|
2936
2869
|
var getOrgVariable = (options) => (options.client ?? client).get({
|
|
2870
|
+
responseType: "json",
|
|
2937
2871
|
security: [
|
|
2938
2872
|
{ scheme: "basic", type: "http" },
|
|
2939
2873
|
{
|
|
@@ -2959,6 +2893,7 @@ var getOrgVariable = (options) => (options.client ?? client).get({
|
|
|
2959
2893
|
...options
|
|
2960
2894
|
});
|
|
2961
2895
|
var createOrgVariable = (options) => (options.client ?? client).post({
|
|
2896
|
+
responseType: "json",
|
|
2962
2897
|
security: [
|
|
2963
2898
|
{ scheme: "basic", type: "http" },
|
|
2964
2899
|
{
|
|
@@ -2988,6 +2923,7 @@ var createOrgVariable = (options) => (options.client ?? client).post({
|
|
|
2988
2923
|
}
|
|
2989
2924
|
});
|
|
2990
2925
|
var updateOrgVariable = (options) => (options.client ?? client).put({
|
|
2926
|
+
responseType: "json",
|
|
2991
2927
|
security: [
|
|
2992
2928
|
{ scheme: "basic", type: "http" },
|
|
2993
2929
|
{
|
|
@@ -3017,6 +2953,7 @@ var updateOrgVariable = (options) => (options.client ?? client).put({
|
|
|
3017
2953
|
}
|
|
3018
2954
|
});
|
|
3019
2955
|
var orgListActivityFeeds = (options) => (options.client ?? client).get({
|
|
2956
|
+
responseType: "json",
|
|
3020
2957
|
security: [
|
|
3021
2958
|
{ scheme: "basic", type: "http" },
|
|
3022
2959
|
{
|
|
@@ -3042,6 +2979,7 @@ var orgListActivityFeeds = (options) => (options.client ?? client).get({
|
|
|
3042
2979
|
...options
|
|
3043
2980
|
});
|
|
3044
2981
|
var orgDeleteAvatar = (options) => (options.client ?? client).delete({
|
|
2982
|
+
responseType: "json",
|
|
3045
2983
|
security: [
|
|
3046
2984
|
{ scheme: "basic", type: "http" },
|
|
3047
2985
|
{
|
|
@@ -3067,6 +3005,7 @@ var orgDeleteAvatar = (options) => (options.client ?? client).delete({
|
|
|
3067
3005
|
...options
|
|
3068
3006
|
});
|
|
3069
3007
|
var orgUpdateAvatar = (options) => (options.client ?? client).post({
|
|
3008
|
+
responseType: "json",
|
|
3070
3009
|
security: [
|
|
3071
3010
|
{ scheme: "basic", type: "http" },
|
|
3072
3011
|
{
|
|
@@ -3096,6 +3035,7 @@ var orgUpdateAvatar = (options) => (options.client ?? client).post({
|
|
|
3096
3035
|
}
|
|
3097
3036
|
});
|
|
3098
3037
|
var orgBlockUser = (options) => (options.client ?? client).put({
|
|
3038
|
+
responseType: "json",
|
|
3099
3039
|
security: [
|
|
3100
3040
|
{ scheme: "basic", type: "http" },
|
|
3101
3041
|
{
|
|
@@ -3121,6 +3061,7 @@ var orgBlockUser = (options) => (options.client ?? client).put({
|
|
|
3121
3061
|
...options
|
|
3122
3062
|
});
|
|
3123
3063
|
var orgListHooks = (options) => (options.client ?? client).get({
|
|
3064
|
+
responseType: "json",
|
|
3124
3065
|
security: [
|
|
3125
3066
|
{ scheme: "basic", type: "http" },
|
|
3126
3067
|
{
|
|
@@ -3146,6 +3087,7 @@ var orgListHooks = (options) => (options.client ?? client).get({
|
|
|
3146
3087
|
...options
|
|
3147
3088
|
});
|
|
3148
3089
|
var orgCreateHook = (options) => (options.client ?? client).post({
|
|
3090
|
+
responseType: "json",
|
|
3149
3091
|
security: [
|
|
3150
3092
|
{ scheme: "basic", type: "http" },
|
|
3151
3093
|
{
|
|
@@ -3175,6 +3117,7 @@ var orgCreateHook = (options) => (options.client ?? client).post({
|
|
|
3175
3117
|
}
|
|
3176
3118
|
});
|
|
3177
3119
|
var orgDeleteHook = (options) => (options.client ?? client).delete({
|
|
3120
|
+
responseType: "json",
|
|
3178
3121
|
security: [
|
|
3179
3122
|
{ scheme: "basic", type: "http" },
|
|
3180
3123
|
{
|
|
@@ -3200,6 +3143,7 @@ var orgDeleteHook = (options) => (options.client ?? client).delete({
|
|
|
3200
3143
|
...options
|
|
3201
3144
|
});
|
|
3202
3145
|
var orgGetHook = (options) => (options.client ?? client).get({
|
|
3146
|
+
responseType: "json",
|
|
3203
3147
|
security: [
|
|
3204
3148
|
{ scheme: "basic", type: "http" },
|
|
3205
3149
|
{
|
|
@@ -3225,6 +3169,7 @@ var orgGetHook = (options) => (options.client ?? client).get({
|
|
|
3225
3169
|
...options
|
|
3226
3170
|
});
|
|
3227
3171
|
var orgEditHook = (options) => (options.client ?? client).patch({
|
|
3172
|
+
responseType: "json",
|
|
3228
3173
|
security: [
|
|
3229
3174
|
{ scheme: "basic", type: "http" },
|
|
3230
3175
|
{
|
|
@@ -3254,6 +3199,7 @@ var orgEditHook = (options) => (options.client ?? client).patch({
|
|
|
3254
3199
|
}
|
|
3255
3200
|
});
|
|
3256
3201
|
var orgListLabels = (options) => (options.client ?? client).get({
|
|
3202
|
+
responseType: "json",
|
|
3257
3203
|
security: [
|
|
3258
3204
|
{ scheme: "basic", type: "http" },
|
|
3259
3205
|
{
|
|
@@ -3279,6 +3225,7 @@ var orgListLabels = (options) => (options.client ?? client).get({
|
|
|
3279
3225
|
...options
|
|
3280
3226
|
});
|
|
3281
3227
|
var orgCreateLabel = (options) => (options.client ?? client).post({
|
|
3228
|
+
responseType: "json",
|
|
3282
3229
|
security: [
|
|
3283
3230
|
{ scheme: "basic", type: "http" },
|
|
3284
3231
|
{
|
|
@@ -3308,6 +3255,7 @@ var orgCreateLabel = (options) => (options.client ?? client).post({
|
|
|
3308
3255
|
}
|
|
3309
3256
|
});
|
|
3310
3257
|
var orgDeleteLabel = (options) => (options.client ?? client).delete({
|
|
3258
|
+
responseType: "json",
|
|
3311
3259
|
security: [
|
|
3312
3260
|
{ scheme: "basic", type: "http" },
|
|
3313
3261
|
{
|
|
@@ -3333,6 +3281,7 @@ var orgDeleteLabel = (options) => (options.client ?? client).delete({
|
|
|
3333
3281
|
...options
|
|
3334
3282
|
});
|
|
3335
3283
|
var orgGetLabel = (options) => (options.client ?? client).get({
|
|
3284
|
+
responseType: "json",
|
|
3336
3285
|
security: [
|
|
3337
3286
|
{ scheme: "basic", type: "http" },
|
|
3338
3287
|
{
|
|
@@ -3358,6 +3307,7 @@ var orgGetLabel = (options) => (options.client ?? client).get({
|
|
|
3358
3307
|
...options
|
|
3359
3308
|
});
|
|
3360
3309
|
var orgEditLabel = (options) => (options.client ?? client).patch({
|
|
3310
|
+
responseType: "json",
|
|
3361
3311
|
security: [
|
|
3362
3312
|
{ scheme: "basic", type: "http" },
|
|
3363
3313
|
{
|
|
@@ -3387,6 +3337,7 @@ var orgEditLabel = (options) => (options.client ?? client).patch({
|
|
|
3387
3337
|
}
|
|
3388
3338
|
});
|
|
3389
3339
|
var orgListBlockedUsers = (options) => (options.client ?? client).get({
|
|
3340
|
+
responseType: "json",
|
|
3390
3341
|
security: [
|
|
3391
3342
|
{ scheme: "basic", type: "http" },
|
|
3392
3343
|
{
|
|
@@ -3412,6 +3363,7 @@ var orgListBlockedUsers = (options) => (options.client ?? client).get({
|
|
|
3412
3363
|
...options
|
|
3413
3364
|
});
|
|
3414
3365
|
var orgListMembers = (options) => (options.client ?? client).get({
|
|
3366
|
+
responseType: "json",
|
|
3415
3367
|
security: [
|
|
3416
3368
|
{ scheme: "basic", type: "http" },
|
|
3417
3369
|
{
|
|
@@ -3437,6 +3389,7 @@ var orgListMembers = (options) => (options.client ?? client).get({
|
|
|
3437
3389
|
...options
|
|
3438
3390
|
});
|
|
3439
3391
|
var orgDeleteMember = (options) => (options.client ?? client).delete({
|
|
3392
|
+
responseType: "json",
|
|
3440
3393
|
security: [
|
|
3441
3394
|
{ scheme: "basic", type: "http" },
|
|
3442
3395
|
{
|
|
@@ -3462,6 +3415,7 @@ var orgDeleteMember = (options) => (options.client ?? client).delete({
|
|
|
3462
3415
|
...options
|
|
3463
3416
|
});
|
|
3464
3417
|
var orgIsMember = (options) => (options.client ?? client).get({
|
|
3418
|
+
responseType: "json",
|
|
3465
3419
|
security: [
|
|
3466
3420
|
{ scheme: "basic", type: "http" },
|
|
3467
3421
|
{
|
|
@@ -3487,6 +3441,7 @@ var orgIsMember = (options) => (options.client ?? client).get({
|
|
|
3487
3441
|
...options
|
|
3488
3442
|
});
|
|
3489
3443
|
var orgListPublicMembers = (options) => (options.client ?? client).get({
|
|
3444
|
+
responseType: "json",
|
|
3490
3445
|
security: [
|
|
3491
3446
|
{ scheme: "basic", type: "http" },
|
|
3492
3447
|
{
|
|
@@ -3512,6 +3467,7 @@ var orgListPublicMembers = (options) => (options.client ?? client).get({
|
|
|
3512
3467
|
...options
|
|
3513
3468
|
});
|
|
3514
3469
|
var orgConcealMember = (options) => (options.client ?? client).delete({
|
|
3470
|
+
responseType: "json",
|
|
3515
3471
|
security: [
|
|
3516
3472
|
{ scheme: "basic", type: "http" },
|
|
3517
3473
|
{
|
|
@@ -3537,6 +3493,7 @@ var orgConcealMember = (options) => (options.client ?? client).delete({
|
|
|
3537
3493
|
...options
|
|
3538
3494
|
});
|
|
3539
3495
|
var orgIsPublicMember = (options) => (options.client ?? client).get({
|
|
3496
|
+
responseType: "json",
|
|
3540
3497
|
security: [
|
|
3541
3498
|
{ scheme: "basic", type: "http" },
|
|
3542
3499
|
{
|
|
@@ -3562,6 +3519,7 @@ var orgIsPublicMember = (options) => (options.client ?? client).get({
|
|
|
3562
3519
|
...options
|
|
3563
3520
|
});
|
|
3564
3521
|
var orgPublicizeMember = (options) => (options.client ?? client).put({
|
|
3522
|
+
responseType: "json",
|
|
3565
3523
|
security: [
|
|
3566
3524
|
{ scheme: "basic", type: "http" },
|
|
3567
3525
|
{
|
|
@@ -3587,6 +3545,7 @@ var orgPublicizeMember = (options) => (options.client ?? client).put({
|
|
|
3587
3545
|
...options
|
|
3588
3546
|
});
|
|
3589
3547
|
var orgGetQuota = (options) => (options.client ?? client).get({
|
|
3548
|
+
responseType: "json",
|
|
3590
3549
|
security: [
|
|
3591
3550
|
{ scheme: "basic", type: "http" },
|
|
3592
3551
|
{
|
|
@@ -3612,6 +3571,7 @@ var orgGetQuota = (options) => (options.client ?? client).get({
|
|
|
3612
3571
|
...options
|
|
3613
3572
|
});
|
|
3614
3573
|
var orgListQuotaArtifacts = (options) => (options.client ?? client).get({
|
|
3574
|
+
responseType: "json",
|
|
3615
3575
|
security: [
|
|
3616
3576
|
{ scheme: "basic", type: "http" },
|
|
3617
3577
|
{
|
|
@@ -3637,6 +3597,7 @@ var orgListQuotaArtifacts = (options) => (options.client ?? client).get({
|
|
|
3637
3597
|
...options
|
|
3638
3598
|
});
|
|
3639
3599
|
var orgListQuotaAttachments = (options) => (options.client ?? client).get({
|
|
3600
|
+
responseType: "json",
|
|
3640
3601
|
security: [
|
|
3641
3602
|
{ scheme: "basic", type: "http" },
|
|
3642
3603
|
{
|
|
@@ -3662,6 +3623,7 @@ var orgListQuotaAttachments = (options) => (options.client ?? client).get({
|
|
|
3662
3623
|
...options
|
|
3663
3624
|
});
|
|
3664
3625
|
var orgCheckQuota = (options) => (options.client ?? client).get({
|
|
3626
|
+
responseType: "json",
|
|
3665
3627
|
security: [
|
|
3666
3628
|
{ scheme: "basic", type: "http" },
|
|
3667
3629
|
{
|
|
@@ -3687,6 +3649,7 @@ var orgCheckQuota = (options) => (options.client ?? client).get({
|
|
|
3687
3649
|
...options
|
|
3688
3650
|
});
|
|
3689
3651
|
var orgListQuotaPackages = (options) => (options.client ?? client).get({
|
|
3652
|
+
responseType: "json",
|
|
3690
3653
|
security: [
|
|
3691
3654
|
{ scheme: "basic", type: "http" },
|
|
3692
3655
|
{
|
|
@@ -3712,6 +3675,7 @@ var orgListQuotaPackages = (options) => (options.client ?? client).get({
|
|
|
3712
3675
|
...options
|
|
3713
3676
|
});
|
|
3714
3677
|
var renameOrg = (options) => (options.client ?? client).post({
|
|
3678
|
+
responseType: "json",
|
|
3715
3679
|
security: [
|
|
3716
3680
|
{ scheme: "basic", type: "http" },
|
|
3717
3681
|
{
|
|
@@ -3741,6 +3705,7 @@ var renameOrg = (options) => (options.client ?? client).post({
|
|
|
3741
3705
|
}
|
|
3742
3706
|
});
|
|
3743
3707
|
var orgListRepos = (options) => (options.client ?? client).get({
|
|
3708
|
+
responseType: "json",
|
|
3744
3709
|
security: [
|
|
3745
3710
|
{ scheme: "basic", type: "http" },
|
|
3746
3711
|
{
|
|
@@ -3766,6 +3731,7 @@ var orgListRepos = (options) => (options.client ?? client).get({
|
|
|
3766
3731
|
...options
|
|
3767
3732
|
});
|
|
3768
3733
|
var createOrgRepo = (options) => (options.client ?? client).post({
|
|
3734
|
+
responseType: "json",
|
|
3769
3735
|
security: [
|
|
3770
3736
|
{ scheme: "basic", type: "http" },
|
|
3771
3737
|
{
|
|
@@ -3795,6 +3761,7 @@ var createOrgRepo = (options) => (options.client ?? client).post({
|
|
|
3795
3761
|
}
|
|
3796
3762
|
});
|
|
3797
3763
|
var orgListTeams = (options) => (options.client ?? client).get({
|
|
3764
|
+
responseType: "json",
|
|
3798
3765
|
security: [
|
|
3799
3766
|
{ scheme: "basic", type: "http" },
|
|
3800
3767
|
{
|
|
@@ -3820,6 +3787,7 @@ var orgListTeams = (options) => (options.client ?? client).get({
|
|
|
3820
3787
|
...options
|
|
3821
3788
|
});
|
|
3822
3789
|
var orgCreateTeam = (options) => (options.client ?? client).post({
|
|
3790
|
+
responseType: "json",
|
|
3823
3791
|
security: [
|
|
3824
3792
|
{ scheme: "basic", type: "http" },
|
|
3825
3793
|
{
|
|
@@ -3849,6 +3817,7 @@ var orgCreateTeam = (options) => (options.client ?? client).post({
|
|
|
3849
3817
|
}
|
|
3850
3818
|
});
|
|
3851
3819
|
var teamSearch = (options) => (options.client ?? client).get({
|
|
3820
|
+
responseType: "json",
|
|
3852
3821
|
security: [
|
|
3853
3822
|
{ scheme: "basic", type: "http" },
|
|
3854
3823
|
{
|
|
@@ -3874,6 +3843,7 @@ var teamSearch = (options) => (options.client ?? client).get({
|
|
|
3874
3843
|
...options
|
|
3875
3844
|
});
|
|
3876
3845
|
var orgUnblockUser = (options) => (options.client ?? client).put({
|
|
3846
|
+
responseType: "json",
|
|
3877
3847
|
security: [
|
|
3878
3848
|
{ scheme: "basic", type: "http" },
|
|
3879
3849
|
{
|
|
@@ -3899,6 +3869,7 @@ var orgUnblockUser = (options) => (options.client ?? client).put({
|
|
|
3899
3869
|
...options
|
|
3900
3870
|
});
|
|
3901
3871
|
var listPackages = (options) => (options.client ?? client).get({
|
|
3872
|
+
responseType: "json",
|
|
3902
3873
|
security: [
|
|
3903
3874
|
{ scheme: "basic", type: "http" },
|
|
3904
3875
|
{
|
|
@@ -3924,6 +3895,7 @@ var listPackages = (options) => (options.client ?? client).get({
|
|
|
3924
3895
|
...options
|
|
3925
3896
|
});
|
|
3926
3897
|
var linkPackage = (options) => (options.client ?? client).post({
|
|
3898
|
+
responseType: "json",
|
|
3927
3899
|
security: [
|
|
3928
3900
|
{ scheme: "basic", type: "http" },
|
|
3929
3901
|
{
|
|
@@ -3949,6 +3921,7 @@ var linkPackage = (options) => (options.client ?? client).post({
|
|
|
3949
3921
|
...options
|
|
3950
3922
|
});
|
|
3951
3923
|
var unlinkPackage = (options) => (options.client ?? client).post({
|
|
3924
|
+
responseType: "json",
|
|
3952
3925
|
security: [
|
|
3953
3926
|
{ scheme: "basic", type: "http" },
|
|
3954
3927
|
{
|
|
@@ -3974,6 +3947,7 @@ var unlinkPackage = (options) => (options.client ?? client).post({
|
|
|
3974
3947
|
...options
|
|
3975
3948
|
});
|
|
3976
3949
|
var deletePackage = (options) => (options.client ?? client).delete({
|
|
3950
|
+
responseType: "json",
|
|
3977
3951
|
security: [
|
|
3978
3952
|
{ scheme: "basic", type: "http" },
|
|
3979
3953
|
{
|
|
@@ -3999,6 +3973,7 @@ var deletePackage = (options) => (options.client ?? client).delete({
|
|
|
3999
3973
|
...options
|
|
4000
3974
|
});
|
|
4001
3975
|
var getPackage = (options) => (options.client ?? client).get({
|
|
3976
|
+
responseType: "json",
|
|
4002
3977
|
security: [
|
|
4003
3978
|
{ scheme: "basic", type: "http" },
|
|
4004
3979
|
{
|
|
@@ -4024,6 +3999,7 @@ var getPackage = (options) => (options.client ?? client).get({
|
|
|
4024
3999
|
...options
|
|
4025
4000
|
});
|
|
4026
4001
|
var listPackageFiles = (options) => (options.client ?? client).get({
|
|
4002
|
+
responseType: "json",
|
|
4027
4003
|
security: [
|
|
4028
4004
|
{ scheme: "basic", type: "http" },
|
|
4029
4005
|
{
|
|
@@ -4049,6 +4025,7 @@ var listPackageFiles = (options) => (options.client ?? client).get({
|
|
|
4049
4025
|
...options
|
|
4050
4026
|
});
|
|
4051
4027
|
var issueSearchIssues = (options) => (options?.client ?? client).get({
|
|
4028
|
+
responseType: "json",
|
|
4052
4029
|
security: [
|
|
4053
4030
|
{ scheme: "basic", type: "http" },
|
|
4054
4031
|
{
|
|
@@ -4074,6 +4051,7 @@ var issueSearchIssues = (options) => (options?.client ?? client).get({
|
|
|
4074
4051
|
...options
|
|
4075
4052
|
});
|
|
4076
4053
|
var repoMigrate = (options) => (options?.client ?? client).post({
|
|
4054
|
+
responseType: "json",
|
|
4077
4055
|
security: [
|
|
4078
4056
|
{ scheme: "basic", type: "http" },
|
|
4079
4057
|
{
|
|
@@ -4103,6 +4081,7 @@ var repoMigrate = (options) => (options?.client ?? client).post({
|
|
|
4103
4081
|
}
|
|
4104
4082
|
});
|
|
4105
4083
|
var repoSearch = (options) => (options?.client ?? client).get({
|
|
4084
|
+
responseType: "json",
|
|
4106
4085
|
security: [
|
|
4107
4086
|
{ scheme: "basic", type: "http" },
|
|
4108
4087
|
{
|
|
@@ -4128,6 +4107,7 @@ var repoSearch = (options) => (options?.client ?? client).get({
|
|
|
4128
4107
|
...options
|
|
4129
4108
|
});
|
|
4130
4109
|
var repoDelete = (options) => (options.client ?? client).delete({
|
|
4110
|
+
responseType: "json",
|
|
4131
4111
|
security: [
|
|
4132
4112
|
{ scheme: "basic", type: "http" },
|
|
4133
4113
|
{
|
|
@@ -4153,6 +4133,7 @@ var repoDelete = (options) => (options.client ?? client).delete({
|
|
|
4153
4133
|
...options
|
|
4154
4134
|
});
|
|
4155
4135
|
var repoGet = (options) => (options.client ?? client).get({
|
|
4136
|
+
responseType: "json",
|
|
4156
4137
|
security: [
|
|
4157
4138
|
{ scheme: "basic", type: "http" },
|
|
4158
4139
|
{
|
|
@@ -4178,6 +4159,7 @@ var repoGet = (options) => (options.client ?? client).get({
|
|
|
4178
4159
|
...options
|
|
4179
4160
|
});
|
|
4180
4161
|
var repoEdit = (options) => (options.client ?? client).patch({
|
|
4162
|
+
responseType: "json",
|
|
4181
4163
|
security: [
|
|
4182
4164
|
{ scheme: "basic", type: "http" },
|
|
4183
4165
|
{
|
|
@@ -4207,6 +4189,7 @@ var repoEdit = (options) => (options.client ?? client).patch({
|
|
|
4207
4189
|
}
|
|
4208
4190
|
});
|
|
4209
4191
|
var repoSearchRunJobs = (options) => (options.client ?? client).get({
|
|
4192
|
+
responseType: "json",
|
|
4210
4193
|
security: [
|
|
4211
4194
|
{ scheme: "basic", type: "http" },
|
|
4212
4195
|
{
|
|
@@ -4232,6 +4215,7 @@ var repoSearchRunJobs = (options) => (options.client ?? client).get({
|
|
|
4232
4215
|
...options
|
|
4233
4216
|
});
|
|
4234
4217
|
var repoGetRunnerRegistrationToken = (options) => (options.client ?? client).get({
|
|
4218
|
+
responseType: "json",
|
|
4235
4219
|
security: [
|
|
4236
4220
|
{ scheme: "basic", type: "http" },
|
|
4237
4221
|
{
|
|
@@ -4258,6 +4242,7 @@ var repoGetRunnerRegistrationToken = (options) => (options.client ?? client).get
|
|
|
4258
4242
|
});
|
|
4259
4243
|
var listActionRuns = (options) => (options.client ?? client).get({
|
|
4260
4244
|
querySerializer: { parameters: { event: { array: { explode: false } }, status: { array: { explode: false } } } },
|
|
4245
|
+
responseType: "json",
|
|
4261
4246
|
security: [
|
|
4262
4247
|
{ scheme: "basic", type: "http" },
|
|
4263
4248
|
{
|
|
@@ -4283,6 +4268,7 @@ var listActionRuns = (options) => (options.client ?? client).get({
|
|
|
4283
4268
|
...options
|
|
4284
4269
|
});
|
|
4285
4270
|
var actionRun = (options) => (options.client ?? client).get({
|
|
4271
|
+
responseType: "json",
|
|
4286
4272
|
security: [
|
|
4287
4273
|
{ scheme: "basic", type: "http" },
|
|
4288
4274
|
{
|
|
@@ -4308,6 +4294,7 @@ var actionRun = (options) => (options.client ?? client).get({
|
|
|
4308
4294
|
...options
|
|
4309
4295
|
});
|
|
4310
4296
|
var repoListActionsSecrets = (options) => (options.client ?? client).get({
|
|
4297
|
+
responseType: "json",
|
|
4311
4298
|
security: [
|
|
4312
4299
|
{ scheme: "basic", type: "http" },
|
|
4313
4300
|
{
|
|
@@ -4333,6 +4320,7 @@ var repoListActionsSecrets = (options) => (options.client ?? client).get({
|
|
|
4333
4320
|
...options
|
|
4334
4321
|
});
|
|
4335
4322
|
var deleteRepoSecret = (options) => (options.client ?? client).delete({
|
|
4323
|
+
responseType: "json",
|
|
4336
4324
|
security: [
|
|
4337
4325
|
{ scheme: "basic", type: "http" },
|
|
4338
4326
|
{
|
|
@@ -4358,6 +4346,7 @@ var deleteRepoSecret = (options) => (options.client ?? client).delete({
|
|
|
4358
4346
|
...options
|
|
4359
4347
|
});
|
|
4360
4348
|
var updateRepoSecret = (options) => (options.client ?? client).put({
|
|
4349
|
+
responseType: "json",
|
|
4361
4350
|
security: [
|
|
4362
4351
|
{ scheme: "basic", type: "http" },
|
|
4363
4352
|
{
|
|
@@ -4387,6 +4376,7 @@ var updateRepoSecret = (options) => (options.client ?? client).put({
|
|
|
4387
4376
|
}
|
|
4388
4377
|
});
|
|
4389
4378
|
var listActionTasks = (options) => (options.client ?? client).get({
|
|
4379
|
+
responseType: "json",
|
|
4390
4380
|
security: [
|
|
4391
4381
|
{ scheme: "basic", type: "http" },
|
|
4392
4382
|
{
|
|
@@ -4412,6 +4402,7 @@ var listActionTasks = (options) => (options.client ?? client).get({
|
|
|
4412
4402
|
...options
|
|
4413
4403
|
});
|
|
4414
4404
|
var getRepoVariablesList = (options) => (options.client ?? client).get({
|
|
4405
|
+
responseType: "json",
|
|
4415
4406
|
security: [
|
|
4416
4407
|
{ scheme: "basic", type: "http" },
|
|
4417
4408
|
{
|
|
@@ -4437,6 +4428,7 @@ var getRepoVariablesList = (options) => (options.client ?? client).get({
|
|
|
4437
4428
|
...options
|
|
4438
4429
|
});
|
|
4439
4430
|
var deleteRepoVariable = (options) => (options.client ?? client).delete({
|
|
4431
|
+
responseType: "json",
|
|
4440
4432
|
security: [
|
|
4441
4433
|
{ scheme: "basic", type: "http" },
|
|
4442
4434
|
{
|
|
@@ -4462,6 +4454,7 @@ var deleteRepoVariable = (options) => (options.client ?? client).delete({
|
|
|
4462
4454
|
...options
|
|
4463
4455
|
});
|
|
4464
4456
|
var getRepoVariable = (options) => (options.client ?? client).get({
|
|
4457
|
+
responseType: "json",
|
|
4465
4458
|
security: [
|
|
4466
4459
|
{ scheme: "basic", type: "http" },
|
|
4467
4460
|
{
|
|
@@ -4487,6 +4480,7 @@ var getRepoVariable = (options) => (options.client ?? client).get({
|
|
|
4487
4480
|
...options
|
|
4488
4481
|
});
|
|
4489
4482
|
var createRepoVariable = (options) => (options.client ?? client).post({
|
|
4483
|
+
responseType: "json",
|
|
4490
4484
|
security: [
|
|
4491
4485
|
{ scheme: "basic", type: "http" },
|
|
4492
4486
|
{
|
|
@@ -4516,6 +4510,7 @@ var createRepoVariable = (options) => (options.client ?? client).post({
|
|
|
4516
4510
|
}
|
|
4517
4511
|
});
|
|
4518
4512
|
var updateRepoVariable = (options) => (options.client ?? client).put({
|
|
4513
|
+
responseType: "json",
|
|
4519
4514
|
security: [
|
|
4520
4515
|
{ scheme: "basic", type: "http" },
|
|
4521
4516
|
{
|
|
@@ -4545,6 +4540,7 @@ var updateRepoVariable = (options) => (options.client ?? client).put({
|
|
|
4545
4540
|
}
|
|
4546
4541
|
});
|
|
4547
4542
|
var dispatchWorkflow = (options) => (options.client ?? client).post({
|
|
4543
|
+
responseType: "json",
|
|
4548
4544
|
security: [
|
|
4549
4545
|
{ scheme: "basic", type: "http" },
|
|
4550
4546
|
{
|
|
@@ -4574,6 +4570,7 @@ var dispatchWorkflow = (options) => (options.client ?? client).post({
|
|
|
4574
4570
|
}
|
|
4575
4571
|
});
|
|
4576
4572
|
var repoListActivityFeeds = (options) => (options.client ?? client).get({
|
|
4573
|
+
responseType: "json",
|
|
4577
4574
|
security: [
|
|
4578
4575
|
{ scheme: "basic", type: "http" },
|
|
4579
4576
|
{
|
|
@@ -4599,6 +4596,7 @@ var repoListActivityFeeds = (options) => (options.client ?? client).get({
|
|
|
4599
4596
|
...options
|
|
4600
4597
|
});
|
|
4601
4598
|
var repoGetArchive = (options) => (options.client ?? client).get({
|
|
4599
|
+
responseType: "blob",
|
|
4602
4600
|
security: [
|
|
4603
4601
|
{ scheme: "basic", type: "http" },
|
|
4604
4602
|
{
|
|
@@ -4624,6 +4622,7 @@ var repoGetArchive = (options) => (options.client ?? client).get({
|
|
|
4624
4622
|
...options
|
|
4625
4623
|
});
|
|
4626
4624
|
var repoGetAssignees = (options) => (options.client ?? client).get({
|
|
4625
|
+
responseType: "json",
|
|
4627
4626
|
security: [
|
|
4628
4627
|
{ scheme: "basic", type: "http" },
|
|
4629
4628
|
{
|
|
@@ -4649,6 +4648,7 @@ var repoGetAssignees = (options) => (options.client ?? client).get({
|
|
|
4649
4648
|
...options
|
|
4650
4649
|
});
|
|
4651
4650
|
var repoDeleteAvatar = (options) => (options.client ?? client).delete({
|
|
4651
|
+
responseType: "json",
|
|
4652
4652
|
security: [
|
|
4653
4653
|
{ scheme: "basic", type: "http" },
|
|
4654
4654
|
{
|
|
@@ -4674,6 +4674,7 @@ var repoDeleteAvatar = (options) => (options.client ?? client).delete({
|
|
|
4674
4674
|
...options
|
|
4675
4675
|
});
|
|
4676
4676
|
var repoUpdateAvatar = (options) => (options.client ?? client).post({
|
|
4677
|
+
responseType: "json",
|
|
4677
4678
|
security: [
|
|
4678
4679
|
{ scheme: "basic", type: "http" },
|
|
4679
4680
|
{
|
|
@@ -4703,6 +4704,7 @@ var repoUpdateAvatar = (options) => (options.client ?? client).post({
|
|
|
4703
4704
|
}
|
|
4704
4705
|
});
|
|
4705
4706
|
var repoListBranchProtection = (options) => (options.client ?? client).get({
|
|
4707
|
+
responseType: "json",
|
|
4706
4708
|
security: [
|
|
4707
4709
|
{ scheme: "basic", type: "http" },
|
|
4708
4710
|
{
|
|
@@ -4728,6 +4730,7 @@ var repoListBranchProtection = (options) => (options.client ?? client).get({
|
|
|
4728
4730
|
...options
|
|
4729
4731
|
});
|
|
4730
4732
|
var repoCreateBranchProtection = (options) => (options.client ?? client).post({
|
|
4733
|
+
responseType: "json",
|
|
4731
4734
|
security: [
|
|
4732
4735
|
{ scheme: "basic", type: "http" },
|
|
4733
4736
|
{
|
|
@@ -4757,6 +4760,7 @@ var repoCreateBranchProtection = (options) => (options.client ?? client).post({
|
|
|
4757
4760
|
}
|
|
4758
4761
|
});
|
|
4759
4762
|
var repoDeleteBranchProtection = (options) => (options.client ?? client).delete({
|
|
4763
|
+
responseType: "json",
|
|
4760
4764
|
security: [
|
|
4761
4765
|
{ scheme: "basic", type: "http" },
|
|
4762
4766
|
{
|
|
@@ -4782,6 +4786,7 @@ var repoDeleteBranchProtection = (options) => (options.client ?? client).delete(
|
|
|
4782
4786
|
...options
|
|
4783
4787
|
});
|
|
4784
4788
|
var repoGetBranchProtection = (options) => (options.client ?? client).get({
|
|
4789
|
+
responseType: "json",
|
|
4785
4790
|
security: [
|
|
4786
4791
|
{ scheme: "basic", type: "http" },
|
|
4787
4792
|
{
|
|
@@ -4807,6 +4812,7 @@ var repoGetBranchProtection = (options) => (options.client ?? client).get({
|
|
|
4807
4812
|
...options
|
|
4808
4813
|
});
|
|
4809
4814
|
var repoEditBranchProtection = (options) => (options.client ?? client).patch({
|
|
4815
|
+
responseType: "json",
|
|
4810
4816
|
security: [
|
|
4811
4817
|
{ scheme: "basic", type: "http" },
|
|
4812
4818
|
{
|
|
@@ -4836,6 +4842,7 @@ var repoEditBranchProtection = (options) => (options.client ?? client).patch({
|
|
|
4836
4842
|
}
|
|
4837
4843
|
});
|
|
4838
4844
|
var repoListBranches = (options) => (options.client ?? client).get({
|
|
4845
|
+
responseType: "json",
|
|
4839
4846
|
security: [
|
|
4840
4847
|
{ scheme: "basic", type: "http" },
|
|
4841
4848
|
{
|
|
@@ -4861,6 +4868,7 @@ var repoListBranches = (options) => (options.client ?? client).get({
|
|
|
4861
4868
|
...options
|
|
4862
4869
|
});
|
|
4863
4870
|
var repoCreateBranch = (options) => (options.client ?? client).post({
|
|
4871
|
+
responseType: "json",
|
|
4864
4872
|
security: [
|
|
4865
4873
|
{ scheme: "basic", type: "http" },
|
|
4866
4874
|
{
|
|
@@ -4890,6 +4898,7 @@ var repoCreateBranch = (options) => (options.client ?? client).post({
|
|
|
4890
4898
|
}
|
|
4891
4899
|
});
|
|
4892
4900
|
var repoDeleteBranch = (options) => (options.client ?? client).delete({
|
|
4901
|
+
responseType: "json",
|
|
4893
4902
|
security: [
|
|
4894
4903
|
{ scheme: "basic", type: "http" },
|
|
4895
4904
|
{
|
|
@@ -4915,6 +4924,7 @@ var repoDeleteBranch = (options) => (options.client ?? client).delete({
|
|
|
4915
4924
|
...options
|
|
4916
4925
|
});
|
|
4917
4926
|
var repoGetBranch = (options) => (options.client ?? client).get({
|
|
4927
|
+
responseType: "json",
|
|
4918
4928
|
security: [
|
|
4919
4929
|
{ scheme: "basic", type: "http" },
|
|
4920
4930
|
{
|
|
@@ -4940,6 +4950,7 @@ var repoGetBranch = (options) => (options.client ?? client).get({
|
|
|
4940
4950
|
...options
|
|
4941
4951
|
});
|
|
4942
4952
|
var repoUpdateBranch = (options) => (options.client ?? client).patch({
|
|
4953
|
+
responseType: "json",
|
|
4943
4954
|
security: [
|
|
4944
4955
|
{ scheme: "basic", type: "http" },
|
|
4945
4956
|
{
|
|
@@ -4969,6 +4980,7 @@ var repoUpdateBranch = (options) => (options.client ?? client).patch({
|
|
|
4969
4980
|
}
|
|
4970
4981
|
});
|
|
4971
4982
|
var repoListCollaborators = (options) => (options.client ?? client).get({
|
|
4983
|
+
responseType: "json",
|
|
4972
4984
|
security: [
|
|
4973
4985
|
{ scheme: "basic", type: "http" },
|
|
4974
4986
|
{
|
|
@@ -4994,6 +5006,7 @@ var repoListCollaborators = (options) => (options.client ?? client).get({
|
|
|
4994
5006
|
...options
|
|
4995
5007
|
});
|
|
4996
5008
|
var repoDeleteCollaborator = (options) => (options.client ?? client).delete({
|
|
5009
|
+
responseType: "json",
|
|
4997
5010
|
security: [
|
|
4998
5011
|
{ scheme: "basic", type: "http" },
|
|
4999
5012
|
{
|
|
@@ -5019,6 +5032,7 @@ var repoDeleteCollaborator = (options) => (options.client ?? client).delete({
|
|
|
5019
5032
|
...options
|
|
5020
5033
|
});
|
|
5021
5034
|
var repoCheckCollaborator = (options) => (options.client ?? client).get({
|
|
5035
|
+
responseType: "json",
|
|
5022
5036
|
security: [
|
|
5023
5037
|
{ scheme: "basic", type: "http" },
|
|
5024
5038
|
{
|
|
@@ -5044,6 +5058,7 @@ var repoCheckCollaborator = (options) => (options.client ?? client).get({
|
|
|
5044
5058
|
...options
|
|
5045
5059
|
});
|
|
5046
5060
|
var repoAddCollaborator = (options) => (options.client ?? client).put({
|
|
5061
|
+
responseType: "json",
|
|
5047
5062
|
security: [
|
|
5048
5063
|
{ scheme: "basic", type: "http" },
|
|
5049
5064
|
{
|
|
@@ -5073,6 +5088,7 @@ var repoAddCollaborator = (options) => (options.client ?? client).put({
|
|
|
5073
5088
|
}
|
|
5074
5089
|
});
|
|
5075
5090
|
var repoGetRepoPermissions = (options) => (options.client ?? client).get({
|
|
5091
|
+
responseType: "json",
|
|
5076
5092
|
security: [
|
|
5077
5093
|
{ scheme: "basic", type: "http" },
|
|
5078
5094
|
{
|
|
@@ -5098,6 +5114,7 @@ var repoGetRepoPermissions = (options) => (options.client ?? client).get({
|
|
|
5098
5114
|
...options
|
|
5099
5115
|
});
|
|
5100
5116
|
var repoGetAllCommits = (options) => (options.client ?? client).get({
|
|
5117
|
+
responseType: "json",
|
|
5101
5118
|
security: [
|
|
5102
5119
|
{ scheme: "basic", type: "http" },
|
|
5103
5120
|
{
|
|
@@ -5123,6 +5140,7 @@ var repoGetAllCommits = (options) => (options.client ?? client).get({
|
|
|
5123
5140
|
...options
|
|
5124
5141
|
});
|
|
5125
5142
|
var repoGetCombinedStatusByRef = (options) => (options.client ?? client).get({
|
|
5143
|
+
responseType: "json",
|
|
5126
5144
|
security: [
|
|
5127
5145
|
{ scheme: "basic", type: "http" },
|
|
5128
5146
|
{
|
|
@@ -5148,6 +5166,7 @@ var repoGetCombinedStatusByRef = (options) => (options.client ?? client).get({
|
|
|
5148
5166
|
...options
|
|
5149
5167
|
});
|
|
5150
5168
|
var repoListStatusesByRef = (options) => (options.client ?? client).get({
|
|
5169
|
+
responseType: "json",
|
|
5151
5170
|
security: [
|
|
5152
5171
|
{ scheme: "basic", type: "http" },
|
|
5153
5172
|
{
|
|
@@ -5173,6 +5192,7 @@ var repoListStatusesByRef = (options) => (options.client ?? client).get({
|
|
|
5173
5192
|
...options
|
|
5174
5193
|
});
|
|
5175
5194
|
var repoGetCommitPullRequest = (options) => (options.client ?? client).get({
|
|
5195
|
+
responseType: "json",
|
|
5176
5196
|
security: [
|
|
5177
5197
|
{ scheme: "basic", type: "http" },
|
|
5178
5198
|
{
|
|
@@ -5198,6 +5218,7 @@ var repoGetCommitPullRequest = (options) => (options.client ?? client).get({
|
|
|
5198
5218
|
...options
|
|
5199
5219
|
});
|
|
5200
5220
|
var repoCompareDiff = (options) => (options.client ?? client).get({
|
|
5221
|
+
responseType: "json",
|
|
5201
5222
|
security: [
|
|
5202
5223
|
{ scheme: "basic", type: "http" },
|
|
5203
5224
|
{
|
|
@@ -5223,6 +5244,7 @@ var repoCompareDiff = (options) => (options.client ?? client).get({
|
|
|
5223
5244
|
...options
|
|
5224
5245
|
});
|
|
5225
5246
|
var repoGetContentsList = (options) => (options.client ?? client).get({
|
|
5247
|
+
responseType: "json",
|
|
5226
5248
|
security: [
|
|
5227
5249
|
{ scheme: "basic", type: "http" },
|
|
5228
5250
|
{
|
|
@@ -5248,6 +5270,7 @@ var repoGetContentsList = (options) => (options.client ?? client).get({
|
|
|
5248
5270
|
...options
|
|
5249
5271
|
});
|
|
5250
5272
|
var repoChangeFiles = (options) => (options.client ?? client).post({
|
|
5273
|
+
responseType: "json",
|
|
5251
5274
|
security: [
|
|
5252
5275
|
{ scheme: "basic", type: "http" },
|
|
5253
5276
|
{
|
|
@@ -5277,6 +5300,7 @@ var repoChangeFiles = (options) => (options.client ?? client).post({
|
|
|
5277
5300
|
}
|
|
5278
5301
|
});
|
|
5279
5302
|
var repoDeleteFile = (options) => (options.client ?? client).delete({
|
|
5303
|
+
responseType: "json",
|
|
5280
5304
|
security: [
|
|
5281
5305
|
{ scheme: "basic", type: "http" },
|
|
5282
5306
|
{
|
|
@@ -5306,6 +5330,7 @@ var repoDeleteFile = (options) => (options.client ?? client).delete({
|
|
|
5306
5330
|
}
|
|
5307
5331
|
});
|
|
5308
5332
|
var repoGetContents = (options) => (options.client ?? client).get({
|
|
5333
|
+
responseType: "json",
|
|
5309
5334
|
security: [
|
|
5310
5335
|
{ scheme: "basic", type: "http" },
|
|
5311
5336
|
{
|
|
@@ -5331,6 +5356,7 @@ var repoGetContents = (options) => (options.client ?? client).get({
|
|
|
5331
5356
|
...options
|
|
5332
5357
|
});
|
|
5333
5358
|
var repoCreateFile = (options) => (options.client ?? client).post({
|
|
5359
|
+
responseType: "json",
|
|
5334
5360
|
security: [
|
|
5335
5361
|
{ scheme: "basic", type: "http" },
|
|
5336
5362
|
{
|
|
@@ -5360,6 +5386,7 @@ var repoCreateFile = (options) => (options.client ?? client).post({
|
|
|
5360
5386
|
}
|
|
5361
5387
|
});
|
|
5362
5388
|
var repoUpdateFile = (options) => (options.client ?? client).put({
|
|
5389
|
+
responseType: "json",
|
|
5363
5390
|
security: [
|
|
5364
5391
|
{ scheme: "basic", type: "http" },
|
|
5365
5392
|
{
|
|
@@ -5389,6 +5416,7 @@ var repoUpdateFile = (options) => (options.client ?? client).put({
|
|
|
5389
5416
|
}
|
|
5390
5417
|
});
|
|
5391
5418
|
var repoConvert = (options) => (options.client ?? client).post({
|
|
5419
|
+
responseType: "json",
|
|
5392
5420
|
security: [
|
|
5393
5421
|
{ scheme: "basic", type: "http" },
|
|
5394
5422
|
{
|
|
@@ -5414,6 +5442,7 @@ var repoConvert = (options) => (options.client ?? client).post({
|
|
|
5414
5442
|
...options
|
|
5415
5443
|
});
|
|
5416
5444
|
var repoApplyDiffPatch = (options) => (options.client ?? client).post({
|
|
5445
|
+
responseType: "json",
|
|
5417
5446
|
security: [
|
|
5418
5447
|
{ scheme: "basic", type: "http" },
|
|
5419
5448
|
{
|
|
@@ -5443,6 +5472,7 @@ var repoApplyDiffPatch = (options) => (options.client ?? client).post({
|
|
|
5443
5472
|
}
|
|
5444
5473
|
});
|
|
5445
5474
|
var repoGetEditorConfig = (options) => (options.client ?? client).get({
|
|
5475
|
+
responseType: "json",
|
|
5446
5476
|
security: [
|
|
5447
5477
|
{ scheme: "basic", type: "http" },
|
|
5448
5478
|
{
|
|
@@ -5468,6 +5498,7 @@ var repoGetEditorConfig = (options) => (options.client ?? client).get({
|
|
|
5468
5498
|
...options
|
|
5469
5499
|
});
|
|
5470
5500
|
var repoDeleteAllFlags = (options) => (options.client ?? client).delete({
|
|
5501
|
+
responseType: "json",
|
|
5471
5502
|
security: [
|
|
5472
5503
|
{ scheme: "basic", type: "http" },
|
|
5473
5504
|
{
|
|
@@ -5493,6 +5524,7 @@ var repoDeleteAllFlags = (options) => (options.client ?? client).delete({
|
|
|
5493
5524
|
...options
|
|
5494
5525
|
});
|
|
5495
5526
|
var repoListFlags = (options) => (options.client ?? client).get({
|
|
5527
|
+
responseType: "json",
|
|
5496
5528
|
security: [
|
|
5497
5529
|
{ scheme: "basic", type: "http" },
|
|
5498
5530
|
{
|
|
@@ -5518,6 +5550,7 @@ var repoListFlags = (options) => (options.client ?? client).get({
|
|
|
5518
5550
|
...options
|
|
5519
5551
|
});
|
|
5520
5552
|
var repoReplaceAllFlags = (options) => (options.client ?? client).put({
|
|
5553
|
+
responseType: "json",
|
|
5521
5554
|
security: [
|
|
5522
5555
|
{ scheme: "basic", type: "http" },
|
|
5523
5556
|
{
|
|
@@ -5547,6 +5580,7 @@ var repoReplaceAllFlags = (options) => (options.client ?? client).put({
|
|
|
5547
5580
|
}
|
|
5548
5581
|
});
|
|
5549
5582
|
var repoDeleteFlag = (options) => (options.client ?? client).delete({
|
|
5583
|
+
responseType: "json",
|
|
5550
5584
|
security: [
|
|
5551
5585
|
{ scheme: "basic", type: "http" },
|
|
5552
5586
|
{
|
|
@@ -5572,6 +5606,7 @@ var repoDeleteFlag = (options) => (options.client ?? client).delete({
|
|
|
5572
5606
|
...options
|
|
5573
5607
|
});
|
|
5574
5608
|
var repoCheckFlag = (options) => (options.client ?? client).get({
|
|
5609
|
+
responseType: "json",
|
|
5575
5610
|
security: [
|
|
5576
5611
|
{ scheme: "basic", type: "http" },
|
|
5577
5612
|
{
|
|
@@ -5597,6 +5632,7 @@ var repoCheckFlag = (options) => (options.client ?? client).get({
|
|
|
5597
5632
|
...options
|
|
5598
5633
|
});
|
|
5599
5634
|
var repoAddFlag = (options) => (options.client ?? client).put({
|
|
5635
|
+
responseType: "json",
|
|
5600
5636
|
security: [
|
|
5601
5637
|
{ scheme: "basic", type: "http" },
|
|
5602
5638
|
{
|
|
@@ -5622,6 +5658,7 @@ var repoAddFlag = (options) => (options.client ?? client).put({
|
|
|
5622
5658
|
...options
|
|
5623
5659
|
});
|
|
5624
5660
|
var listForks = (options) => (options.client ?? client).get({
|
|
5661
|
+
responseType: "json",
|
|
5625
5662
|
security: [
|
|
5626
5663
|
{ scheme: "basic", type: "http" },
|
|
5627
5664
|
{
|
|
@@ -5647,6 +5684,7 @@ var listForks = (options) => (options.client ?? client).get({
|
|
|
5647
5684
|
...options
|
|
5648
5685
|
});
|
|
5649
5686
|
var createFork = (options) => (options.client ?? client).post({
|
|
5687
|
+
responseType: "json",
|
|
5650
5688
|
security: [
|
|
5651
5689
|
{ scheme: "basic", type: "http" },
|
|
5652
5690
|
{
|
|
@@ -5676,6 +5714,7 @@ var createFork = (options) => (options.client ?? client).post({
|
|
|
5676
5714
|
}
|
|
5677
5715
|
});
|
|
5678
5716
|
var getBlobs = (options) => (options.client ?? client).get({
|
|
5717
|
+
responseType: "json",
|
|
5679
5718
|
security: [
|
|
5680
5719
|
{ scheme: "basic", type: "http" },
|
|
5681
5720
|
{
|
|
@@ -5701,6 +5740,7 @@ var getBlobs = (options) => (options.client ?? client).get({
|
|
|
5701
5740
|
...options
|
|
5702
5741
|
});
|
|
5703
5742
|
var getBlob = (options) => (options.client ?? client).get({
|
|
5743
|
+
responseType: "json",
|
|
5704
5744
|
security: [
|
|
5705
5745
|
{ scheme: "basic", type: "http" },
|
|
5706
5746
|
{
|
|
@@ -5726,6 +5766,7 @@ var getBlob = (options) => (options.client ?? client).get({
|
|
|
5726
5766
|
...options
|
|
5727
5767
|
});
|
|
5728
5768
|
var repoGetSingleCommit = (options) => (options.client ?? client).get({
|
|
5769
|
+
responseType: "json",
|
|
5729
5770
|
security: [
|
|
5730
5771
|
{ scheme: "basic", type: "http" },
|
|
5731
5772
|
{
|
|
@@ -5751,6 +5792,7 @@ var repoGetSingleCommit = (options) => (options.client ?? client).get({
|
|
|
5751
5792
|
...options
|
|
5752
5793
|
});
|
|
5753
5794
|
var repoDownloadCommitDiffOrPatch = (options) => (options.client ?? client).get({
|
|
5795
|
+
responseType: "text",
|
|
5754
5796
|
security: [
|
|
5755
5797
|
{ scheme: "basic", type: "http" },
|
|
5756
5798
|
{
|
|
@@ -5776,6 +5818,7 @@ var repoDownloadCommitDiffOrPatch = (options) => (options.client ?? client).get(
|
|
|
5776
5818
|
...options
|
|
5777
5819
|
});
|
|
5778
5820
|
var repoRemoveNote = (options) => (options.client ?? client).delete({
|
|
5821
|
+
responseType: "json",
|
|
5779
5822
|
security: [
|
|
5780
5823
|
{ scheme: "basic", type: "http" },
|
|
5781
5824
|
{
|
|
@@ -5801,6 +5844,7 @@ var repoRemoveNote = (options) => (options.client ?? client).delete({
|
|
|
5801
5844
|
...options
|
|
5802
5845
|
});
|
|
5803
5846
|
var repoGetNote = (options) => (options.client ?? client).get({
|
|
5847
|
+
responseType: "json",
|
|
5804
5848
|
security: [
|
|
5805
5849
|
{ scheme: "basic", type: "http" },
|
|
5806
5850
|
{
|
|
@@ -5826,6 +5870,7 @@ var repoGetNote = (options) => (options.client ?? client).get({
|
|
|
5826
5870
|
...options
|
|
5827
5871
|
});
|
|
5828
5872
|
var repoSetNote = (options) => (options.client ?? client).post({
|
|
5873
|
+
responseType: "json",
|
|
5829
5874
|
security: [
|
|
5830
5875
|
{ scheme: "basic", type: "http" },
|
|
5831
5876
|
{
|
|
@@ -5855,6 +5900,7 @@ var repoSetNote = (options) => (options.client ?? client).post({
|
|
|
5855
5900
|
}
|
|
5856
5901
|
});
|
|
5857
5902
|
var repoListAllGitRefs = (options) => (options.client ?? client).get({
|
|
5903
|
+
responseType: "json",
|
|
5858
5904
|
security: [
|
|
5859
5905
|
{ scheme: "basic", type: "http" },
|
|
5860
5906
|
{
|
|
@@ -5880,6 +5926,7 @@ var repoListAllGitRefs = (options) => (options.client ?? client).get({
|
|
|
5880
5926
|
...options
|
|
5881
5927
|
});
|
|
5882
5928
|
var repoListGitRefs = (options) => (options.client ?? client).get({
|
|
5929
|
+
responseType: "json",
|
|
5883
5930
|
security: [
|
|
5884
5931
|
{ scheme: "basic", type: "http" },
|
|
5885
5932
|
{
|
|
@@ -5905,6 +5952,7 @@ var repoListGitRefs = (options) => (options.client ?? client).get({
|
|
|
5905
5952
|
...options
|
|
5906
5953
|
});
|
|
5907
5954
|
var getAnnotatedTag = (options) => (options.client ?? client).get({
|
|
5955
|
+
responseType: "json",
|
|
5908
5956
|
security: [
|
|
5909
5957
|
{ scheme: "basic", type: "http" },
|
|
5910
5958
|
{
|
|
@@ -5930,6 +5978,7 @@ var getAnnotatedTag = (options) => (options.client ?? client).get({
|
|
|
5930
5978
|
...options
|
|
5931
5979
|
});
|
|
5932
5980
|
var getTree = (options) => (options.client ?? client).get({
|
|
5981
|
+
responseType: "json",
|
|
5933
5982
|
security: [
|
|
5934
5983
|
{ scheme: "basic", type: "http" },
|
|
5935
5984
|
{
|
|
@@ -5955,6 +6004,7 @@ var getTree = (options) => (options.client ?? client).get({
|
|
|
5955
6004
|
...options
|
|
5956
6005
|
});
|
|
5957
6006
|
var repoListHooks = (options) => (options.client ?? client).get({
|
|
6007
|
+
responseType: "json",
|
|
5958
6008
|
security: [
|
|
5959
6009
|
{ scheme: "basic", type: "http" },
|
|
5960
6010
|
{
|
|
@@ -5980,6 +6030,7 @@ var repoListHooks = (options) => (options.client ?? client).get({
|
|
|
5980
6030
|
...options
|
|
5981
6031
|
});
|
|
5982
6032
|
var repoCreateHook = (options) => (options.client ?? client).post({
|
|
6033
|
+
responseType: "json",
|
|
5983
6034
|
security: [
|
|
5984
6035
|
{ scheme: "basic", type: "http" },
|
|
5985
6036
|
{
|
|
@@ -6009,6 +6060,7 @@ var repoCreateHook = (options) => (options.client ?? client).post({
|
|
|
6009
6060
|
}
|
|
6010
6061
|
});
|
|
6011
6062
|
var repoListGitHooks = (options) => (options.client ?? client).get({
|
|
6063
|
+
responseType: "json",
|
|
6012
6064
|
security: [
|
|
6013
6065
|
{ scheme: "basic", type: "http" },
|
|
6014
6066
|
{
|
|
@@ -6034,6 +6086,7 @@ var repoListGitHooks = (options) => (options.client ?? client).get({
|
|
|
6034
6086
|
...options
|
|
6035
6087
|
});
|
|
6036
6088
|
var repoDeleteGitHook = (options) => (options.client ?? client).delete({
|
|
6089
|
+
responseType: "json",
|
|
6037
6090
|
security: [
|
|
6038
6091
|
{ scheme: "basic", type: "http" },
|
|
6039
6092
|
{
|
|
@@ -6059,6 +6112,7 @@ var repoDeleteGitHook = (options) => (options.client ?? client).delete({
|
|
|
6059
6112
|
...options
|
|
6060
6113
|
});
|
|
6061
6114
|
var repoGetGitHook = (options) => (options.client ?? client).get({
|
|
6115
|
+
responseType: "json",
|
|
6062
6116
|
security: [
|
|
6063
6117
|
{ scheme: "basic", type: "http" },
|
|
6064
6118
|
{
|
|
@@ -6084,6 +6138,7 @@ var repoGetGitHook = (options) => (options.client ?? client).get({
|
|
|
6084
6138
|
...options
|
|
6085
6139
|
});
|
|
6086
6140
|
var repoEditGitHook = (options) => (options.client ?? client).patch({
|
|
6141
|
+
responseType: "json",
|
|
6087
6142
|
security: [
|
|
6088
6143
|
{ scheme: "basic", type: "http" },
|
|
6089
6144
|
{
|
|
@@ -6113,6 +6168,7 @@ var repoEditGitHook = (options) => (options.client ?? client).patch({
|
|
|
6113
6168
|
}
|
|
6114
6169
|
});
|
|
6115
6170
|
var repoDeleteHook = (options) => (options.client ?? client).delete({
|
|
6171
|
+
responseType: "json",
|
|
6116
6172
|
security: [
|
|
6117
6173
|
{ scheme: "basic", type: "http" },
|
|
6118
6174
|
{
|
|
@@ -6138,6 +6194,7 @@ var repoDeleteHook = (options) => (options.client ?? client).delete({
|
|
|
6138
6194
|
...options
|
|
6139
6195
|
});
|
|
6140
6196
|
var repoGetHook = (options) => (options.client ?? client).get({
|
|
6197
|
+
responseType: "json",
|
|
6141
6198
|
security: [
|
|
6142
6199
|
{ scheme: "basic", type: "http" },
|
|
6143
6200
|
{
|
|
@@ -6163,6 +6220,7 @@ var repoGetHook = (options) => (options.client ?? client).get({
|
|
|
6163
6220
|
...options
|
|
6164
6221
|
});
|
|
6165
6222
|
var repoEditHook = (options) => (options.client ?? client).patch({
|
|
6223
|
+
responseType: "json",
|
|
6166
6224
|
security: [
|
|
6167
6225
|
{ scheme: "basic", type: "http" },
|
|
6168
6226
|
{
|
|
@@ -6192,6 +6250,7 @@ var repoEditHook = (options) => (options.client ?? client).patch({
|
|
|
6192
6250
|
}
|
|
6193
6251
|
});
|
|
6194
6252
|
var repoTestHook = (options) => (options.client ?? client).post({
|
|
6253
|
+
responseType: "json",
|
|
6195
6254
|
security: [
|
|
6196
6255
|
{ scheme: "basic", type: "http" },
|
|
6197
6256
|
{
|
|
@@ -6217,6 +6276,7 @@ var repoTestHook = (options) => (options.client ?? client).post({
|
|
|
6217
6276
|
...options
|
|
6218
6277
|
});
|
|
6219
6278
|
var repoGetIssueConfig = (options) => (options.client ?? client).get({
|
|
6279
|
+
responseType: "json",
|
|
6220
6280
|
security: [
|
|
6221
6281
|
{ scheme: "basic", type: "http" },
|
|
6222
6282
|
{
|
|
@@ -6242,6 +6302,7 @@ var repoGetIssueConfig = (options) => (options.client ?? client).get({
|
|
|
6242
6302
|
...options
|
|
6243
6303
|
});
|
|
6244
6304
|
var repoValidateIssueConfig = (options) => (options.client ?? client).get({
|
|
6305
|
+
responseType: "json",
|
|
6245
6306
|
security: [
|
|
6246
6307
|
{ scheme: "basic", type: "http" },
|
|
6247
6308
|
{
|
|
@@ -6267,6 +6328,7 @@ var repoValidateIssueConfig = (options) => (options.client ?? client).get({
|
|
|
6267
6328
|
...options
|
|
6268
6329
|
});
|
|
6269
6330
|
var repoGetIssueTemplates = (options) => (options.client ?? client).get({
|
|
6331
|
+
responseType: "json",
|
|
6270
6332
|
security: [
|
|
6271
6333
|
{ scheme: "basic", type: "http" },
|
|
6272
6334
|
{
|
|
@@ -6292,6 +6354,7 @@ var repoGetIssueTemplates = (options) => (options.client ?? client).get({
|
|
|
6292
6354
|
...options
|
|
6293
6355
|
});
|
|
6294
6356
|
var issueListIssues = (options) => (options.client ?? client).get({
|
|
6357
|
+
responseType: "json",
|
|
6295
6358
|
security: [
|
|
6296
6359
|
{ scheme: "basic", type: "http" },
|
|
6297
6360
|
{
|
|
@@ -6317,6 +6380,7 @@ var issueListIssues = (options) => (options.client ?? client).get({
|
|
|
6317
6380
|
...options
|
|
6318
6381
|
});
|
|
6319
6382
|
var issueCreateIssue = (options) => (options.client ?? client).post({
|
|
6383
|
+
responseType: "json",
|
|
6320
6384
|
security: [
|
|
6321
6385
|
{ scheme: "basic", type: "http" },
|
|
6322
6386
|
{
|
|
@@ -6346,6 +6410,7 @@ var issueCreateIssue = (options) => (options.client ?? client).post({
|
|
|
6346
6410
|
}
|
|
6347
6411
|
});
|
|
6348
6412
|
var issueGetRepoComments = (options) => (options.client ?? client).get({
|
|
6413
|
+
responseType: "json",
|
|
6349
6414
|
security: [
|
|
6350
6415
|
{ scheme: "basic", type: "http" },
|
|
6351
6416
|
{
|
|
@@ -6371,6 +6436,7 @@ var issueGetRepoComments = (options) => (options.client ?? client).get({
|
|
|
6371
6436
|
...options
|
|
6372
6437
|
});
|
|
6373
6438
|
var issueDeleteComment = (options) => (options.client ?? client).delete({
|
|
6439
|
+
responseType: "json",
|
|
6374
6440
|
security: [
|
|
6375
6441
|
{ scheme: "basic", type: "http" },
|
|
6376
6442
|
{
|
|
@@ -6396,6 +6462,7 @@ var issueDeleteComment = (options) => (options.client ?? client).delete({
|
|
|
6396
6462
|
...options
|
|
6397
6463
|
});
|
|
6398
6464
|
var issueGetComment = (options) => (options.client ?? client).get({
|
|
6465
|
+
responseType: "json",
|
|
6399
6466
|
security: [
|
|
6400
6467
|
{ scheme: "basic", type: "http" },
|
|
6401
6468
|
{
|
|
@@ -6421,6 +6488,7 @@ var issueGetComment = (options) => (options.client ?? client).get({
|
|
|
6421
6488
|
...options
|
|
6422
6489
|
});
|
|
6423
6490
|
var issueEditComment = (options) => (options.client ?? client).patch({
|
|
6491
|
+
responseType: "json",
|
|
6424
6492
|
security: [
|
|
6425
6493
|
{ scheme: "basic", type: "http" },
|
|
6426
6494
|
{
|
|
@@ -6450,6 +6518,7 @@ var issueEditComment = (options) => (options.client ?? client).patch({
|
|
|
6450
6518
|
}
|
|
6451
6519
|
});
|
|
6452
6520
|
var issueListIssueCommentAttachments = (options) => (options.client ?? client).get({
|
|
6521
|
+
responseType: "json",
|
|
6453
6522
|
security: [
|
|
6454
6523
|
{ scheme: "basic", type: "http" },
|
|
6455
6524
|
{
|
|
@@ -6476,6 +6545,7 @@ var issueListIssueCommentAttachments = (options) => (options.client ?? client).g
|
|
|
6476
6545
|
});
|
|
6477
6546
|
var issueCreateIssueCommentAttachment = (options) => (options.client ?? client).post({
|
|
6478
6547
|
...formDataBodySerializer,
|
|
6548
|
+
responseType: "json",
|
|
6479
6549
|
security: [
|
|
6480
6550
|
{ scheme: "basic", type: "http" },
|
|
6481
6551
|
{
|
|
@@ -6505,6 +6575,7 @@ var issueCreateIssueCommentAttachment = (options) => (options.client ?? client).
|
|
|
6505
6575
|
}
|
|
6506
6576
|
});
|
|
6507
6577
|
var issueDeleteIssueCommentAttachment = (options) => (options.client ?? client).delete({
|
|
6578
|
+
responseType: "json",
|
|
6508
6579
|
security: [
|
|
6509
6580
|
{ scheme: "basic", type: "http" },
|
|
6510
6581
|
{
|
|
@@ -6530,6 +6601,7 @@ var issueDeleteIssueCommentAttachment = (options) => (options.client ?? client).
|
|
|
6530
6601
|
...options
|
|
6531
6602
|
});
|
|
6532
6603
|
var issueGetIssueCommentAttachment = (options) => (options.client ?? client).get({
|
|
6604
|
+
responseType: "json",
|
|
6533
6605
|
security: [
|
|
6534
6606
|
{ scheme: "basic", type: "http" },
|
|
6535
6607
|
{
|
|
@@ -6555,6 +6627,7 @@ var issueGetIssueCommentAttachment = (options) => (options.client ?? client).get
|
|
|
6555
6627
|
...options
|
|
6556
6628
|
});
|
|
6557
6629
|
var issueEditIssueCommentAttachment = (options) => (options.client ?? client).patch({
|
|
6630
|
+
responseType: "json",
|
|
6558
6631
|
security: [
|
|
6559
6632
|
{ scheme: "basic", type: "http" },
|
|
6560
6633
|
{
|
|
@@ -6584,6 +6657,7 @@ var issueEditIssueCommentAttachment = (options) => (options.client ?? client).pa
|
|
|
6584
6657
|
}
|
|
6585
6658
|
});
|
|
6586
6659
|
var issueDeleteCommentReaction = (options) => (options.client ?? client).delete({
|
|
6660
|
+
responseType: "json",
|
|
6587
6661
|
security: [
|
|
6588
6662
|
{ scheme: "basic", type: "http" },
|
|
6589
6663
|
{
|
|
@@ -6613,6 +6687,7 @@ var issueDeleteCommentReaction = (options) => (options.client ?? client).delete(
|
|
|
6613
6687
|
}
|
|
6614
6688
|
});
|
|
6615
6689
|
var issueGetCommentReactions = (options) => (options.client ?? client).get({
|
|
6690
|
+
responseType: "json",
|
|
6616
6691
|
security: [
|
|
6617
6692
|
{ scheme: "basic", type: "http" },
|
|
6618
6693
|
{
|
|
@@ -6638,6 +6713,7 @@ var issueGetCommentReactions = (options) => (options.client ?? client).get({
|
|
|
6638
6713
|
...options
|
|
6639
6714
|
});
|
|
6640
6715
|
var issuePostCommentReaction = (options) => (options.client ?? client).post({
|
|
6716
|
+
responseType: "json",
|
|
6641
6717
|
security: [
|
|
6642
6718
|
{ scheme: "basic", type: "http" },
|
|
6643
6719
|
{
|
|
@@ -6667,6 +6743,7 @@ var issuePostCommentReaction = (options) => (options.client ?? client).post({
|
|
|
6667
6743
|
}
|
|
6668
6744
|
});
|
|
6669
6745
|
var repoListPinnedIssues = (options) => (options.client ?? client).get({
|
|
6746
|
+
responseType: "json",
|
|
6670
6747
|
security: [
|
|
6671
6748
|
{ scheme: "basic", type: "http" },
|
|
6672
6749
|
{
|
|
@@ -6692,6 +6769,7 @@ var repoListPinnedIssues = (options) => (options.client ?? client).get({
|
|
|
6692
6769
|
...options
|
|
6693
6770
|
});
|
|
6694
6771
|
var issueDelete = (options) => (options.client ?? client).delete({
|
|
6772
|
+
responseType: "json",
|
|
6695
6773
|
security: [
|
|
6696
6774
|
{ scheme: "basic", type: "http" },
|
|
6697
6775
|
{
|
|
@@ -6717,6 +6795,7 @@ var issueDelete = (options) => (options.client ?? client).delete({
|
|
|
6717
6795
|
...options
|
|
6718
6796
|
});
|
|
6719
6797
|
var issueGetIssue = (options) => (options.client ?? client).get({
|
|
6798
|
+
responseType: "json",
|
|
6720
6799
|
security: [
|
|
6721
6800
|
{ scheme: "basic", type: "http" },
|
|
6722
6801
|
{
|
|
@@ -6742,6 +6821,7 @@ var issueGetIssue = (options) => (options.client ?? client).get({
|
|
|
6742
6821
|
...options
|
|
6743
6822
|
});
|
|
6744
6823
|
var issueEditIssue = (options) => (options.client ?? client).patch({
|
|
6824
|
+
responseType: "json",
|
|
6745
6825
|
security: [
|
|
6746
6826
|
{ scheme: "basic", type: "http" },
|
|
6747
6827
|
{
|
|
@@ -6771,6 +6851,7 @@ var issueEditIssue = (options) => (options.client ?? client).patch({
|
|
|
6771
6851
|
}
|
|
6772
6852
|
});
|
|
6773
6853
|
var issueListIssueAttachments = (options) => (options.client ?? client).get({
|
|
6854
|
+
responseType: "json",
|
|
6774
6855
|
security: [
|
|
6775
6856
|
{ scheme: "basic", type: "http" },
|
|
6776
6857
|
{
|
|
@@ -6797,6 +6878,7 @@ var issueListIssueAttachments = (options) => (options.client ?? client).get({
|
|
|
6797
6878
|
});
|
|
6798
6879
|
var issueCreateIssueAttachment = (options) => (options.client ?? client).post({
|
|
6799
6880
|
...formDataBodySerializer,
|
|
6881
|
+
responseType: "json",
|
|
6800
6882
|
security: [
|
|
6801
6883
|
{ scheme: "basic", type: "http" },
|
|
6802
6884
|
{
|
|
@@ -6826,6 +6908,7 @@ var issueCreateIssueAttachment = (options) => (options.client ?? client).post({
|
|
|
6826
6908
|
}
|
|
6827
6909
|
});
|
|
6828
6910
|
var issueDeleteIssueAttachment = (options) => (options.client ?? client).delete({
|
|
6911
|
+
responseType: "json",
|
|
6829
6912
|
security: [
|
|
6830
6913
|
{ scheme: "basic", type: "http" },
|
|
6831
6914
|
{
|
|
@@ -6851,6 +6934,7 @@ var issueDeleteIssueAttachment = (options) => (options.client ?? client).delete(
|
|
|
6851
6934
|
...options
|
|
6852
6935
|
});
|
|
6853
6936
|
var issueGetIssueAttachment = (options) => (options.client ?? client).get({
|
|
6937
|
+
responseType: "json",
|
|
6854
6938
|
security: [
|
|
6855
6939
|
{ scheme: "basic", type: "http" },
|
|
6856
6940
|
{
|
|
@@ -6876,6 +6960,7 @@ var issueGetIssueAttachment = (options) => (options.client ?? client).get({
|
|
|
6876
6960
|
...options
|
|
6877
6961
|
});
|
|
6878
6962
|
var issueEditIssueAttachment = (options) => (options.client ?? client).patch({
|
|
6963
|
+
responseType: "json",
|
|
6879
6964
|
security: [
|
|
6880
6965
|
{ scheme: "basic", type: "http" },
|
|
6881
6966
|
{
|
|
@@ -6905,6 +6990,7 @@ var issueEditIssueAttachment = (options) => (options.client ?? client).patch({
|
|
|
6905
6990
|
}
|
|
6906
6991
|
});
|
|
6907
6992
|
var issueRemoveIssueBlocking = (options) => (options.client ?? client).delete({
|
|
6993
|
+
responseType: "json",
|
|
6908
6994
|
security: [
|
|
6909
6995
|
{ scheme: "basic", type: "http" },
|
|
6910
6996
|
{
|
|
@@ -6934,6 +7020,7 @@ var issueRemoveIssueBlocking = (options) => (options.client ?? client).delete({
|
|
|
6934
7020
|
}
|
|
6935
7021
|
});
|
|
6936
7022
|
var issueListBlocks = (options) => (options.client ?? client).get({
|
|
7023
|
+
responseType: "json",
|
|
6937
7024
|
security: [
|
|
6938
7025
|
{ scheme: "basic", type: "http" },
|
|
6939
7026
|
{
|
|
@@ -6959,6 +7046,7 @@ var issueListBlocks = (options) => (options.client ?? client).get({
|
|
|
6959
7046
|
...options
|
|
6960
7047
|
});
|
|
6961
7048
|
var issueCreateIssueBlocking = (options) => (options.client ?? client).post({
|
|
7049
|
+
responseType: "json",
|
|
6962
7050
|
security: [
|
|
6963
7051
|
{ scheme: "basic", type: "http" },
|
|
6964
7052
|
{
|
|
@@ -6988,6 +7076,7 @@ var issueCreateIssueBlocking = (options) => (options.client ?? client).post({
|
|
|
6988
7076
|
}
|
|
6989
7077
|
});
|
|
6990
7078
|
var issueGetComments = (options) => (options.client ?? client).get({
|
|
7079
|
+
responseType: "json",
|
|
6991
7080
|
security: [
|
|
6992
7081
|
{ scheme: "basic", type: "http" },
|
|
6993
7082
|
{
|
|
@@ -7013,6 +7102,7 @@ var issueGetComments = (options) => (options.client ?? client).get({
|
|
|
7013
7102
|
...options
|
|
7014
7103
|
});
|
|
7015
7104
|
var issueCreateComment = (options) => (options.client ?? client).post({
|
|
7105
|
+
responseType: "json",
|
|
7016
7106
|
security: [
|
|
7017
7107
|
{ scheme: "basic", type: "http" },
|
|
7018
7108
|
{
|
|
@@ -7042,6 +7132,7 @@ var issueCreateComment = (options) => (options.client ?? client).post({
|
|
|
7042
7132
|
}
|
|
7043
7133
|
});
|
|
7044
7134
|
var issueDeleteCommentDeprecated = (options) => (options.client ?? client).delete({
|
|
7135
|
+
responseType: "json",
|
|
7045
7136
|
security: [
|
|
7046
7137
|
{ scheme: "basic", type: "http" },
|
|
7047
7138
|
{
|
|
@@ -7067,6 +7158,7 @@ var issueDeleteCommentDeprecated = (options) => (options.client ?? client).delet
|
|
|
7067
7158
|
...options
|
|
7068
7159
|
});
|
|
7069
7160
|
var issueEditCommentDeprecated = (options) => (options.client ?? client).patch({
|
|
7161
|
+
responseType: "json",
|
|
7070
7162
|
security: [
|
|
7071
7163
|
{ scheme: "basic", type: "http" },
|
|
7072
7164
|
{
|
|
@@ -7096,6 +7188,7 @@ var issueEditCommentDeprecated = (options) => (options.client ?? client).patch({
|
|
|
7096
7188
|
}
|
|
7097
7189
|
});
|
|
7098
7190
|
var issueEditIssueDeadline = (options) => (options.client ?? client).post({
|
|
7191
|
+
responseType: "json",
|
|
7099
7192
|
security: [
|
|
7100
7193
|
{ scheme: "basic", type: "http" },
|
|
7101
7194
|
{
|
|
@@ -7125,6 +7218,7 @@ var issueEditIssueDeadline = (options) => (options.client ?? client).post({
|
|
|
7125
7218
|
}
|
|
7126
7219
|
});
|
|
7127
7220
|
var issueRemoveIssueDependencies = (options) => (options.client ?? client).delete({
|
|
7221
|
+
responseType: "json",
|
|
7128
7222
|
security: [
|
|
7129
7223
|
{ scheme: "basic", type: "http" },
|
|
7130
7224
|
{
|
|
@@ -7154,6 +7248,7 @@ var issueRemoveIssueDependencies = (options) => (options.client ?? client).delet
|
|
|
7154
7248
|
}
|
|
7155
7249
|
});
|
|
7156
7250
|
var issueListIssueDependencies = (options) => (options.client ?? client).get({
|
|
7251
|
+
responseType: "json",
|
|
7157
7252
|
security: [
|
|
7158
7253
|
{ scheme: "basic", type: "http" },
|
|
7159
7254
|
{
|
|
@@ -7179,6 +7274,7 @@ var issueListIssueDependencies = (options) => (options.client ?? client).get({
|
|
|
7179
7274
|
...options
|
|
7180
7275
|
});
|
|
7181
7276
|
var issueCreateIssueDependencies = (options) => (options.client ?? client).post({
|
|
7277
|
+
responseType: "json",
|
|
7182
7278
|
security: [
|
|
7183
7279
|
{ scheme: "basic", type: "http" },
|
|
7184
7280
|
{
|
|
@@ -7208,6 +7304,7 @@ var issueCreateIssueDependencies = (options) => (options.client ?? client).post(
|
|
|
7208
7304
|
}
|
|
7209
7305
|
});
|
|
7210
7306
|
var issueClearLabels = (options) => (options.client ?? client).delete({
|
|
7307
|
+
responseType: "json",
|
|
7211
7308
|
security: [
|
|
7212
7309
|
{ scheme: "basic", type: "http" },
|
|
7213
7310
|
{
|
|
@@ -7237,6 +7334,7 @@ var issueClearLabels = (options) => (options.client ?? client).delete({
|
|
|
7237
7334
|
}
|
|
7238
7335
|
});
|
|
7239
7336
|
var issueGetLabels = (options) => (options.client ?? client).get({
|
|
7337
|
+
responseType: "json",
|
|
7240
7338
|
security: [
|
|
7241
7339
|
{ scheme: "basic", type: "http" },
|
|
7242
7340
|
{
|
|
@@ -7262,6 +7360,7 @@ var issueGetLabels = (options) => (options.client ?? client).get({
|
|
|
7262
7360
|
...options
|
|
7263
7361
|
});
|
|
7264
7362
|
var issueAddLabel = (options) => (options.client ?? client).post({
|
|
7363
|
+
responseType: "json",
|
|
7265
7364
|
security: [
|
|
7266
7365
|
{ scheme: "basic", type: "http" },
|
|
7267
7366
|
{
|
|
@@ -7291,6 +7390,7 @@ var issueAddLabel = (options) => (options.client ?? client).post({
|
|
|
7291
7390
|
}
|
|
7292
7391
|
});
|
|
7293
7392
|
var issueReplaceLabels = (options) => (options.client ?? client).put({
|
|
7393
|
+
responseType: "json",
|
|
7294
7394
|
security: [
|
|
7295
7395
|
{ scheme: "basic", type: "http" },
|
|
7296
7396
|
{
|
|
@@ -7320,6 +7420,7 @@ var issueReplaceLabels = (options) => (options.client ?? client).put({
|
|
|
7320
7420
|
}
|
|
7321
7421
|
});
|
|
7322
7422
|
var issueRemoveLabel = (options) => (options.client ?? client).delete({
|
|
7423
|
+
responseType: "json",
|
|
7323
7424
|
security: [
|
|
7324
7425
|
{ scheme: "basic", type: "http" },
|
|
7325
7426
|
{
|
|
@@ -7349,6 +7450,7 @@ var issueRemoveLabel = (options) => (options.client ?? client).delete({
|
|
|
7349
7450
|
}
|
|
7350
7451
|
});
|
|
7351
7452
|
var unpinIssue = (options) => (options.client ?? client).delete({
|
|
7453
|
+
responseType: "json",
|
|
7352
7454
|
security: [
|
|
7353
7455
|
{ scheme: "basic", type: "http" },
|
|
7354
7456
|
{
|
|
@@ -7374,6 +7476,7 @@ var unpinIssue = (options) => (options.client ?? client).delete({
|
|
|
7374
7476
|
...options
|
|
7375
7477
|
});
|
|
7376
7478
|
var pinIssue = (options) => (options.client ?? client).post({
|
|
7479
|
+
responseType: "json",
|
|
7377
7480
|
security: [
|
|
7378
7481
|
{ scheme: "basic", type: "http" },
|
|
7379
7482
|
{
|
|
@@ -7399,6 +7502,7 @@ var pinIssue = (options) => (options.client ?? client).post({
|
|
|
7399
7502
|
...options
|
|
7400
7503
|
});
|
|
7401
7504
|
var moveIssuePin = (options) => (options.client ?? client).patch({
|
|
7505
|
+
responseType: "json",
|
|
7402
7506
|
security: [
|
|
7403
7507
|
{ scheme: "basic", type: "http" },
|
|
7404
7508
|
{
|
|
@@ -7424,6 +7528,7 @@ var moveIssuePin = (options) => (options.client ?? client).patch({
|
|
|
7424
7528
|
...options
|
|
7425
7529
|
});
|
|
7426
7530
|
var issueDeleteIssueReaction = (options) => (options.client ?? client).delete({
|
|
7531
|
+
responseType: "json",
|
|
7427
7532
|
security: [
|
|
7428
7533
|
{ scheme: "basic", type: "http" },
|
|
7429
7534
|
{
|
|
@@ -7453,6 +7558,7 @@ var issueDeleteIssueReaction = (options) => (options.client ?? client).delete({
|
|
|
7453
7558
|
}
|
|
7454
7559
|
});
|
|
7455
7560
|
var issueGetIssueReactions = (options) => (options.client ?? client).get({
|
|
7561
|
+
responseType: "json",
|
|
7456
7562
|
security: [
|
|
7457
7563
|
{ scheme: "basic", type: "http" },
|
|
7458
7564
|
{
|
|
@@ -7478,6 +7584,7 @@ var issueGetIssueReactions = (options) => (options.client ?? client).get({
|
|
|
7478
7584
|
...options
|
|
7479
7585
|
});
|
|
7480
7586
|
var issuePostIssueReaction = (options) => (options.client ?? client).post({
|
|
7587
|
+
responseType: "json",
|
|
7481
7588
|
security: [
|
|
7482
7589
|
{ scheme: "basic", type: "http" },
|
|
7483
7590
|
{
|
|
@@ -7507,6 +7614,7 @@ var issuePostIssueReaction = (options) => (options.client ?? client).post({
|
|
|
7507
7614
|
}
|
|
7508
7615
|
});
|
|
7509
7616
|
var issueDeleteStopWatch = (options) => (options.client ?? client).delete({
|
|
7617
|
+
responseType: "json",
|
|
7510
7618
|
security: [
|
|
7511
7619
|
{ scheme: "basic", type: "http" },
|
|
7512
7620
|
{
|
|
@@ -7532,6 +7640,7 @@ var issueDeleteStopWatch = (options) => (options.client ?? client).delete({
|
|
|
7532
7640
|
...options
|
|
7533
7641
|
});
|
|
7534
7642
|
var issueStartStopWatch = (options) => (options.client ?? client).post({
|
|
7643
|
+
responseType: "json",
|
|
7535
7644
|
security: [
|
|
7536
7645
|
{ scheme: "basic", type: "http" },
|
|
7537
7646
|
{
|
|
@@ -7557,6 +7666,7 @@ var issueStartStopWatch = (options) => (options.client ?? client).post({
|
|
|
7557
7666
|
...options
|
|
7558
7667
|
});
|
|
7559
7668
|
var issueStopStopWatch = (options) => (options.client ?? client).post({
|
|
7669
|
+
responseType: "json",
|
|
7560
7670
|
security: [
|
|
7561
7671
|
{ scheme: "basic", type: "http" },
|
|
7562
7672
|
{
|
|
@@ -7582,6 +7692,7 @@ var issueStopStopWatch = (options) => (options.client ?? client).post({
|
|
|
7582
7692
|
...options
|
|
7583
7693
|
});
|
|
7584
7694
|
var issueSubscriptions = (options) => (options.client ?? client).get({
|
|
7695
|
+
responseType: "json",
|
|
7585
7696
|
security: [
|
|
7586
7697
|
{ scheme: "basic", type: "http" },
|
|
7587
7698
|
{
|
|
@@ -7607,6 +7718,7 @@ var issueSubscriptions = (options) => (options.client ?? client).get({
|
|
|
7607
7718
|
...options
|
|
7608
7719
|
});
|
|
7609
7720
|
var issueCheckSubscription = (options) => (options.client ?? client).get({
|
|
7721
|
+
responseType: "json",
|
|
7610
7722
|
security: [
|
|
7611
7723
|
{ scheme: "basic", type: "http" },
|
|
7612
7724
|
{
|
|
@@ -7632,6 +7744,7 @@ var issueCheckSubscription = (options) => (options.client ?? client).get({
|
|
|
7632
7744
|
...options
|
|
7633
7745
|
});
|
|
7634
7746
|
var issueDeleteSubscription = (options) => (options.client ?? client).delete({
|
|
7747
|
+
responseType: "json",
|
|
7635
7748
|
security: [
|
|
7636
7749
|
{ scheme: "basic", type: "http" },
|
|
7637
7750
|
{
|
|
@@ -7657,6 +7770,7 @@ var issueDeleteSubscription = (options) => (options.client ?? client).delete({
|
|
|
7657
7770
|
...options
|
|
7658
7771
|
});
|
|
7659
7772
|
var issueAddSubscription = (options) => (options.client ?? client).put({
|
|
7773
|
+
responseType: "json",
|
|
7660
7774
|
security: [
|
|
7661
7775
|
{ scheme: "basic", type: "http" },
|
|
7662
7776
|
{
|
|
@@ -7682,6 +7796,7 @@ var issueAddSubscription = (options) => (options.client ?? client).put({
|
|
|
7682
7796
|
...options
|
|
7683
7797
|
});
|
|
7684
7798
|
var issueGetCommentsAndTimeline = (options) => (options.client ?? client).get({
|
|
7799
|
+
responseType: "json",
|
|
7685
7800
|
security: [
|
|
7686
7801
|
{ scheme: "basic", type: "http" },
|
|
7687
7802
|
{
|
|
@@ -7707,6 +7822,7 @@ var issueGetCommentsAndTimeline = (options) => (options.client ?? client).get({
|
|
|
7707
7822
|
...options
|
|
7708
7823
|
});
|
|
7709
7824
|
var issueResetTime = (options) => (options.client ?? client).delete({
|
|
7825
|
+
responseType: "json",
|
|
7710
7826
|
security: [
|
|
7711
7827
|
{ scheme: "basic", type: "http" },
|
|
7712
7828
|
{
|
|
@@ -7732,6 +7848,7 @@ var issueResetTime = (options) => (options.client ?? client).delete({
|
|
|
7732
7848
|
...options
|
|
7733
7849
|
});
|
|
7734
7850
|
var issueTrackedTimes = (options) => (options.client ?? client).get({
|
|
7851
|
+
responseType: "json",
|
|
7735
7852
|
security: [
|
|
7736
7853
|
{ scheme: "basic", type: "http" },
|
|
7737
7854
|
{
|
|
@@ -7757,6 +7874,7 @@ var issueTrackedTimes = (options) => (options.client ?? client).get({
|
|
|
7757
7874
|
...options
|
|
7758
7875
|
});
|
|
7759
7876
|
var issueAddTime = (options) => (options.client ?? client).post({
|
|
7877
|
+
responseType: "json",
|
|
7760
7878
|
security: [
|
|
7761
7879
|
{ scheme: "basic", type: "http" },
|
|
7762
7880
|
{
|
|
@@ -7786,6 +7904,7 @@ var issueAddTime = (options) => (options.client ?? client).post({
|
|
|
7786
7904
|
}
|
|
7787
7905
|
});
|
|
7788
7906
|
var issueDeleteTime = (options) => (options.client ?? client).delete({
|
|
7907
|
+
responseType: "json",
|
|
7789
7908
|
security: [
|
|
7790
7909
|
{ scheme: "basic", type: "http" },
|
|
7791
7910
|
{
|
|
@@ -7811,6 +7930,7 @@ var issueDeleteTime = (options) => (options.client ?? client).delete({
|
|
|
7811
7930
|
...options
|
|
7812
7931
|
});
|
|
7813
7932
|
var repoListKeys = (options) => (options.client ?? client).get({
|
|
7933
|
+
responseType: "json",
|
|
7814
7934
|
security: [
|
|
7815
7935
|
{ scheme: "basic", type: "http" },
|
|
7816
7936
|
{
|
|
@@ -7836,6 +7956,7 @@ var repoListKeys = (options) => (options.client ?? client).get({
|
|
|
7836
7956
|
...options
|
|
7837
7957
|
});
|
|
7838
7958
|
var repoCreateKey = (options) => (options.client ?? client).post({
|
|
7959
|
+
responseType: "json",
|
|
7839
7960
|
security: [
|
|
7840
7961
|
{ scheme: "basic", type: "http" },
|
|
7841
7962
|
{
|
|
@@ -7865,6 +7986,7 @@ var repoCreateKey = (options) => (options.client ?? client).post({
|
|
|
7865
7986
|
}
|
|
7866
7987
|
});
|
|
7867
7988
|
var repoDeleteKey = (options) => (options.client ?? client).delete({
|
|
7989
|
+
responseType: "json",
|
|
7868
7990
|
security: [
|
|
7869
7991
|
{ scheme: "basic", type: "http" },
|
|
7870
7992
|
{
|
|
@@ -7890,6 +8012,7 @@ var repoDeleteKey = (options) => (options.client ?? client).delete({
|
|
|
7890
8012
|
...options
|
|
7891
8013
|
});
|
|
7892
8014
|
var repoGetKey = (options) => (options.client ?? client).get({
|
|
8015
|
+
responseType: "json",
|
|
7893
8016
|
security: [
|
|
7894
8017
|
{ scheme: "basic", type: "http" },
|
|
7895
8018
|
{
|
|
@@ -7915,6 +8038,7 @@ var repoGetKey = (options) => (options.client ?? client).get({
|
|
|
7915
8038
|
...options
|
|
7916
8039
|
});
|
|
7917
8040
|
var issueListLabels = (options) => (options.client ?? client).get({
|
|
8041
|
+
responseType: "json",
|
|
7918
8042
|
security: [
|
|
7919
8043
|
{ scheme: "basic", type: "http" },
|
|
7920
8044
|
{
|
|
@@ -7940,6 +8064,7 @@ var issueListLabels = (options) => (options.client ?? client).get({
|
|
|
7940
8064
|
...options
|
|
7941
8065
|
});
|
|
7942
8066
|
var issueCreateLabel = (options) => (options.client ?? client).post({
|
|
8067
|
+
responseType: "json",
|
|
7943
8068
|
security: [
|
|
7944
8069
|
{ scheme: "basic", type: "http" },
|
|
7945
8070
|
{
|
|
@@ -7969,6 +8094,7 @@ var issueCreateLabel = (options) => (options.client ?? client).post({
|
|
|
7969
8094
|
}
|
|
7970
8095
|
});
|
|
7971
8096
|
var issueDeleteLabel = (options) => (options.client ?? client).delete({
|
|
8097
|
+
responseType: "json",
|
|
7972
8098
|
security: [
|
|
7973
8099
|
{ scheme: "basic", type: "http" },
|
|
7974
8100
|
{
|
|
@@ -7994,6 +8120,7 @@ var issueDeleteLabel = (options) => (options.client ?? client).delete({
|
|
|
7994
8120
|
...options
|
|
7995
8121
|
});
|
|
7996
8122
|
var issueGetLabel = (options) => (options.client ?? client).get({
|
|
8123
|
+
responseType: "json",
|
|
7997
8124
|
security: [
|
|
7998
8125
|
{ scheme: "basic", type: "http" },
|
|
7999
8126
|
{
|
|
@@ -8019,6 +8146,7 @@ var issueGetLabel = (options) => (options.client ?? client).get({
|
|
|
8019
8146
|
...options
|
|
8020
8147
|
});
|
|
8021
8148
|
var issueEditLabel = (options) => (options.client ?? client).patch({
|
|
8149
|
+
responseType: "json",
|
|
8022
8150
|
security: [
|
|
8023
8151
|
{ scheme: "basic", type: "http" },
|
|
8024
8152
|
{
|
|
@@ -8048,6 +8176,7 @@ var issueEditLabel = (options) => (options.client ?? client).patch({
|
|
|
8048
8176
|
}
|
|
8049
8177
|
});
|
|
8050
8178
|
var repoGetLanguages = (options) => (options.client ?? client).get({
|
|
8179
|
+
responseType: "json",
|
|
8051
8180
|
security: [
|
|
8052
8181
|
{ scheme: "basic", type: "http" },
|
|
8053
8182
|
{
|
|
@@ -8073,6 +8202,7 @@ var repoGetLanguages = (options) => (options.client ?? client).get({
|
|
|
8073
8202
|
...options
|
|
8074
8203
|
});
|
|
8075
8204
|
var repoGetRawFileOrLfs = (options) => (options.client ?? client).get({
|
|
8205
|
+
responseType: "blob",
|
|
8076
8206
|
security: [
|
|
8077
8207
|
{ scheme: "basic", type: "http" },
|
|
8078
8208
|
{
|
|
@@ -8098,6 +8228,7 @@ var repoGetRawFileOrLfs = (options) => (options.client ?? client).get({
|
|
|
8098
8228
|
...options
|
|
8099
8229
|
});
|
|
8100
8230
|
var issueGetMilestonesList = (options) => (options.client ?? client).get({
|
|
8231
|
+
responseType: "json",
|
|
8101
8232
|
security: [
|
|
8102
8233
|
{ scheme: "basic", type: "http" },
|
|
8103
8234
|
{
|
|
@@ -8123,6 +8254,7 @@ var issueGetMilestonesList = (options) => (options.client ?? client).get({
|
|
|
8123
8254
|
...options
|
|
8124
8255
|
});
|
|
8125
8256
|
var issueCreateMilestone = (options) => (options.client ?? client).post({
|
|
8257
|
+
responseType: "json",
|
|
8126
8258
|
security: [
|
|
8127
8259
|
{ scheme: "basic", type: "http" },
|
|
8128
8260
|
{
|
|
@@ -8152,6 +8284,7 @@ var issueCreateMilestone = (options) => (options.client ?? client).post({
|
|
|
8152
8284
|
}
|
|
8153
8285
|
});
|
|
8154
8286
|
var issueDeleteMilestone = (options) => (options.client ?? client).delete({
|
|
8287
|
+
responseType: "json",
|
|
8155
8288
|
security: [
|
|
8156
8289
|
{ scheme: "basic", type: "http" },
|
|
8157
8290
|
{
|
|
@@ -8177,6 +8310,7 @@ var issueDeleteMilestone = (options) => (options.client ?? client).delete({
|
|
|
8177
8310
|
...options
|
|
8178
8311
|
});
|
|
8179
8312
|
var issueGetMilestone = (options) => (options.client ?? client).get({
|
|
8313
|
+
responseType: "json",
|
|
8180
8314
|
security: [
|
|
8181
8315
|
{ scheme: "basic", type: "http" },
|
|
8182
8316
|
{
|
|
@@ -8202,6 +8336,7 @@ var issueGetMilestone = (options) => (options.client ?? client).get({
|
|
|
8202
8336
|
...options
|
|
8203
8337
|
});
|
|
8204
8338
|
var issueEditMilestone = (options) => (options.client ?? client).patch({
|
|
8339
|
+
responseType: "json",
|
|
8205
8340
|
security: [
|
|
8206
8341
|
{ scheme: "basic", type: "http" },
|
|
8207
8342
|
{
|
|
@@ -8231,6 +8366,7 @@ var issueEditMilestone = (options) => (options.client ?? client).patch({
|
|
|
8231
8366
|
}
|
|
8232
8367
|
});
|
|
8233
8368
|
var repoMirrorSync = (options) => (options.client ?? client).post({
|
|
8369
|
+
responseType: "json",
|
|
8234
8370
|
security: [
|
|
8235
8371
|
{ scheme: "basic", type: "http" },
|
|
8236
8372
|
{
|
|
@@ -8256,6 +8392,7 @@ var repoMirrorSync = (options) => (options.client ?? client).post({
|
|
|
8256
8392
|
...options
|
|
8257
8393
|
});
|
|
8258
8394
|
var repoNewPinAllowed = (options) => (options.client ?? client).get({
|
|
8395
|
+
responseType: "json",
|
|
8259
8396
|
security: [
|
|
8260
8397
|
{ scheme: "basic", type: "http" },
|
|
8261
8398
|
{
|
|
@@ -8281,6 +8418,7 @@ var repoNewPinAllowed = (options) => (options.client ?? client).get({
|
|
|
8281
8418
|
...options
|
|
8282
8419
|
});
|
|
8283
8420
|
var notifyGetRepoList = (options) => (options.client ?? client).get({
|
|
8421
|
+
responseType: "json",
|
|
8284
8422
|
security: [
|
|
8285
8423
|
{ scheme: "basic", type: "http" },
|
|
8286
8424
|
{
|
|
@@ -8306,6 +8444,7 @@ var notifyGetRepoList = (options) => (options.client ?? client).get({
|
|
|
8306
8444
|
...options
|
|
8307
8445
|
});
|
|
8308
8446
|
var notifyReadRepoList = (options) => (options.client ?? client).put({
|
|
8447
|
+
responseType: "json",
|
|
8309
8448
|
security: [
|
|
8310
8449
|
{ scheme: "basic", type: "http" },
|
|
8311
8450
|
{
|
|
@@ -8331,6 +8470,7 @@ var notifyReadRepoList = (options) => (options.client ?? client).put({
|
|
|
8331
8470
|
...options
|
|
8332
8471
|
});
|
|
8333
8472
|
var repoListPullRequests = (options) => (options.client ?? client).get({
|
|
8473
|
+
responseType: "json",
|
|
8334
8474
|
security: [
|
|
8335
8475
|
{ scheme: "basic", type: "http" },
|
|
8336
8476
|
{
|
|
@@ -8356,6 +8496,7 @@ var repoListPullRequests = (options) => (options.client ?? client).get({
|
|
|
8356
8496
|
...options
|
|
8357
8497
|
});
|
|
8358
8498
|
var repoCreatePullRequest = (options) => (options.client ?? client).post({
|
|
8499
|
+
responseType: "json",
|
|
8359
8500
|
security: [
|
|
8360
8501
|
{ scheme: "basic", type: "http" },
|
|
8361
8502
|
{
|
|
@@ -8385,6 +8526,7 @@ var repoCreatePullRequest = (options) => (options.client ?? client).post({
|
|
|
8385
8526
|
}
|
|
8386
8527
|
});
|
|
8387
8528
|
var repoListPinnedPullRequests = (options) => (options.client ?? client).get({
|
|
8529
|
+
responseType: "json",
|
|
8388
8530
|
security: [
|
|
8389
8531
|
{ scheme: "basic", type: "http" },
|
|
8390
8532
|
{
|
|
@@ -8410,6 +8552,7 @@ var repoListPinnedPullRequests = (options) => (options.client ?? client).get({
|
|
|
8410
8552
|
...options
|
|
8411
8553
|
});
|
|
8412
8554
|
var repoGetPullRequestByBaseHead = (options) => (options.client ?? client).get({
|
|
8555
|
+
responseType: "json",
|
|
8413
8556
|
security: [
|
|
8414
8557
|
{ scheme: "basic", type: "http" },
|
|
8415
8558
|
{
|
|
@@ -8435,6 +8578,7 @@ var repoGetPullRequestByBaseHead = (options) => (options.client ?? client).get({
|
|
|
8435
8578
|
...options
|
|
8436
8579
|
});
|
|
8437
8580
|
var repoGetPullRequest = (options) => (options.client ?? client).get({
|
|
8581
|
+
responseType: "json",
|
|
8438
8582
|
security: [
|
|
8439
8583
|
{ scheme: "basic", type: "http" },
|
|
8440
8584
|
{
|
|
@@ -8460,6 +8604,7 @@ var repoGetPullRequest = (options) => (options.client ?? client).get({
|
|
|
8460
8604
|
...options
|
|
8461
8605
|
});
|
|
8462
8606
|
var repoEditPullRequest = (options) => (options.client ?? client).patch({
|
|
8607
|
+
responseType: "json",
|
|
8463
8608
|
security: [
|
|
8464
8609
|
{ scheme: "basic", type: "http" },
|
|
8465
8610
|
{
|
|
@@ -8489,6 +8634,7 @@ var repoEditPullRequest = (options) => (options.client ?? client).patch({
|
|
|
8489
8634
|
}
|
|
8490
8635
|
});
|
|
8491
8636
|
var repoDownloadPullDiffOrPatch = (options) => (options.client ?? client).get({
|
|
8637
|
+
responseType: "text",
|
|
8492
8638
|
security: [
|
|
8493
8639
|
{ scheme: "basic", type: "http" },
|
|
8494
8640
|
{
|
|
@@ -8514,6 +8660,7 @@ var repoDownloadPullDiffOrPatch = (options) => (options.client ?? client).get({
|
|
|
8514
8660
|
...options
|
|
8515
8661
|
});
|
|
8516
8662
|
var repoGetPullRequestCommits = (options) => (options.client ?? client).get({
|
|
8663
|
+
responseType: "json",
|
|
8517
8664
|
security: [
|
|
8518
8665
|
{ scheme: "basic", type: "http" },
|
|
8519
8666
|
{
|
|
@@ -8539,6 +8686,7 @@ var repoGetPullRequestCommits = (options) => (options.client ?? client).get({
|
|
|
8539
8686
|
...options
|
|
8540
8687
|
});
|
|
8541
8688
|
var repoGetPullRequestFiles = (options) => (options.client ?? client).get({
|
|
8689
|
+
responseType: "json",
|
|
8542
8690
|
security: [
|
|
8543
8691
|
{ scheme: "basic", type: "http" },
|
|
8544
8692
|
{
|
|
@@ -8564,6 +8712,7 @@ var repoGetPullRequestFiles = (options) => (options.client ?? client).get({
|
|
|
8564
8712
|
...options
|
|
8565
8713
|
});
|
|
8566
8714
|
var repoCancelScheduledAutoMerge = (options) => (options.client ?? client).delete({
|
|
8715
|
+
responseType: "json",
|
|
8567
8716
|
security: [
|
|
8568
8717
|
{ scheme: "basic", type: "http" },
|
|
8569
8718
|
{
|
|
@@ -8589,6 +8738,7 @@ var repoCancelScheduledAutoMerge = (options) => (options.client ?? client).delet
|
|
|
8589
8738
|
...options
|
|
8590
8739
|
});
|
|
8591
8740
|
var repoPullRequestIsMerged = (options) => (options.client ?? client).get({
|
|
8741
|
+
responseType: "json",
|
|
8592
8742
|
security: [
|
|
8593
8743
|
{ scheme: "basic", type: "http" },
|
|
8594
8744
|
{
|
|
@@ -8614,6 +8764,7 @@ var repoPullRequestIsMerged = (options) => (options.client ?? client).get({
|
|
|
8614
8764
|
...options
|
|
8615
8765
|
});
|
|
8616
8766
|
var repoMergePullRequest = (options) => (options.client ?? client).post({
|
|
8767
|
+
responseType: "json",
|
|
8617
8768
|
security: [
|
|
8618
8769
|
{ scheme: "basic", type: "http" },
|
|
8619
8770
|
{
|
|
@@ -8643,6 +8794,7 @@ var repoMergePullRequest = (options) => (options.client ?? client).post({
|
|
|
8643
8794
|
}
|
|
8644
8795
|
});
|
|
8645
8796
|
var repoDeletePullReviewRequests = (options) => (options.client ?? client).delete({
|
|
8797
|
+
responseType: "json",
|
|
8646
8798
|
security: [
|
|
8647
8799
|
{ scheme: "basic", type: "http" },
|
|
8648
8800
|
{
|
|
@@ -8672,6 +8824,7 @@ var repoDeletePullReviewRequests = (options) => (options.client ?? client).delet
|
|
|
8672
8824
|
}
|
|
8673
8825
|
});
|
|
8674
8826
|
var repoCreatePullReviewRequests = (options) => (options.client ?? client).post({
|
|
8827
|
+
responseType: "json",
|
|
8675
8828
|
security: [
|
|
8676
8829
|
{ scheme: "basic", type: "http" },
|
|
8677
8830
|
{
|
|
@@ -8701,6 +8854,7 @@ var repoCreatePullReviewRequests = (options) => (options.client ?? client).post(
|
|
|
8701
8854
|
}
|
|
8702
8855
|
});
|
|
8703
8856
|
var repoListPullReviews = (options) => (options.client ?? client).get({
|
|
8857
|
+
responseType: "json",
|
|
8704
8858
|
security: [
|
|
8705
8859
|
{ scheme: "basic", type: "http" },
|
|
8706
8860
|
{
|
|
@@ -8726,6 +8880,7 @@ var repoListPullReviews = (options) => (options.client ?? client).get({
|
|
|
8726
8880
|
...options
|
|
8727
8881
|
});
|
|
8728
8882
|
var repoCreatePullReview = (options) => (options.client ?? client).post({
|
|
8883
|
+
responseType: "json",
|
|
8729
8884
|
security: [
|
|
8730
8885
|
{ scheme: "basic", type: "http" },
|
|
8731
8886
|
{
|
|
@@ -8755,6 +8910,7 @@ var repoCreatePullReview = (options) => (options.client ?? client).post({
|
|
|
8755
8910
|
}
|
|
8756
8911
|
});
|
|
8757
8912
|
var repoDeletePullReview = (options) => (options.client ?? client).delete({
|
|
8913
|
+
responseType: "json",
|
|
8758
8914
|
security: [
|
|
8759
8915
|
{ scheme: "basic", type: "http" },
|
|
8760
8916
|
{
|
|
@@ -8780,6 +8936,7 @@ var repoDeletePullReview = (options) => (options.client ?? client).delete({
|
|
|
8780
8936
|
...options
|
|
8781
8937
|
});
|
|
8782
8938
|
var repoGetPullReview = (options) => (options.client ?? client).get({
|
|
8939
|
+
responseType: "json",
|
|
8783
8940
|
security: [
|
|
8784
8941
|
{ scheme: "basic", type: "http" },
|
|
8785
8942
|
{
|
|
@@ -8805,6 +8962,7 @@ var repoGetPullReview = (options) => (options.client ?? client).get({
|
|
|
8805
8962
|
...options
|
|
8806
8963
|
});
|
|
8807
8964
|
var repoSubmitPullReview = (options) => (options.client ?? client).post({
|
|
8965
|
+
responseType: "json",
|
|
8808
8966
|
security: [
|
|
8809
8967
|
{ scheme: "basic", type: "http" },
|
|
8810
8968
|
{
|
|
@@ -8834,6 +8992,7 @@ var repoSubmitPullReview = (options) => (options.client ?? client).post({
|
|
|
8834
8992
|
}
|
|
8835
8993
|
});
|
|
8836
8994
|
var repoGetPullReviewComments = (options) => (options.client ?? client).get({
|
|
8995
|
+
responseType: "json",
|
|
8837
8996
|
security: [
|
|
8838
8997
|
{ scheme: "basic", type: "http" },
|
|
8839
8998
|
{
|
|
@@ -8859,6 +9018,7 @@ var repoGetPullReviewComments = (options) => (options.client ?? client).get({
|
|
|
8859
9018
|
...options
|
|
8860
9019
|
});
|
|
8861
9020
|
var repoCreatePullReviewComment = (options) => (options.client ?? client).post({
|
|
9021
|
+
responseType: "json",
|
|
8862
9022
|
security: [
|
|
8863
9023
|
{ scheme: "basic", type: "http" },
|
|
8864
9024
|
{
|
|
@@ -8888,6 +9048,7 @@ var repoCreatePullReviewComment = (options) => (options.client ?? client).post({
|
|
|
8888
9048
|
}
|
|
8889
9049
|
});
|
|
8890
9050
|
var repoDeletePullReviewComment = (options) => (options.client ?? client).delete({
|
|
9051
|
+
responseType: "json",
|
|
8891
9052
|
security: [
|
|
8892
9053
|
{ scheme: "basic", type: "http" },
|
|
8893
9054
|
{
|
|
@@ -8913,6 +9074,7 @@ var repoDeletePullReviewComment = (options) => (options.client ?? client).delete
|
|
|
8913
9074
|
...options
|
|
8914
9075
|
});
|
|
8915
9076
|
var repoGetPullReviewComment = (options) => (options.client ?? client).get({
|
|
9077
|
+
responseType: "json",
|
|
8916
9078
|
security: [
|
|
8917
9079
|
{ scheme: "basic", type: "http" },
|
|
8918
9080
|
{
|
|
@@ -8938,6 +9100,7 @@ var repoGetPullReviewComment = (options) => (options.client ?? client).get({
|
|
|
8938
9100
|
...options
|
|
8939
9101
|
});
|
|
8940
9102
|
var repoDismissPullReview = (options) => (options.client ?? client).post({
|
|
9103
|
+
responseType: "json",
|
|
8941
9104
|
security: [
|
|
8942
9105
|
{ scheme: "basic", type: "http" },
|
|
8943
9106
|
{
|
|
@@ -8967,6 +9130,7 @@ var repoDismissPullReview = (options) => (options.client ?? client).post({
|
|
|
8967
9130
|
}
|
|
8968
9131
|
});
|
|
8969
9132
|
var repoUnDismissPullReview = (options) => (options.client ?? client).post({
|
|
9133
|
+
responseType: "json",
|
|
8970
9134
|
security: [
|
|
8971
9135
|
{ scheme: "basic", type: "http" },
|
|
8972
9136
|
{
|
|
@@ -8992,6 +9156,7 @@ var repoUnDismissPullReview = (options) => (options.client ?? client).post({
|
|
|
8992
9156
|
...options
|
|
8993
9157
|
});
|
|
8994
9158
|
var repoUpdatePullRequest = (options) => (options.client ?? client).post({
|
|
9159
|
+
responseType: "json",
|
|
8995
9160
|
security: [
|
|
8996
9161
|
{ scheme: "basic", type: "http" },
|
|
8997
9162
|
{
|
|
@@ -9017,6 +9182,7 @@ var repoUpdatePullRequest = (options) => (options.client ?? client).post({
|
|
|
9017
9182
|
...options
|
|
9018
9183
|
});
|
|
9019
9184
|
var repoListPushMirrors = (options) => (options.client ?? client).get({
|
|
9185
|
+
responseType: "json",
|
|
9020
9186
|
security: [
|
|
9021
9187
|
{ scheme: "basic", type: "http" },
|
|
9022
9188
|
{
|
|
@@ -9042,6 +9208,7 @@ var repoListPushMirrors = (options) => (options.client ?? client).get({
|
|
|
9042
9208
|
...options
|
|
9043
9209
|
});
|
|
9044
9210
|
var repoAddPushMirror = (options) => (options.client ?? client).post({
|
|
9211
|
+
responseType: "json",
|
|
9045
9212
|
security: [
|
|
9046
9213
|
{ scheme: "basic", type: "http" },
|
|
9047
9214
|
{
|
|
@@ -9071,6 +9238,7 @@ var repoAddPushMirror = (options) => (options.client ?? client).post({
|
|
|
9071
9238
|
}
|
|
9072
9239
|
});
|
|
9073
9240
|
var repoPushMirrorSync = (options) => (options.client ?? client).post({
|
|
9241
|
+
responseType: "json",
|
|
9074
9242
|
security: [
|
|
9075
9243
|
{ scheme: "basic", type: "http" },
|
|
9076
9244
|
{
|
|
@@ -9096,6 +9264,7 @@ var repoPushMirrorSync = (options) => (options.client ?? client).post({
|
|
|
9096
9264
|
...options
|
|
9097
9265
|
});
|
|
9098
9266
|
var repoDeletePushMirror = (options) => (options.client ?? client).delete({
|
|
9267
|
+
responseType: "json",
|
|
9099
9268
|
security: [
|
|
9100
9269
|
{ scheme: "basic", type: "http" },
|
|
9101
9270
|
{
|
|
@@ -9121,6 +9290,7 @@ var repoDeletePushMirror = (options) => (options.client ?? client).delete({
|
|
|
9121
9290
|
...options
|
|
9122
9291
|
});
|
|
9123
9292
|
var repoGetPushMirrorByRemoteName = (options) => (options.client ?? client).get({
|
|
9293
|
+
responseType: "json",
|
|
9124
9294
|
security: [
|
|
9125
9295
|
{ scheme: "basic", type: "http" },
|
|
9126
9296
|
{
|
|
@@ -9146,6 +9316,7 @@ var repoGetPushMirrorByRemoteName = (options) => (options.client ?? client).get(
|
|
|
9146
9316
|
...options
|
|
9147
9317
|
});
|
|
9148
9318
|
var repoGetRawFile = (options) => (options.client ?? client).get({
|
|
9319
|
+
responseType: "blob",
|
|
9149
9320
|
security: [
|
|
9150
9321
|
{ scheme: "basic", type: "http" },
|
|
9151
9322
|
{
|
|
@@ -9171,6 +9342,7 @@ var repoGetRawFile = (options) => (options.client ?? client).get({
|
|
|
9171
9342
|
...options
|
|
9172
9343
|
});
|
|
9173
9344
|
var repoListReleases = (options) => (options.client ?? client).get({
|
|
9345
|
+
responseType: "json",
|
|
9174
9346
|
security: [
|
|
9175
9347
|
{ scheme: "basic", type: "http" },
|
|
9176
9348
|
{
|
|
@@ -9196,6 +9368,7 @@ var repoListReleases = (options) => (options.client ?? client).get({
|
|
|
9196
9368
|
...options
|
|
9197
9369
|
});
|
|
9198
9370
|
var repoCreateRelease = (options) => (options.client ?? client).post({
|
|
9371
|
+
responseType: "json",
|
|
9199
9372
|
security: [
|
|
9200
9373
|
{ scheme: "basic", type: "http" },
|
|
9201
9374
|
{
|
|
@@ -9225,6 +9398,7 @@ var repoCreateRelease = (options) => (options.client ?? client).post({
|
|
|
9225
9398
|
}
|
|
9226
9399
|
});
|
|
9227
9400
|
var repoGetLatestRelease = (options) => (options.client ?? client).get({
|
|
9401
|
+
responseType: "json",
|
|
9228
9402
|
security: [
|
|
9229
9403
|
{ scheme: "basic", type: "http" },
|
|
9230
9404
|
{
|
|
@@ -9250,6 +9424,7 @@ var repoGetLatestRelease = (options) => (options.client ?? client).get({
|
|
|
9250
9424
|
...options
|
|
9251
9425
|
});
|
|
9252
9426
|
var repoDeleteReleaseByTag = (options) => (options.client ?? client).delete({
|
|
9427
|
+
responseType: "json",
|
|
9253
9428
|
security: [
|
|
9254
9429
|
{ scheme: "basic", type: "http" },
|
|
9255
9430
|
{
|
|
@@ -9275,6 +9450,7 @@ var repoDeleteReleaseByTag = (options) => (options.client ?? client).delete({
|
|
|
9275
9450
|
...options
|
|
9276
9451
|
});
|
|
9277
9452
|
var repoGetReleaseByTag = (options) => (options.client ?? client).get({
|
|
9453
|
+
responseType: "json",
|
|
9278
9454
|
security: [
|
|
9279
9455
|
{ scheme: "basic", type: "http" },
|
|
9280
9456
|
{
|
|
@@ -9300,6 +9476,7 @@ var repoGetReleaseByTag = (options) => (options.client ?? client).get({
|
|
|
9300
9476
|
...options
|
|
9301
9477
|
});
|
|
9302
9478
|
var repoDeleteRelease = (options) => (options.client ?? client).delete({
|
|
9479
|
+
responseType: "json",
|
|
9303
9480
|
security: [
|
|
9304
9481
|
{ scheme: "basic", type: "http" },
|
|
9305
9482
|
{
|
|
@@ -9325,6 +9502,7 @@ var repoDeleteRelease = (options) => (options.client ?? client).delete({
|
|
|
9325
9502
|
...options
|
|
9326
9503
|
});
|
|
9327
9504
|
var repoGetRelease = (options) => (options.client ?? client).get({
|
|
9505
|
+
responseType: "json",
|
|
9328
9506
|
security: [
|
|
9329
9507
|
{ scheme: "basic", type: "http" },
|
|
9330
9508
|
{
|
|
@@ -9350,6 +9528,7 @@ var repoGetRelease = (options) => (options.client ?? client).get({
|
|
|
9350
9528
|
...options
|
|
9351
9529
|
});
|
|
9352
9530
|
var repoEditRelease = (options) => (options.client ?? client).patch({
|
|
9531
|
+
responseType: "json",
|
|
9353
9532
|
security: [
|
|
9354
9533
|
{ scheme: "basic", type: "http" },
|
|
9355
9534
|
{
|
|
@@ -9379,6 +9558,7 @@ var repoEditRelease = (options) => (options.client ?? client).patch({
|
|
|
9379
9558
|
}
|
|
9380
9559
|
});
|
|
9381
9560
|
var repoListReleaseAttachments = (options) => (options.client ?? client).get({
|
|
9561
|
+
responseType: "json",
|
|
9382
9562
|
security: [
|
|
9383
9563
|
{ scheme: "basic", type: "http" },
|
|
9384
9564
|
{
|
|
@@ -9405,6 +9585,7 @@ var repoListReleaseAttachments = (options) => (options.client ?? client).get({
|
|
|
9405
9585
|
});
|
|
9406
9586
|
var repoCreateReleaseAttachment = (options) => (options.client ?? client).post({
|
|
9407
9587
|
...formDataBodySerializer,
|
|
9588
|
+
responseType: "json",
|
|
9408
9589
|
security: [
|
|
9409
9590
|
{ scheme: "basic", type: "http" },
|
|
9410
9591
|
{
|
|
@@ -9434,6 +9615,7 @@ var repoCreateReleaseAttachment = (options) => (options.client ?? client).post({
|
|
|
9434
9615
|
}
|
|
9435
9616
|
});
|
|
9436
9617
|
var repoDeleteReleaseAttachment = (options) => (options.client ?? client).delete({
|
|
9618
|
+
responseType: "json",
|
|
9437
9619
|
security: [
|
|
9438
9620
|
{ scheme: "basic", type: "http" },
|
|
9439
9621
|
{
|
|
@@ -9459,6 +9641,7 @@ var repoDeleteReleaseAttachment = (options) => (options.client ?? client).delete
|
|
|
9459
9641
|
...options
|
|
9460
9642
|
});
|
|
9461
9643
|
var repoGetReleaseAttachment = (options) => (options.client ?? client).get({
|
|
9644
|
+
responseType: "json",
|
|
9462
9645
|
security: [
|
|
9463
9646
|
{ scheme: "basic", type: "http" },
|
|
9464
9647
|
{
|
|
@@ -9484,6 +9667,7 @@ var repoGetReleaseAttachment = (options) => (options.client ?? client).get({
|
|
|
9484
9667
|
...options
|
|
9485
9668
|
});
|
|
9486
9669
|
var repoEditReleaseAttachment = (options) => (options.client ?? client).patch({
|
|
9670
|
+
responseType: "json",
|
|
9487
9671
|
security: [
|
|
9488
9672
|
{ scheme: "basic", type: "http" },
|
|
9489
9673
|
{
|
|
@@ -9513,6 +9697,7 @@ var repoEditReleaseAttachment = (options) => (options.client ?? client).patch({
|
|
|
9513
9697
|
}
|
|
9514
9698
|
});
|
|
9515
9699
|
var repoGetReviewers = (options) => (options.client ?? client).get({
|
|
9700
|
+
responseType: "json",
|
|
9516
9701
|
security: [
|
|
9517
9702
|
{ scheme: "basic", type: "http" },
|
|
9518
9703
|
{
|
|
@@ -9538,6 +9723,7 @@ var repoGetReviewers = (options) => (options.client ?? client).get({
|
|
|
9538
9723
|
...options
|
|
9539
9724
|
});
|
|
9540
9725
|
var repoSigningKey = (options) => (options.client ?? client).get({
|
|
9726
|
+
responseType: "text",
|
|
9541
9727
|
security: [
|
|
9542
9728
|
{ scheme: "basic", type: "http" },
|
|
9543
9729
|
{
|
|
@@ -9563,6 +9749,7 @@ var repoSigningKey = (options) => (options.client ?? client).get({
|
|
|
9563
9749
|
...options
|
|
9564
9750
|
});
|
|
9565
9751
|
var repoListStargazers = (options) => (options.client ?? client).get({
|
|
9752
|
+
responseType: "json",
|
|
9566
9753
|
security: [
|
|
9567
9754
|
{ scheme: "basic", type: "http" },
|
|
9568
9755
|
{
|
|
@@ -9588,6 +9775,7 @@ var repoListStargazers = (options) => (options.client ?? client).get({
|
|
|
9588
9775
|
...options
|
|
9589
9776
|
});
|
|
9590
9777
|
var repoListStatuses = (options) => (options.client ?? client).get({
|
|
9778
|
+
responseType: "json",
|
|
9591
9779
|
security: [
|
|
9592
9780
|
{ scheme: "basic", type: "http" },
|
|
9593
9781
|
{
|
|
@@ -9613,6 +9801,7 @@ var repoListStatuses = (options) => (options.client ?? client).get({
|
|
|
9613
9801
|
...options
|
|
9614
9802
|
});
|
|
9615
9803
|
var repoCreateStatus = (options) => (options.client ?? client).post({
|
|
9804
|
+
responseType: "json",
|
|
9616
9805
|
security: [
|
|
9617
9806
|
{ scheme: "basic", type: "http" },
|
|
9618
9807
|
{
|
|
@@ -9642,6 +9831,7 @@ var repoCreateStatus = (options) => (options.client ?? client).post({
|
|
|
9642
9831
|
}
|
|
9643
9832
|
});
|
|
9644
9833
|
var repoListSubscribers = (options) => (options.client ?? client).get({
|
|
9834
|
+
responseType: "json",
|
|
9645
9835
|
security: [
|
|
9646
9836
|
{ scheme: "basic", type: "http" },
|
|
9647
9837
|
{
|
|
@@ -9667,6 +9857,7 @@ var repoListSubscribers = (options) => (options.client ?? client).get({
|
|
|
9667
9857
|
...options
|
|
9668
9858
|
});
|
|
9669
9859
|
var userCurrentDeleteSubscription = (options) => (options.client ?? client).delete({
|
|
9860
|
+
responseType: "json",
|
|
9670
9861
|
security: [
|
|
9671
9862
|
{ scheme: "basic", type: "http" },
|
|
9672
9863
|
{
|
|
@@ -9692,6 +9883,7 @@ var userCurrentDeleteSubscription = (options) => (options.client ?? client).dele
|
|
|
9692
9883
|
...options
|
|
9693
9884
|
});
|
|
9694
9885
|
var userCurrentCheckSubscription = (options) => (options.client ?? client).get({
|
|
9886
|
+
responseType: "json",
|
|
9695
9887
|
security: [
|
|
9696
9888
|
{ scheme: "basic", type: "http" },
|
|
9697
9889
|
{
|
|
@@ -9717,6 +9909,7 @@ var userCurrentCheckSubscription = (options) => (options.client ?? client).get({
|
|
|
9717
9909
|
...options
|
|
9718
9910
|
});
|
|
9719
9911
|
var userCurrentPutSubscription = (options) => (options.client ?? client).put({
|
|
9912
|
+
responseType: "json",
|
|
9720
9913
|
security: [
|
|
9721
9914
|
{ scheme: "basic", type: "http" },
|
|
9722
9915
|
{
|
|
@@ -9742,6 +9935,7 @@ var userCurrentPutSubscription = (options) => (options.client ?? client).put({
|
|
|
9742
9935
|
...options
|
|
9743
9936
|
});
|
|
9744
9937
|
var repoSyncForkDefaultInfo = (options) => (options.client ?? client).get({
|
|
9938
|
+
responseType: "json",
|
|
9745
9939
|
security: [
|
|
9746
9940
|
{ scheme: "basic", type: "http" },
|
|
9747
9941
|
{
|
|
@@ -9767,6 +9961,7 @@ var repoSyncForkDefaultInfo = (options) => (options.client ?? client).get({
|
|
|
9767
9961
|
...options
|
|
9768
9962
|
});
|
|
9769
9963
|
var repoSyncForkDefault = (options) => (options.client ?? client).post({
|
|
9964
|
+
responseType: "json",
|
|
9770
9965
|
security: [
|
|
9771
9966
|
{ scheme: "basic", type: "http" },
|
|
9772
9967
|
{
|
|
@@ -9792,6 +9987,7 @@ var repoSyncForkDefault = (options) => (options.client ?? client).post({
|
|
|
9792
9987
|
...options
|
|
9793
9988
|
});
|
|
9794
9989
|
var repoSyncForkBranchInfo = (options) => (options.client ?? client).get({
|
|
9990
|
+
responseType: "json",
|
|
9795
9991
|
security: [
|
|
9796
9992
|
{ scheme: "basic", type: "http" },
|
|
9797
9993
|
{
|
|
@@ -9817,6 +10013,7 @@ var repoSyncForkBranchInfo = (options) => (options.client ?? client).get({
|
|
|
9817
10013
|
...options
|
|
9818
10014
|
});
|
|
9819
10015
|
var repoSyncForkBranch = (options) => (options.client ?? client).post({
|
|
10016
|
+
responseType: "json",
|
|
9820
10017
|
security: [
|
|
9821
10018
|
{ scheme: "basic", type: "http" },
|
|
9822
10019
|
{
|
|
@@ -9842,6 +10039,7 @@ var repoSyncForkBranch = (options) => (options.client ?? client).post({
|
|
|
9842
10039
|
...options
|
|
9843
10040
|
});
|
|
9844
10041
|
var repoListTagProtection = (options) => (options.client ?? client).get({
|
|
10042
|
+
responseType: "json",
|
|
9845
10043
|
security: [
|
|
9846
10044
|
{ scheme: "basic", type: "http" },
|
|
9847
10045
|
{
|
|
@@ -9867,6 +10065,7 @@ var repoListTagProtection = (options) => (options.client ?? client).get({
|
|
|
9867
10065
|
...options
|
|
9868
10066
|
});
|
|
9869
10067
|
var repoCreateTagProtection = (options) => (options.client ?? client).post({
|
|
10068
|
+
responseType: "json",
|
|
9870
10069
|
security: [
|
|
9871
10070
|
{ scheme: "basic", type: "http" },
|
|
9872
10071
|
{
|
|
@@ -9896,6 +10095,7 @@ var repoCreateTagProtection = (options) => (options.client ?? client).post({
|
|
|
9896
10095
|
}
|
|
9897
10096
|
});
|
|
9898
10097
|
var repoDeleteTagProtection = (options) => (options.client ?? client).delete({
|
|
10098
|
+
responseType: "json",
|
|
9899
10099
|
security: [
|
|
9900
10100
|
{ scheme: "basic", type: "http" },
|
|
9901
10101
|
{
|
|
@@ -9921,6 +10121,7 @@ var repoDeleteTagProtection = (options) => (options.client ?? client).delete({
|
|
|
9921
10121
|
...options
|
|
9922
10122
|
});
|
|
9923
10123
|
var repoGetTagProtection = (options) => (options.client ?? client).get({
|
|
10124
|
+
responseType: "json",
|
|
9924
10125
|
security: [
|
|
9925
10126
|
{ scheme: "basic", type: "http" },
|
|
9926
10127
|
{
|
|
@@ -9946,6 +10147,7 @@ var repoGetTagProtection = (options) => (options.client ?? client).get({
|
|
|
9946
10147
|
...options
|
|
9947
10148
|
});
|
|
9948
10149
|
var repoEditTagProtection = (options) => (options.client ?? client).patch({
|
|
10150
|
+
responseType: "json",
|
|
9949
10151
|
security: [
|
|
9950
10152
|
{ scheme: "basic", type: "http" },
|
|
9951
10153
|
{
|
|
@@ -9975,6 +10177,7 @@ var repoEditTagProtection = (options) => (options.client ?? client).patch({
|
|
|
9975
10177
|
}
|
|
9976
10178
|
});
|
|
9977
10179
|
var repoListTags = (options) => (options.client ?? client).get({
|
|
10180
|
+
responseType: "json",
|
|
9978
10181
|
security: [
|
|
9979
10182
|
{ scheme: "basic", type: "http" },
|
|
9980
10183
|
{
|
|
@@ -10000,6 +10203,7 @@ var repoListTags = (options) => (options.client ?? client).get({
|
|
|
10000
10203
|
...options
|
|
10001
10204
|
});
|
|
10002
10205
|
var repoCreateTag = (options) => (options.client ?? client).post({
|
|
10206
|
+
responseType: "json",
|
|
10003
10207
|
security: [
|
|
10004
10208
|
{ scheme: "basic", type: "http" },
|
|
10005
10209
|
{
|
|
@@ -10029,6 +10233,7 @@ var repoCreateTag = (options) => (options.client ?? client).post({
|
|
|
10029
10233
|
}
|
|
10030
10234
|
});
|
|
10031
10235
|
var repoDeleteTag = (options) => (options.client ?? client).delete({
|
|
10236
|
+
responseType: "json",
|
|
10032
10237
|
security: [
|
|
10033
10238
|
{ scheme: "basic", type: "http" },
|
|
10034
10239
|
{
|
|
@@ -10054,6 +10259,7 @@ var repoDeleteTag = (options) => (options.client ?? client).delete({
|
|
|
10054
10259
|
...options
|
|
10055
10260
|
});
|
|
10056
10261
|
var repoGetTag = (options) => (options.client ?? client).get({
|
|
10262
|
+
responseType: "json",
|
|
10057
10263
|
security: [
|
|
10058
10264
|
{ scheme: "basic", type: "http" },
|
|
10059
10265
|
{
|
|
@@ -10079,6 +10285,7 @@ var repoGetTag = (options) => (options.client ?? client).get({
|
|
|
10079
10285
|
...options
|
|
10080
10286
|
});
|
|
10081
10287
|
var repoListTeams = (options) => (options.client ?? client).get({
|
|
10288
|
+
responseType: "json",
|
|
10082
10289
|
security: [
|
|
10083
10290
|
{ scheme: "basic", type: "http" },
|
|
10084
10291
|
{
|
|
@@ -10104,6 +10311,7 @@ var repoListTeams = (options) => (options.client ?? client).get({
|
|
|
10104
10311
|
...options
|
|
10105
10312
|
});
|
|
10106
10313
|
var repoDeleteTeam = (options) => (options.client ?? client).delete({
|
|
10314
|
+
responseType: "json",
|
|
10107
10315
|
security: [
|
|
10108
10316
|
{ scheme: "basic", type: "http" },
|
|
10109
10317
|
{
|
|
@@ -10129,6 +10337,7 @@ var repoDeleteTeam = (options) => (options.client ?? client).delete({
|
|
|
10129
10337
|
...options
|
|
10130
10338
|
});
|
|
10131
10339
|
var repoCheckTeam = (options) => (options.client ?? client).get({
|
|
10340
|
+
responseType: "json",
|
|
10132
10341
|
security: [
|
|
10133
10342
|
{ scheme: "basic", type: "http" },
|
|
10134
10343
|
{
|
|
@@ -10154,6 +10363,7 @@ var repoCheckTeam = (options) => (options.client ?? client).get({
|
|
|
10154
10363
|
...options
|
|
10155
10364
|
});
|
|
10156
10365
|
var repoAddTeam = (options) => (options.client ?? client).put({
|
|
10366
|
+
responseType: "json",
|
|
10157
10367
|
security: [
|
|
10158
10368
|
{ scheme: "basic", type: "http" },
|
|
10159
10369
|
{
|
|
@@ -10179,6 +10389,7 @@ var repoAddTeam = (options) => (options.client ?? client).put({
|
|
|
10179
10389
|
...options
|
|
10180
10390
|
});
|
|
10181
10391
|
var repoTrackedTimes = (options) => (options.client ?? client).get({
|
|
10392
|
+
responseType: "json",
|
|
10182
10393
|
security: [
|
|
10183
10394
|
{ scheme: "basic", type: "http" },
|
|
10184
10395
|
{
|
|
@@ -10204,6 +10415,7 @@ var repoTrackedTimes = (options) => (options.client ?? client).get({
|
|
|
10204
10415
|
...options
|
|
10205
10416
|
});
|
|
10206
10417
|
var userTrackedTimes = (options) => (options.client ?? client).get({
|
|
10418
|
+
responseType: "json",
|
|
10207
10419
|
security: [
|
|
10208
10420
|
{ scheme: "basic", type: "http" },
|
|
10209
10421
|
{
|
|
@@ -10229,6 +10441,7 @@ var userTrackedTimes = (options) => (options.client ?? client).get({
|
|
|
10229
10441
|
...options
|
|
10230
10442
|
});
|
|
10231
10443
|
var repoListTopics = (options) => (options.client ?? client).get({
|
|
10444
|
+
responseType: "json",
|
|
10232
10445
|
security: [
|
|
10233
10446
|
{ scheme: "basic", type: "http" },
|
|
10234
10447
|
{
|
|
@@ -10254,6 +10467,7 @@ var repoListTopics = (options) => (options.client ?? client).get({
|
|
|
10254
10467
|
...options
|
|
10255
10468
|
});
|
|
10256
10469
|
var repoUpdateTopics = (options) => (options.client ?? client).put({
|
|
10470
|
+
responseType: "json",
|
|
10257
10471
|
security: [
|
|
10258
10472
|
{ scheme: "basic", type: "http" },
|
|
10259
10473
|
{
|
|
@@ -10283,6 +10497,7 @@ var repoUpdateTopics = (options) => (options.client ?? client).put({
|
|
|
10283
10497
|
}
|
|
10284
10498
|
});
|
|
10285
10499
|
var repoDeleteTopic = (options) => (options.client ?? client).delete({
|
|
10500
|
+
responseType: "json",
|
|
10286
10501
|
security: [
|
|
10287
10502
|
{ scheme: "basic", type: "http" },
|
|
10288
10503
|
{
|
|
@@ -10308,6 +10523,7 @@ var repoDeleteTopic = (options) => (options.client ?? client).delete({
|
|
|
10308
10523
|
...options
|
|
10309
10524
|
});
|
|
10310
10525
|
var repoAddTopic = (options) => (options.client ?? client).put({
|
|
10526
|
+
responseType: "json",
|
|
10311
10527
|
security: [
|
|
10312
10528
|
{ scheme: "basic", type: "http" },
|
|
10313
10529
|
{
|
|
@@ -10333,6 +10549,7 @@ var repoAddTopic = (options) => (options.client ?? client).put({
|
|
|
10333
10549
|
...options
|
|
10334
10550
|
});
|
|
10335
10551
|
var repoTransfer = (options) => (options.client ?? client).post({
|
|
10552
|
+
responseType: "json",
|
|
10336
10553
|
security: [
|
|
10337
10554
|
{ scheme: "basic", type: "http" },
|
|
10338
10555
|
{
|
|
@@ -10362,6 +10579,7 @@ var repoTransfer = (options) => (options.client ?? client).post({
|
|
|
10362
10579
|
}
|
|
10363
10580
|
});
|
|
10364
10581
|
var acceptRepoTransfer = (options) => (options.client ?? client).post({
|
|
10582
|
+
responseType: "json",
|
|
10365
10583
|
security: [
|
|
10366
10584
|
{ scheme: "basic", type: "http" },
|
|
10367
10585
|
{
|
|
@@ -10387,6 +10605,7 @@ var acceptRepoTransfer = (options) => (options.client ?? client).post({
|
|
|
10387
10605
|
...options
|
|
10388
10606
|
});
|
|
10389
10607
|
var rejectRepoTransfer = (options) => (options.client ?? client).post({
|
|
10608
|
+
responseType: "json",
|
|
10390
10609
|
security: [
|
|
10391
10610
|
{ scheme: "basic", type: "http" },
|
|
10392
10611
|
{
|
|
@@ -10412,6 +10631,7 @@ var rejectRepoTransfer = (options) => (options.client ?? client).post({
|
|
|
10412
10631
|
...options
|
|
10413
10632
|
});
|
|
10414
10633
|
var repoCreateWikiPage = (options) => (options.client ?? client).post({
|
|
10634
|
+
responseType: "json",
|
|
10415
10635
|
security: [
|
|
10416
10636
|
{ scheme: "basic", type: "http" },
|
|
10417
10637
|
{
|
|
@@ -10441,6 +10661,7 @@ var repoCreateWikiPage = (options) => (options.client ?? client).post({
|
|
|
10441
10661
|
}
|
|
10442
10662
|
});
|
|
10443
10663
|
var repoDeleteWikiPage = (options) => (options.client ?? client).delete({
|
|
10664
|
+
responseType: "json",
|
|
10444
10665
|
security: [
|
|
10445
10666
|
{ scheme: "basic", type: "http" },
|
|
10446
10667
|
{
|
|
@@ -10466,6 +10687,7 @@ var repoDeleteWikiPage = (options) => (options.client ?? client).delete({
|
|
|
10466
10687
|
...options
|
|
10467
10688
|
});
|
|
10468
10689
|
var repoGetWikiPage = (options) => (options.client ?? client).get({
|
|
10690
|
+
responseType: "json",
|
|
10469
10691
|
security: [
|
|
10470
10692
|
{ scheme: "basic", type: "http" },
|
|
10471
10693
|
{
|
|
@@ -10491,6 +10713,7 @@ var repoGetWikiPage = (options) => (options.client ?? client).get({
|
|
|
10491
10713
|
...options
|
|
10492
10714
|
});
|
|
10493
10715
|
var repoEditWikiPage = (options) => (options.client ?? client).patch({
|
|
10716
|
+
responseType: "json",
|
|
10494
10717
|
security: [
|
|
10495
10718
|
{ scheme: "basic", type: "http" },
|
|
10496
10719
|
{
|
|
@@ -10520,6 +10743,7 @@ var repoEditWikiPage = (options) => (options.client ?? client).patch({
|
|
|
10520
10743
|
}
|
|
10521
10744
|
});
|
|
10522
10745
|
var repoGetWikiPages = (options) => (options.client ?? client).get({
|
|
10746
|
+
responseType: "json",
|
|
10523
10747
|
security: [
|
|
10524
10748
|
{ scheme: "basic", type: "http" },
|
|
10525
10749
|
{
|
|
@@ -10545,6 +10769,7 @@ var repoGetWikiPages = (options) => (options.client ?? client).get({
|
|
|
10545
10769
|
...options
|
|
10546
10770
|
});
|
|
10547
10771
|
var repoGetWikiPageRevisions = (options) => (options.client ?? client).get({
|
|
10772
|
+
responseType: "json",
|
|
10548
10773
|
security: [
|
|
10549
10774
|
{ scheme: "basic", type: "http" },
|
|
10550
10775
|
{
|
|
@@ -10570,6 +10795,7 @@ var repoGetWikiPageRevisions = (options) => (options.client ?? client).get({
|
|
|
10570
10795
|
...options
|
|
10571
10796
|
});
|
|
10572
10797
|
var generateRepo = (options) => (options.client ?? client).post({
|
|
10798
|
+
responseType: "json",
|
|
10573
10799
|
security: [
|
|
10574
10800
|
{ scheme: "basic", type: "http" },
|
|
10575
10801
|
{
|
|
@@ -10599,6 +10825,7 @@ var generateRepo = (options) => (options.client ?? client).post({
|
|
|
10599
10825
|
}
|
|
10600
10826
|
});
|
|
10601
10827
|
var repoGetById = (options) => (options.client ?? client).get({
|
|
10828
|
+
responseType: "json",
|
|
10602
10829
|
security: [
|
|
10603
10830
|
{ scheme: "basic", type: "http" },
|
|
10604
10831
|
{
|
|
@@ -10624,6 +10851,7 @@ var repoGetById = (options) => (options.client ?? client).get({
|
|
|
10624
10851
|
...options
|
|
10625
10852
|
});
|
|
10626
10853
|
var getGeneralApiSettings = (options) => (options?.client ?? client).get({
|
|
10854
|
+
responseType: "json",
|
|
10627
10855
|
security: [
|
|
10628
10856
|
{ scheme: "basic", type: "http" },
|
|
10629
10857
|
{
|
|
@@ -10649,6 +10877,7 @@ var getGeneralApiSettings = (options) => (options?.client ?? client).get({
|
|
|
10649
10877
|
...options
|
|
10650
10878
|
});
|
|
10651
10879
|
var getGeneralAttachmentSettings = (options) => (options?.client ?? client).get({
|
|
10880
|
+
responseType: "json",
|
|
10652
10881
|
security: [
|
|
10653
10882
|
{ scheme: "basic", type: "http" },
|
|
10654
10883
|
{
|
|
@@ -10674,6 +10903,7 @@ var getGeneralAttachmentSettings = (options) => (options?.client ?? client).get(
|
|
|
10674
10903
|
...options
|
|
10675
10904
|
});
|
|
10676
10905
|
var getGeneralRepositorySettings = (options) => (options?.client ?? client).get({
|
|
10906
|
+
responseType: "json",
|
|
10677
10907
|
security: [
|
|
10678
10908
|
{ scheme: "basic", type: "http" },
|
|
10679
10909
|
{
|
|
@@ -10699,6 +10929,7 @@ var getGeneralRepositorySettings = (options) => (options?.client ?? client).get(
|
|
|
10699
10929
|
...options
|
|
10700
10930
|
});
|
|
10701
10931
|
var getGeneralUiSettings = (options) => (options?.client ?? client).get({
|
|
10932
|
+
responseType: "json",
|
|
10702
10933
|
security: [
|
|
10703
10934
|
{ scheme: "basic", type: "http" },
|
|
10704
10935
|
{
|
|
@@ -10724,6 +10955,7 @@ var getGeneralUiSettings = (options) => (options?.client ?? client).get({
|
|
|
10724
10955
|
...options
|
|
10725
10956
|
});
|
|
10726
10957
|
var getSigningKey = (options) => (options?.client ?? client).get({
|
|
10958
|
+
responseType: "text",
|
|
10727
10959
|
security: [
|
|
10728
10960
|
{ scheme: "basic", type: "http" },
|
|
10729
10961
|
{
|
|
@@ -10749,6 +10981,7 @@ var getSigningKey = (options) => (options?.client ?? client).get({
|
|
|
10749
10981
|
...options
|
|
10750
10982
|
});
|
|
10751
10983
|
var getSshSigningKey = (options) => (options?.client ?? client).get({
|
|
10984
|
+
responseType: "text",
|
|
10752
10985
|
security: [
|
|
10753
10986
|
{ scheme: "basic", type: "http" },
|
|
10754
10987
|
{
|
|
@@ -10774,6 +11007,7 @@ var getSshSigningKey = (options) => (options?.client ?? client).get({
|
|
|
10774
11007
|
...options
|
|
10775
11008
|
});
|
|
10776
11009
|
var orgDeleteTeam = (options) => (options.client ?? client).delete({
|
|
11010
|
+
responseType: "json",
|
|
10777
11011
|
security: [
|
|
10778
11012
|
{ scheme: "basic", type: "http" },
|
|
10779
11013
|
{
|
|
@@ -10799,6 +11033,7 @@ var orgDeleteTeam = (options) => (options.client ?? client).delete({
|
|
|
10799
11033
|
...options
|
|
10800
11034
|
});
|
|
10801
11035
|
var orgGetTeam = (options) => (options.client ?? client).get({
|
|
11036
|
+
responseType: "json",
|
|
10802
11037
|
security: [
|
|
10803
11038
|
{ scheme: "basic", type: "http" },
|
|
10804
11039
|
{
|
|
@@ -10824,6 +11059,7 @@ var orgGetTeam = (options) => (options.client ?? client).get({
|
|
|
10824
11059
|
...options
|
|
10825
11060
|
});
|
|
10826
11061
|
var orgEditTeam = (options) => (options.client ?? client).patch({
|
|
11062
|
+
responseType: "json",
|
|
10827
11063
|
security: [
|
|
10828
11064
|
{ scheme: "basic", type: "http" },
|
|
10829
11065
|
{
|
|
@@ -10853,6 +11089,7 @@ var orgEditTeam = (options) => (options.client ?? client).patch({
|
|
|
10853
11089
|
}
|
|
10854
11090
|
});
|
|
10855
11091
|
var orgListTeamActivityFeeds = (options) => (options.client ?? client).get({
|
|
11092
|
+
responseType: "json",
|
|
10856
11093
|
security: [
|
|
10857
11094
|
{ scheme: "basic", type: "http" },
|
|
10858
11095
|
{
|
|
@@ -10878,6 +11115,7 @@ var orgListTeamActivityFeeds = (options) => (options.client ?? client).get({
|
|
|
10878
11115
|
...options
|
|
10879
11116
|
});
|
|
10880
11117
|
var orgListTeamMembers = (options) => (options.client ?? client).get({
|
|
11118
|
+
responseType: "json",
|
|
10881
11119
|
security: [
|
|
10882
11120
|
{ scheme: "basic", type: "http" },
|
|
10883
11121
|
{
|
|
@@ -10903,6 +11141,7 @@ var orgListTeamMembers = (options) => (options.client ?? client).get({
|
|
|
10903
11141
|
...options
|
|
10904
11142
|
});
|
|
10905
11143
|
var orgRemoveTeamMember = (options) => (options.client ?? client).delete({
|
|
11144
|
+
responseType: "json",
|
|
10906
11145
|
security: [
|
|
10907
11146
|
{ scheme: "basic", type: "http" },
|
|
10908
11147
|
{
|
|
@@ -10928,6 +11167,7 @@ var orgRemoveTeamMember = (options) => (options.client ?? client).delete({
|
|
|
10928
11167
|
...options
|
|
10929
11168
|
});
|
|
10930
11169
|
var orgListTeamMember = (options) => (options.client ?? client).get({
|
|
11170
|
+
responseType: "json",
|
|
10931
11171
|
security: [
|
|
10932
11172
|
{ scheme: "basic", type: "http" },
|
|
10933
11173
|
{
|
|
@@ -10953,6 +11193,7 @@ var orgListTeamMember = (options) => (options.client ?? client).get({
|
|
|
10953
11193
|
...options
|
|
10954
11194
|
});
|
|
10955
11195
|
var orgAddTeamMember = (options) => (options.client ?? client).put({
|
|
11196
|
+
responseType: "json",
|
|
10956
11197
|
security: [
|
|
10957
11198
|
{ scheme: "basic", type: "http" },
|
|
10958
11199
|
{
|
|
@@ -10978,6 +11219,7 @@ var orgAddTeamMember = (options) => (options.client ?? client).put({
|
|
|
10978
11219
|
...options
|
|
10979
11220
|
});
|
|
10980
11221
|
var orgListTeamRepos = (options) => (options.client ?? client).get({
|
|
11222
|
+
responseType: "json",
|
|
10981
11223
|
security: [
|
|
10982
11224
|
{ scheme: "basic", type: "http" },
|
|
10983
11225
|
{
|
|
@@ -11003,6 +11245,7 @@ var orgListTeamRepos = (options) => (options.client ?? client).get({
|
|
|
11003
11245
|
...options
|
|
11004
11246
|
});
|
|
11005
11247
|
var orgRemoveTeamRepository = (options) => (options.client ?? client).delete({
|
|
11248
|
+
responseType: "json",
|
|
11006
11249
|
security: [
|
|
11007
11250
|
{ scheme: "basic", type: "http" },
|
|
11008
11251
|
{
|
|
@@ -11028,6 +11271,7 @@ var orgRemoveTeamRepository = (options) => (options.client ?? client).delete({
|
|
|
11028
11271
|
...options
|
|
11029
11272
|
});
|
|
11030
11273
|
var orgListTeamRepo = (options) => (options.client ?? client).get({
|
|
11274
|
+
responseType: "json",
|
|
11031
11275
|
security: [
|
|
11032
11276
|
{ scheme: "basic", type: "http" },
|
|
11033
11277
|
{
|
|
@@ -11053,6 +11297,7 @@ var orgListTeamRepo = (options) => (options.client ?? client).get({
|
|
|
11053
11297
|
...options
|
|
11054
11298
|
});
|
|
11055
11299
|
var orgAddTeamRepository = (options) => (options.client ?? client).put({
|
|
11300
|
+
responseType: "json",
|
|
11056
11301
|
security: [
|
|
11057
11302
|
{ scheme: "basic", type: "http" },
|
|
11058
11303
|
{
|
|
@@ -11078,6 +11323,7 @@ var orgAddTeamRepository = (options) => (options.client ?? client).put({
|
|
|
11078
11323
|
...options
|
|
11079
11324
|
});
|
|
11080
11325
|
var topicSearch = (options) => (options.client ?? client).get({
|
|
11326
|
+
responseType: "json",
|
|
11081
11327
|
security: [
|
|
11082
11328
|
{ scheme: "basic", type: "http" },
|
|
11083
11329
|
{
|
|
@@ -11103,6 +11349,7 @@ var topicSearch = (options) => (options.client ?? client).get({
|
|
|
11103
11349
|
...options
|
|
11104
11350
|
});
|
|
11105
11351
|
var userGetCurrent = (options) => (options?.client ?? client).get({
|
|
11352
|
+
responseType: "json",
|
|
11106
11353
|
security: [
|
|
11107
11354
|
{ scheme: "basic", type: "http" },
|
|
11108
11355
|
{
|
|
@@ -11128,6 +11375,7 @@ var userGetCurrent = (options) => (options?.client ?? client).get({
|
|
|
11128
11375
|
...options
|
|
11129
11376
|
});
|
|
11130
11377
|
var userSearchRunJobs = (options) => (options?.client ?? client).get({
|
|
11378
|
+
responseType: "json",
|
|
11131
11379
|
security: [
|
|
11132
11380
|
{ scheme: "basic", type: "http" },
|
|
11133
11381
|
{
|
|
@@ -11153,6 +11401,7 @@ var userSearchRunJobs = (options) => (options?.client ?? client).get({
|
|
|
11153
11401
|
...options
|
|
11154
11402
|
});
|
|
11155
11403
|
var userGetRunnerRegistrationToken = (options) => (options?.client ?? client).get({
|
|
11404
|
+
responseType: "json",
|
|
11156
11405
|
security: [
|
|
11157
11406
|
{ scheme: "basic", type: "http" },
|
|
11158
11407
|
{
|
|
@@ -11178,6 +11427,7 @@ var userGetRunnerRegistrationToken = (options) => (options?.client ?? client).ge
|
|
|
11178
11427
|
...options
|
|
11179
11428
|
});
|
|
11180
11429
|
var deleteUserSecret = (options) => (options.client ?? client).delete({
|
|
11430
|
+
responseType: "json",
|
|
11181
11431
|
security: [
|
|
11182
11432
|
{ scheme: "basic", type: "http" },
|
|
11183
11433
|
{
|
|
@@ -11203,6 +11453,7 @@ var deleteUserSecret = (options) => (options.client ?? client).delete({
|
|
|
11203
11453
|
...options
|
|
11204
11454
|
});
|
|
11205
11455
|
var updateUserSecret = (options) => (options.client ?? client).put({
|
|
11456
|
+
responseType: "json",
|
|
11206
11457
|
security: [
|
|
11207
11458
|
{ scheme: "basic", type: "http" },
|
|
11208
11459
|
{
|
|
@@ -11232,6 +11483,7 @@ var updateUserSecret = (options) => (options.client ?? client).put({
|
|
|
11232
11483
|
}
|
|
11233
11484
|
});
|
|
11234
11485
|
var getUserVariablesList = (options) => (options?.client ?? client).get({
|
|
11486
|
+
responseType: "json",
|
|
11235
11487
|
security: [
|
|
11236
11488
|
{ scheme: "basic", type: "http" },
|
|
11237
11489
|
{
|
|
@@ -11257,6 +11509,7 @@ var getUserVariablesList = (options) => (options?.client ?? client).get({
|
|
|
11257
11509
|
...options
|
|
11258
11510
|
});
|
|
11259
11511
|
var deleteUserVariable = (options) => (options.client ?? client).delete({
|
|
11512
|
+
responseType: "json",
|
|
11260
11513
|
security: [
|
|
11261
11514
|
{ scheme: "basic", type: "http" },
|
|
11262
11515
|
{
|
|
@@ -11282,6 +11535,7 @@ var deleteUserVariable = (options) => (options.client ?? client).delete({
|
|
|
11282
11535
|
...options
|
|
11283
11536
|
});
|
|
11284
11537
|
var getUserVariable = (options) => (options.client ?? client).get({
|
|
11538
|
+
responseType: "json",
|
|
11285
11539
|
security: [
|
|
11286
11540
|
{ scheme: "basic", type: "http" },
|
|
11287
11541
|
{
|
|
@@ -11307,6 +11561,7 @@ var getUserVariable = (options) => (options.client ?? client).get({
|
|
|
11307
11561
|
...options
|
|
11308
11562
|
});
|
|
11309
11563
|
var createUserVariable = (options) => (options.client ?? client).post({
|
|
11564
|
+
responseType: "json",
|
|
11310
11565
|
security: [
|
|
11311
11566
|
{ scheme: "basic", type: "http" },
|
|
11312
11567
|
{
|
|
@@ -11336,6 +11591,7 @@ var createUserVariable = (options) => (options.client ?? client).post({
|
|
|
11336
11591
|
}
|
|
11337
11592
|
});
|
|
11338
11593
|
var updateUserVariable = (options) => (options.client ?? client).put({
|
|
11594
|
+
responseType: "json",
|
|
11339
11595
|
security: [
|
|
11340
11596
|
{ scheme: "basic", type: "http" },
|
|
11341
11597
|
{
|
|
@@ -11365,6 +11621,7 @@ var updateUserVariable = (options) => (options.client ?? client).put({
|
|
|
11365
11621
|
}
|
|
11366
11622
|
});
|
|
11367
11623
|
var userGetOAuth2Applications = (options) => (options?.client ?? client).get({
|
|
11624
|
+
responseType: "json",
|
|
11368
11625
|
security: [
|
|
11369
11626
|
{ scheme: "basic", type: "http" },
|
|
11370
11627
|
{
|
|
@@ -11390,6 +11647,7 @@ var userGetOAuth2Applications = (options) => (options?.client ?? client).get({
|
|
|
11390
11647
|
...options
|
|
11391
11648
|
});
|
|
11392
11649
|
var userCreateOAuth2Application = (options) => (options.client ?? client).post({
|
|
11650
|
+
responseType: "json",
|
|
11393
11651
|
security: [
|
|
11394
11652
|
{ scheme: "basic", type: "http" },
|
|
11395
11653
|
{
|
|
@@ -11419,6 +11677,7 @@ var userCreateOAuth2Application = (options) => (options.client ?? client).post({
|
|
|
11419
11677
|
}
|
|
11420
11678
|
});
|
|
11421
11679
|
var userDeleteOAuth2Application = (options) => (options.client ?? client).delete({
|
|
11680
|
+
responseType: "json",
|
|
11422
11681
|
security: [
|
|
11423
11682
|
{ scheme: "basic", type: "http" },
|
|
11424
11683
|
{
|
|
@@ -11444,6 +11703,7 @@ var userDeleteOAuth2Application = (options) => (options.client ?? client).delete
|
|
|
11444
11703
|
...options
|
|
11445
11704
|
});
|
|
11446
11705
|
var userGetOAuth2Application = (options) => (options.client ?? client).get({
|
|
11706
|
+
responseType: "json",
|
|
11447
11707
|
security: [
|
|
11448
11708
|
{ scheme: "basic", type: "http" },
|
|
11449
11709
|
{
|
|
@@ -11469,6 +11729,7 @@ var userGetOAuth2Application = (options) => (options.client ?? client).get({
|
|
|
11469
11729
|
...options
|
|
11470
11730
|
});
|
|
11471
11731
|
var userUpdateOAuth2Application = (options) => (options.client ?? client).patch({
|
|
11732
|
+
responseType: "json",
|
|
11472
11733
|
security: [
|
|
11473
11734
|
{ scheme: "basic", type: "http" },
|
|
11474
11735
|
{
|
|
@@ -11498,6 +11759,7 @@ var userUpdateOAuth2Application = (options) => (options.client ?? client).patch(
|
|
|
11498
11759
|
}
|
|
11499
11760
|
});
|
|
11500
11761
|
var userDeleteAvatar = (options) => (options?.client ?? client).delete({
|
|
11762
|
+
responseType: "json",
|
|
11501
11763
|
security: [
|
|
11502
11764
|
{ scheme: "basic", type: "http" },
|
|
11503
11765
|
{
|
|
@@ -11523,6 +11785,7 @@ var userDeleteAvatar = (options) => (options?.client ?? client).delete({
|
|
|
11523
11785
|
...options
|
|
11524
11786
|
});
|
|
11525
11787
|
var userUpdateAvatar = (options) => (options?.client ?? client).post({
|
|
11788
|
+
responseType: "json",
|
|
11526
11789
|
security: [
|
|
11527
11790
|
{ scheme: "basic", type: "http" },
|
|
11528
11791
|
{
|
|
@@ -11552,6 +11815,7 @@ var userUpdateAvatar = (options) => (options?.client ?? client).post({
|
|
|
11552
11815
|
}
|
|
11553
11816
|
});
|
|
11554
11817
|
var userBlockUser = (options) => (options.client ?? client).put({
|
|
11818
|
+
responseType: "json",
|
|
11555
11819
|
security: [
|
|
11556
11820
|
{ scheme: "basic", type: "http" },
|
|
11557
11821
|
{
|
|
@@ -11577,6 +11841,7 @@ var userBlockUser = (options) => (options.client ?? client).put({
|
|
|
11577
11841
|
...options
|
|
11578
11842
|
});
|
|
11579
11843
|
var userDeleteEmail = (options) => (options?.client ?? client).delete({
|
|
11844
|
+
responseType: "json",
|
|
11580
11845
|
security: [
|
|
11581
11846
|
{ scheme: "basic", type: "http" },
|
|
11582
11847
|
{
|
|
@@ -11606,6 +11871,7 @@ var userDeleteEmail = (options) => (options?.client ?? client).delete({
|
|
|
11606
11871
|
}
|
|
11607
11872
|
});
|
|
11608
11873
|
var userListEmails = (options) => (options?.client ?? client).get({
|
|
11874
|
+
responseType: "json",
|
|
11609
11875
|
security: [
|
|
11610
11876
|
{ scheme: "basic", type: "http" },
|
|
11611
11877
|
{
|
|
@@ -11631,6 +11897,7 @@ var userListEmails = (options) => (options?.client ?? client).get({
|
|
|
11631
11897
|
...options
|
|
11632
11898
|
});
|
|
11633
11899
|
var userAddEmail = (options) => (options?.client ?? client).post({
|
|
11900
|
+
responseType: "json",
|
|
11634
11901
|
security: [
|
|
11635
11902
|
{ scheme: "basic", type: "http" },
|
|
11636
11903
|
{
|
|
@@ -11660,6 +11927,7 @@ var userAddEmail = (options) => (options?.client ?? client).post({
|
|
|
11660
11927
|
}
|
|
11661
11928
|
});
|
|
11662
11929
|
var userCurrentListFollowers = (options) => (options?.client ?? client).get({
|
|
11930
|
+
responseType: "json",
|
|
11663
11931
|
security: [
|
|
11664
11932
|
{ scheme: "basic", type: "http" },
|
|
11665
11933
|
{
|
|
@@ -11685,6 +11953,7 @@ var userCurrentListFollowers = (options) => (options?.client ?? client).get({
|
|
|
11685
11953
|
...options
|
|
11686
11954
|
});
|
|
11687
11955
|
var userCurrentListFollowing = (options) => (options?.client ?? client).get({
|
|
11956
|
+
responseType: "json",
|
|
11688
11957
|
security: [
|
|
11689
11958
|
{ scheme: "basic", type: "http" },
|
|
11690
11959
|
{
|
|
@@ -11710,6 +11979,7 @@ var userCurrentListFollowing = (options) => (options?.client ?? client).get({
|
|
|
11710
11979
|
...options
|
|
11711
11980
|
});
|
|
11712
11981
|
var userCurrentDeleteFollow = (options) => (options.client ?? client).delete({
|
|
11982
|
+
responseType: "json",
|
|
11713
11983
|
security: [
|
|
11714
11984
|
{ scheme: "basic", type: "http" },
|
|
11715
11985
|
{
|
|
@@ -11735,6 +12005,7 @@ var userCurrentDeleteFollow = (options) => (options.client ?? client).delete({
|
|
|
11735
12005
|
...options
|
|
11736
12006
|
});
|
|
11737
12007
|
var userCurrentCheckFollowing = (options) => (options.client ?? client).get({
|
|
12008
|
+
responseType: "json",
|
|
11738
12009
|
security: [
|
|
11739
12010
|
{ scheme: "basic", type: "http" },
|
|
11740
12011
|
{
|
|
@@ -11760,6 +12031,7 @@ var userCurrentCheckFollowing = (options) => (options.client ?? client).get({
|
|
|
11760
12031
|
...options
|
|
11761
12032
|
});
|
|
11762
12033
|
var userCurrentPutFollow = (options) => (options.client ?? client).put({
|
|
12034
|
+
responseType: "json",
|
|
11763
12035
|
security: [
|
|
11764
12036
|
{ scheme: "basic", type: "http" },
|
|
11765
12037
|
{
|
|
@@ -11785,6 +12057,7 @@ var userCurrentPutFollow = (options) => (options.client ?? client).put({
|
|
|
11785
12057
|
...options
|
|
11786
12058
|
});
|
|
11787
12059
|
var getVerificationToken = (options) => (options?.client ?? client).get({
|
|
12060
|
+
responseType: "text",
|
|
11788
12061
|
security: [
|
|
11789
12062
|
{ scheme: "basic", type: "http" },
|
|
11790
12063
|
{
|
|
@@ -11810,6 +12083,7 @@ var getVerificationToken = (options) => (options?.client ?? client).get({
|
|
|
11810
12083
|
...options
|
|
11811
12084
|
});
|
|
11812
12085
|
var userVerifyGpgKey = (options) => (options?.client ?? client).post({
|
|
12086
|
+
responseType: "json",
|
|
11813
12087
|
security: [
|
|
11814
12088
|
{ scheme: "basic", type: "http" },
|
|
11815
12089
|
{
|
|
@@ -11839,6 +12113,7 @@ var userVerifyGpgKey = (options) => (options?.client ?? client).post({
|
|
|
11839
12113
|
}
|
|
11840
12114
|
});
|
|
11841
12115
|
var userCurrentListGpgKeys = (options) => (options?.client ?? client).get({
|
|
12116
|
+
responseType: "json",
|
|
11842
12117
|
security: [
|
|
11843
12118
|
{ scheme: "basic", type: "http" },
|
|
11844
12119
|
{
|
|
@@ -11864,6 +12139,7 @@ var userCurrentListGpgKeys = (options) => (options?.client ?? client).get({
|
|
|
11864
12139
|
...options
|
|
11865
12140
|
});
|
|
11866
12141
|
var userCurrentPostGpgKey = (options) => (options?.client ?? client).post({
|
|
12142
|
+
responseType: "json",
|
|
11867
12143
|
security: [
|
|
11868
12144
|
{ scheme: "basic", type: "http" },
|
|
11869
12145
|
{
|
|
@@ -11893,6 +12169,7 @@ var userCurrentPostGpgKey = (options) => (options?.client ?? client).post({
|
|
|
11893
12169
|
}
|
|
11894
12170
|
});
|
|
11895
12171
|
var userCurrentDeleteGpgKey = (options) => (options.client ?? client).delete({
|
|
12172
|
+
responseType: "json",
|
|
11896
12173
|
security: [
|
|
11897
12174
|
{ scheme: "basic", type: "http" },
|
|
11898
12175
|
{
|
|
@@ -11918,6 +12195,7 @@ var userCurrentDeleteGpgKey = (options) => (options.client ?? client).delete({
|
|
|
11918
12195
|
...options
|
|
11919
12196
|
});
|
|
11920
12197
|
var userCurrentGetGpgKey = (options) => (options.client ?? client).get({
|
|
12198
|
+
responseType: "json",
|
|
11921
12199
|
security: [
|
|
11922
12200
|
{ scheme: "basic", type: "http" },
|
|
11923
12201
|
{
|
|
@@ -11943,6 +12221,7 @@ var userCurrentGetGpgKey = (options) => (options.client ?? client).get({
|
|
|
11943
12221
|
...options
|
|
11944
12222
|
});
|
|
11945
12223
|
var userListHooks = (options) => (options?.client ?? client).get({
|
|
12224
|
+
responseType: "json",
|
|
11946
12225
|
security: [
|
|
11947
12226
|
{ scheme: "basic", type: "http" },
|
|
11948
12227
|
{
|
|
@@ -11968,6 +12247,7 @@ var userListHooks = (options) => (options?.client ?? client).get({
|
|
|
11968
12247
|
...options
|
|
11969
12248
|
});
|
|
11970
12249
|
var userCreateHook = (options) => (options.client ?? client).post({
|
|
12250
|
+
responseType: "json",
|
|
11971
12251
|
security: [
|
|
11972
12252
|
{ scheme: "basic", type: "http" },
|
|
11973
12253
|
{
|
|
@@ -11997,6 +12277,7 @@ var userCreateHook = (options) => (options.client ?? client).post({
|
|
|
11997
12277
|
}
|
|
11998
12278
|
});
|
|
11999
12279
|
var userDeleteHook = (options) => (options.client ?? client).delete({
|
|
12280
|
+
responseType: "json",
|
|
12000
12281
|
security: [
|
|
12001
12282
|
{ scheme: "basic", type: "http" },
|
|
12002
12283
|
{
|
|
@@ -12022,6 +12303,7 @@ var userDeleteHook = (options) => (options.client ?? client).delete({
|
|
|
12022
12303
|
...options
|
|
12023
12304
|
});
|
|
12024
12305
|
var userGetHook = (options) => (options.client ?? client).get({
|
|
12306
|
+
responseType: "json",
|
|
12025
12307
|
security: [
|
|
12026
12308
|
{ scheme: "basic", type: "http" },
|
|
12027
12309
|
{
|
|
@@ -12047,6 +12329,7 @@ var userGetHook = (options) => (options.client ?? client).get({
|
|
|
12047
12329
|
...options
|
|
12048
12330
|
});
|
|
12049
12331
|
var userEditHook = (options) => (options.client ?? client).patch({
|
|
12332
|
+
responseType: "json",
|
|
12050
12333
|
security: [
|
|
12051
12334
|
{ scheme: "basic", type: "http" },
|
|
12052
12335
|
{
|
|
@@ -12076,6 +12359,7 @@ var userEditHook = (options) => (options.client ?? client).patch({
|
|
|
12076
12359
|
}
|
|
12077
12360
|
});
|
|
12078
12361
|
var userCurrentListKeys = (options) => (options?.client ?? client).get({
|
|
12362
|
+
responseType: "json",
|
|
12079
12363
|
security: [
|
|
12080
12364
|
{ scheme: "basic", type: "http" },
|
|
12081
12365
|
{
|
|
@@ -12101,6 +12385,7 @@ var userCurrentListKeys = (options) => (options?.client ?? client).get({
|
|
|
12101
12385
|
...options
|
|
12102
12386
|
});
|
|
12103
12387
|
var userCurrentPostKey = (options) => (options?.client ?? client).post({
|
|
12388
|
+
responseType: "json",
|
|
12104
12389
|
security: [
|
|
12105
12390
|
{ scheme: "basic", type: "http" },
|
|
12106
12391
|
{
|
|
@@ -12130,6 +12415,7 @@ var userCurrentPostKey = (options) => (options?.client ?? client).post({
|
|
|
12130
12415
|
}
|
|
12131
12416
|
});
|
|
12132
12417
|
var userCurrentDeleteKey = (options) => (options.client ?? client).delete({
|
|
12418
|
+
responseType: "json",
|
|
12133
12419
|
security: [
|
|
12134
12420
|
{ scheme: "basic", type: "http" },
|
|
12135
12421
|
{
|
|
@@ -12155,6 +12441,7 @@ var userCurrentDeleteKey = (options) => (options.client ?? client).delete({
|
|
|
12155
12441
|
...options
|
|
12156
12442
|
});
|
|
12157
12443
|
var userCurrentGetKey = (options) => (options.client ?? client).get({
|
|
12444
|
+
responseType: "json",
|
|
12158
12445
|
security: [
|
|
12159
12446
|
{ scheme: "basic", type: "http" },
|
|
12160
12447
|
{
|
|
@@ -12180,6 +12467,7 @@ var userCurrentGetKey = (options) => (options.client ?? client).get({
|
|
|
12180
12467
|
...options
|
|
12181
12468
|
});
|
|
12182
12469
|
var userListBlockedUsers = (options) => (options?.client ?? client).get({
|
|
12470
|
+
responseType: "json",
|
|
12183
12471
|
security: [
|
|
12184
12472
|
{ scheme: "basic", type: "http" },
|
|
12185
12473
|
{
|
|
@@ -12205,6 +12493,7 @@ var userListBlockedUsers = (options) => (options?.client ?? client).get({
|
|
|
12205
12493
|
...options
|
|
12206
12494
|
});
|
|
12207
12495
|
var orgListCurrentUserOrgs = (options) => (options?.client ?? client).get({
|
|
12496
|
+
responseType: "json",
|
|
12208
12497
|
security: [
|
|
12209
12498
|
{ scheme: "basic", type: "http" },
|
|
12210
12499
|
{
|
|
@@ -12230,6 +12519,7 @@ var orgListCurrentUserOrgs = (options) => (options?.client ?? client).get({
|
|
|
12230
12519
|
...options
|
|
12231
12520
|
});
|
|
12232
12521
|
var userGetQuota = (options) => (options?.client ?? client).get({
|
|
12522
|
+
responseType: "json",
|
|
12233
12523
|
security: [
|
|
12234
12524
|
{ scheme: "basic", type: "http" },
|
|
12235
12525
|
{
|
|
@@ -12255,6 +12545,7 @@ var userGetQuota = (options) => (options?.client ?? client).get({
|
|
|
12255
12545
|
...options
|
|
12256
12546
|
});
|
|
12257
12547
|
var userListQuotaArtifacts = (options) => (options?.client ?? client).get({
|
|
12548
|
+
responseType: "json",
|
|
12258
12549
|
security: [
|
|
12259
12550
|
{ scheme: "basic", type: "http" },
|
|
12260
12551
|
{
|
|
@@ -12280,6 +12571,7 @@ var userListQuotaArtifacts = (options) => (options?.client ?? client).get({
|
|
|
12280
12571
|
...options
|
|
12281
12572
|
});
|
|
12282
12573
|
var userListQuotaAttachments = (options) => (options?.client ?? client).get({
|
|
12574
|
+
responseType: "json",
|
|
12283
12575
|
security: [
|
|
12284
12576
|
{ scheme: "basic", type: "http" },
|
|
12285
12577
|
{
|
|
@@ -12305,6 +12597,7 @@ var userListQuotaAttachments = (options) => (options?.client ?? client).get({
|
|
|
12305
12597
|
...options
|
|
12306
12598
|
});
|
|
12307
12599
|
var userCheckQuota = (options) => (options.client ?? client).get({
|
|
12600
|
+
responseType: "json",
|
|
12308
12601
|
security: [
|
|
12309
12602
|
{ scheme: "basic", type: "http" },
|
|
12310
12603
|
{
|
|
@@ -12330,6 +12623,7 @@ var userCheckQuota = (options) => (options.client ?? client).get({
|
|
|
12330
12623
|
...options
|
|
12331
12624
|
});
|
|
12332
12625
|
var userListQuotaPackages = (options) => (options?.client ?? client).get({
|
|
12626
|
+
responseType: "json",
|
|
12333
12627
|
security: [
|
|
12334
12628
|
{ scheme: "basic", type: "http" },
|
|
12335
12629
|
{
|
|
@@ -12355,6 +12649,7 @@ var userListQuotaPackages = (options) => (options?.client ?? client).get({
|
|
|
12355
12649
|
...options
|
|
12356
12650
|
});
|
|
12357
12651
|
var userCurrentListRepos = (options) => (options?.client ?? client).get({
|
|
12652
|
+
responseType: "json",
|
|
12358
12653
|
security: [
|
|
12359
12654
|
{ scheme: "basic", type: "http" },
|
|
12360
12655
|
{
|
|
@@ -12380,6 +12675,7 @@ var userCurrentListRepos = (options) => (options?.client ?? client).get({
|
|
|
12380
12675
|
...options
|
|
12381
12676
|
});
|
|
12382
12677
|
var createCurrentUserRepo = (options) => (options?.client ?? client).post({
|
|
12678
|
+
responseType: "json",
|
|
12383
12679
|
security: [
|
|
12384
12680
|
{ scheme: "basic", type: "http" },
|
|
12385
12681
|
{
|
|
@@ -12409,6 +12705,7 @@ var createCurrentUserRepo = (options) => (options?.client ?? client).post({
|
|
|
12409
12705
|
}
|
|
12410
12706
|
});
|
|
12411
12707
|
var getUserSettings = (options) => (options?.client ?? client).get({
|
|
12708
|
+
responseType: "json",
|
|
12412
12709
|
security: [
|
|
12413
12710
|
{ scheme: "basic", type: "http" },
|
|
12414
12711
|
{
|
|
@@ -12434,6 +12731,7 @@ var getUserSettings = (options) => (options?.client ?? client).get({
|
|
|
12434
12731
|
...options
|
|
12435
12732
|
});
|
|
12436
12733
|
var updateUserSettings = (options) => (options?.client ?? client).patch({
|
|
12734
|
+
responseType: "json",
|
|
12437
12735
|
security: [
|
|
12438
12736
|
{ scheme: "basic", type: "http" },
|
|
12439
12737
|
{
|
|
@@ -12463,6 +12761,7 @@ var updateUserSettings = (options) => (options?.client ?? client).patch({
|
|
|
12463
12761
|
}
|
|
12464
12762
|
});
|
|
12465
12763
|
var userCurrentListStarred = (options) => (options?.client ?? client).get({
|
|
12764
|
+
responseType: "json",
|
|
12466
12765
|
security: [
|
|
12467
12766
|
{ scheme: "basic", type: "http" },
|
|
12468
12767
|
{
|
|
@@ -12488,6 +12787,7 @@ var userCurrentListStarred = (options) => (options?.client ?? client).get({
|
|
|
12488
12787
|
...options
|
|
12489
12788
|
});
|
|
12490
12789
|
var userCurrentDeleteStar = (options) => (options.client ?? client).delete({
|
|
12790
|
+
responseType: "json",
|
|
12491
12791
|
security: [
|
|
12492
12792
|
{ scheme: "basic", type: "http" },
|
|
12493
12793
|
{
|
|
@@ -12513,6 +12813,7 @@ var userCurrentDeleteStar = (options) => (options.client ?? client).delete({
|
|
|
12513
12813
|
...options
|
|
12514
12814
|
});
|
|
12515
12815
|
var userCurrentCheckStarring = (options) => (options.client ?? client).get({
|
|
12816
|
+
responseType: "json",
|
|
12516
12817
|
security: [
|
|
12517
12818
|
{ scheme: "basic", type: "http" },
|
|
12518
12819
|
{
|
|
@@ -12538,6 +12839,7 @@ var userCurrentCheckStarring = (options) => (options.client ?? client).get({
|
|
|
12538
12839
|
...options
|
|
12539
12840
|
});
|
|
12540
12841
|
var userCurrentPutStar = (options) => (options.client ?? client).put({
|
|
12842
|
+
responseType: "json",
|
|
12541
12843
|
security: [
|
|
12542
12844
|
{ scheme: "basic", type: "http" },
|
|
12543
12845
|
{
|
|
@@ -12563,6 +12865,7 @@ var userCurrentPutStar = (options) => (options.client ?? client).put({
|
|
|
12563
12865
|
...options
|
|
12564
12866
|
});
|
|
12565
12867
|
var userGetStopWatches = (options) => (options?.client ?? client).get({
|
|
12868
|
+
responseType: "json",
|
|
12566
12869
|
security: [
|
|
12567
12870
|
{ scheme: "basic", type: "http" },
|
|
12568
12871
|
{
|
|
@@ -12588,6 +12891,7 @@ var userGetStopWatches = (options) => (options?.client ?? client).get({
|
|
|
12588
12891
|
...options
|
|
12589
12892
|
});
|
|
12590
12893
|
var userCurrentListSubscriptions = (options) => (options?.client ?? client).get({
|
|
12894
|
+
responseType: "json",
|
|
12591
12895
|
security: [
|
|
12592
12896
|
{ scheme: "basic", type: "http" },
|
|
12593
12897
|
{
|
|
@@ -12613,6 +12917,7 @@ var userCurrentListSubscriptions = (options) => (options?.client ?? client).get(
|
|
|
12613
12917
|
...options
|
|
12614
12918
|
});
|
|
12615
12919
|
var userListTeams = (options) => (options?.client ?? client).get({
|
|
12920
|
+
responseType: "json",
|
|
12616
12921
|
security: [
|
|
12617
12922
|
{ scheme: "basic", type: "http" },
|
|
12618
12923
|
{
|
|
@@ -12638,6 +12943,7 @@ var userListTeams = (options) => (options?.client ?? client).get({
|
|
|
12638
12943
|
...options
|
|
12639
12944
|
});
|
|
12640
12945
|
var userCurrentTrackedTimes = (options) => (options?.client ?? client).get({
|
|
12946
|
+
responseType: "json",
|
|
12641
12947
|
security: [
|
|
12642
12948
|
{ scheme: "basic", type: "http" },
|
|
12643
12949
|
{
|
|
@@ -12663,6 +12969,7 @@ var userCurrentTrackedTimes = (options) => (options?.client ?? client).get({
|
|
|
12663
12969
|
...options
|
|
12664
12970
|
});
|
|
12665
12971
|
var userUnblockUser = (options) => (options.client ?? client).put({
|
|
12972
|
+
responseType: "json",
|
|
12666
12973
|
security: [
|
|
12667
12974
|
{ scheme: "basic", type: "http" },
|
|
12668
12975
|
{
|
|
@@ -12688,6 +12995,7 @@ var userUnblockUser = (options) => (options.client ?? client).put({
|
|
|
12688
12995
|
...options
|
|
12689
12996
|
});
|
|
12690
12997
|
var userSearch = (options) => (options?.client ?? client).get({
|
|
12998
|
+
responseType: "json",
|
|
12691
12999
|
security: [
|
|
12692
13000
|
{ scheme: "basic", type: "http" },
|
|
12693
13001
|
{
|
|
@@ -12713,6 +13021,7 @@ var userSearch = (options) => (options?.client ?? client).get({
|
|
|
12713
13021
|
...options
|
|
12714
13022
|
});
|
|
12715
13023
|
var userGet = (options) => (options.client ?? client).get({
|
|
13024
|
+
responseType: "json",
|
|
12716
13025
|
security: [
|
|
12717
13026
|
{ scheme: "basic", type: "http" },
|
|
12718
13027
|
{
|
|
@@ -12738,6 +13047,7 @@ var userGet = (options) => (options.client ?? client).get({
|
|
|
12738
13047
|
...options
|
|
12739
13048
|
});
|
|
12740
13049
|
var userListActivityFeeds = (options) => (options.client ?? client).get({
|
|
13050
|
+
responseType: "json",
|
|
12741
13051
|
security: [
|
|
12742
13052
|
{ scheme: "basic", type: "http" },
|
|
12743
13053
|
{
|
|
@@ -12763,6 +13073,7 @@ var userListActivityFeeds = (options) => (options.client ?? client).get({
|
|
|
12763
13073
|
...options
|
|
12764
13074
|
});
|
|
12765
13075
|
var userListFollowers = (options) => (options.client ?? client).get({
|
|
13076
|
+
responseType: "json",
|
|
12766
13077
|
security: [
|
|
12767
13078
|
{ scheme: "basic", type: "http" },
|
|
12768
13079
|
{
|
|
@@ -12788,6 +13099,7 @@ var userListFollowers = (options) => (options.client ?? client).get({
|
|
|
12788
13099
|
...options
|
|
12789
13100
|
});
|
|
12790
13101
|
var userListFollowing = (options) => (options.client ?? client).get({
|
|
13102
|
+
responseType: "json",
|
|
12791
13103
|
security: [
|
|
12792
13104
|
{ scheme: "basic", type: "http" },
|
|
12793
13105
|
{
|
|
@@ -12813,6 +13125,7 @@ var userListFollowing = (options) => (options.client ?? client).get({
|
|
|
12813
13125
|
...options
|
|
12814
13126
|
});
|
|
12815
13127
|
var userCheckFollowing = (options) => (options.client ?? client).get({
|
|
13128
|
+
responseType: "json",
|
|
12816
13129
|
security: [
|
|
12817
13130
|
{ scheme: "basic", type: "http" },
|
|
12818
13131
|
{
|
|
@@ -12838,6 +13151,7 @@ var userCheckFollowing = (options) => (options.client ?? client).get({
|
|
|
12838
13151
|
...options
|
|
12839
13152
|
});
|
|
12840
13153
|
var userListGpgKeys = (options) => (options.client ?? client).get({
|
|
13154
|
+
responseType: "json",
|
|
12841
13155
|
security: [
|
|
12842
13156
|
{ scheme: "basic", type: "http" },
|
|
12843
13157
|
{
|
|
@@ -12863,6 +13177,7 @@ var userListGpgKeys = (options) => (options.client ?? client).get({
|
|
|
12863
13177
|
...options
|
|
12864
13178
|
});
|
|
12865
13179
|
var userGetHeatmapData = (options) => (options.client ?? client).get({
|
|
13180
|
+
responseType: "json",
|
|
12866
13181
|
security: [
|
|
12867
13182
|
{ scheme: "basic", type: "http" },
|
|
12868
13183
|
{
|
|
@@ -12888,6 +13203,7 @@ var userGetHeatmapData = (options) => (options.client ?? client).get({
|
|
|
12888
13203
|
...options
|
|
12889
13204
|
});
|
|
12890
13205
|
var userListKeys = (options) => (options.client ?? client).get({
|
|
13206
|
+
responseType: "json",
|
|
12891
13207
|
security: [
|
|
12892
13208
|
{ scheme: "basic", type: "http" },
|
|
12893
13209
|
{
|
|
@@ -12913,6 +13229,7 @@ var userListKeys = (options) => (options.client ?? client).get({
|
|
|
12913
13229
|
...options
|
|
12914
13230
|
});
|
|
12915
13231
|
var orgListUserOrgs = (options) => (options.client ?? client).get({
|
|
13232
|
+
responseType: "json",
|
|
12916
13233
|
security: [
|
|
12917
13234
|
{ scheme: "basic", type: "http" },
|
|
12918
13235
|
{
|
|
@@ -12938,6 +13255,7 @@ var orgListUserOrgs = (options) => (options.client ?? client).get({
|
|
|
12938
13255
|
...options
|
|
12939
13256
|
});
|
|
12940
13257
|
var orgGetUserPermissions = (options) => (options.client ?? client).get({
|
|
13258
|
+
responseType: "json",
|
|
12941
13259
|
security: [
|
|
12942
13260
|
{ scheme: "basic", type: "http" },
|
|
12943
13261
|
{
|
|
@@ -12963,6 +13281,7 @@ var orgGetUserPermissions = (options) => (options.client ?? client).get({
|
|
|
12963
13281
|
...options
|
|
12964
13282
|
});
|
|
12965
13283
|
var userListRepos = (options) => (options.client ?? client).get({
|
|
13284
|
+
responseType: "json",
|
|
12966
13285
|
security: [
|
|
12967
13286
|
{ scheme: "basic", type: "http" },
|
|
12968
13287
|
{
|
|
@@ -12988,6 +13307,7 @@ var userListRepos = (options) => (options.client ?? client).get({
|
|
|
12988
13307
|
...options
|
|
12989
13308
|
});
|
|
12990
13309
|
var userListStarred = (options) => (options.client ?? client).get({
|
|
13310
|
+
responseType: "json",
|
|
12991
13311
|
security: [
|
|
12992
13312
|
{ scheme: "basic", type: "http" },
|
|
12993
13313
|
{
|
|
@@ -13013,6 +13333,7 @@ var userListStarred = (options) => (options.client ?? client).get({
|
|
|
13013
13333
|
...options
|
|
13014
13334
|
});
|
|
13015
13335
|
var userListSubscriptions = (options) => (options.client ?? client).get({
|
|
13336
|
+
responseType: "json",
|
|
13016
13337
|
security: [
|
|
13017
13338
|
{ scheme: "basic", type: "http" },
|
|
13018
13339
|
{
|
|
@@ -13038,6 +13359,7 @@ var userListSubscriptions = (options) => (options.client ?? client).get({
|
|
|
13038
13359
|
...options
|
|
13039
13360
|
});
|
|
13040
13361
|
var userGetTokens = (options) => (options.client ?? client).get({
|
|
13362
|
+
responseType: "json",
|
|
13041
13363
|
security: [
|
|
13042
13364
|
{ scheme: "basic", type: "http" },
|
|
13043
13365
|
{
|
|
@@ -13063,6 +13385,7 @@ var userGetTokens = (options) => (options.client ?? client).get({
|
|
|
13063
13385
|
...options
|
|
13064
13386
|
});
|
|
13065
13387
|
var userCreateToken = (options) => (options.client ?? client).post({
|
|
13388
|
+
responseType: "json",
|
|
13066
13389
|
security: [
|
|
13067
13390
|
{ scheme: "basic", type: "http" },
|
|
13068
13391
|
{
|
|
@@ -13092,6 +13415,7 @@ var userCreateToken = (options) => (options.client ?? client).post({
|
|
|
13092
13415
|
}
|
|
13093
13416
|
});
|
|
13094
13417
|
var userDeleteAccessToken = (options) => (options.client ?? client).delete({
|
|
13418
|
+
responseType: "json",
|
|
13095
13419
|
security: [
|
|
13096
13420
|
{ scheme: "basic", type: "http" },
|
|
13097
13421
|
{
|
|
@@ -13117,6 +13441,7 @@ var userDeleteAccessToken = (options) => (options.client ?? client).delete({
|
|
|
13117
13441
|
...options
|
|
13118
13442
|
});
|
|
13119
13443
|
var getVersion = (options) => (options?.client ?? client).get({
|
|
13444
|
+
responseType: "json",
|
|
13120
13445
|
security: [
|
|
13121
13446
|
{ scheme: "basic", type: "http" },
|
|
13122
13447
|
{
|