@zyphr-dev/node-sdk 0.1.24 → 0.1.26

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/index.js CHANGED
@@ -1086,6 +1086,9 @@ function AuthUserFromJSONTyped(json, ignoreDiscriminator) {
1086
1086
  "phoneVerified": json["phone_verified"] == null ? void 0 : json["phone_verified"],
1087
1087
  "status": json["status"] == null ? void 0 : json["status"],
1088
1088
  "mfaEnabled": json["mfa_enabled"] == null ? void 0 : json["mfa_enabled"],
1089
+ "isAnonymous": json["is_anonymous"] == null ? void 0 : json["is_anonymous"],
1090
+ "anonymousDeviceId": json["anonymous_device_id"] == null ? void 0 : json["anonymous_device_id"],
1091
+ "firstActivityAt": json["first_activity_at"] == null ? void 0 : new Date(json["first_activity_at"]),
1089
1092
  "createdAt": json["created_at"] == null ? void 0 : new Date(json["created_at"]),
1090
1093
  "updatedAt": json["updated_at"] == null ? void 0 : new Date(json["updated_at"]),
1091
1094
  "lastLoginAt": json["last_login_at"] == null ? void 0 : new Date(json["last_login_at"])
@@ -1109,6 +1112,9 @@ function AuthUserToJSONTyped(value, ignoreDiscriminator = false) {
1109
1112
  "phone_verified": value["phoneVerified"],
1110
1113
  "status": value["status"],
1111
1114
  "mfa_enabled": value["mfaEnabled"],
1115
+ "is_anonymous": value["isAnonymous"],
1116
+ "anonymous_device_id": value["anonymousDeviceId"],
1117
+ "first_activity_at": value["firstActivityAt"] == null ? void 0 : value["firstActivityAt"].toISOString(),
1112
1118
  "created_at": value["createdAt"] == null ? void 0 : value["createdAt"].toISOString(),
1113
1119
  "updated_at": value["updatedAt"] == null ? void 0 : value["updatedAt"].toISOString(),
1114
1120
  "last_login_at": value["lastLoginAt"] == null ? void 0 : value["lastLoginAt"].toISOString()
@@ -2060,6 +2066,172 @@ function ConsentWithdrawResponseToJSONTyped(value, ignoreDiscriminator = false)
2060
2066
  };
2061
2067
  }
2062
2068
 
