@matech/thebigpos-sdk 2.40.6-rc1 → 2.42.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +43 -23
- package/dist/index.js +172 -169
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +224 -182
package/src/index.ts
CHANGED
|
@@ -356,6 +356,8 @@ export type EncompassLogOperationType =
|
|
|
356
356
|
| "General"
|
|
357
357
|
| "FieldReader";
|
|
358
358
|
|
|
359
|
+
export type EncompassEnvironment = "Production" | "UAT";
|
|
360
|
+
|
|
359
361
|
export type DraftType = "NewLoan" | "EditLoan";
|
|
360
362
|
|
|
361
363
|
export type CustomFieldEntityType = "Loan";
|
|
@@ -535,7 +537,7 @@ export interface Action {
|
|
|
535
537
|
comments?: string | null;
|
|
536
538
|
/** @format uuid */
|
|
537
539
|
siteConfigurationID: string;
|
|
538
|
-
applicationSettings?: any;
|
|
540
|
+
applicationSettings?: any | null;
|
|
539
541
|
surveysToken?: string | null;
|
|
540
542
|
}
|
|
541
543
|
|
|
@@ -850,7 +852,7 @@ export interface AuditLogEntry {
|
|
|
850
852
|
rootEntityType?: string | null;
|
|
851
853
|
/** @format uuid */
|
|
852
854
|
rootEntityId?: string | null;
|
|
853
|
-
changes?: any;
|
|
855
|
+
changes?: any | null;
|
|
854
856
|
/** @format date-time */
|
|
855
857
|
createdAt: string;
|
|
856
858
|
}
|
|
@@ -1747,7 +1749,7 @@ export interface DraftLoanOfficerReassignRequest {
|
|
|
1747
1749
|
|
|
1748
1750
|
export interface DraftRequest {
|
|
1749
1751
|
applicationPayload: any;
|
|
1750
|
-
customData?: any;
|
|
1752
|
+
customData?: any | null;
|
|
1751
1753
|
isCoBorrower: boolean;
|
|
1752
1754
|
}
|
|
1753
1755
|
|
|
@@ -1817,7 +1819,10 @@ export interface EncompassCredentialsDetail {
|
|
|
1817
1819
|
loanTemplate?: string | null;
|
|
1818
1820
|
defaultLoanOfficerUserName?: string | null;
|
|
1819
1821
|
clearStateIfUnlicensed: boolean;
|
|
1822
|
+
/** @deprecated */
|
|
1820
1823
|
baseUrl?: string | null;
|
|
1824
|
+
encompassEnvironment: EncompassCredentialsDetailEncompassEnvironmentEnum;
|
|
1825
|
+
consumerConnectWidgetHost?: string | null;
|
|
1821
1826
|
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
1822
1827
|
subscriptionId?: string | null;
|
|
1823
1828
|
environment?: string | null;
|
|
@@ -1833,7 +1838,10 @@ export interface EncompassCredentialsRequest {
|
|
|
1833
1838
|
loanTemplate?: string | null;
|
|
1834
1839
|
defaultLoanOfficerUserName?: string | null;
|
|
1835
1840
|
clearStateIfUnlicensed: boolean;
|
|
1841
|
+
/** @deprecated */
|
|
1836
1842
|
baseUrl?: string | null;
|
|
1843
|
+
encompassEnvironment: EncompassCredentialsRequestEncompassEnvironmentEnum;
|
|
1844
|
+
consumerConnectWidgetHost?: string | null;
|
|
1837
1845
|
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
1838
1846
|
subscriptionId?: string | null;
|
|
1839
1847
|
environment?: string | null;
|
|
@@ -1873,6 +1881,10 @@ export interface EncompassFieldListItem {
|
|
|
1873
1881
|
inUse: boolean;
|
|
1874
1882
|
}
|
|
1875
1883
|
|
|
1884
|
+
export interface EncompassIntegrationSettings {
|
|
1885
|
+
consumerConnectWidgetHost?: string | null;
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1876
1888
|
export interface EncompassLogSearchCriteria {
|
|
1877
1889
|
searchText?: string | null;
|
|
1878
1890
|
operationTypes?: EncompassLogOperationType[] | null;
|
|
@@ -1960,7 +1972,7 @@ export interface EncompassRequestLog {
|
|
|
1960
1972
|
httpStatusCode?: number | null;
|
|
1961
1973
|
/** @format int64 */
|
|
1962
1974
|
durationMs?: number | null;
|
|
1963
|
-
context?: any;
|
|
1975
|
+
context?: any | null;
|
|
1964
1976
|
/** @format date-time */
|
|
1965
1977
|
createdAt: string;
|
|
1966
1978
|
}
|
|
@@ -2010,7 +2022,7 @@ export interface FileSearchCriteria {
|
|
|
2010
2022
|
export interface FileWithBytes {
|
|
2011
2023
|
name: string;
|
|
2012
2024
|
/** @format byte */
|
|
2013
|
-
data:
|
|
2025
|
+
data: Blob;
|
|
2014
2026
|
fileName: string;
|
|
2015
2027
|
mimeType?: string | null;
|
|
2016
2028
|
extension?: string | null;
|
|
@@ -2089,7 +2101,7 @@ export interface FormSubmission {
|
|
|
2089
2101
|
subjectPropertyAddressCounty?: string | null;
|
|
2090
2102
|
subjectPropertyAddressState?: string | null;
|
|
2091
2103
|
subjectPropertyAddressZip?: string | null;
|
|
2092
|
-
data?: any;
|
|
2104
|
+
data?: any | null;
|
|
2093
2105
|
/** @format uuid */
|
|
2094
2106
|
listingID?: string | null;
|
|
2095
2107
|
listing?: Listing | null;
|
|
@@ -2127,7 +2139,7 @@ export interface FormSubmissionRequest {
|
|
|
2127
2139
|
subjectPropertyAddressCounty?: string | null;
|
|
2128
2140
|
subjectPropertyAddressState?: string | null;
|
|
2129
2141
|
subjectPropertyAddressZip?: string | null;
|
|
2130
|
-
data?: any;
|
|
2142
|
+
data?: any | null;
|
|
2131
2143
|
/** @format uuid */
|
|
2132
2144
|
listingID?: string | null;
|
|
2133
2145
|
}
|
|
@@ -2307,7 +2319,7 @@ export interface GetWorkflowRequest {
|
|
|
2307
2319
|
export interface GuidPatchOperation {
|
|
2308
2320
|
op: string;
|
|
2309
2321
|
path: string;
|
|
2310
|
-
value?: any;
|
|
2322
|
+
value?: any | null;
|
|
2311
2323
|
from?: string | null;
|
|
2312
2324
|
}
|
|
2313
2325
|
|
|
@@ -2372,6 +2384,10 @@ export interface ImportUserLoanTaskRequest {
|
|
|
2372
2384
|
userID: string;
|
|
2373
2385
|
}
|
|
2374
2386
|
|
|
2387
|
+
export interface IntegrationSettings {
|
|
2388
|
+
encompass?: EncompassIntegrationSettings | null;
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2375
2391
|
export interface Invite {
|
|
2376
2392
|
/** @format uuid */
|
|
2377
2393
|
id: string;
|
|
@@ -2619,7 +2635,7 @@ export interface LoanApplicationRequest {
|
|
|
2619
2635
|
nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
|
|
2620
2636
|
/** @format uuid */
|
|
2621
2637
|
draftId?: string | null;
|
|
2622
|
-
additionalFields?: Record<string, any
|
|
2638
|
+
additionalFields?: Record<string, any> | null;
|
|
2623
2639
|
/** @format uuid */
|
|
2624
2640
|
existingLoanId?: string | null;
|
|
2625
2641
|
}
|
|
@@ -3546,7 +3562,7 @@ export interface LoanConsentRequest {
|
|
|
3546
3562
|
borrowerEConsent?: boolean | null;
|
|
3547
3563
|
borrowerCreditAuth?: boolean | null;
|
|
3548
3564
|
borrowerTCPAOptIn?: boolean | null;
|
|
3549
|
-
additionalFields?: Record<string, string
|
|
3565
|
+
additionalFields?: Record<string, string> | null;
|
|
3550
3566
|
}
|
|
3551
3567
|
|
|
3552
3568
|
export interface LoanContact {
|
|
@@ -3573,7 +3589,7 @@ export interface LoanContactList {
|
|
|
3573
3589
|
}
|
|
3574
3590
|
|
|
3575
3591
|
export interface LoanCustomFieldsRequest {
|
|
3576
|
-
additionalFields?: Record<string, string
|
|
3592
|
+
additionalFields?: Record<string, string> | null;
|
|
3577
3593
|
}
|
|
3578
3594
|
|
|
3579
3595
|
export interface LoanDocument {
|
|
@@ -4079,7 +4095,7 @@ export interface LoanQueueWithData {
|
|
|
4079
4095
|
user: UserPublic;
|
|
4080
4096
|
loanOfficer: LoanOfficerPublic;
|
|
4081
4097
|
siteConfiguration: SiteConfigurationReduced;
|
|
4082
|
-
data?: any;
|
|
4098
|
+
data?: any | null;
|
|
4083
4099
|
}
|
|
4084
4100
|
|
|
4085
4101
|
export interface LoanRecord {
|
|
@@ -4340,7 +4356,7 @@ export interface ModuleParameterValue {
|
|
|
4340
4356
|
parameterID: string;
|
|
4341
4357
|
parameterName: string;
|
|
4342
4358
|
parameterType: string;
|
|
4343
|
-
value?: any;
|
|
4359
|
+
value?: any | null;
|
|
4344
4360
|
isInherited: boolean;
|
|
4345
4361
|
}
|
|
4346
4362
|
|
|
@@ -6656,10 +6672,18 @@ export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
|
6656
6672
|
|
|
6657
6673
|
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
6658
6674
|
|
|
6675
|
+
export type EncompassCredentialsDetailEncompassEnvironmentEnum =
|
|
6676
|
+
| "Production"
|
|
6677
|
+
| "UAT";
|
|
6678
|
+
|
|
6659
6679
|
export type EncompassCredentialsDetailSigningMethodEnum =
|
|
6660
6680
|
| "ConsumerConnect"
|
|
6661
6681
|
| "POSF";
|
|
6662
6682
|
|
|
6683
|
+
export type EncompassCredentialsRequestEncompassEnvironmentEnum =
|
|
6684
|
+
| "Production"
|
|
6685
|
+
| "UAT";
|
|
6686
|
+
|
|
6663
6687
|
export type EncompassCredentialsRequestSigningMethodEnum =
|
|
6664
6688
|
| "ConsumerConnect"
|
|
6665
6689
|
| "POSF";
|
|
@@ -7045,13 +7069,12 @@ export interface ApiConfig<SecurityDataType = unknown>
|
|
|
7045
7069
|
format?: ResponseType;
|
|
7046
7070
|
}
|
|
7047
7071
|
|
|
7048
|
-
export
|
|
7049
|
-
|
|
7050
|
-
|
|
7051
|
-
|
|
7052
|
-
|
|
7053
|
-
|
|
7054
|
-
}
|
|
7072
|
+
export type ContentType =
|
|
7073
|
+
| "application/json"
|
|
7074
|
+
| "application/vnd.api+json"
|
|
7075
|
+
| "multipart/form-data"
|
|
7076
|
+
| "application/x-www-form-urlencoded"
|
|
7077
|
+
| "text/plain";
|
|
7055
7078
|
|
|
7056
7079
|
export class HttpClient<SecurityDataType = unknown> {
|
|
7057
7080
|
public instance: AxiosInstance;
|
|
@@ -7148,7 +7171,7 @@ export class HttpClient<SecurityDataType = unknown> {
|
|
|
7148
7171
|
const responseFormat = format || this.format || undefined;
|
|
7149
7172
|
|
|
7150
7173
|
if (
|
|
7151
|
-
type ===
|
|
7174
|
+
type === "multipart/form-data" &&
|
|
7152
7175
|
body &&
|
|
7153
7176
|
body !== null &&
|
|
7154
7177
|
typeof body === "object"
|
|
@@ -7157,7 +7180,7 @@ export class HttpClient<SecurityDataType = unknown> {
|
|
|
7157
7180
|
}
|
|
7158
7181
|
|
|
7159
7182
|
if (
|
|
7160
|
-
type ===
|
|
7183
|
+
type === "text/plain" &&
|
|
7161
7184
|
body &&
|
|
7162
7185
|
body !== null &&
|
|
7163
7186
|
typeof body !== "string"
|
|
@@ -7181,7 +7204,7 @@ export class HttpClient<SecurityDataType = unknown> {
|
|
|
7181
7204
|
|
|
7182
7205
|
/**
|
|
7183
7206
|
* @title The Big POS API
|
|
7184
|
-
* @version v2.
|
|
7207
|
+
* @version v2.42.0
|
|
7185
7208
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
7186
7209
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
7187
7210
|
*/
|
|
@@ -7264,7 +7287,7 @@ export class Api<
|
|
|
7264
7287
|
method: "PUT",
|
|
7265
7288
|
body: data,
|
|
7266
7289
|
secure: true,
|
|
7267
|
-
type:
|
|
7290
|
+
type: "application/json",
|
|
7268
7291
|
format: "json",
|
|
7269
7292
|
...params,
|
|
7270
7293
|
}),
|
|
@@ -7308,7 +7331,7 @@ export class Api<
|
|
|
7308
7331
|
method: "PUT",
|
|
7309
7332
|
body: data,
|
|
7310
7333
|
secure: true,
|
|
7311
|
-
type:
|
|
7334
|
+
type: "application/json",
|
|
7312
7335
|
format: "json",
|
|
7313
7336
|
...params,
|
|
7314
7337
|
}),
|
|
@@ -7332,7 +7355,7 @@ export class Api<
|
|
|
7332
7355
|
method: "POST",
|
|
7333
7356
|
body: data,
|
|
7334
7357
|
secure: true,
|
|
7335
|
-
type:
|
|
7358
|
+
type: "application/json",
|
|
7336
7359
|
...params,
|
|
7337
7360
|
}),
|
|
7338
7361
|
|
|
@@ -7356,7 +7379,7 @@ export class Api<
|
|
|
7356
7379
|
method: "POST",
|
|
7357
7380
|
body: data,
|
|
7358
7381
|
secure: true,
|
|
7359
|
-
type:
|
|
7382
|
+
type: "application/json",
|
|
7360
7383
|
...params,
|
|
7361
7384
|
}),
|
|
7362
7385
|
|
|
@@ -7396,7 +7419,7 @@ export class Api<
|
|
|
7396
7419
|
method: "POST",
|
|
7397
7420
|
body: data,
|
|
7398
7421
|
secure: true,
|
|
7399
|
-
type:
|
|
7422
|
+
type: "application/json",
|
|
7400
7423
|
format: "json",
|
|
7401
7424
|
...params,
|
|
7402
7425
|
}),
|
|
@@ -7472,7 +7495,7 @@ export class Api<
|
|
|
7472
7495
|
method: "PUT",
|
|
7473
7496
|
body: data,
|
|
7474
7497
|
secure: true,
|
|
7475
|
-
type:
|
|
7498
|
+
type: "application/json",
|
|
7476
7499
|
format: "json",
|
|
7477
7500
|
...params,
|
|
7478
7501
|
}),
|
|
@@ -7505,7 +7528,7 @@ export class Api<
|
|
|
7505
7528
|
query: query,
|
|
7506
7529
|
body: data,
|
|
7507
7530
|
secure: true,
|
|
7508
|
-
type:
|
|
7531
|
+
type: "application/json",
|
|
7509
7532
|
format: "json",
|
|
7510
7533
|
...params,
|
|
7511
7534
|
}),
|
|
@@ -7570,7 +7593,7 @@ export class Api<
|
|
|
7570
7593
|
method: "POST",
|
|
7571
7594
|
body: data,
|
|
7572
7595
|
secure: true,
|
|
7573
|
-
type:
|
|
7596
|
+
type: "application/json",
|
|
7574
7597
|
format: "json",
|
|
7575
7598
|
...params,
|
|
7576
7599
|
}),
|
|
@@ -7592,7 +7615,7 @@ export class Api<
|
|
|
7592
7615
|
method: "POST",
|
|
7593
7616
|
body: data,
|
|
7594
7617
|
secure: true,
|
|
7595
|
-
type:
|
|
7618
|
+
type: "application/json",
|
|
7596
7619
|
format: "json",
|
|
7597
7620
|
...params,
|
|
7598
7621
|
}),
|
|
@@ -7617,7 +7640,7 @@ export class Api<
|
|
|
7617
7640
|
method: "POST",
|
|
7618
7641
|
body: data,
|
|
7619
7642
|
secure: true,
|
|
7620
|
-
type:
|
|
7643
|
+
type: "application/json",
|
|
7621
7644
|
format: "json",
|
|
7622
7645
|
...params,
|
|
7623
7646
|
}),
|
|
@@ -7639,7 +7662,7 @@ export class Api<
|
|
|
7639
7662
|
method: "POST",
|
|
7640
7663
|
body: data,
|
|
7641
7664
|
secure: true,
|
|
7642
|
-
type:
|
|
7665
|
+
type: "application/json",
|
|
7643
7666
|
format: "json",
|
|
7644
7667
|
...params,
|
|
7645
7668
|
}),
|
|
@@ -7661,7 +7684,7 @@ export class Api<
|
|
|
7661
7684
|
method: "POST",
|
|
7662
7685
|
body: data,
|
|
7663
7686
|
secure: true,
|
|
7664
|
-
type:
|
|
7687
|
+
type: "application/json",
|
|
7665
7688
|
format: "json",
|
|
7666
7689
|
...params,
|
|
7667
7690
|
}),
|
|
@@ -7734,7 +7757,7 @@ export class Api<
|
|
|
7734
7757
|
method: "POST",
|
|
7735
7758
|
body: data,
|
|
7736
7759
|
secure: true,
|
|
7737
|
-
type:
|
|
7760
|
+
type: "application/json",
|
|
7738
7761
|
format: "json",
|
|
7739
7762
|
...params,
|
|
7740
7763
|
}),
|
|
@@ -7767,7 +7790,7 @@ export class Api<
|
|
|
7767
7790
|
query: query,
|
|
7768
7791
|
body: data,
|
|
7769
7792
|
secure: true,
|
|
7770
|
-
type:
|
|
7793
|
+
type: "application/json",
|
|
7771
7794
|
format: "json",
|
|
7772
7795
|
...params,
|
|
7773
7796
|
}),
|
|
@@ -7812,7 +7835,7 @@ export class Api<
|
|
|
7812
7835
|
method: "PUT",
|
|
7813
7836
|
body: data,
|
|
7814
7837
|
secure: true,
|
|
7815
|
-
type:
|
|
7838
|
+
type: "application/json",
|
|
7816
7839
|
format: "json",
|
|
7817
7840
|
...params,
|
|
7818
7841
|
}),
|
|
@@ -7875,7 +7898,7 @@ export class Api<
|
|
|
7875
7898
|
method: "POST",
|
|
7876
7899
|
body: data,
|
|
7877
7900
|
secure: true,
|
|
7878
|
-
type:
|
|
7901
|
+
type: "application/json",
|
|
7879
7902
|
format: "json",
|
|
7880
7903
|
...params,
|
|
7881
7904
|
}),
|
|
@@ -7929,7 +7952,7 @@ export class Api<
|
|
|
7929
7952
|
query: query,
|
|
7930
7953
|
body: data,
|
|
7931
7954
|
secure: true,
|
|
7932
|
-
type:
|
|
7955
|
+
type: "application/json",
|
|
7933
7956
|
format: "json",
|
|
7934
7957
|
...params,
|
|
7935
7958
|
}),
|
|
@@ -7998,7 +8021,7 @@ export class Api<
|
|
|
7998
8021
|
method: "POST",
|
|
7999
8022
|
body: data,
|
|
8000
8023
|
secure: true,
|
|
8001
|
-
type:
|
|
8024
|
+
type: "application/json",
|
|
8002
8025
|
format: "json",
|
|
8003
8026
|
...params,
|
|
8004
8027
|
}),
|
|
@@ -8043,7 +8066,7 @@ export class Api<
|
|
|
8043
8066
|
method: "PUT",
|
|
8044
8067
|
body: data,
|
|
8045
8068
|
secure: true,
|
|
8046
|
-
type:
|
|
8069
|
+
type: "application/json",
|
|
8047
8070
|
format: "json",
|
|
8048
8071
|
...params,
|
|
8049
8072
|
}),
|
|
@@ -8104,7 +8127,7 @@ export class Api<
|
|
|
8104
8127
|
method: "POST",
|
|
8105
8128
|
body: data,
|
|
8106
8129
|
secure: true,
|
|
8107
|
-
type:
|
|
8130
|
+
type: "application/json",
|
|
8108
8131
|
format: "json",
|
|
8109
8132
|
...params,
|
|
8110
8133
|
}),
|
|
@@ -8198,7 +8221,7 @@ export class Api<
|
|
|
8198
8221
|
method: "POST",
|
|
8199
8222
|
body: data,
|
|
8200
8223
|
secure: true,
|
|
8201
|
-
type:
|
|
8224
|
+
type: "application/json",
|
|
8202
8225
|
format: "json",
|
|
8203
8226
|
...params,
|
|
8204
8227
|
}),
|
|
@@ -8231,7 +8254,7 @@ export class Api<
|
|
|
8231
8254
|
query: query,
|
|
8232
8255
|
body: data,
|
|
8233
8256
|
secure: true,
|
|
8234
|
-
type:
|
|
8257
|
+
type: "application/json",
|
|
8235
8258
|
format: "json",
|
|
8236
8259
|
...params,
|
|
8237
8260
|
}),
|
|
@@ -8276,7 +8299,7 @@ export class Api<
|
|
|
8276
8299
|
method: "PUT",
|
|
8277
8300
|
body: data,
|
|
8278
8301
|
secure: true,
|
|
8279
|
-
type:
|
|
8302
|
+
type: "application/json",
|
|
8280
8303
|
format: "json",
|
|
8281
8304
|
...params,
|
|
8282
8305
|
}),
|
|
@@ -8338,7 +8361,7 @@ export class Api<
|
|
|
8338
8361
|
method: "POST",
|
|
8339
8362
|
body: data,
|
|
8340
8363
|
secure: true,
|
|
8341
|
-
type:
|
|
8364
|
+
type: "application/json",
|
|
8342
8365
|
format: "json",
|
|
8343
8366
|
...params,
|
|
8344
8367
|
}),
|
|
@@ -8392,7 +8415,7 @@ export class Api<
|
|
|
8392
8415
|
query: query,
|
|
8393
8416
|
body: data,
|
|
8394
8417
|
secure: true,
|
|
8395
|
-
type:
|
|
8418
|
+
type: "application/json",
|
|
8396
8419
|
format: "json",
|
|
8397
8420
|
...params,
|
|
8398
8421
|
}),
|
|
@@ -8481,7 +8504,7 @@ export class Api<
|
|
|
8481
8504
|
method: "POST",
|
|
8482
8505
|
body: data,
|
|
8483
8506
|
secure: true,
|
|
8484
|
-
type:
|
|
8507
|
+
type: "application/json",
|
|
8485
8508
|
format: "json",
|
|
8486
8509
|
...params,
|
|
8487
8510
|
}),
|
|
@@ -8530,7 +8553,7 @@ export class Api<
|
|
|
8530
8553
|
method: "PUT",
|
|
8531
8554
|
body: data,
|
|
8532
8555
|
secure: true,
|
|
8533
|
-
type:
|
|
8556
|
+
type: "application/json",
|
|
8534
8557
|
format: "json",
|
|
8535
8558
|
...params,
|
|
8536
8559
|
}),
|
|
@@ -8664,7 +8687,7 @@ export class Api<
|
|
|
8664
8687
|
method: "PUT",
|
|
8665
8688
|
body: data,
|
|
8666
8689
|
secure: true,
|
|
8667
|
-
type:
|
|
8690
|
+
type: "application/json",
|
|
8668
8691
|
format: "json",
|
|
8669
8692
|
...params,
|
|
8670
8693
|
}),
|
|
@@ -8783,7 +8806,7 @@ export class Api<
|
|
|
8783
8806
|
method: "POST",
|
|
8784
8807
|
body: data,
|
|
8785
8808
|
secure: true,
|
|
8786
|
-
type:
|
|
8809
|
+
type: "application/json",
|
|
8787
8810
|
format: "json",
|
|
8788
8811
|
...params,
|
|
8789
8812
|
}),
|
|
@@ -8860,7 +8883,7 @@ export class Api<
|
|
|
8860
8883
|
method: "PUT",
|
|
8861
8884
|
body: data,
|
|
8862
8885
|
secure: true,
|
|
8863
|
-
type:
|
|
8886
|
+
type: "application/json",
|
|
8864
8887
|
format: "json",
|
|
8865
8888
|
...params,
|
|
8866
8889
|
}),
|
|
@@ -8947,7 +8970,7 @@ export class Api<
|
|
|
8947
8970
|
method: "POST",
|
|
8948
8971
|
body: data,
|
|
8949
8972
|
secure: true,
|
|
8950
|
-
type:
|
|
8973
|
+
type: "application/json",
|
|
8951
8974
|
format: "json",
|
|
8952
8975
|
...params,
|
|
8953
8976
|
}),
|
|
@@ -8996,7 +9019,7 @@ export class Api<
|
|
|
8996
9019
|
method: "PUT",
|
|
8997
9020
|
body: data,
|
|
8998
9021
|
secure: true,
|
|
8999
|
-
type:
|
|
9022
|
+
type: "application/json",
|
|
9000
9023
|
format: "json",
|
|
9001
9024
|
...params,
|
|
9002
9025
|
}),
|
|
@@ -9069,7 +9092,7 @@ export class Api<
|
|
|
9069
9092
|
method: "POST",
|
|
9070
9093
|
body: data,
|
|
9071
9094
|
secure: true,
|
|
9072
|
-
type:
|
|
9095
|
+
type: "application/json",
|
|
9073
9096
|
format: "json",
|
|
9074
9097
|
...params,
|
|
9075
9098
|
}),
|
|
@@ -9241,7 +9264,7 @@ export class Api<
|
|
|
9241
9264
|
method: "POST",
|
|
9242
9265
|
body: data,
|
|
9243
9266
|
secure: true,
|
|
9244
|
-
type:
|
|
9267
|
+
type: "application/json",
|
|
9245
9268
|
format: "json",
|
|
9246
9269
|
...params,
|
|
9247
9270
|
}),
|
|
@@ -9304,7 +9327,7 @@ export class Api<
|
|
|
9304
9327
|
method: "POST",
|
|
9305
9328
|
body: data,
|
|
9306
9329
|
secure: true,
|
|
9307
|
-
type:
|
|
9330
|
+
type: "multipart/form-data",
|
|
9308
9331
|
format: "json",
|
|
9309
9332
|
...params,
|
|
9310
9333
|
}),
|
|
@@ -9345,7 +9368,7 @@ export class Api<
|
|
|
9345
9368
|
method: "PUT",
|
|
9346
9369
|
body: data,
|
|
9347
9370
|
secure: true,
|
|
9348
|
-
type:
|
|
9371
|
+
type: "application/json",
|
|
9349
9372
|
format: "json",
|
|
9350
9373
|
...params,
|
|
9351
9374
|
}),
|
|
@@ -9396,7 +9419,7 @@ export class Api<
|
|
|
9396
9419
|
query: query,
|
|
9397
9420
|
body: data,
|
|
9398
9421
|
secure: true,
|
|
9399
|
-
type:
|
|
9422
|
+
type: "application/json",
|
|
9400
9423
|
format: "json",
|
|
9401
9424
|
...params,
|
|
9402
9425
|
}),
|
|
@@ -9443,7 +9466,7 @@ export class Api<
|
|
|
9443
9466
|
method: "POST",
|
|
9444
9467
|
body: data,
|
|
9445
9468
|
secure: true,
|
|
9446
|
-
type:
|
|
9469
|
+
type: "application/json",
|
|
9447
9470
|
format: "json",
|
|
9448
9471
|
...params,
|
|
9449
9472
|
}),
|
|
@@ -9484,7 +9507,7 @@ export class Api<
|
|
|
9484
9507
|
method: "PUT",
|
|
9485
9508
|
body: data,
|
|
9486
9509
|
secure: true,
|
|
9487
|
-
type:
|
|
9510
|
+
type: "application/json",
|
|
9488
9511
|
format: "json",
|
|
9489
9512
|
...params,
|
|
9490
9513
|
}),
|
|
@@ -9550,7 +9573,7 @@ export class Api<
|
|
|
9550
9573
|
method: "POST",
|
|
9551
9574
|
body: data,
|
|
9552
9575
|
secure: true,
|
|
9553
|
-
type:
|
|
9576
|
+
type: "multipart/form-data",
|
|
9554
9577
|
format: "json",
|
|
9555
9578
|
...params,
|
|
9556
9579
|
}),
|
|
@@ -9658,7 +9681,7 @@ export class Api<
|
|
|
9658
9681
|
query: query,
|
|
9659
9682
|
body: data,
|
|
9660
9683
|
secure: true,
|
|
9661
|
-
type:
|
|
9684
|
+
type: "application/json",
|
|
9662
9685
|
format: "json",
|
|
9663
9686
|
...params,
|
|
9664
9687
|
}),
|
|
@@ -9702,7 +9725,7 @@ export class Api<
|
|
|
9702
9725
|
method: "PUT",
|
|
9703
9726
|
body: data,
|
|
9704
9727
|
secure: true,
|
|
9705
|
-
type:
|
|
9728
|
+
type: "application/json",
|
|
9706
9729
|
format: "json",
|
|
9707
9730
|
...params,
|
|
9708
9731
|
}),
|
|
@@ -9753,7 +9776,7 @@ export class Api<
|
|
|
9753
9776
|
query: query,
|
|
9754
9777
|
body: data,
|
|
9755
9778
|
secure: true,
|
|
9756
|
-
type:
|
|
9779
|
+
type: "application/json",
|
|
9757
9780
|
format: "json",
|
|
9758
9781
|
...params,
|
|
9759
9782
|
}),
|
|
@@ -9797,7 +9820,7 @@ export class Api<
|
|
|
9797
9820
|
method: "POST",
|
|
9798
9821
|
body: data,
|
|
9799
9822
|
secure: true,
|
|
9800
|
-
type:
|
|
9823
|
+
type: "application/json",
|
|
9801
9824
|
format: "json",
|
|
9802
9825
|
...params,
|
|
9803
9826
|
}),
|
|
@@ -9842,7 +9865,7 @@ export class Api<
|
|
|
9842
9865
|
method: "PUT",
|
|
9843
9866
|
body: data,
|
|
9844
9867
|
secure: true,
|
|
9845
|
-
type:
|
|
9868
|
+
type: "application/json",
|
|
9846
9869
|
format: "json",
|
|
9847
9870
|
...params,
|
|
9848
9871
|
}),
|
|
@@ -9870,6 +9893,25 @@ export class Api<
|
|
|
9870
9893
|
...params,
|
|
9871
9894
|
}),
|
|
9872
9895
|
|
|
9896
|
+
/**
|
|
9897
|
+
* No description
|
|
9898
|
+
*
|
|
9899
|
+
* @tags IntegrationSettings
|
|
9900
|
+
* @name GetIntegrationSettings
|
|
9901
|
+
* @summary Get Integration Settings
|
|
9902
|
+
* @request GET:/api/integrations/settings
|
|
9903
|
+
* @secure
|
|
9904
|
+
* @response `200` `IntegrationSettings` Success
|
|
9905
|
+
*/
|
|
9906
|
+
getIntegrationSettings: (params: RequestParams = {}) =>
|
|
9907
|
+
this.request<IntegrationSettings, any>({
|
|
9908
|
+
path: `/api/integrations/settings`,
|
|
9909
|
+
method: "GET",
|
|
9910
|
+
secure: true,
|
|
9911
|
+
format: "json",
|
|
9912
|
+
...params,
|
|
9913
|
+
}),
|
|
9914
|
+
|
|
9873
9915
|
/**
|
|
9874
9916
|
* No description
|
|
9875
9917
|
*
|
|
@@ -9911,7 +9953,7 @@ export class Api<
|
|
|
9911
9953
|
method: "PATCH",
|
|
9912
9954
|
body: data,
|
|
9913
9955
|
secure: true,
|
|
9914
|
-
type:
|
|
9956
|
+
type: "application/json",
|
|
9915
9957
|
format: "json",
|
|
9916
9958
|
...params,
|
|
9917
9959
|
}),
|
|
@@ -9932,7 +9974,7 @@ export class Api<
|
|
|
9932
9974
|
method: "POST",
|
|
9933
9975
|
body: data,
|
|
9934
9976
|
secure: true,
|
|
9935
|
-
type:
|
|
9977
|
+
type: "application/json",
|
|
9936
9978
|
format: "json",
|
|
9937
9979
|
...params,
|
|
9938
9980
|
}),
|
|
@@ -9964,7 +10006,7 @@ export class Api<
|
|
|
9964
10006
|
query: query,
|
|
9965
10007
|
body: data,
|
|
9966
10008
|
secure: true,
|
|
9967
|
-
type:
|
|
10009
|
+
type: "application/json",
|
|
9968
10010
|
format: "json",
|
|
9969
10011
|
...params,
|
|
9970
10012
|
}),
|
|
@@ -9995,7 +10037,7 @@ export class Api<
|
|
|
9995
10037
|
query: query,
|
|
9996
10038
|
body: data,
|
|
9997
10039
|
secure: true,
|
|
9998
|
-
type:
|
|
10040
|
+
type: "application/json",
|
|
9999
10041
|
format: "json",
|
|
10000
10042
|
...params,
|
|
10001
10043
|
}),
|
|
@@ -10021,7 +10063,7 @@ export class Api<
|
|
|
10021
10063
|
method: "PATCH",
|
|
10022
10064
|
body: data,
|
|
10023
10065
|
secure: true,
|
|
10024
|
-
type:
|
|
10066
|
+
type: "application/json",
|
|
10025
10067
|
format: "json",
|
|
10026
10068
|
...params,
|
|
10027
10069
|
}),
|
|
@@ -10048,7 +10090,7 @@ export class Api<
|
|
|
10048
10090
|
method: "PATCH",
|
|
10049
10091
|
body: data,
|
|
10050
10092
|
secure: true,
|
|
10051
|
-
type:
|
|
10093
|
+
type: "application/json",
|
|
10052
10094
|
format: "json",
|
|
10053
10095
|
...params,
|
|
10054
10096
|
}),
|
|
@@ -10205,7 +10247,7 @@ export class Api<
|
|
|
10205
10247
|
method: "POST",
|
|
10206
10248
|
body: data,
|
|
10207
10249
|
secure: true,
|
|
10208
|
-
type:
|
|
10250
|
+
type: "application/json",
|
|
10209
10251
|
format: "json",
|
|
10210
10252
|
...params,
|
|
10211
10253
|
}),
|
|
@@ -10265,7 +10307,7 @@ export class Api<
|
|
|
10265
10307
|
method: "POST",
|
|
10266
10308
|
body: data,
|
|
10267
10309
|
secure: true,
|
|
10268
|
-
type:
|
|
10310
|
+
type: "multipart/form-data",
|
|
10269
10311
|
format: "json",
|
|
10270
10312
|
...params,
|
|
10271
10313
|
}),
|
|
@@ -10290,7 +10332,7 @@ export class Api<
|
|
|
10290
10332
|
method: "PATCH",
|
|
10291
10333
|
body: data,
|
|
10292
10334
|
secure: true,
|
|
10293
|
-
type:
|
|
10335
|
+
type: "application/json",
|
|
10294
10336
|
format: "json",
|
|
10295
10337
|
...params,
|
|
10296
10338
|
}),
|
|
@@ -10345,7 +10387,7 @@ export class Api<
|
|
|
10345
10387
|
method: "POST",
|
|
10346
10388
|
body: data,
|
|
10347
10389
|
secure: true,
|
|
10348
|
-
type:
|
|
10390
|
+
type: "multipart/form-data",
|
|
10349
10391
|
format: "json",
|
|
10350
10392
|
...params,
|
|
10351
10393
|
}),
|
|
@@ -10370,7 +10412,7 @@ export class Api<
|
|
|
10370
10412
|
method: "PATCH",
|
|
10371
10413
|
body: data,
|
|
10372
10414
|
secure: true,
|
|
10373
|
-
type:
|
|
10415
|
+
type: "application/json",
|
|
10374
10416
|
format: "json",
|
|
10375
10417
|
...params,
|
|
10376
10418
|
}),
|
|
@@ -10444,7 +10486,7 @@ export class Api<
|
|
|
10444
10486
|
method: "POST",
|
|
10445
10487
|
body: data,
|
|
10446
10488
|
secure: true,
|
|
10447
|
-
type:
|
|
10489
|
+
type: "application/json",
|
|
10448
10490
|
format: "json",
|
|
10449
10491
|
...params,
|
|
10450
10492
|
}),
|
|
@@ -10507,7 +10549,7 @@ export class Api<
|
|
|
10507
10549
|
method: "PUT",
|
|
10508
10550
|
body: data,
|
|
10509
10551
|
secure: true,
|
|
10510
|
-
type:
|
|
10552
|
+
type: "application/json",
|
|
10511
10553
|
format: "json",
|
|
10512
10554
|
...params,
|
|
10513
10555
|
}),
|
|
@@ -10558,7 +10600,7 @@ export class Api<
|
|
|
10558
10600
|
query: query,
|
|
10559
10601
|
body: data,
|
|
10560
10602
|
secure: true,
|
|
10561
|
-
type:
|
|
10603
|
+
type: "application/json",
|
|
10562
10604
|
format: "json",
|
|
10563
10605
|
...params,
|
|
10564
10606
|
}),
|
|
@@ -10586,7 +10628,7 @@ export class Api<
|
|
|
10586
10628
|
method: "PUT",
|
|
10587
10629
|
body: data,
|
|
10588
10630
|
secure: true,
|
|
10589
|
-
type:
|
|
10631
|
+
type: "multipart/form-data",
|
|
10590
10632
|
format: "json",
|
|
10591
10633
|
...params,
|
|
10592
10634
|
}),
|
|
@@ -10669,7 +10711,7 @@ export class Api<
|
|
|
10669
10711
|
method: "POST",
|
|
10670
10712
|
body: data,
|
|
10671
10713
|
secure: true,
|
|
10672
|
-
type:
|
|
10714
|
+
type: "application/json",
|
|
10673
10715
|
format: "json",
|
|
10674
10716
|
...params,
|
|
10675
10717
|
}),
|
|
@@ -10716,7 +10758,7 @@ export class Api<
|
|
|
10716
10758
|
method: "POST",
|
|
10717
10759
|
body: data,
|
|
10718
10760
|
secure: true,
|
|
10719
|
-
type:
|
|
10761
|
+
type: "application/json",
|
|
10720
10762
|
format: "json",
|
|
10721
10763
|
...params,
|
|
10722
10764
|
}),
|
|
@@ -10764,7 +10806,7 @@ export class Api<
|
|
|
10764
10806
|
method: "POST",
|
|
10765
10807
|
body: data,
|
|
10766
10808
|
secure: true,
|
|
10767
|
-
type:
|
|
10809
|
+
type: "application/json",
|
|
10768
10810
|
...params,
|
|
10769
10811
|
}),
|
|
10770
10812
|
|
|
@@ -10829,7 +10871,7 @@ export class Api<
|
|
|
10829
10871
|
method: "PUT",
|
|
10830
10872
|
body: data,
|
|
10831
10873
|
secure: true,
|
|
10832
|
-
type:
|
|
10874
|
+
type: "application/json",
|
|
10833
10875
|
...params,
|
|
10834
10876
|
}),
|
|
10835
10877
|
|
|
@@ -10857,7 +10899,7 @@ export class Api<
|
|
|
10857
10899
|
method: "PUT",
|
|
10858
10900
|
body: data,
|
|
10859
10901
|
secure: true,
|
|
10860
|
-
type:
|
|
10902
|
+
type: "application/json",
|
|
10861
10903
|
...params,
|
|
10862
10904
|
}),
|
|
10863
10905
|
|
|
@@ -10923,7 +10965,7 @@ export class Api<
|
|
|
10923
10965
|
method: "POST",
|
|
10924
10966
|
body: data,
|
|
10925
10967
|
secure: true,
|
|
10926
|
-
type:
|
|
10968
|
+
type: "application/json",
|
|
10927
10969
|
format: "json",
|
|
10928
10970
|
...params,
|
|
10929
10971
|
}),
|
|
@@ -10968,7 +11010,7 @@ export class Api<
|
|
|
10968
11010
|
method: "POST",
|
|
10969
11011
|
body: data,
|
|
10970
11012
|
secure: true,
|
|
10971
|
-
type:
|
|
11013
|
+
type: "application/json",
|
|
10972
11014
|
format: "json",
|
|
10973
11015
|
...params,
|
|
10974
11016
|
}),
|
|
@@ -11017,7 +11059,7 @@ export class Api<
|
|
|
11017
11059
|
method: "PUT",
|
|
11018
11060
|
body: data,
|
|
11019
11061
|
secure: true,
|
|
11020
|
-
type:
|
|
11062
|
+
type: "application/json",
|
|
11021
11063
|
format: "json",
|
|
11022
11064
|
...params,
|
|
11023
11065
|
}),
|
|
@@ -11152,7 +11194,7 @@ export class Api<
|
|
|
11152
11194
|
method: "POST",
|
|
11153
11195
|
body: data,
|
|
11154
11196
|
secure: true,
|
|
11155
|
-
type:
|
|
11197
|
+
type: "application/json",
|
|
11156
11198
|
format: "json",
|
|
11157
11199
|
...params,
|
|
11158
11200
|
}),
|
|
@@ -11186,7 +11228,7 @@ export class Api<
|
|
|
11186
11228
|
query: query,
|
|
11187
11229
|
body: data,
|
|
11188
11230
|
secure: true,
|
|
11189
|
-
type:
|
|
11231
|
+
type: "application/json",
|
|
11190
11232
|
format: "json",
|
|
11191
11233
|
...params,
|
|
11192
11234
|
}),
|
|
@@ -11216,7 +11258,7 @@ export class Api<
|
|
|
11216
11258
|
query: query,
|
|
11217
11259
|
body: data,
|
|
11218
11260
|
secure: true,
|
|
11219
|
-
type:
|
|
11261
|
+
type: "application/json",
|
|
11220
11262
|
format: "json",
|
|
11221
11263
|
...params,
|
|
11222
11264
|
}),
|
|
@@ -11229,7 +11271,7 @@ export class Api<
|
|
|
11229
11271
|
* @summary Download By ID
|
|
11230
11272
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
11231
11273
|
* @secure
|
|
11232
|
-
* @response `200` `
|
|
11274
|
+
* @response `200` `Blob` Success
|
|
11233
11275
|
* @response `404` `ProblemDetails` Not Found
|
|
11234
11276
|
*/
|
|
11235
11277
|
downloadLoanDocument: (
|
|
@@ -11237,7 +11279,7 @@ export class Api<
|
|
|
11237
11279
|
documentId: string,
|
|
11238
11280
|
params: RequestParams = {},
|
|
11239
11281
|
) =>
|
|
11240
|
-
this.request<
|
|
11282
|
+
this.request<Blob, ProblemDetails>({
|
|
11241
11283
|
path: `/api/loans/${loanId}/documents/${documentId}/download`,
|
|
11242
11284
|
method: "GET",
|
|
11243
11285
|
secure: true,
|
|
@@ -11274,7 +11316,7 @@ export class Api<
|
|
|
11274
11316
|
method: "POST",
|
|
11275
11317
|
body: data,
|
|
11276
11318
|
secure: true,
|
|
11277
|
-
type:
|
|
11319
|
+
type: "multipart/form-data",
|
|
11278
11320
|
format: "json",
|
|
11279
11321
|
...params,
|
|
11280
11322
|
}),
|
|
@@ -11324,7 +11366,7 @@ export class Api<
|
|
|
11324
11366
|
method: "POST",
|
|
11325
11367
|
body: data,
|
|
11326
11368
|
secure: true,
|
|
11327
|
-
type:
|
|
11369
|
+
type: "application/json",
|
|
11328
11370
|
format: "json",
|
|
11329
11371
|
...params,
|
|
11330
11372
|
}),
|
|
@@ -11351,7 +11393,7 @@ export class Api<
|
|
|
11351
11393
|
method: "POST",
|
|
11352
11394
|
body: data,
|
|
11353
11395
|
secure: true,
|
|
11354
|
-
type:
|
|
11396
|
+
type: "application/json",
|
|
11355
11397
|
...params,
|
|
11356
11398
|
}),
|
|
11357
11399
|
|
|
@@ -11415,7 +11457,7 @@ export class Api<
|
|
|
11415
11457
|
method: "POST",
|
|
11416
11458
|
body: data,
|
|
11417
11459
|
secure: true,
|
|
11418
|
-
type:
|
|
11460
|
+
type: "application/json",
|
|
11419
11461
|
format: "json",
|
|
11420
11462
|
...params,
|
|
11421
11463
|
}),
|
|
@@ -11478,7 +11520,7 @@ export class Api<
|
|
|
11478
11520
|
method: "PUT",
|
|
11479
11521
|
body: data,
|
|
11480
11522
|
secure: true,
|
|
11481
|
-
type:
|
|
11523
|
+
type: "application/json",
|
|
11482
11524
|
format: "json",
|
|
11483
11525
|
...params,
|
|
11484
11526
|
}),
|
|
@@ -11529,7 +11571,7 @@ export class Api<
|
|
|
11529
11571
|
query: query,
|
|
11530
11572
|
body: data,
|
|
11531
11573
|
secure: true,
|
|
11532
|
-
type:
|
|
11574
|
+
type: "application/json",
|
|
11533
11575
|
format: "json",
|
|
11534
11576
|
...params,
|
|
11535
11577
|
}),
|
|
@@ -11554,7 +11596,7 @@ export class Api<
|
|
|
11554
11596
|
method: "PUT",
|
|
11555
11597
|
body: data,
|
|
11556
11598
|
secure: true,
|
|
11557
|
-
type:
|
|
11599
|
+
type: "application/json",
|
|
11558
11600
|
format: "json",
|
|
11559
11601
|
...params,
|
|
11560
11602
|
}),
|
|
@@ -11629,7 +11671,7 @@ export class Api<
|
|
|
11629
11671
|
method: "POST",
|
|
11630
11672
|
body: data,
|
|
11631
11673
|
secure: true,
|
|
11632
|
-
type:
|
|
11674
|
+
type: "application/json",
|
|
11633
11675
|
format: "json",
|
|
11634
11676
|
...params,
|
|
11635
11677
|
}),
|
|
@@ -11725,7 +11767,7 @@ export class Api<
|
|
|
11725
11767
|
method: "POST",
|
|
11726
11768
|
body: data,
|
|
11727
11769
|
secure: true,
|
|
11728
|
-
type:
|
|
11770
|
+
type: "application/json",
|
|
11729
11771
|
format: "json",
|
|
11730
11772
|
...params,
|
|
11731
11773
|
}),
|
|
@@ -11759,7 +11801,7 @@ export class Api<
|
|
|
11759
11801
|
query: query,
|
|
11760
11802
|
body: data,
|
|
11761
11803
|
secure: true,
|
|
11762
|
-
type:
|
|
11804
|
+
type: "application/json",
|
|
11763
11805
|
format: "json",
|
|
11764
11806
|
...params,
|
|
11765
11807
|
}),
|
|
@@ -11847,7 +11889,7 @@ export class Api<
|
|
|
11847
11889
|
query: query,
|
|
11848
11890
|
body: data,
|
|
11849
11891
|
secure: true,
|
|
11850
|
-
type:
|
|
11892
|
+
type: "application/json",
|
|
11851
11893
|
format: "json",
|
|
11852
11894
|
...params,
|
|
11853
11895
|
}),
|
|
@@ -11892,7 +11934,7 @@ export class Api<
|
|
|
11892
11934
|
method: "POST",
|
|
11893
11935
|
body: data,
|
|
11894
11936
|
secure: true,
|
|
11895
|
-
type:
|
|
11937
|
+
type: "application/json",
|
|
11896
11938
|
format: "json",
|
|
11897
11939
|
...params,
|
|
11898
11940
|
}),
|
|
@@ -11946,7 +11988,7 @@ export class Api<
|
|
|
11946
11988
|
query: query,
|
|
11947
11989
|
body: data,
|
|
11948
11990
|
secure: true,
|
|
11949
|
-
type:
|
|
11991
|
+
type: "application/json",
|
|
11950
11992
|
format: "json",
|
|
11951
11993
|
...params,
|
|
11952
11994
|
}),
|
|
@@ -11979,7 +12021,7 @@ export class Api<
|
|
|
11979
12021
|
query: query,
|
|
11980
12022
|
body: data,
|
|
11981
12023
|
secure: true,
|
|
11982
|
-
type:
|
|
12024
|
+
type: "application/json",
|
|
11983
12025
|
format: "json",
|
|
11984
12026
|
...params,
|
|
11985
12027
|
}),
|
|
@@ -12025,7 +12067,7 @@ export class Api<
|
|
|
12025
12067
|
method: "PUT",
|
|
12026
12068
|
body: data,
|
|
12027
12069
|
secure: true,
|
|
12028
|
-
type:
|
|
12070
|
+
type: "application/json",
|
|
12029
12071
|
format: "json",
|
|
12030
12072
|
...params,
|
|
12031
12073
|
}),
|
|
@@ -12126,7 +12168,7 @@ export class Api<
|
|
|
12126
12168
|
method: "POST",
|
|
12127
12169
|
body: data,
|
|
12128
12170
|
secure: true,
|
|
12129
|
-
type:
|
|
12171
|
+
type: "application/json",
|
|
12130
12172
|
format: "json",
|
|
12131
12173
|
...params,
|
|
12132
12174
|
}),
|
|
@@ -12159,7 +12201,7 @@ export class Api<
|
|
|
12159
12201
|
query: query,
|
|
12160
12202
|
body: data,
|
|
12161
12203
|
secure: true,
|
|
12162
|
-
type:
|
|
12204
|
+
type: "application/json",
|
|
12163
12205
|
format: "json",
|
|
12164
12206
|
...params,
|
|
12165
12207
|
}),
|
|
@@ -12294,7 +12336,7 @@ export class Api<
|
|
|
12294
12336
|
method: "POST",
|
|
12295
12337
|
body: data,
|
|
12296
12338
|
secure: true,
|
|
12297
|
-
type:
|
|
12339
|
+
type: "application/json",
|
|
12298
12340
|
format: "json",
|
|
12299
12341
|
...params,
|
|
12300
12342
|
}),
|
|
@@ -12330,7 +12372,7 @@ export class Api<
|
|
|
12330
12372
|
query: query,
|
|
12331
12373
|
body: data,
|
|
12332
12374
|
secure: true,
|
|
12333
|
-
type:
|
|
12375
|
+
type: "application/json",
|
|
12334
12376
|
format: "json",
|
|
12335
12377
|
...params,
|
|
12336
12378
|
}),
|
|
@@ -12382,7 +12424,7 @@ export class Api<
|
|
|
12382
12424
|
method: "POST",
|
|
12383
12425
|
body: data,
|
|
12384
12426
|
secure: true,
|
|
12385
|
-
type:
|
|
12427
|
+
type: "application/json",
|
|
12386
12428
|
format: "json",
|
|
12387
12429
|
...params,
|
|
12388
12430
|
}),
|
|
@@ -12410,7 +12452,7 @@ export class Api<
|
|
|
12410
12452
|
method: "PUT",
|
|
12411
12453
|
body: data,
|
|
12412
12454
|
secure: true,
|
|
12413
|
-
type:
|
|
12455
|
+
type: "application/json",
|
|
12414
12456
|
format: "json",
|
|
12415
12457
|
...params,
|
|
12416
12458
|
}),
|
|
@@ -12469,7 +12511,7 @@ export class Api<
|
|
|
12469
12511
|
method: "POST",
|
|
12470
12512
|
body: data,
|
|
12471
12513
|
secure: true,
|
|
12472
|
-
type:
|
|
12514
|
+
type: "multipart/form-data",
|
|
12473
12515
|
format: "json",
|
|
12474
12516
|
...params,
|
|
12475
12517
|
}),
|
|
@@ -12542,7 +12584,7 @@ export class Api<
|
|
|
12542
12584
|
method: "POST",
|
|
12543
12585
|
body: data,
|
|
12544
12586
|
secure: true,
|
|
12545
|
-
type:
|
|
12587
|
+
type: "application/json",
|
|
12546
12588
|
...params,
|
|
12547
12589
|
}),
|
|
12548
12590
|
|
|
@@ -12574,7 +12616,7 @@ export class Api<
|
|
|
12574
12616
|
query: query,
|
|
12575
12617
|
body: data,
|
|
12576
12618
|
secure: true,
|
|
12577
|
-
type:
|
|
12619
|
+
type: "application/json",
|
|
12578
12620
|
format: "json",
|
|
12579
12621
|
...params,
|
|
12580
12622
|
}),
|
|
@@ -12599,7 +12641,7 @@ export class Api<
|
|
|
12599
12641
|
method: "POST",
|
|
12600
12642
|
body: data,
|
|
12601
12643
|
secure: true,
|
|
12602
|
-
type:
|
|
12644
|
+
type: "application/json",
|
|
12603
12645
|
format: "json",
|
|
12604
12646
|
...params,
|
|
12605
12647
|
}),
|
|
@@ -12686,7 +12728,7 @@ export class Api<
|
|
|
12686
12728
|
method: "POST",
|
|
12687
12729
|
body: data,
|
|
12688
12730
|
secure: true,
|
|
12689
|
-
type:
|
|
12731
|
+
type: "application/json",
|
|
12690
12732
|
format: "json",
|
|
12691
12733
|
...params,
|
|
12692
12734
|
}),
|
|
@@ -12712,7 +12754,7 @@ export class Api<
|
|
|
12712
12754
|
method: "POST",
|
|
12713
12755
|
body: data,
|
|
12714
12756
|
secure: true,
|
|
12715
|
-
type:
|
|
12757
|
+
type: "application/json",
|
|
12716
12758
|
format: "json",
|
|
12717
12759
|
...params,
|
|
12718
12760
|
}),
|
|
@@ -12739,7 +12781,7 @@ export class Api<
|
|
|
12739
12781
|
method: "PUT",
|
|
12740
12782
|
body: data,
|
|
12741
12783
|
secure: true,
|
|
12742
|
-
type:
|
|
12784
|
+
type: "application/json",
|
|
12743
12785
|
format: "json",
|
|
12744
12786
|
...params,
|
|
12745
12787
|
}),
|
|
@@ -12856,7 +12898,7 @@ export class Api<
|
|
|
12856
12898
|
method: "POST",
|
|
12857
12899
|
body: data,
|
|
12858
12900
|
secure: true,
|
|
12859
|
-
type:
|
|
12901
|
+
type: "application/json",
|
|
12860
12902
|
format: "json",
|
|
12861
12903
|
...params,
|
|
12862
12904
|
}),
|
|
@@ -12934,7 +12976,7 @@ export class Api<
|
|
|
12934
12976
|
query: query,
|
|
12935
12977
|
body: data,
|
|
12936
12978
|
secure: true,
|
|
12937
|
-
type:
|
|
12979
|
+
type: "application/json",
|
|
12938
12980
|
format: "json",
|
|
12939
12981
|
...params,
|
|
12940
12982
|
}),
|
|
@@ -12978,7 +13020,7 @@ export class Api<
|
|
|
12978
13020
|
method: "POST",
|
|
12979
13021
|
body: data,
|
|
12980
13022
|
secure: true,
|
|
12981
|
-
type:
|
|
13023
|
+
type: "application/json",
|
|
12982
13024
|
format: "json",
|
|
12983
13025
|
...params,
|
|
12984
13026
|
}),
|
|
@@ -13025,7 +13067,7 @@ export class Api<
|
|
|
13025
13067
|
method: "PUT",
|
|
13026
13068
|
body: data,
|
|
13027
13069
|
secure: true,
|
|
13028
|
-
type:
|
|
13070
|
+
type: "application/json",
|
|
13029
13071
|
format: "json",
|
|
13030
13072
|
...params,
|
|
13031
13073
|
}),
|
|
@@ -13071,7 +13113,7 @@ export class Api<
|
|
|
13071
13113
|
method: "POST",
|
|
13072
13114
|
body: data,
|
|
13073
13115
|
secure: true,
|
|
13074
|
-
type:
|
|
13116
|
+
type: "application/json",
|
|
13075
13117
|
format: "json",
|
|
13076
13118
|
...params,
|
|
13077
13119
|
}),
|
|
@@ -13096,7 +13138,7 @@ export class Api<
|
|
|
13096
13138
|
method: "POST",
|
|
13097
13139
|
body: data,
|
|
13098
13140
|
secure: true,
|
|
13099
|
-
type:
|
|
13141
|
+
type: "application/json",
|
|
13100
13142
|
format: "json",
|
|
13101
13143
|
...params,
|
|
13102
13144
|
}),
|
|
@@ -13121,7 +13163,7 @@ export class Api<
|
|
|
13121
13163
|
method: "POST",
|
|
13122
13164
|
body: data,
|
|
13123
13165
|
secure: true,
|
|
13124
|
-
type:
|
|
13166
|
+
type: "application/json",
|
|
13125
13167
|
format: "json",
|
|
13126
13168
|
...params,
|
|
13127
13169
|
}),
|
|
@@ -13146,7 +13188,7 @@ export class Api<
|
|
|
13146
13188
|
method: "POST",
|
|
13147
13189
|
body: data,
|
|
13148
13190
|
secure: true,
|
|
13149
|
-
type:
|
|
13191
|
+
type: "application/json",
|
|
13150
13192
|
format: "json",
|
|
13151
13193
|
...params,
|
|
13152
13194
|
}),
|
|
@@ -13171,7 +13213,7 @@ export class Api<
|
|
|
13171
13213
|
method: "POST",
|
|
13172
13214
|
body: data,
|
|
13173
13215
|
secure: true,
|
|
13174
|
-
type:
|
|
13216
|
+
type: "application/json",
|
|
13175
13217
|
format: "json",
|
|
13176
13218
|
...params,
|
|
13177
13219
|
}),
|
|
@@ -13196,7 +13238,7 @@ export class Api<
|
|
|
13196
13238
|
method: "POST",
|
|
13197
13239
|
body: data,
|
|
13198
13240
|
secure: true,
|
|
13199
|
-
type:
|
|
13241
|
+
type: "application/json",
|
|
13200
13242
|
...params,
|
|
13201
13243
|
}),
|
|
13202
13244
|
|
|
@@ -13220,7 +13262,7 @@ export class Api<
|
|
|
13220
13262
|
method: "POST",
|
|
13221
13263
|
body: data,
|
|
13222
13264
|
secure: true,
|
|
13223
|
-
type:
|
|
13265
|
+
type: "application/json",
|
|
13224
13266
|
...params,
|
|
13225
13267
|
}),
|
|
13226
13268
|
|
|
@@ -13269,7 +13311,7 @@ export class Api<
|
|
|
13269
13311
|
method: "POST",
|
|
13270
13312
|
body: data,
|
|
13271
13313
|
secure: true,
|
|
13272
|
-
type:
|
|
13314
|
+
type: "application/json",
|
|
13273
13315
|
format: "json",
|
|
13274
13316
|
...params,
|
|
13275
13317
|
}),
|
|
@@ -13302,7 +13344,7 @@ export class Api<
|
|
|
13302
13344
|
query: query,
|
|
13303
13345
|
body: data,
|
|
13304
13346
|
secure: true,
|
|
13305
|
-
type:
|
|
13347
|
+
type: "application/json",
|
|
13306
13348
|
format: "json",
|
|
13307
13349
|
...params,
|
|
13308
13350
|
}),
|
|
@@ -13347,7 +13389,7 @@ export class Api<
|
|
|
13347
13389
|
method: "PUT",
|
|
13348
13390
|
body: data,
|
|
13349
13391
|
secure: true,
|
|
13350
|
-
type:
|
|
13392
|
+
type: "application/json",
|
|
13351
13393
|
format: "json",
|
|
13352
13394
|
...params,
|
|
13353
13395
|
}),
|
|
@@ -13431,7 +13473,7 @@ export class Api<
|
|
|
13431
13473
|
method: "POST",
|
|
13432
13474
|
body: data,
|
|
13433
13475
|
secure: true,
|
|
13434
|
-
type:
|
|
13476
|
+
type: "application/json",
|
|
13435
13477
|
format: "json",
|
|
13436
13478
|
...params,
|
|
13437
13479
|
}),
|
|
@@ -13480,7 +13522,7 @@ export class Api<
|
|
|
13480
13522
|
method: "PUT",
|
|
13481
13523
|
body: data,
|
|
13482
13524
|
secure: true,
|
|
13483
|
-
type:
|
|
13525
|
+
type: "application/json",
|
|
13484
13526
|
format: "json",
|
|
13485
13527
|
...params,
|
|
13486
13528
|
}),
|
|
@@ -13569,7 +13611,7 @@ export class Api<
|
|
|
13569
13611
|
query: query,
|
|
13570
13612
|
body: data,
|
|
13571
13613
|
secure: true,
|
|
13572
|
-
type:
|
|
13614
|
+
type: "application/json",
|
|
13573
13615
|
format: "json",
|
|
13574
13616
|
...params,
|
|
13575
13617
|
}),
|
|
@@ -13614,7 +13656,7 @@ export class Api<
|
|
|
13614
13656
|
method: "POST",
|
|
13615
13657
|
body: data,
|
|
13616
13658
|
secure: true,
|
|
13617
|
-
type:
|
|
13659
|
+
type: "application/json",
|
|
13618
13660
|
format: "json",
|
|
13619
13661
|
...params,
|
|
13620
13662
|
}),
|
|
@@ -13668,7 +13710,7 @@ export class Api<
|
|
|
13668
13710
|
query: query,
|
|
13669
13711
|
body: data,
|
|
13670
13712
|
secure: true,
|
|
13671
|
-
type:
|
|
13713
|
+
type: "application/json",
|
|
13672
13714
|
format: "json",
|
|
13673
13715
|
...params,
|
|
13674
13716
|
}),
|
|
@@ -13713,7 +13755,7 @@ export class Api<
|
|
|
13713
13755
|
method: "POST",
|
|
13714
13756
|
body: data,
|
|
13715
13757
|
secure: true,
|
|
13716
|
-
type:
|
|
13758
|
+
type: "application/json",
|
|
13717
13759
|
format: "json",
|
|
13718
13760
|
...params,
|
|
13719
13761
|
}),
|
|
@@ -13765,7 +13807,7 @@ export class Api<
|
|
|
13765
13807
|
method: "POST",
|
|
13766
13808
|
body: data,
|
|
13767
13809
|
secure: true,
|
|
13768
|
-
type:
|
|
13810
|
+
type: "application/json",
|
|
13769
13811
|
format: "json",
|
|
13770
13812
|
...params,
|
|
13771
13813
|
}),
|
|
@@ -13822,7 +13864,7 @@ export class Api<
|
|
|
13822
13864
|
query: query,
|
|
13823
13865
|
body: data,
|
|
13824
13866
|
secure: true,
|
|
13825
|
-
type:
|
|
13867
|
+
type: "application/json",
|
|
13826
13868
|
format: "json",
|
|
13827
13869
|
...params,
|
|
13828
13870
|
}),
|
|
@@ -14005,7 +14047,7 @@ export class Api<
|
|
|
14005
14047
|
method: "POST",
|
|
14006
14048
|
body: data,
|
|
14007
14049
|
secure: true,
|
|
14008
|
-
type:
|
|
14050
|
+
type: "application/json",
|
|
14009
14051
|
format: "json",
|
|
14010
14052
|
...params,
|
|
14011
14053
|
}),
|
|
@@ -14053,7 +14095,7 @@ export class Api<
|
|
|
14053
14095
|
method: "POST",
|
|
14054
14096
|
body: data,
|
|
14055
14097
|
secure: true,
|
|
14056
|
-
type:
|
|
14098
|
+
type: "application/json",
|
|
14057
14099
|
format: "json",
|
|
14058
14100
|
...params,
|
|
14059
14101
|
}),
|
|
@@ -14105,7 +14147,7 @@ export class Api<
|
|
|
14105
14147
|
method: "POST",
|
|
14106
14148
|
body: data,
|
|
14107
14149
|
secure: true,
|
|
14108
|
-
type:
|
|
14150
|
+
type: "application/json",
|
|
14109
14151
|
format: "json",
|
|
14110
14152
|
...params,
|
|
14111
14153
|
}),
|
|
@@ -14147,7 +14189,7 @@ export class Api<
|
|
|
14147
14189
|
method: "PUT",
|
|
14148
14190
|
body: data,
|
|
14149
14191
|
secure: true,
|
|
14150
|
-
type:
|
|
14192
|
+
type: "application/json",
|
|
14151
14193
|
...params,
|
|
14152
14194
|
}),
|
|
14153
14195
|
|
|
@@ -14198,7 +14240,7 @@ export class Api<
|
|
|
14198
14240
|
query: query,
|
|
14199
14241
|
body: data,
|
|
14200
14242
|
secure: true,
|
|
14201
|
-
type:
|
|
14243
|
+
type: "application/json",
|
|
14202
14244
|
format: "json",
|
|
14203
14245
|
...params,
|
|
14204
14246
|
}),
|
|
@@ -14221,7 +14263,7 @@ export class Api<
|
|
|
14221
14263
|
method: "POST",
|
|
14222
14264
|
body: data,
|
|
14223
14265
|
secure: true,
|
|
14224
|
-
type:
|
|
14266
|
+
type: "application/json",
|
|
14225
14267
|
...params,
|
|
14226
14268
|
}),
|
|
14227
14269
|
|
|
@@ -14253,7 +14295,7 @@ export class Api<
|
|
|
14253
14295
|
query: query,
|
|
14254
14296
|
body: data,
|
|
14255
14297
|
secure: true,
|
|
14256
|
-
type:
|
|
14298
|
+
type: "application/json",
|
|
14257
14299
|
format: "json",
|
|
14258
14300
|
...params,
|
|
14259
14301
|
}),
|
|
@@ -14295,7 +14337,7 @@ export class Api<
|
|
|
14295
14337
|
method: "POST",
|
|
14296
14338
|
body: data,
|
|
14297
14339
|
secure: true,
|
|
14298
|
-
type:
|
|
14340
|
+
type: "application/json",
|
|
14299
14341
|
format: "json",
|
|
14300
14342
|
...params,
|
|
14301
14343
|
}),
|
|
@@ -14318,7 +14360,7 @@ export class Api<
|
|
|
14318
14360
|
method: "PUT",
|
|
14319
14361
|
body: data,
|
|
14320
14362
|
secure: true,
|
|
14321
|
-
type:
|
|
14363
|
+
type: "application/json",
|
|
14322
14364
|
format: "json",
|
|
14323
14365
|
...params,
|
|
14324
14366
|
}),
|
|
@@ -14359,7 +14401,7 @@ export class Api<
|
|
|
14359
14401
|
method: "POST",
|
|
14360
14402
|
body: data,
|
|
14361
14403
|
secure: true,
|
|
14362
|
-
type:
|
|
14404
|
+
type: "application/json",
|
|
14363
14405
|
format: "json",
|
|
14364
14406
|
...params,
|
|
14365
14407
|
}),
|
|
@@ -14409,7 +14451,7 @@ export class Api<
|
|
|
14409
14451
|
query: query,
|
|
14410
14452
|
body: data,
|
|
14411
14453
|
secure: true,
|
|
14412
|
-
type:
|
|
14454
|
+
type: "application/json",
|
|
14413
14455
|
format: "json",
|
|
14414
14456
|
...params,
|
|
14415
14457
|
}),
|
|
@@ -14583,7 +14625,7 @@ export class Api<
|
|
|
14583
14625
|
method: "POST",
|
|
14584
14626
|
body: data,
|
|
14585
14627
|
secure: true,
|
|
14586
|
-
type:
|
|
14628
|
+
type: "application/json",
|
|
14587
14629
|
format: "json",
|
|
14588
14630
|
...params,
|
|
14589
14631
|
}),
|
|
@@ -14682,7 +14724,7 @@ export class Api<
|
|
|
14682
14724
|
method: "POST",
|
|
14683
14725
|
body: data,
|
|
14684
14726
|
secure: true,
|
|
14685
|
-
type:
|
|
14727
|
+
type: "application/json",
|
|
14686
14728
|
format: "json",
|
|
14687
14729
|
...params,
|
|
14688
14730
|
}),
|
|
@@ -14748,7 +14790,7 @@ export class Api<
|
|
|
14748
14790
|
method: "POST",
|
|
14749
14791
|
body: data,
|
|
14750
14792
|
secure: true,
|
|
14751
|
-
type:
|
|
14793
|
+
type: "application/json",
|
|
14752
14794
|
format: "json",
|
|
14753
14795
|
...params,
|
|
14754
14796
|
}),
|
|
@@ -14819,7 +14861,7 @@ export class Api<
|
|
|
14819
14861
|
query: query,
|
|
14820
14862
|
body: data,
|
|
14821
14863
|
secure: true,
|
|
14822
|
-
type:
|
|
14864
|
+
type: "application/json",
|
|
14823
14865
|
format: "json",
|
|
14824
14866
|
...params,
|
|
14825
14867
|
}),
|
|
@@ -14916,7 +14958,7 @@ export class Api<
|
|
|
14916
14958
|
method: "PUT",
|
|
14917
14959
|
body: data,
|
|
14918
14960
|
secure: true,
|
|
14919
|
-
type:
|
|
14961
|
+
type: "application/json",
|
|
14920
14962
|
format: "json",
|
|
14921
14963
|
...params,
|
|
14922
14964
|
}),
|
|
@@ -14958,7 +15000,7 @@ export class Api<
|
|
|
14958
15000
|
method: "POST",
|
|
14959
15001
|
body: data,
|
|
14960
15002
|
secure: true,
|
|
14961
|
-
type:
|
|
15003
|
+
type: "application/json",
|
|
14962
15004
|
format: "json",
|
|
14963
15005
|
...params,
|
|
14964
15006
|
}),
|
|
@@ -14984,7 +15026,7 @@ export class Api<
|
|
|
14984
15026
|
method: "POST",
|
|
14985
15027
|
body: data,
|
|
14986
15028
|
secure: true,
|
|
14987
|
-
type:
|
|
15029
|
+
type: "application/json",
|
|
14988
15030
|
...params,
|
|
14989
15031
|
}),
|
|
14990
15032
|
|
|
@@ -15009,7 +15051,7 @@ export class Api<
|
|
|
15009
15051
|
method: "POST",
|
|
15010
15052
|
body: data,
|
|
15011
15053
|
secure: true,
|
|
15012
|
-
type:
|
|
15054
|
+
type: "application/json",
|
|
15013
15055
|
...params,
|
|
15014
15056
|
}),
|
|
15015
15057
|
|
|
@@ -15095,7 +15137,7 @@ export class Api<
|
|
|
15095
15137
|
method: "POST",
|
|
15096
15138
|
body: data,
|
|
15097
15139
|
secure: true,
|
|
15098
|
-
type:
|
|
15140
|
+
type: "application/json",
|
|
15099
15141
|
...params,
|
|
15100
15142
|
}),
|
|
15101
15143
|
|
|
@@ -15135,7 +15177,7 @@ export class Api<
|
|
|
15135
15177
|
method: "POST",
|
|
15136
15178
|
body: data,
|
|
15137
15179
|
secure: true,
|
|
15138
|
-
type:
|
|
15180
|
+
type: "application/json",
|
|
15139
15181
|
...params,
|
|
15140
15182
|
}),
|
|
15141
15183
|
|
|
@@ -15218,7 +15260,7 @@ export class Api<
|
|
|
15218
15260
|
method: "POST",
|
|
15219
15261
|
body: data,
|
|
15220
15262
|
secure: true,
|
|
15221
|
-
type:
|
|
15263
|
+
type: "application/json",
|
|
15222
15264
|
...params,
|
|
15223
15265
|
}),
|
|
15224
15266
|
|
|
@@ -15310,7 +15352,7 @@ export class Api<
|
|
|
15310
15352
|
method: "POST",
|
|
15311
15353
|
body: data,
|
|
15312
15354
|
secure: true,
|
|
15313
|
-
type:
|
|
15355
|
+
type: "application/json",
|
|
15314
15356
|
format: "json",
|
|
15315
15357
|
...params,
|
|
15316
15358
|
}),
|
|
@@ -15343,7 +15385,7 @@ export class Api<
|
|
|
15343
15385
|
query: query,
|
|
15344
15386
|
body: data,
|
|
15345
15387
|
secure: true,
|
|
15346
|
-
type:
|
|
15388
|
+
type: "application/json",
|
|
15347
15389
|
format: "json",
|
|
15348
15390
|
...params,
|
|
15349
15391
|
}),
|
|
@@ -15364,7 +15406,7 @@ export class Api<
|
|
|
15364
15406
|
method: "POST",
|
|
15365
15407
|
body: data,
|
|
15366
15408
|
secure: true,
|
|
15367
|
-
type:
|
|
15409
|
+
type: "application/json",
|
|
15368
15410
|
format: "json",
|
|
15369
15411
|
...params,
|
|
15370
15412
|
}),
|
|
@@ -15386,7 +15428,7 @@ export class Api<
|
|
|
15386
15428
|
method: "POST",
|
|
15387
15429
|
body: data,
|
|
15388
15430
|
secure: true,
|
|
15389
|
-
type:
|
|
15431
|
+
type: "application/json",
|
|
15390
15432
|
format: "json",
|
|
15391
15433
|
...params,
|
|
15392
15434
|
}),
|
|
@@ -15412,7 +15454,7 @@ export class Api<
|
|
|
15412
15454
|
method: "PUT",
|
|
15413
15455
|
body: data,
|
|
15414
15456
|
secure: true,
|
|
15415
|
-
type:
|
|
15457
|
+
type: "application/json",
|
|
15416
15458
|
format: "json",
|
|
15417
15459
|
...params,
|
|
15418
15460
|
}),
|
|
@@ -15478,7 +15520,7 @@ export class Api<
|
|
|
15478
15520
|
method: "POST",
|
|
15479
15521
|
body: data,
|
|
15480
15522
|
secure: true,
|
|
15481
|
-
type:
|
|
15523
|
+
type: "application/json",
|
|
15482
15524
|
...params,
|
|
15483
15525
|
}),
|
|
15484
15526
|
|
|
@@ -15499,7 +15541,7 @@ export class Api<
|
|
|
15499
15541
|
method: "POST",
|
|
15500
15542
|
body: data,
|
|
15501
15543
|
secure: true,
|
|
15502
|
-
type:
|
|
15544
|
+
type: "application/json",
|
|
15503
15545
|
...params,
|
|
15504
15546
|
}),
|
|
15505
15547
|
|
|
@@ -15524,7 +15566,7 @@ export class Api<
|
|
|
15524
15566
|
method: "POST",
|
|
15525
15567
|
body: data,
|
|
15526
15568
|
secure: true,
|
|
15527
|
-
type:
|
|
15569
|
+
type: "application/json",
|
|
15528
15570
|
...params,
|
|
15529
15571
|
}),
|
|
15530
15572
|
|
|
@@ -15548,7 +15590,7 @@ export class Api<
|
|
|
15548
15590
|
method: "POST",
|
|
15549
15591
|
body: data,
|
|
15550
15592
|
secure: true,
|
|
15551
|
-
type:
|
|
15593
|
+
type: "application/json",
|
|
15552
15594
|
...params,
|
|
15553
15595
|
}),
|
|
15554
15596
|
|
|
@@ -15591,7 +15633,7 @@ export class Api<
|
|
|
15591
15633
|
method: "PUT",
|
|
15592
15634
|
body: data,
|
|
15593
15635
|
secure: true,
|
|
15594
|
-
type:
|
|
15636
|
+
type: "application/json",
|
|
15595
15637
|
...params,
|
|
15596
15638
|
}),
|
|
15597
15639
|
|
|
@@ -15631,7 +15673,7 @@ export class Api<
|
|
|
15631
15673
|
method: "PUT",
|
|
15632
15674
|
body: data,
|
|
15633
15675
|
secure: true,
|
|
15634
|
-
type:
|
|
15676
|
+
type: "application/json",
|
|
15635
15677
|
format: "json",
|
|
15636
15678
|
...params,
|
|
15637
15679
|
}),
|
|
@@ -15655,7 +15697,7 @@ export class Api<
|
|
|
15655
15697
|
method: "PUT",
|
|
15656
15698
|
body: data,
|
|
15657
15699
|
secure: true,
|
|
15658
|
-
type:
|
|
15700
|
+
type: "application/json",
|
|
15659
15701
|
format: "json",
|
|
15660
15702
|
...params,
|
|
15661
15703
|
}),
|
|
@@ -15732,7 +15774,7 @@ export class Api<
|
|
|
15732
15774
|
method: "POST",
|
|
15733
15775
|
body: data,
|
|
15734
15776
|
secure: true,
|
|
15735
|
-
type:
|
|
15777
|
+
type: "application/json",
|
|
15736
15778
|
...params,
|
|
15737
15779
|
}),
|
|
15738
15780
|
|
|
@@ -15752,7 +15794,7 @@ export class Api<
|
|
|
15752
15794
|
method: "POST",
|
|
15753
15795
|
body: data,
|
|
15754
15796
|
secure: true,
|
|
15755
|
-
type:
|
|
15797
|
+
type: "application/json",
|
|
15756
15798
|
format: "json",
|
|
15757
15799
|
...params,
|
|
15758
15800
|
}),
|