@sp-api-sdk/services-api-v1 3.1.1 → 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/api-model/models/date-time-range.js +15 -0
- package/dist/cjs/api-model/models/index.js +1 -0
- 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/api-model/models/date-time-range.js +14 -0
- package/dist/es/api-model/models/index.js +1 -0
- 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/api-model/models/date-time-range.d.ts +30 -0
- package/dist/types/api-model/models/index.d.ts +1 -0
- package/dist/types/api-model/models/set-appointment-fulfillment-data-request.d.ts +7 -0
- package/dist/types/client.d.ts +2 -2
- package/package.json +4 -4
|
@@ -27,4 +27,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
27
27
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
28
28
|
};
|
|
29
29
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
|
-
__exportStar(require("./api/
|
|
30
|
+
__exportStar(require("./api/services-api"), exports);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Selling Partner API for Services
|
|
6
|
+
* With the Services API, you can build applications that help service providers get and modify their service orders and manage their resources.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v1
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -36,6 +36,7 @@ __exportStar(require("./create-reservation-record"), exports);
|
|
|
36
36
|
__exportStar(require("./create-reservation-request"), exports);
|
|
37
37
|
__exportStar(require("./create-reservation-response"), exports);
|
|
38
38
|
__exportStar(require("./create-service-document-upload-destination"), exports);
|
|
39
|
+
__exportStar(require("./date-time-range"), exports);
|
|
39
40
|
__exportStar(require("./day-of-week"), exports);
|
|
40
41
|
__exportStar(require("./encryption-details"), exports);
|
|
41
42
|
__exportStar(require("./fixed-slot"), exports);
|
package/dist/cjs/client.js
CHANGED
|
@@ -124,7 +124,7 @@ exports.clientRateLimits = [
|
|
|
124
124
|
burst: 20,
|
|
125
125
|
},
|
|
126
126
|
];
|
|
127
|
-
class ServicesApiClient extends api_model_1.
|
|
127
|
+
class ServicesApiClient extends api_model_1.ServicesApi {
|
|
128
128
|
constructor(configuration) {
|
|
129
129
|
const { axios, endpoint } = (0, common_1.createAxiosInstance)(configuration, exports.clientRateLimits);
|
|
130
130
|
super(new api_model_1.Configuration(), endpoint, axios);
|