@sp-api-sdk/services-api-v1 3.2.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api-model/api/{service-api.js → services-api.js} +101 -101
- package/dist/cjs/api-model/api.js +1 -1
- package/dist/cjs/client.js +1 -1
- package/dist/es/api-model/api/{service-api.js → services-api.js} +96 -96
- package/dist/es/api-model/api.js +1 -1
- package/dist/es/client.js +2 -2
- package/dist/types/api-model/api/{service-api.d.ts → services-api.d.ts} +204 -204
- package/dist/types/api-model/api.d.ts +1 -1
- package/dist/types/client.d.ts +2 -2
- package/package.json +4 -4
|
@@ -38,10 +38,10 @@ import type { UpdateReservationResponse } from '../models';
|
|
|
38
38
|
import type { UpdateScheduleRequest } from '../models';
|
|
39
39
|
import type { UpdateScheduleResponse } from '../models';
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
* ServicesApi - axios parameter creator
|
|
42
42
|
* @export
|
|
43
43
|
*/
|
|
44
|
-
export declare const
|
|
44
|
+
export declare const ServicesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
45
45
|
/**
|
|
46
46
|
* Adds an appointment to the service job indicated by the service job identifier specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
47
47
|
* @param {string} serviceJobId An Amazon defined service job identifier.
|
|
@@ -205,10 +205,10 @@ export declare const ServiceApiAxiosParamCreator: (configuration?: Configuration
|
|
|
205
205
|
updateSchedule: (resourceId: string, marketplaceIds: Array<string>, body: UpdateScheduleRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
206
206
|
};
|
|
207
207
|
/**
|
|
208
|
-
*
|
|
208
|
+
* ServicesApi - functional programming interface
|
|
209
209
|
* @export
|
|
210
210
|
*/
|
|
211
|
-
export declare const
|
|
211
|
+
export declare const ServicesApiFp: (configuration?: Configuration) => {
|
|
212
212
|
/**
|
|
213
213
|
* Adds an appointment to the service job indicated by the service job identifier specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
214
214
|
* @param {string} serviceJobId An Amazon defined service job identifier.
|
|
@@ -372,746 +372,746 @@ export declare const ServiceApiFp: (configuration?: Configuration) => {
|
|
|
372
372
|
updateSchedule(resourceId: string, marketplaceIds: Array<string>, body: UpdateScheduleRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateScheduleResponse>>;
|
|
373
373
|
};
|
|
374
374
|
/**
|
|
375
|
-
*
|
|
375
|
+
* ServicesApi - factory interface
|
|
376
376
|
* @export
|
|
377
377
|
*/
|
|
378
|
-
export declare const
|
|
378
|
+
export declare const ServicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
379
379
|
/**
|
|
380
380
|
* Adds an appointment to the service job indicated by the service job identifier specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
381
|
-
* @param {
|
|
381
|
+
* @param {ServicesApiAddAppointmentForServiceJobByServiceJobIdRequest} requestParameters Request parameters.
|
|
382
382
|
* @param {*} [options] Override http request option.
|
|
383
383
|
* @throws {RequiredError}
|
|
384
384
|
*/
|
|
385
|
-
addAppointmentForServiceJobByServiceJobId(requestParameters:
|
|
385
|
+
addAppointmentForServiceJobByServiceJobId(requestParameters: ServicesApiAddAppointmentForServiceJobByServiceJobIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<SetAppointmentResponse>;
|
|
386
386
|
/**
|
|
387
387
|
* Assigns new resource(s) or overwrite/update the existing one(s) to a service job appointment. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 2 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
388
|
-
* @param {
|
|
388
|
+
* @param {ServicesApiAssignAppointmentResourcesRequest} requestParameters Request parameters.
|
|
389
389
|
* @param {*} [options] Override http request option.
|
|
390
390
|
* @throws {RequiredError}
|
|
391
391
|
*/
|
|
392
|
-
assignAppointmentResources(requestParameters:
|
|
392
|
+
assignAppointmentResources(requestParameters: ServicesApiAssignAppointmentResourcesRequest, options?: RawAxiosRequestConfig): AxiosPromise<AssignAppointmentResourcesResponse>;
|
|
393
393
|
/**
|
|
394
394
|
* Cancel a reservation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
395
|
-
* @param {
|
|
395
|
+
* @param {ServicesApiCancelReservationRequest} requestParameters Request parameters.
|
|
396
396
|
* @param {*} [options] Override http request option.
|
|
397
397
|
* @throws {RequiredError}
|
|
398
398
|
*/
|
|
399
|
-
cancelReservation(requestParameters:
|
|
399
|
+
cancelReservation(requestParameters: ServicesApiCancelReservationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CancelReservationResponse>;
|
|
400
400
|
/**
|
|
401
401
|
* Cancels the service job indicated by the service job identifier specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
402
|
-
* @param {
|
|
402
|
+
* @param {ServicesApiCancelServiceJobByServiceJobIdRequest} requestParameters Request parameters.
|
|
403
403
|
* @param {*} [options] Override http request option.
|
|
404
404
|
* @throws {RequiredError}
|
|
405
405
|
*/
|
|
406
|
-
cancelServiceJobByServiceJobId(requestParameters:
|
|
406
|
+
cancelServiceJobByServiceJobId(requestParameters: ServicesApiCancelServiceJobByServiceJobIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<CancelServiceJobByServiceJobIdResponse>;
|
|
407
407
|
/**
|
|
408
408
|
* Completes the service job indicated by the service job identifier specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
409
|
-
* @param {
|
|
409
|
+
* @param {ServicesApiCompleteServiceJobByServiceJobIdRequest} requestParameters Request parameters.
|
|
410
410
|
* @param {*} [options] Override http request option.
|
|
411
411
|
* @throws {RequiredError}
|
|
412
412
|
*/
|
|
413
|
-
completeServiceJobByServiceJobId(requestParameters:
|
|
413
|
+
completeServiceJobByServiceJobId(requestParameters: ServicesApiCompleteServiceJobByServiceJobIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<CompleteServiceJobByServiceJobIdResponse>;
|
|
414
414
|
/**
|
|
415
415
|
* Create a reservation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
416
|
-
* @param {
|
|
416
|
+
* @param {ServicesApiCreateReservationRequest} requestParameters Request parameters.
|
|
417
417
|
* @param {*} [options] Override http request option.
|
|
418
418
|
* @throws {RequiredError}
|
|
419
419
|
*/
|
|
420
|
-
createReservation(requestParameters:
|
|
420
|
+
createReservation(requestParameters: ServicesApiCreateReservationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateReservationResponse>;
|
|
421
421
|
/**
|
|
422
422
|
* Creates an upload destination. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
423
|
-
* @param {
|
|
423
|
+
* @param {ServicesApiCreateServiceDocumentUploadDestinationRequest} requestParameters Request parameters.
|
|
424
424
|
* @param {*} [options] Override http request option.
|
|
425
425
|
* @throws {RequiredError}
|
|
426
426
|
*/
|
|
427
|
-
createServiceDocumentUploadDestination(requestParameters:
|
|
427
|
+
createServiceDocumentUploadDestination(requestParameters: ServicesApiCreateServiceDocumentUploadDestinationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateServiceDocumentUploadDestination>;
|
|
428
428
|
/**
|
|
429
429
|
* Gets appointment slots as per the service context specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 20 | 40 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
430
|
-
* @param {
|
|
430
|
+
* @param {ServicesApiGetAppointmentSlotsRequest} requestParameters Request parameters.
|
|
431
431
|
* @param {*} [options] Override http request option.
|
|
432
432
|
* @throws {RequiredError}
|
|
433
433
|
*/
|
|
434
|
-
getAppointmentSlots(requestParameters:
|
|
434
|
+
getAppointmentSlots(requestParameters: ServicesApiGetAppointmentSlotsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAppointmentSlotsResponse>;
|
|
435
435
|
/**
|
|
436
436
|
* Gets appointment slots for the service associated with the service job id specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
437
|
-
* @param {
|
|
437
|
+
* @param {ServicesApiGetAppointmmentSlotsByJobIdRequest} requestParameters Request parameters.
|
|
438
438
|
* @param {*} [options] Override http request option.
|
|
439
439
|
* @throws {RequiredError}
|
|
440
440
|
*/
|
|
441
|
-
getAppointmmentSlotsByJobId(requestParameters:
|
|
441
|
+
getAppointmmentSlotsByJobId(requestParameters: ServicesApiGetAppointmmentSlotsByJobIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAppointmentSlotsResponse>;
|
|
442
442
|
/**
|
|
443
443
|
* Provides capacity in fixed-size slots. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
444
|
-
* @param {
|
|
444
|
+
* @param {ServicesApiGetFixedSlotCapacityRequest} requestParameters Request parameters.
|
|
445
445
|
* @param {*} [options] Override http request option.
|
|
446
446
|
* @throws {RequiredError}
|
|
447
447
|
*/
|
|
448
|
-
getFixedSlotCapacity(requestParameters:
|
|
448
|
+
getFixedSlotCapacity(requestParameters: ServicesApiGetFixedSlotCapacityRequest, options?: RawAxiosRequestConfig): AxiosPromise<FixedSlotCapacity>;
|
|
449
449
|
/**
|
|
450
450
|
* Provides capacity slots in a format similar to availability records. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
451
|
-
* @param {
|
|
451
|
+
* @param {ServicesApiGetRangeSlotCapacityRequest} requestParameters Request parameters.
|
|
452
452
|
* @param {*} [options] Override http request option.
|
|
453
453
|
* @throws {RequiredError}
|
|
454
454
|
*/
|
|
455
|
-
getRangeSlotCapacity(requestParameters:
|
|
455
|
+
getRangeSlotCapacity(requestParameters: ServicesApiGetRangeSlotCapacityRequest, options?: RawAxiosRequestConfig): AxiosPromise<RangeSlotCapacity>;
|
|
456
456
|
/**
|
|
457
457
|
* Gets details of service job indicated by the provided `serviceJobID`. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 20 | 40 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
458
|
-
* @param {
|
|
458
|
+
* @param {ServicesApiGetServiceJobByServiceJobIdRequest} requestParameters Request parameters.
|
|
459
459
|
* @param {*} [options] Override http request option.
|
|
460
460
|
* @throws {RequiredError}
|
|
461
461
|
*/
|
|
462
|
-
getServiceJobByServiceJobId(requestParameters:
|
|
462
|
+
getServiceJobByServiceJobId(requestParameters: ServicesApiGetServiceJobByServiceJobIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetServiceJobByServiceJobIdResponse>;
|
|
463
463
|
/**
|
|
464
464
|
* Gets service job details for the specified filter query. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 10 | 40 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
465
|
-
* @param {
|
|
465
|
+
* @param {ServicesApiGetServiceJobsRequest} requestParameters Request parameters.
|
|
466
466
|
* @param {*} [options] Override http request option.
|
|
467
467
|
* @throws {RequiredError}
|
|
468
468
|
*/
|
|
469
|
-
getServiceJobs(requestParameters:
|
|
469
|
+
getServiceJobs(requestParameters: ServicesApiGetServiceJobsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetServiceJobsResponse>;
|
|
470
470
|
/**
|
|
471
471
|
* Reschedules an appointment for the service job indicated by the service job identifier specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
472
|
-
* @param {
|
|
472
|
+
* @param {ServicesApiRescheduleAppointmentForServiceJobByServiceJobIdRequest} requestParameters Request parameters.
|
|
473
473
|
* @param {*} [options] Override http request option.
|
|
474
474
|
* @throws {RequiredError}
|
|
475
475
|
*/
|
|
476
|
-
rescheduleAppointmentForServiceJobByServiceJobId(requestParameters:
|
|
476
|
+
rescheduleAppointmentForServiceJobByServiceJobId(requestParameters: ServicesApiRescheduleAppointmentForServiceJobByServiceJobIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<SetAppointmentResponse>;
|
|
477
477
|
/**
|
|
478
478
|
* Updates the appointment fulfillment data related to a given `jobID` and `appointmentID`. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
479
|
-
* @param {
|
|
479
|
+
* @param {ServicesApiSetAppointmentFulfillmentDataRequest} requestParameters Request parameters.
|
|
480
480
|
* @param {*} [options] Override http request option.
|
|
481
481
|
* @throws {RequiredError}
|
|
482
482
|
*/
|
|
483
|
-
setAppointmentFulfillmentData(requestParameters:
|
|
483
|
+
setAppointmentFulfillmentData(requestParameters: ServicesApiSetAppointmentFulfillmentDataRequest, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
484
484
|
/**
|
|
485
485
|
* Update a reservation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
486
|
-
* @param {
|
|
486
|
+
* @param {ServicesApiUpdateReservationRequest} requestParameters Request parameters.
|
|
487
487
|
* @param {*} [options] Override http request option.
|
|
488
488
|
* @throws {RequiredError}
|
|
489
489
|
*/
|
|
490
|
-
updateReservation(requestParameters:
|
|
490
|
+
updateReservation(requestParameters: ServicesApiUpdateReservationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateReservationResponse>;
|
|
491
491
|
/**
|
|
492
492
|
* Update the schedule of the given resource. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
493
|
-
* @param {
|
|
493
|
+
* @param {ServicesApiUpdateScheduleRequest} requestParameters Request parameters.
|
|
494
494
|
* @param {*} [options] Override http request option.
|
|
495
495
|
* @throws {RequiredError}
|
|
496
496
|
*/
|
|
497
|
-
updateSchedule(requestParameters:
|
|
497
|
+
updateSchedule(requestParameters: ServicesApiUpdateScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateScheduleResponse>;
|
|
498
498
|
};
|
|
499
499
|
/**
|
|
500
|
-
* Request parameters for addAppointmentForServiceJobByServiceJobId operation in
|
|
500
|
+
* Request parameters for addAppointmentForServiceJobByServiceJobId operation in ServicesApi.
|
|
501
501
|
* @export
|
|
502
|
-
* @interface
|
|
502
|
+
* @interface ServicesApiAddAppointmentForServiceJobByServiceJobIdRequest
|
|
503
503
|
*/
|
|
504
|
-
export interface
|
|
504
|
+
export interface ServicesApiAddAppointmentForServiceJobByServiceJobIdRequest {
|
|
505
505
|
/**
|
|
506
506
|
* An Amazon defined service job identifier.
|
|
507
507
|
* @type {string}
|
|
508
|
-
* @memberof
|
|
508
|
+
* @memberof ServicesApiAddAppointmentForServiceJobByServiceJobId
|
|
509
509
|
*/
|
|
510
510
|
readonly serviceJobId: string;
|
|
511
511
|
/**
|
|
512
512
|
* Add appointment operation input details.
|
|
513
513
|
* @type {AddAppointmentRequest}
|
|
514
|
-
* @memberof
|
|
514
|
+
* @memberof ServicesApiAddAppointmentForServiceJobByServiceJobId
|
|
515
515
|
*/
|
|
516
516
|
readonly body: AddAppointmentRequest;
|
|
517
517
|
}
|
|
518
518
|
/**
|
|
519
|
-
* Request parameters for assignAppointmentResources operation in
|
|
519
|
+
* Request parameters for assignAppointmentResources operation in ServicesApi.
|
|
520
520
|
* @export
|
|
521
|
-
* @interface
|
|
521
|
+
* @interface ServicesApiAssignAppointmentResourcesRequest
|
|
522
522
|
*/
|
|
523
|
-
export interface
|
|
523
|
+
export interface ServicesApiAssignAppointmentResourcesRequest {
|
|
524
524
|
/**
|
|
525
525
|
* An Amazon-defined service job identifier. Get this value by calling the `getServiceJobs` operation of the Services API.
|
|
526
526
|
* @type {string}
|
|
527
|
-
* @memberof
|
|
527
|
+
* @memberof ServicesApiAssignAppointmentResources
|
|
528
528
|
*/
|
|
529
529
|
readonly serviceJobId: string;
|
|
530
530
|
/**
|
|
531
531
|
* An Amazon-defined identifier of active service job appointment.
|
|
532
532
|
* @type {string}
|
|
533
|
-
* @memberof
|
|
533
|
+
* @memberof ServicesApiAssignAppointmentResources
|
|
534
534
|
*/
|
|
535
535
|
readonly appointmentId: string;
|
|
536
536
|
/**
|
|
537
537
|
*
|
|
538
538
|
* @type {AssignAppointmentResourcesRequest}
|
|
539
|
-
* @memberof
|
|
539
|
+
* @memberof ServicesApiAssignAppointmentResources
|
|
540
540
|
*/
|
|
541
541
|
readonly body: AssignAppointmentResourcesRequest;
|
|
542
542
|
}
|
|
543
543
|
/**
|
|
544
|
-
* Request parameters for cancelReservation operation in
|
|
544
|
+
* Request parameters for cancelReservation operation in ServicesApi.
|
|
545
545
|
* @export
|
|
546
|
-
* @interface
|
|
546
|
+
* @interface ServicesApiCancelReservationRequest
|
|
547
547
|
*/
|
|
548
|
-
export interface
|
|
548
|
+
export interface ServicesApiCancelReservationRequest {
|
|
549
549
|
/**
|
|
550
550
|
* Reservation Identifier
|
|
551
551
|
* @type {string}
|
|
552
|
-
* @memberof
|
|
552
|
+
* @memberof ServicesApiCancelReservation
|
|
553
553
|
*/
|
|
554
554
|
readonly reservationId: string;
|
|
555
555
|
/**
|
|
556
556
|
* An identifier for the marketplace in which the resource operates.
|
|
557
557
|
* @type {Array<string>}
|
|
558
|
-
* @memberof
|
|
558
|
+
* @memberof ServicesApiCancelReservation
|
|
559
559
|
*/
|
|
560
560
|
readonly marketplaceIds: Array<string>;
|
|
561
561
|
}
|
|
562
562
|
/**
|
|
563
|
-
* Request parameters for cancelServiceJobByServiceJobId operation in
|
|
563
|
+
* Request parameters for cancelServiceJobByServiceJobId operation in ServicesApi.
|
|
564
564
|
* @export
|
|
565
|
-
* @interface
|
|
565
|
+
* @interface ServicesApiCancelServiceJobByServiceJobIdRequest
|
|
566
566
|
*/
|
|
567
|
-
export interface
|
|
567
|
+
export interface ServicesApiCancelServiceJobByServiceJobIdRequest {
|
|
568
568
|
/**
|
|
569
569
|
* An Amazon defined service job identifier.
|
|
570
570
|
* @type {string}
|
|
571
|
-
* @memberof
|
|
571
|
+
* @memberof ServicesApiCancelServiceJobByServiceJobId
|
|
572
572
|
*/
|
|
573
573
|
readonly serviceJobId: string;
|
|
574
574
|
/**
|
|
575
575
|
* A cancel reason code that specifies the reason for cancelling a service job.
|
|
576
576
|
* @type {string}
|
|
577
|
-
* @memberof
|
|
577
|
+
* @memberof ServicesApiCancelServiceJobByServiceJobId
|
|
578
578
|
*/
|
|
579
579
|
readonly cancellationReasonCode: string;
|
|
580
580
|
}
|
|
581
581
|
/**
|
|
582
|
-
* Request parameters for completeServiceJobByServiceJobId operation in
|
|
582
|
+
* Request parameters for completeServiceJobByServiceJobId operation in ServicesApi.
|
|
583
583
|
* @export
|
|
584
|
-
* @interface
|
|
584
|
+
* @interface ServicesApiCompleteServiceJobByServiceJobIdRequest
|
|
585
585
|
*/
|
|
586
|
-
export interface
|
|
586
|
+
export interface ServicesApiCompleteServiceJobByServiceJobIdRequest {
|
|
587
587
|
/**
|
|
588
588
|
* An Amazon defined service job identifier.
|
|
589
589
|
* @type {string}
|
|
590
|
-
* @memberof
|
|
590
|
+
* @memberof ServicesApiCompleteServiceJobByServiceJobId
|
|
591
591
|
*/
|
|
592
592
|
readonly serviceJobId: string;
|
|
593
593
|
}
|
|
594
594
|
/**
|
|
595
|
-
* Request parameters for createReservation operation in
|
|
595
|
+
* Request parameters for createReservation operation in ServicesApi.
|
|
596
596
|
* @export
|
|
597
|
-
* @interface
|
|
597
|
+
* @interface ServicesApiCreateReservationRequest
|
|
598
598
|
*/
|
|
599
|
-
export interface
|
|
599
|
+
export interface ServicesApiCreateReservationRequest {
|
|
600
600
|
/**
|
|
601
601
|
* An identifier for the marketplace in which the resource operates.
|
|
602
602
|
* @type {Array<string>}
|
|
603
|
-
* @memberof
|
|
603
|
+
* @memberof ServicesApiCreateReservation
|
|
604
604
|
*/
|
|
605
605
|
readonly marketplaceIds: Array<string>;
|
|
606
606
|
/**
|
|
607
607
|
* Reservation details
|
|
608
608
|
* @type {CreateReservationRequest}
|
|
609
|
-
* @memberof
|
|
609
|
+
* @memberof ServicesApiCreateReservation
|
|
610
610
|
*/
|
|
611
611
|
readonly body: CreateReservationRequest;
|
|
612
612
|
}
|
|
613
613
|
/**
|
|
614
|
-
* Request parameters for createServiceDocumentUploadDestination operation in
|
|
614
|
+
* Request parameters for createServiceDocumentUploadDestination operation in ServicesApi.
|
|
615
615
|
* @export
|
|
616
|
-
* @interface
|
|
616
|
+
* @interface ServicesApiCreateServiceDocumentUploadDestinationRequest
|
|
617
617
|
*/
|
|
618
|
-
export interface
|
|
618
|
+
export interface ServicesApiCreateServiceDocumentUploadDestinationRequest {
|
|
619
619
|
/**
|
|
620
620
|
* Upload document operation input details.
|
|
621
621
|
* @type {ServiceUploadDocument}
|
|
622
|
-
* @memberof
|
|
622
|
+
* @memberof ServicesApiCreateServiceDocumentUploadDestination
|
|
623
623
|
*/
|
|
624
624
|
readonly body: ServiceUploadDocument;
|
|
625
625
|
}
|
|
626
626
|
/**
|
|
627
|
-
* Request parameters for getAppointmentSlots operation in
|
|
627
|
+
* Request parameters for getAppointmentSlots operation in ServicesApi.
|
|
628
628
|
* @export
|
|
629
|
-
* @interface
|
|
629
|
+
* @interface ServicesApiGetAppointmentSlotsRequest
|
|
630
630
|
*/
|
|
631
|
-
export interface
|
|
631
|
+
export interface ServicesApiGetAppointmentSlotsRequest {
|
|
632
632
|
/**
|
|
633
633
|
* ASIN associated with the service.
|
|
634
634
|
* @type {string}
|
|
635
|
-
* @memberof
|
|
635
|
+
* @memberof ServicesApiGetAppointmentSlots
|
|
636
636
|
*/
|
|
637
637
|
readonly asin: string;
|
|
638
638
|
/**
|
|
639
639
|
* Store identifier defining the region scope to retrive appointment slots.
|
|
640
640
|
* @type {string}
|
|
641
|
-
* @memberof
|
|
641
|
+
* @memberof ServicesApiGetAppointmentSlots
|
|
642
642
|
*/
|
|
643
643
|
readonly storeId: string;
|
|
644
644
|
/**
|
|
645
645
|
* An identifier for the marketplace for which appointment slots are queried
|
|
646
646
|
* @type {Array<string>}
|
|
647
|
-
* @memberof
|
|
647
|
+
* @memberof ServicesApiGetAppointmentSlots
|
|
648
648
|
*/
|
|
649
649
|
readonly marketplaceIds: Array<string>;
|
|
650
650
|
/**
|
|
651
651
|
* A time from which the appointment slots will be retrieved. The specified time must be in ISO 8601 format. If `startTime` is provided, `endTime` should also be provided. Default value is as per business configuration.
|
|
652
652
|
* @type {string}
|
|
653
|
-
* @memberof
|
|
653
|
+
* @memberof ServicesApiGetAppointmentSlots
|
|
654
654
|
*/
|
|
655
655
|
readonly startTime?: string;
|
|
656
656
|
/**
|
|
657
657
|
* A time up to which the appointment slots will be retrieved. The specified time must be in ISO 8601 format. If `endTime` is provided, `startTime` should also be provided. Default value is as per business configuration. Maximum range of appointment slots can be 90 days.
|
|
658
658
|
* @type {string}
|
|
659
|
-
* @memberof
|
|
659
|
+
* @memberof ServicesApiGetAppointmentSlots
|
|
660
660
|
*/
|
|
661
661
|
readonly endTime?: string;
|
|
662
662
|
}
|
|
663
663
|
/**
|
|
664
|
-
* Request parameters for getAppointmmentSlotsByJobId operation in
|
|
664
|
+
* Request parameters for getAppointmmentSlotsByJobId operation in ServicesApi.
|
|
665
665
|
* @export
|
|
666
|
-
* @interface
|
|
666
|
+
* @interface ServicesApiGetAppointmmentSlotsByJobIdRequest
|
|
667
667
|
*/
|
|
668
|
-
export interface
|
|
668
|
+
export interface ServicesApiGetAppointmmentSlotsByJobIdRequest {
|
|
669
669
|
/**
|
|
670
670
|
* A service job identifier to retrive appointment slots for associated service.
|
|
671
671
|
* @type {string}
|
|
672
|
-
* @memberof
|
|
672
|
+
* @memberof ServicesApiGetAppointmmentSlotsByJobId
|
|
673
673
|
*/
|
|
674
674
|
readonly serviceJobId: string;
|
|
675
675
|
/**
|
|
676
676
|
* An identifier for the marketplace in which the resource operates.
|
|
677
677
|
* @type {Array<string>}
|
|
678
|
-
* @memberof
|
|
678
|
+
* @memberof ServicesApiGetAppointmmentSlotsByJobId
|
|
679
679
|
*/
|
|
680
680
|
readonly marketplaceIds: Array<string>;
|
|
681
681
|
/**
|
|
682
682
|
* A time from which the appointment slots will be retrieved. The specified time must be in ISO 8601 format. If `startTime` is provided, `endTime` should also be provided. Default value is as per business configuration.
|
|
683
683
|
* @type {string}
|
|
684
|
-
* @memberof
|
|
684
|
+
* @memberof ServicesApiGetAppointmmentSlotsByJobId
|
|
685
685
|
*/
|
|
686
686
|
readonly startTime?: string;
|
|
687
687
|
/**
|
|
688
688
|
* A time up to which the appointment slots will be retrieved. The specified time must be in ISO 8601 format. If `endTime` is provided, `startTime` should also be provided. Default value is as per business configuration. Maximum range of appointment slots can be 90 days.
|
|
689
689
|
* @type {string}
|
|
690
|
-
* @memberof
|
|
690
|
+
* @memberof ServicesApiGetAppointmmentSlotsByJobId
|
|
691
691
|
*/
|
|
692
692
|
readonly endTime?: string;
|
|
693
693
|
}
|
|
694
694
|
/**
|
|
695
|
-
* Request parameters for getFixedSlotCapacity operation in
|
|
695
|
+
* Request parameters for getFixedSlotCapacity operation in ServicesApi.
|
|
696
696
|
* @export
|
|
697
|
-
* @interface
|
|
697
|
+
* @interface ServicesApiGetFixedSlotCapacityRequest
|
|
698
698
|
*/
|
|
699
|
-
export interface
|
|
699
|
+
export interface ServicesApiGetFixedSlotCapacityRequest {
|
|
700
700
|
/**
|
|
701
701
|
* Resource Identifier.
|
|
702
702
|
* @type {string}
|
|
703
|
-
* @memberof
|
|
703
|
+
* @memberof ServicesApiGetFixedSlotCapacity
|
|
704
704
|
*/
|
|
705
705
|
readonly resourceId: string;
|
|
706
706
|
/**
|
|
707
707
|
* An identifier for the marketplace in which the resource operates.
|
|
708
708
|
* @type {Array<string>}
|
|
709
|
-
* @memberof
|
|
709
|
+
* @memberof ServicesApiGetFixedSlotCapacity
|
|
710
710
|
*/
|
|
711
711
|
readonly marketplaceIds: Array<string>;
|
|
712
712
|
/**
|
|
713
713
|
* Request body.
|
|
714
714
|
* @type {FixedSlotCapacityQuery}
|
|
715
|
-
* @memberof
|
|
715
|
+
* @memberof ServicesApiGetFixedSlotCapacity
|
|
716
716
|
*/
|
|
717
717
|
readonly body: FixedSlotCapacityQuery;
|
|
718
718
|
/**
|
|
719
719
|
* Next page token returned in the response of your previous request.
|
|
720
720
|
* @type {string}
|
|
721
|
-
* @memberof
|
|
721
|
+
* @memberof ServicesApiGetFixedSlotCapacity
|
|
722
722
|
*/
|
|
723
723
|
readonly nextPageToken?: string;
|
|
724
724
|
}
|
|
725
725
|
/**
|
|
726
|
-
* Request parameters for getRangeSlotCapacity operation in
|
|
726
|
+
* Request parameters for getRangeSlotCapacity operation in ServicesApi.
|
|
727
727
|
* @export
|
|
728
|
-
* @interface
|
|
728
|
+
* @interface ServicesApiGetRangeSlotCapacityRequest
|
|
729
729
|
*/
|
|
730
|
-
export interface
|
|
730
|
+
export interface ServicesApiGetRangeSlotCapacityRequest {
|
|
731
731
|
/**
|
|
732
732
|
* Resource Identifier.
|
|
733
733
|
* @type {string}
|
|
734
|
-
* @memberof
|
|
734
|
+
* @memberof ServicesApiGetRangeSlotCapacity
|
|
735
735
|
*/
|
|
736
736
|
readonly resourceId: string;
|
|
737
737
|
/**
|
|
738
738
|
* An identifier for the marketplace in which the resource operates.
|
|
739
739
|
* @type {Array<string>}
|
|
740
|
-
* @memberof
|
|
740
|
+
* @memberof ServicesApiGetRangeSlotCapacity
|
|
741
741
|
*/
|
|
742
742
|
readonly marketplaceIds: Array<string>;
|
|
743
743
|
/**
|
|
744
744
|
* Request body.
|
|
745
745
|
* @type {RangeSlotCapacityQuery}
|
|
746
|
-
* @memberof
|
|
746
|
+
* @memberof ServicesApiGetRangeSlotCapacity
|
|
747
747
|
*/
|
|
748
748
|
readonly body: RangeSlotCapacityQuery;
|
|
749
749
|
/**
|
|
750
750
|
* Next page token returned in the response of your previous request.
|
|
751
751
|
* @type {string}
|
|
752
|
-
* @memberof
|
|
752
|
+
* @memberof ServicesApiGetRangeSlotCapacity
|
|
753
753
|
*/
|
|
754
754
|
readonly nextPageToken?: string;
|
|
755
755
|
}
|
|
756
756
|
/**
|
|
757
|
-
* Request parameters for getServiceJobByServiceJobId operation in
|
|
757
|
+
* Request parameters for getServiceJobByServiceJobId operation in ServicesApi.
|
|
758
758
|
* @export
|
|
759
|
-
* @interface
|
|
759
|
+
* @interface ServicesApiGetServiceJobByServiceJobIdRequest
|
|
760
760
|
*/
|
|
761
|
-
export interface
|
|
761
|
+
export interface ServicesApiGetServiceJobByServiceJobIdRequest {
|
|
762
762
|
/**
|
|
763
763
|
* A service job identifier.
|
|
764
764
|
* @type {string}
|
|
765
|
-
* @memberof
|
|
765
|
+
* @memberof ServicesApiGetServiceJobByServiceJobId
|
|
766
766
|
*/
|
|
767
767
|
readonly serviceJobId: string;
|
|
768
768
|
}
|
|
769
769
|
/**
|
|
770
|
-
* Request parameters for getServiceJobs operation in
|
|
770
|
+
* Request parameters for getServiceJobs operation in ServicesApi.
|
|
771
771
|
* @export
|
|
772
|
-
* @interface
|
|
772
|
+
* @interface ServicesApiGetServiceJobsRequest
|
|
773
773
|
*/
|
|
774
|
-
export interface
|
|
774
|
+
export interface ServicesApiGetServiceJobsRequest {
|
|
775
775
|
/**
|
|
776
776
|
* Used to select jobs that were placed in the specified marketplaces.
|
|
777
777
|
* @type {Array<string>}
|
|
778
|
-
* @memberof
|
|
778
|
+
* @memberof ServicesApiGetServiceJobs
|
|
779
779
|
*/
|
|
780
780
|
readonly marketplaceIds: Array<string>;
|
|
781
781
|
/**
|
|
782
782
|
* List of service order ids for the query you want to perform.Max values supported 20.
|
|
783
783
|
* @type {Array<string>}
|
|
784
|
-
* @memberof
|
|
784
|
+
* @memberof ServicesApiGetServiceJobs
|
|
785
785
|
*/
|
|
786
786
|
readonly serviceOrderIds?: Array<string>;
|
|
787
787
|
/**
|
|
788
788
|
* A list of one or more job status by which to filter the list of jobs.
|
|
789
789
|
* @type {Array<'NOT_SERVICED' | 'CANCELLED' | 'COMPLETED' | 'PENDING_SCHEDULE' | 'NOT_FULFILLABLE' | 'HOLD' | 'PAYMENT_DECLINED'>}
|
|
790
|
-
* @memberof
|
|
790
|
+
* @memberof ServicesApiGetServiceJobs
|
|
791
791
|
*/
|
|
792
792
|
readonly serviceJobStatus?: Array<GetServiceJobsServiceJobStatusEnum>;
|
|
793
793
|
/**
|
|
794
794
|
* String returned in the response of your previous request.
|
|
795
795
|
* @type {string}
|
|
796
|
-
* @memberof
|
|
796
|
+
* @memberof ServicesApiGetServiceJobs
|
|
797
797
|
*/
|
|
798
798
|
readonly pageToken?: string;
|
|
799
799
|
/**
|
|
800
800
|
* A non-negative integer that indicates the maximum number of jobs to return in the list, Value must be 1 - 20. Default 20.
|
|
801
801
|
* @type {number}
|
|
802
|
-
* @memberof
|
|
802
|
+
* @memberof ServicesApiGetServiceJobs
|
|
803
803
|
*/
|
|
804
804
|
readonly pageSize?: number;
|
|
805
805
|
/**
|
|
806
806
|
* Sort fields on which you want to sort the output.
|
|
807
807
|
* @type {'JOB_DATE' | 'JOB_STATUS'}
|
|
808
|
-
* @memberof
|
|
808
|
+
* @memberof ServicesApiGetServiceJobs
|
|
809
809
|
*/
|
|
810
810
|
readonly sortField?: GetServiceJobsSortFieldEnum;
|
|
811
811
|
/**
|
|
812
812
|
* Sort order for the query you want to perform.
|
|
813
813
|
* @type {'ASC' | 'DESC'}
|
|
814
|
-
* @memberof
|
|
814
|
+
* @memberof ServicesApiGetServiceJobs
|
|
815
815
|
*/
|
|
816
816
|
readonly sortOrder?: GetServiceJobsSortOrderEnum;
|
|
817
817
|
/**
|
|
818
818
|
* A date used for selecting jobs created at or after a specified time. Must be in ISO 8601 format. Required if `LastUpdatedAfter` is not specified. Specifying both `CreatedAfter` and `LastUpdatedAfter` returns an error.
|
|
819
819
|
* @type {string}
|
|
820
|
-
* @memberof
|
|
820
|
+
* @memberof ServicesApiGetServiceJobs
|
|
821
821
|
*/
|
|
822
822
|
readonly createdAfter?: string;
|
|
823
823
|
/**
|
|
824
824
|
* A date used for selecting jobs created at or before a specified time. Must be in ISO 8601 format.
|
|
825
825
|
* @type {string}
|
|
826
|
-
* @memberof
|
|
826
|
+
* @memberof ServicesApiGetServiceJobs
|
|
827
827
|
*/
|
|
828
828
|
readonly createdBefore?: string;
|
|
829
829
|
/**
|
|
830
830
|
* A date used for selecting jobs updated at or after a specified time. Must be in ISO 8601 format. Required if `createdAfter` is not specified. Specifying both `CreatedAfter` and `LastUpdatedAfter` returns an error.
|
|
831
831
|
* @type {string}
|
|
832
|
-
* @memberof
|
|
832
|
+
* @memberof ServicesApiGetServiceJobs
|
|
833
833
|
*/
|
|
834
834
|
readonly lastUpdatedAfter?: string;
|
|
835
835
|
/**
|
|
836
836
|
* A date used for selecting jobs updated at or before a specified time. Must be in ISO 8601 format.
|
|
837
837
|
* @type {string}
|
|
838
|
-
* @memberof
|
|
838
|
+
* @memberof ServicesApiGetServiceJobs
|
|
839
839
|
*/
|
|
840
840
|
readonly lastUpdatedBefore?: string;
|
|
841
841
|
/**
|
|
842
842
|
* A date used for filtering jobs schedules at or after a specified time. Must be in ISO 8601 format. Schedule end date should not be earlier than schedule start date.
|
|
843
843
|
* @type {string}
|
|
844
|
-
* @memberof
|
|
844
|
+
* @memberof ServicesApiGetServiceJobs
|
|
845
845
|
*/
|
|
846
846
|
readonly scheduleStartDate?: string;
|
|
847
847
|
/**
|
|
848
848
|
* A date used for filtering jobs schedules at or before a specified time. Must be in ISO 8601 format. Schedule end date should not be earlier than schedule start date.
|
|
849
849
|
* @type {string}
|
|
850
|
-
* @memberof
|
|
850
|
+
* @memberof ServicesApiGetServiceJobs
|
|
851
851
|
*/
|
|
852
852
|
readonly scheduleEndDate?: string;
|
|
853
853
|
/**
|
|
854
854
|
* List of Amazon Standard Identification Numbers (ASIN) of the items. Max values supported is 20.
|
|
855
855
|
* @type {Array<string>}
|
|
856
|
-
* @memberof
|
|
856
|
+
* @memberof ServicesApiGetServiceJobs
|
|
857
857
|
*/
|
|
858
858
|
readonly asins?: Array<string>;
|
|
859
859
|
/**
|
|
860
860
|
* A defined set of related knowledge, skills, experience, tools, materials, and work processes common to service delivery for a set of products and/or service scenarios. Max values supported is 20.
|
|
861
861
|
* @type {Array<string>}
|
|
862
|
-
* @memberof
|
|
862
|
+
* @memberof ServicesApiGetServiceJobs
|
|
863
863
|
*/
|
|
864
864
|
readonly requiredSkills?: Array<string>;
|
|
865
865
|
/**
|
|
866
866
|
* List of Amazon-defined identifiers for the region scope. Max values supported is 50.
|
|
867
867
|
* @type {Array<string>}
|
|
868
|
-
* @memberof
|
|
868
|
+
* @memberof ServicesApiGetServiceJobs
|
|
869
869
|
*/
|
|
870
870
|
readonly storeIds?: Array<string>;
|
|
871
871
|
}
|
|
872
872
|
/**
|
|
873
|
-
* Request parameters for rescheduleAppointmentForServiceJobByServiceJobId operation in
|
|
873
|
+
* Request parameters for rescheduleAppointmentForServiceJobByServiceJobId operation in ServicesApi.
|
|
874
874
|
* @export
|
|
875
|
-
* @interface
|
|
875
|
+
* @interface ServicesApiRescheduleAppointmentForServiceJobByServiceJobIdRequest
|
|
876
876
|
*/
|
|
877
|
-
export interface
|
|
877
|
+
export interface ServicesApiRescheduleAppointmentForServiceJobByServiceJobIdRequest {
|
|
878
878
|
/**
|
|
879
879
|
* An Amazon defined service job identifier.
|
|
880
880
|
* @type {string}
|
|
881
|
-
* @memberof
|
|
881
|
+
* @memberof ServicesApiRescheduleAppointmentForServiceJobByServiceJobId
|
|
882
882
|
*/
|
|
883
883
|
readonly serviceJobId: string;
|
|
884
884
|
/**
|
|
885
885
|
* An existing appointment identifier for the Service Job.
|
|
886
886
|
* @type {string}
|
|
887
|
-
* @memberof
|
|
887
|
+
* @memberof ServicesApiRescheduleAppointmentForServiceJobByServiceJobId
|
|
888
888
|
*/
|
|
889
889
|
readonly appointmentId: string;
|
|
890
890
|
/**
|
|
891
891
|
* Reschedule appointment operation input details.
|
|
892
892
|
* @type {RescheduleAppointmentRequest}
|
|
893
|
-
* @memberof
|
|
893
|
+
* @memberof ServicesApiRescheduleAppointmentForServiceJobByServiceJobId
|
|
894
894
|
*/
|
|
895
895
|
readonly body: RescheduleAppointmentRequest;
|
|
896
896
|
}
|
|
897
897
|
/**
|
|
898
|
-
* Request parameters for setAppointmentFulfillmentData operation in
|
|
898
|
+
* Request parameters for setAppointmentFulfillmentData operation in ServicesApi.
|
|
899
899
|
* @export
|
|
900
|
-
* @interface
|
|
900
|
+
* @interface ServicesApiSetAppointmentFulfillmentDataRequest
|
|
901
901
|
*/
|
|
902
|
-
export interface
|
|
902
|
+
export interface ServicesApiSetAppointmentFulfillmentDataRequest {
|
|
903
903
|
/**
|
|
904
904
|
* An Amazon-defined service job identifier. Get this value by calling the `getServiceJobs` operation of the Services API.
|
|
905
905
|
* @type {string}
|
|
906
|
-
* @memberof
|
|
906
|
+
* @memberof ServicesApiSetAppointmentFulfillmentData
|
|
907
907
|
*/
|
|
908
908
|
readonly serviceJobId: string;
|
|
909
909
|
/**
|
|
910
910
|
* An Amazon-defined identifier of active service job appointment.
|
|
911
911
|
* @type {string}
|
|
912
|
-
* @memberof
|
|
912
|
+
* @memberof ServicesApiSetAppointmentFulfillmentData
|
|
913
913
|
*/
|
|
914
914
|
readonly appointmentId: string;
|
|
915
915
|
/**
|
|
916
916
|
* Appointment fulfillment data collection details.
|
|
917
917
|
* @type {SetAppointmentFulfillmentDataRequest}
|
|
918
|
-
* @memberof
|
|
918
|
+
* @memberof ServicesApiSetAppointmentFulfillmentData
|
|
919
919
|
*/
|
|
920
920
|
readonly body: SetAppointmentFulfillmentDataRequest;
|
|
921
921
|
}
|
|
922
922
|
/**
|
|
923
|
-
* Request parameters for updateReservation operation in
|
|
923
|
+
* Request parameters for updateReservation operation in ServicesApi.
|
|
924
924
|
* @export
|
|
925
|
-
* @interface
|
|
925
|
+
* @interface ServicesApiUpdateReservationRequest
|
|
926
926
|
*/
|
|
927
|
-
export interface
|
|
927
|
+
export interface ServicesApiUpdateReservationRequest {
|
|
928
928
|
/**
|
|
929
929
|
* Reservation Identifier
|
|
930
930
|
* @type {string}
|
|
931
|
-
* @memberof
|
|
931
|
+
* @memberof ServicesApiUpdateReservation
|
|
932
932
|
*/
|
|
933
933
|
readonly reservationId: string;
|
|
934
934
|
/**
|
|
935
935
|
* An identifier for the marketplace in which the resource operates.
|
|
936
936
|
* @type {Array<string>}
|
|
937
|
-
* @memberof
|
|
937
|
+
* @memberof ServicesApiUpdateReservation
|
|
938
938
|
*/
|
|
939
939
|
readonly marketplaceIds: Array<string>;
|
|
940
940
|
/**
|
|
941
941
|
* Reservation details
|
|
942
942
|
* @type {UpdateReservationRequest}
|
|
943
|
-
* @memberof
|
|
943
|
+
* @memberof ServicesApiUpdateReservation
|
|
944
944
|
*/
|
|
945
945
|
readonly body: UpdateReservationRequest;
|
|
946
946
|
}
|
|
947
947
|
/**
|
|
948
|
-
* Request parameters for updateSchedule operation in
|
|
948
|
+
* Request parameters for updateSchedule operation in ServicesApi.
|
|
949
949
|
* @export
|
|
950
|
-
* @interface
|
|
950
|
+
* @interface ServicesApiUpdateScheduleRequest
|
|
951
951
|
*/
|
|
952
|
-
export interface
|
|
952
|
+
export interface ServicesApiUpdateScheduleRequest {
|
|
953
953
|
/**
|
|
954
954
|
* Resource (store) Identifier
|
|
955
955
|
* @type {string}
|
|
956
|
-
* @memberof
|
|
956
|
+
* @memberof ServicesApiUpdateSchedule
|
|
957
957
|
*/
|
|
958
958
|
readonly resourceId: string;
|
|
959
959
|
/**
|
|
960
960
|
* An identifier for the marketplace in which the resource operates.
|
|
961
961
|
* @type {Array<string>}
|
|
962
|
-
* @memberof
|
|
962
|
+
* @memberof ServicesApiUpdateSchedule
|
|
963
963
|
*/
|
|
964
964
|
readonly marketplaceIds: Array<string>;
|
|
965
965
|
/**
|
|
966
966
|
* Schedule details
|
|
967
967
|
* @type {UpdateScheduleRequest}
|
|
968
|
-
* @memberof
|
|
968
|
+
* @memberof ServicesApiUpdateSchedule
|
|
969
969
|
*/
|
|
970
970
|
readonly body: UpdateScheduleRequest;
|
|
971
971
|
}
|
|
972
972
|
/**
|
|
973
|
-
*
|
|
973
|
+
* ServicesApi - object-oriented interface
|
|
974
974
|
* @export
|
|
975
|
-
* @class
|
|
975
|
+
* @class ServicesApi
|
|
976
976
|
* @extends {BaseAPI}
|
|
977
977
|
*/
|
|
978
|
-
export declare class
|
|
978
|
+
export declare class ServicesApi extends BaseAPI {
|
|
979
979
|
/**
|
|
980
980
|
* Adds an appointment to the service job indicated by the service job identifier specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
981
|
-
* @param {
|
|
981
|
+
* @param {ServicesApiAddAppointmentForServiceJobByServiceJobIdRequest} requestParameters Request parameters.
|
|
982
982
|
* @param {*} [options] Override http request option.
|
|
983
983
|
* @throws {RequiredError}
|
|
984
|
-
* @memberof
|
|
984
|
+
* @memberof ServicesApi
|
|
985
985
|
*/
|
|
986
|
-
addAppointmentForServiceJobByServiceJobId(requestParameters:
|
|
986
|
+
addAppointmentForServiceJobByServiceJobId(requestParameters: ServicesApiAddAppointmentForServiceJobByServiceJobIdRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<SetAppointmentResponse, any>>;
|
|
987
987
|
/**
|
|
988
988
|
* Assigns new resource(s) or overwrite/update the existing one(s) to a service job appointment. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 2 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
989
|
-
* @param {
|
|
989
|
+
* @param {ServicesApiAssignAppointmentResourcesRequest} requestParameters Request parameters.
|
|
990
990
|
* @param {*} [options] Override http request option.
|
|
991
991
|
* @throws {RequiredError}
|
|
992
|
-
* @memberof
|
|
992
|
+
* @memberof ServicesApi
|
|
993
993
|
*/
|
|
994
|
-
assignAppointmentResources(requestParameters:
|
|
994
|
+
assignAppointmentResources(requestParameters: ServicesApiAssignAppointmentResourcesRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<AssignAppointmentResourcesResponse, any>>;
|
|
995
995
|
/**
|
|
996
996
|
* Cancel a reservation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
997
|
-
* @param {
|
|
997
|
+
* @param {ServicesApiCancelReservationRequest} requestParameters Request parameters.
|
|
998
998
|
* @param {*} [options] Override http request option.
|
|
999
999
|
* @throws {RequiredError}
|
|
1000
|
-
* @memberof
|
|
1000
|
+
* @memberof ServicesApi
|
|
1001
1001
|
*/
|
|
1002
|
-
cancelReservation(requestParameters:
|
|
1002
|
+
cancelReservation(requestParameters: ServicesApiCancelReservationRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<CancelReservationResponse, any>>;
|
|
1003
1003
|
/**
|
|
1004
1004
|
* Cancels the service job indicated by the service job identifier specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1005
|
-
* @param {
|
|
1005
|
+
* @param {ServicesApiCancelServiceJobByServiceJobIdRequest} requestParameters Request parameters.
|
|
1006
1006
|
* @param {*} [options] Override http request option.
|
|
1007
1007
|
* @throws {RequiredError}
|
|
1008
|
-
* @memberof
|
|
1008
|
+
* @memberof ServicesApi
|
|
1009
1009
|
*/
|
|
1010
|
-
cancelServiceJobByServiceJobId(requestParameters:
|
|
1010
|
+
cancelServiceJobByServiceJobId(requestParameters: ServicesApiCancelServiceJobByServiceJobIdRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<CancelServiceJobByServiceJobIdResponse, any>>;
|
|
1011
1011
|
/**
|
|
1012
1012
|
* Completes the service job indicated by the service job identifier specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1013
|
-
* @param {
|
|
1013
|
+
* @param {ServicesApiCompleteServiceJobByServiceJobIdRequest} requestParameters Request parameters.
|
|
1014
1014
|
* @param {*} [options] Override http request option.
|
|
1015
1015
|
* @throws {RequiredError}
|
|
1016
|
-
* @memberof
|
|
1016
|
+
* @memberof ServicesApi
|
|
1017
1017
|
*/
|
|
1018
|
-
completeServiceJobByServiceJobId(requestParameters:
|
|
1018
|
+
completeServiceJobByServiceJobId(requestParameters: ServicesApiCompleteServiceJobByServiceJobIdRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<CompleteServiceJobByServiceJobIdResponse, any>>;
|
|
1019
1019
|
/**
|
|
1020
1020
|
* Create a reservation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1021
|
-
* @param {
|
|
1021
|
+
* @param {ServicesApiCreateReservationRequest} requestParameters Request parameters.
|
|
1022
1022
|
* @param {*} [options] Override http request option.
|
|
1023
1023
|
* @throws {RequiredError}
|
|
1024
|
-
* @memberof
|
|
1024
|
+
* @memberof ServicesApi
|
|
1025
1025
|
*/
|
|
1026
|
-
createReservation(requestParameters:
|
|
1026
|
+
createReservation(requestParameters: ServicesApiCreateReservationRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<CreateReservationResponse, any>>;
|
|
1027
1027
|
/**
|
|
1028
1028
|
* Creates an upload destination. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1029
|
-
* @param {
|
|
1029
|
+
* @param {ServicesApiCreateServiceDocumentUploadDestinationRequest} requestParameters Request parameters.
|
|
1030
1030
|
* @param {*} [options] Override http request option.
|
|
1031
1031
|
* @throws {RequiredError}
|
|
1032
|
-
* @memberof
|
|
1032
|
+
* @memberof ServicesApi
|
|
1033
1033
|
*/
|
|
1034
|
-
createServiceDocumentUploadDestination(requestParameters:
|
|
1034
|
+
createServiceDocumentUploadDestination(requestParameters: ServicesApiCreateServiceDocumentUploadDestinationRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<CreateServiceDocumentUploadDestination, any>>;
|
|
1035
1035
|
/**
|
|
1036
1036
|
* Gets appointment slots as per the service context specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 20 | 40 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1037
|
-
* @param {
|
|
1037
|
+
* @param {ServicesApiGetAppointmentSlotsRequest} requestParameters Request parameters.
|
|
1038
1038
|
* @param {*} [options] Override http request option.
|
|
1039
1039
|
* @throws {RequiredError}
|
|
1040
|
-
* @memberof
|
|
1040
|
+
* @memberof ServicesApi
|
|
1041
1041
|
*/
|
|
1042
|
-
getAppointmentSlots(requestParameters:
|
|
1042
|
+
getAppointmentSlots(requestParameters: ServicesApiGetAppointmentSlotsRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<GetAppointmentSlotsResponse, any>>;
|
|
1043
1043
|
/**
|
|
1044
1044
|
* Gets appointment slots for the service associated with the service job id specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1045
|
-
* @param {
|
|
1045
|
+
* @param {ServicesApiGetAppointmmentSlotsByJobIdRequest} requestParameters Request parameters.
|
|
1046
1046
|
* @param {*} [options] Override http request option.
|
|
1047
1047
|
* @throws {RequiredError}
|
|
1048
|
-
* @memberof
|
|
1048
|
+
* @memberof ServicesApi
|
|
1049
1049
|
*/
|
|
1050
|
-
getAppointmmentSlotsByJobId(requestParameters:
|
|
1050
|
+
getAppointmmentSlotsByJobId(requestParameters: ServicesApiGetAppointmmentSlotsByJobIdRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<GetAppointmentSlotsResponse, any>>;
|
|
1051
1051
|
/**
|
|
1052
1052
|
* Provides capacity in fixed-size slots. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1053
|
-
* @param {
|
|
1053
|
+
* @param {ServicesApiGetFixedSlotCapacityRequest} requestParameters Request parameters.
|
|
1054
1054
|
* @param {*} [options] Override http request option.
|
|
1055
1055
|
* @throws {RequiredError}
|
|
1056
|
-
* @memberof
|
|
1056
|
+
* @memberof ServicesApi
|
|
1057
1057
|
*/
|
|
1058
|
-
getFixedSlotCapacity(requestParameters:
|
|
1058
|
+
getFixedSlotCapacity(requestParameters: ServicesApiGetFixedSlotCapacityRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<FixedSlotCapacity, any>>;
|
|
1059
1059
|
/**
|
|
1060
1060
|
* Provides capacity slots in a format similar to availability records. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1061
|
-
* @param {
|
|
1061
|
+
* @param {ServicesApiGetRangeSlotCapacityRequest} requestParameters Request parameters.
|
|
1062
1062
|
* @param {*} [options] Override http request option.
|
|
1063
1063
|
* @throws {RequiredError}
|
|
1064
|
-
* @memberof
|
|
1064
|
+
* @memberof ServicesApi
|
|
1065
1065
|
*/
|
|
1066
|
-
getRangeSlotCapacity(requestParameters:
|
|
1066
|
+
getRangeSlotCapacity(requestParameters: ServicesApiGetRangeSlotCapacityRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<RangeSlotCapacity, any>>;
|
|
1067
1067
|
/**
|
|
1068
1068
|
* Gets details of service job indicated by the provided `serviceJobID`. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 20 | 40 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1069
|
-
* @param {
|
|
1069
|
+
* @param {ServicesApiGetServiceJobByServiceJobIdRequest} requestParameters Request parameters.
|
|
1070
1070
|
* @param {*} [options] Override http request option.
|
|
1071
1071
|
* @throws {RequiredError}
|
|
1072
|
-
* @memberof
|
|
1072
|
+
* @memberof ServicesApi
|
|
1073
1073
|
*/
|
|
1074
|
-
getServiceJobByServiceJobId(requestParameters:
|
|
1074
|
+
getServiceJobByServiceJobId(requestParameters: ServicesApiGetServiceJobByServiceJobIdRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<GetServiceJobByServiceJobIdResponse, any>>;
|
|
1075
1075
|
/**
|
|
1076
1076
|
* Gets service job details for the specified filter query. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 10 | 40 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1077
|
-
* @param {
|
|
1077
|
+
* @param {ServicesApiGetServiceJobsRequest} requestParameters Request parameters.
|
|
1078
1078
|
* @param {*} [options] Override http request option.
|
|
1079
1079
|
* @throws {RequiredError}
|
|
1080
|
-
* @memberof
|
|
1080
|
+
* @memberof ServicesApi
|
|
1081
1081
|
*/
|
|
1082
|
-
getServiceJobs(requestParameters:
|
|
1082
|
+
getServiceJobs(requestParameters: ServicesApiGetServiceJobsRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<GetServiceJobsResponse, any>>;
|
|
1083
1083
|
/**
|
|
1084
1084
|
* Reschedules an appointment for the service job indicated by the service job identifier specified. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1085
|
-
* @param {
|
|
1085
|
+
* @param {ServicesApiRescheduleAppointmentForServiceJobByServiceJobIdRequest} requestParameters Request parameters.
|
|
1086
1086
|
* @param {*} [options] Override http request option.
|
|
1087
1087
|
* @throws {RequiredError}
|
|
1088
|
-
* @memberof
|
|
1088
|
+
* @memberof ServicesApi
|
|
1089
1089
|
*/
|
|
1090
|
-
rescheduleAppointmentForServiceJobByServiceJobId(requestParameters:
|
|
1090
|
+
rescheduleAppointmentForServiceJobByServiceJobId(requestParameters: ServicesApiRescheduleAppointmentForServiceJobByServiceJobIdRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<SetAppointmentResponse, any>>;
|
|
1091
1091
|
/**
|
|
1092
1092
|
* Updates the appointment fulfillment data related to a given `jobID` and `appointmentID`. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1093
|
-
* @param {
|
|
1093
|
+
* @param {ServicesApiSetAppointmentFulfillmentDataRequest} requestParameters Request parameters.
|
|
1094
1094
|
* @param {*} [options] Override http request option.
|
|
1095
1095
|
* @throws {RequiredError}
|
|
1096
|
-
* @memberof
|
|
1096
|
+
* @memberof ServicesApi
|
|
1097
1097
|
*/
|
|
1098
|
-
setAppointmentFulfillmentData(requestParameters:
|
|
1098
|
+
setAppointmentFulfillmentData(requestParameters: ServicesApiSetAppointmentFulfillmentDataRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<string, any>>;
|
|
1099
1099
|
/**
|
|
1100
1100
|
* Update a reservation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1101
|
-
* @param {
|
|
1101
|
+
* @param {ServicesApiUpdateReservationRequest} requestParameters Request parameters.
|
|
1102
1102
|
* @param {*} [options] Override http request option.
|
|
1103
1103
|
* @throws {RequiredError}
|
|
1104
|
-
* @memberof
|
|
1104
|
+
* @memberof ServicesApi
|
|
1105
1105
|
*/
|
|
1106
|
-
updateReservation(requestParameters:
|
|
1106
|
+
updateReservation(requestParameters: ServicesApiUpdateReservationRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<UpdateReservationResponse, any>>;
|
|
1107
1107
|
/**
|
|
1108
1108
|
* Update the schedule of the given resource. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 20 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1109
|
-
* @param {
|
|
1109
|
+
* @param {ServicesApiUpdateScheduleRequest} requestParameters Request parameters.
|
|
1110
1110
|
* @param {*} [options] Override http request option.
|
|
1111
1111
|
* @throws {RequiredError}
|
|
1112
|
-
* @memberof
|
|
1112
|
+
* @memberof ServicesApi
|
|
1113
1113
|
*/
|
|
1114
|
-
updateSchedule(requestParameters:
|
|
1114
|
+
updateSchedule(requestParameters: ServicesApiUpdateScheduleRequest, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<UpdateScheduleResponse, any>>;
|
|
1115
1115
|
}
|
|
1116
1116
|
/**
|
|
1117
1117
|
* @export
|