@palmetto/users-sdk 1.8.4 → 1.9.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/__generated__/schema.d.ts +21 -0
- package/dist/client.js +1 -1
- package/package.json +1 -1
|
@@ -882,6 +882,11 @@ export interface components {
|
|
|
882
882
|
* @example +18048675309
|
|
883
883
|
*/
|
|
884
884
|
phoneNumber?: string;
|
|
885
|
+
/**
|
|
886
|
+
* @description Whether the phone number has been verified
|
|
887
|
+
* @example false
|
|
888
|
+
*/
|
|
889
|
+
isPhoneNumberVerified: boolean;
|
|
885
890
|
/**
|
|
886
891
|
* @description Organization ID
|
|
887
892
|
* @example 66e3367b141b81fb54ec4e1f
|
|
@@ -974,6 +979,11 @@ export interface components {
|
|
|
974
979
|
* @example +18048675309
|
|
975
980
|
*/
|
|
976
981
|
phoneNumber?: string;
|
|
982
|
+
/**
|
|
983
|
+
* @description Whether the phone number has been verified
|
|
984
|
+
* @example false
|
|
985
|
+
*/
|
|
986
|
+
isPhoneNumberVerified: boolean;
|
|
977
987
|
/**
|
|
978
988
|
* @description Organization ID
|
|
979
989
|
* @example 66e3367b141b81fb54ec4e1f
|
|
@@ -1182,6 +1192,11 @@ export interface components {
|
|
|
1182
1192
|
* @example +18048675309
|
|
1183
1193
|
*/
|
|
1184
1194
|
phoneNumber?: string;
|
|
1195
|
+
/**
|
|
1196
|
+
* @description Whether the phone number has been verified
|
|
1197
|
+
* @example false
|
|
1198
|
+
*/
|
|
1199
|
+
isPhoneNumberVerified: boolean;
|
|
1185
1200
|
/**
|
|
1186
1201
|
* @description Organization ID
|
|
1187
1202
|
* @example 66e3367b141b81fb54ec4e1f
|
|
@@ -1425,6 +1440,11 @@ export interface components {
|
|
|
1425
1440
|
* @example +18048675309
|
|
1426
1441
|
*/
|
|
1427
1442
|
phoneNumber?: string;
|
|
1443
|
+
/**
|
|
1444
|
+
* @description Whether the phone number has been verified
|
|
1445
|
+
* @example false
|
|
1446
|
+
*/
|
|
1447
|
+
isPhoneNumberVerified: boolean;
|
|
1428
1448
|
/**
|
|
1429
1449
|
* @description Organization ID
|
|
1430
1450
|
* @example 66e3367b141b81fb54ec4e1f
|
|
@@ -2152,6 +2172,7 @@ export interface operations {
|
|
|
2152
2172
|
limit?: number;
|
|
2153
2173
|
organizationId?: string;
|
|
2154
2174
|
email?: string;
|
|
2175
|
+
verifiedPhoneNumber?: string;
|
|
2155
2176
|
};
|
|
2156
2177
|
header?: never;
|
|
2157
2178
|
path?: never;
|
package/dist/client.js
CHANGED
|
@@ -23,7 +23,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
23
23
|
exports.UsersApiClient = void 0;
|
|
24
24
|
const base_sdk_client_1 = require("@palmetto/base-sdk-client");
|
|
25
25
|
const result_1 = require("@palmetto/result");
|
|
26
|
-
const SDK_VERSION_SLUG = "palmetto-users-sdk/1.
|
|
26
|
+
const SDK_VERSION_SLUG = "palmetto-users-sdk/1.9.0";
|
|
27
27
|
class UsersApiClient extends base_sdk_client_1.BaseSdkClient {
|
|
28
28
|
constructor(input) {
|
|
29
29
|
super(Object.assign(Object.assign({}, input), { sdkVersion: SDK_VERSION_SLUG }));
|