2069
+ // src/src/models/ConvertAnonymousUserRequestOneOf.ts
2070
+ var ConvertAnonymousUserRequestOneOfMethodEnum = {
2071
+ PASSWORD: "password"
2072
+ };
2073
+ function instanceOfConvertAnonymousUserRequestOneOf(value) {
2074
+ if (!("method" in value) || value["method"] === void 0) return false;
2075
+ if (!("email" in value) || value["email"] === void 0) return false;
2076
+ if (!("password" in value) || value["password"] === void 0) return false;
2077
+ return true;
2078
+ }
2079
+ function ConvertAnonymousUserRequestOneOfFromJSON(json) {
2080
+ return ConvertAnonymousUserRequestOneOfFromJSONTyped(json, false);
2081
+ }
2082
+ function ConvertAnonymousUserRequestOneOfFromJSONTyped(json, ignoreDiscriminator) {
2083
+ if (json == null) {
2084
+ return json;
2085
+ }
2086
+ return {
2087
+ "method": json["method"],
2088
+ "email": json["email"],
2089
+ "password": json["password"],
2090
+ "name": json["name"] == null ? void 0 : json["name"]
2091
+ };
2092
+ }
2093
+ function ConvertAnonymousUserRequestOneOfToJSON(json) {
2094
+ return ConvertAnonymousUserRequestOneOfToJSONTyped(json, false);
2095
+ }
2096
+ function ConvertAnonymousUserRequestOneOfToJSONTyped(value, ignoreDiscriminator = false) {
2097
+ if (value == null) {
2098
+ return value;
2099
+ }
2100
+ return {
2101
+ "method": value["method"],
2102
+ "email": value["email"],
2103
+ "password": value["password"],
2104
+ "name": value["name"]
2105
+ };
2106
+ }
2107
+
2108
+ // src/src/models/ConvertAnonymousUserRequestOneOf1AppleUserName.ts
2109
+ function instanceOfConvertAnonymousUserRequestOneOf1AppleUserName(value) {
2110
+ return true;
2111
+ }
2112
+ function ConvertAnonymousUserRequestOneOf1AppleUserNameFromJSON(json) {
2113
+ return ConvertAnonymousUserRequestOneOf1AppleUserNameFromJSONTyped(json, false);
2114
+ }
2115
+ function ConvertAnonymousUserRequestOneOf1AppleUserNameFromJSONTyped(json, ignoreDiscriminator) {
2116
+ if (json == null) {
2117
+ return json;
2118
+ }
2119
+ return {
2120
+ "firstName": json["firstName"] == null ? void 0 : json["firstName"],
2121
+ "lastName": json["lastName"] == null ? void 0 : json["lastName"]
2122
+ };
2123
+ }
2124
+ function ConvertAnonymousUserRequestOneOf1AppleUserNameToJSON(json) {
2125
+ return ConvertAnonymousUserRequestOneOf1AppleUserNameToJSONTyped(json, false);
2126
+ }
2127
+ function ConvertAnonymousUserRequestOneOf1AppleUserNameToJSONTyped(value, ignoreDiscriminator = false) {
2128
+ if (value == null) {
2129
+ return value;
2130
+ }
2131
+ return {
2132
+ "firstName": value["firstName"],
2133
+ "lastName": value["lastName"]
2134
+ };
2135
+ }
2136
+
2137
+ // src/src/models/ConvertAnonymousUserRequestOneOf1AppleUser.ts
2138
+ function instanceOfConvertAnonymousUserRequestOneOf1AppleUser(value) {
2139
+ return true;
2140
+ }
2141
+ function ConvertAnonymousUserRequestOneOf1AppleUserFromJSON(json) {
2142
+ return ConvertAnonymousUserRequestOneOf1AppleUserFromJSONTyped(json, false);
2143
+ }
2144
+ function ConvertAnonymousUserRequestOneOf1AppleUserFromJSONTyped(json, ignoreDiscriminator) {
2145
+ if (json == null) {
2146
+ return json;
2147
+ }
2148
+ return {
2149
+ "name": json["name"] == null ? void 0 : ConvertAnonymousUserRequestOneOf1AppleUserNameFromJSON(json["name"])
2150
+ };
2151
+ }
2152
+ function ConvertAnonymousUserRequestOneOf1AppleUserToJSON(json) {
2153
+ return ConvertAnonymousUserRequestOneOf1AppleUserToJSONTyped(json, false);
2154
+ }
2155
+ function ConvertAnonymousUserRequestOneOf1AppleUserToJSONTyped(value, ignoreDiscriminator = false) {
2156
+ if (value == null) {
2157
+ return value;
2158
+ }
2159
+ return {
2160
+ "name": ConvertAnonymousUserRequestOneOf1AppleUserNameToJSON(value["name"])
2161
+ };
2162
+ }
2163
+
2164
+ // src/src/models/ConvertAnonymousUserRequestOneOf1.ts
2165
+ var ConvertAnonymousUserRequestOneOf1MethodEnum = {
2166
+ OAUTH: "oauth"
2167
+ };
2168
+ function instanceOfConvertAnonymousUserRequestOneOf1(value) {
2169
+ if (!("method" in value) || value["method"] === void 0) return false;
2170
+ if (!("code" in value) || value["code"] === void 0) return false;
2171
+ if (!("state" in value) || value["state"] === void 0) return false;
2172
+ return true;
2173
+ }
2174
+ function ConvertAnonymousUserRequestOneOf1FromJSON(json) {
2175
+ return ConvertAnonymousUserRequestOneOf1FromJSONTyped(json, false);
2176
+ }
2177
+ function ConvertAnonymousUserRequestOneOf1FromJSONTyped(json, ignoreDiscriminator) {
2178
+ if (json == null) {
2179
+ return json;
2180
+ }
2181
+ return {
2182
+ "method": json["method"],
2183
+ "code": json["code"],
2184
+ "state": json["state"],
2185
+ "appleUser": json["apple_user"] == null ? void 0 : ConvertAnonymousUserRequestOneOf1AppleUserFromJSON(json["apple_user"])
2186
+ };
2187
+ }
2188
+ function ConvertAnonymousUserRequestOneOf1ToJSON(json) {
2189
+ return ConvertAnonymousUserRequestOneOf1ToJSONTyped(json, false);
2190
+ }
2191
+ function ConvertAnonymousUserRequestOneOf1ToJSONTyped(value, ignoreDiscriminator = false) {
2192
+ if (value == null) {
2193
+ return value;
2194
+ }
2195
+ return {
2196
+ "method": value["method"],
2197
+ "code": value["code"],
2198
+ "state": value["state"],
2199
+ "apple_user": ConvertAnonymousUserRequestOneOf1AppleUserToJSON(value["appleUser"])
2200
+ };
2201
+ }
2202
+
2203
+ // src/src/models/ConvertAnonymousUserRequest.ts
2204
+ function ConvertAnonymousUserRequestFromJSON(json) {
2205
+ return ConvertAnonymousUserRequestFromJSONTyped(json, false);
2206
+ }
2207
+ function ConvertAnonymousUserRequestFromJSONTyped(json, ignoreDiscriminator) {
2208
+ if (json == null) {
2209
+ return json;
2210
+ }
2211
+ if (instanceOfConvertAnonymousUserRequestOneOf(json)) {
2212
+ return ConvertAnonymousUserRequestOneOfFromJSONTyped(json, true);
2213
+ }
2214
+ if (instanceOfConvertAnonymousUserRequestOneOf1(json)) {
2215
+ return ConvertAnonymousUserRequestOneOf1FromJSONTyped(json, true);
2216
+ }
2217
+ return {};
2218
+ }
2219
+ function ConvertAnonymousUserRequestToJSON(json) {
2220
+ return ConvertAnonymousUserRequestToJSONTyped(json, false);
2221
+ }
2222
+ function ConvertAnonymousUserRequestToJSONTyped(value, ignoreDiscriminator = false) {
2223
+ if (value == null) {
2224
+ return value;
2225
+ }
2226
+ if (instanceOfConvertAnonymousUserRequestOneOf(value)) {
2227
+ return ConvertAnonymousUserRequestOneOfToJSON(value);
2228
+ }
2229
+ if (instanceOfConvertAnonymousUserRequestOneOf1(value)) {
2230
+ return ConvertAnonymousUserRequestOneOf1ToJSON(value);
2231
+ }
2232
+ return {};
2233
+ }
2234
+
2063
2235
  // src/src/models/CreateCategoryRequest.ts
