@mittwald/api-client 4.126.0 → 4.127.0
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/esm/generated/v2/client-react.js +0 -2
- package/dist/esm/generated/v2/client.js +7 -9
- package/dist/esm/generated/v2/descriptors.js +19 -25
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +5 -13
- package/dist/types/generated/v2/client.d.ts +175 -199
- package/dist/types/generated/v2/descriptors.d.ts +8 -10
- package/dist/types/generated/v2/types.d.ts +138 -229
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -687,6 +687,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
687
687
|
} | undefined;
|
|
688
688
|
queryParameters?: {
|
|
689
689
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
690
|
+
appIds?: string[] | undefined;
|
|
691
|
+
searchTerm?: string | undefined;
|
|
690
692
|
limit?: number | undefined;
|
|
691
693
|
skip?: number | undefined;
|
|
692
694
|
page?: number | undefined;
|
|
@@ -697,6 +699,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
697
699
|
}>;
|
|
698
700
|
} & {
|
|
699
701
|
queryParameters: {
|
|
702
|
+
appIds?: string[] | undefined;
|
|
703
|
+
searchTerm?: string | undefined;
|
|
700
704
|
limit?: number | undefined;
|
|
701
705
|
skip?: number | undefined;
|
|
702
706
|
page?: number | undefined;
|
|
@@ -717,6 +721,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
717
721
|
}>;
|
|
718
722
|
} & {
|
|
719
723
|
queryParameters: {
|
|
724
|
+
appIds?: string[] | undefined;
|
|
725
|
+
searchTerm?: string | undefined;
|
|
720
726
|
limit?: number | undefined;
|
|
721
727
|
skip?: number | undefined;
|
|
722
728
|
page?: number | undefined;
|
|
@@ -741,6 +747,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
741
747
|
} | undefined;
|
|
742
748
|
queryParameters?: {
|
|
743
749
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
750
|
+
appIds?: string[] | undefined;
|
|
751
|
+
searchTerm?: string | undefined;
|
|
744
752
|
limit?: number | undefined;
|
|
745
753
|
skip?: number | undefined;
|
|
746
754
|
page?: number | undefined;
|
|
@@ -755,6 +763,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
755
763
|
};
|
|
756
764
|
} & {
|
|
757
765
|
queryParameters: {
|
|
766
|
+
appIds?: string[] | undefined;
|
|
767
|
+
searchTerm?: string | undefined;
|
|
758
768
|
limit?: number | undefined;
|
|
759
769
|
skip?: number | undefined;
|
|
760
770
|
page?: number | undefined;
|
|
@@ -779,6 +789,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
779
789
|
};
|
|
780
790
|
} & {
|
|
781
791
|
queryParameters: {
|
|
792
|
+
appIds?: string[] | undefined;
|
|
793
|
+
searchTerm?: string | undefined;
|
|
782
794
|
limit?: number | undefined;
|
|
783
795
|
skip?: number | undefined;
|
|
784
796
|
page?: number | undefined;
|
|
@@ -4354,7 +4366,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4354
4366
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4355
4367
|
[x: string]: unknown;
|
|
4356
4368
|
}, 400, "application/json">>>;
|
|
4357
|
-
/** Authenticate your external application using
|
|
4369
|
+
/** Authenticate your external application using a session token and an extension secret */
|
|
4358
4370
|
extensionAuthenticateWithSessionToken: (request: {
|
|
4359
4371
|
data: {
|
|
4360
4372
|
sessionToken: string;
|
|
@@ -4409,6 +4421,72 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4409
4421
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4410
4422
|
[x: string]: unknown;
|
|
4411
4423
|
}, 404, "application/json">>>;
|
|
4424
|
+
/** Change the context of an Extension. */
|
|
4425
|
+
extensionChangeContext: (request: {
|
|
4426
|
+
data: {
|
|
4427
|
+
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4428
|
+
};
|
|
4429
|
+
contributorId: string;
|
|
4430
|
+
extensionId: string;
|
|
4431
|
+
headers?: {
|
|
4432
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4433
|
+
"x-access-token"?: string | undefined;
|
|
4434
|
+
} | undefined;
|
|
4435
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4436
|
+
data: {
|
|
4437
|
+
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4438
|
+
};
|
|
4439
|
+
} & {
|
|
4440
|
+
pathParameters: {
|
|
4441
|
+
contributorId: string;
|
|
4442
|
+
extensionId: string;
|
|
4443
|
+
};
|
|
4444
|
+
} & {
|
|
4445
|
+
headers?: Partial<{
|
|
4446
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4447
|
+
}>;
|
|
4448
|
+
} & {
|
|
4449
|
+
headers: {
|
|
4450
|
+
"x-access-token"?: string | undefined;
|
|
4451
|
+
} & Partial<{
|
|
4452
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4453
|
+
}>;
|
|
4454
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
4455
|
+
cleaningUpInstances: boolean;
|
|
4456
|
+
currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4457
|
+
id: string;
|
|
4458
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4459
|
+
[x: string]: unknown;
|
|
4460
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4461
|
+
[x: string]: unknown;
|
|
4462
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4463
|
+
data: {
|
|
4464
|
+
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4465
|
+
};
|
|
4466
|
+
} & {
|
|
4467
|
+
pathParameters: {
|
|
4468
|
+
contributorId: string;
|
|
4469
|
+
extensionId: string;
|
|
4470
|
+
};
|
|
4471
|
+
} & {
|
|
4472
|
+
headers?: Partial<{
|
|
4473
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4474
|
+
}>;
|
|
4475
|
+
} & {
|
|
4476
|
+
headers: {
|
|
4477
|
+
"x-access-token"?: string | undefined;
|
|
4478
|
+
} & Partial<{
|
|
4479
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4480
|
+
}>;
|
|
4481
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
4482
|
+
cleaningUpInstances: boolean;
|
|
4483
|
+
currentContext: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4484
|
+
id: string;
|
|
4485
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4486
|
+
[x: string]: unknown;
|
|
4487
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4488
|
+
[x: string]: unknown;
|
|
4489
|
+
}, 429, "application/json">>>;
|
|
4412
4490
|
/** Consent to extension scopes. */
|
|
4413
4491
|
extensionConsentToExtensionScopes: (request: {
|
|
4414
4492
|
data: {
|
|
@@ -6054,11 +6132,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6054
6132
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6055
6133
|
[x: string]: unknown;
|
|
6056
6134
|
}, 429, "application/json">>>;
|
|
6057
|
-
/** Add
|
|
6058
|
-
|
|
6059
|
-
data: {
|
|
6060
|
-
assetType: "image" | "video";
|
|
6061
|
-
};
|
|
6135
|
+
/** Add a logo to an extension. */
|
|
6136
|
+
extensionRequestLogoUpload: (request: {
|
|
6062
6137
|
contributorId: string;
|
|
6063
6138
|
extensionId: string;
|
|
6064
6139
|
headers?: {
|
|
@@ -6066,18 +6141,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6066
6141
|
"x-access-token"?: string | undefined;
|
|
6067
6142
|
} | undefined;
|
|
6068
6143
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6069
|
-
|
|
6070
|
-
|
|
6071
|
-
}
|
|
6144
|
+
headers?: Partial<{
|
|
6145
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6146
|
+
}>;
|
|
6072
6147
|
} & {
|
|
6073
6148
|
pathParameters: {
|
|
6074
6149
|
contributorId: string;
|
|
6075
6150
|
extensionId: string;
|
|
6076
6151
|
};
|
|
6077
|
-
} & {
|
|
6078
|
-
headers?: Partial<{
|
|
6079
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6080
|
-
}>;
|
|
6081
6152
|
} & {
|
|
6082
6153
|
headers: {
|
|
6083
6154
|
"x-access-token"?: string | undefined;
|
|
@@ -6085,7 +6156,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6085
6156
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6086
6157
|
}>;
|
|
6087
6158
|
}, import("@mittwald/api-client-commons").Response<{
|
|
6088
|
-
|
|
6159
|
+
logoRefId: string;
|
|
6089
6160
|
rules: {
|
|
6090
6161
|
extensions: string[];
|
|
6091
6162
|
fileTypes: {
|
|
@@ -6109,25 +6180,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6109
6180
|
};
|
|
6110
6181
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6111
6182
|
[x: string]: unknown;
|
|
6112
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6113
|
-
[x: string]: unknown;
|
|
6114
6183
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6115
6184
|
[x: string]: unknown;
|
|
6116
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6117
|
-
[x: string]: unknown;
|
|
6118
6185
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6119
|
-
|
|
6120
|
-
|
|
6121
|
-
}
|
|
6186
|
+
headers?: Partial<{
|
|
6187
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6188
|
+
}>;
|
|
6122
6189
|
} & {
|
|
6123
6190
|
pathParameters: {
|
|
6124
6191
|
contributorId: string;
|
|
6125
6192
|
extensionId: string;
|
|
6126
6193
|
};
|
|
6127
|
-
} & {
|
|
6128
|
-
headers?: Partial<{
|
|
6129
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6130
|
-
}>;
|
|
6131
6194
|
} & {
|
|
6132
6195
|
headers: {
|
|
6133
6196
|
"x-access-token"?: string | undefined;
|
|
@@ -6135,7 +6198,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6135
6198
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6136
6199
|
}>;
|
|
6137
6200
|
}, import("@mittwald/api-client-commons").Response<{
|
|
6138
|
-
|
|
6201
|
+
logoRefId: string;
|
|
6139
6202
|
rules: {
|
|
6140
6203
|
extensions: string[];
|
|
6141
6204
|
fileTypes: {
|
|
@@ -6159,15 +6222,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6159
6222
|
};
|
|
6160
6223
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6161
6224
|
[x: string]: unknown;
|
|
6162
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6163
|
-
[x: string]: unknown;
|
|
6164
6225
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6165
6226
|
[x: string]: unknown;
|
|
6166
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6167
|
-
[x: string]: unknown;
|
|
6168
6227
|
}, 429, "application/json">>>;
|
|
6169
|
-
/**
|
|
6170
|
-
|
|
6228
|
+
/** Remove the logo of an extension. */
|
|
6229
|
+
extensionRemoveLogo: (request: {
|
|
6171
6230
|
contributorId: string;
|
|
6172
6231
|
extensionId: string;
|
|
6173
6232
|
headers?: {
|
|
@@ -6189,9 +6248,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6189
6248
|
} & Partial<{
|
|
6190
6249
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6191
6250
|
}>;
|
|
6192
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "
|
|
6251
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
6193
6252
|
[x: string]: unknown;
|
|
6194
|
-
},
|
|
6253
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6195
6254
|
[x: string]: unknown;
|
|
6196
6255
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6197
6256
|
headers?: Partial<{
|
|
@@ -6208,13 +6267,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6208
6267
|
} & Partial<{
|
|
6209
6268
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6210
6269
|
}>;
|
|
6211
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "
|
|
6270
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
6212
6271
|
[x: string]: unknown;
|
|
6213
|
-
},
|
|
6272
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6214
6273
|
[x: string]: unknown;
|
|
6215
6274
|
}, 429, "application/json">>>;
|
|
6216
|
-
/** Add
|
|
6217
|
-
|
|
6275
|
+
/** Add an asset to an extension. */
|
|
6276
|
+
extensionRequestAssetUpload: (request: {
|
|
6277
|
+
data: {
|
|
6278
|
+
assetType: "image" | "video";
|
|
6279
|
+
};
|
|
6218
6280
|
contributorId: string;
|
|
6219
6281
|
extensionId: string;
|
|
6220
6282
|
headers?: {
|
|
@@ -6222,14 +6284,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6222
6284
|
"x-access-token"?: string | undefined;
|
|
6223
6285
|
} | undefined;
|
|
6224
6286
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6225
|
-
|
|
6226
|
-
|
|
6227
|
-
}
|
|
6287
|
+
data: {
|
|
6288
|
+
assetType: "image" | "video";
|
|
6289
|
+
};
|
|
6228
6290
|
} & {
|
|
6229
6291
|
pathParameters: {
|
|
6230
6292
|
contributorId: string;
|
|
6231
6293
|
extensionId: string;
|
|
6232
6294
|
};
|
|
6295
|
+
} & {
|
|
6296
|
+
headers?: Partial<{
|
|
6297
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6298
|
+
}>;
|
|
6233
6299
|
} & {
|
|
6234
6300
|
headers: {
|
|
6235
6301
|
"x-access-token"?: string | undefined;
|
|
@@ -6237,7 +6303,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6237
6303
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6238
6304
|
}>;
|
|
6239
6305
|
}, import("@mittwald/api-client-commons").Response<{
|
|
6240
|
-
|
|
6306
|
+
assetRefId: string;
|
|
6241
6307
|
rules: {
|
|
6242
6308
|
extensions: string[];
|
|
6243
6309
|
fileTypes: {
|
|
@@ -6261,17 +6327,25 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6261
6327
|
};
|
|
6262
6328
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6263
6329
|
[x: string]: unknown;
|
|
6330
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6331
|
+
[x: string]: unknown;
|
|
6264
6332
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6265
6333
|
[x: string]: unknown;
|
|
6334
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6335
|
+
[x: string]: unknown;
|
|
6266
6336
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6267
|
-
|
|
6268
|
-
|
|
6269
|
-
}
|
|
6337
|
+
data: {
|
|
6338
|
+
assetType: "image" | "video";
|
|
6339
|
+
};
|
|
6270
6340
|
} & {
|
|
6271
6341
|
pathParameters: {
|
|
6272
6342
|
contributorId: string;
|
|
6273
6343
|
extensionId: string;
|
|
6274
6344
|
};
|
|
6345
|
+
} & {
|
|
6346
|
+
headers?: Partial<{
|
|
6347
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6348
|
+
}>;
|
|
6275
6349
|
} & {
|
|
6276
6350
|
headers: {
|
|
6277
6351
|
"x-access-token"?: string | undefined;
|
|
@@ -6279,7 +6353,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6279
6353
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6280
6354
|
}>;
|
|
6281
6355
|
}, import("@mittwald/api-client-commons").Response<{
|
|
6282
|
-
|
|
6356
|
+
assetRefId: string;
|
|
6283
6357
|
rules: {
|
|
6284
6358
|
extensions: string[];
|
|
6285
6359
|
fileTypes: {
|
|
@@ -6303,8 +6377,59 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6303
6377
|
};
|
|
6304
6378
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6305
6379
|
[x: string]: unknown;
|
|
6380
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6381
|
+
[x: string]: unknown;
|
|
6306
6382
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6307
6383
|
[x: string]: unknown;
|
|
6384
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6385
|
+
[x: string]: unknown;
|
|
6386
|
+
}, 429, "application/json">>>;
|
|
6387
|
+
/** Start the verification process of an Extension. */
|
|
6388
|
+
extensionRequestExtensionVerification: (request: {
|
|
6389
|
+
contributorId: string;
|
|
6390
|
+
extensionId: string;
|
|
6391
|
+
headers?: {
|
|
6392
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6393
|
+
"x-access-token"?: string | undefined;
|
|
6394
|
+
} | undefined;
|
|
6395
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6396
|
+
headers?: Partial<{
|
|
6397
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6398
|
+
}>;
|
|
6399
|
+
} & {
|
|
6400
|
+
pathParameters: {
|
|
6401
|
+
contributorId: string;
|
|
6402
|
+
extensionId: string;
|
|
6403
|
+
};
|
|
6404
|
+
} & {
|
|
6405
|
+
headers: {
|
|
6406
|
+
"x-access-token"?: string | undefined;
|
|
6407
|
+
} & Partial<{
|
|
6408
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6409
|
+
}>;
|
|
6410
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6411
|
+
[x: string]: unknown;
|
|
6412
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6413
|
+
[x: string]: unknown;
|
|
6414
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6415
|
+
headers?: Partial<{
|
|
6416
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6417
|
+
}>;
|
|
6418
|
+
} & {
|
|
6419
|
+
pathParameters: {
|
|
6420
|
+
contributorId: string;
|
|
6421
|
+
extensionId: string;
|
|
6422
|
+
};
|
|
6423
|
+
} & {
|
|
6424
|
+
headers: {
|
|
6425
|
+
"x-access-token"?: string | undefined;
|
|
6426
|
+
} & Partial<{
|
|
6427
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6428
|
+
}>;
|
|
6429
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6430
|
+
[x: string]: unknown;
|
|
6431
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6432
|
+
[x: string]: unknown;
|
|
6308
6433
|
}, 429, "application/json">>>;
|
|
6309
6434
|
/** Publish or withdraw an Extension. */
|
|
6310
6435
|
extensionSetExtensionPublishedState: (request: {
|
|
@@ -8744,6 +8869,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8744
8869
|
customerNumber: string;
|
|
8745
8870
|
executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
|
|
8746
8871
|
flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
|
|
8872
|
+
isAllowedToPlaceOrders?: boolean | undefined;
|
|
8747
8873
|
isBanned?: boolean | undefined;
|
|
8748
8874
|
isInDefaultOfPayment?: boolean | undefined;
|
|
8749
8875
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
@@ -8786,6 +8912,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8786
8912
|
customerNumber: string;
|
|
8787
8913
|
executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
|
|
8788
8914
|
flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
|
|
8915
|
+
isAllowedToPlaceOrders?: boolean | undefined;
|
|
8789
8916
|
isBanned?: boolean | undefined;
|
|
8790
8917
|
isInDefaultOfPayment?: boolean | undefined;
|
|
8791
8918
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
@@ -9421,157 +9548,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9421
9548
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9422
9549
|
[x: string]: unknown;
|
|
9423
9550
|
}, 429, "application/json">>>;
|
|
9424
|
-
/** Gets the status of a agency verification request.. */
|
|
9425
|
-
getOpenAgencyVerification: (request: {
|
|
9426
|
-
customerId: string;
|
|
9427
|
-
headers?: {
|
|
9428
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9429
|
-
} | undefined;
|
|
9430
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9431
|
-
headers?: Partial<{
|
|
9432
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9433
|
-
}>;
|
|
9434
|
-
} & {
|
|
9435
|
-
pathParameters: {
|
|
9436
|
-
customerId: string;
|
|
9437
|
-
};
|
|
9438
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9439
|
-
customerId: string;
|
|
9440
|
-
domain: string;
|
|
9441
|
-
email: string;
|
|
9442
|
-
requestedOn: string;
|
|
9443
|
-
verificationId: string;
|
|
9444
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9445
|
-
[x: string]: unknown;
|
|
9446
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9447
|
-
[x: string]: unknown;
|
|
9448
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9449
|
-
[x: string]: unknown;
|
|
9450
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9451
|
-
[x: string]: unknown;
|
|
9452
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9453
|
-
headers?: Partial<{
|
|
9454
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9455
|
-
}>;
|
|
9456
|
-
} & {
|
|
9457
|
-
pathParameters: {
|
|
9458
|
-
customerId: string;
|
|
9459
|
-
};
|
|
9460
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9461
|
-
customerId: string;
|
|
9462
|
-
domain: string;
|
|
9463
|
-
email: string;
|
|
9464
|
-
requestedOn: string;
|
|
9465
|
-
verificationId: string;
|
|
9466
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9467
|
-
[x: string]: unknown;
|
|
9468
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9469
|
-
[x: string]: unknown;
|
|
9470
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9471
|
-
[x: string]: unknown;
|
|
9472
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9473
|
-
[x: string]: unknown;
|
|
9474
|
-
}, 429, "application/json">>>;
|
|
9475
|
-
/** Creates a new agency verification request. Only one active verification can be active at the same time. */
|
|
9476
|
-
createAgencyVerification: (request: {
|
|
9477
|
-
customerId: string;
|
|
9478
|
-
data?: {
|
|
9479
|
-
domain?: string | undefined;
|
|
9480
|
-
email?: string | undefined;
|
|
9481
|
-
} | undefined;
|
|
9482
|
-
headers?: {
|
|
9483
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9484
|
-
} | undefined;
|
|
9485
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9486
|
-
data: {
|
|
9487
|
-
domain?: string | undefined;
|
|
9488
|
-
email?: string | undefined;
|
|
9489
|
-
};
|
|
9490
|
-
} & {
|
|
9491
|
-
pathParameters: {
|
|
9492
|
-
customerId: string;
|
|
9493
|
-
};
|
|
9494
|
-
} & {
|
|
9495
|
-
headers?: Partial<{
|
|
9496
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9497
|
-
}>;
|
|
9498
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9499
|
-
verificationId: string;
|
|
9500
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9501
|
-
[x: string]: unknown;
|
|
9502
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9503
|
-
[x: string]: unknown;
|
|
9504
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9505
|
-
[x: string]: unknown;
|
|
9506
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9507
|
-
[x: string]: unknown;
|
|
9508
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9509
|
-
data: {
|
|
9510
|
-
domain?: string | undefined;
|
|
9511
|
-
email?: string | undefined;
|
|
9512
|
-
};
|
|
9513
|
-
} & {
|
|
9514
|
-
pathParameters: {
|
|
9515
|
-
customerId: string;
|
|
9516
|
-
};
|
|
9517
|
-
} & {
|
|
9518
|
-
headers?: Partial<{
|
|
9519
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9520
|
-
}>;
|
|
9521
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9522
|
-
verificationId: string;
|
|
9523
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9524
|
-
[x: string]: unknown;
|
|
9525
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9526
|
-
[x: string]: unknown;
|
|
9527
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9528
|
-
[x: string]: unknown;
|
|
9529
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9530
|
-
[x: string]: unknown;
|
|
9531
|
-
}, 429, "application/json">>>;
|
|
9532
|
-
/** Abort an open agency verification process */
|
|
9533
|
-
abortAgencyVerification: (request: {
|
|
9534
|
-
customerId: string;
|
|
9535
|
-
headers?: {
|
|
9536
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9537
|
-
} | undefined;
|
|
9538
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9539
|
-
headers?: Partial<{
|
|
9540
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9541
|
-
}>;
|
|
9542
|
-
} & {
|
|
9543
|
-
pathParameters: {
|
|
9544
|
-
customerId: string;
|
|
9545
|
-
};
|
|
9546
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9547
|
-
verificationId?: string | undefined;
|
|
9548
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9549
|
-
[x: string]: unknown;
|
|
9550
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9551
|
-
[x: string]: unknown;
|
|
9552
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9553
|
-
[x: string]: unknown;
|
|
9554
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9555
|
-
[x: string]: unknown;
|
|
9556
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9557
|
-
headers?: Partial<{
|
|
9558
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9559
|
-
}>;
|
|
9560
|
-
} & {
|
|
9561
|
-
pathParameters: {
|
|
9562
|
-
customerId: string;
|
|
9563
|
-
};
|
|
9564
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
9565
|
-
verificationId?: string | undefined;
|
|
9566
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9567
|
-
[x: string]: unknown;
|
|
9568
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9569
|
-
[x: string]: unknown;
|
|
9570
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9571
|
-
[x: string]: unknown;
|
|
9572
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9573
|
-
[x: string]: unknown;
|
|
9574
|
-
}, 429, "application/json">>>;
|
|
9575
9551
|
};
|
|
9576
9552
|
/** The database API allows you to manage your databases, like MySQL and Redis databases. */
|
|
9577
9553
|
readonly database: {
|
|
@@ -11457,7 +11433,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11457
11433
|
} & Partial<{
|
|
11458
11434
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11459
11435
|
}>;
|
|
11460
|
-
}, import("@mittwald/api-client-commons").Response<{},
|
|
11436
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
11461
11437
|
[x: string]: unknown;
|
|
11462
11438
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11463
11439
|
[x: string]: unknown;
|
|
@@ -11475,7 +11451,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11475
11451
|
} & Partial<{
|
|
11476
11452
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11477
11453
|
}>;
|
|
11478
|
-
}, import("@mittwald/api-client-commons").Response<{},
|
|
11454
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
11479
11455
|
[x: string]: unknown;
|
|
11480
11456
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11481
11457
|
[x: string]: unknown;
|