@rasadov/lumoar 2.0.6 → 2.0.7

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/api.d.ts CHANGED
@@ -5035,58 +5035,52 @@ export declare const AssetsApiAxiosParamCreator: (configuration?: Configuration)
5035
5035
  * Create asset
5036
5036
  * @summary Create Asset
5037
5037
  * @param {AssetCreate} assetCreate
5038
- * @param {string} [xAPIKey]
5039
5038
  * @param {*} [options] Override http request option.
5040
5039
  * @throws {RequiredError}
5041
5040
  */
5042
- assetCreateAsset: (assetCreate: AssetCreate, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5041
+ assetCreateAsset: (assetCreate: AssetCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5043
5042
  /**
5044
5043
  * Delete asset
5045
5044
  * @summary Delete Asset
5046
5045
  * @param {string} assetId
5047
- * @param {string} [xAPIKey]
5048
5046
  * @param {*} [options] Override http request option.
5049
5047
  * @throws {RequiredError}
5050
5048
  */
5051
- assetDeleteAsset: (assetId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5049
+ assetDeleteAsset: (assetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5052
5050
  /**
5053
5051
  * Get asset details
5054
5052
  * @summary Get Asset
5055
5053
  * @param {string} assetId
5056
- * @param {string} [xAPIKey]
5057
5054
  * @param {*} [options] Override http request option.
5058
5055
  * @throws {RequiredError}
5059
5056
  */
5060
- assetGetAsset: (assetId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5057
+ assetGetAsset: (assetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5061
5058
  /**
5062
5059
  * List assets for a company
5063
5060
  * @summary List Assets
5064
5061
  * @param {number} [page]
5065
5062
  * @param {number} [limit]
5066
- * @param {string} [xAPIKey]
5067
5063
  * @param {*} [options] Override http request option.
5068
5064
  * @throws {RequiredError}
5069
5065
  */
5070
- assetListAssets: (page?: number, limit?: number, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5066
+ assetListAssets: (page?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5071
5067
  /**
5072
5068
  * List assets for a vendor
5073
5069
  * @summary List Assets By Vendor
5074
5070
  * @param {string} vendorId
5075
- * @param {string} [xAPIKey]
5076
5071
  * @param {*} [options] Override http request option.
5077
5072
  * @throws {RequiredError}
5078
5073
  */
5079
- assetListAssetsByVendor: (vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5074
+ assetListAssetsByVendor: (vendorId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5080
5075
  /**
5081
5076
  * Update asset
5082
5077
  * @summary Update Asset
5083
5078
  * @param {string} assetId
5084
5079
  * @param {AssetUpdate} assetUpdate
5085
- * @param {string} [xAPIKey]
5086
5080
  * @param {*} [options] Override http request option.
5087
5081
  * @throws {RequiredError}
5088
5082
  */
5089
- assetUpdateAsset: (assetId: string, assetUpdate: AssetUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5083
+ assetUpdateAsset: (assetId: string, assetUpdate: AssetUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5090
5084
  };
5091
5085
  /**
5092
5086
  * AssetsApi - functional programming interface
@@ -5097,58 +5091,52 @@ export declare const AssetsApiFp: (configuration?: Configuration) => {
5097
5091
  * Create asset
5098
5092
  * @summary Create Asset
5099
5093
  * @param {AssetCreate} assetCreate
5100
- * @param {string} [xAPIKey]
5101
5094
  * @param {*} [options] Override http request option.
5102
5095
  * @throws {RequiredError}
5103
5096
  */
5104
- assetCreateAsset(assetCreate: AssetCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetResponse>>;
5097
+ assetCreateAsset(assetCreate: AssetCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetResponse>>;
5105
5098
  /**
5106
5099
  * Delete asset
5107
5100
  * @summary Delete Asset
5108
5101
  * @param {string} assetId
5109
- * @param {string} [xAPIKey]
5110
5102
  * @param {*} [options] Override http request option.
5111
5103
  * @throws {RequiredError}
5112
5104
  */
5113
- assetDeleteAsset(assetId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
5105
+ assetDeleteAsset(assetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
5114
5106
  /**
5115
5107
  * Get asset details
5116
5108
  * @summary Get Asset
5117
5109
  * @param {string} assetId
5118
- * @param {string} [xAPIKey]
5119
5110
  * @param {*} [options] Override http request option.
5120
5111
  * @throws {RequiredError}
5121
5112
  */
5122
- assetGetAsset(assetId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetResponse>>;
5113
+ assetGetAsset(assetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetResponse>>;
5123
5114
  /**
5124
5115
  * List assets for a company
5125
5116
  * @summary List Assets
5126
5117
  * @param {number} [page]
5127
5118
  * @param {number} [limit]
5128
- * @param {string} [xAPIKey]
5129
5119
  * @param {*} [options] Override http request option.
5130
5120
  * @throws {RequiredError}
5131
5121
  */
5132
- assetListAssets(page?: number, limit?: number, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetListResponse>>;
5122
+ assetListAssets(page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetListResponse>>;
5133
5123
  /**
5134
5124
  * List assets for a vendor
5135
5125
  * @summary List Assets By Vendor
5136
5126
  * @param {string} vendorId
5137
- * @param {string} [xAPIKey]
5138
5127
  * @param {*} [options] Override http request option.
5139
5128
  * @throws {RequiredError}
5140
5129
  */
5141
- assetListAssetsByVendor(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AssetResponse>>>;
5130
+ assetListAssetsByVendor(vendorId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AssetResponse>>>;
5142
5131
  /**
5143
5132
  * Update asset
5144
5133
  * @summary Update Asset
5145
5134
  * @param {string} assetId
5146
5135
  * @param {AssetUpdate} assetUpdate
5147
- * @param {string} [xAPIKey]
5148
5136
  * @param {*} [options] Override http request option.
5149
5137
  * @throws {RequiredError}
5150
5138
  */
5151
- assetUpdateAsset(assetId: string, assetUpdate: AssetUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetResponse>>;
5139
+ assetUpdateAsset(assetId: string, assetUpdate: AssetUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssetResponse>>;
5152
5140
  };
5153
5141
  /**
5154
5142
  * AssetsApi - factory interface
@@ -5159,58 +5147,52 @@ export declare const AssetsApiFactory: (configuration?: Configuration, basePath?
5159
5147
  * Create asset
5160
5148
  * @summary Create Asset
5161
5149
  * @param {AssetCreate} assetCreate
5162
- * @param {string} [xAPIKey]
5163
5150
  * @param {*} [options] Override http request option.
5164
5151
  * @throws {RequiredError}
5165
5152
  */
5166
- assetCreateAsset(assetCreate: AssetCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<AssetResponse>;
5153
+ assetCreateAsset(assetCreate: AssetCreate, options?: RawAxiosRequestConfig): AxiosPromise<AssetResponse>;
5167
5154
  /**
5168
5155
  * Delete asset
5169
5156
  * @summary Delete Asset
5170
5157
  * @param {string} assetId
5171
- * @param {string} [xAPIKey]
5172
5158
  * @param {*} [options] Override http request option.
5173
5159
  * @throws {RequiredError}
5174
5160
  */
5175
- assetDeleteAsset(assetId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<any>;
5161
+ assetDeleteAsset(assetId: string, options?: RawAxiosRequestConfig): AxiosPromise<any>;
5176
5162
  /**
5177
5163
  * Get asset details
5178
5164
  * @summary Get Asset
5179
5165
  * @param {string} assetId
5180
- * @param {string} [xAPIKey]
5181
5166
  * @param {*} [options] Override http request option.
5182
5167
  * @throws {RequiredError}
5183
5168
  */
5184
- assetGetAsset(assetId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<AssetResponse>;
5169
+ assetGetAsset(assetId: string, options?: RawAxiosRequestConfig): AxiosPromise<AssetResponse>;
5185
5170
  /**
5186
5171
  * List assets for a company
5187
5172
  * @summary List Assets
5188
5173
  * @param {number} [page]
5189
5174
  * @param {number} [limit]
5190
- * @param {string} [xAPIKey]
5191
5175
  * @param {*} [options] Override http request option.
5192
5176
  * @throws {RequiredError}
5193
5177
  */
5194
- assetListAssets(page?: number, limit?: number, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<AssetListResponse>;
5178
+ assetListAssets(page?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<AssetListResponse>;
5195
5179
  /**
5196
5180
  * List assets for a vendor
5197
5181
  * @summary List Assets By Vendor
5198
5182
  * @param {string} vendorId
5199
- * @param {string} [xAPIKey]
5200
5183
  * @param {*} [options] Override http request option.
5201
5184
  * @throws {RequiredError}
5202
5185
  */
5203
- assetListAssetsByVendor(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AssetResponse>>;
5186
+ assetListAssetsByVendor(vendorId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AssetResponse>>;
5204
5187
  /**
5205
5188
  * Update asset
5206
5189
  * @summary Update Asset
5207
5190
  * @param {string} assetId
5208
5191
  * @param {AssetUpdate} assetUpdate
5209
- * @param {string} [xAPIKey]
5210
5192
  * @param {*} [options] Override http request option.
5211
5193
  * @throws {RequiredError}
5212
5194
  */
5213
- assetUpdateAsset(assetId: string, assetUpdate: AssetUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<AssetResponse>;
5195
+ assetUpdateAsset(assetId: string, assetUpdate: AssetUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AssetResponse>;
5214
5196
  };
5215
5197
  /**
5216
5198
  * AssetsApi - object-oriented interface
@@ -5223,64 +5205,58 @@ export declare class AssetsApi extends BaseAPI {
5223
5205
  * Create asset
5224
5206
  * @summary Create Asset
5225
5207
  * @param {AssetCreate} assetCreate
5226
- * @param {string} [xAPIKey]
5227
5208
  * @param {*} [options] Override http request option.
5228
5209
  * @throws {RequiredError}
5229
5210
  * @memberof AssetsApi
5230
5211
  */
5231
- assetCreateAsset(assetCreate: AssetCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AssetResponse, any, {}>>;
5212
+ assetCreateAsset(assetCreate: AssetCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AssetResponse, any, {}>>;
5232
5213
  /**
5233
5214
  * Delete asset
5234
5215
  * @summary Delete Asset
5235
5216
  * @param {string} assetId
5236
- * @param {string} [xAPIKey]
5237
5217
  * @param {*} [options] Override http request option.
5238
5218
  * @throws {RequiredError}
5239
5219
  * @memberof AssetsApi
5240
5220
  */
5241
- assetDeleteAsset(assetId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
5221
+ assetDeleteAsset(assetId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
5242
5222
  /**
5243
5223
  * Get asset details
5244
5224
  * @summary Get Asset
5245
5225
  * @param {string} assetId
5246
- * @param {string} [xAPIKey]
5247
5226
  * @param {*} [options] Override http request option.
5248
5227
  * @throws {RequiredError}
5249
5228
  * @memberof AssetsApi
5250
5229
  */
5251
- assetGetAsset(assetId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AssetResponse, any, {}>>;
5230
+ assetGetAsset(assetId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AssetResponse, any, {}>>;
5252
5231
  /**
5253
5232
  * List assets for a company
5254
5233
  * @summary List Assets
5255
5234
  * @param {number} [page]
5256
5235
  * @param {number} [limit]
5257
- * @param {string} [xAPIKey]
5258
5236
  * @param {*} [options] Override http request option.
5259
5237
  * @throws {RequiredError}
5260
5238
  * @memberof AssetsApi
5261
5239
  */
5262
- assetListAssets(page?: number, limit?: number, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AssetListResponse, any, {}>>;
5240
+ assetListAssets(page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AssetListResponse, any, {}>>;
5263
5241
  /**
5264
5242
  * List assets for a vendor
5265
5243
  * @summary List Assets By Vendor
5266
5244
  * @param {string} vendorId
5267
- * @param {string} [xAPIKey]
5268
5245
  * @param {*} [options] Override http request option.
5269
5246
  * @throws {RequiredError}
5270
5247
  * @memberof AssetsApi
5271
5248
  */
5272
- assetListAssetsByVendor(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AssetResponse[], any, {}>>;
5249
+ assetListAssetsByVendor(vendorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AssetResponse[], any, {}>>;
5273
5250
  /**
5274
5251
  * Update asset
5275
5252
  * @summary Update Asset
5276
5253
  * @param {string} assetId
5277
5254
  * @param {AssetUpdate} assetUpdate
5278
- * @param {string} [xAPIKey]
5279
5255
  * @param {*} [options] Override http request option.
5280
5256
  * @throws {RequiredError}
5281
5257
  * @memberof AssetsApi
5282
5258
  */
5283
- assetUpdateAsset(assetId: string, assetUpdate: AssetUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AssetResponse, any, {}>>;
5259
+ assetUpdateAsset(assetId: string, assetUpdate: AssetUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AssetResponse, any, {}>>;
5284
5260
  }
5285
5261
  /**
5286
5262
  * AuditLogsApi - axios parameter creator
@@ -5291,11 +5267,10 @@ export declare const AuditLogsApiAxiosParamCreator: (configuration?: Configurati
5291
5267
  *
5292
5268
  * @summary List Audit Logs
5293
5269
  * @param {ListAuditLog} listAuditLog
5294
- * @param {string} [xAPIKey]
5295
5270
  * @param {*} [options] Override http request option.
5296
5271
  * @throws {RequiredError}
5297
5272
  */
5298
- auditLogListAuditLogs: (listAuditLog: ListAuditLog, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5273
+ auditLogListAuditLogs: (listAuditLog: ListAuditLog, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5299
5274
  };
5300
5275
  /**
5301
5276
  * AuditLogsApi - functional programming interface
@@ -5306,11 +5281,10 @@ export declare const AuditLogsApiFp: (configuration?: Configuration) => {
5306
5281
  *
5307
5282
  * @summary List Audit Logs
5308
5283
  * @param {ListAuditLog} listAuditLog
5309
- * @param {string} [xAPIKey]
5310
5284
  * @param {*} [options] Override http request option.
5311
5285
  * @throws {RequiredError}
5312
5286
  */
5313
- auditLogListAuditLogs(listAuditLog: ListAuditLog, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseAuditLogSchema>>;
5287
+ auditLogListAuditLogs(listAuditLog: ListAuditLog, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseAuditLogSchema>>;
5314
5288
  };
5315
5289
  /**
5316
5290
  * AuditLogsApi - factory interface
@@ -5321,11 +5295,10 @@ export declare const AuditLogsApiFactory: (configuration?: Configuration, basePa
5321
5295
  *
5322
5296
  * @summary List Audit Logs
5323
5297
  * @param {ListAuditLog} listAuditLog
5324
- * @param {string} [xAPIKey]
5325
5298
  * @param {*} [options] Override http request option.
5326
5299
  * @throws {RequiredError}
5327
5300
  */
5328
- auditLogListAuditLogs(listAuditLog: ListAuditLog, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseAuditLogSchema>;
5301
+ auditLogListAuditLogs(listAuditLog: ListAuditLog, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseAuditLogSchema>;
5329
5302
  };
5330
5303
  /**
5331
5304
  * AuditLogsApi - object-oriented interface
@@ -5338,12 +5311,11 @@ export declare class AuditLogsApi extends BaseAPI {
5338
5311
  *
5339
5312
  * @summary List Audit Logs
5340
5313
  * @param {ListAuditLog} listAuditLog
5341
- * @param {string} [xAPIKey]
5342
5314
  * @param {*} [options] Override http request option.
5343
5315
  * @throws {RequiredError}
5344
5316
  * @memberof AuditLogsApi
5345
5317
  */
5346
- auditLogListAuditLogs(listAuditLog: ListAuditLog, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseAuditLogSchema, any, {}>>;
5318
+ auditLogListAuditLogs(listAuditLog: ListAuditLog, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseAuditLogSchema, any, {}>>;
5347
5319
  }
5348
5320
  /**
5349
5321
  * ControlsApi - axios parameter creator
@@ -5354,49 +5326,44 @@ export declare const ControlsApiAxiosParamCreator: (configuration?: Configuratio
5354
5326
  *
5355
5327
  * @summary Get Control
5356
5328
  * @param {string} controlId
5357
- * @param {string} [xAPIKey]
5358
5329
  * @param {*} [options] Override http request option.
5359
5330
  * @throws {RequiredError}
5360
5331
  */
5361
- controlsGetControl: (controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5332
+ controlsGetControl: (controlId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5362
5333
  /**
5363
5334
  * Get all risks linked to a control.
5364
5335
  * @summary Get Risks For Control
5365
5336
  * @param {string} controlId
5366
- * @param {string} [xAPIKey]
5367
5337
  * @param {*} [options] Override http request option.
5368
5338
  * @throws {RequiredError}
5369
5339
  */
5370
- controlsGetRisks: (controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5340
+ controlsGetRisks: (controlId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5371
5341
  /**
5372
5342
  * Link a risk to a control.
5373
5343
  * @summary Link Risk To Control
5374
5344
  * @param {string} controlId
5375
5345
  * @param {string} riskId
5376
- * @param {string} [xAPIKey]
5377
5346
  * @param {*} [options] Override http request option.
5378
5347
  * @throws {RequiredError}
5379
5348
  */
5380
- controlsLinkRisks: (controlId: string, riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5349
+ controlsLinkRisks: (controlId: string, riskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5381
5350
  /**
5382
5351
  * Unlink a risk from a control.
5383
5352
  * @summary Unlink Risk From Control
5384
5353
  * @param {string} controlId
5385
5354
  * @param {string} riskId
5386
- * @param {string} [xAPIKey]
5387
5355
  * @param {*} [options] Override http request option.
5388
5356
  * @throws {RequiredError}
5389
5357
  */
5390
- controlsUnlinkRisks: (controlId: string, riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5358
+ controlsUnlinkRisks: (controlId: string, riskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5391
5359
  /**
5392
5360
  *
5393
5361
  * @summary Update Control
5394
5362
  * @param {UpdateControlSchema} updateControlSchema
5395
- * @param {string} [xAPIKey]
5396
5363
  * @param {*} [options] Override http request option.
5397
5364
  * @throws {RequiredError}
5398
5365
  */
5399
- controlsUpdateControl: (updateControlSchema: UpdateControlSchema, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5366
+ controlsUpdateControl: (updateControlSchema: UpdateControlSchema, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5400
5367
  };
5401
5368
  /**
5402
5369
  * ControlsApi - functional programming interface
@@ -5407,49 +5374,44 @@ export declare const ControlsApiFp: (configuration?: Configuration) => {
5407
5374
  *
5408
5375
  * @summary Get Control
5409
5376
  * @param {string} controlId
5410
- * @param {string} [xAPIKey]
5411
5377
  * @param {*} [options] Override http request option.
5412
5378
  * @throws {RequiredError}
5413
5379
  */
5414
- controlsGetControl(controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetControl>>;
5380
+ controlsGetControl(controlId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetControl>>;
5415
5381
  /**
5416
5382
  * Get all risks linked to a control.
5417
5383
  * @summary Get Risks For Control
5418
5384
  * @param {string} controlId
5419
- * @param {string} [xAPIKey]
5420
5385
  * @param {*} [options] Override http request option.
5421
5386
  * @throws {RequiredError}
5422
5387
  */
5423
- controlsGetRisks(controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<any>>>;
5388
+ controlsGetRisks(controlId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<any>>>;
5424
5389
  /**
5425
5390
  * Link a risk to a control.
5426
5391
  * @summary Link Risk To Control
5427
5392
  * @param {string} controlId
5428
5393
  * @param {string} riskId
5429
- * @param {string} [xAPIKey]
5430
5394
  * @param {*} [options] Override http request option.
5431
5395
  * @throws {RequiredError}
5432
5396
  */
5433
- controlsLinkRisks(controlId: string, riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5397
+ controlsLinkRisks(controlId: string, riskId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5434
5398
  /**
5435
5399
  * Unlink a risk from a control.
5436
5400
  * @summary Unlink Risk From Control
5437
5401
  * @param {string} controlId
5438
5402
  * @param {string} riskId
5439
- * @param {string} [xAPIKey]
5440
5403
  * @param {*} [options] Override http request option.
5441
5404
  * @throws {RequiredError}
5442
5405
  */
5443
- controlsUnlinkRisks(controlId: string, riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5406
+ controlsUnlinkRisks(controlId: string, riskId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5444
5407
  /**
5445
5408
  *
5446
5409
  * @summary Update Control
5447
5410
  * @param {UpdateControlSchema} updateControlSchema
5448
- * @param {string} [xAPIKey]
5449
5411
  * @param {*} [options] Override http request option.
5450
5412
  * @throws {RequiredError}
5451
5413
  */
5452
- controlsUpdateControl(updateControlSchema: UpdateControlSchema, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ControlWithData>>;
5414
+ controlsUpdateControl(updateControlSchema: UpdateControlSchema, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ControlWithData>>;
5453
5415
  };
5454
5416
  /**
5455
5417
  * ControlsApi - factory interface
@@ -5460,49 +5422,44 @@ export declare const ControlsApiFactory: (configuration?: Configuration, basePat
5460
5422
  *
5461
5423
  * @summary Get Control
5462
5424
  * @param {string} controlId
5463
- * @param {string} [xAPIKey]
5464
5425
  * @param {*} [options] Override http request option.
5465
5426
  * @throws {RequiredError}
5466
5427
  */
5467
- controlsGetControl(controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<GetControl>;
5428
+ controlsGetControl(controlId: string, options?: RawAxiosRequestConfig): AxiosPromise<GetControl>;
5468
5429
  /**
5469
5430
  * Get all risks linked to a control.
5470
5431
  * @summary Get Risks For Control
5471
5432
  * @param {string} controlId
5472
- * @param {string} [xAPIKey]
5473
5433
  * @param {*} [options] Override http request option.
5474
5434
  * @throws {RequiredError}
5475
5435
  */
5476
- controlsGetRisks(controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<any>>;
5436
+ controlsGetRisks(controlId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<any>>;
5477
5437
  /**
5478
5438
  * Link a risk to a control.
5479
5439
  * @summary Link Risk To Control
5480
5440
  * @param {string} controlId
5481
5441
  * @param {string} riskId
5482
- * @param {string} [xAPIKey]
5483
5442
  * @param {*} [options] Override http request option.
5484
5443
  * @throws {RequiredError}
5485
5444
  */
5486
- controlsLinkRisks(controlId: string, riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5445
+ controlsLinkRisks(controlId: string, riskId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5487
5446
  /**
5488
5447
  * Unlink a risk from a control.
5489
5448
  * @summary Unlink Risk From Control
5490
5449
  * @param {string} controlId
5491
5450
  * @param {string} riskId
5492
- * @param {string} [xAPIKey]
5493
5451
  * @param {*} [options] Override http request option.
5494
5452
  * @throws {RequiredError}
5495
5453
  */
5496
- controlsUnlinkRisks(controlId: string, riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5454
+ controlsUnlinkRisks(controlId: string, riskId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5497
5455
  /**
5498
5456
  *
5499
5457
  * @summary Update Control
5500
5458
  * @param {UpdateControlSchema} updateControlSchema
5501
- * @param {string} [xAPIKey]
5502
5459
  * @param {*} [options] Override http request option.
5503
5460
  * @throws {RequiredError}
5504
5461
  */
5505
- controlsUpdateControl(updateControlSchema: UpdateControlSchema, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<ControlWithData>;
5462
+ controlsUpdateControl(updateControlSchema: UpdateControlSchema, options?: RawAxiosRequestConfig): AxiosPromise<ControlWithData>;
5506
5463
  };
5507
5464
  /**
5508
5465
  * ControlsApi - object-oriented interface
@@ -5515,54 +5472,49 @@ export declare class ControlsApi extends BaseAPI {
5515
5472
  *
5516
5473
  * @summary Get Control
5517
5474
  * @param {string} controlId
5518
- * @param {string} [xAPIKey]
5519
5475
  * @param {*} [options] Override http request option.
5520
5476
  * @throws {RequiredError}
5521
5477
  * @memberof ControlsApi
5522
5478
  */
5523
- controlsGetControl(controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetControl, any, {}>>;
5479
+ controlsGetControl(controlId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetControl, any, {}>>;
5524
5480
  /**
5525
5481
  * Get all risks linked to a control.
5526
5482
  * @summary Get Risks For Control
5527
5483
  * @param {string} controlId
5528
- * @param {string} [xAPIKey]
5529
5484
  * @param {*} [options] Override http request option.
5530
5485
  * @throws {RequiredError}
5531
5486
  * @memberof ControlsApi
5532
5487
  */
5533
- controlsGetRisks(controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any[], any, {}>>;
5488
+ controlsGetRisks(controlId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any[], any, {}>>;
5534
5489
  /**
5535
5490
  * Link a risk to a control.
5536
5491
  * @summary Link Risk To Control
5537
5492
  * @param {string} controlId
5538
5493
  * @param {string} riskId
5539
- * @param {string} [xAPIKey]
5540
5494
  * @param {*} [options] Override http request option.
5541
5495
  * @throws {RequiredError}
5542
5496
  * @memberof ControlsApi
5543
5497
  */
5544
- controlsLinkRisks(controlId: string, riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
5498
+ controlsLinkRisks(controlId: string, riskId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
5545
5499
  /**
5546
5500
  * Unlink a risk from a control.
5547
5501
  * @summary Unlink Risk From Control
5548
5502
  * @param {string} controlId
5549
5503
  * @param {string} riskId
5550
- * @param {string} [xAPIKey]
5551
5504
  * @param {*} [options] Override http request option.
5552
5505
  * @throws {RequiredError}
5553
5506
  * @memberof ControlsApi
5554
5507
  */
5555
- controlsUnlinkRisks(controlId: string, riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
5508
+ controlsUnlinkRisks(controlId: string, riskId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
5556
5509
  /**
5557
5510
  *
5558
5511
  * @summary Update Control
5559
5512
  * @param {UpdateControlSchema} updateControlSchema
5560
- * @param {string} [xAPIKey]
5561
5513
  * @param {*} [options] Override http request option.
5562
5514
  * @throws {RequiredError}
5563
5515
  * @memberof ControlsApi
5564
5516
  */
5565
- controlsUpdateControl(updateControlSchema: UpdateControlSchema, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ControlWithData, any, {}>>;
5517
+ controlsUpdateControl(updateControlSchema: UpdateControlSchema, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ControlWithData, any, {}>>;
5566
5518
  }
5567
5519
  /**
5568
5520
  * EvidenceApi - axios parameter creator
@@ -5573,65 +5525,58 @@ export declare const EvidenceApiAxiosParamCreator: (configuration?: Configuratio
5573
5525
  *
5574
5526
  * @summary Delete Evidence
5575
5527
  * @param {string} evidenceId
5576
- * @param {string} [xAPIKey]
5577
5528
  * @param {*} [options] Override http request option.
5578
5529
  * @throws {RequiredError}
5579
5530
  */
5580
- evidenceDeleteEvidence: (evidenceId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5531
+ evidenceDeleteEvidence: (evidenceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5581
5532
  /**
5582
5533
  *
5583
5534
  * @summary Get Evidence
5584
5535
  * @param {string} evidenceId
5585
- * @param {string} [xAPIKey]
5586
5536
  * @param {*} [options] Override http request option.
5587
5537
  * @throws {RequiredError}
5588
5538
  */
5589
- evidenceGetEvidence: (evidenceId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5539
+ evidenceGetEvidence: (evidenceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5590
5540
  /**
5591
5541
  *
5592
5542
  * @summary Get Evidence Files
5593
5543
  * @param {number} evidenceFileId
5594
- * @param {string} [xAPIKey]
5595
5544
  * @param {*} [options] Override http request option.
5596
5545
  * @throws {RequiredError}
5597
5546
  */
5598
- evidenceGetEvidenceFiles: (evidenceFileId: number, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5547
+ evidenceGetEvidenceFiles: (evidenceFileId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5599
5548
  /**
5600
5549
  * Generate presigned PUT URLs for evidence file uploads. Client should: 1. Call this endpoint to get presigned URLs 2. Upload files directly to R2 using the presigned URLs 3. Call /upload/confirm with the storage keys to create evidence records
5601
5550
  * @summary Get Presigned Upload Urls
5602
5551
  * @param {EvidenceUploadRequest} evidenceUploadRequest
5603
- * @param {string} [xAPIKey]
5604
5552
  * @param {*} [options] Override http request option.
5605
5553
  * @throws {RequiredError}
5606
5554
  */
5607
- evidenceGetPresignedUploadUrls: (evidenceUploadRequest: EvidenceUploadRequest, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5555
+ evidenceGetPresignedUploadUrls: (evidenceUploadRequest: EvidenceUploadRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5608
5556
  /**
5609
5557
  *
5610
5558
  * @summary List Company Evidence
5611
- * @param {string} [xAPIKey]
5612
5559
  * @param {*} [options] Override http request option.
5613
5560
  * @throws {RequiredError}
5614
5561
  */
5615
- evidenceListCompanyEvidence: (xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5562
+ evidenceListCompanyEvidence: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5616
5563
  /**
5617
5564
  *
5618
5565
  * @summary Update Evidence
5619
5566
  * @param {string} evidenceId
5620
5567
  * @param {string} text Text description of the evidence
5621
- * @param {string} [xAPIKey]
5622
5568
  * @param {*} [options] Override http request option.
5623
5569
  * @throws {RequiredError}
5624
5570
  */
5625
- evidenceUpdateEvidence: (evidenceId: string, text: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5571
+ evidenceUpdateEvidence: (evidenceId: string, text: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5626
5572
  /**
5627
5573
  * Confirm evidence upload after files have been uploaded to R2. This endpoint validates uploaded files and creates evidence records.
5628
5574
  * @summary Confirm Evidence Upload
5629
5575
  * @param {EvidenceUploadConfirmRequest} evidenceUploadConfirmRequest
5630
- * @param {string} [xAPIKey]
5631
5576
  * @param {*} [options] Override http request option.
5632
5577
  * @throws {RequiredError}
5633
5578
  */
5634
- evidenceUploadConfirmEvidence: (evidenceUploadConfirmRequest: EvidenceUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5579
+ evidenceUploadConfirmEvidence: (evidenceUploadConfirmRequest: EvidenceUploadConfirmRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5635
5580
  };
5636
5581
  /**
5637
5582
  * EvidenceApi - functional programming interface
@@ -5642,67 +5587,60 @@ export declare const EvidenceApiFp: (configuration?: Configuration) => {
5642
5587
  *
5643
5588
  * @summary Delete Evidence
5644
5589
  * @param {string} evidenceId
5645
- * @param {string} [xAPIKey]
5646
5590
  * @param {*} [options] Override http request option.
5647
5591
  * @throws {RequiredError}
5648
5592
  */
5649
- evidenceDeleteEvidence(evidenceId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5593
+ evidenceDeleteEvidence(evidenceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5650
5594
  /**
5651
5595
  *
5652
5596
  * @summary Get Evidence
5653
5597
  * @param {string} evidenceId
5654
- * @param {string} [xAPIKey]
5655
5598
  * @param {*} [options] Override http request option.
5656
5599
  * @throws {RequiredError}
5657
5600
  */
5658
- evidenceGetEvidence(evidenceId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EvidenceWithControl>>;
5601
+ evidenceGetEvidence(evidenceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EvidenceWithControl>>;
5659
5602
  /**
5660
5603
  *
5661
5604
  * @summary Get Evidence Files
5662
5605
  * @param {number} evidenceFileId
5663
- * @param {string} [xAPIKey]
5664
5606
  * @param {*} [options] Override http request option.
5665
5607
  * @throws {RequiredError}
5666
5608
  */
5667
- evidenceGetEvidenceFiles(evidenceFileId: number, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileDownload>>;
5609
+ evidenceGetEvidenceFiles(evidenceFileId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileDownload>>;
5668
5610
  /**
5669
5611
  * Generate presigned PUT URLs for evidence file uploads. Client should: 1. Call this endpoint to get presigned URLs 2. Upload files directly to R2 using the presigned URLs 3. Call /upload/confirm with the storage keys to create evidence records
5670
5612
  * @summary Get Presigned Upload Urls
5671
5613
  * @param {EvidenceUploadRequest} evidenceUploadRequest
5672
- * @param {string} [xAPIKey]
5673
5614
  * @param {*} [options] Override http request option.
5674
5615
  * @throws {RequiredError}
5675
5616
  */
5676
- evidenceGetPresignedUploadUrls(evidenceUploadRequest: EvidenceUploadRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
5617
+ evidenceGetPresignedUploadUrls(evidenceUploadRequest: EvidenceUploadRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
5677
5618
  [key: string]: any;
5678
5619
  }>>;
5679
5620
  /**
5680
5621
  *
5681
5622
  * @summary List Company Evidence
5682
- * @param {string} [xAPIKey]
5683
5623
  * @param {*} [options] Override http request option.
5684
5624
  * @throws {RequiredError}
5685
5625
  */
5686
- evidenceListCompanyEvidence(xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EvidenceBase>>>;
5626
+ evidenceListCompanyEvidence(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EvidenceBase>>>;
5687
5627
  /**
5688
5628
  *
5689
5629
  * @summary Update Evidence
5690
5630
  * @param {string} evidenceId
5691
5631
  * @param {string} text Text description of the evidence
5692
- * @param {string} [xAPIKey]
5693
5632
  * @param {*} [options] Override http request option.
5694
5633
  * @throws {RequiredError}
5695
5634
  */
5696
- evidenceUpdateEvidence(evidenceId: string, text: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EvidenceBase>>;
5635
+ evidenceUpdateEvidence(evidenceId: string, text: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EvidenceBase>>;
5697
5636
  /**
5698
5637
  * Confirm evidence upload after files have been uploaded to R2. This endpoint validates uploaded files and creates evidence records.
5699
5638
  * @summary Confirm Evidence Upload
5700
5639
  * @param {EvidenceUploadConfirmRequest} evidenceUploadConfirmRequest
5701
- * @param {string} [xAPIKey]
5702
5640
  * @param {*} [options] Override http request option.
5703
5641
  * @throws {RequiredError}
5704
5642
  */
5705
- evidenceUploadConfirmEvidence(evidenceUploadConfirmRequest: EvidenceUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EvidenceBase>>;
5643
+ evidenceUploadConfirmEvidence(evidenceUploadConfirmRequest: EvidenceUploadConfirmRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EvidenceBase>>;
5706
5644
  };
5707
5645
  /**
5708
5646
  * EvidenceApi - factory interface
@@ -5713,67 +5651,60 @@ export declare const EvidenceApiFactory: (configuration?: Configuration, basePat
5713
5651
  *
5714
5652
  * @summary Delete Evidence
5715
5653
  * @param {string} evidenceId
5716
- * @param {string} [xAPIKey]
5717
5654
  * @param {*} [options] Override http request option.
5718
5655
  * @throws {RequiredError}
5719
5656
  */
5720
- evidenceDeleteEvidence(evidenceId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5657
+ evidenceDeleteEvidence(evidenceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5721
5658
  /**
5722
5659
  *
5723
5660
  * @summary Get Evidence
5724
5661
  * @param {string} evidenceId
5725
- * @param {string} [xAPIKey]
5726
5662
  * @param {*} [options] Override http request option.
5727
5663
  * @throws {RequiredError}
5728
5664
  */
5729
- evidenceGetEvidence(evidenceId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<EvidenceWithControl>;
5665
+ evidenceGetEvidence(evidenceId: string, options?: RawAxiosRequestConfig): AxiosPromise<EvidenceWithControl>;
5730
5666
  /**
5731
5667
  *
5732
5668
  * @summary Get Evidence Files
5733
5669
  * @param {number} evidenceFileId
5734
- * @param {string} [xAPIKey]
5735
5670
  * @param {*} [options] Override http request option.
5736
5671
  * @throws {RequiredError}
5737
5672
  */
5738
- evidenceGetEvidenceFiles(evidenceFileId: number, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<FileDownload>;
5673
+ evidenceGetEvidenceFiles(evidenceFileId: number, options?: RawAxiosRequestConfig): AxiosPromise<FileDownload>;
5739
5674
  /**
5740
5675
  * Generate presigned PUT URLs for evidence file uploads. Client should: 1. Call this endpoint to get presigned URLs 2. Upload files directly to R2 using the presigned URLs 3. Call /upload/confirm with the storage keys to create evidence records
5741
5676
  * @summary Get Presigned Upload Urls
5742
5677
  * @param {EvidenceUploadRequest} evidenceUploadRequest
5743
- * @param {string} [xAPIKey]
5744
5678
  * @param {*} [options] Override http request option.
5745
5679
  * @throws {RequiredError}
5746
5680
  */
5747
- evidenceGetPresignedUploadUrls(evidenceUploadRequest: EvidenceUploadRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<{
5681
+ evidenceGetPresignedUploadUrls(evidenceUploadRequest: EvidenceUploadRequest, options?: RawAxiosRequestConfig): AxiosPromise<{
5748
5682
  [key: string]: any;
5749
5683
  }>;
5750
5684
  /**
5751
5685
  *
5752
5686
  * @summary List Company Evidence
5753
- * @param {string} [xAPIKey]
5754
5687
  * @param {*} [options] Override http request option.
5755
5688
  * @throws {RequiredError}
5756
5689
  */
5757
- evidenceListCompanyEvidence(xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<EvidenceBase>>;
5690
+ evidenceListCompanyEvidence(options?: RawAxiosRequestConfig): AxiosPromise<Array<EvidenceBase>>;
5758
5691
  /**
5759
5692
  *
5760
5693
  * @summary Update Evidence
5761
5694
  * @param {string} evidenceId
5762
5695
  * @param {string} text Text description of the evidence
5763
- * @param {string} [xAPIKey]
5764
5696
  * @param {*} [options] Override http request option.
5765
5697
  * @throws {RequiredError}
5766
5698
  */
5767
- evidenceUpdateEvidence(evidenceId: string, text: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<EvidenceBase>;
5699
+ evidenceUpdateEvidence(evidenceId: string, text: string, options?: RawAxiosRequestConfig): AxiosPromise<EvidenceBase>;
5768
5700
  /**
5769
5701
  * Confirm evidence upload after files have been uploaded to R2. This endpoint validates uploaded files and creates evidence records.
5770
5702
  * @summary Confirm Evidence Upload
5771
5703
  * @param {EvidenceUploadConfirmRequest} evidenceUploadConfirmRequest
5772
- * @param {string} [xAPIKey]
5773
5704
  * @param {*} [options] Override http request option.
5774
5705
  * @throws {RequiredError}
5775
5706
  */
5776
- evidenceUploadConfirmEvidence(evidenceUploadConfirmRequest: EvidenceUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<EvidenceBase>;
5707
+ evidenceUploadConfirmEvidence(evidenceUploadConfirmRequest: EvidenceUploadConfirmRequest, options?: RawAxiosRequestConfig): AxiosPromise<EvidenceBase>;
5777
5708
  };
5778
5709
  /**
5779
5710
  * EvidenceApi - object-oriented interface
@@ -5786,74 +5717,67 @@ export declare class EvidenceApi extends BaseAPI {
5786
5717
  *
5787
5718
  * @summary Delete Evidence
5788
5719
  * @param {string} evidenceId
5789
- * @param {string} [xAPIKey]
5790
5720
  * @param {*} [options] Override http request option.
5791
5721
  * @throws {RequiredError}
5792
5722
  * @memberof EvidenceApi
5793
5723
  */
5794
- evidenceDeleteEvidence(evidenceId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
5724
+ evidenceDeleteEvidence(evidenceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
5795
5725
  /**
5796
5726
  *
5797
5727
  * @summary Get Evidence
5798
5728
  * @param {string} evidenceId
5799
- * @param {string} [xAPIKey]
5800
5729
  * @param {*} [options] Override http request option.
5801
5730
  * @throws {RequiredError}
5802
5731
  * @memberof EvidenceApi
5803
5732
  */
5804
- evidenceGetEvidence(evidenceId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EvidenceWithControl, any, {}>>;
5733
+ evidenceGetEvidence(evidenceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EvidenceWithControl, any, {}>>;
5805
5734
  /**
5806
5735
  *
5807
5736
  * @summary Get Evidence Files
5808
5737
  * @param {number} evidenceFileId
5809
- * @param {string} [xAPIKey]
5810
5738
  * @param {*} [options] Override http request option.
5811
5739
  * @throws {RequiredError}
5812
5740
  * @memberof EvidenceApi
5813
5741
  */
5814
- evidenceGetEvidenceFiles(evidenceFileId: number, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileDownload, any, {}>>;
5742
+ evidenceGetEvidenceFiles(evidenceFileId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileDownload, any, {}>>;
5815
5743
  /**
5816
5744
  * Generate presigned PUT URLs for evidence file uploads. Client should: 1. Call this endpoint to get presigned URLs 2. Upload files directly to R2 using the presigned URLs 3. Call /upload/confirm with the storage keys to create evidence records
5817
5745
  * @summary Get Presigned Upload Urls
5818
5746
  * @param {EvidenceUploadRequest} evidenceUploadRequest
5819
- * @param {string} [xAPIKey]
5820
5747
  * @param {*} [options] Override http request option.
5821
5748
  * @throws {RequiredError}
5822
5749
  * @memberof EvidenceApi
5823
5750
  */
5824
- evidenceGetPresignedUploadUrls(evidenceUploadRequest: EvidenceUploadRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
5751
+ evidenceGetPresignedUploadUrls(evidenceUploadRequest: EvidenceUploadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
5825
5752
  [key: string]: any;
5826
5753
  }, any, {}>>;
5827
5754
  /**
5828
5755
  *
5829
5756
  * @summary List Company Evidence
5830
- * @param {string} [xAPIKey]
5831
5757
  * @param {*} [options] Override http request option.
5832
5758
  * @throws {RequiredError}
5833
5759
  * @memberof EvidenceApi
5834
5760
  */
5835
- evidenceListCompanyEvidence(xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EvidenceBase[], any, {}>>;
5761
+ evidenceListCompanyEvidence(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EvidenceBase[], any, {}>>;
5836
5762
  /**
5837
5763
  *
5838
5764
  * @summary Update Evidence
5839
5765
  * @param {string} evidenceId
5840
5766
  * @param {string} text Text description of the evidence
5841
- * @param {string} [xAPIKey]
5842
5767
  * @param {*} [options] Override http request option.
5843
5768
  * @throws {RequiredError}
5844
5769
  * @memberof EvidenceApi
5845
5770
  */
5846
- evidenceUpdateEvidence(evidenceId: string, text: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EvidenceBase, any, {}>>;
5771
+ evidenceUpdateEvidence(evidenceId: string, text: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EvidenceBase, any, {}>>;
5847
5772
  /**
5848
5773
  * Confirm evidence upload after files have been uploaded to R2. This endpoint validates uploaded files and creates evidence records.
5849
5774
  * @summary Confirm Evidence Upload
5850
5775
  * @param {EvidenceUploadConfirmRequest} evidenceUploadConfirmRequest
5851
- * @param {string} [xAPIKey]
5852
5776
  * @param {*} [options] Override http request option.
5853
5777
  * @throws {RequiredError}
5854
5778
  * @memberof EvidenceApi
5855
5779
  */
5856
- evidenceUploadConfirmEvidence(evidenceUploadConfirmRequest: EvidenceUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EvidenceBase, any, {}>>;
5780
+ evidenceUploadConfirmEvidence(evidenceUploadConfirmRequest: EvidenceUploadConfirmRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EvidenceBase, any, {}>>;
5857
5781
  }
5858
5782
  /**
5859
5783
  * FrameworksApi - axios parameter creator
@@ -5864,19 +5788,17 @@ export declare const FrameworksApiAxiosParamCreator: (configuration?: Configurat
5864
5788
  * Get framework with requirements and company controls for each requirement. Returns the framework details along with all requirements, and for each requirement, shows the company\'s controls that are associated with that requirement.
5865
5789
  * @summary Get Framework With Controls
5866
5790
  * @param {number} frameworkId
5867
- * @param {string} [xAPIKey]
5868
5791
  * @param {*} [options] Override http request option.
5869
5792
  * @throws {RequiredError}
5870
5793
  */
5871
- frameworkGetFrameworkWithControls: (frameworkId: number, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5794
+ frameworkGetFrameworkWithControls: (frameworkId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5872
5795
  /**
5873
5796
  * List all available frameworks
5874
5797
  * @summary List Frameworks
5875
- * @param {string} [xAPIKey]
5876
5798
  * @param {*} [options] Override http request option.
5877
5799
  * @throws {RequiredError}
5878
5800
  */
5879
- frameworkListFrameworks: (xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5801
+ frameworkListFrameworks: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5880
5802
  };
5881
5803
  /**
5882
5804
  * FrameworksApi - functional programming interface
@@ -5887,19 +5809,17 @@ export declare const FrameworksApiFp: (configuration?: Configuration) => {
5887
5809
  * Get framework with requirements and company controls for each requirement. Returns the framework details along with all requirements, and for each requirement, shows the company\'s controls that are associated with that requirement.
5888
5810
  * @summary Get Framework With Controls
5889
5811
  * @param {number} frameworkId
5890
- * @param {string} [xAPIKey]
5891
5812
  * @param {*} [options] Override http request option.
5892
5813
  * @throws {RequiredError}
5893
5814
  */
5894
- frameworkGetFrameworkWithControls(frameworkId: number, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FrameworkDetailResponse>>;
5815
+ frameworkGetFrameworkWithControls(frameworkId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FrameworkDetailResponse>>;
5895
5816
  /**
5896
5817
  * List all available frameworks
5897
5818
  * @summary List Frameworks
5898
- * @param {string} [xAPIKey]
5899
5819
  * @param {*} [options] Override http request option.
5900
5820
  * @throws {RequiredError}
5901
5821
  */
5902
- frameworkListFrameworks(xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FrameworkListResponse>>>;
5822
+ frameworkListFrameworks(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FrameworkListResponse>>>;
5903
5823
  };
5904
5824
  /**
5905
5825
  * FrameworksApi - factory interface
@@ -5910,19 +5830,17 @@ export declare const FrameworksApiFactory: (configuration?: Configuration, baseP
5910
5830
  * Get framework with requirements and company controls for each requirement. Returns the framework details along with all requirements, and for each requirement, shows the company\'s controls that are associated with that requirement.
5911
5831
  * @summary Get Framework With Controls
5912
5832
  * @param {number} frameworkId
5913
- * @param {string} [xAPIKey]
5914
5833
  * @param {*} [options] Override http request option.
5915
5834
  * @throws {RequiredError}
5916
5835
  */
5917
- frameworkGetFrameworkWithControls(frameworkId: number, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<FrameworkDetailResponse>;
5836
+ frameworkGetFrameworkWithControls(frameworkId: number, options?: RawAxiosRequestConfig): AxiosPromise<FrameworkDetailResponse>;
5918
5837
  /**
5919
5838
  * List all available frameworks
5920
5839
  * @summary List Frameworks
5921
- * @param {string} [xAPIKey]
5922
5840
  * @param {*} [options] Override http request option.
5923
5841
  * @throws {RequiredError}
5924
5842
  */
5925
- frameworkListFrameworks(xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<FrameworkListResponse>>;
5843
+ frameworkListFrameworks(options?: RawAxiosRequestConfig): AxiosPromise<Array<FrameworkListResponse>>;
5926
5844
  };
5927
5845
  /**
5928
5846
  * FrameworksApi - object-oriented interface
@@ -5935,21 +5853,19 @@ export declare class FrameworksApi extends BaseAPI {
5935
5853
  * Get framework with requirements and company controls for each requirement. Returns the framework details along with all requirements, and for each requirement, shows the company\'s controls that are associated with that requirement.
5936
5854
  * @summary Get Framework With Controls
5937
5855
  * @param {number} frameworkId
5938
- * @param {string} [xAPIKey]
5939
5856
  * @param {*} [options] Override http request option.
5940
5857
  * @throws {RequiredError}
5941
5858
  * @memberof FrameworksApi
5942
5859
  */
5943
- frameworkGetFrameworkWithControls(frameworkId: number, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FrameworkDetailResponse, any, {}>>;
5860
+ frameworkGetFrameworkWithControls(frameworkId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FrameworkDetailResponse, any, {}>>;
5944
5861
  /**
5945
5862
  * List all available frameworks
5946
5863
  * @summary List Frameworks
5947
- * @param {string} [xAPIKey]
5948
5864
  * @param {*} [options] Override http request option.
5949
5865
  * @throws {RequiredError}
5950
5866
  * @memberof FrameworksApi
5951
5867
  */
5952
- frameworkListFrameworks(xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FrameworkListResponse[], any, {}>>;
5868
+ frameworkListFrameworks(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FrameworkListResponse[], any, {}>>;
5953
5869
  }
5954
5870
  /**
5955
5871
  * ReportsApi - axios parameter creator
@@ -5960,38 +5876,34 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
5960
5876
  *
5961
5877
  * @summary Export Report
5962
5878
  * @param {string} reportId
5963
- * @param {string} [xAPIKey]
5964
5879
  * @param {*} [options] Override http request option.
5965
5880
  * @throws {RequiredError}
5966
5881
  */
5967
- reportExportReport: (reportId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5882
+ reportExportReport: (reportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5968
5883
  /**
5969
5884
  *
5970
5885
  * @summary Generate Report
5971
5886
  * @param {ReportGenerateRequest} reportGenerateRequest
5972
- * @param {string} [xAPIKey]
5973
5887
  * @param {*} [options] Override http request option.
5974
5888
  * @throws {RequiredError}
5975
5889
  */
5976
- reportGenerateReport: (reportGenerateRequest: ReportGenerateRequest, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5890
+ reportGenerateReport: (reportGenerateRequest: ReportGenerateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5977
5891
  /**
5978
5892
  * Check the status of a report generation background job
5979
5893
  * @summary Get Report Generation Status
5980
5894
  * @param {string} taskId
5981
- * @param {string} [xAPIKey]
5982
5895
  * @param {*} [options] Override http request option.
5983
5896
  * @throws {RequiredError}
5984
5897
  */
5985
- reportGetReportGenerationStatus: (taskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5898
+ reportGetReportGenerationStatus: (taskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5986
5899
  /**
5987
5900
  *
5988
5901
  * @summary List Reports
5989
5902
  * @param {PaginationQuery} paginationQuery
5990
- * @param {string} [xAPIKey]
5991
5903
  * @param {*} [options] Override http request option.
5992
5904
  * @throws {RequiredError}
5993
5905
  */
5994
- reportListReports: (paginationQuery: PaginationQuery, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5906
+ reportListReports: (paginationQuery: PaginationQuery, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5995
5907
  };
5996
5908
  /**
5997
5909
  * ReportsApi - functional programming interface
@@ -6002,38 +5914,34 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
6002
5914
  *
6003
5915
  * @summary Export Report
6004
5916
  * @param {string} reportId
6005
- * @param {string} [xAPIKey]
6006
5917
  * @param {*} [options] Override http request option.
6007
5918
  * @throws {RequiredError}
6008
5919
  */
6009
- reportExportReport(reportId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileDownload>>;
5920
+ reportExportReport(reportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileDownload>>;
6010
5921
  /**
6011
5922
  *
6012
5923
  * @summary Generate Report
6013
5924
  * @param {ReportGenerateRequest} reportGenerateRequest
6014
- * @param {string} [xAPIKey]
6015
5925
  * @param {*} [options] Override http request option.
6016
5926
  * @throws {RequiredError}
6017
5927
  */
6018
- reportGenerateReport(reportGenerateRequest: ReportGenerateRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportGenerateResponse>>;
5928
+ reportGenerateReport(reportGenerateRequest: ReportGenerateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportGenerateResponse>>;
6019
5929
  /**
6020
5930
  * Check the status of a report generation background job
6021
5931
  * @summary Get Report Generation Status
6022
5932
  * @param {string} taskId
6023
- * @param {string} [xAPIKey]
6024
5933
  * @param {*} [options] Override http request option.
6025
5934
  * @throws {RequiredError}
6026
5935
  */
6027
- reportGetReportGenerationStatus(taskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusResponse>>;
5936
+ reportGetReportGenerationStatus(taskId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusResponse>>;
6028
5937
  /**
6029
5938
  *
6030
5939
  * @summary List Reports
6031
5940
  * @param {PaginationQuery} paginationQuery
6032
- * @param {string} [xAPIKey]
6033
5941
  * @param {*} [options] Override http request option.
6034
5942
  * @throws {RequiredError}
6035
5943
  */
6036
- reportListReports(paginationQuery: PaginationQuery, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseReportBase>>;
5944
+ reportListReports(paginationQuery: PaginationQuery, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseReportBase>>;
6037
5945
  };
6038
5946
  /**
6039
5947
  * ReportsApi - factory interface
@@ -6044,38 +5952,34 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
6044
5952
  *
6045
5953
  * @summary Export Report
6046
5954
  * @param {string} reportId
6047
- * @param {string} [xAPIKey]
6048
5955
  * @param {*} [options] Override http request option.
6049
5956
  * @throws {RequiredError}
6050
5957
  */
6051
- reportExportReport(reportId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<FileDownload>;
5958
+ reportExportReport(reportId: string, options?: RawAxiosRequestConfig): AxiosPromise<FileDownload>;
6052
5959
  /**
6053
5960
  *
6054
5961
  * @summary Generate Report
6055
5962
  * @param {ReportGenerateRequest} reportGenerateRequest
6056
- * @param {string} [xAPIKey]
6057
5963
  * @param {*} [options] Override http request option.
6058
5964
  * @throws {RequiredError}
6059
5965
  */
6060
- reportGenerateReport(reportGenerateRequest: ReportGenerateRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<ReportGenerateResponse>;
5966
+ reportGenerateReport(reportGenerateRequest: ReportGenerateRequest, options?: RawAxiosRequestConfig): AxiosPromise<ReportGenerateResponse>;
6061
5967
  /**
6062
5968
  * Check the status of a report generation background job
6063
5969
  * @summary Get Report Generation Status
6064
5970
  * @param {string} taskId
6065
- * @param {string} [xAPIKey]
6066
5971
  * @param {*} [options] Override http request option.
6067
5972
  * @throws {RequiredError}
6068
5973
  */
6069
- reportGetReportGenerationStatus(taskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<TaskStatusResponse>;
5974
+ reportGetReportGenerationStatus(taskId: string, options?: RawAxiosRequestConfig): AxiosPromise<TaskStatusResponse>;
6070
5975
  /**
6071
5976
  *
6072
5977
  * @summary List Reports
6073
5978
  * @param {PaginationQuery} paginationQuery
6074
- * @param {string} [xAPIKey]
6075
5979
  * @param {*} [options] Override http request option.
6076
5980
  * @throws {RequiredError}
6077
5981
  */
6078
- reportListReports(paginationQuery: PaginationQuery, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseReportBase>;
5982
+ reportListReports(paginationQuery: PaginationQuery, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseReportBase>;
6079
5983
  };
6080
5984
  /**
6081
5985
  * ReportsApi - object-oriented interface
@@ -6088,42 +5992,38 @@ export declare class ReportsApi extends BaseAPI {
6088
5992
  *
6089
5993
  * @summary Export Report
6090
5994
  * @param {string} reportId
6091
- * @param {string} [xAPIKey]
6092
5995
  * @param {*} [options] Override http request option.
6093
5996
  * @throws {RequiredError}
6094
5997
  * @memberof ReportsApi
6095
5998
  */
6096
- reportExportReport(reportId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileDownload, any, {}>>;
5999
+ reportExportReport(reportId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileDownload, any, {}>>;
6097
6000
  /**
6098
6001
  *
6099
6002
  * @summary Generate Report
6100
6003
  * @param {ReportGenerateRequest} reportGenerateRequest
6101
- * @param {string} [xAPIKey]
6102
6004
  * @param {*} [options] Override http request option.
6103
6005
  * @throws {RequiredError}
6104
6006
  * @memberof ReportsApi
6105
6007
  */
6106
- reportGenerateReport(reportGenerateRequest: ReportGenerateRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportGenerateResponse, any, {}>>;
6008
+ reportGenerateReport(reportGenerateRequest: ReportGenerateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReportGenerateResponse, any, {}>>;
6107
6009
  /**
6108
6010
  * Check the status of a report generation background job
6109
6011
  * @summary Get Report Generation Status
6110
6012
  * @param {string} taskId
6111
- * @param {string} [xAPIKey]
6112
6013
  * @param {*} [options] Override http request option.
6113
6014
  * @throws {RequiredError}
6114
6015
  * @memberof ReportsApi
6115
6016
  */
6116
- reportGetReportGenerationStatus(taskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskStatusResponse, any, {}>>;
6017
+ reportGetReportGenerationStatus(taskId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskStatusResponse, any, {}>>;
6117
6018
  /**
6118
6019
  *
6119
6020
  * @summary List Reports
6120
6021
  * @param {PaginationQuery} paginationQuery
6121
- * @param {string} [xAPIKey]
6122
6022
  * @param {*} [options] Override http request option.
6123
6023
  * @throws {RequiredError}
6124
6024
  * @memberof ReportsApi
6125
6025
  */
6126
- reportListReports(paginationQuery: PaginationQuery, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseReportBase, any, {}>>;
6026
+ reportListReports(paginationQuery: PaginationQuery, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseReportBase, any, {}>>;
6127
6027
  }
6128
6028
  /**
6129
6029
  * RisksApi - axios parameter creator
@@ -6134,85 +6034,76 @@ export declare const RisksApiAxiosParamCreator: (configuration?: Configuration)
6134
6034
  * Create a new risk.
6135
6035
  * @summary Create Risk
6136
6036
  * @param {RiskCreate} riskCreate
6137
- * @param {string} [xAPIKey]
6138
6037
  * @param {*} [options] Override http request option.
6139
6038
  * @throws {RequiredError}
6140
6039
  */
6141
- riskCreateRisk: (riskCreate: RiskCreate, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6040
+ riskCreateRisk: (riskCreate: RiskCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6142
6041
  /**
6143
6042
  * Delete a risk.
6144
6043
  * @summary Delete Risk
6145
6044
  * @param {string} riskId
6146
- * @param {string} [xAPIKey]
6147
6045
  * @param {*} [options] Override http request option.
6148
6046
  * @throws {RequiredError}
6149
6047
  */
6150
- riskDeleteRisk: (riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6048
+ riskDeleteRisk: (riskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6151
6049
  /**
6152
6050
  * Get all controls linked to a risk.
6153
6051
  * @summary Get Controls For Risk
6154
6052
  * @param {string} riskId
6155
- * @param {string} [xAPIKey]
6156
6053
  * @param {*} [options] Override http request option.
6157
6054
  * @throws {RequiredError}
6158
6055
  */
6159
- riskGetControls: (riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6056
+ riskGetControls: (riskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6160
6057
  /**
6161
6058
  * Get risk details.
6162
6059
  * @summary Get Risk
6163
6060
  * @param {string} riskId
6164
- * @param {string} [xAPIKey]
6165
6061
  * @param {*} [options] Override http request option.
6166
6062
  * @throws {RequiredError}
6167
6063
  */
6168
- riskGetRisk: (riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6064
+ riskGetRisk: (riskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6169
6065
  /**
6170
6066
  * Get risk templates, optionally filtered by category.
6171
6067
  * @summary Get Templates
6172
6068
  * @param {RiskTemplateRequest} riskTemplateRequest
6173
- * @param {string} [xAPIKey]
6174
6069
  * @param {*} [options] Override http request option.
6175
6070
  * @throws {RequiredError}
6176
6071
  */
6177
- riskGetTemplates: (riskTemplateRequest: RiskTemplateRequest, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6072
+ riskGetTemplates: (riskTemplateRequest: RiskTemplateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6178
6073
  /**
6179
6074
  * Link a control to a risk.
6180
6075
  * @summary Link Control To Risk
6181
6076
  * @param {string} riskId
6182
6077
  * @param {string} controlId
6183
- * @param {string} [xAPIKey]
6184
6078
  * @param {*} [options] Override http request option.
6185
6079
  * @throws {RequiredError}
6186
6080
  */
6187
- riskLinkControls: (riskId: string, controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6081
+ riskLinkControls: (riskId: string, controlId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6188
6082
  /**
6189
6083
  * List all risks for a company (returns list for heat maps).
6190
6084
  * @summary List Risks
6191
- * @param {string} [xAPIKey]
6192
6085
  * @param {*} [options] Override http request option.
6193
6086
  * @throws {RequiredError}
6194
6087
  */
6195
- riskListRisks: (xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6088
+ riskListRisks: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6196
6089
  /**
6197
6090
  * Unlink a control from a risk.
6198
6091
  * @summary Unlink Control From Risk
6199
6092
  * @param {string} riskId
6200
6093
  * @param {string} controlId
6201
- * @param {string} [xAPIKey]
6202
6094
  * @param {*} [options] Override http request option.
6203
6095
  * @throws {RequiredError}
6204
6096
  */
6205
- riskUnlinkControls: (riskId: string, controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6097
+ riskUnlinkControls: (riskId: string, controlId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6206
6098
  /**
6207
6099
  * Update a risk.
6208
6100
  * @summary Update Risk
6209
6101
  * @param {string} riskId
6210
6102
  * @param {RiskUpdate} riskUpdate
6211
- * @param {string} [xAPIKey]
6212
6103
  * @param {*} [options] Override http request option.
6213
6104
  * @throws {RequiredError}
6214
6105
  */
6215
- riskUpdateRisk: (riskId: string, riskUpdate: RiskUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6106
+ riskUpdateRisk: (riskId: string, riskUpdate: RiskUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6216
6107
  };
6217
6108
  /**
6218
6109
  * RisksApi - functional programming interface
@@ -6223,85 +6114,76 @@ export declare const RisksApiFp: (configuration?: Configuration) => {
6223
6114
  * Create a new risk.
6224
6115
  * @summary Create Risk
6225
6116
  * @param {RiskCreate} riskCreate
6226
- * @param {string} [xAPIKey]
6227
6117
  * @param {*} [options] Override http request option.
6228
6118
  * @throws {RequiredError}
6229
6119
  */
6230
- riskCreateRisk(riskCreate: RiskCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RiskRead>>;
6120
+ riskCreateRisk(riskCreate: RiskCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RiskRead>>;
6231
6121
  /**
6232
6122
  * Delete a risk.
6233
6123
  * @summary Delete Risk
6234
6124
  * @param {string} riskId
6235
- * @param {string} [xAPIKey]
6236
6125
  * @param {*} [options] Override http request option.
6237
6126
  * @throws {RequiredError}
6238
6127
  */
6239
- riskDeleteRisk(riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6128
+ riskDeleteRisk(riskId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6240
6129
  /**
6241
6130
  * Get all controls linked to a risk.
6242
6131
  * @summary Get Controls For Risk
6243
6132
  * @param {string} riskId
6244
- * @param {string} [xAPIKey]
6245
6133
  * @param {*} [options] Override http request option.
6246
6134
  * @throws {RequiredError}
6247
6135
  */
6248
- riskGetControls(riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ControlWithData>>>;
6136
+ riskGetControls(riskId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ControlWithData>>>;
6249
6137
  /**
6250
6138
  * Get risk details.
6251
6139
  * @summary Get Risk
6252
6140
  * @param {string} riskId
6253
- * @param {string} [xAPIKey]
6254
6141
  * @param {*} [options] Override http request option.
6255
6142
  * @throws {RequiredError}
6256
6143
  */
6257
- riskGetRisk(riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RiskRead>>;
6144
+ riskGetRisk(riskId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RiskRead>>;
6258
6145
  /**
6259
6146
  * Get risk templates, optionally filtered by category.
6260
6147
  * @summary Get Templates
6261
6148
  * @param {RiskTemplateRequest} riskTemplateRequest
6262
- * @param {string} [xAPIKey]
6263
6149
  * @param {*} [options] Override http request option.
6264
6150
  * @throws {RequiredError}
6265
6151
  */
6266
- riskGetTemplates(riskTemplateRequest: RiskTemplateRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RiskTemplate>>>;
6152
+ riskGetTemplates(riskTemplateRequest: RiskTemplateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RiskTemplate>>>;
6267
6153
  /**
6268
6154
  * Link a control to a risk.
6269
6155
  * @summary Link Control To Risk
6270
6156
  * @param {string} riskId
6271
6157
  * @param {string} controlId
6272
- * @param {string} [xAPIKey]
6273
6158
  * @param {*} [options] Override http request option.
6274
6159
  * @throws {RequiredError}
6275
6160
  */
6276
- riskLinkControls(riskId: string, controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6161
+ riskLinkControls(riskId: string, controlId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6277
6162
  /**
6278
6163
  * List all risks for a company (returns list for heat maps).
6279
6164
  * @summary List Risks
6280
- * @param {string} [xAPIKey]
6281
6165
  * @param {*} [options] Override http request option.
6282
6166
  * @throws {RequiredError}
6283
6167
  */
6284
- riskListRisks(xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RiskList>>>;
6168
+ riskListRisks(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RiskList>>>;
6285
6169
  /**
6286
6170
  * Unlink a control from a risk.
6287
6171
  * @summary Unlink Control From Risk
6288
6172
  * @param {string} riskId
6289
6173
  * @param {string} controlId
6290
- * @param {string} [xAPIKey]
6291
6174
  * @param {*} [options] Override http request option.
6292
6175
  * @throws {RequiredError}
6293
6176
  */
6294
- riskUnlinkControls(riskId: string, controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6177
+ riskUnlinkControls(riskId: string, controlId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6295
6178
  /**
6296
6179
  * Update a risk.
6297
6180
  * @summary Update Risk
6298
6181
  * @param {string} riskId
6299
6182
  * @param {RiskUpdate} riskUpdate
6300
- * @param {string} [xAPIKey]
6301
6183
  * @param {*} [options] Override http request option.
6302
6184
  * @throws {RequiredError}
6303
6185
  */
6304
- riskUpdateRisk(riskId: string, riskUpdate: RiskUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RiskRead>>;
6186
+ riskUpdateRisk(riskId: string, riskUpdate: RiskUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RiskRead>>;
6305
6187
  };
6306
6188
  /**
6307
6189
  * RisksApi - factory interface
@@ -6312,85 +6194,76 @@ export declare const RisksApiFactory: (configuration?: Configuration, basePath?:
6312
6194
  * Create a new risk.
6313
6195
  * @summary Create Risk
6314
6196
  * @param {RiskCreate} riskCreate
6315
- * @param {string} [xAPIKey]
6316
6197
  * @param {*} [options] Override http request option.
6317
6198
  * @throws {RequiredError}
6318
6199
  */
6319
- riskCreateRisk(riskCreate: RiskCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<RiskRead>;
6200
+ riskCreateRisk(riskCreate: RiskCreate, options?: RawAxiosRequestConfig): AxiosPromise<RiskRead>;
6320
6201
  /**
6321
6202
  * Delete a risk.
6322
6203
  * @summary Delete Risk
6323
6204
  * @param {string} riskId
6324
- * @param {string} [xAPIKey]
6325
6205
  * @param {*} [options] Override http request option.
6326
6206
  * @throws {RequiredError}
6327
6207
  */
6328
- riskDeleteRisk(riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6208
+ riskDeleteRisk(riskId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6329
6209
  /**
6330
6210
  * Get all controls linked to a risk.
6331
6211
  * @summary Get Controls For Risk
6332
6212
  * @param {string} riskId
6333
- * @param {string} [xAPIKey]
6334
6213
  * @param {*} [options] Override http request option.
6335
6214
  * @throws {RequiredError}
6336
6215
  */
6337
- riskGetControls(riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ControlWithData>>;
6216
+ riskGetControls(riskId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ControlWithData>>;
6338
6217
  /**
6339
6218
  * Get risk details.
6340
6219
  * @summary Get Risk
6341
6220
  * @param {string} riskId
6342
- * @param {string} [xAPIKey]
6343
6221
  * @param {*} [options] Override http request option.
6344
6222
  * @throws {RequiredError}
6345
6223
  */
6346
- riskGetRisk(riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<RiskRead>;
6224
+ riskGetRisk(riskId: string, options?: RawAxiosRequestConfig): AxiosPromise<RiskRead>;
6347
6225
  /**
6348
6226
  * Get risk templates, optionally filtered by category.
6349
6227
  * @summary Get Templates
6350
6228
  * @param {RiskTemplateRequest} riskTemplateRequest
6351
- * @param {string} [xAPIKey]
6352
6229
  * @param {*} [options] Override http request option.
6353
6230
  * @throws {RequiredError}
6354
6231
  */
6355
- riskGetTemplates(riskTemplateRequest: RiskTemplateRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<RiskTemplate>>;
6232
+ riskGetTemplates(riskTemplateRequest: RiskTemplateRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<RiskTemplate>>;
6356
6233
  /**
6357
6234
  * Link a control to a risk.
6358
6235
  * @summary Link Control To Risk
6359
6236
  * @param {string} riskId
6360
6237
  * @param {string} controlId
6361
- * @param {string} [xAPIKey]
6362
6238
  * @param {*} [options] Override http request option.
6363
6239
  * @throws {RequiredError}
6364
6240
  */
6365
- riskLinkControls(riskId: string, controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6241
+ riskLinkControls(riskId: string, controlId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6366
6242
  /**
6367
6243
  * List all risks for a company (returns list for heat maps).
6368
6244
  * @summary List Risks
6369
- * @param {string} [xAPIKey]
6370
6245
  * @param {*} [options] Override http request option.
6371
6246
  * @throws {RequiredError}
6372
6247
  */
6373
- riskListRisks(xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<RiskList>>;
6248
+ riskListRisks(options?: RawAxiosRequestConfig): AxiosPromise<Array<RiskList>>;
6374
6249
  /**
6375
6250
  * Unlink a control from a risk.
6376
6251
  * @summary Unlink Control From Risk
6377
6252
  * @param {string} riskId
6378
6253
  * @param {string} controlId
6379
- * @param {string} [xAPIKey]
6380
6254
  * @param {*} [options] Override http request option.
6381
6255
  * @throws {RequiredError}
6382
6256
  */
6383
- riskUnlinkControls(riskId: string, controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6257
+ riskUnlinkControls(riskId: string, controlId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6384
6258
  /**
6385
6259
  * Update a risk.
6386
6260
  * @summary Update Risk
6387
6261
  * @param {string} riskId
6388
6262
  * @param {RiskUpdate} riskUpdate
6389
- * @param {string} [xAPIKey]
6390
6263
  * @param {*} [options] Override http request option.
6391
6264
  * @throws {RequiredError}
6392
6265
  */
6393
- riskUpdateRisk(riskId: string, riskUpdate: RiskUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<RiskRead>;
6266
+ riskUpdateRisk(riskId: string, riskUpdate: RiskUpdate, options?: RawAxiosRequestConfig): AxiosPromise<RiskRead>;
6394
6267
  };
6395
6268
  /**
6396
6269
  * RisksApi - object-oriented interface
@@ -6403,94 +6276,85 @@ export declare class RisksApi extends BaseAPI {
6403
6276
  * Create a new risk.
6404
6277
  * @summary Create Risk
6405
6278
  * @param {RiskCreate} riskCreate
6406
- * @param {string} [xAPIKey]
6407
6279
  * @param {*} [options] Override http request option.
6408
6280
  * @throws {RequiredError}
6409
6281
  * @memberof RisksApi
6410
6282
  */
6411
- riskCreateRisk(riskCreate: RiskCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskRead, any, {}>>;
6283
+ riskCreateRisk(riskCreate: RiskCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskRead, any, {}>>;
6412
6284
  /**
6413
6285
  * Delete a risk.
6414
6286
  * @summary Delete Risk
6415
6287
  * @param {string} riskId
6416
- * @param {string} [xAPIKey]
6417
6288
  * @param {*} [options] Override http request option.
6418
6289
  * @throws {RequiredError}
6419
6290
  * @memberof RisksApi
6420
6291
  */
6421
- riskDeleteRisk(riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6292
+ riskDeleteRisk(riskId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6422
6293
  /**
6423
6294
  * Get all controls linked to a risk.
6424
6295
  * @summary Get Controls For Risk
6425
6296
  * @param {string} riskId
6426
- * @param {string} [xAPIKey]
6427
6297
  * @param {*} [options] Override http request option.
6428
6298
  * @throws {RequiredError}
6429
6299
  * @memberof RisksApi
6430
6300
  */
6431
- riskGetControls(riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ControlWithData[], any, {}>>;
6301
+ riskGetControls(riskId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ControlWithData[], any, {}>>;
6432
6302
  /**
6433
6303
  * Get risk details.
6434
6304
  * @summary Get Risk
6435
6305
  * @param {string} riskId
6436
- * @param {string} [xAPIKey]
6437
6306
  * @param {*} [options] Override http request option.
6438
6307
  * @throws {RequiredError}
6439
6308
  * @memberof RisksApi
6440
6309
  */
6441
- riskGetRisk(riskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskRead, any, {}>>;
6310
+ riskGetRisk(riskId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskRead, any, {}>>;
6442
6311
  /**
6443
6312
  * Get risk templates, optionally filtered by category.
6444
6313
  * @summary Get Templates
6445
6314
  * @param {RiskTemplateRequest} riskTemplateRequest
6446
- * @param {string} [xAPIKey]
6447
6315
  * @param {*} [options] Override http request option.
6448
6316
  * @throws {RequiredError}
6449
6317
  * @memberof RisksApi
6450
6318
  */
6451
- riskGetTemplates(riskTemplateRequest: RiskTemplateRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskTemplate[], any, {}>>;
6319
+ riskGetTemplates(riskTemplateRequest: RiskTemplateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskTemplate[], any, {}>>;
6452
6320
  /**
6453
6321
  * Link a control to a risk.
6454
6322
  * @summary Link Control To Risk
6455
6323
  * @param {string} riskId
6456
6324
  * @param {string} controlId
6457
- * @param {string} [xAPIKey]
6458
6325
  * @param {*} [options] Override http request option.
6459
6326
  * @throws {RequiredError}
6460
6327
  * @memberof RisksApi
6461
6328
  */
6462
- riskLinkControls(riskId: string, controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6329
+ riskLinkControls(riskId: string, controlId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6463
6330
  /**
6464
6331
  * List all risks for a company (returns list for heat maps).
6465
6332
  * @summary List Risks
6466
- * @param {string} [xAPIKey]
6467
6333
  * @param {*} [options] Override http request option.
6468
6334
  * @throws {RequiredError}
6469
6335
  * @memberof RisksApi
6470
6336
  */
6471
- riskListRisks(xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskList[], any, {}>>;
6337
+ riskListRisks(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskList[], any, {}>>;
6472
6338
  /**
6473
6339
  * Unlink a control from a risk.
6474
6340
  * @summary Unlink Control From Risk
6475
6341
  * @param {string} riskId
6476
6342
  * @param {string} controlId
6477
- * @param {string} [xAPIKey]
6478
6343
  * @param {*} [options] Override http request option.
6479
6344
  * @throws {RequiredError}
6480
6345
  * @memberof RisksApi
6481
6346
  */
6482
- riskUnlinkControls(riskId: string, controlId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6347
+ riskUnlinkControls(riskId: string, controlId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6483
6348
  /**
6484
6349
  * Update a risk.
6485
6350
  * @summary Update Risk
6486
6351
  * @param {string} riskId
6487
6352
  * @param {RiskUpdate} riskUpdate
6488
- * @param {string} [xAPIKey]
6489
6353
  * @param {*} [options] Override http request option.
6490
6354
  * @throws {RequiredError}
6491
6355
  * @memberof RisksApi
6492
6356
  */
6493
- riskUpdateRisk(riskId: string, riskUpdate: RiskUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskRead, any, {}>>;
6357
+ riskUpdateRisk(riskId: string, riskUpdate: RiskUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskRead, any, {}>>;
6494
6358
  }
6495
6359
  /**
6496
6360
  * TasksApi - axios parameter creator
@@ -6501,74 +6365,66 @@ export declare const TasksApiAxiosParamCreator: (configuration?: Configuration)
6501
6365
  *
6502
6366
  * @summary Create Task
6503
6367
  * @param {CreateTaskSchema} createTaskSchema
6504
- * @param {string} [xAPIKey]
6505
6368
  * @param {*} [options] Override http request option.
6506
6369
  * @throws {RequiredError}
6507
6370
  */
6508
- tasksCreateTask: (createTaskSchema: CreateTaskSchema, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6371
+ tasksCreateTask: (createTaskSchema: CreateTaskSchema, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6509
6372
  /**
6510
6373
  *
6511
6374
  * @summary Delete Task
6512
6375
  * @param {DeleteTaskSchema} deleteTaskSchema
6513
- * @param {string} [xAPIKey]
6514
6376
  * @param {*} [options] Override http request option.
6515
6377
  * @throws {RequiredError}
6516
6378
  */
6517
- tasksDeleteTask: (deleteTaskSchema: DeleteTaskSchema, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6379
+ tasksDeleteTask: (deleteTaskSchema: DeleteTaskSchema, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6518
6380
  /**
6519
6381
  *
6520
6382
  * @summary Get Task
6521
6383
  * @param {string} taskId
6522
- * @param {string} [xAPIKey]
6523
6384
  * @param {*} [options] Override http request option.
6524
6385
  * @throws {RequiredError}
6525
6386
  */
6526
- tasksGetTask: (taskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6387
+ tasksGetTask: (taskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6527
6388
  /**
6528
6389
  *
6529
6390
  * @summary List Tasks For Company
6530
6391
  * @param {ListTasksQuery} listTasksQuery
6531
- * @param {string} [xAPIKey]
6532
6392
  * @param {*} [options] Override http request option.
6533
6393
  * @throws {RequiredError}
6534
6394
  */
6535
- tasksListTasksForCompany: (listTasksQuery: ListTasksQuery, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6395
+ tasksListTasksForCompany: (listTasksQuery: ListTasksQuery, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6536
6396
  /**
6537
6397
  *
6538
6398
  * @summary List Tasks For User
6539
6399
  * @param {ListTasksQuery} listTasksQuery
6540
- * @param {string} [xAPIKey]
6541
6400
  * @param {*} [options] Override http request option.
6542
6401
  * @throws {RequiredError}
6543
6402
  */
6544
- tasksListTasksForUser: (listTasksQuery: ListTasksQuery, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6403
+ tasksListTasksForUser: (listTasksQuery: ListTasksQuery, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6545
6404
  /**
6546
6405
  *
6547
6406
  * @summary Request Task Scheduling
6548
6407
  * @param {SchedulerRequest} schedulerRequest
6549
- * @param {string} [xAPIKey]
6550
6408
  * @param {*} [options] Override http request option.
6551
6409
  * @throws {RequiredError}
6552
6410
  */
6553
- tasksScheduleTaskScheduling: (schedulerRequest: SchedulerRequest, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6411
+ tasksScheduleTaskScheduling: (schedulerRequest: SchedulerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6554
6412
  /**
6555
6413
  *
6556
6414
  * @summary Update Task
6557
6415
  * @param {UpdateTaskSchema} updateTaskSchema
6558
- * @param {string} [xAPIKey]
6559
6416
  * @param {*} [options] Override http request option.
6560
6417
  * @throws {RequiredError}
6561
6418
  */
6562
- tasksUpdateTask: (updateTaskSchema: UpdateTaskSchema, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6419
+ tasksUpdateTask: (updateTaskSchema: UpdateTaskSchema, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6563
6420
  /**
6564
6421
  *
6565
6422
  * @summary Update Task Status
6566
6423
  * @param {UpdateTaskStatus} updateTaskStatus
6567
- * @param {string} [xAPIKey]
6568
6424
  * @param {*} [options] Override http request option.
6569
6425
  * @throws {RequiredError}
6570
6426
  */
6571
- tasksUpdateTaskStatus: (updateTaskStatus: UpdateTaskStatus, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6427
+ tasksUpdateTaskStatus: (updateTaskStatus: UpdateTaskStatus, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6572
6428
  };
6573
6429
  /**
6574
6430
  * TasksApi - functional programming interface
@@ -6579,74 +6435,66 @@ export declare const TasksApiFp: (configuration?: Configuration) => {
6579
6435
  *
6580
6436
  * @summary Create Task
6581
6437
  * @param {CreateTaskSchema} createTaskSchema
6582
- * @param {string} [xAPIKey]
6583
6438
  * @param {*} [options] Override http request option.
6584
6439
  * @throws {RequiredError}
6585
6440
  */
6586
- tasksCreateTask(createTaskSchema: CreateTaskSchema, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskRead>>;
6441
+ tasksCreateTask(createTaskSchema: CreateTaskSchema, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskRead>>;
6587
6442
  /**
6588
6443
  *
6589
6444
  * @summary Delete Task
6590
6445
  * @param {DeleteTaskSchema} deleteTaskSchema
6591
- * @param {string} [xAPIKey]
6592
6446
  * @param {*} [options] Override http request option.
6593
6447
  * @throws {RequiredError}
6594
6448
  */
6595
- tasksDeleteTask(deleteTaskSchema: DeleteTaskSchema, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
6449
+ tasksDeleteTask(deleteTaskSchema: DeleteTaskSchema, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
6596
6450
  /**
6597
6451
  *
6598
6452
  * @summary Get Task
6599
6453
  * @param {string} taskId
6600
- * @param {string} [xAPIKey]
6601
6454
  * @param {*} [options] Override http request option.
6602
6455
  * @throws {RequiredError}
6603
6456
  */
6604
- tasksGetTask(taskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskWithUser>>;
6457
+ tasksGetTask(taskId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskWithUser>>;
6605
6458
  /**
6606
6459
  *
6607
6460
  * @summary List Tasks For Company
6608
6461
  * @param {ListTasksQuery} listTasksQuery
6609
- * @param {string} [xAPIKey]
6610
6462
  * @param {*} [options] Override http request option.
6611
6463
  * @throws {RequiredError}
6612
6464
  */
6613
- tasksListTasksForCompany(listTasksQuery: ListTasksQuery, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseTaskWithUser>>;
6465
+ tasksListTasksForCompany(listTasksQuery: ListTasksQuery, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseTaskWithUser>>;
6614
6466
  /**
6615
6467
  *
6616
6468
  * @summary List Tasks For User
6617
6469
  * @param {ListTasksQuery} listTasksQuery
6618
- * @param {string} [xAPIKey]
6619
6470
  * @param {*} [options] Override http request option.
6620
6471
  * @throws {RequiredError}
6621
6472
  */
6622
- tasksListTasksForUser(listTasksQuery: ListTasksQuery, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseTaskRead>>;
6473
+ tasksListTasksForUser(listTasksQuery: ListTasksQuery, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginationResponseTaskRead>>;
6623
6474
  /**
6624
6475
  *
6625
6476
  * @summary Request Task Scheduling
6626
6477
  * @param {SchedulerRequest} schedulerRequest
6627
- * @param {string} [xAPIKey]
6628
6478
  * @param {*} [options] Override http request option.
6629
6479
  * @throws {RequiredError}
6630
6480
  */
6631
- tasksScheduleTaskScheduling(schedulerRequest: SchedulerRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SchedulerResponse>>;
6481
+ tasksScheduleTaskScheduling(schedulerRequest: SchedulerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SchedulerResponse>>;
6632
6482
  /**
6633
6483
  *
6634
6484
  * @summary Update Task
6635
6485
  * @param {UpdateTaskSchema} updateTaskSchema
6636
- * @param {string} [xAPIKey]
6637
6486
  * @param {*} [options] Override http request option.
6638
6487
  * @throws {RequiredError}
6639
6488
  */
6640
- tasksUpdateTask(updateTaskSchema: UpdateTaskSchema, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskRead>>;
6489
+ tasksUpdateTask(updateTaskSchema: UpdateTaskSchema, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskRead>>;
6641
6490
  /**
6642
6491
  *
6643
6492
  * @summary Update Task Status
6644
6493
  * @param {UpdateTaskStatus} updateTaskStatus
6645
- * @param {string} [xAPIKey]
6646
6494
  * @param {*} [options] Override http request option.
6647
6495
  * @throws {RequiredError}
6648
6496
  */
6649
- tasksUpdateTaskStatus(updateTaskStatus: UpdateTaskStatus, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskRead>>;
6497
+ tasksUpdateTaskStatus(updateTaskStatus: UpdateTaskStatus, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskRead>>;
6650
6498
  };
6651
6499
  /**
6652
6500
  * TasksApi - factory interface
@@ -6657,74 +6505,66 @@ export declare const TasksApiFactory: (configuration?: Configuration, basePath?:
6657
6505
  *
6658
6506
  * @summary Create Task
6659
6507
  * @param {CreateTaskSchema} createTaskSchema
6660
- * @param {string} [xAPIKey]
6661
6508
  * @param {*} [options] Override http request option.
6662
6509
  * @throws {RequiredError}
6663
6510
  */
6664
- tasksCreateTask(createTaskSchema: CreateTaskSchema, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<TaskRead>;
6511
+ tasksCreateTask(createTaskSchema: CreateTaskSchema, options?: RawAxiosRequestConfig): AxiosPromise<TaskRead>;
6665
6512
  /**
6666
6513
  *
6667
6514
  * @summary Delete Task
6668
6515
  * @param {DeleteTaskSchema} deleteTaskSchema
6669
- * @param {string} [xAPIKey]
6670
6516
  * @param {*} [options] Override http request option.
6671
6517
  * @throws {RequiredError}
6672
6518
  */
6673
- tasksDeleteTask(deleteTaskSchema: DeleteTaskSchema, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
6519
+ tasksDeleteTask(deleteTaskSchema: DeleteTaskSchema, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
6674
6520
  /**
6675
6521
  *
6676
6522
  * @summary Get Task
6677
6523
  * @param {string} taskId
6678
- * @param {string} [xAPIKey]
6679
6524
  * @param {*} [options] Override http request option.
6680
6525
  * @throws {RequiredError}
6681
6526
  */
6682
- tasksGetTask(taskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<TaskWithUser>;
6527
+ tasksGetTask(taskId: string, options?: RawAxiosRequestConfig): AxiosPromise<TaskWithUser>;
6683
6528
  /**
6684
6529
  *
6685
6530
  * @summary List Tasks For Company
6686
6531
  * @param {ListTasksQuery} listTasksQuery
6687
- * @param {string} [xAPIKey]
6688
6532
  * @param {*} [options] Override http request option.
6689
6533
  * @throws {RequiredError}
6690
6534
  */
6691
- tasksListTasksForCompany(listTasksQuery: ListTasksQuery, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseTaskWithUser>;
6535
+ tasksListTasksForCompany(listTasksQuery: ListTasksQuery, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseTaskWithUser>;
6692
6536
  /**
6693
6537
  *
6694
6538
  * @summary List Tasks For User
6695
6539
  * @param {ListTasksQuery} listTasksQuery
6696
- * @param {string} [xAPIKey]
6697
6540
  * @param {*} [options] Override http request option.
6698
6541
  * @throws {RequiredError}
6699
6542
  */
6700
- tasksListTasksForUser(listTasksQuery: ListTasksQuery, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseTaskRead>;
6543
+ tasksListTasksForUser(listTasksQuery: ListTasksQuery, options?: RawAxiosRequestConfig): AxiosPromise<PaginationResponseTaskRead>;
6701
6544
  /**
6702
6545
  *
6703
6546
  * @summary Request Task Scheduling
6704
6547
  * @param {SchedulerRequest} schedulerRequest
6705
- * @param {string} [xAPIKey]
6706
6548
  * @param {*} [options] Override http request option.
6707
6549
  * @throws {RequiredError}
6708
6550
  */
6709
- tasksScheduleTaskScheduling(schedulerRequest: SchedulerRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<SchedulerResponse>;
6551
+ tasksScheduleTaskScheduling(schedulerRequest: SchedulerRequest, options?: RawAxiosRequestConfig): AxiosPromise<SchedulerResponse>;
6710
6552
  /**
6711
6553
  *
6712
6554
  * @summary Update Task
6713
6555
  * @param {UpdateTaskSchema} updateTaskSchema
6714
- * @param {string} [xAPIKey]
6715
6556
  * @param {*} [options] Override http request option.
6716
6557
  * @throws {RequiredError}
6717
6558
  */
6718
- tasksUpdateTask(updateTaskSchema: UpdateTaskSchema, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<TaskRead>;
6559
+ tasksUpdateTask(updateTaskSchema: UpdateTaskSchema, options?: RawAxiosRequestConfig): AxiosPromise<TaskRead>;
6719
6560
  /**
6720
6561
  *
6721
6562
  * @summary Update Task Status
6722
6563
  * @param {UpdateTaskStatus} updateTaskStatus
6723
- * @param {string} [xAPIKey]
6724
6564
  * @param {*} [options] Override http request option.
6725
6565
  * @throws {RequiredError}
6726
6566
  */
6727
- tasksUpdateTaskStatus(updateTaskStatus: UpdateTaskStatus, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<TaskRead>;
6567
+ tasksUpdateTaskStatus(updateTaskStatus: UpdateTaskStatus, options?: RawAxiosRequestConfig): AxiosPromise<TaskRead>;
6728
6568
  };
6729
6569
  /**
6730
6570
  * TasksApi - object-oriented interface
@@ -6737,82 +6577,74 @@ export declare class TasksApi extends BaseAPI {
6737
6577
  *
6738
6578
  * @summary Create Task
6739
6579
  * @param {CreateTaskSchema} createTaskSchema
6740
- * @param {string} [xAPIKey]
6741
6580
  * @param {*} [options] Override http request option.
6742
6581
  * @throws {RequiredError}
6743
6582
  * @memberof TasksApi
6744
6583
  */
6745
- tasksCreateTask(createTaskSchema: CreateTaskSchema, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskRead, any, {}>>;
6584
+ tasksCreateTask(createTaskSchema: CreateTaskSchema, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskRead, any, {}>>;
6746
6585
  /**
6747
6586
  *
6748
6587
  * @summary Delete Task
6749
6588
  * @param {DeleteTaskSchema} deleteTaskSchema
6750
- * @param {string} [xAPIKey]
6751
6589
  * @param {*} [options] Override http request option.
6752
6590
  * @throws {RequiredError}
6753
6591
  * @memberof TasksApi
6754
6592
  */
6755
- tasksDeleteTask(deleteTaskSchema: DeleteTaskSchema, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
6593
+ tasksDeleteTask(deleteTaskSchema: DeleteTaskSchema, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
6756
6594
  /**
6757
6595
  *
6758
6596
  * @summary Get Task
6759
6597
  * @param {string} taskId
6760
- * @param {string} [xAPIKey]
6761
6598
  * @param {*} [options] Override http request option.
6762
6599
  * @throws {RequiredError}
6763
6600
  * @memberof TasksApi
6764
6601
  */
6765
- tasksGetTask(taskId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskWithUser, any, {}>>;
6602
+ tasksGetTask(taskId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskWithUser, any, {}>>;
6766
6603
  /**
6767
6604
  *
6768
6605
  * @summary List Tasks For Company
6769
6606
  * @param {ListTasksQuery} listTasksQuery
6770
- * @param {string} [xAPIKey]
6771
6607
  * @param {*} [options] Override http request option.
6772
6608
  * @throws {RequiredError}
6773
6609
  * @memberof TasksApi
6774
6610
  */
6775
- tasksListTasksForCompany(listTasksQuery: ListTasksQuery, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseTaskWithUser, any, {}>>;
6611
+ tasksListTasksForCompany(listTasksQuery: ListTasksQuery, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseTaskWithUser, any, {}>>;
6776
6612
  /**
6777
6613
  *
6778
6614
  * @summary List Tasks For User
6779
6615
  * @param {ListTasksQuery} listTasksQuery
6780
- * @param {string} [xAPIKey]
6781
6616
  * @param {*} [options] Override http request option.
6782
6617
  * @throws {RequiredError}
6783
6618
  * @memberof TasksApi
6784
6619
  */
6785
- tasksListTasksForUser(listTasksQuery: ListTasksQuery, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseTaskRead, any, {}>>;
6620
+ tasksListTasksForUser(listTasksQuery: ListTasksQuery, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginationResponseTaskRead, any, {}>>;
6786
6621
  /**
6787
6622
  *
6788
6623
  * @summary Request Task Scheduling
6789
6624
  * @param {SchedulerRequest} schedulerRequest
6790
- * @param {string} [xAPIKey]
6791
6625
  * @param {*} [options] Override http request option.
6792
6626
  * @throws {RequiredError}
6793
6627
  * @memberof TasksApi
6794
6628
  */
6795
- tasksScheduleTaskScheduling(schedulerRequest: SchedulerRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SchedulerResponse, any, {}>>;
6629
+ tasksScheduleTaskScheduling(schedulerRequest: SchedulerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SchedulerResponse, any, {}>>;
6796
6630
  /**
6797
6631
  *
6798
6632
  * @summary Update Task
6799
6633
  * @param {UpdateTaskSchema} updateTaskSchema
6800
- * @param {string} [xAPIKey]
6801
6634
  * @param {*} [options] Override http request option.
6802
6635
  * @throws {RequiredError}
6803
6636
  * @memberof TasksApi
6804
6637
  */
6805
- tasksUpdateTask(updateTaskSchema: UpdateTaskSchema, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskRead, any, {}>>;
6638
+ tasksUpdateTask(updateTaskSchema: UpdateTaskSchema, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskRead, any, {}>>;
6806
6639
  /**
6807
6640
  *
6808
6641
  * @summary Update Task Status
6809
6642
  * @param {UpdateTaskStatus} updateTaskStatus
6810
- * @param {string} [xAPIKey]
6811
6643
  * @param {*} [options] Override http request option.
6812
6644
  * @throws {RequiredError}
6813
6645
  * @memberof TasksApi
6814
6646
  */
6815
- tasksUpdateTaskStatus(updateTaskStatus: UpdateTaskStatus, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskRead, any, {}>>;
6647
+ tasksUpdateTaskStatus(updateTaskStatus: UpdateTaskStatus, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskRead, any, {}>>;
6816
6648
  }
6817
6649
  /**
6818
6650
  * VendorContactsApi - axios parameter creator
@@ -6824,41 +6656,37 @@ export declare const VendorContactsApiAxiosParamCreator: (configuration?: Config
6824
6656
  * @summary Create Contact
6825
6657
  * @param {string} vendorId
6826
6658
  * @param {ContactCreate} contactCreate
6827
- * @param {string} [xAPIKey]
6828
6659
  * @param {*} [options] Override http request option.
6829
6660
  * @throws {RequiredError}
6830
6661
  */
6831
- vendorCreateContacts: (vendorId: string, contactCreate: ContactCreate, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6662
+ vendorCreateContacts: (vendorId: string, contactCreate: ContactCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6832
6663
  /**
6833
6664
  * Delete vendor contact
6834
6665
  * @summary Delete Contact
6835
6666
  * @param {string} vendorId
6836
6667
  * @param {string} contactId
6837
- * @param {string} [xAPIKey]
6838
6668
  * @param {*} [options] Override http request option.
6839
6669
  * @throws {RequiredError}
6840
6670
  */
6841
- vendorDeleteContacts: (vendorId: string, contactId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6671
+ vendorDeleteContacts: (vendorId: string, contactId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6842
6672
  /**
6843
6673
  * List all contacts for vendor
6844
6674
  * @summary List Contacts
6845
6675
  * @param {string} vendorId
6846
- * @param {string} [xAPIKey]
6847
6676
  * @param {*} [options] Override http request option.
6848
6677
  * @throws {RequiredError}
6849
6678
  */
6850
- vendorListContacts: (vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6679
+ vendorListContacts: (vendorId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6851
6680
  /**
6852
6681
  * Update vendor contact
6853
6682
  * @summary Update Contact
6854
6683
  * @param {string} vendorId
6855
6684
  * @param {string} contactId
6856
6685
  * @param {ContactUpdate} contactUpdate
6857
- * @param {string} [xAPIKey]
6858
6686
  * @param {*} [options] Override http request option.
6859
6687
  * @throws {RequiredError}
6860
6688
  */
6861
- vendorUpdateContacts: (vendorId: string, contactId: string, contactUpdate: ContactUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6689
+ vendorUpdateContacts: (vendorId: string, contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6862
6690
  };
6863
6691
  /**
6864
6692
  * VendorContactsApi - functional programming interface
@@ -6870,41 +6698,37 @@ export declare const VendorContactsApiFp: (configuration?: Configuration) => {
6870
6698
  * @summary Create Contact
6871
6699
  * @param {string} vendorId
6872
6700
  * @param {ContactCreate} contactCreate
6873
- * @param {string} [xAPIKey]
6874
6701
  * @param {*} [options] Override http request option.
6875
6702
  * @throws {RequiredError}
6876
6703
  */
6877
- vendorCreateContacts(vendorId: string, contactCreate: ContactCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactResponse>>;
6704
+ vendorCreateContacts(vendorId: string, contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactResponse>>;
6878
6705
  /**
6879
6706
  * Delete vendor contact
6880
6707
  * @summary Delete Contact
6881
6708
  * @param {string} vendorId
6882
6709
  * @param {string} contactId
6883
- * @param {string} [xAPIKey]
6884
6710
  * @param {*} [options] Override http request option.
6885
6711
  * @throws {RequiredError}
6886
6712
  */
6887
- vendorDeleteContacts(vendorId: string, contactId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
6713
+ vendorDeleteContacts(vendorId: string, contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
6888
6714
  /**
6889
6715
  * List all contacts for vendor
6890
6716
  * @summary List Contacts
6891
6717
  * @param {string} vendorId
6892
- * @param {string} [xAPIKey]
6893
6718
  * @param {*} [options] Override http request option.
6894
6719
  * @throws {RequiredError}
6895
6720
  */
6896
- vendorListContacts(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ContactResponse>>>;
6721
+ vendorListContacts(vendorId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ContactResponse>>>;
6897
6722
  /**
6898
6723
  * Update vendor contact
6899
6724
  * @summary Update Contact
6900
6725
  * @param {string} vendorId
6901
6726
  * @param {string} contactId
6902
6727
  * @param {ContactUpdate} contactUpdate
6903
- * @param {string} [xAPIKey]
6904
6728
  * @param {*} [options] Override http request option.
6905
6729
  * @throws {RequiredError}
6906
6730
  */
6907
- vendorUpdateContacts(vendorId: string, contactId: string, contactUpdate: ContactUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactResponse>>;
6731
+ vendorUpdateContacts(vendorId: string, contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactResponse>>;
6908
6732
  };
6909
6733
  /**
6910
6734
  * VendorContactsApi - factory interface
@@ -6916,41 +6740,37 @@ export declare const VendorContactsApiFactory: (configuration?: Configuration, b
6916
6740
  * @summary Create Contact
6917
6741
  * @param {string} vendorId
6918
6742
  * @param {ContactCreate} contactCreate
6919
- * @param {string} [xAPIKey]
6920
6743
  * @param {*} [options] Override http request option.
6921
6744
  * @throws {RequiredError}
6922
6745
  */
6923
- vendorCreateContacts(vendorId: string, contactCreate: ContactCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<ContactResponse>;
6746
+ vendorCreateContacts(vendorId: string, contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<ContactResponse>;
6924
6747
  /**
6925
6748
  * Delete vendor contact
6926
6749
  * @summary Delete Contact
6927
6750
  * @param {string} vendorId
6928
6751
  * @param {string} contactId
6929
- * @param {string} [xAPIKey]
6930
6752
  * @param {*} [options] Override http request option.
6931
6753
  * @throws {RequiredError}
6932
6754
  */
6933
- vendorDeleteContacts(vendorId: string, contactId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<any>;
6755
+ vendorDeleteContacts(vendorId: string, contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<any>;
6934
6756
  /**
6935
6757
  * List all contacts for vendor
6936
6758
  * @summary List Contacts
6937
6759
  * @param {string} vendorId
6938
- * @param {string} [xAPIKey]
6939
6760
  * @param {*} [options] Override http request option.
6940
6761
  * @throws {RequiredError}
6941
6762
  */
6942
- vendorListContacts(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ContactResponse>>;
6763
+ vendorListContacts(vendorId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ContactResponse>>;
6943
6764
  /**
6944
6765
  * Update vendor contact
6945
6766
  * @summary Update Contact
6946
6767
  * @param {string} vendorId
6947
6768
  * @param {string} contactId
6948
6769
  * @param {ContactUpdate} contactUpdate
6949
- * @param {string} [xAPIKey]
6950
6770
  * @param {*} [options] Override http request option.
6951
6771
  * @throws {RequiredError}
6952
6772
  */
6953
- vendorUpdateContacts(vendorId: string, contactId: string, contactUpdate: ContactUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<ContactResponse>;
6773
+ vendorUpdateContacts(vendorId: string, contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ContactResponse>;
6954
6774
  };
6955
6775
  /**
6956
6776
  * VendorContactsApi - object-oriented interface
@@ -6964,45 +6784,41 @@ export declare class VendorContactsApi extends BaseAPI {
6964
6784
  * @summary Create Contact
6965
6785
  * @param {string} vendorId
6966
6786
  * @param {ContactCreate} contactCreate
6967
- * @param {string} [xAPIKey]
6968
6787
  * @param {*} [options] Override http request option.
6969
6788
  * @throws {RequiredError}
6970
6789
  * @memberof VendorContactsApi
6971
6790
  */
6972
- vendorCreateContacts(vendorId: string, contactCreate: ContactCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContactResponse, any, {}>>;
6791
+ vendorCreateContacts(vendorId: string, contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContactResponse, any, {}>>;
6973
6792
  /**
6974
6793
  * Delete vendor contact
6975
6794
  * @summary Delete Contact
6976
6795
  * @param {string} vendorId
6977
6796
  * @param {string} contactId
6978
- * @param {string} [xAPIKey]
6979
6797
  * @param {*} [options] Override http request option.
6980
6798
  * @throws {RequiredError}
6981
6799
  * @memberof VendorContactsApi
6982
6800
  */
6983
- vendorDeleteContacts(vendorId: string, contactId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
6801
+ vendorDeleteContacts(vendorId: string, contactId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
6984
6802
  /**
6985
6803
  * List all contacts for vendor
6986
6804
  * @summary List Contacts
6987
6805
  * @param {string} vendorId
6988
- * @param {string} [xAPIKey]
6989
6806
  * @param {*} [options] Override http request option.
6990
6807
  * @throws {RequiredError}
6991
6808
  * @memberof VendorContactsApi
6992
6809
  */
6993
- vendorListContacts(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContactResponse[], any, {}>>;
6810
+ vendorListContacts(vendorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContactResponse[], any, {}>>;
6994
6811
  /**
6995
6812
  * Update vendor contact
6996
6813
  * @summary Update Contact
6997
6814
  * @param {string} vendorId
6998
6815
  * @param {string} contactId
6999
6816
  * @param {ContactUpdate} contactUpdate
7000
- * @param {string} [xAPIKey]
7001
6817
  * @param {*} [options] Override http request option.
7002
6818
  * @throws {RequiredError}
7003
6819
  * @memberof VendorContactsApi
7004
6820
  */
7005
- vendorUpdateContacts(vendorId: string, contactId: string, contactUpdate: ContactUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContactResponse, any, {}>>;
6821
+ vendorUpdateContacts(vendorId: string, contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContactResponse, any, {}>>;
7006
6822
  }
7007
6823
  /**
7008
6824
  * VendorDocumentsApi - axios parameter creator
@@ -7014,100 +6830,90 @@ export declare const VendorDocumentsApiAxiosParamCreator: (configuration?: Confi
7014
6830
  * @summary Delete Document
7015
6831
  * @param {string} vendorId
7016
6832
  * @param {string} documentId
7017
- * @param {string} [xAPIKey]
7018
6833
  * @param {*} [options] Override http request option.
7019
6834
  * @throws {RequiredError}
7020
6835
  */
7021
- vendorDeleteDocuments: (vendorId: string, documentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6836
+ vendorDeleteDocuments: (vendorId: string, documentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7022
6837
  /**
7023
6838
  * Download document file
7024
6839
  * @summary Download Document
7025
6840
  * @param {string} vendorId
7026
6841
  * @param {string} documentId
7027
- * @param {string} [xAPIKey]
7028
6842
  * @param {*} [options] Override http request option.
7029
6843
  * @throws {RequiredError}
7030
6844
  */
7031
- vendorDownloadDocument: (vendorId: string, documentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6845
+ vendorDownloadDocument: (vendorId: string, documentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7032
6846
  /**
7033
6847
  * Get presigned PUT URL for Business Associate Agreement upload
7034
6848
  * @summary Get Baa Presigned Url
7035
6849
  * @param {string} vendorId
7036
6850
  * @param {FileUploadMetadata} fileUploadMetadata
7037
- * @param {string} [xAPIKey]
7038
6851
  * @param {*} [options] Override http request option.
7039
6852
  * @throws {RequiredError}
7040
6853
  */
7041
- vendorGetBaaPresignedUrl: (vendorId: string, fileUploadMetadata: FileUploadMetadata, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6854
+ vendorGetBaaPresignedUrl: (vendorId: string, fileUploadMetadata: FileUploadMetadata, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7042
6855
  /**
7043
6856
  * Get presigned PUT URL for compliance report upload
7044
6857
  * @summary Get Compliance Report Presigned Url
7045
6858
  * @param {string} vendorId
7046
6859
  * @param {FileUploadMetadata} fileUploadMetadata
7047
- * @param {string} [xAPIKey]
7048
6860
  * @param {*} [options] Override http request option.
7049
6861
  * @throws {RequiredError}
7050
6862
  */
7051
- vendorGetComplianceReportPresignedUrl: (vendorId: string, fileUploadMetadata: FileUploadMetadata, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6863
+ vendorGetComplianceReportPresignedUrl: (vendorId: string, fileUploadMetadata: FileUploadMetadata, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7052
6864
  /**
7053
6865
  * Get document details
7054
6866
  * @summary Get Document
7055
6867
  * @param {string} vendorId
7056
6868
  * @param {string} documentId
7057
- * @param {string} [xAPIKey]
7058
6869
  * @param {*} [options] Override http request option.
7059
6870
  * @throws {RequiredError}
7060
6871
  */
7061
- vendorGetDocuments: (vendorId: string, documentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6872
+ vendorGetDocuments: (vendorId: string, documentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7062
6873
  /**
7063
6874
  * Get presigned PUT URL for Data Privacy Agreement upload
7064
6875
  * @summary Get Dpa Presigned Url
7065
6876
  * @param {string} vendorId
7066
6877
  * @param {FileUploadMetadata} fileUploadMetadata
7067
- * @param {string} [xAPIKey]
7068
6878
  * @param {*} [options] Override http request option.
7069
6879
  * @throws {RequiredError}
7070
6880
  */
7071
- vendorGetDpaPresignedUrl: (vendorId: string, fileUploadMetadata: FileUploadMetadata, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6881
+ vendorGetDpaPresignedUrl: (vendorId: string, fileUploadMetadata: FileUploadMetadata, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7072
6882
  /**
7073
6883
  * List all documents for vendor
7074
6884
  * @summary List Documents
7075
6885
  * @param {string} vendorId
7076
- * @param {string} [xAPIKey]
7077
6886
  * @param {*} [options] Override http request option.
7078
6887
  * @throws {RequiredError}
7079
6888
  */
7080
- vendorListDocuments: (vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6889
+ vendorListDocuments: (vendorId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7081
6890
  /**
7082
6891
  * Confirm BAA upload after file has been uploaded to R2
7083
6892
  * @summary Confirm Baa Upload
7084
6893
  * @param {string} vendorId
7085
6894
  * @param {BaaDpaUploadConfirmRequest} baaDpaUploadConfirmRequest
7086
- * @param {string} [xAPIKey]
7087
6895
  * @param {*} [options] Override http request option.
7088
6896
  * @throws {RequiredError}
7089
6897
  */
7090
- vendorUploadConfirmBaa: (vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6898
+ vendorUploadConfirmBaa: (vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7091
6899
  /**
7092
6900
  * Confirm compliance report upload after file has been uploaded to R2
7093
6901
  * @summary Confirm Compliance Report Upload
7094
6902
  * @param {string} vendorId
7095
6903
  * @param {ComplianceReportUploadConfirmRequest} complianceReportUploadConfirmRequest
7096
- * @param {string} [xAPIKey]
7097
6904
  * @param {*} [options] Override http request option.
7098
6905
  * @throws {RequiredError}
7099
6906
  */
7100
- vendorUploadConfirmComplianceReport: (vendorId: string, complianceReportUploadConfirmRequest: ComplianceReportUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6907
+ vendorUploadConfirmComplianceReport: (vendorId: string, complianceReportUploadConfirmRequest: ComplianceReportUploadConfirmRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7101
6908
  /**
7102
6909
  * Confirm DPA upload after file has been uploaded to R2
7103
6910
  * @summary Confirm Dpa Upload
7104
6911
  * @param {string} vendorId
7105
6912
  * @param {BaaDpaUploadConfirmRequest} baaDpaUploadConfirmRequest
7106
- * @param {string} [xAPIKey]
7107
6913
  * @param {*} [options] Override http request option.
7108
6914
  * @throws {RequiredError}
7109
6915
  */
7110
- vendorUploadConfirmDpa: (vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6916
+ vendorUploadConfirmDpa: (vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7111
6917
  };
7112
6918
  /**
7113
6919
  * VendorDocumentsApi - functional programming interface
@@ -7119,100 +6925,90 @@ export declare const VendorDocumentsApiFp: (configuration?: Configuration) => {
7119
6925
  * @summary Delete Document
7120
6926
  * @param {string} vendorId
7121
6927
  * @param {string} documentId
7122
- * @param {string} [xAPIKey]
7123
6928
  * @param {*} [options] Override http request option.
7124
6929
  * @throws {RequiredError}
7125
6930
  */
7126
- vendorDeleteDocuments(vendorId: string, documentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
6931
+ vendorDeleteDocuments(vendorId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
7127
6932
  /**
7128
6933
  * Download document file
7129
6934
  * @summary Download Document
7130
6935
  * @param {string} vendorId
7131
6936
  * @param {string} documentId
7132
- * @param {string} [xAPIKey]
7133
6937
  * @param {*} [options] Override http request option.
7134
6938
  * @throws {RequiredError}
7135
6939
  */
7136
- vendorDownloadDocument(vendorId: string, documentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileDownload>>;
6940
+ vendorDownloadDocument(vendorId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileDownload>>;
7137
6941
  /**
7138
6942
  * Get presigned PUT URL for Business Associate Agreement upload
7139
6943
  * @summary Get Baa Presigned Url
7140
6944
  * @param {string} vendorId
7141
6945
  * @param {FileUploadMetadata} fileUploadMetadata
7142
- * @param {string} [xAPIKey]
7143
6946
  * @param {*} [options] Override http request option.
7144
6947
  * @throws {RequiredError}
7145
6948
  */
7146
- vendorGetBaaPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedUploadResponse>>;
6949
+ vendorGetBaaPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedUploadResponse>>;
7147
6950
  /**
7148
6951
  * Get presigned PUT URL for compliance report upload
7149
6952
  * @summary Get Compliance Report Presigned Url
7150
6953
  * @param {string} vendorId
7151
6954
  * @param {FileUploadMetadata} fileUploadMetadata
7152
- * @param {string} [xAPIKey]
7153
6955
  * @param {*} [options] Override http request option.
7154
6956
  * @throws {RequiredError}
7155
6957
  */
7156
- vendorGetComplianceReportPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedUploadResponse>>;
6958
+ vendorGetComplianceReportPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedUploadResponse>>;
7157
6959
  /**
7158
6960
  * Get document details
7159
6961
  * @summary Get Document
7160
6962
  * @param {string} vendorId
7161
6963
  * @param {string} documentId
7162
- * @param {string} [xAPIKey]
7163
6964
  * @param {*} [options] Override http request option.
7164
6965
  * @throws {RequiredError}
7165
6966
  */
7166
- vendorGetDocuments(vendorId: string, documentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DocumentResponse>>;
6967
+ vendorGetDocuments(vendorId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DocumentResponse>>;
7167
6968
  /**
7168
6969
  * Get presigned PUT URL for Data Privacy Agreement upload
7169
6970
  * @summary Get Dpa Presigned Url
7170
6971
  * @param {string} vendorId
7171
6972
  * @param {FileUploadMetadata} fileUploadMetadata
7172
- * @param {string} [xAPIKey]
7173
6973
  * @param {*} [options] Override http request option.
7174
6974
  * @throws {RequiredError}
7175
6975
  */
7176
- vendorGetDpaPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedUploadResponse>>;
6976
+ vendorGetDpaPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedUploadResponse>>;
7177
6977
  /**
7178
6978
  * List all documents for vendor
7179
6979
  * @summary List Documents
7180
6980
  * @param {string} vendorId
7181
- * @param {string} [xAPIKey]
7182
6981
  * @param {*} [options] Override http request option.
7183
6982
  * @throws {RequiredError}
7184
6983
  */
7185
- vendorListDocuments(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DocumentResponse>>>;
6984
+ vendorListDocuments(vendorId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DocumentResponse>>>;
7186
6985
  /**
7187
6986
  * Confirm BAA upload after file has been uploaded to R2
7188
6987
  * @summary Confirm Baa Upload
7189
6988
  * @param {string} vendorId
7190
6989
  * @param {BaaDpaUploadConfirmRequest} baaDpaUploadConfirmRequest
7191
- * @param {string} [xAPIKey]
7192
6990
  * @param {*} [options] Override http request option.
7193
6991
  * @throws {RequiredError}
7194
6992
  */
7195
- vendorUploadConfirmBaa(vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DocumentResponse>>;
6993
+ vendorUploadConfirmBaa(vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DocumentResponse>>;
7196
6994
  /**
7197
6995
  * Confirm compliance report upload after file has been uploaded to R2
7198
6996
  * @summary Confirm Compliance Report Upload
7199
6997
  * @param {string} vendorId
7200
6998
  * @param {ComplianceReportUploadConfirmRequest} complianceReportUploadConfirmRequest
7201
- * @param {string} [xAPIKey]
7202
6999
  * @param {*} [options] Override http request option.
7203
7000
  * @throws {RequiredError}
7204
7001
  */
7205
- vendorUploadConfirmComplianceReport(vendorId: string, complianceReportUploadConfirmRequest: ComplianceReportUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DocumentResponse>>;
7002
+ vendorUploadConfirmComplianceReport(vendorId: string, complianceReportUploadConfirmRequest: ComplianceReportUploadConfirmRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DocumentResponse>>;
7206
7003
  /**
7207
7004
  * Confirm DPA upload after file has been uploaded to R2
7208
7005
  * @summary Confirm Dpa Upload
7209
7006
  * @param {string} vendorId
7210
7007
  * @param {BaaDpaUploadConfirmRequest} baaDpaUploadConfirmRequest
7211
- * @param {string} [xAPIKey]
7212
7008
  * @param {*} [options] Override http request option.
7213
7009
  * @throws {RequiredError}
7214
7010
  */
7215
- vendorUploadConfirmDpa(vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DocumentResponse>>;
7011
+ vendorUploadConfirmDpa(vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DocumentResponse>>;
7216
7012
  };
7217
7013
  /**
7218
7014
  * VendorDocumentsApi - factory interface
@@ -7224,100 +7020,90 @@ export declare const VendorDocumentsApiFactory: (configuration?: Configuration,
7224
7020
  * @summary Delete Document
7225
7021
  * @param {string} vendorId
7226
7022
  * @param {string} documentId
7227
- * @param {string} [xAPIKey]
7228
7023
  * @param {*} [options] Override http request option.
7229
7024
  * @throws {RequiredError}
7230
7025
  */
7231
- vendorDeleteDocuments(vendorId: string, documentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<any>;
7026
+ vendorDeleteDocuments(vendorId: string, documentId: string, options?: RawAxiosRequestConfig): AxiosPromise<any>;
7232
7027
  /**
7233
7028
  * Download document file
7234
7029
  * @summary Download Document
7235
7030
  * @param {string} vendorId
7236
7031
  * @param {string} documentId
7237
- * @param {string} [xAPIKey]
7238
7032
  * @param {*} [options] Override http request option.
7239
7033
  * @throws {RequiredError}
7240
7034
  */
7241
- vendorDownloadDocument(vendorId: string, documentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<FileDownload>;
7035
+ vendorDownloadDocument(vendorId: string, documentId: string, options?: RawAxiosRequestConfig): AxiosPromise<FileDownload>;
7242
7036
  /**
7243
7037
  * Get presigned PUT URL for Business Associate Agreement upload
7244
7038
  * @summary Get Baa Presigned Url
7245
7039
  * @param {string} vendorId
7246
7040
  * @param {FileUploadMetadata} fileUploadMetadata
7247
- * @param {string} [xAPIKey]
7248
7041
  * @param {*} [options] Override http request option.
7249
7042
  * @throws {RequiredError}
7250
7043
  */
7251
- vendorGetBaaPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<PresignedUploadResponse>;
7044
+ vendorGetBaaPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, options?: RawAxiosRequestConfig): AxiosPromise<PresignedUploadResponse>;
7252
7045
  /**
7253
7046
  * Get presigned PUT URL for compliance report upload
7254
7047
  * @summary Get Compliance Report Presigned Url
7255
7048
  * @param {string} vendorId
7256
7049
  * @param {FileUploadMetadata} fileUploadMetadata
7257
- * @param {string} [xAPIKey]
7258
7050
  * @param {*} [options] Override http request option.
7259
7051
  * @throws {RequiredError}
7260
7052
  */
7261
- vendorGetComplianceReportPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<PresignedUploadResponse>;
7053
+ vendorGetComplianceReportPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, options?: RawAxiosRequestConfig): AxiosPromise<PresignedUploadResponse>;
7262
7054
  /**
7263
7055
  * Get document details
7264
7056
  * @summary Get Document
7265
7057
  * @param {string} vendorId
7266
7058
  * @param {string} documentId
7267
- * @param {string} [xAPIKey]
7268
7059
  * @param {*} [options] Override http request option.
7269
7060
  * @throws {RequiredError}
7270
7061
  */
7271
- vendorGetDocuments(vendorId: string, documentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<DocumentResponse>;
7062
+ vendorGetDocuments(vendorId: string, documentId: string, options?: RawAxiosRequestConfig): AxiosPromise<DocumentResponse>;
7272
7063
  /**
7273
7064
  * Get presigned PUT URL for Data Privacy Agreement upload
7274
7065
  * @summary Get Dpa Presigned Url
7275
7066
  * @param {string} vendorId
7276
7067
  * @param {FileUploadMetadata} fileUploadMetadata
7277
- * @param {string} [xAPIKey]
7278
7068
  * @param {*} [options] Override http request option.
7279
7069
  * @throws {RequiredError}
7280
7070
  */
7281
- vendorGetDpaPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<PresignedUploadResponse>;
7071
+ vendorGetDpaPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, options?: RawAxiosRequestConfig): AxiosPromise<PresignedUploadResponse>;
7282
7072
  /**
7283
7073
  * List all documents for vendor
7284
7074
  * @summary List Documents
7285
7075
  * @param {string} vendorId
7286
- * @param {string} [xAPIKey]
7287
7076
  * @param {*} [options] Override http request option.
7288
7077
  * @throws {RequiredError}
7289
7078
  */
7290
- vendorListDocuments(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<DocumentResponse>>;
7079
+ vendorListDocuments(vendorId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<DocumentResponse>>;
7291
7080
  /**
7292
7081
  * Confirm BAA upload after file has been uploaded to R2
7293
7082
  * @summary Confirm Baa Upload
7294
7083
  * @param {string} vendorId
7295
7084
  * @param {BaaDpaUploadConfirmRequest} baaDpaUploadConfirmRequest
7296
- * @param {string} [xAPIKey]
7297
7085
  * @param {*} [options] Override http request option.
7298
7086
  * @throws {RequiredError}
7299
7087
  */
7300
- vendorUploadConfirmBaa(vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<DocumentResponse>;
7088
+ vendorUploadConfirmBaa(vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, options?: RawAxiosRequestConfig): AxiosPromise<DocumentResponse>;
7301
7089
  /**
7302
7090
  * Confirm compliance report upload after file has been uploaded to R2
7303
7091
  * @summary Confirm Compliance Report Upload
7304
7092
  * @param {string} vendorId
7305
7093
  * @param {ComplianceReportUploadConfirmRequest} complianceReportUploadConfirmRequest
7306
- * @param {string} [xAPIKey]
7307
7094
  * @param {*} [options] Override http request option.
7308
7095
  * @throws {RequiredError}
7309
7096
  */
7310
- vendorUploadConfirmComplianceReport(vendorId: string, complianceReportUploadConfirmRequest: ComplianceReportUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<DocumentResponse>;
7097
+ vendorUploadConfirmComplianceReport(vendorId: string, complianceReportUploadConfirmRequest: ComplianceReportUploadConfirmRequest, options?: RawAxiosRequestConfig): AxiosPromise<DocumentResponse>;
7311
7098
  /**
7312
7099
  * Confirm DPA upload after file has been uploaded to R2
7313
7100
  * @summary Confirm Dpa Upload
7314
7101
  * @param {string} vendorId
7315
7102
  * @param {BaaDpaUploadConfirmRequest} baaDpaUploadConfirmRequest
7316
- * @param {string} [xAPIKey]
7317
7103
  * @param {*} [options] Override http request option.
7318
7104
  * @throws {RequiredError}
7319
7105
  */
7320
- vendorUploadConfirmDpa(vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<DocumentResponse>;
7106
+ vendorUploadConfirmDpa(vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, options?: RawAxiosRequestConfig): AxiosPromise<DocumentResponse>;
7321
7107
  };
7322
7108
  /**
7323
7109
  * VendorDocumentsApi - object-oriented interface
@@ -7331,110 +7117,100 @@ export declare class VendorDocumentsApi extends BaseAPI {
7331
7117
  * @summary Delete Document
7332
7118
  * @param {string} vendorId
7333
7119
  * @param {string} documentId
7334
- * @param {string} [xAPIKey]
7335
7120
  * @param {*} [options] Override http request option.
7336
7121
  * @throws {RequiredError}
7337
7122
  * @memberof VendorDocumentsApi
7338
7123
  */
7339
- vendorDeleteDocuments(vendorId: string, documentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
7124
+ vendorDeleteDocuments(vendorId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
7340
7125
  /**
7341
7126
  * Download document file
7342
7127
  * @summary Download Document
7343
7128
  * @param {string} vendorId
7344
7129
  * @param {string} documentId
7345
- * @param {string} [xAPIKey]
7346
7130
  * @param {*} [options] Override http request option.
7347
7131
  * @throws {RequiredError}
7348
7132
  * @memberof VendorDocumentsApi
7349
7133
  */
7350
- vendorDownloadDocument(vendorId: string, documentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileDownload, any, {}>>;
7134
+ vendorDownloadDocument(vendorId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileDownload, any, {}>>;
7351
7135
  /**
7352
7136
  * Get presigned PUT URL for Business Associate Agreement upload
7353
7137
  * @summary Get Baa Presigned Url
7354
7138
  * @param {string} vendorId
7355
7139
  * @param {FileUploadMetadata} fileUploadMetadata
7356
- * @param {string} [xAPIKey]
7357
7140
  * @param {*} [options] Override http request option.
7358
7141
  * @throws {RequiredError}
7359
7142
  * @memberof VendorDocumentsApi
7360
7143
  */
7361
- vendorGetBaaPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedUploadResponse, any, {}>>;
7144
+ vendorGetBaaPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedUploadResponse, any, {}>>;
7362
7145
  /**
7363
7146
  * Get presigned PUT URL for compliance report upload
7364
7147
  * @summary Get Compliance Report Presigned Url
7365
7148
  * @param {string} vendorId
7366
7149
  * @param {FileUploadMetadata} fileUploadMetadata
7367
- * @param {string} [xAPIKey]
7368
7150
  * @param {*} [options] Override http request option.
7369
7151
  * @throws {RequiredError}
7370
7152
  * @memberof VendorDocumentsApi
7371
7153
  */
7372
- vendorGetComplianceReportPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedUploadResponse, any, {}>>;
7154
+ vendorGetComplianceReportPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedUploadResponse, any, {}>>;
7373
7155
  /**
7374
7156
  * Get document details
7375
7157
  * @summary Get Document
7376
7158
  * @param {string} vendorId
7377
7159
  * @param {string} documentId
7378
- * @param {string} [xAPIKey]
7379
7160
  * @param {*} [options] Override http request option.
7380
7161
  * @throws {RequiredError}
7381
7162
  * @memberof VendorDocumentsApi
7382
7163
  */
7383
- vendorGetDocuments(vendorId: string, documentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DocumentResponse, any, {}>>;
7164
+ vendorGetDocuments(vendorId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DocumentResponse, any, {}>>;
7384
7165
  /**
7385
7166
  * Get presigned PUT URL for Data Privacy Agreement upload
7386
7167
  * @summary Get Dpa Presigned Url
7387
7168
  * @param {string} vendorId
7388
7169
  * @param {FileUploadMetadata} fileUploadMetadata
7389
- * @param {string} [xAPIKey]
7390
7170
  * @param {*} [options] Override http request option.
7391
7171
  * @throws {RequiredError}
7392
7172
  * @memberof VendorDocumentsApi
7393
7173
  */
7394
- vendorGetDpaPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedUploadResponse, any, {}>>;
7174
+ vendorGetDpaPresignedUrl(vendorId: string, fileUploadMetadata: FileUploadMetadata, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedUploadResponse, any, {}>>;
7395
7175
  /**
7396
7176
  * List all documents for vendor
7397
7177
  * @summary List Documents
7398
7178
  * @param {string} vendorId
7399
- * @param {string} [xAPIKey]
7400
7179
  * @param {*} [options] Override http request option.
7401
7180
  * @throws {RequiredError}
7402
7181
  * @memberof VendorDocumentsApi
7403
7182
  */
7404
- vendorListDocuments(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DocumentResponse[], any, {}>>;
7183
+ vendorListDocuments(vendorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DocumentResponse[], any, {}>>;
7405
7184
  /**
7406
7185
  * Confirm BAA upload after file has been uploaded to R2
7407
7186
  * @summary Confirm Baa Upload
7408
7187
  * @param {string} vendorId
7409
7188
  * @param {BaaDpaUploadConfirmRequest} baaDpaUploadConfirmRequest
7410
- * @param {string} [xAPIKey]
7411
7189
  * @param {*} [options] Override http request option.
7412
7190
  * @throws {RequiredError}
7413
7191
  * @memberof VendorDocumentsApi
7414
7192
  */
7415
- vendorUploadConfirmBaa(vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DocumentResponse, any, {}>>;
7193
+ vendorUploadConfirmBaa(vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DocumentResponse, any, {}>>;
7416
7194
  /**
7417
7195
  * Confirm compliance report upload after file has been uploaded to R2
7418
7196
  * @summary Confirm Compliance Report Upload
7419
7197
  * @param {string} vendorId
7420
7198
  * @param {ComplianceReportUploadConfirmRequest} complianceReportUploadConfirmRequest
7421
- * @param {string} [xAPIKey]
7422
7199
  * @param {*} [options] Override http request option.
7423
7200
  * @throws {RequiredError}
7424
7201
  * @memberof VendorDocumentsApi
7425
7202
  */
7426
- vendorUploadConfirmComplianceReport(vendorId: string, complianceReportUploadConfirmRequest: ComplianceReportUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DocumentResponse, any, {}>>;
7203
+ vendorUploadConfirmComplianceReport(vendorId: string, complianceReportUploadConfirmRequest: ComplianceReportUploadConfirmRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DocumentResponse, any, {}>>;
7427
7204
  /**
7428
7205
  * Confirm DPA upload after file has been uploaded to R2
7429
7206
  * @summary Confirm Dpa Upload
7430
7207
  * @param {string} vendorId
7431
7208
  * @param {BaaDpaUploadConfirmRequest} baaDpaUploadConfirmRequest
7432
- * @param {string} [xAPIKey]
7433
7209
  * @param {*} [options] Override http request option.
7434
7210
  * @throws {RequiredError}
7435
7211
  * @memberof VendorDocumentsApi
7436
7212
  */
7437
- vendorUploadConfirmDpa(vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DocumentResponse, any, {}>>;
7213
+ vendorUploadConfirmDpa(vendorId: string, baaDpaUploadConfirmRequest: BaaDpaUploadConfirmRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DocumentResponse, any, {}>>;
7438
7214
  }
7439
7215
  /**
7440
7216
  * VendorRiskAssessmentsApi - axios parameter creator
@@ -7446,50 +7222,45 @@ export declare const VendorRiskAssessmentsApiAxiosParamCreator: (configuration?:
7446
7222
  * @summary Create Risk Assessment
7447
7223
  * @param {string} vendorId
7448
7224
  * @param {RiskAssessmentCreate} riskAssessmentCreate
7449
- * @param {string} [xAPIKey]
7450
7225
  * @param {*} [options] Override http request option.
7451
7226
  * @throws {RequiredError}
7452
7227
  */
7453
- vendorCreateRiskAssessment: (vendorId: string, riskAssessmentCreate: RiskAssessmentCreate, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7228
+ vendorCreateRiskAssessment: (vendorId: string, riskAssessmentCreate: RiskAssessmentCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7454
7229
  /**
7455
7230
  * Delete risk assessment
7456
7231
  * @summary Delete Risk Assessment
7457
7232
  * @param {string} vendorId
7458
7233
  * @param {string} assessmentId
7459
- * @param {string} [xAPIKey]
7460
7234
  * @param {*} [options] Override http request option.
7461
7235
  * @throws {RequiredError}
7462
7236
  */
7463
- vendorDeleteRiskAssessment: (vendorId: string, assessmentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7237
+ vendorDeleteRiskAssessment: (vendorId: string, assessmentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7464
7238
  /**
7465
7239
  * Get latest risk assessment for vendor
7466
7240
  * @summary Get Latest Risk Assessment
7467
7241
  * @param {string} vendorId
7468
- * @param {string} [xAPIKey]
7469
7242
  * @param {*} [options] Override http request option.
7470
7243
  * @throws {RequiredError}
7471
7244
  */
7472
- vendorGetLatestRiskAssessment: (vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7245
+ vendorGetLatestRiskAssessment: (vendorId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7473
7246
  /**
7474
7247
  * List all risk assessments for vendor
7475
7248
  * @summary List Risk Assessments
7476
7249
  * @param {string} vendorId
7477
- * @param {string} [xAPIKey]
7478
7250
  * @param {*} [options] Override http request option.
7479
7251
  * @throws {RequiredError}
7480
7252
  */
7481
- vendorListRiskAssessments: (vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7253
+ vendorListRiskAssessments: (vendorId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7482
7254
  /**
7483
7255
  * Update risk assessment
7484
7256
  * @summary Update Risk Assessment
7485
7257
  * @param {string} vendorId
7486
7258
  * @param {string} assessmentId
7487
7259
  * @param {RiskAssessmentUpdate} riskAssessmentUpdate
7488
- * @param {string} [xAPIKey]
7489
7260
  * @param {*} [options] Override http request option.
7490
7261
  * @throws {RequiredError}
7491
7262
  */
7492
- vendorUpdateRiskAssessment: (vendorId: string, assessmentId: string, riskAssessmentUpdate: RiskAssessmentUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7263
+ vendorUpdateRiskAssessment: (vendorId: string, assessmentId: string, riskAssessmentUpdate: RiskAssessmentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7493
7264
  };
7494
7265
  /**
7495
7266
  * VendorRiskAssessmentsApi - functional programming interface
@@ -7501,50 +7272,45 @@ export declare const VendorRiskAssessmentsApiFp: (configuration?: Configuration)
7501
7272
  * @summary Create Risk Assessment
7502
7273
  * @param {string} vendorId
7503
7274
  * @param {RiskAssessmentCreate} riskAssessmentCreate
7504
- * @param {string} [xAPIKey]
7505
7275
  * @param {*} [options] Override http request option.
7506
7276
  * @throws {RequiredError}
7507
7277
  */
7508
- vendorCreateRiskAssessment(vendorId: string, riskAssessmentCreate: RiskAssessmentCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RiskAssessmentResponse>>;
7278
+ vendorCreateRiskAssessment(vendorId: string, riskAssessmentCreate: RiskAssessmentCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RiskAssessmentResponse>>;
7509
7279
  /**
7510
7280
  * Delete risk assessment
7511
7281
  * @summary Delete Risk Assessment
7512
7282
  * @param {string} vendorId
7513
7283
  * @param {string} assessmentId
7514
- * @param {string} [xAPIKey]
7515
7284
  * @param {*} [options] Override http request option.
7516
7285
  * @throws {RequiredError}
7517
7286
  */
7518
- vendorDeleteRiskAssessment(vendorId: string, assessmentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
7287
+ vendorDeleteRiskAssessment(vendorId: string, assessmentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
7519
7288
  /**
7520
7289
  * Get latest risk assessment for vendor
7521
7290
  * @summary Get Latest Risk Assessment
7522
7291
  * @param {string} vendorId
7523
- * @param {string} [xAPIKey]
7524
7292
  * @param {*} [options] Override http request option.
7525
7293
  * @throws {RequiredError}
7526
7294
  */
7527
- vendorGetLatestRiskAssessment(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RiskAssessmentResponse>>;
7295
+ vendorGetLatestRiskAssessment(vendorId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RiskAssessmentResponse>>;
7528
7296
  /**
7529
7297
  * List all risk assessments for vendor
7530
7298
  * @summary List Risk Assessments
7531
7299
  * @param {string} vendorId
7532
- * @param {string} [xAPIKey]
7533
7300
  * @param {*} [options] Override http request option.
7534
7301
  * @throws {RequiredError}
7535
7302
  */
7536
- vendorListRiskAssessments(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RiskAssessmentResponse>>>;
7303
+ vendorListRiskAssessments(vendorId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RiskAssessmentResponse>>>;
7537
7304
  /**
7538
7305
  * Update risk assessment
7539
7306
  * @summary Update Risk Assessment
7540
7307
  * @param {string} vendorId
7541
7308
  * @param {string} assessmentId
7542
7309
  * @param {RiskAssessmentUpdate} riskAssessmentUpdate
7543
- * @param {string} [xAPIKey]
7544
7310
  * @param {*} [options] Override http request option.
7545
7311
  * @throws {RequiredError}
7546
7312
  */
7547
- vendorUpdateRiskAssessment(vendorId: string, assessmentId: string, riskAssessmentUpdate: RiskAssessmentUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RiskAssessmentResponse>>;
7313
+ vendorUpdateRiskAssessment(vendorId: string, assessmentId: string, riskAssessmentUpdate: RiskAssessmentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RiskAssessmentResponse>>;
7548
7314
  };
7549
7315
  /**
7550
7316
  * VendorRiskAssessmentsApi - factory interface
@@ -7556,50 +7322,45 @@ export declare const VendorRiskAssessmentsApiFactory: (configuration?: Configura
7556
7322
  * @summary Create Risk Assessment
7557
7323
  * @param {string} vendorId
7558
7324
  * @param {RiskAssessmentCreate} riskAssessmentCreate
7559
- * @param {string} [xAPIKey]
7560
7325
  * @param {*} [options] Override http request option.
7561
7326
  * @throws {RequiredError}
7562
7327
  */
7563
- vendorCreateRiskAssessment(vendorId: string, riskAssessmentCreate: RiskAssessmentCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<RiskAssessmentResponse>;
7328
+ vendorCreateRiskAssessment(vendorId: string, riskAssessmentCreate: RiskAssessmentCreate, options?: RawAxiosRequestConfig): AxiosPromise<RiskAssessmentResponse>;
7564
7329
  /**
7565
7330
  * Delete risk assessment
7566
7331
  * @summary Delete Risk Assessment
7567
7332
  * @param {string} vendorId
7568
7333
  * @param {string} assessmentId
7569
- * @param {string} [xAPIKey]
7570
7334
  * @param {*} [options] Override http request option.
7571
7335
  * @throws {RequiredError}
7572
7336
  */
7573
- vendorDeleteRiskAssessment(vendorId: string, assessmentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<any>;
7337
+ vendorDeleteRiskAssessment(vendorId: string, assessmentId: string, options?: RawAxiosRequestConfig): AxiosPromise<any>;
7574
7338
  /**
7575
7339
  * Get latest risk assessment for vendor
7576
7340
  * @summary Get Latest Risk Assessment
7577
7341
  * @param {string} vendorId
7578
- * @param {string} [xAPIKey]
7579
7342
  * @param {*} [options] Override http request option.
7580
7343
  * @throws {RequiredError}
7581
7344
  */
7582
- vendorGetLatestRiskAssessment(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<RiskAssessmentResponse>;
7345
+ vendorGetLatestRiskAssessment(vendorId: string, options?: RawAxiosRequestConfig): AxiosPromise<RiskAssessmentResponse>;
7583
7346
  /**
7584
7347
  * List all risk assessments for vendor
7585
7348
  * @summary List Risk Assessments
7586
7349
  * @param {string} vendorId
7587
- * @param {string} [xAPIKey]
7588
7350
  * @param {*} [options] Override http request option.
7589
7351
  * @throws {RequiredError}
7590
7352
  */
7591
- vendorListRiskAssessments(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<RiskAssessmentResponse>>;
7353
+ vendorListRiskAssessments(vendorId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<RiskAssessmentResponse>>;
7592
7354
  /**
7593
7355
  * Update risk assessment
7594
7356
  * @summary Update Risk Assessment
7595
7357
  * @param {string} vendorId
7596
7358
  * @param {string} assessmentId
7597
7359
  * @param {RiskAssessmentUpdate} riskAssessmentUpdate
7598
- * @param {string} [xAPIKey]
7599
7360
  * @param {*} [options] Override http request option.
7600
7361
  * @throws {RequiredError}
7601
7362
  */
7602
- vendorUpdateRiskAssessment(vendorId: string, assessmentId: string, riskAssessmentUpdate: RiskAssessmentUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<RiskAssessmentResponse>;
7363
+ vendorUpdateRiskAssessment(vendorId: string, assessmentId: string, riskAssessmentUpdate: RiskAssessmentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<RiskAssessmentResponse>;
7603
7364
  };
7604
7365
  /**
7605
7366
  * VendorRiskAssessmentsApi - object-oriented interface
@@ -7613,55 +7374,50 @@ export declare class VendorRiskAssessmentsApi extends BaseAPI {
7613
7374
  * @summary Create Risk Assessment
7614
7375
  * @param {string} vendorId
7615
7376
  * @param {RiskAssessmentCreate} riskAssessmentCreate
7616
- * @param {string} [xAPIKey]
7617
7377
  * @param {*} [options] Override http request option.
7618
7378
  * @throws {RequiredError}
7619
7379
  * @memberof VendorRiskAssessmentsApi
7620
7380
  */
7621
- vendorCreateRiskAssessment(vendorId: string, riskAssessmentCreate: RiskAssessmentCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskAssessmentResponse, any, {}>>;
7381
+ vendorCreateRiskAssessment(vendorId: string, riskAssessmentCreate: RiskAssessmentCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskAssessmentResponse, any, {}>>;
7622
7382
  /**
7623
7383
  * Delete risk assessment
7624
7384
  * @summary Delete Risk Assessment
7625
7385
  * @param {string} vendorId
7626
7386
  * @param {string} assessmentId
7627
- * @param {string} [xAPIKey]
7628
7387
  * @param {*} [options] Override http request option.
7629
7388
  * @throws {RequiredError}
7630
7389
  * @memberof VendorRiskAssessmentsApi
7631
7390
  */
7632
- vendorDeleteRiskAssessment(vendorId: string, assessmentId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
7391
+ vendorDeleteRiskAssessment(vendorId: string, assessmentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
7633
7392
  /**
7634
7393
  * Get latest risk assessment for vendor
7635
7394
  * @summary Get Latest Risk Assessment
7636
7395
  * @param {string} vendorId
7637
- * @param {string} [xAPIKey]
7638
7396
  * @param {*} [options] Override http request option.
7639
7397
  * @throws {RequiredError}
7640
7398
  * @memberof VendorRiskAssessmentsApi
7641
7399
  */
7642
- vendorGetLatestRiskAssessment(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskAssessmentResponse, any, {}>>;
7400
+ vendorGetLatestRiskAssessment(vendorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskAssessmentResponse, any, {}>>;
7643
7401
  /**
7644
7402
  * List all risk assessments for vendor
7645
7403
  * @summary List Risk Assessments
7646
7404
  * @param {string} vendorId
7647
- * @param {string} [xAPIKey]
7648
7405
  * @param {*} [options] Override http request option.
7649
7406
  * @throws {RequiredError}
7650
7407
  * @memberof VendorRiskAssessmentsApi
7651
7408
  */
7652
- vendorListRiskAssessments(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskAssessmentResponse[], any, {}>>;
7409
+ vendorListRiskAssessments(vendorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskAssessmentResponse[], any, {}>>;
7653
7410
  /**
7654
7411
  * Update risk assessment
7655
7412
  * @summary Update Risk Assessment
7656
7413
  * @param {string} vendorId
7657
7414
  * @param {string} assessmentId
7658
7415
  * @param {RiskAssessmentUpdate} riskAssessmentUpdate
7659
- * @param {string} [xAPIKey]
7660
7416
  * @param {*} [options] Override http request option.
7661
7417
  * @throws {RequiredError}
7662
7418
  * @memberof VendorRiskAssessmentsApi
7663
7419
  */
7664
- vendorUpdateRiskAssessment(vendorId: string, assessmentId: string, riskAssessmentUpdate: RiskAssessmentUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskAssessmentResponse, any, {}>>;
7420
+ vendorUpdateRiskAssessment(vendorId: string, assessmentId: string, riskAssessmentUpdate: RiskAssessmentUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RiskAssessmentResponse, any, {}>>;
7665
7421
  }
7666
7422
  /**
7667
7423
  * VendorsApi - axios parameter creator
@@ -7673,85 +7429,76 @@ export declare const VendorsApiAxiosParamCreator: (configuration?: Configuration
7673
7429
  * @summary Add Certification
7674
7430
  * @param {string} vendorId
7675
7431
  * @param {VendorCertificationCreate} vendorCertificationCreate
7676
- * @param {string} [xAPIKey]
7677
7432
  * @param {*} [options] Override http request option.
7678
7433
  * @throws {RequiredError}
7679
7434
  */
7680
- vendorAddCertifications: (vendorId: string, vendorCertificationCreate: VendorCertificationCreate, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7435
+ vendorAddCertifications: (vendorId: string, vendorCertificationCreate: VendorCertificationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7681
7436
  /**
7682
7437
  * Create vendor (from template or custom)
7683
7438
  * @summary Create Vendor
7684
7439
  * @param {VendorCreate} vendorCreate
7685
- * @param {string} [xAPIKey]
7686
7440
  * @param {*} [options] Override http request option.
7687
7441
  * @throws {RequiredError}
7688
7442
  */
7689
- vendorCreateVendor: (vendorCreate: VendorCreate, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7443
+ vendorCreateVendor: (vendorCreate: VendorCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7690
7444
  /**
7691
7445
  * Delete vendor and all related records
7692
7446
  * @summary Delete Vendor
7693
7447
  * @param {string} vendorId
7694
- * @param {string} [xAPIKey]
7695
7448
  * @param {*} [options] Override http request option.
7696
7449
  * @throws {RequiredError}
7697
7450
  */
7698
- vendorDeleteVendor: (vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7451
+ vendorDeleteVendor: (vendorId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7699
7452
  /**
7700
7453
  * Get vendor details
7701
7454
  * @summary Get Vendor
7702
7455
  * @param {string} vendorId
7703
- * @param {string} [xAPIKey]
7704
7456
  * @param {*} [options] Override http request option.
7705
7457
  * @throws {RequiredError}
7706
7458
  */
7707
- vendorGetVendor: (vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7459
+ vendorGetVendor: (vendorId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7708
7460
  /**
7709
7461
  * Get vendor with all related data (risks, contacts, documents, assets)
7710
7462
  * @summary Get Vendor Details
7711
7463
  * @param {string} vendorId
7712
- * @param {string} [xAPIKey]
7713
7464
  * @param {*} [options] Override http request option.
7714
7465
  * @throws {RequiredError}
7715
7466
  */
7716
- vendorGetVendorDetails: (vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7467
+ vendorGetVendorDetails: (vendorId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7717
7468
  /**
7718
7469
  * Get available vendor templates
7719
7470
  * @summary Get Vendor Templates
7720
- * @param {string} [xAPIKey]
7721
7471
  * @param {*} [options] Override http request option.
7722
7472
  * @throws {RequiredError}
7723
7473
  */
7724
- vendorGetVendorTemplates: (xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7474
+ vendorGetVendorTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7725
7475
  /**
7726
7476
  * List vendors for a company
7727
7477
  * @summary List Vendors
7728
7478
  * @param {number} [page]
7729
7479
  * @param {number} [limit]
7730
- * @param {string} [xAPIKey]
7731
7480
  * @param {*} [options] Override http request option.
7732
7481
  * @throws {RequiredError}
7733
7482
  */
7734
- vendorListVendors: (page?: number, limit?: number, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7483
+ vendorListVendors: (page?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7735
7484
  /**
7736
7485
  * Remove certification from vendor
7737
7486
  * @summary Remove Certification
7738
7487
  * @param {string} vendorId
7739
7488
  * @param {number} certificationId
7740
- * @param {string} [xAPIKey]
7741
7489
  * @param {*} [options] Override http request option.
7742
7490
  * @throws {RequiredError}
7743
7491
  */
7744
- vendorRemoveCertifications: (vendorId: string, certificationId: number, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7492
+ vendorRemoveCertifications: (vendorId: string, certificationId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7745
7493
  /**
7746
7494
  * Update vendor
7747
7495
  * @summary Update Vendor
7748
7496
  * @param {string} vendorId
7749
7497
  * @param {VendorUpdate} vendorUpdate
7750
- * @param {string} [xAPIKey]
7751
7498
  * @param {*} [options] Override http request option.
7752
7499
  * @throws {RequiredError}
7753
7500
  */
7754
- vendorUpdateVendor: (vendorId: string, vendorUpdate: VendorUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7501
+ vendorUpdateVendor: (vendorId: string, vendorUpdate: VendorUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7755
7502
  };
7756
7503
  /**
7757
7504
  * VendorsApi - functional programming interface
@@ -7763,57 +7510,51 @@ export declare const VendorsApiFp: (configuration?: Configuration) => {
7763
7510
  * @summary Add Certification
7764
7511
  * @param {string} vendorId
7765
7512
  * @param {VendorCertificationCreate} vendorCertificationCreate
7766
- * @param {string} [xAPIKey]
7767
7513
  * @param {*} [options] Override http request option.
7768
7514
  * @throws {RequiredError}
7769
7515
  */
7770
- vendorAddCertifications(vendorId: string, vendorCertificationCreate: VendorCertificationCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
7516
+ vendorAddCertifications(vendorId: string, vendorCertificationCreate: VendorCertificationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
7771
7517
  [key: string]: any;
7772
7518
  }>>;
7773
7519
  /**
7774
7520
  * Create vendor (from template or custom)
7775
7521
  * @summary Create Vendor
7776
7522
  * @param {VendorCreate} vendorCreate
7777
- * @param {string} [xAPIKey]
7778
7523
  * @param {*} [options] Override http request option.
7779
7524
  * @throws {RequiredError}
7780
7525
  */
7781
- vendorCreateVendor(vendorCreate: VendorCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorResponse>>;
7526
+ vendorCreateVendor(vendorCreate: VendorCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorResponse>>;
7782
7527
  /**
7783
7528
  * Delete vendor and all related records
7784
7529
  * @summary Delete Vendor
7785
7530
  * @param {string} vendorId
7786
- * @param {string} [xAPIKey]
7787
7531
  * @param {*} [options] Override http request option.
7788
7532
  * @throws {RequiredError}
7789
7533
  */
7790
- vendorDeleteVendor(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
7534
+ vendorDeleteVendor(vendorId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
7791
7535
  /**
7792
7536
  * Get vendor details
7793
7537
  * @summary Get Vendor
7794
7538
  * @param {string} vendorId
7795
- * @param {string} [xAPIKey]
7796
7539
  * @param {*} [options] Override http request option.
7797
7540
  * @throws {RequiredError}
7798
7541
  */
7799
- vendorGetVendor(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorResponse>>;
7542
+ vendorGetVendor(vendorId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorResponse>>;
7800
7543
  /**
7801
7544
  * Get vendor with all related data (risks, contacts, documents, assets)
7802
7545
  * @summary Get Vendor Details
7803
7546
  * @param {string} vendorId
7804
- * @param {string} [xAPIKey]
7805
7547
  * @param {*} [options] Override http request option.
7806
7548
  * @throws {RequiredError}
7807
7549
  */
7808
- vendorGetVendorDetails(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorWithRelationships>>;
7550
+ vendorGetVendorDetails(vendorId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorWithRelationships>>;
7809
7551
  /**
7810
7552
  * Get available vendor templates
7811
7553
  * @summary Get Vendor Templates
7812
- * @param {string} [xAPIKey]
7813
7554
  * @param {*} [options] Override http request option.
7814
7555
  * @throws {RequiredError}
7815
7556
  */
7816
- vendorGetVendorTemplates(xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<{
7557
+ vendorGetVendorTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<{
7817
7558
  [key: string]: any;
7818
7559
  }>>>;
7819
7560
  /**
@@ -7821,31 +7562,28 @@ export declare const VendorsApiFp: (configuration?: Configuration) => {
7821
7562
  * @summary List Vendors
7822
7563
  * @param {number} [page]
7823
7564
  * @param {number} [limit]
7824
- * @param {string} [xAPIKey]
7825
7565
  * @param {*} [options] Override http request option.
7826
7566
  * @throws {RequiredError}
7827
7567
  */
7828
- vendorListVendors(page?: number, limit?: number, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorListResponse>>;
7568
+ vendorListVendors(page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorListResponse>>;
7829
7569
  /**
7830
7570
  * Remove certification from vendor
7831
7571
  * @summary Remove Certification
7832
7572
  * @param {string} vendorId
7833
7573
  * @param {number} certificationId
7834
- * @param {string} [xAPIKey]
7835
7574
  * @param {*} [options] Override http request option.
7836
7575
  * @throws {RequiredError}
7837
7576
  */
7838
- vendorRemoveCertifications(vendorId: string, certificationId: number, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
7577
+ vendorRemoveCertifications(vendorId: string, certificationId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
7839
7578
  /**
7840
7579
  * Update vendor
7841
7580
  * @summary Update Vendor
7842
7581
  * @param {string} vendorId
7843
7582
  * @param {VendorUpdate} vendorUpdate
7844
- * @param {string} [xAPIKey]
7845
7583
  * @param {*} [options] Override http request option.
7846
7584
  * @throws {RequiredError}
7847
7585
  */
7848
- vendorUpdateVendor(vendorId: string, vendorUpdate: VendorUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorResponse>>;
7586
+ vendorUpdateVendor(vendorId: string, vendorUpdate: VendorUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorResponse>>;
7849
7587
  };
7850
7588
  /**
7851
7589
  * VendorsApi - factory interface
@@ -7857,57 +7595,51 @@ export declare const VendorsApiFactory: (configuration?: Configuration, basePath
7857
7595
  * @summary Add Certification
7858
7596
  * @param {string} vendorId
7859
7597
  * @param {VendorCertificationCreate} vendorCertificationCreate
7860
- * @param {string} [xAPIKey]
7861
7598
  * @param {*} [options] Override http request option.
7862
7599
  * @throws {RequiredError}
7863
7600
  */
7864
- vendorAddCertifications(vendorId: string, vendorCertificationCreate: VendorCertificationCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<{
7601
+ vendorAddCertifications(vendorId: string, vendorCertificationCreate: VendorCertificationCreate, options?: RawAxiosRequestConfig): AxiosPromise<{
7865
7602
  [key: string]: any;
7866
7603
  }>;
7867
7604
  /**
7868
7605
  * Create vendor (from template or custom)
7869
7606
  * @summary Create Vendor
7870
7607
  * @param {VendorCreate} vendorCreate
7871
- * @param {string} [xAPIKey]
7872
7608
  * @param {*} [options] Override http request option.
7873
7609
  * @throws {RequiredError}
7874
7610
  */
7875
- vendorCreateVendor(vendorCreate: VendorCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<VendorResponse>;
7611
+ vendorCreateVendor(vendorCreate: VendorCreate, options?: RawAxiosRequestConfig): AxiosPromise<VendorResponse>;
7876
7612
  /**
7877
7613
  * Delete vendor and all related records
7878
7614
  * @summary Delete Vendor
7879
7615
  * @param {string} vendorId
7880
- * @param {string} [xAPIKey]
7881
7616
  * @param {*} [options] Override http request option.
7882
7617
  * @throws {RequiredError}
7883
7618
  */
7884
- vendorDeleteVendor(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<any>;
7619
+ vendorDeleteVendor(vendorId: string, options?: RawAxiosRequestConfig): AxiosPromise<any>;
7885
7620
  /**
7886
7621
  * Get vendor details
7887
7622
  * @summary Get Vendor
7888
7623
  * @param {string} vendorId
7889
- * @param {string} [xAPIKey]
7890
7624
  * @param {*} [options] Override http request option.
7891
7625
  * @throws {RequiredError}
7892
7626
  */
7893
- vendorGetVendor(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<VendorResponse>;
7627
+ vendorGetVendor(vendorId: string, options?: RawAxiosRequestConfig): AxiosPromise<VendorResponse>;
7894
7628
  /**
7895
7629
  * Get vendor with all related data (risks, contacts, documents, assets)
7896
7630
  * @summary Get Vendor Details
7897
7631
  * @param {string} vendorId
7898
- * @param {string} [xAPIKey]
7899
7632
  * @param {*} [options] Override http request option.
7900
7633
  * @throws {RequiredError}
7901
7634
  */
7902
- vendorGetVendorDetails(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<VendorWithRelationships>;
7635
+ vendorGetVendorDetails(vendorId: string, options?: RawAxiosRequestConfig): AxiosPromise<VendorWithRelationships>;
7903
7636
  /**
7904
7637
  * Get available vendor templates
7905
7638
  * @summary Get Vendor Templates
7906
- * @param {string} [xAPIKey]
7907
7639
  * @param {*} [options] Override http request option.
7908
7640
  * @throws {RequiredError}
7909
7641
  */
7910
- vendorGetVendorTemplates(xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<{
7642
+ vendorGetVendorTemplates(options?: RawAxiosRequestConfig): AxiosPromise<Array<{
7911
7643
  [key: string]: any;
7912
7644
  }>>;
7913
7645
  /**
@@ -7915,31 +7647,28 @@ export declare const VendorsApiFactory: (configuration?: Configuration, basePath
7915
7647
  * @summary List Vendors
7916
7648
  * @param {number} [page]
7917
7649
  * @param {number} [limit]
7918
- * @param {string} [xAPIKey]
7919
7650
  * @param {*} [options] Override http request option.
7920
7651
  * @throws {RequiredError}
7921
7652
  */
7922
- vendorListVendors(page?: number, limit?: number, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<VendorListResponse>;
7653
+ vendorListVendors(page?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<VendorListResponse>;
7923
7654
  /**
7924
7655
  * Remove certification from vendor
7925
7656
  * @summary Remove Certification
7926
7657
  * @param {string} vendorId
7927
7658
  * @param {number} certificationId
7928
- * @param {string} [xAPIKey]
7929
7659
  * @param {*} [options] Override http request option.
7930
7660
  * @throws {RequiredError}
7931
7661
  */
7932
- vendorRemoveCertifications(vendorId: string, certificationId: number, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<any>;
7662
+ vendorRemoveCertifications(vendorId: string, certificationId: number, options?: RawAxiosRequestConfig): AxiosPromise<any>;
7933
7663
  /**
7934
7664
  * Update vendor
7935
7665
  * @summary Update Vendor
7936
7666
  * @param {string} vendorId
7937
7667
  * @param {VendorUpdate} vendorUpdate
7938
- * @param {string} [xAPIKey]
7939
7668
  * @param {*} [options] Override http request option.
7940
7669
  * @throws {RequiredError}
7941
7670
  */
7942
- vendorUpdateVendor(vendorId: string, vendorUpdate: VendorUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): AxiosPromise<VendorResponse>;
7671
+ vendorUpdateVendor(vendorId: string, vendorUpdate: VendorUpdate, options?: RawAxiosRequestConfig): AxiosPromise<VendorResponse>;
7943
7672
  };
7944
7673
  /**
7945
7674
  * VendorsApi - object-oriented interface
@@ -7953,63 +7682,57 @@ export declare class VendorsApi extends BaseAPI {
7953
7682
  * @summary Add Certification
7954
7683
  * @param {string} vendorId
7955
7684
  * @param {VendorCertificationCreate} vendorCertificationCreate
7956
- * @param {string} [xAPIKey]
7957
7685
  * @param {*} [options] Override http request option.
7958
7686
  * @throws {RequiredError}
7959
7687
  * @memberof VendorsApi
7960
7688
  */
7961
- vendorAddCertifications(vendorId: string, vendorCertificationCreate: VendorCertificationCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
7689
+ vendorAddCertifications(vendorId: string, vendorCertificationCreate: VendorCertificationCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
7962
7690
  [key: string]: any;
7963
7691
  }, any, {}>>;
7964
7692
  /**
7965
7693
  * Create vendor (from template or custom)
7966
7694
  * @summary Create Vendor
7967
7695
  * @param {VendorCreate} vendorCreate
7968
- * @param {string} [xAPIKey]
7969
7696
  * @param {*} [options] Override http request option.
7970
7697
  * @throws {RequiredError}
7971
7698
  * @memberof VendorsApi
7972
7699
  */
7973
- vendorCreateVendor(vendorCreate: VendorCreate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorResponse, any, {}>>;
7700
+ vendorCreateVendor(vendorCreate: VendorCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorResponse, any, {}>>;
7974
7701
  /**
7975
7702
  * Delete vendor and all related records
7976
7703
  * @summary Delete Vendor
7977
7704
  * @param {string} vendorId
7978
- * @param {string} [xAPIKey]
7979
7705
  * @param {*} [options] Override http request option.
7980
7706
  * @throws {RequiredError}
7981
7707
  * @memberof VendorsApi
7982
7708
  */
7983
- vendorDeleteVendor(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
7709
+ vendorDeleteVendor(vendorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
7984
7710
  /**
7985
7711
  * Get vendor details
7986
7712
  * @summary Get Vendor
7987
7713
  * @param {string} vendorId
7988
- * @param {string} [xAPIKey]
7989
7714
  * @param {*} [options] Override http request option.
7990
7715
  * @throws {RequiredError}
7991
7716
  * @memberof VendorsApi
7992
7717
  */
7993
- vendorGetVendor(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorResponse, any, {}>>;
7718
+ vendorGetVendor(vendorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorResponse, any, {}>>;
7994
7719
  /**
7995
7720
  * Get vendor with all related data (risks, contacts, documents, assets)
7996
7721
  * @summary Get Vendor Details
7997
7722
  * @param {string} vendorId
7998
- * @param {string} [xAPIKey]
7999
7723
  * @param {*} [options] Override http request option.
8000
7724
  * @throws {RequiredError}
8001
7725
  * @memberof VendorsApi
8002
7726
  */
8003
- vendorGetVendorDetails(vendorId: string, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorWithRelationships, any, {}>>;
7727
+ vendorGetVendorDetails(vendorId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorWithRelationships, any, {}>>;
8004
7728
  /**
8005
7729
  * Get available vendor templates
8006
7730
  * @summary Get Vendor Templates
8007
- * @param {string} [xAPIKey]
8008
7731
  * @param {*} [options] Override http request option.
8009
7732
  * @throws {RequiredError}
8010
7733
  * @memberof VendorsApi
8011
7734
  */
8012
- vendorGetVendorTemplates(xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
7735
+ vendorGetVendorTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
8013
7736
  [key: string]: any;
8014
7737
  }[], any, {}>>;
8015
7738
  /**
@@ -8017,32 +7740,29 @@ export declare class VendorsApi extends BaseAPI {
8017
7740
  * @summary List Vendors
8018
7741
  * @param {number} [page]
8019
7742
  * @param {number} [limit]
8020
- * @param {string} [xAPIKey]
8021
7743
  * @param {*} [options] Override http request option.
8022
7744
  * @throws {RequiredError}
8023
7745
  * @memberof VendorsApi
8024
7746
  */
8025
- vendorListVendors(page?: number, limit?: number, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorListResponse, any, {}>>;
7747
+ vendorListVendors(page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorListResponse, any, {}>>;
8026
7748
  /**
8027
7749
  * Remove certification from vendor
8028
7750
  * @summary Remove Certification
8029
7751
  * @param {string} vendorId
8030
7752
  * @param {number} certificationId
8031
- * @param {string} [xAPIKey]
8032
7753
  * @param {*} [options] Override http request option.
8033
7754
  * @throws {RequiredError}
8034
7755
  * @memberof VendorsApi
8035
7756
  */
8036
- vendorRemoveCertifications(vendorId: string, certificationId: number, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
7757
+ vendorRemoveCertifications(vendorId: string, certificationId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
8037
7758
  /**
8038
7759
  * Update vendor
8039
7760
  * @summary Update Vendor
8040
7761
  * @param {string} vendorId
8041
7762
  * @param {VendorUpdate} vendorUpdate
8042
- * @param {string} [xAPIKey]
8043
7763
  * @param {*} [options] Override http request option.
8044
7764
  * @throws {RequiredError}
8045
7765
  * @memberof VendorsApi
8046
7766
  */
8047
- vendorUpdateVendor(vendorId: string, vendorUpdate: VendorUpdate, xAPIKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorResponse, any, {}>>;
7767
+ vendorUpdateVendor(vendorId: string, vendorUpdate: VendorUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorResponse, any, {}>>;
8048
7768
  }