2064
2236
  function instanceOfCreateCategoryRequest(value) {
2065
2237
  if (!("name" in value) || value["name"] === void 0) return false;
@@ -5823,6 +5995,101 @@ function PasswordRequirementsResponseToJSONTyped(value, ignoreDiscriminator = fa
5823
5995
  };
5824
5996
  }
5825
5997
 
5998
+ // src/src/models/PayloadTooLargeErrorErrorDetails.ts
5999
+ function instanceOfPayloadTooLargeErrorErrorDetails(value) {
6000
+ return true;
6001
+ }
6002
+ function PayloadTooLargeErrorErrorDetailsFromJSON(json) {
6003
+ return PayloadTooLargeErrorErrorDetailsFromJSONTyped(json, false);
6004
+ }
6005
+ function PayloadTooLargeErrorErrorDetailsFromJSONTyped(json, ignoreDiscriminator) {
6006
+ if (json == null) {
6007
+ return json;
6008
+ }
6009
+ return {
6010
+ "limitBytes": json["limit_bytes"] == null ? void 0 : json["limit_bytes"],
6011
+ "receivedBytes": json["received_bytes"] == null ? void 0 : json["received_bytes"]
6012
+ };
6013
+ }
6014
+ function PayloadTooLargeErrorErrorDetailsToJSON(json) {
6015
+ return PayloadTooLargeErrorErrorDetailsToJSONTyped(json, false);
6016
+ }
6017
+ function PayloadTooLargeErrorErrorDetailsToJSONTyped(value, ignoreDiscriminator = false) {
6018
+ if (value == null) {
6019
+ return value;
6020
+ }
6021
+ return {
6022
+ "limit_bytes": value["limitBytes"],
6023
+ "received_bytes": value["receivedBytes"]
6024
+ };
6025
+ }
6026
+
6027
+ // src/src/models/PayloadTooLargeErrorError.ts
6028
+ var PayloadTooLargeErrorErrorCodeEnum = {
6029
+ PAYLOAD_TOO_LARGE: "payload_too_large"
6030
+ };
6031
+ function instanceOfPayloadTooLargeErrorError(value) {
6032
+ if (!("code" in value) || value["code"] === void 0) return false;
6033
+ if (!("message" in value) || value["message"] === void 0) return false;
6034
+ return true;
6035
+ }
6036
+ function PayloadTooLargeErrorErrorFromJSON(json) {
6037
+ return PayloadTooLargeErrorErrorFromJSONTyped(json, false);
6038
+ }
6039
+ function PayloadTooLargeErrorErrorFromJSONTyped(json, ignoreDiscriminator) {
6040
+ if (json == null) {
6041
+ return json;
6042
+ }
6043
+ return {
6044
+ "code": json["code"],
6045
+ "message": json["message"],
6046
+ "details": json["details"] == null ? void 0 : PayloadTooLargeErrorErrorDetailsFromJSON(json["details"])
6047
+ };
6048
+ }
6049
+ function PayloadTooLargeErrorErrorToJSON(json) {
6050
+ return PayloadTooLargeErrorErrorToJSONTyped(json, false);
6051
+ }
6052
+ function PayloadTooLargeErrorErrorToJSONTyped(value, ignoreDiscriminator = false) {
6053
+ if (value == null) {
6054
+ return value;
6055
+ }
6056
+ return {
6057
+ "code": value["code"],
6058
+ "message": value["message"],
6059
+ "details": PayloadTooLargeErrorErrorDetailsToJSON(value["details"])
6060
+ };
6061
+ }
6062
+
6063
+ // src/src/models/PayloadTooLargeError.ts
6064
+ function instanceOfPayloadTooLargeError(value) {
6065
+ if (!("error" in value) || value["error"] === void 0) return false;
6066
+ return true;
6067
+ }
6068
+ function PayloadTooLargeErrorFromJSON(json) {
6069
+ return PayloadTooLargeErrorFromJSONTyped(json, false);
6070
+ }
6071
+ function PayloadTooLargeErrorFromJSONTyped(json, ignoreDiscriminator) {
6072
+ if (json == null) {
6073
+ return json;
6074
+ }
6075
+ return {
6076
+ "error": PayloadTooLargeErrorErrorFromJSON(json["error"]),
6077
+ "meta": json["meta"] == null ? void 0 : RequestMetaFromJSON(json["meta"])
6078
+ };
6079
+ }
6080
+ function PayloadTooLargeErrorToJSON(json) {
6081
+ return PayloadTooLargeErrorToJSONTyped(json, false);
6082
+ }
6083
+ function PayloadTooLargeErrorToJSONTyped(value, ignoreDiscriminator = false) {
6084
+ if (value == null) {
6085
+ return value;
6086
+ }
6087
+ return {
6088
+ "error": PayloadTooLargeErrorErrorToJSON(value["error"]),
6089
+ "meta": RequestMetaToJSON(value["meta"])
6090
+ };
6091
+ }
6092
+
5826
6093
  // src/src/models/PhoneAuthAvailabilityResponseData.ts
