@closerplatform/spinner-openapi 0.12.598 → 0.12.599
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 +28 -28
- package/dist/api.js +5 -5
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -741,10 +741,10 @@ export interface AgentProfileForm {
|
|
|
741
741
|
lastName: string;
|
|
742
742
|
/**
|
|
743
743
|
*
|
|
744
|
-
* @type {
|
|
744
|
+
* @type {RawPhone}
|
|
745
745
|
* @memberof AgentProfileForm
|
|
746
746
|
*/
|
|
747
|
-
phone?:
|
|
747
|
+
phone?: RawPhone;
|
|
748
748
|
}
|
|
749
749
|
/**
|
|
750
750
|
*
|
|
@@ -2647,10 +2647,10 @@ export interface GuestProfileForm {
|
|
|
2647
2647
|
email?: string;
|
|
2648
2648
|
/**
|
|
2649
2649
|
*
|
|
2650
|
-
* @type {
|
|
2650
|
+
* @type {RawPhone}
|
|
2651
2651
|
* @memberof GuestProfileForm
|
|
2652
2652
|
*/
|
|
2653
|
-
phone?:
|
|
2653
|
+
phone?: RawPhone;
|
|
2654
2654
|
/**
|
|
2655
2655
|
*
|
|
2656
2656
|
* @type {string}
|
|
@@ -2714,10 +2714,10 @@ export interface GuestProfileFormPatch {
|
|
|
2714
2714
|
email?: string;
|
|
2715
2715
|
/**
|
|
2716
2716
|
*
|
|
2717
|
-
* @type {
|
|
2717
|
+
* @type {RawPhone}
|
|
2718
2718
|
* @memberof GuestProfileFormPatch
|
|
2719
2719
|
*/
|
|
2720
|
-
phone?:
|
|
2720
|
+
phone?: RawPhone;
|
|
2721
2721
|
/**
|
|
2722
2722
|
*
|
|
2723
2723
|
* @type {string}
|
|
@@ -4804,7 +4804,7 @@ export interface OrgConfig {
|
|
|
4804
4804
|
* @type {string}
|
|
4805
4805
|
* @memberof OrgConfig
|
|
4806
4806
|
*/
|
|
4807
|
-
|
|
4807
|
+
phoneRegion: string;
|
|
4808
4808
|
/**
|
|
4809
4809
|
*
|
|
4810
4810
|
* @type {string}
|
|
@@ -5471,19 +5471,6 @@ export interface PhoneDetailsFormatting {
|
|
|
5471
5471
|
*/
|
|
5472
5472
|
countryCode?: string;
|
|
5473
5473
|
}
|
|
5474
|
-
/**
|
|
5475
|
-
*
|
|
5476
|
-
* @export
|
|
5477
|
-
* @interface PhoneNumber
|
|
5478
|
-
*/
|
|
5479
|
-
export interface PhoneNumber {
|
|
5480
|
-
/**
|
|
5481
|
-
*
|
|
5482
|
-
* @type {Phone}
|
|
5483
|
-
* @memberof PhoneNumber
|
|
5484
|
-
*/
|
|
5485
|
-
phone: Phone;
|
|
5486
|
-
}
|
|
5487
5474
|
/**
|
|
5488
5475
|
*
|
|
5489
5476
|
* @export
|
|
@@ -5704,6 +5691,19 @@ export interface RadioListInput {
|
|
|
5704
5691
|
*/
|
|
5705
5692
|
options: Array<CheckboxOption>;
|
|
5706
5693
|
}
|
|
5694
|
+
/**
|
|
5695
|
+
*
|
|
5696
|
+
* @export
|
|
5697
|
+
* @interface RawPhone
|
|
5698
|
+
*/
|
|
5699
|
+
export interface RawPhone {
|
|
5700
|
+
/**
|
|
5701
|
+
*
|
|
5702
|
+
* @type {string}
|
|
5703
|
+
* @memberof RawPhone
|
|
5704
|
+
*/
|
|
5705
|
+
number: string;
|
|
5706
|
+
}
|
|
5707
5707
|
/**
|
|
5708
5708
|
*
|
|
5709
5709
|
* @export
|
|
@@ -15131,11 +15131,11 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
|
|
|
15131
15131
|
/**
|
|
15132
15132
|
*
|
|
15133
15133
|
* @summary Validate phone number
|
|
15134
|
-
* @param {
|
|
15134
|
+
* @param {RawPhone} body
|
|
15135
15135
|
* @param {*} [options] Override http request option.
|
|
15136
15136
|
* @throws {RequiredError}
|
|
15137
15137
|
*/
|
|
15138
|
-
validatePhone(body:
|
|
15138
|
+
validatePhone(body: RawPhone, options?: any): FetchArgs;
|
|
15139
15139
|
};
|
|
15140
15140
|
/**
|
|
15141
15141
|
* UsersApi - functional programming interface
|
|
@@ -15479,11 +15479,11 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
15479
15479
|
/**
|
|
15480
15480
|
*
|
|
15481
15481
|
* @summary Validate phone number
|
|
15482
|
-
* @param {
|
|
15482
|
+
* @param {RawPhone} body
|
|
15483
15483
|
* @param {*} [options] Override http request option.
|
|
15484
15484
|
* @throws {RequiredError}
|
|
15485
15485
|
*/
|
|
15486
|
-
validatePhone(body:
|
|
15486
|
+
validatePhone(body: RawPhone, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<PhoneDetails>;
|
|
15487
15487
|
};
|
|
15488
15488
|
/**
|
|
15489
15489
|
* UsersApi - factory interface
|
|
@@ -15827,11 +15827,11 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
|
|
|
15827
15827
|
/**
|
|
15828
15828
|
*
|
|
15829
15829
|
* @summary Validate phone number
|
|
15830
|
-
* @param {
|
|
15830
|
+
* @param {RawPhone} body
|
|
15831
15831
|
* @param {*} [options] Override http request option.
|
|
15832
15832
|
* @throws {RequiredError}
|
|
15833
15833
|
*/
|
|
15834
|
-
validatePhone(body:
|
|
15834
|
+
validatePhone(body: RawPhone, options?: any): Promise<PhoneDetails>;
|
|
15835
15835
|
};
|
|
15836
15836
|
/**
|
|
15837
15837
|
* UsersApi - object-oriented interface
|
|
@@ -16219,12 +16219,12 @@ export declare class UsersApi extends BaseAPI {
|
|
|
16219
16219
|
/**
|
|
16220
16220
|
*
|
|
16221
16221
|
* @summary Validate phone number
|
|
16222
|
-
* @param {
|
|
16222
|
+
* @param {RawPhone} body
|
|
16223
16223
|
* @param {*} [options] Override http request option.
|
|
16224
16224
|
* @throws {RequiredError}
|
|
16225
16225
|
* @memberof UsersApi
|
|
16226
16226
|
*/
|
|
16227
|
-
validatePhone(body:
|
|
16227
|
+
validatePhone(body: RawPhone, options?: any): Promise<PhoneDetails>;
|
|
16228
16228
|
}
|
|
16229
16229
|
/**
|
|
16230
16230
|
* WebhooksApi - fetch parameter creator
|
package/dist/api.js
CHANGED
|
@@ -18298,7 +18298,7 @@ const UsersApiFetchParamCreator = function (configuration) {
|
|
|
18298
18298
|
/**
|
|
18299
18299
|
*
|
|
18300
18300
|
* @summary Validate phone number
|
|
18301
|
-
* @param {
|
|
18301
|
+
* @param {RawPhone} body
|
|
18302
18302
|
* @param {*} [options] Override http request option.
|
|
18303
18303
|
* @throws {RequiredError}
|
|
18304
18304
|
*/
|
|
@@ -18331,7 +18331,7 @@ const UsersApiFetchParamCreator = function (configuration) {
|
|
|
18331
18331
|
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
18332
18332
|
delete localVarUrlObj.search;
|
|
18333
18333
|
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
18334
|
-
const needsSerialization = ("
|
|
18334
|
+
const needsSerialization = ("RawPhone" !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
|
18335
18335
|
localVarRequestOptions.body = needsSerialization ? JSON.stringify(body || {}) : (body || "");
|
|
18336
18336
|
return {
|
|
18337
18337
|
url: url.format(localVarUrlObj),
|
|
@@ -19188,7 +19188,7 @@ const UsersApiFp = function (configuration) {
|
|
|
19188
19188
|
/**
|
|
19189
19189
|
*
|
|
19190
19190
|
* @summary Validate phone number
|
|
19191
|
-
* @param {
|
|
19191
|
+
* @param {RawPhone} body
|
|
19192
19192
|
* @param {*} [options] Override http request option.
|
|
19193
19193
|
* @throws {RequiredError}
|
|
19194
19194
|
*/
|
|
@@ -19635,7 +19635,7 @@ const UsersApiFactory = function (configuration, fetch, basePath) {
|
|
|
19635
19635
|
/**
|
|
19636
19636
|
*
|
|
19637
19637
|
* @summary Validate phone number
|
|
19638
|
-
* @param {
|
|
19638
|
+
* @param {RawPhone} body
|
|
19639
19639
|
* @param {*} [options] Override http request option.
|
|
19640
19640
|
* @throws {RequiredError}
|
|
19641
19641
|
*/
|
|
@@ -20115,7 +20115,7 @@ class UsersApi extends BaseAPI {
|
|
|
20115
20115
|
/**
|
|
20116
20116
|
*
|
|
20117
20117
|
* @summary Validate phone number
|
|
20118
|
-
* @param {
|
|
20118
|
+
* @param {RawPhone} body
|
|
20119
20119
|
* @param {*} [options] Override http request option.
|
|
20120
20120
|
* @throws {RequiredError}
|
|
20121
20121
|
* @memberof UsersApi
|