5827
6094
  function instanceOfPhoneAuthAvailabilityResponseData(value) {
5828
6095
  return true;
@@ -8704,6 +8971,38 @@ function SetPreferencesRequestToJSONTyped(value, ignoreDiscriminator = false) {
8704
8971
  };
8705
8972
  }
8706
8973
 
8974
+ // src/src/models/SignInAnonymouslyRequest.ts
8975
+ function instanceOfSignInAnonymouslyRequest(value) {
8976
+ if (!("deviceId" in value) || value["deviceId"] === void 0) return false;
8977
+ return true;
8978
+ }
8979
+ function SignInAnonymouslyRequestFromJSON(json) {
8980
+ return SignInAnonymouslyRequestFromJSONTyped(json, false);
8981
+ }
8982
+ function SignInAnonymouslyRequestFromJSONTyped(json, ignoreDiscriminator) {
8983
+ if (json == null) {
8984
+ return json;
8985
+ }
8986
+ return {
8987
+ "deviceId": json["device_id"],
8988
+ "name": json["name"] == null ? void 0 : json["name"],
8989
+ "metadata": json["metadata"] == null ? void 0 : json["metadata"]
8990
+ };
8991
+ }
8992
+ function SignInAnonymouslyRequestToJSON(json) {
8993
+ return SignInAnonymouslyRequestToJSONTyped(json, false);
8994
+ }
8995
+ function SignInAnonymouslyRequestToJSONTyped(value, ignoreDiscriminator = false) {
8996
+ if (value == null) {
8997
+ return value;
8998
+ }
8999
+ return {
9000
+ "device_id": value["deviceId"],
9001
+ "name": value["name"],
9002
+ "metadata": value["metadata"]
9003
+ };
9004
+ }
9005
+
8707
9006
  // src/src/models/SlackMessage.ts
8708
9007
  function instanceOfSlackMessage(value) {
8709
9008
  return true;
@@ -14085,6 +14384,37 @@ var AuthPhoneApi = class extends BaseAPI {
14085
14384
 
14086
14385
  // src/src/apis/AuthRegistrationApi.ts
14087
14386
  var AuthRegistrationApi = class extends BaseAPI {
14387
+ /**
14388
+ * Upgrade the calling anonymous user to a full email+password account in place. The end_user.id is preserved, so customer-domain tables with foreign keys to end_users.id need no migration on conversion. All prior sessions for the user (including the anonymous token used to make this call) are revoked. A fresh token pair is returned in the response body. The conversion is the moment the user becomes billable -- MAU is tracked from this point forward.
14389
+ * Convert anonymous account to a full account
14390
+ */
14391
+ async convertAnonymousUserRaw(requestParameters, initOverrides) {
14392
+ if (requestParameters["convertAnonymousUserRequest"] == null) {
14393
+ throw new RequiredError(
14394
+ "convertAnonymousUserRequest",
14395
+ 'Required parameter "convertAnonymousUserRequest" was null or undefined when calling convertAnonymousUser().'
14396
+ );
14397
+ }
14398
+ const queryParameters = {};
14399
+ const headerParameters = {};
14400
+ headerParameters["Content-Type"] = "application/json";
14401
+ const response = await this.request({
14402
+ path: `/auth/users/convert`,
14403
+ method: "POST",
14404
+ headers: headerParameters,
14405
+ query: queryParameters,
14406
+ body: ConvertAnonymousUserRequestToJSON(requestParameters["convertAnonymousUserRequest"])
14407
+ }, initOverrides);
14408
+ return new JSONApiResponse(response, (jsonValue) => AuthResultResponseFromJSON(jsonValue));
14409
+ }
14410
+ /**
14411
+ * Upgrade the calling anonymous user to a full email+password account in place. The end_user.id is preserved, so customer-domain tables with foreign keys to end_users.id need no migration on conversion. All prior sessions for the user (including the anonymous token used to make this call) are revoked. A fresh token pair is returned in the response body. The conversion is the moment the user becomes billable -- MAU is tracked from this point forward.
14412
+ * Convert anonymous account to a full account
14413
+ */
14414
+ async convertAnonymousUser(convertAnonymousUserRequest, initOverrides) {
14415
+ const response = await this.convertAnonymousUserRaw({ convertAnonymousUserRequest }, initOverrides);
14416
+ return await response.value();
14417
+ }
14088
14418
  /**
14089
14419
  * Register a new end user with email and password.
14090
14420
  * Register a new end user
@@ -14122,6 +14452,40 @@ var AuthRegistrationApi = class extends BaseAPI {
14122
14452
  const response = await this.registerEndUserRaw({ registerRequest }, initOverrides);
14123
14453
  return await response.value();
14124
14454
  }
14455
+ /**
14456
+ * Issue an end-user identity to a device without email, password, OAuth, or any other credential. Idempotent per (application, environment, device_id): repeated calls with the same device_id return the same user but a fresh token pair. Prior sessions for the user remain valid until natural expiry. Anonymous users do not count toward MAU quota until their first authenticated request after sign-in (excluding /v1/auth/refresh). Convert an anonymous user to a full account via POST /v1/auth/users/convert.
14457
+ * Sign in anonymously
14458
+ */
14459
+ async signInAnonymouslyRaw(requestParameters, initOverrides) {
14460
+ if (requestParameters["signInAnonymouslyRequest"] == null) {
14461
+ throw new RequiredError(
14462
+ "signInAnonymouslyRequest",
14463
+ 'Required parameter "signInAnonymouslyRequest" was null or undefined when calling signInAnonymously().'
14464
+ );
14465
+ }
14466
+ const queryParameters = {};
14467
+ const headerParameters = {};
14468
+ headerParameters["Content-Type"] = "application/json";
14469
+ if (this.configuration && this.configuration.apiKey) {
14470
+ headerParameters["X-Application-Key"] = await this.configuration.apiKey("X-Application-Key");
14471
+ }
14472
+ const response = await this.request({
14473
+ path: `/auth/users/anonymous`,
14474
+ method: "POST",
14475
+ headers: headerParameters,
14476
+ query: queryParameters,
14477
+ body: SignInAnonymouslyRequestToJSON(requestParameters["signInAnonymouslyRequest"])
14478
+ }, initOverrides);
14479
+ return new JSONApiResponse(response, (jsonValue) => AuthResultResponseFromJSON(jsonValue));
14480
+ }
14481
+ /**
14482
+ * Issue an end-user identity to a device without email, password, OAuth, or any other credential. Idempotent per (application, environment, device_id): repeated calls with the same device_id return the same user but a fresh token pair. Prior sessions for the user remain valid until natural expiry. Anonymous users do not count toward MAU quota until their first authenticated request after sign-in (excluding /v1/auth/refresh). Convert an anonymous user to a full account via POST /v1/auth/users/convert.
14483
+ * Sign in anonymously
14484
+ */
14485
+ async signInAnonymously(signInAnonymouslyRequest, initOverrides) {
14486
+ const response = await this.signInAnonymouslyRaw({ signInAnonymouslyRequest }, initOverrides);
14487
+ return await response.value();
14488
+ }
14125
14489
  };
14126
14490
 
14127
14491
  // src/src/apis/AuthSessionsApi.ts
@@ -19844,6 +20208,22 @@ var ZyphrNotFoundError = class extends ZyphrError {
19844
20208
  this.name = "ZyphrNotFoundError";
19845
20209
  }
19846
20210
  };
20211
+ var ZyphrPayloadTooLargeError = class extends ZyphrError {
20212
+ constructor(message, details, requestId) {
20213
+ super({ message, status: 413, code: "payload_too_large", details, requestId });
20214
+ this.name = "ZyphrPayloadTooLargeError";
20215
+ }
20216
+ /** Maximum allowed request body size in bytes (server-enforced). */
20217
+ get limitBytes() {
20218
+ const value = this.details?.limit_bytes;
20219
+ return typeof value === "number" ? value : void 0;
20220
+ }
20221
+ /** Size of the rejected request body in bytes, as measured by the server. */
20222
+ get receivedBytes() {
20223
+ const value = this.details?.received_bytes;
20224
+ return typeof value === "number" ? value : void 0;
20225
+ }
20226
+ };
19847
20227
  var ZyphrWebhookVerificationError = class extends ZyphrError {
19848
20228
  constructor(message) {
19849
20229
  super({ message, status: 401, code: "webhook_verification_failed" });
@@ -19872,6 +20252,8 @@ async function parseErrorResponse(response) {
19872
20252
  return new ZyphrAuthenticationError(message);
19873
20253
  case 404:
19874
20254
  return new ZyphrNotFoundError(message);
20255
+ case 413:
20256
+ return new ZyphrPayloadTooLargeError(message, details, requestId);
19875
20257
  case 429: {
19876
20258
  const retryAfterHeader = response.headers.get("Retry-After");
19877
20259
  const retryAfter = retryAfterHeader ? parseInt(retryAfterHeader, 10) : void 0;
@@ -20198,6 +20580,28 @@ export {
20198
20580
  ConsentWithdrawResponseFromJSONTyped,
20199
20581
  ConsentWithdrawResponseToJSON,
20200
20582
  ConsentWithdrawResponseToJSONTyped,
20583
+ ConvertAnonymousUserRequestFromJSON,
20584
+ ConvertAnonymousUserRequestFromJSONTyped,
20585
+ ConvertAnonymousUserRequestOneOf1AppleUserFromJSON,
20586
+ ConvertAnonymousUserRequestOneOf1AppleUserFromJSONTyped,
20587
+ ConvertAnonymousUserRequestOneOf1AppleUserNameFromJSON,
20588
+ ConvertAnonymousUserRequestOneOf1AppleUserNameFromJSONTyped,
20589
+ ConvertAnonymousUserRequestOneOf1AppleUserNameToJSON,
20590
+ ConvertAnonymousUserRequestOneOf1AppleUserNameToJSONTyped,
20591
+ ConvertAnonymousUserRequestOneOf1AppleUserToJSON,
20592
+ ConvertAnonymousUserRequestOneOf1AppleUserToJSONTyped,
20593
+ ConvertAnonymousUserRequestOneOf1FromJSON,
20594
+ ConvertAnonymousUserRequestOneOf1FromJSONTyped,
20595
+ ConvertAnonymousUserRequestOneOf1MethodEnum,
20596
+ ConvertAnonymousUserRequestOneOf1ToJSON,
20597
+ ConvertAnonymousUserRequestOneOf1ToJSONTyped,
20598
+ ConvertAnonymousUserRequestOneOfFromJSON,
20599
+ ConvertAnonymousUserRequestOneOfFromJSONTyped,
20600
+ ConvertAnonymousUserRequestOneOfMethodEnum,
20601
+ ConvertAnonymousUserRequestOneOfToJSON,
20602
+ ConvertAnonymousUserRequestOneOfToJSONTyped,
20603
+ ConvertAnonymousUserRequestToJSON,
20604
+ ConvertAnonymousUserRequestToJSONTyped,
20201
20605
  CreateCategoryRequestFromJSON,
20202
20606
  CreateCategoryRequestFromJSONTyped,
20203
20607
  CreateCategoryRequestToJSON,
@@ -20648,6 +21052,19 @@ export {
20648
21052
  PasswordRequirementsResponseToJSONTyped,
20649
21053
  PasswordRequirementsToJSON,
20650
21054
  PasswordRequirementsToJSONTyped,
21055
+ PayloadTooLargeErrorErrorCodeEnum,
21056
+ PayloadTooLargeErrorErrorDetailsFromJSON,
21057
+ PayloadTooLargeErrorErrorDetailsFromJSONTyped,
21058
+ PayloadTooLargeErrorErrorDetailsToJSON,
21059
+ PayloadTooLargeErrorErrorDetailsToJSONTyped,
21060
+ PayloadTooLargeErrorErrorFromJSON,
21061
+ PayloadTooLargeErrorErrorFromJSONTyped,
21062
+ PayloadTooLargeErrorErrorToJSON,
21063
+ PayloadTooLargeErrorErrorToJSONTyped,
21064
+ PayloadTooLargeErrorFromJSON,
21065
+ PayloadTooLargeErrorFromJSONTyped,
21066
+ PayloadTooLargeErrorToJSON,
21067
+ PayloadTooLargeErrorToJSONTyped,
20651
21068
  PhoneAuthAvailabilityResponseDataFromJSON,
20652
21069
  PhoneAuthAvailabilityResponseDataFromJSONTyped,
20653
21070
  PhoneAuthAvailabilityResponseDataToJSON,
@@ -20986,6 +21403,10 @@ export {
20986
21403
  SetPreferencesRequestPreferencesInnerToJSONTyped,
20987
21404
  SetPreferencesRequestToJSON,
20988
21405
  SetPreferencesRequestToJSONTyped,
21406
+ SignInAnonymouslyRequestFromJSON,
21407
+ SignInAnonymouslyRequestFromJSONTyped,
21408
+ SignInAnonymouslyRequestToJSON,
21409
+ SignInAnonymouslyRequestToJSONTyped,
20989
21410
  SlackApi,
20990
21411
  SlackMessageFromJSON,
20991
21412
  SlackMessageFromJSONTyped,
@@ -21578,6 +21999,7 @@ export {
21578
21999
  ZyphrAuthenticationError,
21579
22000
  ZyphrError,
21580
22001
  ZyphrNotFoundError,
22002
+ ZyphrPayloadTooLargeError,
21581
22003
  ZyphrRateLimitError,
21582
22004
  ZyphrValidationError,
21583
22005
  ZyphrWebhookVerificationError,
@@ -21632,6 +22054,10 @@ export {
21632
22054
  instanceOfConsentStatus,
21633
22055
  instanceOfConsentStatusResponse,
21634
22056
  instanceOfConsentWithdrawResponse,
22057
+ instanceOfConvertAnonymousUserRequestOneOf,
22058
+ instanceOfConvertAnonymousUserRequestOneOf1,
22059
+ instanceOfConvertAnonymousUserRequestOneOf1AppleUser,
22060
+ instanceOfConvertAnonymousUserRequestOneOf1AppleUserName,
21635
22061
  instanceOfCreateCategoryRequest,
21636
22062
  instanceOfCreateSubscriberRequest,
21637
22063
  instanceOfCreateTemplateRequest,
@@ -21738,6 +22164,9 @@ export {
21738
22164
  instanceOfPasswordRequirements,
21739
22165
  instanceOfPasswordRequirementsResponse,
21740
22166
  instanceOfPasswordRequirementsResponseData,
22167
+ instanceOfPayloadTooLargeError,
22168
+ instanceOfPayloadTooLargeErrorError,
22169
+ instanceOfPayloadTooLargeErrorErrorDetails,
21741
22170
  instanceOfPhoneAuthAvailabilityResponse,
21742
22171
  instanceOfPhoneAuthAvailabilityResponseData,
21743
22172
  instanceOfPhoneLoginVerifyRequest,
@@ -21819,6 +22248,7 @@ export {
21819
22248
  instanceOfSessionListResponseDataSessionInfo,
21820
22249
  instanceOfSetPreferencesRequest,
21821
22250
  instanceOfSetPreferencesRequestPreferencesInner,
22251
+ instanceOfSignInAnonymouslyRequest,
21822
22252
  instanceOfSlackMessage,
21823
22253
  instanceOfSlackMessageListResponse,
21824
22254
  instanceOfSlackMessageListResponseMeta,